Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev Autor Línea Nro. Línea
16825 efrain 1
@charset "UTF-8";
16848 stevensc 2
 
16825 efrain 3
/*
4
* NobleUI - HTML Bootstrap 5 Admin Dashboard Template v2.0.3 (https://nobleui.com/)
5
* Copyright © 2022 NobleUI
6
* Licensed under ThemeForest License
7
*/
8
:root {
9
  --bs-blue: #0d6efd;
10
  --bs-indigo: #6610f2;
11
  --bs-purple: #6f42c1;
12
  --bs-pink: #d63384;
13
  --bs-red: #dc3545;
14
  --bs-orange: #fd7e14;
15
  --bs-yellow: #ffc107;
16
  --bs-green: #198754;
17
  --bs-teal: #20c997;
18
  --bs-cyan: #0dcaf0;
19
  --bs-black: #000;
20
  --bs-white: #fff;
21
  --bs-gray: #7987a1;
22
  --bs-gray-dark: #212a3a;
23
  --bs-gray-100: #f8f9fa;
24
  --bs-gray-200: #e9ecef;
25
  --bs-gray-300: #dee2e6;
26
  --bs-gray-400: #cbd1db;
27
  --bs-gray-500: #aeb7c5;
28
  --bs-gray-600: #7987a1;
29
  --bs-gray-700: #41516c;
30
  --bs-gray-800: #212a3a;
31
  --bs-gray-900: #060c17;
32
  --bs-primary: #6571ff;
33
  --bs-secondary: #7987a1;
34
  --bs-success: #05a34a;
35
  --bs-info: #66d1d1;
36
  --bs-warning: #fbbc06;
37
  --bs-danger: #ff3366;
38
  --bs-light: #e9ecef;
39
  --bs-dark: #060c17;
40
  --bs-primary-rgb: 101, 113, 255;
41
  --bs-secondary-rgb: 121, 135, 161;
42
  --bs-success-rgb: 5, 163, 74;
43
  --bs-info-rgb: 102, 209, 209;
44
  --bs-warning-rgb: 251, 188, 6;
45
  --bs-danger-rgb: 255, 51, 102;
46
  --bs-light-rgb: 233, 236, 239;
47
  --bs-dark-rgb: 6, 12, 23;
48
  --bs-white-rgb: 255, 255, 255;
49
  --bs-black-rgb: 0, 0, 0;
50
  --bs-body-color-rgb: 0, 0, 0;
51
  --bs-body-bg-rgb: 249, 250, 251;
52
  --bs-font-sans-serif: "Roboto", Helvetica, sans-serif;
53
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
54
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
55
  --bs-body-font-family: var(--bs-font-sans-serif);
56
  --bs-body-font-size: 0.875rem;
57
  --bs-body-font-weight: 400;
58
  --bs-body-line-height: 1.5;
59
  --bs-body-color: #000;
60
  --bs-body-bg: #f9fafb;
61
  --bs-border-width: 1px;
62
  --bs-border-style: solid;
63
  --bs-border-color: #e9ecef;
64
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
65
  --bs-border-radius: 0.25rem;
66
  --bs-border-radius-sm: 0.25rem;
67
  --bs-border-radius-lg: 0.5rem;
68
  --bs-border-radius-xl: 1rem;
69
  --bs-border-radius-2xl: 2rem;
70
  --bs-border-radius-pill: 50rem;
71
  --bs-link-color: #6571ff;
72
  --bs-link-hover-color: #515acc;
73
  --bs-code-color: #d63384;
74
  --bs-highlight-bg: #fff3cd;
75
}
76
 
77
*,
78
*::before,
79
*::after {
80
  box-sizing: border-box;
81
}
82
 
83
@media (prefers-reduced-motion: no-preference) {
84
  :root {
85
    scroll-behavior: smooth;
86
  }
87
}
88
 
89
body {
90
  margin: 0;
91
  font-family: var(--bs-body-font-family);
92
  font-size: var(--bs-body-font-size);
93
  font-weight: var(--bs-body-font-weight);
94
  line-height: var(--bs-body-line-height);
95
  color: var(--bs-body-color);
96
  text-align: var(--bs-body-text-align);
97
  background-color: var(--bs-body-bg);
98
  -webkit-text-size-adjust: 100%;
99
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
100
}
101
 
102
hr {
103
  margin: 1rem 0;
104
  color: inherit;
105
  border: 0;
106
  border-top: 1px solid;
107
  opacity: 0.1;
108
}
109
 
16848 stevensc 110
h6,
111
.h6,
112
h5,
113
.h5,
114
h4,
115
.h4,
116
h3,
117
.h3,
118
h2,
119
.h2,
120
h1,
121
.h1 {
16825 efrain 122
  margin-top: 0;
123
  margin-bottom: 0;
124
  font-weight: 500;
125
  line-height: 1.2;
126
}
127
 
16848 stevensc 128
h1,
129
.h1 {
16825 efrain 130
  font-size: calc(1.375rem + 1.5vw);
131
}
16848 stevensc 132
 
16825 efrain 133
@media (min-width: 1200px) {
16848 stevensc 134
 
135
  h1,
136
  .h1 {
16825 efrain 137
    font-size: 2.5rem;
138
  }
139
}
140
 
16848 stevensc 141
h2,
142
.h2 {
16825 efrain 143
  font-size: calc(1.325rem + 0.9vw);
144
}
16848 stevensc 145
 
16825 efrain 146
@media (min-width: 1200px) {
16848 stevensc 147
 
148
  h2,
149
  .h2 {
16825 efrain 150
    font-size: 2rem;
151
  }
152
}
153
 
16848 stevensc 154
h3,
155
.h3 {
16825 efrain 156
  font-size: calc(1.275rem + 0.3vw);
157
}
16848 stevensc 158
 
16825 efrain 159
@media (min-width: 1200px) {
16848 stevensc 160
 
161
  h3,
162
  .h3 {
16825 efrain 163
    font-size: 1.5rem;
164
  }
165
}
166
 
16848 stevensc 167
h4,
168
.h4 {
16825 efrain 169
  font-size: 1.25rem;
170
}
171
 
16848 stevensc 172
h5,
173
.h5 {
16825 efrain 174
  font-size: 1rem;
175
}
176
 
16848 stevensc 177
h6,
178
.h6 {
16825 efrain 179
  font-size: 0.875rem;
180
}
181
 
182
p {
183
  margin-top: 0;
184
  margin-bottom: 0;
185
}
186
 
187
abbr[title] {
188
  text-decoration: underline dotted;
189
  cursor: help;
190
  text-decoration-skip-ink: none;
191
}
192
 
193
address {
194
  margin-bottom: 1rem;
195
  font-style: normal;
196
  line-height: inherit;
197
}
198
 
199
ol,
200
ul {
201
  padding-left: 2rem;
202
}
203
 
204
ol,
205
ul,
206
dl {
207
  margin-top: 0;
208
  margin-bottom: 1rem;
209
}
210
 
211
ol ol,
212
ul ul,
213
ol ul,
214
ul ol {
215
  margin-bottom: 0;
216
}
217
 
218
dt {
219
  font-weight: 500;
220
}
221
 
222
dd {
223
  margin-bottom: 0.5rem;
224
  margin-left: 0;
225
}
226
 
227
blockquote {
228
  margin: 0 0 1rem;
229
}
230
 
231
b,
232
strong {
233
  font-weight: 700;
234
}
235
 
16848 stevensc 236
small,
237
.small {
16825 efrain 238
  font-size: 0.875em;
239
}
240
 
16848 stevensc 241
mark,
242
.mark {
16825 efrain 243
  padding: 0.1875em;
244
  background-color: var(--bs-highlight-bg);
245
}
246
 
247
sub,
248
sup {
249
  position: relative;
250
  font-size: 0.75em;
251
  line-height: 0;
252
  vertical-align: baseline;
253
}
254
 
255
sub {
256
  bottom: -0.25em;
257
}
258
 
259
sup {
260
  top: -0.5em;
261
}
262
 
263
a {
264
  color: var(--bs-link-color);
265
  text-decoration: none;
266
}
16848 stevensc 267
 
16825 efrain 268
a:hover {
269
  color: var(--bs-link-hover-color);
270
}
271
 
16848 stevensc 272
a:not([href]):not([class]),
273
a:not([href]):not([class]):hover {
16825 efrain 274
  color: inherit;
275
  text-decoration: none;
276
}
277
 
278
pre,
279
code,
280
kbd,
281
samp {
282
  font-family: var(--bs-font-monospace);
283
  font-size: 1em;
284
}
285
 
286
pre {
287
  display: block;
288
  margin-top: 0;
289
  margin-bottom: 1rem;
290
  overflow: auto;
291
  font-size: 0.875em;
292
}
16848 stevensc 293
 
16825 efrain 294
pre code {
295
  font-size: inherit;
296
  color: inherit;
297
  word-break: normal;
298
}
299
 
300
code {
301
  font-size: 0.875em;
302
  color: var(--bs-code-color);
303
  word-wrap: break-word;
304
}
16848 stevensc 305
 
306
a>code {
16825 efrain 307
  color: inherit;
308
}
309
 
310
kbd {
311
  padding: 0.1875rem 0.375rem;
312
  font-size: 0.875em;
313
  color: var(--bs-body-bg);
314
  background-color: var(--bs-body-color);
315
  border-radius: 0.25rem;
316
}
16848 stevensc 317
 
16825 efrain 318
kbd kbd {
319
  padding: 0;
320
  font-size: 1em;
321
}
322
 
323
figure {
324
  margin: 0 0 1rem;
325
}
326
 
16850 stevensc 327
span,
328
svg {
329
  color: var(--subtitle-color);
330
  font-weight: 600;
331
  font-size: .9rem;
332
}
333
 
16825 efrain 334
img,
335
svg {
336
  vertical-align: middle;
337
}
338
 
339
table {
340
  caption-side: bottom;
341
  border-collapse: collapse;
342
}
343
 
344
caption {
345
  padding-top: 0.85rem;
346
  padding-bottom: 0.85rem;
347
  color: #7987a1;
348
  text-align: left;
349
}
350
 
351
th {
352
  text-align: inherit;
353
  text-align: -webkit-match-parent;
354
}
355
 
356
thead,
357
tbody,
358
tfoot,
359
tr,
360
td,
361
th {
362
  border-color: inherit;
363
  border-style: solid;
364
  border-width: 0;
365
}
366
 
367
label {
368
  display: inline-block;
369
}
370
 
371
button {
372
  border-radius: 0;
373
}
374
 
375
button:focus:not(:focus-visible) {
376
  outline: 0;
377
}
378
 
379
input,
380
button,
381
select,
382
optgroup,
383
textarea {
384
  margin: 0;
385
  font-family: inherit;
386
  font-size: inherit;
387
  line-height: inherit;
388
}
389
 
390
button,
391
select {
392
  text-transform: none;
393
}
394
 
395
[role=button] {
396
  cursor: pointer;
397
}
398
 
399
select {
400
  word-wrap: normal;
401
}
16848 stevensc 402
 
16825 efrain 403
select:disabled {
404
  opacity: 1;
405
}
406
 
407
[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
408
  display: none !important;
409
}
410
 
411
button,
412
[type=button],
413
[type=reset],
414
[type=submit] {
16848 stevensc 415
  appearance: button;
16825 efrain 416
}
16848 stevensc 417
 
16825 efrain 418
button:not(:disabled),
419
[type=button]:not(:disabled),
420
[type=reset]:not(:disabled),
421
[type=submit]:not(:disabled) {
422
  cursor: pointer;
423
}
424
 
425
::-moz-focus-inner {
426
  padding: 0;
427
  border-style: none;
428
}
429
 
430
textarea {
431
  resize: vertical;
432
}
433
 
434
fieldset {
435
  min-width: 0;
436
  padding: 0;
437
  margin: 0;
438
  border: 0;
439
}
440
 
441
legend {
442
  float: left;
443
  width: 100%;
444
  padding: 0;
445
  margin-bottom: 0.5rem;
446
  font-size: calc(1.275rem + 0.3vw);
447
  line-height: inherit;
448
}
16848 stevensc 449
 
16825 efrain 450
@media (min-width: 1200px) {
451
  legend {
452
    font-size: 1.5rem;
453
  }
454
}
16848 stevensc 455
 
456
legend+* {
16825 efrain 457
  clear: left;
458
}
459
 
460
::-webkit-datetime-edit-fields-wrapper,
461
::-webkit-datetime-edit-text,
462
::-webkit-datetime-edit-minute,
463
::-webkit-datetime-edit-hour-field,
464
::-webkit-datetime-edit-day-field,
465
::-webkit-datetime-edit-month-field,
466
::-webkit-datetime-edit-year-field {
467
  padding: 0;
468
}
469
 
470
::-webkit-inner-spin-button {
471
  height: auto;
472
}
473
 
474
[type=search] {
475
  outline-offset: -2px;
16848 stevensc 476
  appearance: textfield;
16825 efrain 477
}
478
 
479
/* rtl:raw:
480
[type="tel"],
481
[type="url"],
482
[type="email"],
483
[type="number"] {
484
  direction: ltr;
485
}
486
*/
487
::-webkit-search-decoration {
488
  -webkit-appearance: none;
489
}
490
 
491
::-webkit-color-swatch-wrapper {
492
  padding: 0;
493
}
494
 
495
::file-selector-button {
496
  font: inherit;
16848 stevensc 497
  appearance: button;
16825 efrain 498
}
499
 
500
output {
501
  display: inline-block;
502
}
503
 
504
iframe {
505
  border: 0;
506
}
507
 
508
summary {
509
  display: list-item;
510
  cursor: pointer;
511
}
512
 
513
progress {
514
  vertical-align: baseline;
515
}
516
 
517
[hidden] {
518
  display: none !important;
519
}
520
 
521
.lead {
522
  font-size: 1.09375rem;
523
  font-weight: 300;
524
}
525
 
526
.display-1 {
527
  font-size: calc(1.625rem + 4.5vw);
528
  font-weight: 300;
529
  line-height: 1.2;
530
}
16848 stevensc 531
 
16825 efrain 532
@media (min-width: 1200px) {
533
  .display-1 {
534
    font-size: 5rem;
535
  }
536
}
537
 
538
.display-2 {
539
  font-size: calc(1.575rem + 3.9vw);
540
  font-weight: 300;
541
  line-height: 1.2;
542
}
16848 stevensc 543
 
16825 efrain 544
@media (min-width: 1200px) {
545
  .display-2 {
546
    font-size: 4.5rem;
547
  }
548
}
549
 
550
.display-3 {
551
  font-size: calc(1.525rem + 3.3vw);
552
  font-weight: 300;
553
  line-height: 1.2;
554
}
16848 stevensc 555
 
16825 efrain 556
@media (min-width: 1200px) {
557
  .display-3 {
558
    font-size: 4rem;
559
  }
560
}
561
 
562
.display-4 {
563
  font-size: calc(1.475rem + 2.7vw);
564
  font-weight: 300;
565
  line-height: 1.2;
566
}
16848 stevensc 567
 
16825 efrain 568
@media (min-width: 1200px) {
569
  .display-4 {
570
    font-size: 3.5rem;
571
  }
572
}
573
 
574
.display-5 {
575
  font-size: calc(1.425rem + 2.1vw);
576
  font-weight: 300;
577
  line-height: 1.2;
578
}
16848 stevensc 579
 
16825 efrain 580
@media (min-width: 1200px) {
581
  .display-5 {
582
    font-size: 3rem;
583
  }
584
}
585
 
586
.display-6 {
587
  font-size: calc(1.375rem + 1.5vw);
588
  font-weight: 300;
589
  line-height: 1.2;
590
}
16848 stevensc 591
 
16825 efrain 592
@media (min-width: 1200px) {
593
  .display-6 {
594
    font-size: 2.5rem;
595
  }
596
}
597
 
598
.list-unstyled {
599
  padding-left: 0;
600
  list-style: none;
601
}
602
 
603
.list-inline {
604
  padding-left: 0;
605
  list-style: none;
606
}
607
 
608
.list-inline-item {
609
  display: inline-block;
610
}
16848 stevensc 611
 
16825 efrain 612
.list-inline-item:not(:last-child) {
613
  margin-right: 0.5rem;
614
}
615
 
616
.initialism {
617
  font-size: 0.875em;
618
  text-transform: uppercase;
619
}
620
 
621
.blockquote {
622
  margin-bottom: 1rem;
623
  font-size: 1.09375rem;
624
}
16848 stevensc 625
 
626
.blockquote> :last-child {
16825 efrain 627
  margin-bottom: 0;
628
}
629
 
630
.blockquote-footer {
631
  margin-top: -1rem;
632
  margin-bottom: 1rem;
633
  font-size: 0.875em;
634
  color: #7987a1;
635
}
16848 stevensc 636
 
16825 efrain 637
.blockquote-footer::before {
638
  content: "— ";
639
}
640
 
641
.img-fluid {
642
  max-width: 100%;
643
  height: auto;
644
}
645
 
646
.img-thumbnail {
647
  padding: 0.25rem;
648
  background-color: #f9fafb;
649
  border: 1px solid var(--bs-border-color);
650
  border-radius: 0.25rem;
651
  max-width: 100%;
652
  height: auto;
653
}
654
 
655
.figure {
656
  display: inline-block;
657
}
658
 
659
.figure-img {
660
  margin-bottom: 0.5rem;
661
  line-height: 1;
662
}
663
 
664
.figure-caption {
665
  font-size: 0.875em;
666
  color: #7987a1;
667
}
668
 
669
.container,
670
.container-fluid,
671
.container-xxl,
672
.container-xl,
673
.container-lg,
674
.container-md,
675
.container-sm {
676
  --bs-gutter-x: 1.5rem;
677
  --bs-gutter-y: 0;
678
  width: 100%;
679
  padding-right: calc(var(--bs-gutter-x) * 0.5);
680
  padding-left: calc(var(--bs-gutter-x) * 0.5);
681
  margin-right: auto;
682
  margin-left: auto;
683
}
684
 
685
@media (min-width: 576px) {
16848 stevensc 686
 
687
  .container-sm,
688
  .container {
16825 efrain 689
    max-width: 540px;
690
  }
691
}
16848 stevensc 692
 
16825 efrain 693
@media (min-width: 768px) {
16848 stevensc 694
 
695
  .container-md,
696
  .container-sm,
697
  .container {
16825 efrain 698
    max-width: 720px;
699
  }
700
}
16848 stevensc 701
 
16825 efrain 702
@media (min-width: 992px) {
16848 stevensc 703
 
704
  .container-lg,
705
  .container-md,
706
  .container-sm,
707
  .container {
16825 efrain 708
    max-width: 960px;
709
  }
710
}
16848 stevensc 711
 
16825 efrain 712
@media (min-width: 1200px) {
16848 stevensc 713
 
714
  .container-xl,
715
  .container-lg,
716
  .container-md,
717
  .container-sm,
718
  .container {
16825 efrain 719
    max-width: 1140px;
720
  }
721
}
16848 stevensc 722
 
16825 efrain 723
@media (min-width: 1400px) {
16848 stevensc 724
 
725
  .container-xxl,
726
  .container-xl,
727
  .container-lg,
728
  .container-md,
729
  .container-sm,
730
  .container {
16825 efrain 731
    max-width: 1320px;
732
  }
733
}
16848 stevensc 734
 
16825 efrain 735
.row {
736
  --bs-gutter-x: 1.5rem;
737
  --bs-gutter-y: 0;
738
  display: flex;
739
  flex-wrap: wrap;
740
  margin-top: calc(-1 * var(--bs-gutter-y));
741
  margin-right: calc(-0.5 * var(--bs-gutter-x));
742
  margin-left: calc(-0.5 * var(--bs-gutter-x));
743
}
16848 stevensc 744
 
745
.row>* {
16825 efrain 746
  flex-shrink: 0;
747
  width: 100%;
748
  max-width: 100%;
749
  padding-right: calc(var(--bs-gutter-x) * 0.5);
750
  padding-left: calc(var(--bs-gutter-x) * 0.5);
751
  margin-top: var(--bs-gutter-y);
752
}
753
 
754
.col {
755
  flex: 1 0 0%;
756
}
757
 
16848 stevensc 758
.row-cols-auto>* {
16825 efrain 759
  flex: 0 0 auto;
760
  width: auto;
761
}
762
 
16848 stevensc 763
.row-cols-1>* {
16825 efrain 764
  flex: 0 0 auto;
765
  width: 100%;
766
}
767
 
16848 stevensc 768
.row-cols-2>* {
16825 efrain 769
  flex: 0 0 auto;
770
  width: 50%;
771
}
772
 
16848 stevensc 773
.row-cols-3>* {
16825 efrain 774
  flex: 0 0 auto;
775
  width: 33.3333333333%;
776
}
777
 
16848 stevensc 778
.row-cols-4>* {
16825 efrain 779
  flex: 0 0 auto;
780
  width: 25%;
781
}
782
 
16848 stevensc 783
.row-cols-5>* {
16825 efrain 784
  flex: 0 0 auto;
785
  width: 20%;
786
}
787
 
16848 stevensc 788
.row-cols-6>* {
16825 efrain 789
  flex: 0 0 auto;
790
  width: 16.6666666667%;
791
}
792
 
793
.col-auto {
794
  flex: 0 0 auto;
795
  width: auto;
796
}
797
 
798
.col-1 {
799
  flex: 0 0 auto;
800
  width: 8.33333333%;
801
}
802
 
803
.col-2 {
804
  flex: 0 0 auto;
805
  width: 16.66666667%;
806
}
807
 
808
.col-3 {
809
  flex: 0 0 auto;
810
  width: 25%;
811
}
812
 
813
.col-4 {
814
  flex: 0 0 auto;
815
  width: 33.33333333%;
816
}
817
 
818
.col-5 {
819
  flex: 0 0 auto;
820
  width: 41.66666667%;
821
}
822
 
823
.col-6 {
824
  flex: 0 0 auto;
825
  width: 50%;
826
}
827
 
828
.col-7 {
829
  flex: 0 0 auto;
830
  width: 58.33333333%;
831
}
832
 
833
.col-8 {
834
  flex: 0 0 auto;
835
  width: 66.66666667%;
836
}
837
 
838
.col-9 {
839
  flex: 0 0 auto;
840
  width: 75%;
841
}
842
 
843
.col-10 {
844
  flex: 0 0 auto;
845
  width: 83.33333333%;
846
}
847
 
848
.col-11 {
849
  flex: 0 0 auto;
850
  width: 91.66666667%;
851
}
852
 
853
.col-12 {
854
  flex: 0 0 auto;
855
  width: 100%;
856
}
857
 
858
.offset-1 {
859
  margin-left: 8.33333333%;
860
}
861
 
862
.offset-2 {
863
  margin-left: 16.66666667%;
864
}
865
 
866
.offset-3 {
867
  margin-left: 25%;
868
}
869
 
870
.offset-4 {
871
  margin-left: 33.33333333%;
872
}
873
 
874
.offset-5 {
875
  margin-left: 41.66666667%;
876
}
877
 
878
.offset-6 {
879
  margin-left: 50%;
880
}
881
 
882
.offset-7 {
883
  margin-left: 58.33333333%;
884
}
885
 
886
.offset-8 {
887
  margin-left: 66.66666667%;
888
}
889
 
890
.offset-9 {
891
  margin-left: 75%;
892
}
893
 
894
.offset-10 {
895
  margin-left: 83.33333333%;
896
}
897
 
898
.offset-11 {
899
  margin-left: 91.66666667%;
900
}
901
 
902
.g-0,
903
.gx-0 {
904
  --bs-gutter-x: 0;
905
}
906
 
907
.g-0,
908
.gy-0 {
909
  --bs-gutter-y: 0;
910
}
911
 
912
.g-1,
913
.gx-1 {
914
  --bs-gutter-x: 0.25rem;
915
}
916
 
917
.g-1,
918
.gy-1 {
919
  --bs-gutter-y: 0.25rem;
920
}
921
 
922
.g-2,
923
.gx-2 {
924
  --bs-gutter-x: 0.5rem;
925
}
926
 
927
.g-2,
928
.gy-2 {
929
  --bs-gutter-y: 0.5rem;
930
}
931
 
932
.g-3,
933
.gx-3 {
934
  --bs-gutter-x: 1rem;
935
}
936
 
937
.g-3,
938
.gy-3 {
939
  --bs-gutter-y: 1rem;
940
}
941
 
942
.g-4,
943
.gx-4 {
944
  --bs-gutter-x: 1.5rem;
945
}
946
 
947
.g-4,
948
.gy-4 {
949
  --bs-gutter-y: 1.5rem;
950
}
951
 
952
.g-5,
953
.gx-5 {
954
  --bs-gutter-x: 3rem;
955
}
956
 
957
.g-5,
958
.gy-5 {
959
  --bs-gutter-y: 3rem;
960
}
961
 
962
.g-6,
963
.gx-6 {
964
  --bs-gutter-x: 4.5rem;
965
}
966
 
967
.g-6,
968
.gy-6 {
969
  --bs-gutter-y: 4.5rem;
970
}
971
 
972
.g-7,
973
.gx-7 {
974
  --bs-gutter-x: 6rem;
975
}
976
 
977
.g-7,
978
.gy-7 {
979
  --bs-gutter-y: 6rem;
980
}
981
 
982
@media (min-width: 576px) {
983
  .col-sm {
984
    flex: 1 0 0%;
985
  }
16848 stevensc 986
 
987
  .row-cols-sm-auto>* {
16825 efrain 988
    flex: 0 0 auto;
989
    width: auto;
990
  }
16848 stevensc 991
 
992
  .row-cols-sm-1>* {
16825 efrain 993
    flex: 0 0 auto;
994
    width: 100%;
995
  }
16848 stevensc 996
 
997
  .row-cols-sm-2>* {
16825 efrain 998
    flex: 0 0 auto;
999
    width: 50%;
1000
  }
16848 stevensc 1001
 
1002
  .row-cols-sm-3>* {
16825 efrain 1003
    flex: 0 0 auto;
1004
    width: 33.3333333333%;
1005
  }
16848 stevensc 1006
 
1007
  .row-cols-sm-4>* {
16825 efrain 1008
    flex: 0 0 auto;
1009
    width: 25%;
1010
  }
16848 stevensc 1011
 
1012
  .row-cols-sm-5>* {
16825 efrain 1013
    flex: 0 0 auto;
1014
    width: 20%;
1015
  }
16848 stevensc 1016
 
1017
  .row-cols-sm-6>* {
16825 efrain 1018
    flex: 0 0 auto;
1019
    width: 16.6666666667%;
1020
  }
16848 stevensc 1021
 
16825 efrain 1022
  .col-sm-auto {
1023
    flex: 0 0 auto;
1024
    width: auto;
1025
  }
16848 stevensc 1026
 
16825 efrain 1027
  .col-sm-1 {
1028
    flex: 0 0 auto;
1029
    width: 8.33333333%;
1030
  }
16848 stevensc 1031
 
16825 efrain 1032
  .col-sm-2 {
1033
    flex: 0 0 auto;
1034
    width: 16.66666667%;
1035
  }
16848 stevensc 1036
 
16825 efrain 1037
  .col-sm-3 {
1038
    flex: 0 0 auto;
1039
    width: 25%;
1040
  }
16848 stevensc 1041
 
16825 efrain 1042
  .col-sm-4 {
1043
    flex: 0 0 auto;
1044
    width: 33.33333333%;
1045
  }
16848 stevensc 1046
 
16825 efrain 1047
  .col-sm-5 {
1048
    flex: 0 0 auto;
1049
    width: 41.66666667%;
1050
  }
16848 stevensc 1051
 
16825 efrain 1052
  .col-sm-6 {
1053
    flex: 0 0 auto;
1054
    width: 50%;
1055
  }
16848 stevensc 1056
 
16825 efrain 1057
  .col-sm-7 {
1058
    flex: 0 0 auto;
1059
    width: 58.33333333%;
1060
  }
16848 stevensc 1061
 
16825 efrain 1062
  .col-sm-8 {
1063
    flex: 0 0 auto;
1064
    width: 66.66666667%;
1065
  }
16848 stevensc 1066
 
16825 efrain 1067
  .col-sm-9 {
1068
    flex: 0 0 auto;
1069
    width: 75%;
1070
  }
16848 stevensc 1071
 
16825 efrain 1072
  .col-sm-10 {
1073
    flex: 0 0 auto;
1074
    width: 83.33333333%;
1075
  }
16848 stevensc 1076
 
16825 efrain 1077
  .col-sm-11 {
1078
    flex: 0 0 auto;
1079
    width: 91.66666667%;
1080
  }
16848 stevensc 1081
 
16825 efrain 1082
  .col-sm-12 {
1083
    flex: 0 0 auto;
1084
    width: 100%;
1085
  }
16848 stevensc 1086
 
16825 efrain 1087
  .offset-sm-0 {
1088
    margin-left: 0;
1089
  }
16848 stevensc 1090
 
16825 efrain 1091
  .offset-sm-1 {
1092
    margin-left: 8.33333333%;
1093
  }
16848 stevensc 1094
 
16825 efrain 1095
  .offset-sm-2 {
1096
    margin-left: 16.66666667%;
1097
  }
16848 stevensc 1098
 
16825 efrain 1099
  .offset-sm-3 {
1100
    margin-left: 25%;
1101
  }
16848 stevensc 1102
 
16825 efrain 1103
  .offset-sm-4 {
1104
    margin-left: 33.33333333%;
1105
  }
16848 stevensc 1106
 
16825 efrain 1107
  .offset-sm-5 {
1108
    margin-left: 41.66666667%;
1109
  }
16848 stevensc 1110
 
16825 efrain 1111
  .offset-sm-6 {
1112
    margin-left: 50%;
1113
  }
16848 stevensc 1114
 
16825 efrain 1115
  .offset-sm-7 {
1116
    margin-left: 58.33333333%;
1117
  }
16848 stevensc 1118
 
16825 efrain 1119
  .offset-sm-8 {
1120
    margin-left: 66.66666667%;
1121
  }
16848 stevensc 1122
 
16825 efrain 1123
  .offset-sm-9 {
1124
    margin-left: 75%;
1125
  }
16848 stevensc 1126
 
16825 efrain 1127
  .offset-sm-10 {
1128
    margin-left: 83.33333333%;
1129
  }
16848 stevensc 1130
 
16825 efrain 1131
  .offset-sm-11 {
1132
    margin-left: 91.66666667%;
1133
  }
16848 stevensc 1134
 
16825 efrain 1135
  .g-sm-0,
1136
  .gx-sm-0 {
1137
    --bs-gutter-x: 0;
1138
  }
16848 stevensc 1139
 
16825 efrain 1140
  .g-sm-0,
1141
  .gy-sm-0 {
1142
    --bs-gutter-y: 0;
1143
  }
16848 stevensc 1144
 
16825 efrain 1145
  .g-sm-1,
1146
  .gx-sm-1 {
1147
    --bs-gutter-x: 0.25rem;
1148
  }
16848 stevensc 1149
 
16825 efrain 1150
  .g-sm-1,
1151
  .gy-sm-1 {
1152
    --bs-gutter-y: 0.25rem;
1153
  }
16848 stevensc 1154
 
16825 efrain 1155
  .g-sm-2,
1156
  .gx-sm-2 {
1157
    --bs-gutter-x: 0.5rem;
1158
  }
16848 stevensc 1159
 
16825 efrain 1160
  .g-sm-2,
1161
  .gy-sm-2 {
1162
    --bs-gutter-y: 0.5rem;
1163
  }
16848 stevensc 1164
 
16825 efrain 1165
  .g-sm-3,
1166
  .gx-sm-3 {
1167
    --bs-gutter-x: 1rem;
1168
  }
16848 stevensc 1169
 
16825 efrain 1170
  .g-sm-3,
1171
  .gy-sm-3 {
1172
    --bs-gutter-y: 1rem;
1173
  }
16848 stevensc 1174
 
16825 efrain 1175
  .g-sm-4,
1176
  .gx-sm-4 {
1177
    --bs-gutter-x: 1.5rem;
1178
  }
16848 stevensc 1179
 
16825 efrain 1180
  .g-sm-4,
1181
  .gy-sm-4 {
1182
    --bs-gutter-y: 1.5rem;
1183
  }
16848 stevensc 1184
 
16825 efrain 1185
  .g-sm-5,
1186
  .gx-sm-5 {
1187
    --bs-gutter-x: 3rem;
1188
  }
16848 stevensc 1189
 
16825 efrain 1190
  .g-sm-5,
1191
  .gy-sm-5 {
1192
    --bs-gutter-y: 3rem;
1193
  }
16848 stevensc 1194
 
16825 efrain 1195
  .g-sm-6,
1196
  .gx-sm-6 {
1197
    --bs-gutter-x: 4.5rem;
1198
  }
16848 stevensc 1199
 
16825 efrain 1200
  .g-sm-6,
1201
  .gy-sm-6 {
1202
    --bs-gutter-y: 4.5rem;
1203
  }
16848 stevensc 1204
 
16825 efrain 1205
  .g-sm-7,
1206
  .gx-sm-7 {
1207
    --bs-gutter-x: 6rem;
1208
  }
16848 stevensc 1209
 
16825 efrain 1210
  .g-sm-7,
1211
  .gy-sm-7 {
1212
    --bs-gutter-y: 6rem;
1213
  }
1214
}
16848 stevensc 1215
 
16825 efrain 1216
@media (min-width: 768px) {
1217
  .col-md {
1218
    flex: 1 0 0%;
1219
  }
16848 stevensc 1220
 
1221
  .row-cols-md-auto>* {
16825 efrain 1222
    flex: 0 0 auto;
1223
    width: auto;
1224
  }
16848 stevensc 1225
 
1226
  .row-cols-md-1>* {
16825 efrain 1227
    flex: 0 0 auto;
1228
    width: 100%;
1229
  }
16848 stevensc 1230
 
1231
  .row-cols-md-2>* {
16825 efrain 1232
    flex: 0 0 auto;
1233
    width: 50%;
1234
  }
16848 stevensc 1235
 
1236
  .row-cols-md-3>* {
16825 efrain 1237
    flex: 0 0 auto;
1238
    width: 33.3333333333%;
1239
  }
16848 stevensc 1240
 
1241
  .row-cols-md-4>* {
16825 efrain 1242
    flex: 0 0 auto;
1243
    width: 25%;
1244
  }
16848 stevensc 1245
 
1246
  .row-cols-md-5>* {
16825 efrain 1247
    flex: 0 0 auto;
1248
    width: 20%;
1249
  }
16848 stevensc 1250
 
1251
  .row-cols-md-6>* {
16825 efrain 1252
    flex: 0 0 auto;
1253
    width: 16.6666666667%;
1254
  }
16848 stevensc 1255
 
16825 efrain 1256
  .col-md-auto {
1257
    flex: 0 0 auto;
1258
    width: auto;
1259
  }
16848 stevensc 1260
 
16825 efrain 1261
  .col-md-1 {
1262
    flex: 0 0 auto;
1263
    width: 8.33333333%;
1264
  }
16848 stevensc 1265
 
16825 efrain 1266
  .col-md-2 {
1267
    flex: 0 0 auto;
1268
    width: 16.66666667%;
1269
  }
16848 stevensc 1270
 
16825 efrain 1271
  .col-md-3 {
1272
    flex: 0 0 auto;
1273
    width: 25%;
1274
  }
16848 stevensc 1275
 
16825 efrain 1276
  .col-md-4 {
1277
    flex: 0 0 auto;
1278
    width: 33.33333333%;
1279
  }
16848 stevensc 1280
 
16825 efrain 1281
  .col-md-5 {
1282
    flex: 0 0 auto;
1283
    width: 41.66666667%;
1284
  }
16848 stevensc 1285
 
16825 efrain 1286
  .col-md-6 {
1287
    flex: 0 0 auto;
1288
    width: 50%;
1289
  }
16848 stevensc 1290
 
16825 efrain 1291
  .col-md-7 {
1292
    flex: 0 0 auto;
1293
    width: 58.33333333%;
1294
  }
16848 stevensc 1295
 
16825 efrain 1296
  .col-md-8 {
1297
    flex: 0 0 auto;
1298
    width: 66.66666667%;
1299
  }
16848 stevensc 1300
 
16825 efrain 1301
  .col-md-9 {
1302
    flex: 0 0 auto;
1303
    width: 75%;
1304
  }
16848 stevensc 1305
 
16825 efrain 1306
  .col-md-10 {
1307
    flex: 0 0 auto;
1308
    width: 83.33333333%;
1309
  }
16848 stevensc 1310
 
16825 efrain 1311
  .col-md-11 {
1312
    flex: 0 0 auto;
1313
    width: 91.66666667%;
1314
  }
16848 stevensc 1315
 
16825 efrain 1316
  .col-md-12 {
1317
    flex: 0 0 auto;
1318
    width: 100%;
1319
  }
16848 stevensc 1320
 
16825 efrain 1321
  .offset-md-0 {
1322
    margin-left: 0;
1323
  }
16848 stevensc 1324
 
16825 efrain 1325
  .offset-md-1 {
1326
    margin-left: 8.33333333%;
1327
  }
16848 stevensc 1328
 
16825 efrain 1329
  .offset-md-2 {
1330
    margin-left: 16.66666667%;
1331
  }
16848 stevensc 1332
 
16825 efrain 1333
  .offset-md-3 {
1334
    margin-left: 25%;
1335
  }
16848 stevensc 1336
 
16825 efrain 1337
  .offset-md-4 {
1338
    margin-left: 33.33333333%;
1339
  }
16848 stevensc 1340
 
16825 efrain 1341
  .offset-md-5 {
1342
    margin-left: 41.66666667%;
1343
  }
16848 stevensc 1344
 
16825 efrain 1345
  .offset-md-6 {
1346
    margin-left: 50%;
1347
  }
16848 stevensc 1348
 
16825 efrain 1349
  .offset-md-7 {
1350
    margin-left: 58.33333333%;
1351
  }
16848 stevensc 1352
 
16825 efrain 1353
  .offset-md-8 {
1354
    margin-left: 66.66666667%;
1355
  }
16848 stevensc 1356
 
16825 efrain 1357
  .offset-md-9 {
1358
    margin-left: 75%;
1359
  }
16848 stevensc 1360
 
16825 efrain 1361
  .offset-md-10 {
1362
    margin-left: 83.33333333%;
1363
  }
16848 stevensc 1364
 
16825 efrain 1365
  .offset-md-11 {
1366
    margin-left: 91.66666667%;
1367
  }
16848 stevensc 1368
 
16825 efrain 1369
  .g-md-0,
1370
  .gx-md-0 {
1371
    --bs-gutter-x: 0;
1372
  }
16848 stevensc 1373
 
16825 efrain 1374
  .g-md-0,
1375
  .gy-md-0 {
1376
    --bs-gutter-y: 0;
1377
  }
16848 stevensc 1378
 
16825 efrain 1379
  .g-md-1,
1380
  .gx-md-1 {
1381
    --bs-gutter-x: 0.25rem;
1382
  }
16848 stevensc 1383
 
16825 efrain 1384
  .g-md-1,
1385
  .gy-md-1 {
1386
    --bs-gutter-y: 0.25rem;
1387
  }
16848 stevensc 1388
 
16825 efrain 1389
  .g-md-2,
1390
  .gx-md-2 {
1391
    --bs-gutter-x: 0.5rem;
1392
  }
16848 stevensc 1393
 
16825 efrain 1394
  .g-md-2,
1395
  .gy-md-2 {
1396
    --bs-gutter-y: 0.5rem;
1397
  }
16848 stevensc 1398
 
16825 efrain 1399
  .g-md-3,
1400
  .gx-md-3 {
1401
    --bs-gutter-x: 1rem;
1402
  }
16848 stevensc 1403
 
16825 efrain 1404
  .g-md-3,
1405
  .gy-md-3 {
1406
    --bs-gutter-y: 1rem;
1407
  }
16848 stevensc 1408
 
16825 efrain 1409
  .g-md-4,
1410
  .gx-md-4 {
1411
    --bs-gutter-x: 1.5rem;
1412
  }
16848 stevensc 1413
 
16825 efrain 1414
  .g-md-4,
1415
  .gy-md-4 {
1416
    --bs-gutter-y: 1.5rem;
1417
  }
16848 stevensc 1418
 
16825 efrain 1419
  .g-md-5,
1420
  .gx-md-5 {
1421
    --bs-gutter-x: 3rem;
1422
  }
16848 stevensc 1423
 
16825 efrain 1424
  .g-md-5,
1425
  .gy-md-5 {
1426
    --bs-gutter-y: 3rem;
1427
  }
16848 stevensc 1428
 
16825 efrain 1429
  .g-md-6,
1430
  .gx-md-6 {
1431
    --bs-gutter-x: 4.5rem;
1432
  }
16848 stevensc 1433
 
16825 efrain 1434
  .g-md-6,
1435
  .gy-md-6 {
1436
    --bs-gutter-y: 4.5rem;
1437
  }
16848 stevensc 1438
 
16825 efrain 1439
  .g-md-7,
1440
  .gx-md-7 {
1441
    --bs-gutter-x: 6rem;
1442
  }
16848 stevensc 1443
 
16825 efrain 1444
  .g-md-7,
1445
  .gy-md-7 {
1446
    --bs-gutter-y: 6rem;
1447
  }
1448
}
16848 stevensc 1449
 
16825 efrain 1450
@media (min-width: 992px) {
1451
  .col-lg {
1452
    flex: 1 0 0%;
1453
  }
16848 stevensc 1454
 
1455
  .row-cols-lg-auto>* {
16825 efrain 1456
    flex: 0 0 auto;
1457
    width: auto;
1458
  }
16848 stevensc 1459
 
1460
  .row-cols-lg-1>* {
16825 efrain 1461
    flex: 0 0 auto;
1462
    width: 100%;
1463
  }
16848 stevensc 1464
 
1465
  .row-cols-lg-2>* {
16825 efrain 1466
    flex: 0 0 auto;
1467
    width: 50%;
1468
  }
16848 stevensc 1469
 
1470
  .row-cols-lg-3>* {
16825 efrain 1471
    flex: 0 0 auto;
1472
    width: 33.3333333333%;
1473
  }
16848 stevensc 1474
 
1475
  .row-cols-lg-4>* {
16825 efrain 1476
    flex: 0 0 auto;
1477
    width: 25%;
1478
  }
16848 stevensc 1479
 
1480
  .row-cols-lg-5>* {
16825 efrain 1481
    flex: 0 0 auto;
1482
    width: 20%;
1483
  }
16848 stevensc 1484
 
1485
  .row-cols-lg-6>* {
16825 efrain 1486
    flex: 0 0 auto;
1487
    width: 16.6666666667%;
1488
  }
16848 stevensc 1489
 
16825 efrain 1490
  .col-lg-auto {
1491
    flex: 0 0 auto;
1492
    width: auto;
1493
  }
16848 stevensc 1494
 
16825 efrain 1495
  .col-lg-1 {
1496
    flex: 0 0 auto;
1497
    width: 8.33333333%;
1498
  }
16848 stevensc 1499
 
16825 efrain 1500
  .col-lg-2 {
1501
    flex: 0 0 auto;
1502
    width: 16.66666667%;
1503
  }
16848 stevensc 1504
 
16825 efrain 1505
  .col-lg-3 {
1506
    flex: 0 0 auto;
1507
    width: 25%;
1508
  }
16848 stevensc 1509
 
16825 efrain 1510
  .col-lg-4 {
1511
    flex: 0 0 auto;
1512
    width: 33.33333333%;
1513
  }
16848 stevensc 1514
 
16825 efrain 1515
  .col-lg-5 {
1516
    flex: 0 0 auto;
1517
    width: 41.66666667%;
1518
  }
16848 stevensc 1519
 
16825 efrain 1520
  .col-lg-6 {
1521
    flex: 0 0 auto;
1522
    width: 50%;
1523
  }
16848 stevensc 1524
 
16825 efrain 1525
  .col-lg-7 {
1526
    flex: 0 0 auto;
1527
    width: 58.33333333%;
1528
  }
16848 stevensc 1529
 
16825 efrain 1530
  .col-lg-8 {
1531
    flex: 0 0 auto;
1532
    width: 66.66666667%;
1533
  }
16848 stevensc 1534
 
16825 efrain 1535
  .col-lg-9 {
1536
    flex: 0 0 auto;
1537
    width: 75%;
1538
  }
16848 stevensc 1539
 
16825 efrain 1540
  .col-lg-10 {
1541
    flex: 0 0 auto;
1542
    width: 83.33333333%;
1543
  }
16848 stevensc 1544
 
16825 efrain 1545
  .col-lg-11 {
1546
    flex: 0 0 auto;
1547
    width: 91.66666667%;
1548
  }
16848 stevensc 1549
 
16825 efrain 1550
  .col-lg-12 {
1551
    flex: 0 0 auto;
1552
    width: 100%;
1553
  }
16848 stevensc 1554
 
16825 efrain 1555
  .offset-lg-0 {
1556
    margin-left: 0;
1557
  }
16848 stevensc 1558
 
16825 efrain 1559
  .offset-lg-1 {
1560
    margin-left: 8.33333333%;
1561
  }
16848 stevensc 1562
 
16825 efrain 1563
  .offset-lg-2 {
1564
    margin-left: 16.66666667%;
1565
  }
16848 stevensc 1566
 
16825 efrain 1567
  .offset-lg-3 {
1568
    margin-left: 25%;
1569
  }
16848 stevensc 1570
 
16825 efrain 1571
  .offset-lg-4 {
1572
    margin-left: 33.33333333%;
1573
  }
16848 stevensc 1574
 
16825 efrain 1575
  .offset-lg-5 {
1576
    margin-left: 41.66666667%;
1577
  }
16848 stevensc 1578
 
16825 efrain 1579
  .offset-lg-6 {
1580
    margin-left: 50%;
1581
  }
16848 stevensc 1582
 
16825 efrain 1583
  .offset-lg-7 {
1584
    margin-left: 58.33333333%;
1585
  }
16848 stevensc 1586
 
16825 efrain 1587
  .offset-lg-8 {
1588
    margin-left: 66.66666667%;
1589
  }
16848 stevensc 1590
 
16825 efrain 1591
  .offset-lg-9 {
1592
    margin-left: 75%;
1593
  }
16848 stevensc 1594
 
16825 efrain 1595
  .offset-lg-10 {
1596
    margin-left: 83.33333333%;
1597
  }
16848 stevensc 1598
 
16825 efrain 1599
  .offset-lg-11 {
1600
    margin-left: 91.66666667%;
1601
  }
16848 stevensc 1602
 
16825 efrain 1603
  .g-lg-0,
1604
  .gx-lg-0 {
1605
    --bs-gutter-x: 0;
1606
  }
16848 stevensc 1607
 
16825 efrain 1608
  .g-lg-0,
1609
  .gy-lg-0 {
1610
    --bs-gutter-y: 0;
1611
  }
16848 stevensc 1612
 
16825 efrain 1613
  .g-lg-1,
1614
  .gx-lg-1 {
1615
    --bs-gutter-x: 0.25rem;
1616
  }
16848 stevensc 1617
 
16825 efrain 1618
  .g-lg-1,
1619
  .gy-lg-1 {
1620
    --bs-gutter-y: 0.25rem;
1621
  }
16848 stevensc 1622
 
16825 efrain 1623
  .g-lg-2,
1624
  .gx-lg-2 {
1625
    --bs-gutter-x: 0.5rem;
1626
  }
16848 stevensc 1627
 
16825 efrain 1628
  .g-lg-2,
1629
  .gy-lg-2 {
1630
    --bs-gutter-y: 0.5rem;
1631
  }
16848 stevensc 1632
 
16825 efrain 1633
  .g-lg-3,
1634
  .gx-lg-3 {
1635
    --bs-gutter-x: 1rem;
1636
  }
16848 stevensc 1637
 
16825 efrain 1638
  .g-lg-3,
1639
  .gy-lg-3 {
1640
    --bs-gutter-y: 1rem;
1641
  }
16848 stevensc 1642
 
16825 efrain 1643
  .g-lg-4,
1644
  .gx-lg-4 {
1645
    --bs-gutter-x: 1.5rem;
1646
  }
16848 stevensc 1647
 
16825 efrain 1648
  .g-lg-4,
1649
  .gy-lg-4 {
1650
    --bs-gutter-y: 1.5rem;
1651
  }
16848 stevensc 1652
 
16825 efrain 1653
  .g-lg-5,
1654
  .gx-lg-5 {
1655
    --bs-gutter-x: 3rem;
1656
  }
16848 stevensc 1657
 
16825 efrain 1658
  .g-lg-5,
1659
  .gy-lg-5 {
1660
    --bs-gutter-y: 3rem;
1661
  }
16848 stevensc 1662
 
16825 efrain 1663
  .g-lg-6,
1664
  .gx-lg-6 {
1665
    --bs-gutter-x: 4.5rem;
1666
  }
16848 stevensc 1667
 
16825 efrain 1668
  .g-lg-6,
1669
  .gy-lg-6 {
1670
    --bs-gutter-y: 4.5rem;
1671
  }
16848 stevensc 1672
 
16825 efrain 1673
  .g-lg-7,
1674
  .gx-lg-7 {
1675
    --bs-gutter-x: 6rem;
1676
  }
16848 stevensc 1677
 
16825 efrain 1678
  .g-lg-7,
1679
  .gy-lg-7 {
1680
    --bs-gutter-y: 6rem;
1681
  }
1682
}
16848 stevensc 1683
 
16825 efrain 1684
@media (min-width: 1200px) {
1685
  .col-xl {
1686
    flex: 1 0 0%;
1687
  }
16848 stevensc 1688
 
1689
  .row-cols-xl-auto>* {
16825 efrain 1690
    flex: 0 0 auto;
1691
    width: auto;
1692
  }
16848 stevensc 1693
 
1694
  .row-cols-xl-1>* {
16825 efrain 1695
    flex: 0 0 auto;
1696
    width: 100%;
1697
  }
16848 stevensc 1698
 
1699
  .row-cols-xl-2>* {
16825 efrain 1700
    flex: 0 0 auto;
1701
    width: 50%;
1702
  }
16848 stevensc 1703
 
1704
  .row-cols-xl-3>* {
16825 efrain 1705
    flex: 0 0 auto;
1706
    width: 33.3333333333%;
1707
  }
16848 stevensc 1708
 
1709
  .row-cols-xl-4>* {
16825 efrain 1710
    flex: 0 0 auto;
1711
    width: 25%;
1712
  }
16848 stevensc 1713
 
1714
  .row-cols-xl-5>* {
16825 efrain 1715
    flex: 0 0 auto;
1716
    width: 20%;
1717
  }
16848 stevensc 1718
 
1719
  .row-cols-xl-6>* {
16825 efrain 1720
    flex: 0 0 auto;
1721
    width: 16.6666666667%;
1722
  }
16848 stevensc 1723
 
16825 efrain 1724
  .col-xl-auto {
1725
    flex: 0 0 auto;
1726
    width: auto;
1727
  }
16848 stevensc 1728
 
16825 efrain 1729
  .col-xl-1 {
1730
    flex: 0 0 auto;
1731
    width: 8.33333333%;
1732
  }
16848 stevensc 1733
 
16825 efrain 1734
  .col-xl-2 {
1735
    flex: 0 0 auto;
1736
    width: 16.66666667%;
1737
  }
16848 stevensc 1738
 
16825 efrain 1739
  .col-xl-3 {
1740
    flex: 0 0 auto;
1741
    width: 25%;
1742
  }
16848 stevensc 1743
 
16825 efrain 1744
  .col-xl-4 {
1745
    flex: 0 0 auto;
1746
    width: 33.33333333%;
1747
  }
16848 stevensc 1748
 
16825 efrain 1749
  .col-xl-5 {
1750
    flex: 0 0 auto;
1751
    width: 41.66666667%;
1752
  }
16848 stevensc 1753
 
16825 efrain 1754
  .col-xl-6 {
1755
    flex: 0 0 auto;
1756
    width: 50%;
1757
  }
16848 stevensc 1758
 
16825 efrain 1759
  .col-xl-7 {
1760
    flex: 0 0 auto;
1761
    width: 58.33333333%;
1762
  }
16848 stevensc 1763
 
16825 efrain 1764
  .col-xl-8 {
1765
    flex: 0 0 auto;
1766
    width: 66.66666667%;
1767
  }
16848 stevensc 1768
 
16825 efrain 1769
  .col-xl-9 {
1770
    flex: 0 0 auto;
1771
    width: 75%;
1772
  }
16848 stevensc 1773
 
16825 efrain 1774
  .col-xl-10 {
1775
    flex: 0 0 auto;
1776
    width: 83.33333333%;
1777
  }
16848 stevensc 1778
 
16825 efrain 1779
  .col-xl-11 {
1780
    flex: 0 0 auto;
1781
    width: 91.66666667%;
1782
  }
16848 stevensc 1783
 
16825 efrain 1784
  .col-xl-12 {
1785
    flex: 0 0 auto;
1786
    width: 100%;
1787
  }
16848 stevensc 1788
 
16825 efrain 1789
  .offset-xl-0 {
1790
    margin-left: 0;
1791
  }
16848 stevensc 1792
 
16825 efrain 1793
  .offset-xl-1 {
1794
    margin-left: 8.33333333%;
1795
  }
16848 stevensc 1796
 
16825 efrain 1797
  .offset-xl-2 {
1798
    margin-left: 16.66666667%;
1799
  }
16848 stevensc 1800
 
16825 efrain 1801
  .offset-xl-3 {
1802
    margin-left: 25%;
1803
  }
16848 stevensc 1804
 
16825 efrain 1805
  .offset-xl-4 {
1806
    margin-left: 33.33333333%;
1807
  }
16848 stevensc 1808
 
16825 efrain 1809
  .offset-xl-5 {
1810
    margin-left: 41.66666667%;
1811
  }
16848 stevensc 1812
 
16825 efrain 1813
  .offset-xl-6 {
1814
    margin-left: 50%;
1815
  }
16848 stevensc 1816
 
16825 efrain 1817
  .offset-xl-7 {
1818
    margin-left: 58.33333333%;
1819
  }
16848 stevensc 1820
 
16825 efrain 1821
  .offset-xl-8 {
1822
    margin-left: 66.66666667%;
1823
  }
16848 stevensc 1824
 
16825 efrain 1825
  .offset-xl-9 {
1826
    margin-left: 75%;
1827
  }
16848 stevensc 1828
 
16825 efrain 1829
  .offset-xl-10 {
1830
    margin-left: 83.33333333%;
1831
  }
16848 stevensc 1832
 
16825 efrain 1833
  .offset-xl-11 {
1834
    margin-left: 91.66666667%;
1835
  }
16848 stevensc 1836
 
16825 efrain 1837
  .g-xl-0,
1838
  .gx-xl-0 {
1839
    --bs-gutter-x: 0;
1840
  }
16848 stevensc 1841
 
16825 efrain 1842
  .g-xl-0,
1843
  .gy-xl-0 {
1844
    --bs-gutter-y: 0;
1845
  }
16848 stevensc 1846
 
16825 efrain 1847
  .g-xl-1,
1848
  .gx-xl-1 {
1849
    --bs-gutter-x: 0.25rem;
1850
  }
16848 stevensc 1851
 
16825 efrain 1852
  .g-xl-1,
1853
  .gy-xl-1 {
1854
    --bs-gutter-y: 0.25rem;
1855
  }
16848 stevensc 1856
 
16825 efrain 1857
  .g-xl-2,
1858
  .gx-xl-2 {
1859
    --bs-gutter-x: 0.5rem;
1860
  }
16848 stevensc 1861
 
16825 efrain 1862
  .g-xl-2,
1863
  .gy-xl-2 {
1864
    --bs-gutter-y: 0.5rem;
1865
  }
16848 stevensc 1866
 
16825 efrain 1867
  .g-xl-3,
1868
  .gx-xl-3 {
1869
    --bs-gutter-x: 1rem;
1870
  }
16848 stevensc 1871
 
16825 efrain 1872
  .g-xl-3,
1873
  .gy-xl-3 {
1874
    --bs-gutter-y: 1rem;
1875
  }
16848 stevensc 1876
 
16825 efrain 1877
  .g-xl-4,
1878
  .gx-xl-4 {
1879
    --bs-gutter-x: 1.5rem;
1880
  }
16848 stevensc 1881
 
16825 efrain 1882
  .g-xl-4,
1883
  .gy-xl-4 {
1884
    --bs-gutter-y: 1.5rem;
1885
  }
16848 stevensc 1886
 
16825 efrain 1887
  .g-xl-5,
1888
  .gx-xl-5 {
1889
    --bs-gutter-x: 3rem;
1890
  }
16848 stevensc 1891
 
16825 efrain 1892
  .g-xl-5,
1893
  .gy-xl-5 {
1894
    --bs-gutter-y: 3rem;
1895
  }
16848 stevensc 1896
 
16825 efrain 1897
  .g-xl-6,
1898
  .gx-xl-6 {
1899
    --bs-gutter-x: 4.5rem;
1900
  }
16848 stevensc 1901
 
16825 efrain 1902
  .g-xl-6,
1903
  .gy-xl-6 {
1904
    --bs-gutter-y: 4.5rem;
1905
  }
16848 stevensc 1906
 
16825 efrain 1907
  .g-xl-7,
1908
  .gx-xl-7 {
1909
    --bs-gutter-x: 6rem;
1910
  }
16848 stevensc 1911
 
16825 efrain 1912
  .g-xl-7,
1913
  .gy-xl-7 {
1914
    --bs-gutter-y: 6rem;
1915
  }
1916
}
16848 stevensc 1917
 
16825 efrain 1918
@media (min-width: 1400px) {
1919
  .col-xxl {
1920
    flex: 1 0 0%;
1921
  }
16848 stevensc 1922
 
1923
  .row-cols-xxl-auto>* {
16825 efrain 1924
    flex: 0 0 auto;
1925
    width: auto;
1926
  }
16848 stevensc 1927
 
1928
  .row-cols-xxl-1>* {
16825 efrain 1929
    flex: 0 0 auto;
1930
    width: 100%;
1931
  }
16848 stevensc 1932
 
1933
  .row-cols-xxl-2>* {
16825 efrain 1934
    flex: 0 0 auto;
1935
    width: 50%;
1936
  }
16848 stevensc 1937
 
1938
  .row-cols-xxl-3>* {
16825 efrain 1939
    flex: 0 0 auto;
1940
    width: 33.3333333333%;
1941
  }
16848 stevensc 1942
 
1943
  .row-cols-xxl-4>* {
16825 efrain 1944
    flex: 0 0 auto;
1945
    width: 25%;
1946
  }
16848 stevensc 1947
 
1948
  .row-cols-xxl-5>* {
16825 efrain 1949
    flex: 0 0 auto;
1950
    width: 20%;
1951
  }
16848 stevensc 1952
 
1953
  .row-cols-xxl-6>* {
16825 efrain 1954
    flex: 0 0 auto;
1955
    width: 16.6666666667%;
1956
  }
16848 stevensc 1957
 
16825 efrain 1958
  .col-xxl-auto {
1959
    flex: 0 0 auto;
1960
    width: auto;
1961
  }
16848 stevensc 1962
 
16825 efrain 1963
  .col-xxl-1 {
1964
    flex: 0 0 auto;
1965
    width: 8.33333333%;
1966
  }
16848 stevensc 1967
 
16825 efrain 1968
  .col-xxl-2 {
1969
    flex: 0 0 auto;
1970
    width: 16.66666667%;
1971
  }
16848 stevensc 1972
 
16825 efrain 1973
  .col-xxl-3 {
1974
    flex: 0 0 auto;
1975
    width: 25%;
1976
  }
16848 stevensc 1977
 
16825 efrain 1978
  .col-xxl-4 {
1979
    flex: 0 0 auto;
1980
    width: 33.33333333%;
1981
  }
16848 stevensc 1982
 
16825 efrain 1983
  .col-xxl-5 {
1984
    flex: 0 0 auto;
1985
    width: 41.66666667%;
1986
  }
16848 stevensc 1987
 
16825 efrain 1988
  .col-xxl-6 {
1989
    flex: 0 0 auto;
1990
    width: 50%;
1991
  }
16848 stevensc 1992
 
16825 efrain 1993
  .col-xxl-7 {
1994
    flex: 0 0 auto;
1995
    width: 58.33333333%;
1996
  }
16848 stevensc 1997
 
16825 efrain 1998
  .col-xxl-8 {
1999
    flex: 0 0 auto;
2000
    width: 66.66666667%;
2001
  }
16848 stevensc 2002
 
16825 efrain 2003
  .col-xxl-9 {
2004
    flex: 0 0 auto;
2005
    width: 75%;
2006
  }
16848 stevensc 2007
 
16825 efrain 2008
  .col-xxl-10 {
2009
    flex: 0 0 auto;
2010
    width: 83.33333333%;
2011
  }
16848 stevensc 2012
 
16825 efrain 2013
  .col-xxl-11 {
2014
    flex: 0 0 auto;
2015
    width: 91.66666667%;
2016
  }
16848 stevensc 2017
 
16825 efrain 2018
  .col-xxl-12 {
2019
    flex: 0 0 auto;
2020
    width: 100%;
2021
  }
16848 stevensc 2022
 
16825 efrain 2023
  .offset-xxl-0 {
2024
    margin-left: 0;
2025
  }
16848 stevensc 2026
 
16825 efrain 2027
  .offset-xxl-1 {
2028
    margin-left: 8.33333333%;
2029
  }
16848 stevensc 2030
 
16825 efrain 2031
  .offset-xxl-2 {
2032
    margin-left: 16.66666667%;
2033
  }
16848 stevensc 2034
 
16825 efrain 2035
  .offset-xxl-3 {
2036
    margin-left: 25%;
2037
  }
16848 stevensc 2038
 
16825 efrain 2039
  .offset-xxl-4 {
2040
    margin-left: 33.33333333%;
2041
  }
16848 stevensc 2042
 
16825 efrain 2043
  .offset-xxl-5 {
2044
    margin-left: 41.66666667%;
2045
  }
16848 stevensc 2046
 
16825 efrain 2047
  .offset-xxl-6 {
2048
    margin-left: 50%;
2049
  }
16848 stevensc 2050
 
16825 efrain 2051
  .offset-xxl-7 {
2052
    margin-left: 58.33333333%;
2053
  }
16848 stevensc 2054
 
16825 efrain 2055
  .offset-xxl-8 {
2056
    margin-left: 66.66666667%;
2057
  }
16848 stevensc 2058
 
16825 efrain 2059
  .offset-xxl-9 {
2060
    margin-left: 75%;
2061
  }
16848 stevensc 2062
 
16825 efrain 2063
  .offset-xxl-10 {
2064
    margin-left: 83.33333333%;
2065
  }
16848 stevensc 2066
 
16825 efrain 2067
  .offset-xxl-11 {
2068
    margin-left: 91.66666667%;
2069
  }
16848 stevensc 2070
 
16825 efrain 2071
  .g-xxl-0,
2072
  .gx-xxl-0 {
2073
    --bs-gutter-x: 0;
2074
  }
16848 stevensc 2075
 
16825 efrain 2076
  .g-xxl-0,
2077
  .gy-xxl-0 {
2078
    --bs-gutter-y: 0;
2079
  }
16848 stevensc 2080
 
16825 efrain 2081
  .g-xxl-1,
2082
  .gx-xxl-1 {
2083
    --bs-gutter-x: 0.25rem;
2084
  }
16848 stevensc 2085
 
16825 efrain 2086
  .g-xxl-1,
2087
  .gy-xxl-1 {
2088
    --bs-gutter-y: 0.25rem;
2089
  }
16848 stevensc 2090
 
16825 efrain 2091
  .g-xxl-2,
2092
  .gx-xxl-2 {
2093
    --bs-gutter-x: 0.5rem;
2094
  }
16848 stevensc 2095
 
16825 efrain 2096
  .g-xxl-2,
2097
  .gy-xxl-2 {
2098
    --bs-gutter-y: 0.5rem;
2099
  }
16848 stevensc 2100
 
16825 efrain 2101
  .g-xxl-3,
2102
  .gx-xxl-3 {
2103
    --bs-gutter-x: 1rem;
2104
  }
16848 stevensc 2105
 
16825 efrain 2106
  .g-xxl-3,
2107
  .gy-xxl-3 {
2108
    --bs-gutter-y: 1rem;
2109
  }
16848 stevensc 2110
 
16825 efrain 2111
  .g-xxl-4,
2112
  .gx-xxl-4 {
2113
    --bs-gutter-x: 1.5rem;
2114
  }
16848 stevensc 2115
 
16825 efrain 2116
  .g-xxl-4,
2117
  .gy-xxl-4 {
2118
    --bs-gutter-y: 1.5rem;
2119
  }
16848 stevensc 2120
 
16825 efrain 2121
  .g-xxl-5,
2122
  .gx-xxl-5 {
2123
    --bs-gutter-x: 3rem;
2124
  }
16848 stevensc 2125
 
16825 efrain 2126
  .g-xxl-5,
2127
  .gy-xxl-5 {
2128
    --bs-gutter-y: 3rem;
2129
  }
16848 stevensc 2130
 
16825 efrain 2131
  .g-xxl-6,
2132
  .gx-xxl-6 {
2133
    --bs-gutter-x: 4.5rem;
2134
  }
16848 stevensc 2135
 
16825 efrain 2136
  .g-xxl-6,
2137
  .gy-xxl-6 {
2138
    --bs-gutter-y: 4.5rem;
2139
  }
16848 stevensc 2140
 
16825 efrain 2141
  .g-xxl-7,
2142
  .gx-xxl-7 {
2143
    --bs-gutter-x: 6rem;
2144
  }
16848 stevensc 2145
 
16825 efrain 2146
  .g-xxl-7,
2147
  .gy-xxl-7 {
2148
    --bs-gutter-y: 6rem;
2149
  }
2150
}
16848 stevensc 2151
 
16825 efrain 2152
.table {
2153
  --bs-table-color: var(--bs-body-color);
2154
  --bs-table-bg: transparent;
2155
  --bs-table-border-color: var(--bs-border-color);
2156
  --bs-table-accent-bg: transparent;
2157
  --bs-table-striped-color: var(--bs-body-color);
2158
  --bs-table-striped-bg: #e9ecef;
2159
  --bs-table-active-color: var(--bs-body-color);
2160
  --bs-table-active-bg: #dee2e6;
2161
  --bs-table-hover-color: var(--bs-body-color);
2162
  --bs-table-hover-bg: #e9ecef;
2163
  width: 100%;
2164
  margin-bottom: 1rem;
2165
  color: var(--bs-table-color);
2166
  vertical-align: top;
2167
  border-color: var(--bs-table-border-color);
2168
}
16848 stevensc 2169
 
2170
.table> :not(caption)>*>* {
16825 efrain 2171
  padding: 0.85rem 0.85rem;
2172
  background-color: var(--bs-table-bg);
2173
  border-bottom-width: 1px;
2174
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
2175
}
16848 stevensc 2176
 
2177
.table>tbody {
16825 efrain 2178
  vertical-align: inherit;
2179
}
16848 stevensc 2180
 
2181
.table>thead {
16825 efrain 2182
  vertical-align: bottom;
2183
}
2184
 
2185
.table-group-divider {
2186
  border-top: 2px solid #e9ecef;
2187
}
2188
 
2189
.caption-top {
2190
  caption-side: top;
2191
}
2192
 
16848 stevensc 2193
.table-sm> :not(caption)>*>* {
16825 efrain 2194
  padding: 0.55rem 0.55rem;
2195
}
2196
 
16848 stevensc 2197
.table-bordered> :not(caption)>* {
16825 efrain 2198
  border-width: 1px 0;
2199
}
16848 stevensc 2200
 
2201
.table-bordered> :not(caption)>*>* {
16825 efrain 2202
  border-width: 0 1px;
2203
}
2204
 
16848 stevensc 2205
.table-borderless> :not(caption)>*>* {
16825 efrain 2206
  border-bottom-width: 0;
2207
}
16848 stevensc 2208
 
2209
.table-borderless> :not(:first-child) {
16825 efrain 2210
  border-top-width: 0;
2211
}
2212
 
16848 stevensc 2213
.table-striped>tbody>tr:nth-of-type(odd)>* {
16825 efrain 2214
  --bs-table-accent-bg: var(--bs-table-striped-bg);
2215
  color: var(--bs-table-striped-color);
2216
}
2217
 
16848 stevensc 2218
.table-striped-columns> :not(caption)>tr> :nth-child(even) {
16825 efrain 2219
  --bs-table-accent-bg: var(--bs-table-striped-bg);
2220
  color: var(--bs-table-striped-color);
2221
}
2222
 
2223
.table-active {
2224
  --bs-table-accent-bg: var(--bs-table-active-bg);
2225
  color: var(--bs-table-active-color);
2226
}
2227
 
16848 stevensc 2228
.table-hover>tbody>tr:hover>* {
16825 efrain 2229
  --bs-table-accent-bg: var(--bs-table-hover-bg);
2230
  color: var(--bs-table-hover-color);
2231
}
2232
 
2233
.table-primary {
2234
  --bs-table-color: #000;
2235
  --bs-table-bg: #e0e3ff;
2236
  --bs-table-border-color: #cacce6;
2237
  --bs-table-striped-bg: #d5d8f2;
2238
  --bs-table-striped-color: #000;
2239
  --bs-table-active-bg: #cacce6;
2240
  --bs-table-active-color: #000;
2241
  --bs-table-hover-bg: #cfd2ec;
2242
  --bs-table-hover-color: #000;
2243
  color: var(--bs-table-color);
2244
  border-color: var(--bs-table-border-color);
2245
}
2246
 
2247
.table-secondary {
2248
  --bs-table-color: #000;
2249
  --bs-table-bg: #e4e7ec;
2250
  --bs-table-border-color: #cdd0d4;
2251
  --bs-table-striped-bg: #d9dbe0;
2252
  --bs-table-striped-color: #000;
2253
  --bs-table-active-bg: #cdd0d4;
2254
  --bs-table-active-color: #000;
2255
  --bs-table-hover-bg: #d3d6da;
2256
  --bs-table-hover-color: #000;
2257
  color: var(--bs-table-color);
2258
  border-color: var(--bs-table-border-color);
2259
}
2260
 
2261
.table-success {
2262
  --bs-table-color: #000;
2263
  --bs-table-bg: #cdeddb;
2264
  --bs-table-border-color: #b9d5c5;
2265
  --bs-table-striped-bg: #c3e1d0;
2266
  --bs-table-striped-color: #000;
2267
  --bs-table-active-bg: #b9d5c5;
2268
  --bs-table-active-color: #000;
2269
  --bs-table-hover-bg: #bedbcb;
2270
  --bs-table-hover-color: #000;
2271
  color: var(--bs-table-color);
2272
  border-color: var(--bs-table-border-color);
2273
}
2274
 
2275
.table-info {
2276
  --bs-table-color: #000;
2277
  --bs-table-bg: #e0f6f6;
2278
  --bs-table-border-color: #cadddd;
2279
  --bs-table-striped-bg: #d5eaea;
2280
  --bs-table-striped-color: #000;
2281
  --bs-table-active-bg: #cadddd;
2282
  --bs-table-active-color: #000;
2283
  --bs-table-hover-bg: #cfe4e4;
2284
  --bs-table-hover-color: #000;
2285
  color: var(--bs-table-color);
2286
  border-color: var(--bs-table-border-color);
2287
}
2288
 
2289
.table-warning {
2290
  --bs-table-color: #000;
2291
  --bs-table-bg: #fef2cd;
2292
  --bs-table-border-color: #e5dab9;
2293
  --bs-table-striped-bg: #f1e6c3;
2294
  --bs-table-striped-color: #000;
2295
  --bs-table-active-bg: #e5dab9;
2296
  --bs-table-active-color: #000;
2297
  --bs-table-hover-bg: #ebe0be;
2298
  --bs-table-hover-color: #000;
2299
  color: var(--bs-table-color);
2300
  border-color: var(--bs-table-border-color);
2301
}
2302
 
2303
.table-danger {
2304
  --bs-table-color: #000;
2305
  --bs-table-bg: #ffd6e0;
2306
  --bs-table-border-color: #e6c1ca;
2307
  --bs-table-striped-bg: #f2cbd5;
2308
  --bs-table-striped-color: #000;
2309
  --bs-table-active-bg: #e6c1ca;
2310
  --bs-table-active-color: #000;
2311
  --bs-table-hover-bg: #ecc6cf;
2312
  --bs-table-hover-color: #000;
2313
  color: var(--bs-table-color);
2314
  border-color: var(--bs-table-border-color);
2315
}
2316
 
2317
.table-light {
2318
  --bs-table-color: #000;
2319
  --bs-table-bg: #e9ecef;
2320
  --bs-table-border-color: #d2d4d7;
2321
  --bs-table-striped-bg: #dde0e3;
2322
  --bs-table-striped-color: #000;
2323
  --bs-table-active-bg: #d2d4d7;
2324
  --bs-table-active-color: #000;
2325
  --bs-table-hover-bg: #d8dadd;
2326
  --bs-table-hover-color: #000;
2327
  color: var(--bs-table-color);
2328
  border-color: var(--bs-table-border-color);
2329
}
2330
 
2331
.table-dark {
2332
  --bs-table-color: #fff;
2333
  --bs-table-bg: #060c17;
2334
  --bs-table-border-color: #1f242e;
2335
  --bs-table-striped-bg: #121823;
2336
  --bs-table-striped-color: #fff;
2337
  --bs-table-active-bg: #1f242e;
2338
  --bs-table-active-color: #fff;
2339
  --bs-table-hover-bg: #191e28;
2340
  --bs-table-hover-color: #fff;
2341
  color: var(--bs-table-color);
2342
  border-color: var(--bs-table-border-color);
2343
}
2344
 
2345
.table-responsive {
2346
  overflow-x: auto;
2347
  -webkit-overflow-scrolling: touch;
2348
}
2349
 
2350
@media (max-width: 575.98px) {
2351
  .table-responsive-sm {
2352
    overflow-x: auto;
2353
    -webkit-overflow-scrolling: touch;
2354
  }
2355
}
16848 stevensc 2356
 
16825 efrain 2357
@media (max-width: 767.98px) {
2358
  .table-responsive-md {
2359
    overflow-x: auto;
2360
    -webkit-overflow-scrolling: touch;
2361
  }
2362
}
16848 stevensc 2363
 
16825 efrain 2364
@media (max-width: 991.98px) {
2365
  .table-responsive-lg {
2366
    overflow-x: auto;
2367
    -webkit-overflow-scrolling: touch;
2368
  }
2369
}
16848 stevensc 2370
 
16825 efrain 2371
@media (max-width: 1199.98px) {
2372
  .table-responsive-xl {
2373
    overflow-x: auto;
2374
    -webkit-overflow-scrolling: touch;
2375
  }
2376
}
16848 stevensc 2377
 
16825 efrain 2378
@media (max-width: 1399.98px) {
2379
  .table-responsive-xxl {
2380
    overflow-x: auto;
2381
    -webkit-overflow-scrolling: touch;
2382
  }
2383
}
16848 stevensc 2384
 
16825 efrain 2385
.form-label {
2386
  margin-bottom: 0.5rem;
2387
}
2388
 
2389
.col-form-label {
2390
  padding-top: calc(0.469rem + 1px);
2391
  padding-bottom: calc(0.469rem + 1px);
2392
  margin-bottom: 0;
2393
  font-size: inherit;
2394
  line-height: 1.5;
2395
}
2396
 
2397
.col-form-label-lg {
2398
  padding-top: calc(0.5rem + 1px);
2399
  padding-bottom: calc(0.5rem + 1px);
2400
  font-size: 1rem;
2401
}
2402
 
2403
.col-form-label-sm {
2404
  padding-top: calc(0.391rem + 1px);
2405
  padding-bottom: calc(0.391rem + 1px);
2406
  font-size: 0.812rem;
2407
}
2408
 
2409
.form-text {
2410
  margin-top: 0.25rem;
2411
  font-size: 0.875em;
2412
  color: #7987a1;
2413
}
2414
 
16848 stevensc 2415
.form-control,
2416
.typeahead.tt-input,
2417
.typeahead.tt-hint,
2418
.select2-container--default .select2-search--dropdown .select2-search__field {
16825 efrain 2419
  display: block;
2420
  width: 100%;
2421
  padding: 0.469rem 0.8rem;
2422
  font-size: 0.875rem;
2423
  font-weight: 400;
2424
  line-height: 1.5;
2425
  color: #000;
2426
  background-color: #fff;
2427
  background-clip: padding-box;
2428
  border: 1px solid #e9ecef;
2429
  appearance: none;
2430
  border-radius: 0.25rem;
2431
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2432
}
16848 stevensc 2433
 
16825 efrain 2434
@media (prefers-reduced-motion: reduce) {
16848 stevensc 2435
 
2436
  .form-control,
2437
  .typeahead.tt-input,
2438
  .typeahead.tt-hint,
2439
  .select2-container--default .select2-search--dropdown .select2-search__field {
16825 efrain 2440
    transition: none;
2441
  }
2442
}
16848 stevensc 2443
 
2444
.form-control[type=file],
2445
[type=file].typeahead.tt-input,
2446
[type=file].typeahead.tt-hint,
2447
.select2-container--default .select2-search--dropdown [type=file].select2-search__field {
16825 efrain 2448
  overflow: hidden;
2449
}
16848 stevensc 2450
 
2451
.form-control[type=file]:not(:disabled):not([readonly]),
2452
[type=file].typeahead.tt-input:not(:disabled):not([readonly]),
2453
[type=file].typeahead.tt-hint:not(:disabled):not([readonly]),
2454
.select2-container--default .select2-search--dropdown [type=file].select2-search__field:not(:disabled):not([readonly]) {
16825 efrain 2455
  cursor: pointer;
2456
}
16848 stevensc 2457
 
2458
.form-control:focus,
2459
.typeahead.tt-input:focus,
2460
.typeahead.tt-hint:focus,
2461
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
16825 efrain 2462
  color: #000;
2463
  background-color: #fff;
2464
  border-color: #cbd1db;
2465
  outline: 0;
2466
  box-shadow: none;
2467
}
16848 stevensc 2468
 
2469
.form-control::-webkit-date-and-time-value,
2470
.typeahead.tt-input::-webkit-date-and-time-value,
2471
.typeahead.tt-hint::-webkit-date-and-time-value,
2472
.select2-container--default .select2-search--dropdown .select2-search__field::-webkit-date-and-time-value {
16825 efrain 2473
  height: 1.5em;
2474
}
16848 stevensc 2475
 
2476
.form-control::placeholder,
2477
.typeahead.tt-input::placeholder,
2478
.typeahead.tt-hint::placeholder,
2479
.select2-container--default .select2-search--dropdown .select2-search__field::placeholder {
16825 efrain 2480
  color: #aeb7c5;
2481
  opacity: 1;
2482
}
16848 stevensc 2483
 
2484
.form-control:disabled,
2485
.typeahead.tt-input:disabled,
2486
.typeahead.tt-hint:disabled,
2487
.select2-container--default .select2-search--dropdown .select2-search__field:disabled {
16825 efrain 2488
  background-color: #e9ecef;
2489
  opacity: 1;
2490
}
16848 stevensc 2491
 
2492
.form-control::file-selector-button,
2493
.typeahead.tt-input::file-selector-button,
2494
.typeahead.tt-hint::file-selector-button,
2495
.select2-container--default .select2-search--dropdown .select2-search__field::file-selector-button {
16825 efrain 2496
  padding: 0.469rem 0.8rem;
2497
  margin: -0.469rem -0.8rem;
2498
  margin-inline-end: 0.8rem;
2499
  color: #000;
2500
  background-color: #f8f9fa;
2501
  pointer-events: none;
2502
  border-color: inherit;
2503
  border-style: solid;
2504
  border-width: 0;
2505
  border-inline-end-width: 1px;
2506
  border-radius: 0;
2507
  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;
2508
}
16848 stevensc 2509
 
16825 efrain 2510
@media (prefers-reduced-motion: reduce) {
16848 stevensc 2511
 
2512
  .form-control::file-selector-button,
2513
  .typeahead.tt-input::file-selector-button,
2514
  .typeahead.tt-hint::file-selector-button,
2515
  .select2-container--default .select2-search--dropdown .select2-search__field::file-selector-button {
16825 efrain 2516
    transition: none;
2517
  }
2518
}
16848 stevensc 2519
 
2520
.form-control:hover:not(:disabled):not([readonly])::file-selector-button,
2521
.typeahead.tt-input:hover:not(:disabled):not([readonly])::file-selector-button,
2522
.typeahead.tt-hint:hover:not(:disabled):not([readonly])::file-selector-button,
2523
.select2-container--default .select2-search--dropdown .select2-search__field:hover:not(:disabled):not([readonly])::file-selector-button {
16825 efrain 2524
  background-color: #ecedee;
2525
}
2526
 
2527
.form-control-plaintext {
2528
  display: block;
2529
  width: 100%;
2530
  padding: 0.469rem 0;
2531
  margin-bottom: 0;
2532
  line-height: 1.5;
2533
  color: #000;
2534
  background-color: transparent;
2535
  border: solid transparent;
2536
  border-width: 1px 0;
2537
}
16848 stevensc 2538
 
16825 efrain 2539
.form-control-plaintext:focus {
2540
  outline: 0;
2541
}
16848 stevensc 2542
 
2543
.form-control-plaintext.form-control-sm,
2544
.form-control-plaintext.form-control-lg {
16825 efrain 2545
  padding-right: 0;
2546
  padding-left: 0;
2547
}
2548
 
2549
.form-control-sm {
2550
  min-height: calc(1.5em + 0.782rem + 2px);
2551
  padding: 0.391rem 0.8rem;
2552
  font-size: 0.812rem;
2553
  border-radius: 0.25rem;
2554
}
16848 stevensc 2555
 
16825 efrain 2556
.form-control-sm::file-selector-button {
2557
  padding: 0.391rem 0.8rem;
2558
  margin: -0.391rem -0.8rem;
2559
  margin-inline-end: 0.8rem;
2560
}
2561
 
2562
.form-control-lg {
2563
  min-height: calc(1.5em + 1rem + 2px);
2564
  padding: 0.5rem 0.8rem;
2565
  font-size: 1rem;
2566
  border-radius: 0.25rem;
2567
}
16848 stevensc 2568
 
16825 efrain 2569
.form-control-lg::file-selector-button {
2570
  padding: 0.5rem 0.8rem;
2571
  margin: -0.5rem -0.8rem;
2572
  margin-inline-end: 0.8rem;
2573
}
2574
 
16848 stevensc 2575
textarea.form-control,
2576
textarea.typeahead.tt-input,
2577
textarea.typeahead.tt-hint,
2578
.select2-container--default .select2-search--dropdown textarea.select2-search__field {
16825 efrain 2579
  min-height: calc(1.5em + 0.938rem + 2px);
2580
}
16848 stevensc 2581
 
16825 efrain 2582
textarea.form-control-sm {
2583
  min-height: calc(1.5em + 0.782rem + 2px);
2584
}
16848 stevensc 2585
 
16825 efrain 2586
textarea.form-control-lg {
2587
  min-height: calc(1.5em + 1rem + 2px);
2588
}
2589
 
2590
.form-control-color {
2591
  width: 3rem;
2592
  height: calc(1.5em + 0.938rem + 2px);
2593
  padding: 0.469rem;
2594
}
16848 stevensc 2595
 
16825 efrain 2596
.form-control-color:not(:disabled):not([readonly]) {
2597
  cursor: pointer;
2598
}
16848 stevensc 2599
 
16825 efrain 2600
.form-control-color::-moz-color-swatch {
2601
  border: 0 !important;
2602
  border-radius: 0.25rem;
2603
}
16848 stevensc 2604
 
16825 efrain 2605
.form-control-color::-webkit-color-swatch {
2606
  border-radius: 0.25rem;
2607
}
16848 stevensc 2608
 
16825 efrain 2609
.form-control-color.form-control-sm {
2610
  height: calc(1.5em + 0.782rem + 2px);
2611
}
16848 stevensc 2612
 
16825 efrain 2613
.form-control-color.form-control-lg {
2614
  height: calc(1.5em + 1rem + 2px);
2615
}
2616
 
2617
.form-select {
2618
  display: block;
2619
  width: 100%;
2620
  padding: 0.469rem 2.4rem 0.469rem 0.8rem;
2621
  -moz-padding-start: calc(0.8rem - 3px);
2622
  font-size: 0.875rem;
2623
  font-weight: 400;
2624
  line-height: 1.5;
2625
  color: #000;
2626
  background-color: #fff;
2627
  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");
2628
  background-repeat: no-repeat;
2629
  background-position: right 0.8rem center;
2630
  background-size: 16px 12px;
2631
  border: 1px solid #e9ecef;
2632
  border-radius: 0.25rem;
2633
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2634
  appearance: none;
2635
}
16848 stevensc 2636
 
16825 efrain 2637
@media (prefers-reduced-motion: reduce) {
2638
  .form-select {
2639
    transition: none;
2640
  }
2641
}
16848 stevensc 2642
 
16825 efrain 2643
.form-select:focus {
2644
  border-color: #cbd1db;
2645
  outline: 0;
2646
  box-shadow: 0 0 0 0 rgba(101, 113, 255, 0.25);
2647
}
16848 stevensc 2648
 
2649
.form-select[multiple],
2650
.form-select[size]:not([size="1"]) {
16825 efrain 2651
  padding-right: 0.8rem;
2652
  background-image: none;
2653
}
16848 stevensc 2654
 
16825 efrain 2655
.form-select:disabled {
2656
  background-color: #e9ecef;
2657
}
16848 stevensc 2658
 
16825 efrain 2659
.form-select:-moz-focusring {
2660
  color: transparent;
2661
  text-shadow: 0 0 0 #000;
2662
}
2663
 
2664
.form-select-sm {
2665
  padding-top: 0.391rem;
2666
  padding-bottom: 0.391rem;
2667
  padding-left: 0.8rem;
2668
  font-size: 0.812rem;
2669
  border-radius: 0.25rem;
2670
}
2671
 
2672
.form-select-lg {
2673
  padding-top: 0.5rem;
2674
  padding-bottom: 0.5rem;
2675
  padding-left: 0.8rem;
2676
  font-size: 1rem;
2677
  border-radius: 0.25rem;
2678
}
2679
 
2680
.form-check {
2681
  display: block;
2682
  min-height: 1.3125rem;
2683
  padding-left: 1.8em;
2684
  margin-bottom: 0.125rem;
2685
}
16848 stevensc 2686
 
16825 efrain 2687
.form-check .form-check-input {
2688
  float: left;
2689
  margin-left: -1.8em;
2690
}
2691
 
2692
.form-check-reverse {
2693
  padding-right: 1.8em;
2694
  padding-left: 0;
2695
  text-align: right;
2696
}
16848 stevensc 2697
 
16825 efrain 2698
.form-check-reverse .form-check-input {
2699
  float: right;
2700
  margin-right: -1.8em;
2701
  margin-left: 0;
2702
}
2703
 
2704
.form-check-input {
2705
  width: 1.3em;
2706
  height: 1.3em;
2707
  margin-top: 0.1em;
2708
  vertical-align: top;
2709
  background-color: #fff;
2710
  background-repeat: no-repeat;
2711
  background-position: center;
2712
  background-size: contain;
2713
  border: 1px solid rgba(0, 0, 0, 0.25);
2714
  appearance: none;
2715
  print-color-adjust: exact;
2716
}
16848 stevensc 2717
 
16825 efrain 2718
.form-check-input[type=checkbox] {
2719
  border-radius: 0.15em;
2720
}
16848 stevensc 2721
 
16825 efrain 2722
.form-check-input[type=radio] {
2723
  border-radius: 50%;
2724
}
16848 stevensc 2725
 
16825 efrain 2726
.form-check-input:active {
2727
  filter: brightness(90%);
2728
}
16848 stevensc 2729
 
16825 efrain 2730
.form-check-input:focus {
2731
  border-color: #cbd1db;
2732
  outline: 0;
2733
  box-shadow: none;
2734
}
16848 stevensc 2735
 
16825 efrain 2736
.form-check-input:checked {
2737
  background-color: #6571ff;
2738
  border-color: #6571ff;
2739
}
16848 stevensc 2740
 
16825 efrain 2741
.form-check-input:checked[type=checkbox] {
2742
  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");
2743
}
16848 stevensc 2744
 
16825 efrain 2745
.form-check-input:checked[type=radio] {
2746
  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");
2747
}
16848 stevensc 2748
 
16825 efrain 2749
.form-check-input[type=checkbox]:indeterminate {
2750
  background-color: #6571ff;
2751
  border-color: #6571ff;
2752
  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");
2753
}
16848 stevensc 2754
 
16825 efrain 2755
.form-check-input:disabled {
2756
  pointer-events: none;
2757
  filter: none;
2758
  opacity: 0.5;
2759
}
16848 stevensc 2760
 
2761
.form-check-input[disabled]~.form-check-label,
2762
.form-check-input:disabled~.form-check-label {
16825 efrain 2763
  cursor: default;
2764
  opacity: 0.5;
2765
}
2766
 
2767
.form-switch {
2768
  padding-left: 2.5em;
2769
}
16848 stevensc 2770
 
16825 efrain 2771
.form-switch .form-check-input {
2772
  width: 2em;
2773
  margin-left: -2.5em;
2774
  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");
2775
  background-position: left center;
2776
  border-radius: 2em;
2777
  transition: background-position 0.15s ease-in-out;
2778
}
16848 stevensc 2779
 
16825 efrain 2780
@media (prefers-reduced-motion: reduce) {
2781
  .form-switch .form-check-input {
2782
    transition: none;
2783
  }
2784
}
16848 stevensc 2785
 
16825 efrain 2786
.form-switch .form-check-input:focus {
2787
  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");
2788
}
16848 stevensc 2789
 
16825 efrain 2790
.form-switch .form-check-input:checked {
2791
  background-position: right center;
2792
  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");
2793
}
16848 stevensc 2794
 
16825 efrain 2795
.form-switch.form-check-reverse {
2796
  padding-right: 2.5em;
2797
  padding-left: 0;
2798
}
16848 stevensc 2799
 
16825 efrain 2800
.form-switch.form-check-reverse .form-check-input {
2801
  margin-right: -2.5em;
2802
  margin-left: 0;
2803
}
2804
 
2805
.form-check-inline {
2806
  display: inline-block;
2807
  margin-right: 1rem;
2808
}
2809
 
2810
.btn-check {
2811
  position: absolute;
2812
  clip: rect(0, 0, 0, 0);
2813
  pointer-events: none;
2814
}
16848 stevensc 2815
 
2816
.btn-check[disabled]+.btn,
2817
.wizard>.actions .btn-check[disabled]+a,
2818
div.tox .btn-check[disabled]+.tox-button,
2819
.swal2-popup .swal2-actions .btn-check[disabled]+button,
2820
.fc .btn-check[disabled]+.fc-button-primary,
2821
.btn-check:disabled+.btn,
2822
.wizard>.actions .btn-check:disabled+a,
2823
div.tox .btn-check:disabled+.tox-button,
2824
.swal2-popup .swal2-actions .btn-check:disabled+button,
2825
.fc .btn-check:disabled+.fc-button-primary {
16825 efrain 2826
  pointer-events: none;
2827
  filter: none;
2828
  opacity: 0.65;
2829
}
2830
 
2831
.form-range {
2832
  width: 100%;
2833
  height: 1rem;
2834
  padding: 0;
2835
  background-color: transparent;
2836
  appearance: none;
2837
}
16848 stevensc 2838
 
16825 efrain 2839
.form-range:focus {
2840
  outline: 0;
2841
}
16848 stevensc 2842
 
16825 efrain 2843
.form-range:focus::-webkit-slider-thumb {
2844
  box-shadow: 0 0 0 1px #f9fafb, none;
2845
}
16848 stevensc 2846
 
16825 efrain 2847
.form-range:focus::-moz-range-thumb {
2848
  box-shadow: 0 0 0 1px #f9fafb, none;
2849
}
16848 stevensc 2850
 
16825 efrain 2851
.form-range::-moz-focus-outer {
2852
  border: 0;
2853
}
16848 stevensc 2854
 
16825 efrain 2855
.form-range::-webkit-slider-thumb {
2856
  width: 1rem;
2857
  height: 1rem;
2858
  margin-top: -0.25rem;
2859
  background-color: #6571ff;
2860
  border: 0;
2861
  border-radius: 1rem;
2862
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2863
  appearance: none;
2864
}
16848 stevensc 2865
 
16825 efrain 2866
@media (prefers-reduced-motion: reduce) {
2867
  .form-range::-webkit-slider-thumb {
2868
    transition: none;
2869
  }
2870
}
16848 stevensc 2871
 
16825 efrain 2872
.form-range::-webkit-slider-thumb:active {
2873
  background-color: #d1d4ff;
2874
}
16848 stevensc 2875
 
16825 efrain 2876
.form-range::-webkit-slider-runnable-track {
2877
  width: 100%;
2878
  height: 0.5rem;
2879
  color: transparent;
2880
  cursor: pointer;
2881
  background-color: #dee2e6;
2882
  border-color: transparent;
2883
  border-radius: 1rem;
2884
}
16848 stevensc 2885
 
16825 efrain 2886
.form-range::-moz-range-thumb {
2887
  width: 1rem;
2888
  height: 1rem;
2889
  background-color: #6571ff;
2890
  border: 0;
2891
  border-radius: 1rem;
2892
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2893
  appearance: none;
2894
}
16848 stevensc 2895
 
16825 efrain 2896
@media (prefers-reduced-motion: reduce) {
2897
  .form-range::-moz-range-thumb {
2898
    transition: none;
2899
  }
2900
}
16848 stevensc 2901
 
16825 efrain 2902
.form-range::-moz-range-thumb:active {
2903
  background-color: #d1d4ff;
2904
}
16848 stevensc 2905
 
16825 efrain 2906
.form-range::-moz-range-track {
2907
  width: 100%;
2908
  height: 0.5rem;
2909
  color: transparent;
2910
  cursor: pointer;
2911
  background-color: #dee2e6;
2912
  border-color: transparent;
2913
  border-radius: 1rem;
2914
}
16848 stevensc 2915
 
16825 efrain 2916
.form-range:disabled {
2917
  pointer-events: none;
2918
}
16848 stevensc 2919
 
16825 efrain 2920
.form-range:disabled::-webkit-slider-thumb {
2921
  background-color: #aeb7c5;
2922
}
16848 stevensc 2923
 
16825 efrain 2924
.form-range:disabled::-moz-range-thumb {
2925
  background-color: #aeb7c5;
2926
}
2927
 
2928
.form-floating {
2929
  position: relative;
2930
}
16848 stevensc 2931
 
2932
.form-floating>.form-control,
2933
.form-floating>.typeahead.tt-input,
2934
.form-floating>.typeahead.tt-hint,
2935
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field,
2936
.form-floating>.form-control-plaintext,
2937
.form-floating>.form-select {
16825 efrain 2938
  height: calc(3.5rem + 2px);
2939
  line-height: 1.25;
2940
}
16848 stevensc 2941
 
2942
.form-floating>label {
16825 efrain 2943
  position: absolute;
2944
  top: 0;
2945
  left: 0;
2946
  width: 100%;
2947
  height: 100%;
2948
  padding: 1rem 0.8rem;
2949
  overflow: hidden;
2950
  text-align: start;
2951
  text-overflow: ellipsis;
2952
  white-space: nowrap;
2953
  pointer-events: none;
2954
  border: 1px solid transparent;
2955
  transform-origin: 0 0;
2956
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
2957
}
16848 stevensc 2958
 
16825 efrain 2959
@media (prefers-reduced-motion: reduce) {
16848 stevensc 2960
  .form-floating>label {
16825 efrain 2961
    transition: none;
2962
  }
2963
}
16848 stevensc 2964
 
2965
.form-floating>.form-control,
2966
.form-floating>.typeahead.tt-input,
2967
.form-floating>.typeahead.tt-hint,
2968
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field,
2969
.form-floating>.form-control-plaintext {
16825 efrain 2970
  padding: 1rem 0.8rem;
2971
}
16848 stevensc 2972
 
2973
.form-floating>.form-control::placeholder,
2974
.form-floating>.typeahead.tt-input::placeholder,
2975
.form-floating>.typeahead.tt-hint::placeholder,
2976
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field::placeholder,
2977
.form-floating>.form-control-plaintext::placeholder {
16825 efrain 2978
  color: transparent;
2979
}
16848 stevensc 2980
 
2981
.form-floating>.form-control:focus,
2982
.form-floating>.typeahead.tt-input:focus,
2983
.form-floating>.typeahead.tt-hint:focus,
2984
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:focus,
2985
.form-floating>.form-control:not(:placeholder-shown),
2986
.form-floating>.typeahead.tt-input:not(:placeholder-shown),
2987
.form-floating>.typeahead.tt-hint:not(:placeholder-shown),
2988
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:not(:placeholder-shown),
2989
.form-floating>.form-control-plaintext:focus,
2990
.form-floating>.form-control-plaintext:not(:placeholder-shown) {
16825 efrain 2991
  padding-top: 1.625rem;
2992
  padding-bottom: 0.625rem;
2993
}
16848 stevensc 2994
 
2995
.form-floating>.form-control:-webkit-autofill,
2996
.form-floating>.typeahead.tt-input:-webkit-autofill,
2997
.form-floating>.typeahead.tt-hint:-webkit-autofill,
2998
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:-webkit-autofill,
2999
.form-floating>.form-control-plaintext:-webkit-autofill {
16825 efrain 3000
  padding-top: 1.625rem;
3001
  padding-bottom: 0.625rem;
3002
}
16848 stevensc 3003
 
3004
.form-floating>.form-select {
16825 efrain 3005
  padding-top: 1.625rem;
3006
  padding-bottom: 0.625rem;
3007
}
16848 stevensc 3008
 
3009
.form-floating>.form-control:focus~label,
3010
.form-floating>.typeahead.tt-input:focus~label,
3011
.form-floating>.typeahead.tt-hint:focus~label,
3012
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:focus~label,
3013
.form-floating>.form-control:not(:placeholder-shown)~label,
3014
.form-floating>.typeahead.tt-input:not(:placeholder-shown)~label,
3015
.form-floating>.typeahead.tt-hint:not(:placeholder-shown)~label,
3016
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:not(:placeholder-shown)~label,
3017
.form-floating>.form-control-plaintext~label,
3018
.form-floating>.form-select~label {
16825 efrain 3019
  opacity: 0.65;
3020
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
3021
}
16848 stevensc 3022
 
3023
.form-floating>.form-control:-webkit-autofill~label,
3024
.form-floating>.typeahead.tt-input:-webkit-autofill~label,
3025
.form-floating>.typeahead.tt-hint:-webkit-autofill~label,
3026
.select2-container--default .select2-search--dropdown .form-floating>.select2-search__field:-webkit-autofill~label {
16825 efrain 3027
  opacity: 0.65;
3028
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
3029
}
16848 stevensc 3030
 
3031
.form-floating>.form-control-plaintext~label {
16825 efrain 3032
  border-width: 1px 0;
3033
}
3034
 
3035
.input-group {
3036
  position: relative;
3037
  display: flex;
3038
  flex-wrap: wrap;
3039
  align-items: stretch;
3040
  width: 100%;
3041
}
16848 stevensc 3042
 
3043
.input-group>.form-control,
3044
.input-group>.typeahead.tt-input,
3045
.input-group>.typeahead.tt-hint,
3046
.select2-container--default .select2-search--dropdown .input-group>.select2-search__field,
3047
.input-group>.form-select,
3048
.input-group>.form-floating {
16825 efrain 3049
  position: relative;
3050
  flex: 1 1 auto;
3051
  width: 1%;
3052
  min-width: 0;
3053
}
16848 stevensc 3054
 
3055
.input-group>.form-control:focus,
3056
.input-group>.typeahead.tt-input:focus,
3057
.input-group>.typeahead.tt-hint:focus,
3058
.select2-container--default .select2-search--dropdown .input-group>.select2-search__field:focus,
3059
.input-group>.form-select:focus,
3060
.input-group>.form-floating:focus-within {
16825 efrain 3061
  z-index: 5;
3062
}
16848 stevensc 3063
 
3064
.input-group .btn,
3065
.input-group .wizard>.actions a,
3066
.wizard>.actions .input-group a,
3067
.input-group div.tox .tox-button,
3068
div.tox .input-group .tox-button,
3069
.input-group .swal2-popup .swal2-actions button,
3070
.swal2-popup .swal2-actions .input-group button,
3071
.input-group .fc .fc-button-primary,
3072
.fc .input-group .fc-button-primary {
16825 efrain 3073
  position: relative;
3074
  z-index: 2;
3075
}
16848 stevensc 3076
 
3077
.input-group .btn:focus,
3078
.input-group .wizard>.actions a:focus,
3079
.wizard>.actions .input-group a:focus,
3080
.input-group div.tox .tox-button:focus,
3081
div.tox .input-group .tox-button:focus,
3082
.input-group .swal2-popup .swal2-actions button:focus,
3083
.swal2-popup .swal2-actions .input-group button:focus,
3084
.input-group .fc .fc-button-primary:focus,
3085
.fc .input-group .fc-button-primary:focus {
16825 efrain 3086
  z-index: 5;
3087
}
3088
 
3089
.input-group-text {
3090
  display: flex;
3091
  align-items: center;
3092
  padding: 0.469rem 0.563rem;
3093
  font-size: 0.875rem;
3094
  font-weight: 400;
3095
  line-height: 1.5;
3096
  color: #000;
3097
  text-align: center;
3098
  white-space: nowrap;
3099
  background-color: #f8f9fa;
3100
  border: 1px solid #e9ecef;
3101
  border-radius: 0.25rem;
3102
}
3103
 
16848 stevensc 3104
.input-group-lg>.form-control,
3105
.input-group-lg>.typeahead.tt-input,
3106
.input-group-lg>.typeahead.tt-hint,
3107
.select2-container--default .select2-search--dropdown .input-group-lg>.select2-search__field,
3108
.input-group-lg>.form-select,
3109
.input-group-lg>.input-group-text,
3110
.input-group-lg>.btn,
3111
.wizard>.actions .input-group-lg>a,
3112
div.tox .input-group-lg>.tox-button,
3113
.swal2-popup .swal2-actions .input-group-lg>button,
3114
.fc .input-group-lg>.fc-button-primary {
16825 efrain 3115
  padding: 0.5rem 0.8rem;
3116
  font-size: 1rem;
3117
  border-radius: 0.25rem;
3118
}
3119
 
16848 stevensc 3120
.input-group-sm>.form-control,
3121
.input-group-sm>.typeahead.tt-input,
3122
.input-group-sm>.typeahead.tt-hint,
3123
.select2-container--default .select2-search--dropdown .input-group-sm>.select2-search__field,
3124
.input-group-sm>.form-select,
3125
.input-group-sm>.input-group-text,
3126
.input-group-sm>.btn,
3127
.wizard>.actions .input-group-sm>a,
3128
div.tox .input-group-sm>.tox-button,
3129
.swal2-popup .swal2-actions .input-group-sm>button,
3130
.fc .input-group-sm>.fc-button-primary {
16825 efrain 3131
  padding: 0.391rem 0.8rem;
3132
  font-size: 0.812rem;
3133
  border-radius: 0.25rem;
3134
}
3135
 
16848 stevensc 3136
.input-group-lg>.form-select,
3137
.input-group-sm>.form-select {
16825 efrain 3138
  padding-right: 3.2rem;
3139
}
3140
 
16848 stevensc 3141
.input-group:not(.has-validation)> :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.tt-menu):not(.form-floating),
3142
.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),
3143
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,
3144
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.typeahead.tt-input,
3145
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.typeahead.tt-hint,
3146
.select2-container--default .select2-search--dropdown .input-group:not(.has-validation)>.form-floating:not(:last-child)>.select2-search__field,
3147
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select {
16825 efrain 3148
  border-top-right-radius: 0;
3149
  border-bottom-right-radius: 0;
3150
}
16848 stevensc 3151
 
3152
.input-group.has-validation> :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.tt-menu):not(.form-floating),
3153
.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),
3154
.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-control,
3155
.input-group.has-validation>.form-floating:nth-last-child(n+3)>.typeahead.tt-input,
3156
.input-group.has-validation>.form-floating:nth-last-child(n+3)>.typeahead.tt-hint,
3157
.select2-container--default .select2-search--dropdown .input-group.has-validation>.form-floating:nth-last-child(n+3)>.select2-search__field,
3158
.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-select {
16825 efrain 3159
  border-top-right-radius: 0;
3160
  border-bottom-right-radius: 0;
3161
}
16848 stevensc 3162
 
3163
.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 3164
  margin-left: -1px;
3165
  border-top-left-radius: 0;
3166
  border-bottom-left-radius: 0;
3167
}
16848 stevensc 3168
 
3169
.input-group>.form-floating:not(:first-child)>.form-control,
3170
.input-group>.form-floating:not(:first-child)>.typeahead.tt-input,
3171
.input-group>.form-floating:not(:first-child)>.typeahead.tt-hint,
3172
.select2-container--default .select2-search--dropdown .input-group>.form-floating:not(:first-child)>.select2-search__field,
3173
.input-group>.form-floating:not(:first-child)>.form-select {
16825 efrain 3174
  border-top-left-radius: 0;
3175
  border-bottom-left-radius: 0;
3176
}
3177
 
3178
.valid-feedback {
3179
  display: none;
3180
  width: 100%;
3181
  margin-top: 0.25rem;
3182
  font-size: 0.875em;
3183
  color: #05a34a;
3184
}
3185
 
3186
.valid-tooltip {
3187
  position: absolute;
3188
  top: 100%;
3189
  z-index: 5;
3190
  display: none;
3191
  max-width: 100%;
3192
  padding: 0.25rem 0.5rem;
3193
  margin-top: 0.1rem;
3194
  font-size: 0.812rem;
3195
  color: #fff;
3196
  background-color: rgba(5, 163, 74, 0.9);
3197
  border-radius: 0.25rem;
3198
}
3199
 
16848 stevensc 3200
.was-validated :valid~.valid-feedback,
3201
.was-validated :valid~.valid-tooltip,
3202
.is-valid~.valid-feedback,
3203
.is-valid~.valid-tooltip {
16825 efrain 3204
  display: block;
3205
}
3206
 
16848 stevensc 3207
.was-validated .form-control:valid,
3208
.was-validated .typeahead.tt-input:valid,
3209
.was-validated .typeahead.tt-hint:valid,
3210
.was-validated .select2-container--default .select2-search--dropdown .select2-search__field:valid,
3211
.select2-container--default .select2-search--dropdown .was-validated .select2-search__field:valid,
3212
.form-control.is-valid,
3213
.is-valid.typeahead.tt-input,
3214
.is-valid.typeahead.tt-hint,
3215
.select2-container--default .select2-search--dropdown .is-valid.select2-search__field {
16825 efrain 3216
  border-color: #05a34a;
3217
  padding-right: calc(1.5em + 0.938rem);
3218
  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");
3219
  background-repeat: no-repeat;
3220
  background-position: right calc(0.375em + 0.2345rem) center;
3221
  background-size: calc(0.75em + 0.469rem) calc(0.75em + 0.469rem);
3222
}
16848 stevensc 3223
 
3224
.was-validated .form-control:valid:focus,
3225
.was-validated .typeahead.tt-input:valid:focus,
3226
.was-validated .typeahead.tt-hint:valid:focus,
3227
.was-validated .select2-container--default .select2-search--dropdown .select2-search__field:valid:focus,
3228
.select2-container--default .select2-search--dropdown .was-validated .select2-search__field:valid:focus,
3229
.form-control.is-valid:focus,
3230
.is-valid.typeahead.tt-input:focus,
3231
.is-valid.typeahead.tt-hint:focus,
3232
.select2-container--default .select2-search--dropdown .is-valid.select2-search__field:focus {
16825 efrain 3233
  border-color: #05a34a;
3234
  box-shadow: 0 0 0 0 rgba(5, 163, 74, 0.25);
3235
}
3236
 
16848 stevensc 3237
.was-validated textarea.form-control:valid,
3238
.was-validated textarea.typeahead.tt-input:valid,
3239
.was-validated textarea.typeahead.tt-hint:valid,
3240
.was-validated .select2-container--default .select2-search--dropdown textarea.select2-search__field:valid,
3241
.select2-container--default .select2-search--dropdown .was-validated textarea.select2-search__field:valid,
3242
textarea.form-control.is-valid,
3243
textarea.is-valid.typeahead.tt-input,
3244
textarea.is-valid.typeahead.tt-hint,
3245
.select2-container--default .select2-search--dropdown textarea.is-valid.select2-search__field {
16825 efrain 3246
  padding-right: calc(1.5em + 0.938rem);
3247
  background-position: top calc(0.375em + 0.2345rem) right calc(0.375em + 0.2345rem);
3248
}
3249
 
16848 stevensc 3250
.was-validated .form-select:valid,
3251
.form-select.is-valid {
16825 efrain 3252
  border-color: #05a34a;
3253
}
16848 stevensc 3254
 
3255
.was-validated .form-select:valid:not([multiple]):not([size]),
3256
.was-validated .form-select:valid:not([multiple])[size="1"],
3257
.form-select.is-valid:not([multiple]):not([size]),
3258
.form-select.is-valid:not([multiple])[size="1"] {
16825 efrain 3259
  padding-right: 4.4rem;
3260
  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");
3261
  background-position: right 0.8rem center, center right 2.4rem;
3262
  background-size: 16px 12px, calc(0.75em + 0.469rem) calc(0.75em + 0.469rem);
3263
}
16848 stevensc 3264
 
3265
.was-validated .form-select:valid:focus,
3266
.form-select.is-valid:focus {
16825 efrain 3267
  border-color: #05a34a;
3268
  box-shadow: 0 0 0 0 rgba(5, 163, 74, 0.25);
3269
}
3270
 
16848 stevensc 3271
.was-validated .form-control-color:valid,
3272
.form-control-color.is-valid {
16825 efrain 3273
  width: calc(3rem + calc(1.5em + 0.938rem));
3274
}
3275
 
16848 stevensc 3276
.was-validated .form-check-input:valid,
3277
.form-check-input.is-valid {
16825 efrain 3278
  border-color: #05a34a;
3279
}
16848 stevensc 3280
 
3281
.was-validated .form-check-input:valid:checked,
3282
.form-check-input.is-valid:checked {
16825 efrain 3283
  background-color: #05a34a;
3284
}
16848 stevensc 3285
 
3286
.was-validated .form-check-input:valid:focus,
3287
.form-check-input.is-valid:focus {
16825 efrain 3288
  box-shadow: 0 0 0 0 rgba(5, 163, 74, 0.25);
3289
}
16848 stevensc 3290
 
3291
.was-validated .form-check-input:valid~.form-check-label,
3292
.form-check-input.is-valid~.form-check-label {
16825 efrain 3293
  color: #05a34a;
3294
}
3295
 
16848 stevensc 3296
.form-check-inline .form-check-input~.valid-feedback {
16825 efrain 3297
  margin-left: 0.5em;
3298
}
3299
 
16848 stevensc 3300
.was-validated .input-group>.form-control:not(:focus):valid,
3301
.was-validated .input-group>.typeahead.tt-input:not(:focus):valid,
3302
.was-validated .input-group>.typeahead.tt-hint:not(:focus):valid,
3303
.was-validated .select2-container--default .select2-search--dropdown .input-group>.select2-search__field:not(:focus):valid,
3304
.select2-container--default .select2-search--dropdown .was-validated .input-group>.select2-search__field:not(:focus):valid,
3305
.input-group>.form-control:not(:focus).is-valid,
3306
.input-group>.typeahead.tt-input:not(:focus).is-valid,
3307
.input-group>.typeahead.tt-hint:not(:focus).is-valid,
3308
.select2-container--default .select2-search--dropdown .input-group>.select2-search__field:not(:focus).is-valid,
3309
.was-validated .input-group>.form-select:not(:focus):valid,
3310
.input-group>.form-select:not(:focus).is-valid,
3311
.was-validated .input-group>.form-floating:not(:focus-within):valid,
3312
.input-group>.form-floating:not(:focus-within).is-valid {
16825 efrain 3313
  z-index: 3;
3314
}
3315
 
3316
.invalid-feedback {
3317
  display: none;
3318
  width: 100%;
3319
  margin-top: 0.25rem;
3320
  font-size: 0.875em;
3321
  color: #ff3366;
3322
}
3323
 
3324
.invalid-tooltip {
3325
  position: absolute;
3326
  top: 100%;
3327
  z-index: 5;
3328
  display: none;
3329
  max-width: 100%;
3330
  padding: 0.25rem 0.5rem;
3331
  margin-top: 0.1rem;
3332
  font-size: 0.812rem;
3333
  color: #fff;
3334
  background-color: rgba(255, 51, 102, 0.9);
3335
  border-radius: 0.25rem;
3336
}
3337
 
16848 stevensc 3338
.was-validated :invalid~.invalid-feedback,
3339
.was-validated :invalid~.invalid-tooltip,
3340
.is-invalid~.invalid-feedback,
3341
.is-invalid~.invalid-tooltip {
16825 efrain 3342
  display: block;
3343
}
3344
 
16848 stevensc 3345
.was-validated .form-control:invalid,
3346
.was-validated .typeahead.tt-input:invalid,
3347
.was-validated .typeahead.tt-hint:invalid,
3348
.was-validated .select2-container--default .select2-search--dropdown .select2-search__field:invalid,
3349
.select2-container--default .select2-search--dropdown .was-validated .select2-search__field:invalid,
3350
.form-control.is-invalid,
3351
.is-invalid.typeahead.tt-input,
3352
.is-invalid.typeahead.tt-hint,
3353
.select2-container--default .select2-search--dropdown .is-invalid.select2-search__field {
16825 efrain 3354
  border-color: #ff3366;
3355
  padding-right: calc(1.5em + 0.938rem);
3356
  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");
3357
  background-repeat: no-repeat;
3358
  background-position: right calc(0.375em + 0.2345rem) center;
3359
  background-size: calc(0.75em + 0.469rem) calc(0.75em + 0.469rem);
3360
}
16848 stevensc 3361
 
3362
.was-validated .form-control:invalid:focus,
3363
.was-validated .typeahead.tt-input:invalid:focus,
3364
.was-validated .typeahead.tt-hint:invalid:focus,
3365
.was-validated .select2-container--default .select2-search--dropdown .select2-search__field:invalid:focus,
3366
.select2-container--default .select2-search--dropdown .was-validated .select2-search__field:invalid:focus,
3367
.form-control.is-invalid:focus,
3368
.is-invalid.typeahead.tt-input:focus,
3369
.is-invalid.typeahead.tt-hint:focus,
3370
.select2-container--default .select2-search--dropdown .is-invalid.select2-search__field:focus {
16825 efrain 3371
  border-color: #ff3366;
3372
  box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.25);
3373
}
3374
 
16848 stevensc 3375
.was-validated textarea.form-control:invalid,
3376
.was-validated textarea.typeahead.tt-input:invalid,
3377
.was-validated textarea.typeahead.tt-hint:invalid,
3378
.was-validated .select2-container--default .select2-search--dropdown textarea.select2-search__field:invalid,
3379
.select2-container--default .select2-search--dropdown .was-validated textarea.select2-search__field:invalid,
3380
textarea.form-control.is-invalid,
3381
textarea.is-invalid.typeahead.tt-input,
3382
textarea.is-invalid.typeahead.tt-hint,
3383
.select2-container--default .select2-search--dropdown textarea.is-invalid.select2-search__field {
16825 efrain 3384
  padding-right: calc(1.5em + 0.938rem);
3385
  background-position: top calc(0.375em + 0.2345rem) right calc(0.375em + 0.2345rem);
3386
}
3387
 
16848 stevensc 3388
.was-validated .form-select:invalid,
3389
.form-select.is-invalid {
16825 efrain 3390
  border-color: #ff3366;
3391
}
16848 stevensc 3392
 
3393
.was-validated .form-select:invalid:not([multiple]):not([size]),
3394
.was-validated .form-select:invalid:not([multiple])[size="1"],
3395
.form-select.is-invalid:not([multiple]):not([size]),
3396
.form-select.is-invalid:not([multiple])[size="1"] {
16825 efrain 3397
  padding-right: 4.4rem;
3398
  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");
3399
  background-position: right 0.8rem center, center right 2.4rem;
3400
  background-size: 16px 12px, calc(0.75em + 0.469rem) calc(0.75em + 0.469rem);
3401
}
16848 stevensc 3402
 
3403
.was-validated .form-select:invalid:focus,
3404
.form-select.is-invalid:focus {
16825 efrain 3405
  border-color: #ff3366;
3406
  box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.25);
3407
}
3408
 
16848 stevensc 3409
.was-validated .form-control-color:invalid,
3410
.form-control-color.is-invalid {
16825 efrain 3411
  width: calc(3rem + calc(1.5em + 0.938rem));
3412
}
3413
 
16848 stevensc 3414
.was-validated .form-check-input:invalid,
3415
.form-check-input.is-invalid {
16825 efrain 3416
  border-color: #ff3366;
3417
}
16848 stevensc 3418
 
3419
.was-validated .form-check-input:invalid:checked,
3420
.form-check-input.is-invalid:checked {
16825 efrain 3421
  background-color: #ff3366;
3422
}
16848 stevensc 3423
 
3424
.was-validated .form-check-input:invalid:focus,
3425
.form-check-input.is-invalid:focus {
16825 efrain 3426
  box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.25);
3427
}
16848 stevensc 3428
 
3429
.was-validated .form-check-input:invalid~.form-check-label,
3430
.form-check-input.is-invalid~.form-check-label {
16825 efrain 3431
  color: #ff3366;
3432
}
3433
 
16848 stevensc 3434
.form-check-inline .form-check-input~.invalid-feedback {
16825 efrain 3435
  margin-left: 0.5em;
3436
}
3437
 
16848 stevensc 3438
.was-validated .input-group>.form-control:not(:focus):invalid,
3439
.was-validated .input-group>.typeahead.tt-input:not(:focus):invalid,
3440
.was-validated .input-group>.typeahead.tt-hint:not(:focus):invalid,
3441
.was-validated .select2-container--default .select2-search--dropdown .input-group>.select2-search__field:not(:focus):invalid,
3442
.select2-container--default .select2-search--dropdown .was-validated .input-group>.select2-search__field:not(:focus):invalid,
3443
.input-group>.form-control:not(:focus).is-invalid,
3444
.input-group>.typeahead.tt-input:not(:focus).is-invalid,
3445
.input-group>.typeahead.tt-hint:not(:focus).is-invalid,
3446
.select2-container--default .select2-search--dropdown .input-group>.select2-search__field:not(:focus).is-invalid,
3447
.was-validated .input-group>.form-select:not(:focus):invalid,
3448
.input-group>.form-select:not(:focus).is-invalid,
3449
.was-validated .input-group>.form-floating:not(:focus-within):invalid,
3450
.input-group>.form-floating:not(:focus-within).is-invalid {
16825 efrain 3451
  z-index: 4;
3452
}
3453
 
16848 stevensc 3454
.btn,
3455
.wizard>.actions a,
3456
.wizard>.actions a:active,
3457
.wizard>.actions a:hover,
3458
div.tox .tox-button,
3459
.swal2-popup .swal2-actions button,
3460
.fc .fc-button-primary {
16825 efrain 3461
  --bs-btn-padding-x: 0.8rem;
3462
  --bs-btn-padding-y: 0.469rem;
3463
  --bs-btn-font-family: ;
3464
  --bs-btn-font-size: 0.875rem;
3465
  --bs-btn-font-weight: 400;
3466
  --bs-btn-line-height: 1.5;
3467
  --bs-btn-color: #000;
3468
  --bs-btn-bg: transparent;
3469
  --bs-btn-border-width: 1px;
3470
  --bs-btn-border-color: transparent;
3471
  --bs-btn-border-radius: 0.25rem;
3472
  --bs-btn-hover-border-color: transparent;
3473
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
3474
  --bs-btn-disabled-opacity: 0.65;
3475
  --bs-btn-focus-box-shadow: 0 0 0 0 rgba(var(--bs-btn-focus-shadow-rgb), .5);
3476
  display: inline-block;
3477
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
3478
  font-family: var(--bs-btn-font-family);
3479
  font-size: var(--bs-btn-font-size);
3480
  font-weight: var(--bs-btn-font-weight);
3481
  line-height: var(--bs-btn-line-height);
3482
  color: var(--bs-btn-color);
3483
  text-align: center;
3484
  vertical-align: middle;
3485
  cursor: pointer;
3486
  user-select: none;
3487
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
3488
  border-radius: var(--bs-btn-border-radius);
3489
  background-color: var(--bs-btn-bg);
3490
  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;
3491
}
16848 stevensc 3492
 
16825 efrain 3493
@media (prefers-reduced-motion: reduce) {
16848 stevensc 3494
 
3495
  .btn,
3496
  .wizard>.actions a,
3497
  .wizard>.actions a:active,
3498
  .wizard>.actions a:hover,
3499
  div.tox .tox-button,
3500
  .swal2-popup .swal2-actions button,
3501
  .fc .fc-button-primary {
16825 efrain 3502
    transition: none;
3503
  }
3504
}
16848 stevensc 3505
 
3506
.btn:hover,
3507
.wizard>.actions a:hover,
3508
div.tox .tox-button:hover,
3509
.swal2-popup .swal2-actions button:hover,
3510
.fc .fc-button-primary:hover {
16825 efrain 3511
  color: var(--bs-btn-hover-color);
3512
  background-color: var(--bs-btn-hover-bg);
3513
  border-color: var(--bs-btn-hover-border-color);
3514
}
16848 stevensc 3515
 
3516
.btn-check+.btn:hover,
3517
.wizard>.actions .btn-check+a:hover,
3518
div.tox .btn-check+.tox-button:hover,
3519
.swal2-popup .swal2-actions .btn-check+button:hover,
3520
.fc .btn-check+.fc-button-primary:hover {
16825 efrain 3521
  color: var(--bs-btn-color);
3522
  background-color: var(--bs-btn-bg);
3523
  border-color: var(--bs-btn-border-color);
3524
}
16848 stevensc 3525
 
3526
.btn:focus-visible,
3527
.wizard>.actions a:focus-visible,
3528
div.tox .tox-button:focus-visible,
3529
.swal2-popup .swal2-actions button:focus-visible,
3530
.fc .fc-button-primary:focus-visible {
16825 efrain 3531
  color: var(--bs-btn-hover-color);
3532
  background-color: var(--bs-btn-hover-bg);
3533
  border-color: var(--bs-btn-hover-border-color);
3534
  outline: 0;
3535
  box-shadow: var(--bs-btn-focus-box-shadow);
3536
}
16848 stevensc 3537
 
3538
.btn-check:focus-visible+.btn,
3539
.wizard>.actions .btn-check:focus-visible+a,
3540
div.tox .btn-check:focus-visible+.tox-button,
3541
.swal2-popup .swal2-actions .btn-check:focus-visible+button,
3542
.fc .btn-check:focus-visible+.fc-button-primary {
16825 efrain 3543
  border-color: var(--bs-btn-hover-border-color);
3544
  outline: 0;
3545
  box-shadow: var(--bs-btn-focus-box-shadow);
3546
}
16848 stevensc 3547
 
3548
.btn-check:checked+.btn,
3549
.wizard>.actions .btn-check:checked+a,
3550
div.tox .btn-check:checked+.tox-button,
3551
.swal2-popup .swal2-actions .btn-check:checked+button,
3552
.fc .btn-check:checked+.fc-button-primary,
3553
:not(.btn-check)+.btn:active,
3554
.wizard>.actions :not(.btn-check)+a:active,
3555
div.tox :not(.btn-check)+.tox-button:active,
3556
.swal2-popup .swal2-actions :not(.btn-check)+button:active,
3557
.fc :not(.btn-check)+.fc-button-primary:active,
3558
.btn:first-child:active,
3559
.wizard>.actions a:first-child:active,
3560
div.tox .tox-button:first-child:active,
3561
.swal2-popup .swal2-actions button:first-child:active,
3562
.fc .fc-button-primary:first-child:active,
3563
.btn.active,
3564
.wizard>.actions a.active,
3565
div.tox .active.tox-button,
3566
.swal2-popup .swal2-actions button.active,
3567
.fc .active.fc-button-primary,
3568
.btn.show,
3569
.wizard>.actions a.show,
3570
div.tox .show.tox-button,
3571
.swal2-popup .swal2-actions button.show,
3572
.fc .show.fc-button-primary {
16825 efrain 3573
  color: var(--bs-btn-active-color);
3574
  background-color: var(--bs-btn-active-bg);
3575
  border-color: var(--bs-btn-active-border-color);
3576
}
16848 stevensc 3577
 
3578
.btn-check:checked+.btn:focus-visible,
3579
.wizard>.actions .btn-check:checked+a:focus-visible,
3580
div.tox .btn-check:checked+.tox-button:focus-visible,
3581
.swal2-popup .swal2-actions .btn-check:checked+button:focus-visible,
3582
.fc .btn-check:checked+.fc-button-primary:focus-visible,
3583
:not(.btn-check)+.btn:active:focus-visible,
3584
.wizard>.actions :not(.btn-check)+a:active:focus-visible,
3585
div.tox :not(.btn-check)+.tox-button:active:focus-visible,
3586
.swal2-popup .swal2-actions :not(.btn-check)+button:active:focus-visible,
3587
.fc :not(.btn-check)+.fc-button-primary:active:focus-visible,
3588
.btn:first-child:active:focus-visible,
3589
.wizard>.actions a:first-child:active:focus-visible,
3590
div.tox .tox-button:first-child:active:focus-visible,
3591
.swal2-popup .swal2-actions button:first-child:active:focus-visible,
3592
.fc .fc-button-primary:first-child:active:focus-visible,
3593
.btn.active:focus-visible,
3594
.wizard>.actions a.active:focus-visible,
3595
div.tox .active.tox-button:focus-visible,
3596
.swal2-popup .swal2-actions button.active:focus-visible,
3597
.fc .active.fc-button-primary:focus-visible,
3598
.btn.show:focus-visible,
3599
.wizard>.actions a.show:focus-visible,
3600
div.tox .show.tox-button:focus-visible,
3601
.swal2-popup .swal2-actions button.show:focus-visible,
3602
.fc .show.fc-button-primary:focus-visible {
16825 efrain 3603
  box-shadow: var(--bs-btn-focus-box-shadow);
3604
}
16848 stevensc 3605
 
3606
.btn:disabled,
3607
.wizard>.actions a:disabled,
3608
div.tox .tox-button:disabled,
3609
.swal2-popup .swal2-actions button:disabled,
3610
.fc .fc-button-primary:disabled,
3611
.btn.disabled,
3612
.wizard>.actions a.disabled,
3613
div.tox .disabled.tox-button,
3614
.swal2-popup .swal2-actions button.disabled,
3615
.fc .disabled.fc-button-primary,
3616
fieldset:disabled .btn,
3617
fieldset:disabled .wizard>.actions a,
3618
.wizard>.actions fieldset:disabled a,
3619
fieldset:disabled div.tox .tox-button,
3620
div.tox fieldset:disabled .tox-button,
3621
fieldset:disabled .swal2-popup .swal2-actions button,
3622
.swal2-popup .swal2-actions fieldset:disabled button,
3623
fieldset:disabled .fc .fc-button-primary,
3624
.fc fieldset:disabled .fc-button-primary {
16825 efrain 3625
  color: var(--bs-btn-disabled-color);
3626
  pointer-events: none;
3627
  background-color: var(--bs-btn-disabled-bg);
3628
  border-color: var(--bs-btn-disabled-border-color);
3629
  opacity: var(--bs-btn-disabled-opacity);
3630
}
3631
 
16848 stevensc 3632
.btn-primary,
3633
.wizard>.actions a,
3634
.wizard>.actions a:active,
3635
.wizard>.actions a:hover,
3636
div.tox .tox-button:not(.tox-button--naked):not(.tox-button--secondary),
3637
.swal2-popup .swal2-actions button.swal2-confirm,
3638
.fc .fc-button-primary:not(:disabled).fc-button-active,
16825 efrain 3639
.fc .fc-button-primary:not(:disabled):active {
3640
  --bs-btn-color: #fff;
3641
  --bs-btn-bg: #6571ff;
3642
  --bs-btn-border-color: #6571ff;
3643
  --bs-btn-hover-color: #fff;
3644
  --bs-btn-hover-bg: #5660d9;
3645
  --bs-btn-hover-border-color: #515acc;
3646
  --bs-btn-focus-shadow-rgb: 124, 134, 255;
3647
  --bs-btn-active-color: #fff;
3648
  --bs-btn-active-bg: #515acc;
3649
  --bs-btn-active-border-color: #4c55bf;
3650
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3651
  --bs-btn-disabled-color: #fff;
3652
  --bs-btn-disabled-bg: #6571ff;
3653
  --bs-btn-disabled-border-color: #6571ff;
3654
}
3655
 
16848 stevensc 3656
.btn-secondary,
3657
div.tox .tox-button--secondary {
16825 efrain 3658
  --bs-btn-color: #fff;
3659
  --bs-btn-bg: #7987a1;
3660
  --bs-btn-border-color: #7987a1;
3661
  --bs-btn-hover-color: #fff;
3662
  --bs-btn-hover-bg: #677389;
3663
  --bs-btn-hover-border-color: #616c81;
3664
  --bs-btn-focus-shadow-rgb: 141, 153, 175;
3665
  --bs-btn-active-color: #fff;
3666
  --bs-btn-active-bg: #616c81;
3667
  --bs-btn-active-border-color: #5b6579;
3668
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3669
  --bs-btn-disabled-color: #fff;
3670
  --bs-btn-disabled-bg: #7987a1;
3671
  --bs-btn-disabled-border-color: #7987a1;
3672
}
3673
 
3674
.btn-success {
3675
  --bs-btn-color: #fff;
3676
  --bs-btn-bg: #05a34a;
3677
  --bs-btn-border-color: #05a34a;
3678
  --bs-btn-hover-color: #fff;
3679
  --bs-btn-hover-bg: #048b3f;
3680
  --bs-btn-hover-border-color: #04823b;
3681
  --bs-btn-focus-shadow-rgb: 43, 177, 101;
3682
  --bs-btn-active-color: #fff;
3683
  --bs-btn-active-bg: #04823b;
3684
  --bs-btn-active-border-color: #047a38;
3685
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3686
  --bs-btn-disabled-color: #fff;
3687
  --bs-btn-disabled-bg: #05a34a;
3688
  --bs-btn-disabled-border-color: #05a34a;
3689
}
3690
 
3691
.btn-info {
3692
  --bs-btn-color: #000;
3693
  --bs-btn-bg: #66d1d1;
3694
  --bs-btn-border-color: #66d1d1;
3695
  --bs-btn-hover-color: #000;
3696
  --bs-btn-hover-bg: #7dd8d8;
3697
  --bs-btn-hover-border-color: #75d6d6;
3698
  --bs-btn-focus-shadow-rgb: 87, 178, 178;
3699
  --bs-btn-active-color: #000;
3700
  --bs-btn-active-bg: #85dada;
3701
  --bs-btn-active-border-color: #75d6d6;
3702
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3703
  --bs-btn-disabled-color: #000;
3704
  --bs-btn-disabled-bg: #66d1d1;
3705
  --bs-btn-disabled-border-color: #66d1d1;
3706
}
3707
 
3708
.btn-warning {
3709
  --bs-btn-color: #000;
3710
  --bs-btn-bg: #fbbc06;
3711
  --bs-btn-border-color: #fbbc06;
3712
  --bs-btn-hover-color: #000;
3713
  --bs-btn-hover-bg: #fcc62b;
3714
  --bs-btn-hover-border-color: #fbc31f;
3715
  --bs-btn-focus-shadow-rgb: 213, 160, 5;
3716
  --bs-btn-active-color: #000;
3717
  --bs-btn-active-bg: #fcc938;
3718
  --bs-btn-active-border-color: #fbc31f;
3719
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3720
  --bs-btn-disabled-color: #000;
3721
  --bs-btn-disabled-bg: #fbbc06;
3722
  --bs-btn-disabled-border-color: #fbbc06;
3723
}
3724
 
16848 stevensc 3725
.btn-danger,
3726
.swal2-popup .swal2-actions button.swal2-cancel {
16825 efrain 3727
  --bs-btn-color: #fff;
3728
  --bs-btn-bg: #ff3366;
3729
  --bs-btn-border-color: #ff3366;
3730
  --bs-btn-hover-color: #fff;
3731
  --bs-btn-hover-bg: #d92b57;
3732
  --bs-btn-hover-border-color: #cc2952;
3733
  --bs-btn-focus-shadow-rgb: 255, 82, 125;
3734
  --bs-btn-active-color: #fff;
3735
  --bs-btn-active-bg: #cc2952;
3736
  --bs-btn-active-border-color: #bf264d;
3737
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3738
  --bs-btn-disabled-color: #fff;
3739
  --bs-btn-disabled-bg: #ff3366;
3740
  --bs-btn-disabled-border-color: #ff3366;
3741
}
3742
 
3743
.btn-light {
3744
  --bs-btn-color: #000;
3745
  --bs-btn-bg: #e9ecef;
3746
  --bs-btn-border-color: #e9ecef;
3747
  --bs-btn-hover-color: #000;
3748
  --bs-btn-hover-bg: #c6c9cb;
3749
  --bs-btn-hover-border-color: #babdbf;
3750
  --bs-btn-focus-shadow-rgb: 198, 201, 203;
3751
  --bs-btn-active-color: #000;
3752
  --bs-btn-active-bg: #babdbf;
3753
  --bs-btn-active-border-color: #afb1b3;
3754
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3755
  --bs-btn-disabled-color: #000;
3756
  --bs-btn-disabled-bg: #e9ecef;
3757
  --bs-btn-disabled-border-color: #e9ecef;
3758
}
3759
 
3760
.btn-dark {
3761
  --bs-btn-color: #fff;
3762
  --bs-btn-bg: #060c17;
3763
  --bs-btn-border-color: #060c17;
3764
  --bs-btn-hover-color: #fff;
3765
  --bs-btn-hover-bg: #2b303a;
3766
  --bs-btn-hover-border-color: #1f242e;
3767
  --bs-btn-focus-shadow-rgb: 43, 48, 58;
3768
  --bs-btn-active-color: #fff;
3769
  --bs-btn-active-bg: #383d45;
3770
  --bs-btn-active-border-color: #1f242e;
3771
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3772
  --bs-btn-disabled-color: #fff;
3773
  --bs-btn-disabled-bg: #060c17;
3774
  --bs-btn-disabled-border-color: #060c17;
3775
}
3776
 
16848 stevensc 3777
.btn-outline-primary,
3778
.fc .fc-button-primary {
16825 efrain 3779
  --bs-btn-color: #6571ff;
3780
  --bs-btn-border-color: #6571ff;
3781
  --bs-btn-hover-color: #fff;
3782
  --bs-btn-hover-bg: #6571ff;
3783
  --bs-btn-hover-border-color: #6571ff;
3784
  --bs-btn-focus-shadow-rgb: 101, 113, 255;
3785
  --bs-btn-active-color: #fff;
3786
  --bs-btn-active-bg: #6571ff;
3787
  --bs-btn-active-border-color: #6571ff;
3788
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3789
  --bs-btn-disabled-color: #6571ff;
3790
  --bs-btn-disabled-bg: transparent;
3791
  --bs-btn-disabled-border-color: #6571ff;
3792
  --bs-gradient: none;
3793
}
3794
 
3795
.btn-outline-secondary {
3796
  --bs-btn-color: #7987a1;
3797
  --bs-btn-border-color: #7987a1;
3798
  --bs-btn-hover-color: #fff;
3799
  --bs-btn-hover-bg: #7987a1;
3800
  --bs-btn-hover-border-color: #7987a1;
3801
  --bs-btn-focus-shadow-rgb: 121, 135, 161;
3802
  --bs-btn-active-color: #fff;
3803
  --bs-btn-active-bg: #7987a1;
3804
  --bs-btn-active-border-color: #7987a1;
3805
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3806
  --bs-btn-disabled-color: #7987a1;
3807
  --bs-btn-disabled-bg: transparent;
3808
  --bs-btn-disabled-border-color: #7987a1;
3809
  --bs-gradient: none;
3810
}
3811
 
3812
.btn-outline-success {
3813
  --bs-btn-color: #05a34a;
3814
  --bs-btn-border-color: #05a34a;
3815
  --bs-btn-hover-color: #fff;
3816
  --bs-btn-hover-bg: #05a34a;
3817
  --bs-btn-hover-border-color: #05a34a;
3818
  --bs-btn-focus-shadow-rgb: 5, 163, 74;
3819
  --bs-btn-active-color: #fff;
3820
  --bs-btn-active-bg: #05a34a;
3821
  --bs-btn-active-border-color: #05a34a;
3822
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3823
  --bs-btn-disabled-color: #05a34a;
3824
  --bs-btn-disabled-bg: transparent;
3825
  --bs-btn-disabled-border-color: #05a34a;
3826
  --bs-gradient: none;
3827
}
3828
 
3829
.btn-outline-info {
3830
  --bs-btn-color: #66d1d1;
3831
  --bs-btn-border-color: #66d1d1;
3832
  --bs-btn-hover-color: #000;
3833
  --bs-btn-hover-bg: #66d1d1;
3834
  --bs-btn-hover-border-color: #66d1d1;
3835
  --bs-btn-focus-shadow-rgb: 102, 209, 209;
3836
  --bs-btn-active-color: #000;
3837
  --bs-btn-active-bg: #66d1d1;
3838
  --bs-btn-active-border-color: #66d1d1;
3839
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3840
  --bs-btn-disabled-color: #66d1d1;
3841
  --bs-btn-disabled-bg: transparent;
3842
  --bs-btn-disabled-border-color: #66d1d1;
3843
  --bs-gradient: none;
3844
}
3845
 
3846
.btn-outline-warning {
3847
  --bs-btn-color: #fbbc06;
3848
  --bs-btn-border-color: #fbbc06;
3849
  --bs-btn-hover-color: #000;
3850
  --bs-btn-hover-bg: #fbbc06;
3851
  --bs-btn-hover-border-color: #fbbc06;
3852
  --bs-btn-focus-shadow-rgb: 251, 188, 6;
3853
  --bs-btn-active-color: #000;
3854
  --bs-btn-active-bg: #fbbc06;
3855
  --bs-btn-active-border-color: #fbbc06;
3856
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3857
  --bs-btn-disabled-color: #fbbc06;
3858
  --bs-btn-disabled-bg: transparent;
3859
  --bs-btn-disabled-border-color: #fbbc06;
3860
  --bs-gradient: none;
3861
}
3862
 
3863
.btn-outline-danger {
3864
  --bs-btn-color: #ff3366;
3865
  --bs-btn-border-color: #ff3366;
3866
  --bs-btn-hover-color: #fff;
3867
  --bs-btn-hover-bg: #ff3366;
3868
  --bs-btn-hover-border-color: #ff3366;
3869
  --bs-btn-focus-shadow-rgb: 255, 51, 102;
3870
  --bs-btn-active-color: #fff;
3871
  --bs-btn-active-bg: #ff3366;
3872
  --bs-btn-active-border-color: #ff3366;
3873
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3874
  --bs-btn-disabled-color: #ff3366;
3875
  --bs-btn-disabled-bg: transparent;
3876
  --bs-btn-disabled-border-color: #ff3366;
3877
  --bs-gradient: none;
3878
}
3879
 
3880
.btn-outline-light {
3881
  --bs-btn-color: #e9ecef;
3882
  --bs-btn-border-color: #e9ecef;
3883
  --bs-btn-hover-color: #000;
3884
  --bs-btn-hover-bg: #e9ecef;
3885
  --bs-btn-hover-border-color: #e9ecef;
3886
  --bs-btn-focus-shadow-rgb: 233, 236, 239;
3887
  --bs-btn-active-color: #000;
3888
  --bs-btn-active-bg: #e9ecef;
3889
  --bs-btn-active-border-color: #e9ecef;
3890
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3891
  --bs-btn-disabled-color: #e9ecef;
3892
  --bs-btn-disabled-bg: transparent;
3893
  --bs-btn-disabled-border-color: #e9ecef;
3894
  --bs-gradient: none;
3895
}
3896
 
3897
.btn-outline-dark {
3898
  --bs-btn-color: #060c17;
3899
  --bs-btn-border-color: #060c17;
3900
  --bs-btn-hover-color: #fff;
3901
  --bs-btn-hover-bg: #060c17;
3902
  --bs-btn-hover-border-color: #060c17;
3903
  --bs-btn-focus-shadow-rgb: 6, 12, 23;
3904
  --bs-btn-active-color: #fff;
3905
  --bs-btn-active-bg: #060c17;
3906
  --bs-btn-active-border-color: #060c17;
3907
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3908
  --bs-btn-disabled-color: #060c17;
3909
  --bs-btn-disabled-bg: transparent;
3910
  --bs-btn-disabled-border-color: #060c17;
3911
  --bs-gradient: none;
3912
}
3913
 
3914
.btn-link {
3915
  --bs-btn-font-weight: 400;
3916
  --bs-btn-color: var(--bs-link-color);
3917
  --bs-btn-bg: transparent;
3918
  --bs-btn-border-color: transparent;
3919
  --bs-btn-hover-color: var(--bs-link-hover-color);
3920
  --bs-btn-hover-border-color: transparent;
3921
  --bs-btn-active-color: var(--bs-link-hover-color);
3922
  --bs-btn-active-border-color: transparent;
3923
  --bs-btn-disabled-color: #7987a1;
3924
  --bs-btn-disabled-border-color: transparent;
3925
  --bs-btn-box-shadow: none;
3926
  --bs-btn-focus-shadow-rgb: 124, 134, 255;
3927
  text-decoration: none;
3928
}
16848 stevensc 3929
 
16825 efrain 3930
.btn-link:focus-visible {
3931
  color: var(--bs-btn-color);
3932
}
16848 stevensc 3933
 
16825 efrain 3934
.btn-link:hover {
3935
  color: var(--bs-btn-hover-color);
3936
}
3937
 
16848 stevensc 3938
.btn-lg,
3939
.btn-group-lg>.btn,
3940
.wizard>.actions .btn-group-lg>a,
3941
div.tox .btn-group-lg>.tox-button,
3942
.swal2-popup .swal2-actions .btn-group-lg>button,
3943
.fc .btn-group-lg>.fc-button-primary {
16825 efrain 3944
  --bs-btn-padding-y: 0.5rem;
3945
  --bs-btn-padding-x: 0.8rem;
3946
  --bs-btn-font-size: 1rem;
3947
  --bs-btn-border-radius: 0.25rem;
3948
}
3949
 
16848 stevensc 3950
.btn-sm,
3951
.fc .fc-button-primary,
3952
.btn-group-sm>.btn,
3953
.wizard>.actions .btn-group-sm>a,
3954
div.tox .btn-group-sm>.tox-button,
3955
.swal2-popup .swal2-actions .btn-group-sm>button {
16825 efrain 3956
  --bs-btn-padding-y: 0.391rem;
3957
  --bs-btn-padding-x: 0.8rem;
3958
  --bs-btn-font-size: 0.812rem;
3959
  --bs-btn-border-radius: 0.25rem;
3960
}
3961
 
3962
.fade {
3963
  transition: opacity 0.15s linear;
3964
}
16848 stevensc 3965
 
16825 efrain 3966
@media (prefers-reduced-motion: reduce) {
3967
  .fade {
3968
    transition: none;
3969
  }
3970
}
16848 stevensc 3971
 
16825 efrain 3972
.fade:not(.show) {
3973
  opacity: 0;
3974
}
3975
 
3976
.collapse:not(.show) {
3977
  display: none;
3978
}
3979
 
3980
.collapsing {
3981
  height: 0;
3982
  overflow: hidden;
3983
  transition: height 0.35s ease;
3984
}
16848 stevensc 3985
 
16825 efrain 3986
@media (prefers-reduced-motion: reduce) {
3987
  .collapsing {
3988
    transition: none;
3989
  }
3990
}
16848 stevensc 3991
 
16825 efrain 3992
.collapsing.collapse-horizontal {
3993
  width: 0;
3994
  height: auto;
3995
  transition: width 0.35s ease;
3996
}
16848 stevensc 3997
 
16825 efrain 3998
@media (prefers-reduced-motion: reduce) {
3999
  .collapsing.collapse-horizontal {
4000
    transition: none;
4001
  }
4002
}
4003
 
4004
.dropup,
4005
.dropend,
4006
.dropdown,
4007
.dropstart,
4008
.dropup-center,
4009
.dropdown-center {
4010
  position: relative;
4011
}
4012
 
4013
.dropdown-toggle {
4014
  white-space: nowrap;
4015
}
16848 stevensc 4016
 
16825 efrain 4017
.dropdown-toggle::after {
4018
  display: inline-block;
4019
  margin-left: 0.255em;
4020
  vertical-align: 0.255em;
4021
  content: "";
4022
  border-top: 0.3em solid;
4023
  border-right: 0.3em solid transparent;
4024
  border-bottom: 0;
4025
  border-left: 0.3em solid transparent;
4026
}
16848 stevensc 4027
 
16825 efrain 4028
.dropdown-toggle:empty::after {
4029
  margin-left: 0;
4030
}
4031
 
16848 stevensc 4032
.dropdown-menu,
4033
.tt-menu {
16825 efrain 4034
  --bs-dropdown-zindex: 1000;
4035
  --bs-dropdown-min-width: 10rem;
4036
  --bs-dropdown-padding-x: 0;
4037
  --bs-dropdown-padding-y: 0.5rem;
4038
  --bs-dropdown-spacer: 0.125rem;
4039
  --bs-dropdown-font-size: 0.875rem;
4040
  --bs-dropdown-color: #000;
4041
  --bs-dropdown-bg: #fff;
4042
  --bs-dropdown-border-color: #f2f4f9;
4043
  --bs-dropdown-border-radius: 0.25rem;
4044
  --bs-dropdown-border-width: 1px;
4045
  --bs-dropdown-inner-border-radius: calc(0.25rem - 1px);
4046
  --bs-dropdown-divider-bg: #f2f4f9;
4047
  --bs-dropdown-divider-margin-y: 0.5rem;
4048
  --bs-dropdown-box-shadow: 0 5px 10px 0 rgba(183, 192, 206, 0.2);
4049
  --bs-dropdown-link-color: #060c17;
4050
  --bs-dropdown-link-hover-color: #050b15;
4051
  --bs-dropdown-link-hover-bg: #e9ecef;
4052
  --bs-dropdown-link-active-color: #fff;
4053
  --bs-dropdown-link-active-bg: #6571ff;
4054
  --bs-dropdown-link-disabled-color: #aeb7c5;
4055
  --bs-dropdown-item-padding-x: 1rem;
4056
  --bs-dropdown-item-padding-y: 0.25rem;
4057
  --bs-dropdown-header-color: #7987a1;
4058
  --bs-dropdown-header-padding-x: 1rem;
4059
  --bs-dropdown-header-padding-y: 0.5rem;
4060
  position: absolute;
4061
  z-index: var(--bs-dropdown-zindex);
4062
  display: none;
4063
  min-width: var(--bs-dropdown-min-width);
4064
  padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
4065
  margin: 0;
4066
  font-size: var(--bs-dropdown-font-size);
4067
  color: var(--bs-dropdown-color);
4068
  text-align: left;
4069
  list-style: none;
4070
  background-color: var(--bs-dropdown-bg);
4071
  background-clip: padding-box;
4072
  border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
4073
  border-radius: var(--bs-dropdown-border-radius);
4074
}
16848 stevensc 4075
 
4076
.dropdown-menu[data-bs-popper],
4077
[data-bs-popper].tt-menu {
16825 efrain 4078
  top: 100%;
4079
  left: 0;
4080
  margin-top: var(--bs-dropdown-spacer);
4081
}
4082
 
4083
.dropdown-menu-start {
4084
  --bs-position: start;
4085
}
16848 stevensc 4086
 
16825 efrain 4087
.dropdown-menu-start[data-bs-popper] {
4088
  right: auto;
4089
  left: 0;
4090
}
4091
 
4092
.dropdown-menu-end {
4093
  --bs-position: end;
4094
}
16848 stevensc 4095
 
16825 efrain 4096
.dropdown-menu-end[data-bs-popper] {
4097
  right: 0;
4098
  left: auto;
4099
}
4100
 
4101
@media (min-width: 576px) {
4102
  .dropdown-menu-sm-start {
4103
    --bs-position: start;
4104
  }
16848 stevensc 4105
 
16825 efrain 4106
  .dropdown-menu-sm-start[data-bs-popper] {
4107
    right: auto;
4108
    left: 0;
4109
  }
16848 stevensc 4110
 
16825 efrain 4111
  .dropdown-menu-sm-end {
4112
    --bs-position: end;
4113
  }
16848 stevensc 4114
 
16825 efrain 4115
  .dropdown-menu-sm-end[data-bs-popper] {
4116
    right: 0;
4117
    left: auto;
4118
  }
4119
}
16848 stevensc 4120
 
16825 efrain 4121
@media (min-width: 768px) {
4122
  .dropdown-menu-md-start {
4123
    --bs-position: start;
4124
  }
16848 stevensc 4125
 
16825 efrain 4126
  .dropdown-menu-md-start[data-bs-popper] {
4127
    right: auto;
4128
    left: 0;
4129
  }
16848 stevensc 4130
 
16825 efrain 4131
  .dropdown-menu-md-end {
4132
    --bs-position: end;
4133
  }
16848 stevensc 4134
 
16825 efrain 4135
  .dropdown-menu-md-end[data-bs-popper] {
4136
    right: 0;
4137
    left: auto;
4138
  }
4139
}
16848 stevensc 4140
 
16825 efrain 4141
@media (min-width: 992px) {
4142
  .dropdown-menu-lg-start {
4143
    --bs-position: start;
4144
  }
16848 stevensc 4145
 
16825 efrain 4146
  .dropdown-menu-lg-start[data-bs-popper] {
4147
    right: auto;
4148
    left: 0;
4149
  }
16848 stevensc 4150
 
16825 efrain 4151
  .dropdown-menu-lg-end {
4152
    --bs-position: end;
4153
  }
16848 stevensc 4154
 
16825 efrain 4155
  .dropdown-menu-lg-end[data-bs-popper] {
4156
    right: 0;
4157
    left: auto;
4158
  }
4159
}
16848 stevensc 4160
 
16825 efrain 4161
@media (min-width: 1200px) {
4162
  .dropdown-menu-xl-start {
4163
    --bs-position: start;
4164
  }
16848 stevensc 4165
 
16825 efrain 4166
  .dropdown-menu-xl-start[data-bs-popper] {
4167
    right: auto;
4168
    left: 0;
4169
  }
16848 stevensc 4170
 
16825 efrain 4171
  .dropdown-menu-xl-end {
4172
    --bs-position: end;
4173
  }
16848 stevensc 4174
 
16825 efrain 4175
  .dropdown-menu-xl-end[data-bs-popper] {
4176
    right: 0;
4177
    left: auto;
4178
  }
4179
}
16848 stevensc 4180
 
16825 efrain 4181
@media (min-width: 1400px) {
4182
  .dropdown-menu-xxl-start {
4183
    --bs-position: start;
4184
  }
16848 stevensc 4185
 
16825 efrain 4186
  .dropdown-menu-xxl-start[data-bs-popper] {
4187
    right: auto;
4188
    left: 0;
4189
  }
16848 stevensc 4190
 
16825 efrain 4191
  .dropdown-menu-xxl-end {
4192
    --bs-position: end;
4193
  }
16848 stevensc 4194
 
16825 efrain 4195
  .dropdown-menu-xxl-end[data-bs-popper] {
4196
    right: 0;
4197
    left: auto;
4198
  }
4199
}
16848 stevensc 4200
 
4201
.dropup .dropdown-menu[data-bs-popper],
4202
.dropup [data-bs-popper].tt-menu {
16825 efrain 4203
  top: auto;
4204
  bottom: 100%;
4205
  margin-top: 0;
4206
  margin-bottom: var(--bs-dropdown-spacer);
4207
}
16848 stevensc 4208
 
16825 efrain 4209
.dropup .dropdown-toggle::after {
4210
  display: inline-block;
4211
  margin-left: 0.255em;
4212
  vertical-align: 0.255em;
4213
  content: "";
4214
  border-top: 0;
4215
  border-right: 0.3em solid transparent;
4216
  border-bottom: 0.3em solid;
4217
  border-left: 0.3em solid transparent;
4218
}
16848 stevensc 4219
 
16825 efrain 4220
.dropup .dropdown-toggle:empty::after {
4221
  margin-left: 0;
4222
}
4223
 
16848 stevensc 4224
.dropend .dropdown-menu[data-bs-popper],
4225
.dropend [data-bs-popper].tt-menu {
16825 efrain 4226
  top: 0;
4227
  right: auto;
4228
  left: 100%;
4229
  margin-top: 0;
4230
  margin-left: var(--bs-dropdown-spacer);
4231
}
16848 stevensc 4232
 
16825 efrain 4233
.dropend .dropdown-toggle::after {
4234
  display: inline-block;
4235
  margin-left: 0.255em;
4236
  vertical-align: 0.255em;
4237
  content: "";
4238
  border-top: 0.3em solid transparent;
4239
  border-right: 0;
4240
  border-bottom: 0.3em solid transparent;
4241
  border-left: 0.3em solid;
4242
}
16848 stevensc 4243
 
16825 efrain 4244
.dropend .dropdown-toggle:empty::after {
4245
  margin-left: 0;
4246
}
16848 stevensc 4247
 
16825 efrain 4248
.dropend .dropdown-toggle::after {
4249
  vertical-align: 0;
4250
}
4251
 
16848 stevensc 4252
.dropstart .dropdown-menu[data-bs-popper],
4253
.dropstart [data-bs-popper].tt-menu {
16825 efrain 4254
  top: 0;
4255
  right: 100%;
4256
  left: auto;
4257
  margin-top: 0;
4258
  margin-right: var(--bs-dropdown-spacer);
4259
}
16848 stevensc 4260
 
16825 efrain 4261
.dropstart .dropdown-toggle::after {
4262
  display: inline-block;
4263
  margin-left: 0.255em;
4264
  vertical-align: 0.255em;
4265
  content: "";
4266
}
16848 stevensc 4267
 
16825 efrain 4268
.dropstart .dropdown-toggle::after {
4269
  display: none;
4270
}
16848 stevensc 4271
 
16825 efrain 4272
.dropstart .dropdown-toggle::before {
4273
  display: inline-block;
4274
  margin-right: 0.255em;
4275
  vertical-align: 0.255em;
4276
  content: "";
4277
  border-top: 0.3em solid transparent;
4278
  border-right: 0.3em solid;
4279
  border-bottom: 0.3em solid transparent;
4280
}
16848 stevensc 4281
 
16825 efrain 4282
.dropstart .dropdown-toggle:empty::after {
4283
  margin-left: 0;
4284
}
16848 stevensc 4285
 
16825 efrain 4286
.dropstart .dropdown-toggle::before {
4287
  vertical-align: 0;
4288
}
4289
 
4290
.dropdown-divider {
4291
  height: 0;
4292
  margin: var(--bs-dropdown-divider-margin-y) 0;
4293
  overflow: hidden;
4294
  border-top: 1px solid var(--bs-dropdown-divider-bg);
4295
  opacity: 1;
4296
}
4297
 
16848 stevensc 4298
.dropdown-item,
4299
.tt-menu .tt-suggestion {
16825 efrain 4300
  display: block;
4301
  width: 100%;
4302
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
4303
  clear: both;
4304
  font-weight: 400;
4305
  color: var(--bs-dropdown-link-color);
4306
  text-align: inherit;
4307
  white-space: nowrap;
4308
  background-color: transparent;
4309
  border: 0;
4310
}
16848 stevensc 4311
 
4312
.dropdown-item:hover,
4313
.tt-menu .tt-suggestion:hover,
4314
.dropdown-item:focus,
4315
.tt-menu .tt-suggestion:focus {
16825 efrain 4316
  color: var(--bs-dropdown-link-hover-color);
4317
  background-color: var(--bs-dropdown-link-hover-bg);
4318
}
16848 stevensc 4319
 
4320
.dropdown-item.active,
4321
.tt-menu .active.tt-suggestion,
4322
.dropdown-item:active,
4323
.tt-menu .tt-suggestion:active {
16825 efrain 4324
  color: var(--bs-dropdown-link-active-color);
4325
  text-decoration: none;
4326
  background-color: var(--bs-dropdown-link-active-bg);
4327
}
16848 stevensc 4328
 
4329
.dropdown-item.disabled,
4330
.tt-menu .disabled.tt-suggestion,
4331
.dropdown-item:disabled,
4332
.tt-menu .tt-suggestion:disabled {
16825 efrain 4333
  color: var(--bs-dropdown-link-disabled-color);
4334
  pointer-events: none;
4335
  background-color: transparent;
4336
}
4337
 
16848 stevensc 4338
.dropdown-menu.show,
4339
.show.tt-menu {
16825 efrain 4340
  display: block;
4341
}
4342
 
4343
.dropdown-header {
4344
  display: block;
4345
  padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
4346
  margin-bottom: 0;
4347
  font-size: 0.812rem;
4348
  color: var(--bs-dropdown-header-color);
4349
  white-space: nowrap;
4350
}
4351
 
4352
.dropdown-item-text {
4353
  display: block;
4354
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
4355
  color: var(--bs-dropdown-link-color);
4356
}
4357
 
4358
.dropdown-menu-dark {
4359
  --bs-dropdown-color: #dee2e6;
4360
  --bs-dropdown-bg: #212a3a;
4361
  --bs-dropdown-border-color: #f2f4f9;
4362
  --bs-dropdown-box-shadow: ;
4363
  --bs-dropdown-link-color: #dee2e6;
4364
  --bs-dropdown-link-hover-color: #fff;
4365
  --bs-dropdown-divider-bg: #f2f4f9;
4366
  --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
4367
  --bs-dropdown-link-active-color: #fff;
4368
  --bs-dropdown-link-active-bg: #6571ff;
4369
  --bs-dropdown-link-disabled-color: #aeb7c5;
4370
  --bs-dropdown-header-color: #aeb7c5;
4371
}
4372
 
4373
.btn-group,
4374
.btn-group-vertical {
4375
  position: relative;
4376
  display: inline-flex;
4377
  vertical-align: middle;
4378
}
16848 stevensc 4379
 
4380
.btn-group>.btn,
4381
.wizard>.actions .btn-group>a,
4382
div.tox .btn-group>.tox-button,
4383
.swal2-popup .swal2-actions .btn-group>button,
4384
.fc .btn-group>.fc-button-primary,
4385
.btn-group-vertical>.btn,
4386
.wizard>.actions .btn-group-vertical>a,
4387
div.tox .btn-group-vertical>.tox-button,
4388
.swal2-popup .swal2-actions .btn-group-vertical>button,
4389
.fc .btn-group-vertical>.fc-button-primary {
16825 efrain 4390
  position: relative;
4391
  flex: 1 1 auto;
4392
}
16848 stevensc 4393
 
4394
.btn-group>.btn-check:checked+.btn,
4395
.wizard>.actions .btn-group>.btn-check:checked+a,
4396
div.tox .btn-group>.btn-check:checked+.tox-button,
4397
.swal2-popup .swal2-actions .btn-group>.btn-check:checked+button,
4398
.fc .btn-group>.btn-check:checked+.fc-button-primary,
4399
.btn-group>.btn-check:focus+.btn,
4400
.wizard>.actions .btn-group>.btn-check:focus+a,
4401
div.tox .btn-group>.btn-check:focus+.tox-button,
4402
.swal2-popup .swal2-actions .btn-group>.btn-check:focus+button,
4403
.fc .btn-group>.btn-check:focus+.fc-button-primary,
4404
.btn-group>.btn:hover,
4405
.wizard>.actions .btn-group>a:hover,
4406
div.tox .btn-group>.tox-button:hover,
4407
.swal2-popup .swal2-actions .btn-group>button:hover,
4408
.fc .btn-group>.fc-button-primary:hover,
4409
.btn-group>.btn:focus,
4410
.wizard>.actions .btn-group>a:focus,
4411
div.tox .btn-group>.tox-button:focus,
4412
.swal2-popup .swal2-actions .btn-group>button:focus,
4413
.fc .btn-group>.fc-button-primary:focus,
4414
.btn-group>.btn:active,
4415
.wizard>.actions .btn-group>a:active,
4416
div.tox .btn-group>.tox-button:active,
4417
.swal2-popup .swal2-actions .btn-group>button:active,
4418
.fc .btn-group>.fc-button-primary:active,
4419
.btn-group>.btn.active,
4420
.wizard>.actions .btn-group>a.active,
4421
div.tox .btn-group>.active.tox-button,
4422
.swal2-popup .swal2-actions .btn-group>button.active,
4423
.fc .btn-group>.active.fc-button-primary,
4424
.btn-group-vertical>.btn-check:checked+.btn,
4425
.wizard>.actions .btn-group-vertical>.btn-check:checked+a,
4426
div.tox .btn-group-vertical>.btn-check:checked+.tox-button,
4427
.swal2-popup .swal2-actions .btn-group-vertical>.btn-check:checked+button,
4428
.fc .btn-group-vertical>.btn-check:checked+.fc-button-primary,
4429
.btn-group-vertical>.btn-check:focus+.btn,
4430
.wizard>.actions .btn-group-vertical>.btn-check:focus+a,
4431
div.tox .btn-group-vertical>.btn-check:focus+.tox-button,
4432
.swal2-popup .swal2-actions .btn-group-vertical>.btn-check:focus+button,
4433
.fc .btn-group-vertical>.btn-check:focus+.fc-button-primary,
4434
.btn-group-vertical>.btn:hover,
4435
.wizard>.actions .btn-group-vertical>a:hover,
4436
div.tox .btn-group-vertical>.tox-button:hover,
4437
.swal2-popup .swal2-actions .btn-group-vertical>button:hover,
4438
.fc .btn-group-vertical>.fc-button-primary:hover,
4439
.btn-group-vertical>.btn:focus,
4440
.wizard>.actions .btn-group-vertical>a:focus,
4441
div.tox .btn-group-vertical>.tox-button:focus,
4442
.swal2-popup .swal2-actions .btn-group-vertical>button:focus,
4443
.fc .btn-group-vertical>.fc-button-primary:focus,
4444
.btn-group-vertical>.btn:active,
4445
.wizard>.actions .btn-group-vertical>a:active,
4446
div.tox .btn-group-vertical>.tox-button:active,
4447
.swal2-popup .swal2-actions .btn-group-vertical>button:active,
4448
.fc .btn-group-vertical>.fc-button-primary:active,
4449
.btn-group-vertical>.btn.active,
4450
.wizard>.actions .btn-group-vertical>a.active,
4451
div.tox .btn-group-vertical>.active.tox-button,
4452
.swal2-popup .swal2-actions .btn-group-vertical>button.active,
4453
.fc .btn-group-vertical>.active.fc-button-primary {
16825 efrain 4454
  z-index: 1;
4455
}
4456
 
4457
.btn-toolbar {
4458
  display: flex;
4459
  flex-wrap: wrap;
4460
  justify-content: flex-start;
4461
}
16848 stevensc 4462
 
16825 efrain 4463
.btn-toolbar .input-group {
4464
  width: auto;
4465
}
4466
 
4467
.btn-group {
4468
  border-radius: 0.25rem;
4469
}
16848 stevensc 4470
 
4471
.btn-group> :not(.btn-check:first-child)+.btn,
4472
.wizard>.actions .btn-group> :not(.btn-check:first-child)+a,
4473
div.tox .btn-group> :not(.btn-check:first-child)+.tox-button,
4474
.swal2-popup .swal2-actions .btn-group> :not(.btn-check:first-child)+button,
4475
.fc .btn-group> :not(.btn-check:first-child)+.fc-button-primary,
4476
.btn-group>.btn-group:not(:first-child) {
16825 efrain 4477
  margin-left: -1px;
4478
}
16848 stevensc 4479
 
4480
.btn-group>.btn:not(:last-child):not(.dropdown-toggle),
4481
.wizard>.actions .btn-group>a:not(:last-child):not(.dropdown-toggle),
4482
div.tox .btn-group>.tox-button:not(:last-child):not(.dropdown-toggle),
4483
.swal2-popup .swal2-actions .btn-group>button:not(:last-child):not(.dropdown-toggle),
4484
.fc .btn-group>.fc-button-primary:not(:last-child):not(.dropdown-toggle),
4485
.btn-group>.btn.dropdown-toggle-split:first-child,
4486
.wizard>.actions .btn-group>a.dropdown-toggle-split:first-child,
4487
div.tox .btn-group>.dropdown-toggle-split.tox-button:first-child,
4488
.swal2-popup .swal2-actions .btn-group>button.dropdown-toggle-split:first-child,
4489
.fc .btn-group>.dropdown-toggle-split.fc-button-primary:first-child,
4490
.btn-group>.btn-group:not(:last-child)>.btn,
4491
.wizard>.actions .btn-group>.btn-group:not(:last-child)>a,
4492
div.tox .btn-group>.btn-group:not(:last-child)>.tox-button,
4493
.swal2-popup .swal2-actions .btn-group>.btn-group:not(:last-child)>button,
4494
.fc .btn-group>.btn-group:not(:last-child)>.fc-button-primary {
16825 efrain 4495
  border-top-right-radius: 0;
4496
  border-bottom-right-radius: 0;
4497
}
16848 stevensc 4498
 
4499
.btn-group>.btn:nth-child(n+3),
4500
.wizard>.actions .btn-group>a:nth-child(n+3),
4501
div.tox .btn-group>.tox-button:nth-child(n+3),
4502
.swal2-popup .swal2-actions .btn-group>button:nth-child(n+3),
4503
.fc .btn-group>.fc-button-primary:nth-child(n+3),
4504
.btn-group> :not(.btn-check)+.btn,
4505
.wizard>.actions .btn-group> :not(.btn-check)+a,
4506
div.tox .btn-group> :not(.btn-check)+.tox-button,
4507
.swal2-popup .swal2-actions .btn-group> :not(.btn-check)+button,
4508
.fc .btn-group> :not(.btn-check)+.fc-button-primary,
4509
.btn-group>.btn-group:not(:first-child)>.btn,
4510
.wizard>.actions .btn-group>.btn-group:not(:first-child)>a,
4511
div.tox .btn-group>.btn-group:not(:first-child)>.tox-button,
4512
.swal2-popup .swal2-actions .btn-group>.btn-group:not(:first-child)>button,
4513
.fc .btn-group>.btn-group:not(:first-child)>.fc-button-primary {
16825 efrain 4514
  border-top-left-radius: 0;
4515
  border-bottom-left-radius: 0;
4516
}
4517
 
4518
.dropdown-toggle-split {
4519
  padding-right: 0.6rem;
4520
  padding-left: 0.6rem;
4521
}
16848 stevensc 4522
 
4523
.dropdown-toggle-split::after,
4524
.dropup .dropdown-toggle-split::after,
4525
.dropend .dropdown-toggle-split::after {
16825 efrain 4526
  margin-left: 0;
4527
}
16848 stevensc 4528
 
16825 efrain 4529
.dropstart .dropdown-toggle-split::before {
4530
  margin-right: 0;
4531
}
4532
 
16848 stevensc 4533
.btn-sm+.dropdown-toggle-split,
4534
.fc .fc-button-primary+.dropdown-toggle-split,
4535
.btn-group-sm>.btn+.dropdown-toggle-split,
4536
.wizard>.actions .btn-group-sm>a+.dropdown-toggle-split,
4537
div.tox .btn-group-sm>.tox-button+.dropdown-toggle-split,
4538
.swal2-popup .swal2-actions .btn-group-sm>button+.dropdown-toggle-split {
16825 efrain 4539
  padding-right: 0.6rem;
4540
  padding-left: 0.6rem;
4541
}
4542
 
16848 stevensc 4543
.btn-lg+.dropdown-toggle-split,
4544
.btn-group-lg>.btn+.dropdown-toggle-split,
4545
.wizard>.actions .btn-group-lg>a+.dropdown-toggle-split,
4546
div.tox .btn-group-lg>.tox-button+.dropdown-toggle-split,
4547
.swal2-popup .swal2-actions .btn-group-lg>button+.dropdown-toggle-split,
4548
.fc .btn-group-lg>.fc-button-primary+.dropdown-toggle-split {
16825 efrain 4549
  padding-right: 0.6rem;
4550
  padding-left: 0.6rem;
4551
}
4552
 
4553
.btn-group-vertical {
4554
  flex-direction: column;
4555
  align-items: flex-start;
4556
  justify-content: center;
4557
}
16848 stevensc 4558
 
4559
.btn-group-vertical>.btn,
4560
.wizard>.actions .btn-group-vertical>a,
4561
div.tox .btn-group-vertical>.tox-button,
4562
.swal2-popup .swal2-actions .btn-group-vertical>button,
4563
.fc .btn-group-vertical>.fc-button-primary,
4564
.btn-group-vertical>.btn-group {
16825 efrain 4565
  width: 100%;
4566
}
16848 stevensc 4567
 
4568
.btn-group-vertical>.btn:not(:first-child),
4569
.wizard>.actions .btn-group-vertical>a:not(:first-child),
4570
div.tox .btn-group-vertical>.tox-button:not(:first-child),
4571
.swal2-popup .swal2-actions .btn-group-vertical>button:not(:first-child),
4572
.fc .btn-group-vertical>.fc-button-primary:not(:first-child),
4573
.btn-group-vertical>.btn-group:not(:first-child) {
16825 efrain 4574
  margin-top: -1px;
4575
}
16848 stevensc 4576
 
4577
.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),
4578
.wizard>.actions .btn-group-vertical>a:not(:last-child):not(.dropdown-toggle),
4579
div.tox .btn-group-vertical>.tox-button:not(:last-child):not(.dropdown-toggle),
4580
.swal2-popup .swal2-actions .btn-group-vertical>button:not(:last-child):not(.dropdown-toggle),
4581
.fc .btn-group-vertical>.fc-button-primary:not(:last-child):not(.dropdown-toggle),
4582
.btn-group-vertical>.btn-group:not(:last-child)>.btn,
4583
.wizard>.actions .btn-group-vertical>.btn-group:not(:last-child)>a,
4584
div.tox .btn-group-vertical>.btn-group:not(:last-child)>.tox-button,
4585
.swal2-popup .swal2-actions .btn-group-vertical>.btn-group:not(:last-child)>button,
4586
.fc .btn-group-vertical>.btn-group:not(:last-child)>.fc-button-primary {
16825 efrain 4587
  border-bottom-right-radius: 0;
4588
  border-bottom-left-radius: 0;
4589
}
16848 stevensc 4590
 
4591
.btn-group-vertical>.btn~.btn,
4592
.wizard>.actions .btn-group-vertical>a~.btn,
4593
.wizard>.actions .btn-group-vertical>.btn~a,
4594
.wizard>.actions .btn-group-vertical>a~a,
4595
div.tox .btn-group-vertical>.tox-button~.btn,
4596
div.tox .wizard>.actions .btn-group-vertical>.tox-button~a,
4597
.wizard>.actions div.tox .btn-group-vertical>.tox-button~a,
4598
div.tox .btn-group-vertical>.btn~.tox-button,
4599
div.tox .wizard>.actions .btn-group-vertical>a~.tox-button,
4600
.wizard>.actions div.tox .btn-group-vertical>a~.tox-button,
4601
div.tox .btn-group-vertical>.tox-button~.tox-button,
4602
.swal2-popup .swal2-actions .btn-group-vertical>button~.btn,
4603
.swal2-popup .swal2-actions .wizard>.actions .btn-group-vertical>button~a,
4604
.wizard>.actions .swal2-popup .swal2-actions .btn-group-vertical>button~a,
4605
.swal2-popup .swal2-actions div.tox .btn-group-vertical>button~.tox-button,
4606
div.tox .swal2-popup .swal2-actions .btn-group-vertical>button~.tox-button,
4607
.swal2-popup .swal2-actions .btn-group-vertical>.btn~button,
4608
.swal2-popup .swal2-actions .wizard>.actions .btn-group-vertical>a~button,
4609
.wizard>.actions .swal2-popup .swal2-actions .btn-group-vertical>a~button,
4610
.swal2-popup .swal2-actions div.tox .btn-group-vertical>.tox-button~button,
4611
div.tox .swal2-popup .swal2-actions .btn-group-vertical>.tox-button~button,
4612
.swal2-popup .swal2-actions .btn-group-vertical>button~button,
4613
.fc .btn-group-vertical>.fc-button-primary~.btn,
4614
.fc .wizard>.actions .btn-group-vertical>.fc-button-primary~a,
4615
.wizard>.actions .fc .btn-group-vertical>.fc-button-primary~a,
4616
.fc div.tox .btn-group-vertical>.fc-button-primary~.tox-button,
4617
div.tox .fc .btn-group-vertical>.fc-button-primary~.tox-button,
4618
.fc .swal2-popup .swal2-actions .btn-group-vertical>.fc-button-primary~button,
4619
.swal2-popup .swal2-actions .fc .btn-group-vertical>.fc-button-primary~button,
4620
.fc .btn-group-vertical>.btn~.fc-button-primary,
4621
.fc .wizard>.actions .btn-group-vertical>a~.fc-button-primary,
4622
.wizard>.actions .fc .btn-group-vertical>a~.fc-button-primary,
4623
.fc div.tox .btn-group-vertical>.tox-button~.fc-button-primary,
4624
div.tox .fc .btn-group-vertical>.tox-button~.fc-button-primary,
4625
.fc .swal2-popup .swal2-actions .btn-group-vertical>button~.fc-button-primary,
4626
.swal2-popup .swal2-actions .fc .btn-group-vertical>button~.fc-button-primary,
4627
.fc .btn-group-vertical>.fc-button-primary~.fc-button-primary,
4628
.btn-group-vertical>.btn-group:not(:first-child)>.btn,
4629
.wizard>.actions .btn-group-vertical>.btn-group:not(:first-child)>a,
4630
div.tox .btn-group-vertical>.btn-group:not(:first-child)>.tox-button,
4631
.swal2-popup .swal2-actions .btn-group-vertical>.btn-group:not(:first-child)>button,
4632
.fc .btn-group-vertical>.btn-group:not(:first-child)>.fc-button-primary {
16825 efrain 4633
  border-top-left-radius: 0;
4634
  border-top-right-radius: 0;
4635
}
4636
 
4637
.nav {
4638
  --bs-nav-link-padding-x: 1rem;
4639
  --bs-nav-link-padding-y: 0.5rem;
4640
  --bs-nav-link-font-weight: ;
4641
  --bs-nav-link-color: var(--bs-link-color);
4642
  --bs-nav-link-hover-color: var(--bs-link-hover-color);
4643
  --bs-nav-link-disabled-color: #7987a1;
4644
  display: flex;
4645
  flex-wrap: wrap;
4646
  padding-left: 0;
4647
  margin-bottom: 0;
4648
  list-style: none;
4649
}
4650
 
4651
.nav-link {
4652
  display: block;
4653
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
4654
  font-size: var(--bs-nav-link-font-size);
4655
  font-weight: var(--bs-nav-link-font-weight);
4656
  color: var(--bs-nav-link-color);
4657
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
4658
}
16848 stevensc 4659
 
16825 efrain 4660
@media (prefers-reduced-motion: reduce) {
4661
  .nav-link {
4662
    transition: none;
4663
  }
4664
}
16848 stevensc 4665
 
4666
.nav-link:hover,
4667
.nav-link:focus {
16825 efrain 4668
  color: var(--bs-nav-link-hover-color);
4669
}
16848 stevensc 4670
 
16825 efrain 4671
.nav-link.disabled {
4672
  color: var(--bs-nav-link-disabled-color);
4673
  pointer-events: none;
4674
  cursor: default;
4675
}
4676
 
4677
.nav-tabs {
4678
  --bs-nav-tabs-border-width: 1px;
4679
  --bs-nav-tabs-border-color: #dee2e6;
4680
  --bs-nav-tabs-border-radius: 0.25rem;
4681
  --bs-nav-tabs-link-hover-border-color: #e9ecef #e9ecef #dee2e6;
4682
  --bs-nav-tabs-link-active-color: #41516c;
4683
  --bs-nav-tabs-link-active-bg: #fff;
4684
  --bs-nav-tabs-link-active-border-color: #dee2e6 #dee2e6 #fff;
4685
  border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
4686
}
16848 stevensc 4687
 
16825 efrain 4688
.nav-tabs .nav-link {
4689
  margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
4690
  background: none;
4691
  border: var(--bs-nav-tabs-border-width) solid transparent;
4692
  border-top-left-radius: var(--bs-nav-tabs-border-radius);
4693
  border-top-right-radius: var(--bs-nav-tabs-border-radius);
4694
}
16848 stevensc 4695
 
4696
.nav-tabs .nav-link:hover,
4697
.nav-tabs .nav-link:focus {
16825 efrain 4698
  isolation: isolate;
4699
  border-color: var(--bs-nav-tabs-link-hover-border-color);
4700
}
16848 stevensc 4701
 
4702
.nav-tabs .nav-link.disabled,
4703
.nav-tabs .nav-link:disabled {
16825 efrain 4704
  color: var(--bs-nav-link-disabled-color);
4705
  background-color: transparent;
4706
  border-color: transparent;
4707
}
16848 stevensc 4708
 
16825 efrain 4709
.nav-tabs .nav-link.active,
4710
.nav-tabs .nav-item.show .nav-link {
4711
  color: var(--bs-nav-tabs-link-active-color);
4712
  background-color: var(--bs-nav-tabs-link-active-bg);
4713
  border-color: var(--bs-nav-tabs-link-active-border-color);
4714
}
16848 stevensc 4715
 
4716
.nav-tabs .dropdown-menu,
4717
.nav-tabs .tt-menu {
16825 efrain 4718
  margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
4719
  border-top-left-radius: 0;
4720
  border-top-right-radius: 0;
4721
}
4722
 
4723
.nav-pills {
4724
  --bs-nav-pills-border-radius: 0.25rem;
4725
  --bs-nav-pills-link-active-color: #fff;
4726
  --bs-nav-pills-link-active-bg: #6571ff;
4727
}
16848 stevensc 4728
 
16825 efrain 4729
.nav-pills .nav-link {
4730
  background: none;
4731
  border: 0;
4732
  border-radius: var(--bs-nav-pills-border-radius);
4733
}
16848 stevensc 4734
 
16825 efrain 4735
.nav-pills .nav-link:disabled {
4736
  color: var(--bs-nav-link-disabled-color);
4737
  background-color: transparent;
4738
  border-color: transparent;
4739
}
16848 stevensc 4740
 
16825 efrain 4741
.nav-pills .nav-link.active,
16848 stevensc 4742
.nav-pills .show>.nav-link {
16825 efrain 4743
  color: var(--bs-nav-pills-link-active-color);
4744
  background-color: var(--bs-nav-pills-link-active-bg);
4745
}
4746
 
16848 stevensc 4747
.nav-fill>.nav-link,
16825 efrain 4748
.nav-fill .nav-item {
4749
  flex: 1 1 auto;
4750
  text-align: center;
4751
}
4752
 
16848 stevensc 4753
.nav-justified>.nav-link,
16825 efrain 4754
.nav-justified .nav-item {
4755
  flex-basis: 0;
4756
  flex-grow: 1;
4757
  text-align: center;
4758
}
4759
 
4760
.nav-fill .nav-item .nav-link,
4761
.nav-justified .nav-item .nav-link {
4762
  width: 100%;
4763
}
4764
 
16848 stevensc 4765
.tab-content>.tab-pane {
16825 efrain 4766
  display: none;
4767
}
16848 stevensc 4768
 
4769
.tab-content>.active {
16825 efrain 4770
  display: block;
4771
}
4772
 
4773
.navbar {
4774
  --bs-navbar-padding-x: 0;
4775
  --bs-navbar-padding-y: 0.5rem;
4776
  --bs-navbar-color: rgba(0, 0, 0, 0.55);
4777
  --bs-navbar-hover-color: rgba(0, 0, 0, 0.7);
4778
  --bs-navbar-disabled-color: rgba(0, 0, 0, 0.3);
4779
  --bs-navbar-active-color: rgba(0, 0, 0, 0.9);
4780
  --bs-navbar-brand-padding-y: 0.40625rem;
4781
  --bs-navbar-brand-margin-end: 1rem;
4782
  --bs-navbar-brand-font-size: 1rem;
4783
  --bs-navbar-brand-color: rgba(0, 0, 0, 0.9);
4784
  --bs-navbar-brand-hover-color: rgba(0, 0, 0, 0.9);
4785
  --bs-navbar-nav-link-padding-x: 0.5rem;
4786
  --bs-navbar-toggler-padding-y: 0.25rem;
4787
  --bs-navbar-toggler-padding-x: 0.75rem;
4788
  --bs-navbar-toggler-font-size: 1rem;
4789
  --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");
4790
  --bs-navbar-toggler-border-color: rgba(0, 0, 0, 0.1);
4791
  --bs-navbar-toggler-border-radius: 0.25rem;
4792
  --bs-navbar-toggler-focus-width: 0;
4793
  --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
4794
  position: relative;
4795
  display: flex;
4796
  flex-wrap: wrap;
4797
  align-items: center;
4798
  justify-content: space-between;
4799
  padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
4800
}
16848 stevensc 4801
 
4802
.navbar>.container,
4803
.navbar>.container-fluid,
4804
.navbar>.container-sm,
4805
.navbar>.container-md,
4806
.navbar>.container-lg,
4807
.navbar>.container-xl,
4808
.navbar>.container-xxl {
16825 efrain 4809
  display: flex;
4810
  flex-wrap: inherit;
4811
  align-items: center;
4812
  justify-content: space-between;
4813
}
16848 stevensc 4814
 
16825 efrain 4815
.navbar-brand {
4816
  padding-top: var(--bs-navbar-brand-padding-y);
4817
  padding-bottom: var(--bs-navbar-brand-padding-y);
4818
  margin-right: var(--bs-navbar-brand-margin-end);
4819
  font-size: var(--bs-navbar-brand-font-size);
4820
  color: var(--bs-navbar-brand-color);
4821
  white-space: nowrap;
4822
}
16848 stevensc 4823
 
4824
.navbar-brand:hover,
4825
.navbar-brand:focus {
16825 efrain 4826
  color: var(--bs-navbar-brand-hover-color);
4827
}
4828
 
4829
.navbar-nav {
4830
  --bs-nav-link-padding-x: 0;
4831
  --bs-nav-link-padding-y: 0.5rem;
4832
  --bs-nav-link-font-weight: ;
4833
  --bs-nav-link-color: var(--bs-navbar-color);
4834
  --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
4835
  --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
4836
  display: flex;
4837
  flex-direction: column;
4838
  padding-left: 0;
4839
  margin-bottom: 0;
4840
  list-style: none;
4841
}
16848 stevensc 4842
 
4843
.navbar-nav .show>.nav-link,
16825 efrain 4844
.navbar-nav .nav-link.active {
4845
  color: var(--bs-navbar-active-color);
4846
}
16848 stevensc 4847
 
4848
.navbar-nav .dropdown-menu,
4849
.navbar-nav .tt-menu {
16825 efrain 4850
  position: static;
4851
}
4852
 
4853
.navbar-text {
4854
  padding-top: 0.5rem;
4855
  padding-bottom: 0.5rem;
4856
  color: var(--bs-navbar-color);
4857
}
16848 stevensc 4858
 
16825 efrain 4859
.navbar-text a,
4860
.navbar-text a:hover,
4861
.navbar-text a:focus {
4862
  color: var(--bs-navbar-active-color);
4863
}
4864
 
4865
.navbar-collapse {
4866
  flex-basis: 100%;
4867
  flex-grow: 1;
4868
  align-items: center;
4869
}
4870
 
4871
.navbar-toggler {
4872
  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
4873
  font-size: var(--bs-navbar-toggler-font-size);
4874
  line-height: 1;
4875
  color: var(--bs-navbar-color);
4876
  background-color: transparent;
4877
  border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
4878
  border-radius: var(--bs-navbar-toggler-border-radius);
4879
  transition: var(--bs-navbar-toggler-transition);
4880
}
16848 stevensc 4881
 
16825 efrain 4882
@media (prefers-reduced-motion: reduce) {
4883
  .navbar-toggler {
4884
    transition: none;
4885
  }
4886
}
16848 stevensc 4887
 
16825 efrain 4888
.navbar-toggler:hover {
4889
  text-decoration: none;
4890
}
16848 stevensc 4891
 
16825 efrain 4892
.navbar-toggler:focus {
4893
  text-decoration: none;
4894
  outline: 0;
4895
  box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
4896
}
4897
 
4898
.navbar-toggler-icon {
4899
  display: inline-block;
4900
  width: 1.5em;
4901
  height: 1.5em;
4902
  vertical-align: middle;
4903
  background-image: var(--bs-navbar-toggler-icon-bg);
4904
  background-repeat: no-repeat;
4905
  background-position: center;
4906
  background-size: 100%;
4907
}
4908
 
4909
.navbar-nav-scroll {
4910
  max-height: var(--bs-scroll-height, 75vh);
4911
  overflow-y: auto;
4912
}
4913
 
4914
@media (min-width: 576px) {
4915
  .navbar-expand-sm {
4916
    flex-wrap: nowrap;
4917
    justify-content: flex-start;
4918
  }
16848 stevensc 4919
 
16825 efrain 4920
  .navbar-expand-sm .navbar-nav {
4921
    flex-direction: row;
4922
  }
16848 stevensc 4923
 
4924
  .navbar-expand-sm .navbar-nav .dropdown-menu,
4925
  .navbar-expand-sm .navbar-nav .tt-menu {
16825 efrain 4926
    position: absolute;
4927
  }
16848 stevensc 4928
 
16825 efrain 4929
  .navbar-expand-sm .navbar-nav .nav-link {
4930
    padding-right: var(--bs-navbar-nav-link-padding-x);
4931
    padding-left: var(--bs-navbar-nav-link-padding-x);
4932
  }
16848 stevensc 4933
 
16825 efrain 4934
  .navbar-expand-sm .navbar-nav-scroll {
4935
    overflow: visible;
4936
  }
16848 stevensc 4937
 
16825 efrain 4938
  .navbar-expand-sm .navbar-collapse {
4939
    display: flex !important;
4940
    flex-basis: auto;
4941
  }
16848 stevensc 4942
 
16825 efrain 4943
  .navbar-expand-sm .navbar-toggler {
4944
    display: none;
4945
  }
16848 stevensc 4946
 
16825 efrain 4947
  .navbar-expand-sm .offcanvas {
4948
    position: static;
4949
    z-index: auto;
4950
    flex-grow: 1;
4951
    width: auto !important;
4952
    height: auto !important;
4953
    visibility: visible !important;
4954
    background-color: transparent !important;
4955
    border: 0 !important;
4956
    transform: none !important;
4957
    transition: none;
4958
  }
16848 stevensc 4959
 
16825 efrain 4960
  .navbar-expand-sm .offcanvas .offcanvas-header {
4961
    display: none;
4962
  }
16848 stevensc 4963
 
16825 efrain 4964
  .navbar-expand-sm .offcanvas .offcanvas-body {
4965
    display: flex;
4966
    flex-grow: 0;
4967
    padding: 0;
4968
    overflow-y: visible;
4969
  }
4970
}
16848 stevensc 4971
 
16825 efrain 4972
@media (min-width: 768px) {
4973
  .navbar-expand-md {
4974
    flex-wrap: nowrap;
4975
    justify-content: flex-start;
4976
  }
16848 stevensc 4977
 
16825 efrain 4978
  .navbar-expand-md .navbar-nav {
4979
    flex-direction: row;
4980
  }
16848 stevensc 4981
 
4982
  .navbar-expand-md .navbar-nav .dropdown-menu,
4983
  .navbar-expand-md .navbar-nav .tt-menu {
16825 efrain 4984
    position: absolute;
4985
  }
16848 stevensc 4986
 
16825 efrain 4987
  .navbar-expand-md .navbar-nav .nav-link {
4988
    padding-right: var(--bs-navbar-nav-link-padding-x);
4989
    padding-left: var(--bs-navbar-nav-link-padding-x);
4990
  }
16848 stevensc 4991
 
16825 efrain 4992
  .navbar-expand-md .navbar-nav-scroll {
4993
    overflow: visible;
4994
  }
16848 stevensc 4995
 
16825 efrain 4996
  .navbar-expand-md .navbar-collapse {
4997
    display: flex !important;
4998
    flex-basis: auto;
4999
  }
16848 stevensc 5000
 
16825 efrain 5001
  .navbar-expand-md .navbar-toggler {
5002
    display: none;
5003
  }
16848 stevensc 5004
 
16825 efrain 5005
  .navbar-expand-md .offcanvas {
5006
    position: static;
5007
    z-index: auto;
5008
    flex-grow: 1;
5009
    width: auto !important;
5010
    height: auto !important;
5011
    visibility: visible !important;
5012
    background-color: transparent !important;
5013
    border: 0 !important;
5014
    transform: none !important;
5015
    transition: none;
5016
  }
16848 stevensc 5017
 
16825 efrain 5018
  .navbar-expand-md .offcanvas .offcanvas-header {
5019
    display: none;
5020
  }
16848 stevensc 5021
 
16825 efrain 5022
  .navbar-expand-md .offcanvas .offcanvas-body {
5023
    display: flex;
5024
    flex-grow: 0;
5025
    padding: 0;
5026
    overflow-y: visible;
5027
  }
5028
}
16848 stevensc 5029
 
16825 efrain 5030
@media (min-width: 992px) {
5031
  .navbar-expand-lg {
5032
    flex-wrap: nowrap;
5033
    justify-content: flex-start;
5034
  }
16848 stevensc 5035
 
16825 efrain 5036
  .navbar-expand-lg .navbar-nav {
5037
    flex-direction: row;
5038
  }
16848 stevensc 5039
 
5040
  .navbar-expand-lg .navbar-nav .dropdown-menu,
5041
  .navbar-expand-lg .navbar-nav .tt-menu {
16825 efrain 5042
    position: absolute;
5043
  }
16848 stevensc 5044
 
16825 efrain 5045
  .navbar-expand-lg .navbar-nav .nav-link {
5046
    padding-right: var(--bs-navbar-nav-link-padding-x);
5047
    padding-left: var(--bs-navbar-nav-link-padding-x);
5048
  }
16848 stevensc 5049
 
16825 efrain 5050
  .navbar-expand-lg .navbar-nav-scroll {
5051
    overflow: visible;
5052
  }
16848 stevensc 5053
 
16825 efrain 5054
  .navbar-expand-lg .navbar-collapse {
5055
    display: flex !important;
5056
    flex-basis: auto;
5057
  }
16848 stevensc 5058
 
16825 efrain 5059
  .navbar-expand-lg .navbar-toggler {
5060
    display: none;
5061
  }
16848 stevensc 5062
 
16825 efrain 5063
  .navbar-expand-lg .offcanvas {
5064
    position: static;
5065
    z-index: auto;
5066
    flex-grow: 1;
5067
    width: auto !important;
5068
    height: auto !important;
5069
    visibility: visible !important;
5070
    background-color: transparent !important;
5071
    border: 0 !important;
5072
    transform: none !important;
5073
    transition: none;
5074
  }
16848 stevensc 5075
 
16825 efrain 5076
  .navbar-expand-lg .offcanvas .offcanvas-header {
5077
    display: none;
5078
  }
16848 stevensc 5079
 
16825 efrain 5080
  .navbar-expand-lg .offcanvas .offcanvas-body {
5081
    display: flex;
5082
    flex-grow: 0;
5083
    padding: 0;
5084
    overflow-y: visible;
5085
  }
5086
}
16848 stevensc 5087
 
16825 efrain 5088
@media (min-width: 1200px) {
5089
  .navbar-expand-xl {
5090
    flex-wrap: nowrap;
5091
    justify-content: flex-start;
5092
  }
16848 stevensc 5093
 
16825 efrain 5094
  .navbar-expand-xl .navbar-nav {
5095
    flex-direction: row;
5096
  }
16848 stevensc 5097
 
5098
  .navbar-expand-xl .navbar-nav .dropdown-menu,
5099
  .navbar-expand-xl .navbar-nav .tt-menu {
16825 efrain 5100
    position: absolute;
5101
  }
16848 stevensc 5102
 
16825 efrain 5103
  .navbar-expand-xl .navbar-nav .nav-link {
5104
    padding-right: var(--bs-navbar-nav-link-padding-x);
5105
    padding-left: var(--bs-navbar-nav-link-padding-x);
5106
  }
16848 stevensc 5107
 
16825 efrain 5108
  .navbar-expand-xl .navbar-nav-scroll {
5109
    overflow: visible;
5110
  }
16848 stevensc 5111
 
16825 efrain 5112
  .navbar-expand-xl .navbar-collapse {
5113
    display: flex !important;
5114
    flex-basis: auto;
5115
  }
16848 stevensc 5116
 
16825 efrain 5117
  .navbar-expand-xl .navbar-toggler {
5118
    display: none;
5119
  }
16848 stevensc 5120
 
16825 efrain 5121
  .navbar-expand-xl .offcanvas {
5122
    position: static;
5123
    z-index: auto;
5124
    flex-grow: 1;
5125
    width: auto !important;
5126
    height: auto !important;
5127
    visibility: visible !important;
5128
    background-color: transparent !important;
5129
    border: 0 !important;
5130
    transform: none !important;
5131
    transition: none;
5132
  }
16848 stevensc 5133
 
16825 efrain 5134
  .navbar-expand-xl .offcanvas .offcanvas-header {
5135
    display: none;
5136
  }
16848 stevensc 5137
 
16825 efrain 5138
  .navbar-expand-xl .offcanvas .offcanvas-body {
5139
    display: flex;
5140
    flex-grow: 0;
5141
    padding: 0;
5142
    overflow-y: visible;
5143
  }
5144
}
16848 stevensc 5145
 
16825 efrain 5146
@media (min-width: 1400px) {
5147
  .navbar-expand-xxl {
5148
    flex-wrap: nowrap;
5149
    justify-content: flex-start;
5150
  }
16848 stevensc 5151
 
16825 efrain 5152
  .navbar-expand-xxl .navbar-nav {
5153
    flex-direction: row;
5154
  }
16848 stevensc 5155
 
5156
  .navbar-expand-xxl .navbar-nav .dropdown-menu,
5157
  .navbar-expand-xxl .navbar-nav .tt-menu {
16825 efrain 5158
    position: absolute;
5159
  }
16848 stevensc 5160
 
16825 efrain 5161
  .navbar-expand-xxl .navbar-nav .nav-link {
5162
    padding-right: var(--bs-navbar-nav-link-padding-x);
5163
    padding-left: var(--bs-navbar-nav-link-padding-x);
5164
  }
16848 stevensc 5165
 
16825 efrain 5166
  .navbar-expand-xxl .navbar-nav-scroll {
5167
    overflow: visible;
5168
  }
16848 stevensc 5169
 
16825 efrain 5170
  .navbar-expand-xxl .navbar-collapse {
5171
    display: flex !important;
5172
    flex-basis: auto;
5173
  }
16848 stevensc 5174
 
16825 efrain 5175
  .navbar-expand-xxl .navbar-toggler {
5176
    display: none;
5177
  }
16848 stevensc 5178
 
16825 efrain 5179
  .navbar-expand-xxl .offcanvas {
5180
    position: static;
5181
    z-index: auto;
5182
    flex-grow: 1;
5183
    width: auto !important;
5184
    height: auto !important;
5185
    visibility: visible !important;
5186
    background-color: transparent !important;
5187
    border: 0 !important;
5188
    transform: none !important;
5189
    transition: none;
5190
  }
16848 stevensc 5191
 
16825 efrain 5192
  .navbar-expand-xxl .offcanvas .offcanvas-header {
5193
    display: none;
5194
  }
16848 stevensc 5195
 
16825 efrain 5196
  .navbar-expand-xxl .offcanvas .offcanvas-body {
5197
    display: flex;
5198
    flex-grow: 0;
5199
    padding: 0;
5200
    overflow-y: visible;
5201
  }
5202
}
16848 stevensc 5203
 
16825 efrain 5204
.navbar-expand {
5205
  flex-wrap: nowrap;
5206
  justify-content: flex-start;
5207
}
16848 stevensc 5208
 
16825 efrain 5209
.navbar-expand .navbar-nav {
5210
  flex-direction: row;
5211
}
16848 stevensc 5212
 
5213
.navbar-expand .navbar-nav .dropdown-menu,
5214
.navbar-expand .navbar-nav .tt-menu {
16825 efrain 5215
  position: absolute;
5216
}
16848 stevensc 5217
 
16825 efrain 5218
.navbar-expand .navbar-nav .nav-link {
5219
  padding-right: var(--bs-navbar-nav-link-padding-x);
5220
  padding-left: var(--bs-navbar-nav-link-padding-x);
5221
}
16848 stevensc 5222
 
16825 efrain 5223
.navbar-expand .navbar-nav-scroll {
5224
  overflow: visible;
5225
}
16848 stevensc 5226
 
16825 efrain 5227
.navbar-expand .navbar-collapse {
5228
  display: flex !important;
5229
  flex-basis: auto;
5230
}
16848 stevensc 5231
 
16825 efrain 5232
.navbar-expand .navbar-toggler {
5233
  display: none;
5234
}
16848 stevensc 5235
 
16825 efrain 5236
.navbar-expand .offcanvas {
5237
  position: static;
5238
  z-index: auto;
5239
  flex-grow: 1;
5240
  width: auto !important;
5241
  height: auto !important;
5242
  visibility: visible !important;
5243
  background-color: transparent !important;
5244
  border: 0 !important;
5245
  transform: none !important;
5246
  transition: none;
5247
}
16848 stevensc 5248
 
16825 efrain 5249
.navbar-expand .offcanvas .offcanvas-header {
5250
  display: none;
5251
}
16848 stevensc 5252
 
16825 efrain 5253
.navbar-expand .offcanvas .offcanvas-body {
5254
  display: flex;
5255
  flex-grow: 0;
5256
  padding: 0;
5257
  overflow-y: visible;
5258
}
5259
 
5260
.navbar-dark {
5261
  --bs-navbar-color: rgba(255, 255, 255, 0.55);
5262
  --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
5263
  --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
5264
  --bs-navbar-active-color: #fff;
5265
  --bs-navbar-brand-color: #fff;
5266
  --bs-navbar-brand-hover-color: #fff;
5267
  --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
5268
  --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");
5269
}
5270
 
5271
.card {
5272
  --bs-card-spacer-y: 1.5rem;
5273
  --bs-card-spacer-x: 1.5rem;
5274
  --bs-card-title-spacer-y: 0.875rem;
5275
  --bs-card-border-width: 1px;
5276
  --bs-card-border-color: #f2f4f9;
5277
  --bs-card-border-radius: 0.25rem;
5278
  --bs-card-box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
5279
  --bs-card-inner-border-radius: calc(0.25rem - 1px);
5280
  --bs-card-cap-padding-y: 0.875rem;
5281
  --bs-card-cap-padding-x: 1.5rem;
5282
  --bs-card-cap-bg: rgba(0, 0, 0, 0.01);
5283
  --bs-card-cap-color: ;
5284
  --bs-card-height: ;
5285
  --bs-card-color: ;
5286
  --bs-card-bg: #fff;
5287
  --bs-card-img-overlay-padding: 1rem;
5288
  --bs-card-group-margin: 0.75rem;
5289
  position: relative;
5290
  display: flex;
5291
  flex-direction: column;
5292
  min-width: 0;
5293
  height: var(--bs-card-height);
5294
  word-wrap: break-word;
5295
  background-color: var(--bs-card-bg);
5296
  background-clip: border-box;
5297
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
5298
  border-radius: var(--bs-card-border-radius);
5299
}
16848 stevensc 5300
 
5301
.card>hr {
16825 efrain 5302
  margin-right: 0;
5303
  margin-left: 0;
5304
}
16848 stevensc 5305
 
5306
.card>.list-group {
16825 efrain 5307
  border-top: inherit;
5308
  border-bottom: inherit;
5309
}
16848 stevensc 5310
 
5311
.card>.list-group:first-child {
16825 efrain 5312
  border-top-width: 0;
5313
  border-top-left-radius: var(--bs-card-inner-border-radius);
5314
  border-top-right-radius: var(--bs-card-inner-border-radius);
5315
}
16848 stevensc 5316
 
5317
.card>.list-group:last-child {
16825 efrain 5318
  border-bottom-width: 0;
5319
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
5320
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
5321
}
16848 stevensc 5322
 
5323
.card>.card-header+.list-group,
5324
.card>.list-group+.card-footer {
16825 efrain 5325
  border-top: 0;
5326
}
5327
 
5328
.card-body {
5329
  flex: 1 1 auto;
5330
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
5331
  color: var(--bs-card-color);
5332
}
5333
 
5334
.card-title {
5335
  margin-bottom: var(--bs-card-title-spacer-y);
5336
}
5337
 
5338
.card-subtitle {
5339
  margin-top: calc(-0.5 * var(--bs-card-title-spacer-y));
5340
  margin-bottom: 0;
5341
}
5342
 
5343
.card-text:last-child {
5344
  margin-bottom: 0;
5345
}
5346
 
16848 stevensc 5347
.card-link+.card-link {
16825 efrain 5348
  margin-left: var(--bs-card-spacer-x);
5349
}
5350
 
5351
.card-header {
5352
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
5353
  margin-bottom: 0;
5354
  color: var(--bs-card-cap-color);
5355
  background-color: var(--bs-card-cap-bg);
5356
  border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
5357
}
16848 stevensc 5358
 
16825 efrain 5359
.card-header:first-child {
5360
  border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
5361
}
5362
 
5363
.card-footer {
5364
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
5365
  color: var(--bs-card-cap-color);
5366
  background-color: var(--bs-card-cap-bg);
5367
  border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
5368
}
16848 stevensc 5369
 
16825 efrain 5370
.card-footer:last-child {
5371
  border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
5372
}
5373
 
5374
.card-header-tabs {
5375
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
5376
  margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
5377
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
5378
  border-bottom: 0;
5379
}
16848 stevensc 5380
 
16825 efrain 5381
.card-header-tabs .nav-link.active {
5382
  background-color: var(--bs-card-bg);
5383
  border-bottom-color: var(--bs-card-bg);
5384
}
5385
 
5386
.card-header-pills {
5387
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
5388
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
5389
}
5390
 
5391
.card-img-overlay {
5392
  position: absolute;
5393
  top: 0;
5394
  right: 0;
5395
  bottom: 0;
5396
  left: 0;
5397
  padding: var(--bs-card-img-overlay-padding);
5398
  border-radius: var(--bs-card-inner-border-radius);
5399
}
5400
 
5401
.card-img,
5402
.card-img-top,
5403
.card-img-bottom {
5404
  width: 100%;
5405
}
5406
 
5407
.card-img,
5408
.card-img-top {
5409
  border-top-left-radius: var(--bs-card-inner-border-radius);
5410
  border-top-right-radius: var(--bs-card-inner-border-radius);
5411
}
5412
 
5413
.card-img,
5414
.card-img-bottom {
5415
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
5416
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
5417
}
5418
 
16848 stevensc 5419
.card-group>.card {
16825 efrain 5420
  margin-bottom: var(--bs-card-group-margin);
5421
}
16848 stevensc 5422
 
16825 efrain 5423
@media (min-width: 576px) {
5424
  .card-group {
5425
    display: flex;
5426
    flex-flow: row wrap;
5427
  }
16848 stevensc 5428
 
5429
  .card-group>.card {
16825 efrain 5430
    flex: 1 0 0%;
5431
    margin-bottom: 0;
5432
  }
16848 stevensc 5433
 
5434
  .card-group>.card+.card {
16825 efrain 5435
    margin-left: 0;
5436
    border-left: 0;
5437
  }
16848 stevensc 5438
 
5439
  .card-group>.card:not(:last-child) {
16825 efrain 5440
    border-top-right-radius: 0;
5441
    border-bottom-right-radius: 0;
5442
  }
16848 stevensc 5443
 
5444
  .card-group>.card:not(:last-child) .card-img-top,
5445
  .card-group>.card:not(:last-child) .card-header {
16825 efrain 5446
    border-top-right-radius: 0;
5447
  }
16848 stevensc 5448
 
5449
  .card-group>.card:not(:last-child) .card-img-bottom,
5450
  .card-group>.card:not(:last-child) .card-footer {
16825 efrain 5451
    border-bottom-right-radius: 0;
5452
  }
16848 stevensc 5453
 
5454
  .card-group>.card:not(:first-child) {
16825 efrain 5455
    border-top-left-radius: 0;
5456
    border-bottom-left-radius: 0;
5457
  }
16848 stevensc 5458
 
5459
  .card-group>.card:not(:first-child) .card-img-top,
5460
  .card-group>.card:not(:first-child) .card-header {
16825 efrain 5461
    border-top-left-radius: 0;
5462
  }
16848 stevensc 5463
 
5464
  .card-group>.card:not(:first-child) .card-img-bottom,
5465
  .card-group>.card:not(:first-child) .card-footer {
16825 efrain 5466
    border-bottom-left-radius: 0;
5467
  }
5468
}
5469
 
5470
.accordion {
5471
  --bs-accordion-color: #000;
5472
  --bs-accordion-bg: #fff;
5473
  --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;
5474
  --bs-accordion-border-color: #e9ecef;
5475
  --bs-accordion-border-width: 1px;
5476
  --bs-accordion-border-radius: 0.25rem;
5477
  --bs-accordion-inner-border-radius: calc(0.25rem - 1px);
5478
  --bs-accordion-btn-padding-x: 1.25rem;
5479
  --bs-accordion-btn-padding-y: 1rem;
5480
  --bs-accordion-btn-color: #000;
5481
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
5482
  --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");
5483
  --bs-accordion-btn-icon-width: 0.875rem;
5484
  --bs-accordion-btn-icon-transform: rotate(-180deg);
5485
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
5486
  --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");
5487
  --bs-accordion-btn-focus-border-color: #cbd1db;
5488
  --bs-accordion-btn-focus-box-shadow: none;
5489
  --bs-accordion-body-padding-x: 1.25rem;
5490
  --bs-accordion-body-padding-y: 1rem;
5491
  --bs-accordion-active-color: #5b66e6;
5492
  --bs-accordion-active-bg: #f0f1ff;
5493
}
5494
 
5495
.accordion-button {
5496
  position: relative;
5497
  display: flex;
5498
  align-items: center;
5499
  width: 100%;
5500
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
5501
  font-size: 0.875rem;
5502
  color: var(--bs-accordion-btn-color);
5503
  text-align: left;
5504
  background-color: var(--bs-accordion-btn-bg);
5505
  border: 0;
5506
  border-radius: 0;
5507
  overflow-anchor: none;
5508
  transition: var(--bs-accordion-transition);
5509
}
16848 stevensc 5510
 
16825 efrain 5511
@media (prefers-reduced-motion: reduce) {
5512
  .accordion-button {
5513
    transition: none;
5514
  }
5515
}
16848 stevensc 5516
 
16825 efrain 5517
.accordion-button:not(.collapsed) {
5518
  color: var(--bs-accordion-active-color);
5519
  background-color: var(--bs-accordion-active-bg);
5520
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
5521
}
16848 stevensc 5522
 
16825 efrain 5523
.accordion-button:not(.collapsed)::after {
5524
  background-image: var(--bs-accordion-btn-active-icon);
5525
  transform: var(--bs-accordion-btn-icon-transform);
5526
}
16848 stevensc 5527
 
16825 efrain 5528
.accordion-button::after {
5529
  flex-shrink: 0;
5530
  width: var(--bs-accordion-btn-icon-width);
5531
  height: var(--bs-accordion-btn-icon-width);
5532
  margin-left: auto;
5533
  content: "";
5534
  background-image: var(--bs-accordion-btn-icon);
5535
  background-repeat: no-repeat;
5536
  background-size: var(--bs-accordion-btn-icon-width);
5537
  transition: var(--bs-accordion-btn-icon-transition);
5538
}
16848 stevensc 5539
 
16825 efrain 5540
@media (prefers-reduced-motion: reduce) {
5541
  .accordion-button::after {
5542
    transition: none;
5543
  }
5544
}
16848 stevensc 5545
 
16825 efrain 5546
.accordion-button:hover {
5547
  z-index: 2;
5548
}
16848 stevensc 5549
 
16825 efrain 5550
.accordion-button:focus {
5551
  z-index: 3;
5552
  border-color: var(--bs-accordion-btn-focus-border-color);
5553
  outline: 0;
5554
  box-shadow: var(--bs-accordion-btn-focus-box-shadow);
5555
}
5556
 
5557
.accordion-header {
5558
  margin-bottom: 0;
5559
}
5560
 
5561
.accordion-item {
5562
  color: var(--bs-accordion-color);
5563
  background-color: var(--bs-accordion-bg);
5564
  border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
5565
}
16848 stevensc 5566
 
16825 efrain 5567
.accordion-item:first-of-type {
5568
  border-top-left-radius: var(--bs-accordion-border-radius);
5569
  border-top-right-radius: var(--bs-accordion-border-radius);
5570
}
16848 stevensc 5571
 
16825 efrain 5572
.accordion-item:first-of-type .accordion-button {
5573
  border-top-left-radius: var(--bs-accordion-inner-border-radius);
5574
  border-top-right-radius: var(--bs-accordion-inner-border-radius);
5575
}
16848 stevensc 5576
 
16825 efrain 5577
.accordion-item:not(:first-of-type) {
5578
  border-top: 0;
5579
}
16848 stevensc 5580
 
16825 efrain 5581
.accordion-item:last-of-type {
5582
  border-bottom-right-radius: var(--bs-accordion-border-radius);
5583
  border-bottom-left-radius: var(--bs-accordion-border-radius);
5584
}
16848 stevensc 5585
 
16825 efrain 5586
.accordion-item:last-of-type .accordion-button.collapsed {
5587
  border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
5588
  border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
5589
}
16848 stevensc 5590
 
16825 efrain 5591
.accordion-item:last-of-type .accordion-collapse {
5592
  border-bottom-right-radius: var(--bs-accordion-border-radius);
5593
  border-bottom-left-radius: var(--bs-accordion-border-radius);
5594
}
5595
 
5596
.accordion-body {
5597
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
5598
}
5599
 
5600
.accordion-flush .accordion-collapse {
5601
  border-width: 0;
5602
}
16848 stevensc 5603
 
16825 efrain 5604
.accordion-flush .accordion-item {
5605
  border-right: 0;
5606
  border-left: 0;
5607
  border-radius: 0;
5608
}
16848 stevensc 5609
 
16825 efrain 5610
.accordion-flush .accordion-item:first-child {
5611
  border-top: 0;
5612
}
16848 stevensc 5613
 
16825 efrain 5614
.accordion-flush .accordion-item:last-child {
5615
  border-bottom: 0;
5616
}
16848 stevensc 5617
 
5618
.accordion-flush .accordion-item .accordion-button,
5619
.accordion-flush .accordion-item .accordion-button.collapsed {
16825 efrain 5620
  border-radius: 0;
5621
}
5622
 
5623
.breadcrumb {
5624
  --bs-breadcrumb-padding-x: 0;
5625
  --bs-breadcrumb-padding-y: 0;
5626
  --bs-breadcrumb-margin-bottom: 1rem;
5627
  --bs-breadcrumb-bg: ;
5628
  --bs-breadcrumb-border-radius: ;
5629
  --bs-breadcrumb-divider-color: #7987a1;
5630
  --bs-breadcrumb-item-padding-x: 0.5rem;
5631
  --bs-breadcrumb-item-active-color: #7987a1;
5632
  display: flex;
5633
  flex-wrap: wrap;
5634
  padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
5635
  margin-bottom: var(--bs-breadcrumb-margin-bottom);
5636
  font-size: var(--bs-breadcrumb-font-size);
5637
  list-style: none;
5638
  background-color: var(--bs-breadcrumb-bg);
5639
  border-radius: var(--bs-breadcrumb-border-radius);
5640
}
5641
 
16848 stevensc 5642
.breadcrumb-item+.breadcrumb-item {
16825 efrain 5643
  padding-left: var(--bs-breadcrumb-item-padding-x);
5644
}
16848 stevensc 5645
 
5646
.breadcrumb-item+.breadcrumb-item::before {
16825 efrain 5647
  float: left;
5648
  padding-right: var(--bs-breadcrumb-item-padding-x);
5649
  color: var(--bs-breadcrumb-divider-color);
16848 stevensc 5650
  content: var(--bs-breadcrumb-divider, "/")
5651
    /* rtl: var(--bs-breadcrumb-divider, "/") */
5652
  ;
16825 efrain 5653
}
16848 stevensc 5654
 
16825 efrain 5655
.breadcrumb-item.active {
5656
  color: var(--bs-breadcrumb-item-active-color);
5657
}
5658
 
5659
.pagination {
5660
  --bs-pagination-padding-x: 1rem;
5661
  --bs-pagination-padding-y: 0.469rem;
5662
  --bs-pagination-font-size: 0.875rem;
5663
  --bs-pagination-color: #6571ff;
5664
  --bs-pagination-bg: #fff;
5665
  --bs-pagination-border-width: 1px;
5666
  --bs-pagination-border-color: #dee2e6;
5667
  --bs-pagination-border-radius: 0.25rem;
5668
  --bs-pagination-hover-color: var(--bs-link-hover-color);
5669
  --bs-pagination-hover-bg: #e9ecef;
5670
  --bs-pagination-hover-border-color: #dee2e6;
5671
  --bs-pagination-focus-color: var(--bs-link-hover-color);
5672
  --bs-pagination-focus-bg: #e9ecef;
5673
  --bs-pagination-focus-box-shadow: none;
5674
  --bs-pagination-active-color: #fff;
5675
  --bs-pagination-active-bg: #6571ff;
5676
  --bs-pagination-active-border-color: #6571ff;
5677
  --bs-pagination-disabled-color: #7987a1;
5678
  --bs-pagination-disabled-bg: #fff;
5679
  --bs-pagination-disabled-border-color: #dee2e6;
5680
  display: flex;
5681
  padding-left: 0;
5682
  list-style: none;
5683
}
5684
 
5685
.page-link {
5686
  position: relative;
5687
  display: block;
5688
  padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
5689
  font-size: var(--bs-pagination-font-size);
5690
  color: var(--bs-pagination-color);
5691
  background-color: var(--bs-pagination-bg);
5692
  border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
5693
  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;
5694
}
16848 stevensc 5695
 
16825 efrain 5696
@media (prefers-reduced-motion: reduce) {
5697
  .page-link {
5698
    transition: none;
5699
  }
5700
}
16848 stevensc 5701
 
16825 efrain 5702
.page-link:hover {
5703
  z-index: 2;
5704
  color: var(--bs-pagination-hover-color);
5705
  background-color: var(--bs-pagination-hover-bg);
5706
  border-color: var(--bs-pagination-hover-border-color);
5707
}
16848 stevensc 5708
 
16825 efrain 5709
.page-link:focus {
5710
  z-index: 3;
5711
  color: var(--bs-pagination-focus-color);
5712
  background-color: var(--bs-pagination-focus-bg);
5713
  outline: 0;
5714
  box-shadow: var(--bs-pagination-focus-box-shadow);
5715
}
16848 stevensc 5716
 
5717
.page-link.active,
5718
.active>.page-link {
16825 efrain 5719
  z-index: 3;
5720
  color: var(--bs-pagination-active-color);
5721
  background-color: var(--bs-pagination-active-bg);
5722
  border-color: var(--bs-pagination-active-border-color);
5723
}
16848 stevensc 5724
 
5725
.page-link.disabled,
5726
.disabled>.page-link {
16825 efrain 5727
  color: var(--bs-pagination-disabled-color);
5728
  pointer-events: none;
5729
  background-color: var(--bs-pagination-disabled-bg);
5730
  border-color: var(--bs-pagination-disabled-border-color);
5731
}
5732
 
5733
.page-item:not(:first-child) .page-link {
5734
  margin-left: -1px;
5735
}
16848 stevensc 5736
 
16825 efrain 5737
.page-item:first-child .page-link {
5738
  border-top-left-radius: var(--bs-pagination-border-radius);
5739
  border-bottom-left-radius: var(--bs-pagination-border-radius);
5740
}
16848 stevensc 5741
 
16825 efrain 5742
.page-item:last-child .page-link {
5743
  border-top-right-radius: var(--bs-pagination-border-radius);
5744
  border-bottom-right-radius: var(--bs-pagination-border-radius);
5745
}
5746
 
5747
.pagination-lg {
5748
  --bs-pagination-padding-x: 1.1rem;
5749
  --bs-pagination-padding-y: 0.5rem;
5750
  --bs-pagination-font-size: 1rem;
5751
  --bs-pagination-border-radius: 0.5rem;
5752
}
5753
 
5754
.pagination-sm {
5755
  --bs-pagination-padding-x: 0.75rem;
5756
  --bs-pagination-padding-y: 0.391rem;
5757
  --bs-pagination-font-size: 0.812rem;
5758
  --bs-pagination-border-radius: 0.25rem;
5759
}
5760
 
5761
.badge {
5762
  --bs-badge-padding-x: 0.65em;
5763
  --bs-badge-padding-y: 0.35em;
5764
  --bs-badge-font-size: 0.8em;
5765
  --bs-badge-font-weight: 500;
5766
  --bs-badge-color: #fff;
5767
  --bs-badge-border-radius: 0.25rem;
5768
  display: inline-block;
5769
  padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
5770
  font-size: var(--bs-badge-font-size);
5771
  font-weight: var(--bs-badge-font-weight);
5772
  line-height: 1;
5773
  color: var(--bs-badge-color);
5774
  text-align: center;
5775
  white-space: nowrap;
5776
  vertical-align: baseline;
5777
  border-radius: var(--bs-badge-border-radius);
5778
}
16848 stevensc 5779
 
16825 efrain 5780
.badge:empty {
5781
  display: none;
5782
}
5783
 
16848 stevensc 5784
.btn .badge,
5785
.wizard>.actions a .badge,
5786
div.tox .tox-button .badge,
5787
.swal2-popup .swal2-actions button .badge,
5788
.fc .fc-button-primary .badge {
16825 efrain 5789
  position: relative;
5790
  top: -1px;
5791
}
5792
 
5793
.alert {
5794
  --bs-alert-bg: transparent;
5795
  --bs-alert-padding-x: 1rem;
5796
  --bs-alert-padding-y: 1rem;
5797
  --bs-alert-margin-bottom: 1rem;
5798
  --bs-alert-color: inherit;
5799
  --bs-alert-border-color: transparent;
5800
  --bs-alert-border: 1px solid var(--bs-alert-border-color);
5801
  --bs-alert-border-radius: 0.25rem;
5802
  position: relative;
5803
  padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
5804
  margin-bottom: var(--bs-alert-margin-bottom);
5805
  color: var(--bs-alert-color);
5806
  background-color: var(--bs-alert-bg);
5807
  border: var(--bs-alert-border);
5808
  border-radius: var(--bs-alert-border-radius);
5809
}
5810
 
5811
.alert-heading {
5812
  color: inherit;
5813
}
5814
 
5815
.alert-link {
5816
  font-weight: 500;
5817
}
5818
 
5819
.alert-dismissible {
5820
  padding-right: 3rem;
5821
}
16848 stevensc 5822
 
16825 efrain 5823
.alert-dismissible .btn-close {
5824
  position: absolute;
5825
  top: 0;
5826
  right: 0;
5827
  z-index: 2;
5828
  padding: 1.25rem 1rem;
5829
}
5830
 
5831
.alert-primary {
5832
  --bs-alert-color: #3d4499;
5833
  --bs-alert-bg: #e0e3ff;
5834
  --bs-alert-border-color: #d1d4ff;
5835
}
16848 stevensc 5836
 
16825 efrain 5837
.alert-primary .alert-link {
5838
  color: #31367a;
5839
}
5840
 
5841
.alert-secondary {
5842
  --bs-alert-color: #495161;
5843
  --bs-alert-bg: #e4e7ec;
5844
  --bs-alert-border-color: #d7dbe3;
5845
}
16848 stevensc 5846
 
16825 efrain 5847
.alert-secondary .alert-link {
5848
  color: #3a414e;
5849
}
5850
 
5851
.alert-success {
5852
  --bs-alert-color: #03622c;
5853
  --bs-alert-bg: #cdeddb;
5854
  --bs-alert-border-color: #b4e3c9;
5855
}
16848 stevensc 5856
 
16825 efrain 5857
.alert-success .alert-link {
5858
  color: #024e23;
5859
}
5860
 
5861
.alert-info {
5862
  --bs-alert-color: #3d7d7d;
5863
  --bs-alert-bg: #e0f6f6;
5864
  --bs-alert-border-color: #d1f1f1;
5865
}
16848 stevensc 5866
 
16825 efrain 5867
.alert-info .alert-link {
5868
  color: #316464;
5869
}
5870
 
5871
.alert-warning {
5872
  --bs-alert-color: #977104;
5873
  --bs-alert-bg: #fef2cd;
5874
  --bs-alert-border-color: #feebb4;
5875
}
16848 stevensc 5876
 
16825 efrain 5877
.alert-warning .alert-link {
5878
  color: #795a03;
5879
}
5880
 
5881
.alert-danger {
5882
  --bs-alert-color: #991f3d;
5883
  --bs-alert-bg: #ffd6e0;
5884
  --bs-alert-border-color: #ffc2d1;
5885
}
16848 stevensc 5886
 
16825 efrain 5887
.alert-danger .alert-link {
5888
  color: #7a1931;
5889
}
5890
 
5891
.alert-light {
5892
  --bs-alert-color: #8c8e8f;
5893
  --bs-alert-bg: #fbfbfc;
5894
  --bs-alert-border-color: #f8f9fa;
5895
}
16848 stevensc 5896
 
16825 efrain 5897
.alert-light .alert-link {
5898
  color: #707272;
5899
}
5900
 
5901
.alert-dark {
5902
  --bs-alert-color: #04070e;
5903
  --bs-alert-bg: #cdced1;
5904
  --bs-alert-border-color: #b4b6b9;
5905
}
16848 stevensc 5906
 
16825 efrain 5907
.alert-dark .alert-link {
5908
  color: #03060b;
5909
}
5910
 
5911
@keyframes progress-bar-stripes {
5912
  0% {
5913
    background-position-x: 1rem;
5914
  }
5915
}
16848 stevensc 5916
 
16825 efrain 5917
.progress {
5918
  --bs-progress-height: 1rem;
5919
  --bs-progress-font-size: 0.65625rem;
5920
  --bs-progress-bg: #e9ecef;
5921
  --bs-progress-border-radius: 0.25rem;
5922
  --bs-progress-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
5923
  --bs-progress-bar-color: #fff;
5924
  --bs-progress-bar-bg: #6571ff;
5925
  --bs-progress-bar-transition: width 0.6s ease;
5926
  display: flex;
5927
  height: var(--bs-progress-height);
5928
  overflow: hidden;
5929
  font-size: var(--bs-progress-font-size);
5930
  background-color: var(--bs-progress-bg);
5931
  border-radius: var(--bs-progress-border-radius);
5932
}
5933
 
5934
.progress-bar {
5935
  display: flex;
5936
  flex-direction: column;
5937
  justify-content: center;
5938
  overflow: hidden;
5939
  color: var(--bs-progress-bar-color);
5940
  text-align: center;
5941
  white-space: nowrap;
5942
  background-color: var(--bs-progress-bar-bg);
5943
  transition: var(--bs-progress-bar-transition);
5944
}
16848 stevensc 5945
 
16825 efrain 5946
@media (prefers-reduced-motion: reduce) {
5947
  .progress-bar {
5948
    transition: none;
5949
  }
5950
}
5951
 
5952
.progress-bar-striped {
5953
  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);
5954
  background-size: var(--bs-progress-height) var(--bs-progress-height);
5955
}
5956
 
5957
.progress-bar-animated {
5958
  animation: 1s linear infinite progress-bar-stripes;
5959
}
16848 stevensc 5960
 
16825 efrain 5961
@media (prefers-reduced-motion: reduce) {
5962
  .progress-bar-animated {
5963
    animation: none;
5964
  }
5965
}
5966
 
5967
.list-group {
5968
  --bs-list-group-color: #060c17;
5969
  --bs-list-group-bg: #fff;
5970
  --bs-list-group-border-color: rgba(0, 0, 0, 0.125);
5971
  --bs-list-group-border-width: 1px;
5972
  --bs-list-group-border-radius: 0.25rem;
5973
  --bs-list-group-item-padding-x: 1.25rem;
5974
  --bs-list-group-item-padding-y: 0.75rem;
5975
  --bs-list-group-action-color: #41516c;
5976
  --bs-list-group-action-hover-color: #41516c;
5977
  --bs-list-group-action-hover-bg: #f8f9fa;
5978
  --bs-list-group-action-active-color: #000;
5979
  --bs-list-group-action-active-bg: #e9ecef;
5980
  --bs-list-group-disabled-color: #7987a1;
5981
  --bs-list-group-disabled-bg: #fff;
5982
  --bs-list-group-active-color: #fff;
5983
  --bs-list-group-active-bg: #6571ff;
5984
  --bs-list-group-active-border-color: #6571ff;
5985
  display: flex;
5986
  flex-direction: column;
5987
  padding-left: 0;
5988
  margin-bottom: 0;
5989
  border-radius: var(--bs-list-group-border-radius);
5990
}
5991
 
5992
.list-group-numbered {
5993
  list-style-type: none;
5994
  counter-reset: section;
5995
}
16848 stevensc 5996
 
5997
.list-group-numbered>.list-group-item::before {
16825 efrain 5998
  content: counters(section, ".") ". ";
5999
  counter-increment: section;
6000
}
6001
 
6002
.list-group-item-action {
6003
  width: 100%;
6004
  color: var(--bs-list-group-action-color);
6005
  text-align: inherit;
6006
}
16848 stevensc 6007
 
6008
.list-group-item-action:hover,
6009
.list-group-item-action:focus {
16825 efrain 6010
  z-index: 1;
6011
  color: var(--bs-list-group-action-hover-color);
6012
  text-decoration: none;
6013
  background-color: var(--bs-list-group-action-hover-bg);
6014
}
16848 stevensc 6015
 
16825 efrain 6016
.list-group-item-action:active {
6017
  color: var(--bs-list-group-action-active-color);
6018
  background-color: var(--bs-list-group-action-active-bg);
6019
}
6020
 
6021
.list-group-item {
6022
  position: relative;
6023
  display: block;
6024
  padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
6025
  color: var(--bs-list-group-color);
6026
  background-color: var(--bs-list-group-bg);
6027
  border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
6028
}
16848 stevensc 6029
 
16825 efrain 6030
.list-group-item:first-child {
6031
  border-top-left-radius: inherit;
6032
  border-top-right-radius: inherit;
6033
}
16848 stevensc 6034
 
16825 efrain 6035
.list-group-item:last-child {
6036
  border-bottom-right-radius: inherit;
6037
  border-bottom-left-radius: inherit;
6038
}
16848 stevensc 6039
 
6040
.list-group-item.disabled,
6041
.list-group-item:disabled {
16825 efrain 6042
  color: var(--bs-list-group-disabled-color);
6043
  pointer-events: none;
6044
  background-color: var(--bs-list-group-disabled-bg);
6045
}
16848 stevensc 6046
 
16825 efrain 6047
.list-group-item.active {
6048
  z-index: 2;
6049
  color: var(--bs-list-group-active-color);
6050
  background-color: var(--bs-list-group-active-bg);
6051
  border-color: var(--bs-list-group-active-border-color);
6052
}
16848 stevensc 6053
 
6054
.list-group-item+.list-group-item {
16825 efrain 6055
  border-top-width: 0;
6056
}
16848 stevensc 6057
 
6058
.list-group-item+.list-group-item.active {
16825 efrain 6059
  margin-top: calc(-1 * var(--bs-list-group-border-width));
6060
  border-top-width: var(--bs-list-group-border-width);
6061
}
6062
 
6063
.list-group-horizontal {
6064
  flex-direction: row;
6065
}
16848 stevensc 6066
 
6067
.list-group-horizontal>.list-group-item:first-child:not(:last-child) {
16825 efrain 6068
  border-bottom-left-radius: var(--bs-list-group-border-radius);
6069
  border-top-right-radius: 0;
6070
}
16848 stevensc 6071
 
6072
.list-group-horizontal>.list-group-item:last-child:not(:first-child) {
16825 efrain 6073
  border-top-right-radius: var(--bs-list-group-border-radius);
6074
  border-bottom-left-radius: 0;
6075
}
16848 stevensc 6076
 
6077
.list-group-horizontal>.list-group-item.active {
16825 efrain 6078
  margin-top: 0;
6079
}
16848 stevensc 6080
 
6081
.list-group-horizontal>.list-group-item+.list-group-item {
16825 efrain 6082
  border-top-width: var(--bs-list-group-border-width);
6083
  border-left-width: 0;
6084
}
16848 stevensc 6085
 
6086
.list-group-horizontal>.list-group-item+.list-group-item.active {
16825 efrain 6087
  margin-left: calc(-1 * var(--bs-list-group-border-width));
6088
  border-left-width: var(--bs-list-group-border-width);
6089
}
6090
 
6091
@media (min-width: 576px) {
6092
  .list-group-horizontal-sm {
6093
    flex-direction: row;
6094
  }
16848 stevensc 6095
 
6096
  .list-group-horizontal-sm>.list-group-item:first-child:not(:last-child) {
16825 efrain 6097
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6098
    border-top-right-radius: 0;
6099
  }
16848 stevensc 6100
 
6101
  .list-group-horizontal-sm>.list-group-item:last-child:not(:first-child) {
16825 efrain 6102
    border-top-right-radius: var(--bs-list-group-border-radius);
6103
    border-bottom-left-radius: 0;
6104
  }
16848 stevensc 6105
 
6106
  .list-group-horizontal-sm>.list-group-item.active {
16825 efrain 6107
    margin-top: 0;
6108
  }
16848 stevensc 6109
 
6110
  .list-group-horizontal-sm>.list-group-item+.list-group-item {
16825 efrain 6111
    border-top-width: var(--bs-list-group-border-width);
6112
    border-left-width: 0;
6113
  }
16848 stevensc 6114
 
6115
  .list-group-horizontal-sm>.list-group-item+.list-group-item.active {
16825 efrain 6116
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6117
    border-left-width: var(--bs-list-group-border-width);
6118
  }
6119
}
16848 stevensc 6120
 
16825 efrain 6121
@media (min-width: 768px) {
6122
  .list-group-horizontal-md {
6123
    flex-direction: row;
6124
  }
16848 stevensc 6125
 
6126
  .list-group-horizontal-md>.list-group-item:first-child:not(:last-child) {
16825 efrain 6127
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6128
    border-top-right-radius: 0;
6129
  }
16848 stevensc 6130
 
6131
  .list-group-horizontal-md>.list-group-item:last-child:not(:first-child) {
16825 efrain 6132
    border-top-right-radius: var(--bs-list-group-border-radius);
6133
    border-bottom-left-radius: 0;
6134
  }
16848 stevensc 6135
 
6136
  .list-group-horizontal-md>.list-group-item.active {
16825 efrain 6137
    margin-top: 0;
6138
  }
16848 stevensc 6139
 
6140
  .list-group-horizontal-md>.list-group-item+.list-group-item {
16825 efrain 6141
    border-top-width: var(--bs-list-group-border-width);
6142
    border-left-width: 0;
6143
  }
16848 stevensc 6144
 
6145
  .list-group-horizontal-md>.list-group-item+.list-group-item.active {
16825 efrain 6146
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6147
    border-left-width: var(--bs-list-group-border-width);
6148
  }
6149
}
16848 stevensc 6150
 
16825 efrain 6151
@media (min-width: 992px) {
6152
  .list-group-horizontal-lg {
6153
    flex-direction: row;
6154
  }
16848 stevensc 6155
 
6156
  .list-group-horizontal-lg>.list-group-item:first-child:not(:last-child) {
16825 efrain 6157
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6158
    border-top-right-radius: 0;
6159
  }
16848 stevensc 6160
 
6161
  .list-group-horizontal-lg>.list-group-item:last-child:not(:first-child) {
16825 efrain 6162
    border-top-right-radius: var(--bs-list-group-border-radius);
6163
    border-bottom-left-radius: 0;
6164
  }
16848 stevensc 6165
 
6166
  .list-group-horizontal-lg>.list-group-item.active {
16825 efrain 6167
    margin-top: 0;
6168
  }
16848 stevensc 6169
 
6170
  .list-group-horizontal-lg>.list-group-item+.list-group-item {
16825 efrain 6171
    border-top-width: var(--bs-list-group-border-width);
6172
    border-left-width: 0;
6173
  }
16848 stevensc 6174
 
6175
  .list-group-horizontal-lg>.list-group-item+.list-group-item.active {
16825 efrain 6176
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6177
    border-left-width: var(--bs-list-group-border-width);
6178
  }
6179
}
16848 stevensc 6180
 
16825 efrain 6181
@media (min-width: 1200px) {
6182
  .list-group-horizontal-xl {
6183
    flex-direction: row;
6184
  }
16848 stevensc 6185
 
6186
  .list-group-horizontal-xl>.list-group-item:first-child:not(:last-child) {
16825 efrain 6187
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6188
    border-top-right-radius: 0;
6189
  }
16848 stevensc 6190
 
6191
  .list-group-horizontal-xl>.list-group-item:last-child:not(:first-child) {
16825 efrain 6192
    border-top-right-radius: var(--bs-list-group-border-radius);
6193
    border-bottom-left-radius: 0;
6194
  }
16848 stevensc 6195
 
6196
  .list-group-horizontal-xl>.list-group-item.active {
16825 efrain 6197
    margin-top: 0;
6198
  }
16848 stevensc 6199
 
6200
  .list-group-horizontal-xl>.list-group-item+.list-group-item {
16825 efrain 6201
    border-top-width: var(--bs-list-group-border-width);
6202
    border-left-width: 0;
6203
  }
16848 stevensc 6204
 
6205
  .list-group-horizontal-xl>.list-group-item+.list-group-item.active {
16825 efrain 6206
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6207
    border-left-width: var(--bs-list-group-border-width);
6208
  }
6209
}
16848 stevensc 6210
 
16825 efrain 6211
@media (min-width: 1400px) {
6212
  .list-group-horizontal-xxl {
6213
    flex-direction: row;
6214
  }
16848 stevensc 6215
 
6216
  .list-group-horizontal-xxl>.list-group-item:first-child:not(:last-child) {
16825 efrain 6217
    border-bottom-left-radius: var(--bs-list-group-border-radius);
6218
    border-top-right-radius: 0;
6219
  }
16848 stevensc 6220
 
6221
  .list-group-horizontal-xxl>.list-group-item:last-child:not(:first-child) {
16825 efrain 6222
    border-top-right-radius: var(--bs-list-group-border-radius);
6223
    border-bottom-left-radius: 0;
6224
  }
16848 stevensc 6225
 
6226
  .list-group-horizontal-xxl>.list-group-item.active {
16825 efrain 6227
    margin-top: 0;
6228
  }
16848 stevensc 6229
 
6230
  .list-group-horizontal-xxl>.list-group-item+.list-group-item {
16825 efrain 6231
    border-top-width: var(--bs-list-group-border-width);
6232
    border-left-width: 0;
6233
  }
16848 stevensc 6234
 
6235
  .list-group-horizontal-xxl>.list-group-item+.list-group-item.active {
16825 efrain 6236
    margin-left: calc(-1 * var(--bs-list-group-border-width));
6237
    border-left-width: var(--bs-list-group-border-width);
6238
  }
6239
}
16848 stevensc 6240
 
16825 efrain 6241
.list-group-flush {
6242
  border-radius: 0;
6243
}
16848 stevensc 6244
 
6245
.list-group-flush>.list-group-item {
16825 efrain 6246
  border-width: 0 0 var(--bs-list-group-border-width);
6247
}
16848 stevensc 6248
 
6249
.list-group-flush>.list-group-item:last-child {
16825 efrain 6250
  border-bottom-width: 0;
6251
}
6252
 
6253
.list-group-item-primary {
6254
  color: #3d4499;
6255
  background-color: #e0e3ff;
6256
}
16848 stevensc 6257
 
6258
.list-group-item-primary.list-group-item-action:hover,
6259
.list-group-item-primary.list-group-item-action:focus {
16825 efrain 6260
  color: #3d4499;
6261
  background-color: #cacce6;
6262
}
16848 stevensc 6263
 
16825 efrain 6264
.list-group-item-primary.list-group-item-action.active {
6265
  color: #fff;
6266
  background-color: #3d4499;
6267
  border-color: #3d4499;
6268
}
6269
 
6270
.list-group-item-secondary {
6271
  color: #495161;
6272
  background-color: #e4e7ec;
6273
}
16848 stevensc 6274
 
6275
.list-group-item-secondary.list-group-item-action:hover,
6276
.list-group-item-secondary.list-group-item-action:focus {
16825 efrain 6277
  color: #495161;
6278
  background-color: #cdd0d4;
6279
}
16848 stevensc 6280
 
16825 efrain 6281
.list-group-item-secondary.list-group-item-action.active {
6282
  color: #fff;
6283
  background-color: #495161;
6284
  border-color: #495161;
6285
}
6286
 
6287
.list-group-item-success {
6288
  color: #03622c;
6289
  background-color: #cdeddb;
6290
}
16848 stevensc 6291
 
6292
.list-group-item-success.list-group-item-action:hover,
6293
.list-group-item-success.list-group-item-action:focus {
16825 efrain 6294
  color: #03622c;
6295
  background-color: #b9d5c5;
6296
}
16848 stevensc 6297
 
16825 efrain 6298
.list-group-item-success.list-group-item-action.active {
6299
  color: #fff;
6300
  background-color: #03622c;
6301
  border-color: #03622c;
6302
}
6303
 
6304
.list-group-item-info {
6305
  color: #3d7d7d;
6306
  background-color: #e0f6f6;
6307
}
16848 stevensc 6308
 
6309
.list-group-item-info.list-group-item-action:hover,
6310
.list-group-item-info.list-group-item-action:focus {
16825 efrain 6311
  color: #3d7d7d;
6312
  background-color: #cadddd;
6313
}
16848 stevensc 6314
 
16825 efrain 6315
.list-group-item-info.list-group-item-action.active {
6316
  color: #fff;
6317
  background-color: #3d7d7d;
6318
  border-color: #3d7d7d;
6319
}
6320
 
6321
.list-group-item-warning {
6322
  color: #977104;
6323
  background-color: #fef2cd;
6324
}
16848 stevensc 6325
 
6326
.list-group-item-warning.list-group-item-action:hover,
6327
.list-group-item-warning.list-group-item-action:focus {
16825 efrain 6328
  color: #977104;
6329
  background-color: #e5dab9;
6330
}
16848 stevensc 6331
 
16825 efrain 6332
.list-group-item-warning.list-group-item-action.active {
6333
  color: #fff;
6334
  background-color: #977104;
6335
  border-color: #977104;
6336
}
6337
 
6338
.list-group-item-danger {
6339
  color: #991f3d;
6340
  background-color: #ffd6e0;
6341
}
16848 stevensc 6342
 
6343
.list-group-item-danger.list-group-item-action:hover,
6344
.list-group-item-danger.list-group-item-action:focus {
16825 efrain 6345
  color: #991f3d;
6346
  background-color: #e6c1ca;
6347
}
16848 stevensc 6348
 
16825 efrain 6349
.list-group-item-danger.list-group-item-action.active {
6350
  color: #fff;
6351
  background-color: #991f3d;
6352
  border-color: #991f3d;
6353
}
6354
 
6355
.list-group-item-light {
6356
  color: #8c8e8f;
6357
  background-color: #fbfbfc;
6358
}
16848 stevensc 6359
 
6360
.list-group-item-light.list-group-item-action:hover,
6361
.list-group-item-light.list-group-item-action:focus {
16825 efrain 6362
  color: #8c8e8f;
6363
  background-color: #e2e2e3;
6364
}
16848 stevensc 6365
 
16825 efrain 6366
.list-group-item-light.list-group-item-action.active {
6367
  color: #fff;
6368
  background-color: #8c8e8f;
6369
  border-color: #8c8e8f;
6370
}
6371
 
6372
.list-group-item-dark {
6373
  color: #04070e;
6374
  background-color: #cdced1;
6375
}
16848 stevensc 6376
 
6377
.list-group-item-dark.list-group-item-action:hover,
6378
.list-group-item-dark.list-group-item-action:focus {
16825 efrain 6379
  color: #04070e;
6380
  background-color: #b9b9bc;
6381
}
16848 stevensc 6382
 
16825 efrain 6383
.list-group-item-dark.list-group-item-action.active {
6384
  color: #fff;
6385
  background-color: #04070e;
6386
  border-color: #04070e;
6387
}
6388
 
6389
.btn-close {
6390
  box-sizing: content-box;
6391
  width: 0.8em;
6392
  height: 0.8em;
6393
  padding: 0.25em 0.25em;
6394
  color: #000;
6395
  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;
6396
  border: 0;
6397
  border-radius: 0.25rem;
6398
  opacity: 0.5;
6399
}
16848 stevensc 6400
 
16825 efrain 6401
.btn-close:hover {
6402
  color: #000;
6403
  text-decoration: none;
6404
  opacity: 0.75;
6405
}
16848 stevensc 6406
 
16825 efrain 6407
.btn-close:focus {
6408
  outline: 0;
6409
  box-shadow: none;
6410
  opacity: 1;
6411
}
16848 stevensc 6412
 
6413
.btn-close:disabled,
6414
.btn-close.disabled {
16825 efrain 6415
  pointer-events: none;
6416
  user-select: none;
6417
  opacity: 0.25;
6418
}
6419
 
6420
.btn-close-white {
6421
  filter: invert(1) grayscale(100%) brightness(200%);
6422
}
6423
 
6424
.toast {
6425
  --bs-toast-zindex: 1090;
6426
  --bs-toast-padding-x: 0.75rem;
6427
  --bs-toast-padding-y: 0.5rem;
6428
  --bs-toast-spacing: 1.5rem;
6429
  --bs-toast-max-width: 350px;
6430
  --bs-toast-font-size: 0.875rem;
6431
  --bs-toast-color: ;
6432
  --bs-toast-bg: rgba(255, 255, 255, 0.85);
6433
  --bs-toast-border-width: 1px;
6434
  --bs-toast-border-color: var(--bs-border-color-translucent);
6435
  --bs-toast-border-radius: 0.25rem;
6436
  --bs-toast-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
6437
  --bs-toast-header-color: #7987a1;
6438
  --bs-toast-header-bg: rgba(255, 255, 255, 0.85);
6439
  --bs-toast-header-border-color: rgba(0, 0, 0, 0.05);
6440
  width: var(--bs-toast-max-width);
6441
  max-width: 100%;
6442
  font-size: var(--bs-toast-font-size);
6443
  color: var(--bs-toast-color);
6444
  pointer-events: auto;
6445
  background-color: var(--bs-toast-bg);
6446
  background-clip: padding-box;
6447
  border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
6448
  box-shadow: var(--bs-toast-box-shadow);
6449
  border-radius: var(--bs-toast-border-radius);
6450
}
16848 stevensc 6451
 
16825 efrain 6452
.toast.showing {
6453
  opacity: 0;
6454
}
16848 stevensc 6455
 
16825 efrain 6456
.toast:not(.show) {
6457
  display: none;
6458
}
6459
 
6460
.toast-container {
6461
  --bs-toast-zindex: 1090;
6462
  position: absolute;
6463
  z-index: var(--bs-toast-zindex);
6464
  width: max-content;
6465
  max-width: 100%;
6466
  pointer-events: none;
6467
}
16848 stevensc 6468
 
6469
.toast-container> :not(:last-child) {
16825 efrain 6470
  margin-bottom: var(--bs-toast-spacing);
6471
}
6472
 
6473
.toast-header {
6474
  display: flex;
6475
  align-items: center;
6476
  padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x);
6477
  color: var(--bs-toast-header-color);
6478
  background-color: var(--bs-toast-header-bg);
6479
  background-clip: padding-box;
6480
  border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);
6481
  border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
6482
  border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
6483
}
16848 stevensc 6484
 
16825 efrain 6485
.toast-header .btn-close {
6486
  margin-right: calc(-0.5 * var(--bs-toast-padding-x));
6487
  margin-left: var(--bs-toast-padding-x);
6488
}
6489
 
6490
.toast-body {
6491
  padding: var(--bs-toast-padding-x);
6492
  word-wrap: break-word;
6493
}
6494
 
6495
.modal {
6496
  --bs-modal-zindex: 1055;
6497
  --bs-modal-width: 500px;
6498
  --bs-modal-padding: 1rem;
6499
  --bs-modal-margin: 0.5rem;
6500
  --bs-modal-color: ;
6501
  --bs-modal-bg: #fff;
6502
  --bs-modal-border-color: #e9ecef;
6503
  --bs-modal-border-width: 1px;
6504
  --bs-modal-border-radius: 0.5rem;
6505
  --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
6506
  --bs-modal-inner-border-radius: calc(0.5rem - 1px);
6507
  --bs-modal-header-padding-x: 1rem;
6508
  --bs-modal-header-padding-y: 1rem;
6509
  --bs-modal-header-padding: 1rem 1rem;
6510
  --bs-modal-header-border-color: var(--bs-border-color);
6511
  --bs-modal-header-border-width: 1px;
6512
  --bs-modal-title-line-height: 1.5;
6513
  --bs-modal-footer-gap: 0.5rem;
6514
  --bs-modal-footer-bg: ;
6515
  --bs-modal-footer-border-color: var(--bs-border-color);
6516
  --bs-modal-footer-border-width: 1px;
6517
  position: fixed;
6518
  top: 0;
6519
  left: 0;
6520
  z-index: var(--bs-modal-zindex);
6521
  display: none;
6522
  width: 100%;
6523
  height: 100%;
6524
  overflow-x: hidden;
6525
  overflow-y: auto;
6526
  outline: 0;
6527
}
6528
 
6529
.modal-dialog {
6530
  position: relative;
6531
  width: auto;
6532
  margin: var(--bs-modal-margin);
6533
  pointer-events: none;
6534
}
16848 stevensc 6535
 
16825 efrain 6536
.modal.fade .modal-dialog {
6537
  transition: transform 0.4s ease;
6538
  transform: scale(0.8);
6539
}
16848 stevensc 6540
 
16825 efrain 6541
@media (prefers-reduced-motion: reduce) {
6542
  .modal.fade .modal-dialog {
6543
    transition: none;
6544
  }
6545
}
16848 stevensc 6546
 
16825 efrain 6547
.modal.show .modal-dialog {
6548
  transform: none;
6549
}
16848 stevensc 6550
 
16825 efrain 6551
.modal.modal-static .modal-dialog {
6552
  transform: scale(1.02);
6553
}
6554
 
6555
.modal-dialog-scrollable {
6556
  height: calc(100% - var(--bs-modal-margin) * 2);
6557
}
16848 stevensc 6558
 
16825 efrain 6559
.modal-dialog-scrollable .modal-content {
6560
  max-height: 100%;
6561
  overflow: hidden;
6562
}
16848 stevensc 6563
 
16825 efrain 6564
.modal-dialog-scrollable .modal-body {
6565
  overflow-y: auto;
6566
}
6567
 
6568
.modal-dialog-centered {
6569
  display: flex;
6570
  align-items: center;
6571
  min-height: calc(100% - var(--bs-modal-margin) * 2);
6572
}
6573
 
6574
.modal-content {
6575
  position: relative;
6576
  display: flex;
6577
  flex-direction: column;
6578
  width: 100%;
6579
  color: var(--bs-modal-color);
6580
  pointer-events: auto;
6581
  background-color: var(--bs-modal-bg);
6582
  background-clip: padding-box;
6583
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
6584
  border-radius: var(--bs-modal-border-radius);
6585
  outline: 0;
6586
}
6587
 
6588
.modal-backdrop {
6589
  --bs-backdrop-zindex: 1050;
6590
  --bs-backdrop-bg: #000;
6591
  --bs-backdrop-opacity: 0.5;
6592
  position: fixed;
6593
  top: 0;
6594
  left: 0;
6595
  z-index: var(--bs-backdrop-zindex);
6596
  width: 100vw;
6597
  height: 100vh;
6598
  background-color: var(--bs-backdrop-bg);
6599
}
16848 stevensc 6600
 
16825 efrain 6601
.modal-backdrop.fade {
6602
  opacity: 0;
6603
}
16848 stevensc 6604
 
16825 efrain 6605
.modal-backdrop.show {
6606
  opacity: var(--bs-backdrop-opacity);
6607
}
6608
 
6609
.modal-header {
6610
  display: flex;
6611
  flex-shrink: 0;
6612
  align-items: center;
6613
  justify-content: space-between;
6614
  padding: var(--bs-modal-header-padding);
6615
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
6616
  border-top-left-radius: var(--bs-modal-inner-border-radius);
6617
  border-top-right-radius: var(--bs-modal-inner-border-radius);
6618
}
16848 stevensc 6619
 
16825 efrain 6620
.modal-header .btn-close {
6621
  padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
6622
  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;
6623
}
6624
 
6625
.modal-title {
6626
  margin-bottom: 0;
6627
  line-height: var(--bs-modal-title-line-height);
6628
}
6629
 
6630
.modal-body {
6631
  position: relative;
6632
  flex: 1 1 auto;
6633
  padding: var(--bs-modal-padding);
6634
}
6635
 
6636
.modal-footer {
6637
  display: flex;
6638
  flex-shrink: 0;
6639
  flex-wrap: wrap;
6640
  align-items: center;
6641
  justify-content: flex-end;
6642
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
6643
  background-color: var(--bs-modal-footer-bg);
6644
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
6645
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
6646
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
6647
}
16848 stevensc 6648
 
6649
.modal-footer>* {
16825 efrain 6650
  margin: calc(var(--bs-modal-footer-gap) * 0.5);
6651
}
6652
 
6653
@media (min-width: 576px) {
6654
  .modal {
6655
    --bs-modal-margin: 1.75rem;
6656
    --bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
6657
  }
16848 stevensc 6658
 
16825 efrain 6659
  .modal-dialog {
6660
    max-width: var(--bs-modal-width);
6661
    margin-right: auto;
6662
    margin-left: auto;
6663
  }
16848 stevensc 6664
 
16825 efrain 6665
  .modal-sm {
6666
    --bs-modal-width: 300px;
6667
  }
6668
}
16848 stevensc 6669
 
16825 efrain 6670
@media (min-width: 992px) {
16848 stevensc 6671
 
16825 efrain 6672
  .modal-lg,
6673
  .modal-xl {
6674
    --bs-modal-width: 800px;
6675
  }
6676
}
16848 stevensc 6677
 
16825 efrain 6678
@media (min-width: 1200px) {
6679
  .modal-xl {
6680
    --bs-modal-width: 1140px;
6681
  }
6682
}
16848 stevensc 6683
 
16825 efrain 6684
.modal-fullscreen {
6685
  width: 100vw;
6686
  max-width: none;
6687
  height: 100%;
6688
  margin: 0;
6689
}
16848 stevensc 6690
 
16825 efrain 6691
.modal-fullscreen .modal-content {
6692
  height: 100%;
6693
  border: 0;
6694
  border-radius: 0;
6695
}
16848 stevensc 6696
 
16825 efrain 6697
.modal-fullscreen .modal-header,
6698
.modal-fullscreen .modal-footer {
6699
  border-radius: 0;
6700
}
16848 stevensc 6701
 
16825 efrain 6702
.modal-fullscreen .modal-body {
6703
  overflow-y: auto;
6704
}
6705
 
6706
@media (max-width: 575.98px) {
6707
  .modal-fullscreen-sm-down {
6708
    width: 100vw;
6709
    max-width: none;
6710
    height: 100%;
6711
    margin: 0;
6712
  }
16848 stevensc 6713
 
16825 efrain 6714
  .modal-fullscreen-sm-down .modal-content {
6715
    height: 100%;
6716
    border: 0;
6717
    border-radius: 0;
6718
  }
16848 stevensc 6719
 
16825 efrain 6720
  .modal-fullscreen-sm-down .modal-header,
6721
  .modal-fullscreen-sm-down .modal-footer {
6722
    border-radius: 0;
6723
  }
16848 stevensc 6724
 
16825 efrain 6725
  .modal-fullscreen-sm-down .modal-body {
6726
    overflow-y: auto;
6727
  }
6728
}
16848 stevensc 6729
 
16825 efrain 6730
@media (max-width: 767.98px) {
6731
  .modal-fullscreen-md-down {
6732
    width: 100vw;
6733
    max-width: none;
6734
    height: 100%;
6735
    margin: 0;
6736
  }
16848 stevensc 6737
 
16825 efrain 6738
  .modal-fullscreen-md-down .modal-content {
6739
    height: 100%;
6740
    border: 0;
6741
    border-radius: 0;
6742
  }
16848 stevensc 6743
 
16825 efrain 6744
  .modal-fullscreen-md-down .modal-header,
6745
  .modal-fullscreen-md-down .modal-footer {
6746
    border-radius: 0;
6747
  }
16848 stevensc 6748
 
16825 efrain 6749
  .modal-fullscreen-md-down .modal-body {
6750
    overflow-y: auto;
6751
  }
6752
}
16848 stevensc 6753
 
16825 efrain 6754
@media (max-width: 991.98px) {
6755
  .modal-fullscreen-lg-down {
6756
    width: 100vw;
6757
    max-width: none;
6758
    height: 100%;
6759
    margin: 0;
6760
  }
16848 stevensc 6761
 
16825 efrain 6762
  .modal-fullscreen-lg-down .modal-content {
6763
    height: 100%;
6764
    border: 0;
6765
    border-radius: 0;
6766
  }
16848 stevensc 6767
 
16825 efrain 6768
  .modal-fullscreen-lg-down .modal-header,
6769
  .modal-fullscreen-lg-down .modal-footer {
6770
    border-radius: 0;
6771
  }
16848 stevensc 6772
 
16825 efrain 6773
  .modal-fullscreen-lg-down .modal-body {
6774
    overflow-y: auto;
6775
  }
6776
}
16848 stevensc 6777
 
16825 efrain 6778
@media (max-width: 1199.98px) {
6779
  .modal-fullscreen-xl-down {
6780
    width: 100vw;
6781
    max-width: none;
6782
    height: 100%;
6783
    margin: 0;
6784
  }
16848 stevensc 6785
 
16825 efrain 6786
  .modal-fullscreen-xl-down .modal-content {
6787
    height: 100%;
6788
    border: 0;
6789
    border-radius: 0;
6790
  }
16848 stevensc 6791
 
16825 efrain 6792
  .modal-fullscreen-xl-down .modal-header,
6793
  .modal-fullscreen-xl-down .modal-footer {
6794
    border-radius: 0;
6795
  }
16848 stevensc 6796
 
16825 efrain 6797
  .modal-fullscreen-xl-down .modal-body {
6798
    overflow-y: auto;
6799
  }
6800
}
16848 stevensc 6801
 
16825 efrain 6802
@media (max-width: 1399.98px) {
6803
  .modal-fullscreen-xxl-down {
6804
    width: 100vw;
6805
    max-width: none;
6806
    height: 100%;
6807
    margin: 0;
6808
  }
16848 stevensc 6809
 
16825 efrain 6810
  .modal-fullscreen-xxl-down .modal-content {
6811
    height: 100%;
6812
    border: 0;
6813
    border-radius: 0;
6814
  }
16848 stevensc 6815
 
16825 efrain 6816
  .modal-fullscreen-xxl-down .modal-header,
6817
  .modal-fullscreen-xxl-down .modal-footer {
6818
    border-radius: 0;
6819
  }
16848 stevensc 6820
 
16825 efrain 6821
  .modal-fullscreen-xxl-down .modal-body {
6822
    overflow-y: auto;
6823
  }
6824
}
16848 stevensc 6825
 
16825 efrain 6826
.tooltip {
6827
  --bs-tooltip-zindex: 1080;
6828
  --bs-tooltip-max-width: 200px;
6829
  --bs-tooltip-padding-x: 0.5rem;
6830
  --bs-tooltip-padding-y: 0.25rem;
6831
  --bs-tooltip-margin: ;
6832
  --bs-tooltip-font-size: 0.812rem;
6833
  --bs-tooltip-color: #fff;
6834
  --bs-tooltip-bg: #000;
6835
  --bs-tooltip-border-radius: 0.25rem;
6836
  --bs-tooltip-opacity: 0.9;
6837
  --bs-tooltip-arrow-width: 0.8rem;
6838
  --bs-tooltip-arrow-height: 0.4rem;
6839
  z-index: var(--bs-tooltip-zindex);
6840
  display: block;
6841
  padding: var(--bs-tooltip-arrow-height);
6842
  margin: var(--bs-tooltip-margin);
6843
  font-family: var(--bs-font-sans-serif);
6844
  font-style: normal;
6845
  font-weight: 400;
6846
  line-height: 1.5;
6847
  text-align: left;
6848
  text-align: start;
6849
  text-decoration: none;
6850
  text-shadow: none;
6851
  text-transform: none;
6852
  letter-spacing: normal;
6853
  word-break: normal;
6854
  white-space: normal;
6855
  word-spacing: normal;
6856
  line-break: auto;
6857
  font-size: var(--bs-tooltip-font-size);
6858
  word-wrap: break-word;
6859
  opacity: 0;
6860
}
16848 stevensc 6861
 
16825 efrain 6862
.tooltip.show {
6863
  opacity: var(--bs-tooltip-opacity);
6864
}
16848 stevensc 6865
 
16825 efrain 6866
.tooltip .tooltip-arrow {
6867
  display: block;
6868
  width: var(--bs-tooltip-arrow-width);
6869
  height: var(--bs-tooltip-arrow-height);
6870
}
16848 stevensc 6871
 
16825 efrain 6872
.tooltip .tooltip-arrow::before {
6873
  position: absolute;
6874
  content: "";
6875
  border-color: transparent;
6876
  border-style: solid;
6877
}
6878
 
16848 stevensc 6879
.bs-tooltip-top .tooltip-arrow,
6880
.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
16825 efrain 6881
  bottom: 0;
6882
}
16848 stevensc 6883
 
6884
.bs-tooltip-top .tooltip-arrow::before,
6885
.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
16825 efrain 6886
  top: -1px;
6887
  border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
6888
  border-top-color: var(--bs-tooltip-bg);
6889
}
6890
 
6891
/* rtl:begin:ignore */
16848 stevensc 6892
.bs-tooltip-end .tooltip-arrow,
6893
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
16825 efrain 6894
  left: 0;
6895
  width: var(--bs-tooltip-arrow-height);
6896
  height: var(--bs-tooltip-arrow-width);
6897
}
16848 stevensc 6898
 
6899
.bs-tooltip-end .tooltip-arrow::before,
6900
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
16825 efrain 6901
  right: -1px;
6902
  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
6903
  border-right-color: var(--bs-tooltip-bg);
6904
}
6905
 
6906
/* rtl:end:ignore */
16848 stevensc 6907
.bs-tooltip-bottom .tooltip-arrow,
6908
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
16825 efrain 6909
  top: 0;
6910
}
16848 stevensc 6911
 
6912
.bs-tooltip-bottom .tooltip-arrow::before,
6913
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
16825 efrain 6914
  bottom: -1px;
6915
  border-width: 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
6916
  border-bottom-color: var(--bs-tooltip-bg);
6917
}
6918
 
6919
/* rtl:begin:ignore */
16848 stevensc 6920
.bs-tooltip-start .tooltip-arrow,
6921
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
16825 efrain 6922
  right: 0;
6923
  width: var(--bs-tooltip-arrow-height);
6924
  height: var(--bs-tooltip-arrow-width);
6925
}
16848 stevensc 6926
 
6927
.bs-tooltip-start .tooltip-arrow::before,
6928
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
16825 efrain 6929
  left: -1px;
6930
  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
6931
  border-left-color: var(--bs-tooltip-bg);
6932
}
6933
 
6934
/* rtl:end:ignore */
6935
.tooltip-inner {
6936
  max-width: var(--bs-tooltip-max-width);
6937
  padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
6938
  color: var(--bs-tooltip-color);
6939
  text-align: center;
6940
  background-color: var(--bs-tooltip-bg);
6941
  border-radius: var(--bs-tooltip-border-radius);
6942
}
6943
 
6944
.popover {
6945
  --bs-popover-zindex: 1070;
6946
  --bs-popover-max-width: 276px;
6947
  --bs-popover-font-size: 0.812rem;
6948
  --bs-popover-bg: #fff;
6949
  --bs-popover-border-width: 1px;
6950
  --bs-popover-border-color: #e9ecef;
6951
  --bs-popover-border-radius: 0.5rem;
6952
  --bs-popover-inner-border-radius: calc(0.5rem - 1px);
6953
  --bs-popover-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
6954
  --bs-popover-header-padding-x: 1rem;
6955
  --bs-popover-header-padding-y: 0.5rem;
6956
  --bs-popover-header-font-size: 0.875rem;
6957
  --bs-popover-header-color: ;
6958
  --bs-popover-header-bg: #e9ecef;
6959
  --bs-popover-body-padding-x: 1rem;
6960
  --bs-popover-body-padding-y: 1rem;
6961
  --bs-popover-body-color: #000;
6962
  --bs-popover-arrow-width: 1rem;
6963
  --bs-popover-arrow-height: 0.5rem;
6964
  --bs-popover-arrow-border: var(--bs-popover-border-color);
6965
  z-index: var(--bs-popover-zindex);
6966
  display: block;
6967
  max-width: var(--bs-popover-max-width);
6968
  font-family: var(--bs-font-sans-serif);
6969
  font-style: normal;
6970
  font-weight: 400;
6971
  line-height: 1.5;
6972
  text-align: left;
6973
  text-align: start;
6974
  text-decoration: none;
6975
  text-shadow: none;
6976
  text-transform: none;
6977
  letter-spacing: normal;
6978
  word-break: normal;
6979
  white-space: normal;
6980
  word-spacing: normal;
6981
  line-break: auto;
6982
  font-size: var(--bs-popover-font-size);
6983
  word-wrap: break-word;
6984
  background-color: var(--bs-popover-bg);
6985
  background-clip: padding-box;
6986
  border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
6987
  border-radius: var(--bs-popover-border-radius);
6988
}
16848 stevensc 6989
 
16825 efrain 6990
.popover .popover-arrow {
6991
  display: block;
6992
  width: var(--bs-popover-arrow-width);
6993
  height: var(--bs-popover-arrow-height);
6994
}
16848 stevensc 6995
 
6996
.popover .popover-arrow::before,
6997
.popover .popover-arrow::after {
16825 efrain 6998
  position: absolute;
6999
  display: block;
7000
  content: "";
7001
  border-color: transparent;
7002
  border-style: solid;
7003
  border-width: 0;
7004
}
7005
 
16848 stevensc 7006
.bs-popover-top>.popover-arrow,
7007
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow {
16825 efrain 7008
  bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
7009
}
16848 stevensc 7010
 
7011
.bs-popover-top>.popover-arrow::before,
7012
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,
7013
.bs-popover-top>.popover-arrow::after,
7014
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after {
16825 efrain 7015
  border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
7016
}
16848 stevensc 7017
 
7018
.bs-popover-top>.popover-arrow::before,
7019
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before {
16825 efrain 7020
  bottom: 0;
7021
  border-top-color: var(--bs-popover-arrow-border);
7022
}
16848 stevensc 7023
 
7024
.bs-popover-top>.popover-arrow::after,
7025
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after {
16825 efrain 7026
  bottom: var(--bs-popover-border-width);
7027
  border-top-color: var(--bs-popover-bg);
7028
}
7029
 
7030
/* rtl:begin:ignore */
16848 stevensc 7031
.bs-popover-end>.popover-arrow,
7032
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow {
16825 efrain 7033
  left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
7034
  width: var(--bs-popover-arrow-height);
7035
  height: var(--bs-popover-arrow-width);
7036
}
16848 stevensc 7037
 
7038
.bs-popover-end>.popover-arrow::before,
7039
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,
7040
.bs-popover-end>.popover-arrow::after,
7041
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after {
16825 efrain 7042
  border-width: calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
7043
}
16848 stevensc 7044
 
7045
.bs-popover-end>.popover-arrow::before,
7046
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before {
16825 efrain 7047
  left: 0;
7048
  border-right-color: var(--bs-popover-arrow-border);
7049
}
16848 stevensc 7050
 
7051
.bs-popover-end>.popover-arrow::after,
7052
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after {
16825 efrain 7053
  left: var(--bs-popover-border-width);
7054
  border-right-color: var(--bs-popover-bg);
7055
}
7056
 
7057
/* rtl:end:ignore */
16848 stevensc 7058
.bs-popover-bottom>.popover-arrow,
7059
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow {
16825 efrain 7060
  top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
7061
}
16848 stevensc 7062
 
7063
.bs-popover-bottom>.popover-arrow::before,
7064
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,
7065
.bs-popover-bottom>.popover-arrow::after,
7066
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after {
16825 efrain 7067
  border-width: 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
7068
}
16848 stevensc 7069
 
7070
.bs-popover-bottom>.popover-arrow::before,
7071
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before {
16825 efrain 7072
  top: 0;
7073
  border-bottom-color: var(--bs-popover-arrow-border);
7074
}
16848 stevensc 7075
 
7076
.bs-popover-bottom>.popover-arrow::after,
7077
.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after {
16825 efrain 7078
  top: var(--bs-popover-border-width);
7079
  border-bottom-color: var(--bs-popover-bg);
7080
}
16848 stevensc 7081
 
7082
.bs-popover-bottom .popover-header::before,
7083
.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
16825 efrain 7084
  position: absolute;
7085
  top: 0;
7086
  left: 50%;
7087
  display: block;
7088
  width: var(--bs-popover-arrow-width);
7089
  margin-left: calc(-0.5 * var(--bs-popover-arrow-width));
7090
  content: "";
7091
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg);
7092
}
7093
 
7094
/* rtl:begin:ignore */
16848 stevensc 7095
.bs-popover-start>.popover-arrow,
7096
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow {
16825 efrain 7097
  right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
7098
  width: var(--bs-popover-arrow-height);
7099
  height: var(--bs-popover-arrow-width);
7100
}
16848 stevensc 7101
 
7102
.bs-popover-start>.popover-arrow::before,
7103
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,
7104
.bs-popover-start>.popover-arrow::after,
7105
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after {
16825 efrain 7106
  border-width: calc(var(--bs-popover-arrow-width) * 0.5) 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
7107
}
16848 stevensc 7108
 
7109
.bs-popover-start>.popover-arrow::before,
7110
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before {
16825 efrain 7111
  right: 0;
7112
  border-left-color: var(--bs-popover-arrow-border);
7113
}
16848 stevensc 7114
 
7115
.bs-popover-start>.popover-arrow::after,
7116
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after {
16825 efrain 7117
  right: var(--bs-popover-border-width);
7118
  border-left-color: var(--bs-popover-bg);
7119
}
7120
 
7121
/* rtl:end:ignore */
7122
.popover-header {
7123
  padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
7124
  margin-bottom: 0;
7125
  font-size: var(--bs-popover-header-font-size);
7126
  color: var(--bs-popover-header-color);
7127
  background-color: var(--bs-popover-header-bg);
7128
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
7129
  border-top-left-radius: var(--bs-popover-inner-border-radius);
7130
  border-top-right-radius: var(--bs-popover-inner-border-radius);
7131
}
16848 stevensc 7132
 
16825 efrain 7133
.popover-header:empty {
7134
  display: none;
7135
}
7136
 
7137
.popover-body {
7138
  padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
7139
  color: var(--bs-popover-body-color);
7140
}
7141
 
7142
.carousel {
7143
  position: relative;
7144
}
7145
 
7146
.carousel.pointer-event {
7147
  touch-action: pan-y;
7148
}
7149
 
7150
.carousel-inner {
7151
  position: relative;
7152
  width: 100%;
7153
  overflow: hidden;
7154
}
16848 stevensc 7155
 
16825 efrain 7156
.carousel-inner::after {
7157
  display: block;
7158
  clear: both;
7159
  content: "";
7160
}
7161
 
7162
.carousel-item {
7163
  position: relative;
7164
  display: none;
7165
  float: left;
7166
  width: 100%;
7167
  margin-right: -100%;
7168
  backface-visibility: hidden;
7169
  transition: transform 0.6s ease-in-out;
7170
}
16848 stevensc 7171
 
16825 efrain 7172
@media (prefers-reduced-motion: reduce) {
7173
  .carousel-item {
7174
    transition: none;
7175
  }
7176
}
7177
 
7178
.carousel-item.active,
7179
.carousel-item-next,
7180
.carousel-item-prev {
7181
  display: block;
7182
}
7183
 
7184
/* rtl:begin:ignore */
7185
.carousel-item-next:not(.carousel-item-start),
7186
.active.carousel-item-end {
7187
  transform: translateX(100%);
7188
}
7189
 
7190
.carousel-item-prev:not(.carousel-item-end),
7191
.active.carousel-item-start {
7192
  transform: translateX(-100%);
7193
}
7194
 
7195
/* rtl:end:ignore */
7196
.carousel-fade .carousel-item {
7197
  opacity: 0;
7198
  transition-property: opacity;
7199
  transform: none;
7200
}
16848 stevensc 7201
 
16825 efrain 7202
.carousel-fade .carousel-item.active,
7203
.carousel-fade .carousel-item-next.carousel-item-start,
7204
.carousel-fade .carousel-item-prev.carousel-item-end {
7205
  z-index: 1;
7206
  opacity: 1;
7207
}
16848 stevensc 7208
 
16825 efrain 7209
.carousel-fade .active.carousel-item-start,
7210
.carousel-fade .active.carousel-item-end {
7211
  z-index: 0;
7212
  opacity: 0;
7213
  transition: opacity 0s 0.6s;
7214
}
16848 stevensc 7215
 
16825 efrain 7216
@media (prefers-reduced-motion: reduce) {
16848 stevensc 7217
 
16825 efrain 7218
  .carousel-fade .active.carousel-item-start,
7219
  .carousel-fade .active.carousel-item-end {
7220
    transition: none;
7221
  }
7222
}
7223
 
7224
.carousel-control-prev,
7225
.carousel-control-next {
7226
  position: absolute;
7227
  top: 0;
7228
  bottom: 0;
7229
  z-index: 1;
7230
  display: flex;
7231
  align-items: center;
7232
  justify-content: center;
7233
  width: 15%;
7234
  padding: 0;
7235
  color: #fff;
7236
  text-align: center;
7237
  background: none;
7238
  border: 0;
7239
  opacity: 0.5;
7240
  transition: opacity 0.15s ease;
7241
}
16848 stevensc 7242
 
16825 efrain 7243
@media (prefers-reduced-motion: reduce) {
16848 stevensc 7244
 
16825 efrain 7245
  .carousel-control-prev,
7246
  .carousel-control-next {
7247
    transition: none;
7248
  }
7249
}
16848 stevensc 7250
 
7251
.carousel-control-prev:hover,
7252
.carousel-control-prev:focus,
16825 efrain 7253
.carousel-control-next:hover,
7254
.carousel-control-next:focus {
7255
  color: #fff;
7256
  text-decoration: none;
7257
  outline: 0;
7258
  opacity: 0.9;
7259
}
7260
 
7261
.carousel-control-prev {
7262
  left: 0;
7263
}
7264
 
7265
.carousel-control-next {
7266
  right: 0;
7267
}
7268
 
7269
.carousel-control-prev-icon,
7270
.carousel-control-next-icon {
7271
  display: inline-block;
7272
  width: 2rem;
7273
  height: 2rem;
7274
  background-repeat: no-repeat;
7275
  background-position: 50%;
7276
  background-size: 100% 100%;
7277
}
7278
 
7279
/* rtl:options: {
7280
  "autoRename": true,
7281
  "stringMap":[ {
7282
    "name"    : "prev-next",
7283
    "search"  : "prev",
7284
    "replace" : "next"
7285
  } ]
7286
} */
7287
.carousel-control-prev-icon {
7288
  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");
7289
}
7290
 
7291
.carousel-control-next-icon {
7292
  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");
7293
}
7294
 
7295
.carousel-indicators {
7296
  position: absolute;
7297
  right: 0;
7298
  bottom: 0;
7299
  left: 0;
7300
  z-index: 2;
7301
  display: flex;
7302
  justify-content: center;
7303
  padding: 0;
7304
  margin-right: 15%;
7305
  margin-bottom: 1rem;
7306
  margin-left: 15%;
7307
  list-style: none;
7308
}
16848 stevensc 7309
 
16825 efrain 7310
.carousel-indicators [data-bs-target] {
7311
  box-sizing: content-box;
7312
  flex: 0 1 auto;
7313
  width: 30px;
7314
  height: 3px;
7315
  padding: 0;
7316
  margin-right: 3px;
7317
  margin-left: 3px;
7318
  text-indent: -999px;
7319
  cursor: pointer;
7320
  background-color: #fff;
7321
  background-clip: padding-box;
7322
  border: 0;
7323
  border-top: 10px solid transparent;
7324
  border-bottom: 10px solid transparent;
7325
  opacity: 0.5;
7326
  transition: opacity 0.6s ease;
7327
}
16848 stevensc 7328
 
16825 efrain 7329
@media (prefers-reduced-motion: reduce) {
7330
  .carousel-indicators [data-bs-target] {
7331
    transition: none;
7332
  }
7333
}
16848 stevensc 7334
 
16825 efrain 7335
.carousel-indicators .active {
7336
  opacity: 1;
7337
}
7338
 
7339
.carousel-caption {
7340
  position: absolute;
7341
  right: 15%;
7342
  bottom: 1.25rem;
7343
  left: 15%;
7344
  padding-top: 1.25rem;
7345
  padding-bottom: 1.25rem;
7346
  color: #fff;
7347
  text-align: center;
7348
}
7349
 
7350
.carousel-dark .carousel-control-prev-icon,
7351
.carousel-dark .carousel-control-next-icon {
7352
  filter: invert(1) grayscale(100);
7353
}
16848 stevensc 7354
 
16825 efrain 7355
.carousel-dark .carousel-indicators [data-bs-target] {
7356
  background-color: #000;
7357
}
16848 stevensc 7358
 
16825 efrain 7359
.carousel-dark .carousel-caption {
7360
  color: #000;
7361
}
7362
 
7363
.spinner-grow,
7364
.spinner-border {
7365
  display: inline-block;
7366
  width: var(--bs-spinner-width);
7367
  height: var(--bs-spinner-height);
7368
  vertical-align: var(--bs-spinner-vertical-align);
7369
  border-radius: 50%;
7370
  animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
7371
}
7372
 
7373
@keyframes spinner-border {
7374
  to {
16848 stevensc 7375
    transform: rotate(360deg)
7376
      /* rtl:ignore */
7377
    ;
16825 efrain 7378
  }
7379
}
16848 stevensc 7380
 
16825 efrain 7381
.spinner-border {
7382
  --bs-spinner-width: 2rem;
7383
  --bs-spinner-height: 2rem;
7384
  --bs-spinner-vertical-align: -0.125em;
7385
  --bs-spinner-border-width: 0.25em;
7386
  --bs-spinner-animation-speed: 0.75s;
7387
  --bs-spinner-animation-name: spinner-border;
7388
  border: var(--bs-spinner-border-width) solid currentcolor;
7389
  border-right-color: transparent;
7390
}
7391
 
7392
.spinner-border-sm {
7393
  --bs-spinner-width: 1rem;
7394
  --bs-spinner-height: 1rem;
7395
  --bs-spinner-border-width: 0.2em;
7396
}
7397
 
7398
@keyframes spinner-grow {
7399
  0% {
7400
    transform: scale(0);
7401
  }
16848 stevensc 7402
 
16825 efrain 7403
  50% {
7404
    opacity: 1;
7405
    transform: none;
7406
  }
7407
}
16848 stevensc 7408
 
16825 efrain 7409
.spinner-grow {
7410
  --bs-spinner-width: 2rem;
7411
  --bs-spinner-height: 2rem;
7412
  --bs-spinner-vertical-align: -0.125em;
7413
  --bs-spinner-animation-speed: 0.75s;
7414
  --bs-spinner-animation-name: spinner-grow;
7415
  background-color: currentcolor;
7416
  opacity: 0;
7417
}
7418
 
7419
.spinner-grow-sm {
7420
  --bs-spinner-width: 1rem;
7421
  --bs-spinner-height: 1rem;
7422
}
7423
 
7424
@media (prefers-reduced-motion: reduce) {
16848 stevensc 7425
 
16825 efrain 7426
  .spinner-border,
7427
  .spinner-grow {
7428
    --bs-spinner-animation-speed: 1.5s;
7429
  }
7430
}
16848 stevensc 7431
 
16825 efrain 7432
.clearfix::after {
7433
  display: block;
7434
  clear: both;
7435
  content: "";
7436
}
7437
 
7438
.text-bg-primary {
7439
  color: #fff !important;
7440
  background-color: RGBA(101, 113, 255, var(--bs-bg-opacity, 1)) !important;
7441
}
7442
 
7443
.text-bg-secondary {
7444
  color: #fff !important;
7445
  background-color: RGBA(121, 135, 161, var(--bs-bg-opacity, 1)) !important;
7446
}
7447
 
7448
.text-bg-success {
7449
  color: #fff !important;
7450
  background-color: RGBA(5, 163, 74, var(--bs-bg-opacity, 1)) !important;
7451
}
7452
 
7453
.text-bg-info {
7454
  color: #000 !important;
7455
  background-color: RGBA(102, 209, 209, var(--bs-bg-opacity, 1)) !important;
7456
}
7457
 
7458
.text-bg-warning {
7459
  color: #000 !important;
7460
  background-color: RGBA(251, 188, 6, var(--bs-bg-opacity, 1)) !important;
7461
}
7462
 
7463
.text-bg-danger {
7464
  color: #fff !important;
7465
  background-color: RGBA(255, 51, 102, var(--bs-bg-opacity, 1)) !important;
7466
}
7467
 
7468
.text-bg-light {
7469
  color: #000 !important;
7470
  background-color: RGBA(233, 236, 239, var(--bs-bg-opacity, 1)) !important;
7471
}
7472
 
7473
.text-bg-dark {
7474
  color: #fff !important;
7475
  background-color: RGBA(6, 12, 23, var(--bs-bg-opacity, 1)) !important;
7476
}
7477
 
7478
.link-primary {
7479
  color: #6571ff !important;
7480
}
16848 stevensc 7481
 
7482
.link-primary:hover,
7483
.link-primary:focus {
16825 efrain 7484
  color: #515acc !important;
7485
}
7486
 
7487
.link-secondary {
7488
  color: #7987a1 !important;
7489
}
16848 stevensc 7490
 
7491
.link-secondary:hover,
7492
.link-secondary:focus {
16825 efrain 7493
  color: #616c81 !important;
7494
}
7495
 
7496
.link-success {
7497
  color: #05a34a !important;
7498
}
16848 stevensc 7499
 
7500
.link-success:hover,
7501
.link-success:focus {
16825 efrain 7502
  color: #04823b !important;
7503
}
7504
 
7505
.link-info {
7506
  color: #66d1d1 !important;
7507
}
16848 stevensc 7508
 
7509
.link-info:hover,
7510
.link-info:focus {
16825 efrain 7511
  color: #85dada !important;
7512
}
7513
 
7514
.link-warning {
7515
  color: #fbbc06 !important;
7516
}
16848 stevensc 7517
 
7518
.link-warning:hover,
7519
.link-warning:focus {
16825 efrain 7520
  color: #fcc938 !important;
7521
}
7522
 
7523
.link-danger {
7524
  color: #ff3366 !important;
7525
}
16848 stevensc 7526
 
7527
.link-danger:hover,
7528
.link-danger:focus {
16825 efrain 7529
  color: #cc2952 !important;
7530
}
7531
 
7532
.link-light {
7533
  color: #e9ecef !important;
7534
}
16848 stevensc 7535
 
7536
.link-light:hover,
7537
.link-light:focus {
16825 efrain 7538
  color: #edf0f2 !important;
7539
}
7540
 
7541
.link-dark {
7542
  color: #060c17 !important;
7543
}
16848 stevensc 7544
 
7545
.link-dark:hover,
7546
.link-dark:focus {
16825 efrain 7547
  color: #050a12 !important;
7548
}
7549
 
7550
.ratio {
7551
  position: relative;
7552
  width: 100%;
7553
}
16848 stevensc 7554
 
16825 efrain 7555
.ratio::before {
7556
  display: block;
7557
  padding-top: var(--bs-aspect-ratio);
7558
  content: "";
7559
}
16848 stevensc 7560
 
7561
.ratio>* {
16825 efrain 7562
  position: absolute;
7563
  top: 0;
7564
  left: 0;
7565
  width: 100%;
7566
  height: 100%;
7567
}
7568
 
7569
.ratio-1x1 {
7570
  --bs-aspect-ratio: 100%;
7571
}
7572
 
7573
.ratio-4x3 {
7574
  --bs-aspect-ratio: 75%;
7575
}
7576
 
7577
.ratio-16x9 {
7578
  --bs-aspect-ratio: 56.25%;
7579
}
7580
 
7581
.ratio-21x9 {
7582
  --bs-aspect-ratio: 42.8571428571%;
7583
}
7584
 
7585
.fixed-top {
7586
  position: fixed;
7587
  top: 0;
7588
  right: 0;
7589
  left: 0;
7590
  z-index: 1030;
7591
}
7592
 
7593
.fixed-bottom {
7594
  position: fixed;
7595
  right: 0;
7596
  bottom: 0;
7597
  left: 0;
7598
  z-index: 1030;
7599
}
7600
 
7601
.sticky-top {
7602
  position: sticky;
7603
  top: 0;
7604
  z-index: 1020;
7605
}
7606
 
7607
.sticky-bottom {
7608
  position: sticky;
7609
  bottom: 0;
7610
  z-index: 1020;
7611
}
7612
 
7613
@media (min-width: 576px) {
7614
  .sticky-sm-top {
7615
    position: sticky;
7616
    top: 0;
7617
    z-index: 1020;
7618
  }
16848 stevensc 7619
 
16825 efrain 7620
  .sticky-sm-bottom {
7621
    position: sticky;
7622
    bottom: 0;
7623
    z-index: 1020;
7624
  }
7625
}
16848 stevensc 7626
 
16825 efrain 7627
@media (min-width: 768px) {
7628
  .sticky-md-top {
7629
    position: sticky;
7630
    top: 0;
7631
    z-index: 1020;
7632
  }
16848 stevensc 7633
 
16825 efrain 7634
  .sticky-md-bottom {
7635
    position: sticky;
7636
    bottom: 0;
7637
    z-index: 1020;
7638
  }
7639
}
16848 stevensc 7640
 
16825 efrain 7641
@media (min-width: 992px) {
7642
  .sticky-lg-top {
7643
    position: sticky;
7644
    top: 0;
7645
    z-index: 1020;
7646
  }
16848 stevensc 7647
 
16825 efrain 7648
  .sticky-lg-bottom {
7649
    position: sticky;
7650
    bottom: 0;
7651
    z-index: 1020;
7652
  }
7653
}
16848 stevensc 7654
 
16825 efrain 7655
@media (min-width: 1200px) {
7656
  .sticky-xl-top {
7657
    position: sticky;
7658
    top: 0;
7659
    z-index: 1020;
7660
  }
16848 stevensc 7661
 
16825 efrain 7662
  .sticky-xl-bottom {
7663
    position: sticky;
7664
    bottom: 0;
7665
    z-index: 1020;
7666
  }
7667
}
16848 stevensc 7668
 
16825 efrain 7669
@media (min-width: 1400px) {
7670
  .sticky-xxl-top {
7671
    position: sticky;
7672
    top: 0;
7673
    z-index: 1020;
7674
  }
16848 stevensc 7675
 
16825 efrain 7676
  .sticky-xxl-bottom {
7677
    position: sticky;
7678
    bottom: 0;
7679
    z-index: 1020;
7680
  }
7681
}
16848 stevensc 7682
 
16825 efrain 7683
.hstack {
7684
  display: flex;
7685
  flex-direction: row;
7686
  align-items: center;
7687
  align-self: stretch;
7688
}
7689
 
7690
.vstack {
7691
  display: flex;
7692
  flex: 1 1 auto;
7693
  flex-direction: column;
7694
  align-self: stretch;
7695
}
7696
 
7697
.visually-hidden,
7698
.visually-hidden-focusable:not(:focus):not(:focus-within) {
7699
  position: absolute !important;
7700
  width: 1px !important;
7701
  height: 1px !important;
7702
  padding: 0 !important;
7703
  margin: -1px !important;
7704
  overflow: hidden !important;
7705
  clip: rect(0, 0, 0, 0) !important;
7706
  white-space: nowrap !important;
7707
  border: 0 !important;
7708
}
7709
 
7710
.stretched-link::after {
7711
  position: absolute;
7712
  top: 0;
7713
  right: 0;
7714
  bottom: 0;
7715
  left: 0;
7716
  z-index: 1;
7717
  content: "";
7718
}
7719
 
7720
.text-truncate {
7721
  overflow: hidden;
7722
  text-overflow: ellipsis;
7723
  white-space: nowrap;
7724
}
7725
 
7726
.vr {
7727
  display: inline-block;
7728
  align-self: stretch;
7729
  width: 1px;
7730
  min-height: 1em;
7731
  background-color: currentcolor;
7732
  opacity: 0.1;
7733
}
7734
 
7735
.align-baseline {
7736
  vertical-align: baseline !important;
7737
}
7738
 
7739
.align-top {
7740
  vertical-align: top !important;
7741
}
7742
 
7743
.align-middle {
7744
  vertical-align: middle !important;
7745
}
7746
 
7747
.align-bottom {
7748
  vertical-align: bottom !important;
7749
}
7750
 
7751
.align-text-bottom {
7752
  vertical-align: text-bottom !important;
7753
}
7754
 
7755
.align-text-top {
7756
  vertical-align: text-top !important;
7757
}
7758
 
7759
.float-start {
7760
  float: left !important;
7761
}
7762
 
7763
.float-end {
7764
  float: right !important;
7765
}
7766
 
7767
.float-none {
7768
  float: none !important;
7769
}
7770
 
7771
.opacity-0 {
7772
  opacity: 0 !important;
7773
}
7774
 
7775
.opacity-25 {
7776
  opacity: 0.25 !important;
7777
}
7778
 
7779
.opacity-50 {
7780
  opacity: 0.5 !important;
7781
}
7782
 
7783
.opacity-75 {
7784
  opacity: 0.75 !important;
7785
}
7786
 
7787
.opacity-100 {
7788
  opacity: 1 !important;
7789
}
7790
 
7791
.overflow-auto {
7792
  overflow: auto !important;
7793
}
7794
 
7795
.overflow-hidden {
7796
  overflow: hidden !important;
7797
}
7798
 
7799
.overflow-visible {
7800
  overflow: visible !important;
7801
}
7802
 
7803
.overflow-scroll {
7804
  overflow: scroll !important;
7805
}
7806
 
7807
.d-inline {
7808
  display: inline !important;
7809
}
7810
 
7811
.d-inline-block {
7812
  display: inline-block !important;
7813
}
7814
 
7815
.d-block {
7816
  display: block !important;
7817
}
7818
 
7819
.d-grid {
7820
  display: grid !important;
7821
}
7822
 
7823
.d-table {
7824
  display: table !important;
7825
}
7826
 
7827
.d-table-row {
7828
  display: table-row !important;
7829
}
7830
 
7831
.d-table-cell {
7832
  display: table-cell !important;
7833
}
7834
 
7835
.d-flex {
7836
  display: flex !important;
7837
}
7838
 
7839
.d-inline-flex {
7840
  display: inline-flex !important;
7841
}
7842
 
16848 stevensc 7843
.d-none,
7844
.navbar .search-form {
16825 efrain 7845
  display: none !important;
7846
}
7847
 
7848
.shadow {
7849
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
7850
}
7851
 
7852
.shadow-sm {
7853
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
7854
}
7855
 
7856
.shadow-lg {
7857
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
7858
}
7859
 
7860
.shadow-none {
7861
  box-shadow: none !important;
7862
}
7863
 
7864
.position-static {
7865
  position: static !important;
7866
}
7867
 
7868
.position-relative {
7869
  position: relative !important;
7870
}
7871
 
7872
.position-absolute {
7873
  position: absolute !important;
7874
}
7875
 
7876
.position-fixed {
7877
  position: fixed !important;
7878
}
7879
 
7880
.position-sticky {
7881
  position: sticky !important;
7882
}
7883
 
7884
.top-0 {
7885
  top: 0 !important;
7886
}
7887
 
7888
.top-10 {
7889
  top: 10% !important;
7890
}
7891
 
7892
.top-20 {
7893
  top: 20% !important;
7894
}
7895
 
7896
.top-25 {
7897
  top: 25% !important;
7898
}
7899
 
7900
.top-30 {
7901
  top: 30% !important;
7902
}
7903
 
7904
.top-40 {
7905
  top: 40% !important;
7906
}
7907
 
7908
.top-50 {
7909
  top: 50% !important;
7910
}
7911
 
7912
.top-60 {
7913
  top: 60% !important;
7914
}
7915
 
7916
.top-70 {
7917
  top: 70% !important;
7918
}
7919
 
7920
.top-75 {
7921
  top: 75% !important;
7922
}
7923
 
7924
.top-80 {
7925
  top: 80% !important;
7926
}
7927
 
7928
.top-90 {
7929
  top: 90% !important;
7930
}
7931
 
7932
.top-100 {
7933
  top: 100% !important;
7934
}
7935
 
7936
.bottom-0 {
7937
  bottom: 0 !important;
7938
}
7939
 
7940
.bottom-10 {
7941
  bottom: 10% !important;
7942
}
7943
 
7944
.bottom-20 {
7945
  bottom: 20% !important;
7946
}
7947
 
7948
.bottom-25 {
7949
  bottom: 25% !important;
7950
}
7951
 
7952
.bottom-30 {
7953
  bottom: 30% !important;
7954
}
7955
 
7956
.bottom-40 {
7957
  bottom: 40% !important;
7958
}
7959
 
7960
.bottom-50 {
7961
  bottom: 50% !important;
7962
}
7963
 
7964
.bottom-60 {
7965
  bottom: 60% !important;
7966
}
7967
 
7968
.bottom-70 {
7969
  bottom: 70% !important;
7970
}
7971
 
7972
.bottom-75 {
7973
  bottom: 75% !important;
7974
}
7975
 
7976
.bottom-80 {
7977
  bottom: 80% !important;
7978
}
7979
 
7980
.bottom-90 {
7981
  bottom: 90% !important;
7982
}
7983
 
7984
.bottom-100 {
7985
  bottom: 100% !important;
7986
}
7987
 
7988
.start-0 {
7989
  left: 0 !important;
7990
}
7991
 
7992
.start-10 {
7993
  left: 10% !important;
7994
}
7995
 
7996
.start-20 {
7997
  left: 20% !important;
7998
}
7999
 
8000
.start-25 {
8001
  left: 25% !important;
8002
}
8003
 
8004
.start-30 {
8005
  left: 30% !important;
8006
}
8007
 
8008
.start-40 {
8009
  left: 40% !important;
8010
}
8011
 
8012
.start-50 {
8013
  left: 50% !important;
8014
}
8015
 
8016
.start-60 {
8017
  left: 60% !important;
8018
}
8019
 
8020
.start-70 {
8021
  left: 70% !important;
8022
}
8023
 
8024
.start-75 {
8025
  left: 75% !important;
8026
}
8027
 
8028
.start-80 {
8029
  left: 80% !important;
8030
}
8031
 
8032
.start-90 {
8033
  left: 90% !important;
8034
}
8035
 
8036
.start-100 {
8037
  left: 100% !important;
8038
}
8039
 
8040
.end-0 {
8041
  right: 0 !important;
8042
}
8043
 
8044
.end-10 {
8045
  right: 10% !important;
8046
}
8047
 
8048
.end-20 {
8049
  right: 20% !important;
8050
}
8051
 
8052
.end-25 {
8053
  right: 25% !important;
8054
}
8055
 
8056
.end-30 {
8057
  right: 30% !important;
8058
}
8059
 
8060
.end-40 {
8061
  right: 40% !important;
8062
}
8063
 
8064
.end-50 {
8065
  right: 50% !important;
8066
}
8067
 
8068
.end-60 {
8069
  right: 60% !important;
8070
}
8071
 
8072
.end-70 {
8073
  right: 70% !important;
8074
}
8075
 
8076
.end-75 {
8077
  right: 75% !important;
8078
}
8079
 
8080
.end-80 {
8081
  right: 80% !important;
8082
}
8083
 
8084
.end-90 {
8085
  right: 90% !important;
8086
}
8087
 
8088
.end-100 {
8089
  right: 100% !important;
8090
}
8091
 
8092
.translate-middle {
8093
  transform: translate(-50%, -50%) !important;
8094
}
8095
 
8096
.translate-middle-x {
8097
  transform: translateX(-50%) !important;
8098
}
8099
 
8100
.translate-middle-y {
8101
  transform: translateY(-50%) !important;
8102
}
8103
 
8104
.border {
8105
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8106
}
8107
 
8108
.border-0 {
8109
  border: 0 !important;
8110
}
8111
 
8112
.border-top {
8113
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8114
}
8115
 
8116
.border-top-0 {
8117
  border-top: 0 !important;
8118
}
8119
 
8120
.border-end {
8121
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8122
}
8123
 
8124
.border-end-0 {
8125
  border-right: 0 !important;
8126
}
8127
 
8128
.border-bottom {
8129
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8130
}
8131
 
8132
.border-bottom-0 {
8133
  border-bottom: 0 !important;
8134
}
8135
 
8136
.border-start {
8137
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
8138
}
8139
 
8140
.border-start-0 {
8141
  border-left: 0 !important;
8142
}
8143
 
8144
.border-primary {
8145
  --bs-border-opacity: 1;
8146
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
8147
}
8148
 
8149
.border-secondary {
8150
  --bs-border-opacity: 1;
8151
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
8152
}
8153
 
8154
.border-success {
8155
  --bs-border-opacity: 1;
8156
  border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
8157
}
8158
 
8159
.border-info {
8160
  --bs-border-opacity: 1;
8161
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
8162
}
8163
 
8164
.border-warning {
8165
  --bs-border-opacity: 1;
8166
  border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
8167
}
8168
 
16848 stevensc 8169
.border-danger,
8170
.swal2-popup .swal2-actions button.swal2-cancel {
16825 efrain 8171
  --bs-border-opacity: 1;
8172
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
8173
}
8174
 
8175
.border-light {
8176
  --bs-border-opacity: 1;
8177
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
8178
}
8179
 
8180
.border-dark {
8181
  --bs-border-opacity: 1;
8182
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
8183
}
8184
 
8185
.border-white {
8186
  --bs-border-opacity: 1;
8187
  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
8188
}
8189
 
8190
.border-1 {
8191
  --bs-border-width: 1px;
8192
}
8193
 
8194
.border-2 {
8195
  --bs-border-width: 2px;
8196
}
8197
 
8198
.border-3 {
8199
  --bs-border-width: 3px;
8200
}
8201
 
8202
.border-4 {
8203
  --bs-border-width: 4px;
8204
}
8205
 
8206
.border-5 {
8207
  --bs-border-width: 5px;
8208
}
8209
 
8210
.border-opacity-10 {
8211
  --bs-border-opacity: 0.1;
8212
}
8213
 
8214
.border-opacity-25 {
8215
  --bs-border-opacity: 0.25;
8216
}
8217
 
8218
.border-opacity-50 {
8219
  --bs-border-opacity: 0.5;
8220
}
8221
 
8222
.border-opacity-75 {
8223
  --bs-border-opacity: 0.75;
8224
}
8225
 
8226
.border-opacity-100 {
8227
  --bs-border-opacity: 1;
8228
}
8229
 
8230
.w-25 {
8231
  width: 25% !important;
8232
}
8233
 
8234
.w-50 {
8235
  width: 50% !important;
8236
}
8237
 
8238
.w-75 {
8239
  width: 75% !important;
8240
}
8241
 
8242
.w-100 {
8243
  width: 100% !important;
8244
}
8245
 
8246
.w-auto {
8247
  width: auto !important;
8248
}
8249
 
8250
.mw-100 {
8251
  max-width: 100% !important;
8252
}
8253
 
8254
.vw-100 {
8255
  width: 100vw !important;
8256
}
8257
 
8258
.min-vw-100 {
8259
  min-width: 100vw !important;
8260
}
8261
 
8262
.h-25 {
8263
  height: 25% !important;
8264
}
8265
 
8266
.h-50 {
8267
  height: 50% !important;
8268
}
8269
 
8270
.h-75 {
8271
  height: 75% !important;
8272
}
8273
 
8274
.h-100 {
8275
  height: 100% !important;
8276
}
8277
 
8278
.h-auto {
8279
  height: auto !important;
8280
}
8281
 
8282
.mh-100 {
8283
  max-height: 100% !important;
8284
}
8285
 
8286
.vh-100 {
8287
  height: 100vh !important;
8288
}
8289
 
8290
.min-vh-100 {
8291
  min-height: 100vh !important;
8292
}
8293
 
8294
.flex-fill {
8295
  flex: 1 1 auto !important;
8296
}
8297
 
8298
.flex-row {
8299
  flex-direction: row !important;
8300
}
8301
 
8302
.flex-column {
8303
  flex-direction: column !important;
8304
}
8305
 
8306
.flex-row-reverse {
8307
  flex-direction: row-reverse !important;
8308
}
8309
 
8310
.flex-column-reverse {
8311
  flex-direction: column-reverse !important;
8312
}
8313
 
8314
.flex-grow-0 {
8315
  flex-grow: 0 !important;
8316
}
8317
 
8318
.flex-grow-1 {
8319
  flex-grow: 1 !important;
8320
}
8321
 
8322
.flex-shrink-0 {
8323
  flex-shrink: 0 !important;
8324
}
8325
 
8326
.flex-shrink-1 {
8327
  flex-shrink: 1 !important;
8328
}
8329
 
8330
.flex-wrap {
8331
  flex-wrap: wrap !important;
8332
}
8333
 
8334
.flex-nowrap {
8335
  flex-wrap: nowrap !important;
8336
}
8337
 
8338
.flex-wrap-reverse {
8339
  flex-wrap: wrap-reverse !important;
8340
}
8341
 
8342
.justify-content-start {
8343
  justify-content: flex-start !important;
8344
}
8345
 
8346
.justify-content-end {
8347
  justify-content: flex-end !important;
8348
}
8349
 
16848 stevensc 8350
.justify-content-center,
8351
.dataTables_wrapper div.dataTables_paginate ul.pagination {
16825 efrain 8352
  justify-content: center !important;
8353
}
8354
 
8355
.justify-content-between {
8356
  justify-content: space-between !important;
8357
}
8358
 
8359
.justify-content-around {
8360
  justify-content: space-around !important;
8361
}
8362
 
8363
.justify-content-evenly {
8364
  justify-content: space-evenly !important;
8365
}
8366
 
8367
.align-items-start {
8368
  align-items: flex-start !important;
8369
}
8370
 
8371
.align-items-end {
8372
  align-items: flex-end !important;
8373
}
8374
 
16848 stevensc 8375
.align-items-center,
8376
.navbar .search-form {
16825 efrain 8377
  align-items: center !important;
8378
}
8379
 
8380
.align-items-baseline {
8381
  align-items: baseline !important;
8382
}
8383
 
8384
.align-items-stretch {
8385
  align-items: stretch !important;
8386
}
8387
 
8388
.align-content-start {
8389
  align-content: flex-start !important;
8390
}
8391
 
8392
.align-content-end {
8393
  align-content: flex-end !important;
8394
}
8395
 
8396
.align-content-center {
8397
  align-content: center !important;
8398
}
8399
 
8400
.align-content-between {
8401
  align-content: space-between !important;
8402
}
8403
 
8404
.align-content-around {
8405
  align-content: space-around !important;
8406
}
8407
 
8408
.align-content-stretch {
8409
  align-content: stretch !important;
8410
}
8411
 
8412
.align-self-auto {
8413
  align-self: auto !important;
8414
}
8415
 
8416
.align-self-start {
8417
  align-self: flex-start !important;
8418
}
8419
 
8420
.align-self-end {
8421
  align-self: flex-end !important;
8422
}
8423
 
8424
.align-self-center {
8425
  align-self: center !important;
8426
}
8427
 
8428
.align-self-baseline {
8429
  align-self: baseline !important;
8430
}
8431
 
8432
.align-self-stretch {
8433
  align-self: stretch !important;
8434
}
8435
 
8436
.order-first {
8437
  order: -1 !important;
8438
}
8439
 
8440
.order-0 {
8441
  order: 0 !important;
8442
}
8443
 
8444
.order-1 {
8445
  order: 1 !important;
8446
}
8447
 
8448
.order-2 {
8449
  order: 2 !important;
8450
}
8451
 
8452
.order-3 {
8453
  order: 3 !important;
8454
}
8455
 
8456
.order-4 {
8457
  order: 4 !important;
8458
}
8459
 
8460
.order-5 {
8461
  order: 5 !important;
8462
}
8463
 
8464
.order-last {
8465
  order: 6 !important;
8466
}
8467
 
8468
.m-0 {
8469
  margin: 0 !important;
8470
}
8471
 
8472
.m-1 {
8473
  margin: 0.25rem !important;
8474
}
8475
 
8476
.m-2 {
8477
  margin: 0.5rem !important;
8478
}
8479
 
8480
.m-3 {
8481
  margin: 1rem !important;
8482
}
8483
 
8484
.m-4 {
8485
  margin: 1.5rem !important;
8486
}
8487
 
8488
.m-5 {
8489
  margin: 3rem !important;
8490
}
8491
 
8492
.m-6 {
8493
  margin: 4.5rem !important;
8494
}
8495
 
8496
.m-7 {
8497
  margin: 6rem !important;
8498
}
8499
 
8500
.m-auto {
8501
  margin: auto !important;
8502
}
8503
 
8504
.mx-0 {
8505
  margin-right: 0 !important;
8506
  margin-left: 0 !important;
8507
}
8508
 
8509
.mx-1 {
8510
  margin-right: 0.25rem !important;
8511
  margin-left: 0.25rem !important;
8512
}
8513
 
8514
.mx-2 {
8515
  margin-right: 0.5rem !important;
8516
  margin-left: 0.5rem !important;
8517
}
8518
 
8519
.mx-3 {
8520
  margin-right: 1rem !important;
8521
  margin-left: 1rem !important;
8522
}
8523
 
8524
.mx-4 {
8525
  margin-right: 1.5rem !important;
8526
  margin-left: 1.5rem !important;
8527
}
8528
 
8529
.mx-5 {
8530
  margin-right: 3rem !important;
8531
  margin-left: 3rem !important;
8532
}
8533
 
8534
.mx-6 {
8535
  margin-right: 4.5rem !important;
8536
  margin-left: 4.5rem !important;
8537
}
8538
 
8539
.mx-7 {
8540
  margin-right: 6rem !important;
8541
  margin-left: 6rem !important;
8542
}
8543
 
8544
.mx-auto {
8545
  margin-right: auto !important;
8546
  margin-left: auto !important;
8547
}
8548
 
8549
.my-0 {
8550
  margin-top: 0 !important;
8551
  margin-bottom: 0 !important;
8552
}
8553
 
8554
.my-1 {
8555
  margin-top: 0.25rem !important;
8556
  margin-bottom: 0.25rem !important;
8557
}
8558
 
8559
.my-2 {
8560
  margin-top: 0.5rem !important;
8561
  margin-bottom: 0.5rem !important;
8562
}
8563
 
8564
.my-3 {
8565
  margin-top: 1rem !important;
8566
  margin-bottom: 1rem !important;
8567
}
8568
 
8569
.my-4 {
8570
  margin-top: 1.5rem !important;
8571
  margin-bottom: 1.5rem !important;
8572
}
8573
 
8574
.my-5 {
8575
  margin-top: 3rem !important;
8576
  margin-bottom: 3rem !important;
8577
}
8578
 
8579
.my-6 {
8580
  margin-top: 4.5rem !important;
8581
  margin-bottom: 4.5rem !important;
8582
}
8583
 
8584
.my-7 {
8585
  margin-top: 6rem !important;
8586
  margin-bottom: 6rem !important;
8587
}
8588
 
8589
.my-auto {
8590
  margin-top: auto !important;
8591
  margin-bottom: auto !important;
8592
}
8593
 
8594
.mt-0 {
8595
  margin-top: 0 !important;
8596
}
8597
 
8598
.mt-1 {
8599
  margin-top: 0.25rem !important;
8600
}
8601
 
8602
.mt-2 {
8603
  margin-top: 0.5rem !important;
8604
}
8605
 
16848 stevensc 8606
.mt-3,
8607
.dataTables_wrapper div.dataTables_paginate ul.pagination {
16825 efrain 8608
  margin-top: 1rem !important;
8609
}
8610
 
8611
.mt-4 {
8612
  margin-top: 1.5rem !important;
8613
}
8614
 
8615
.mt-5 {
8616
  margin-top: 3rem !important;
8617
}
8618
 
8619
.mt-6 {
8620
  margin-top: 4.5rem !important;
8621
}
8622
 
8623
.mt-7 {
8624
  margin-top: 6rem !important;
8625
}
8626
 
8627
.mt-auto {
8628
  margin-top: auto !important;
8629
}
8630
 
8631
.me-0 {
8632
  margin-right: 0 !important;
8633
}
8634
 
8635
.me-1 {
8636
  margin-right: 0.25rem !important;
8637
}
8638
 
8639
.me-2 {
8640
  margin-right: 0.5rem !important;
8641
}
8642
 
8643
.me-3 {
8644
  margin-right: 1rem !important;
8645
}
8646
 
8647
.me-4 {
8648
  margin-right: 1.5rem !important;
8649
}
8650
 
8651
.me-5 {
8652
  margin-right: 3rem !important;
8653
}
8654
 
8655
.me-6 {
8656
  margin-right: 4.5rem !important;
8657
}
8658
 
8659
.me-7 {
8660
  margin-right: 6rem !important;
8661
}
8662
 
8663
.me-auto {
8664
  margin-right: auto !important;
8665
}
8666
 
8667
.mb-0 {
8668
  margin-bottom: 0 !important;
8669
}
8670
 
16848 stevensc 8671
.mb-1,
8672
.example .btn-group {
16825 efrain 8673
  margin-bottom: 0.25rem !important;
8674
}
8675
 
8676
.mb-2 {
8677
  margin-bottom: 0.5rem !important;
8678
}
8679
 
8680
.mb-3 {
8681
  margin-bottom: 1rem !important;
8682
}
8683
 
8684
.mb-4 {
8685
  margin-bottom: 1.5rem !important;
8686
}
8687
 
8688
.mb-5 {
8689
  margin-bottom: 3rem !important;
8690
}
8691
 
8692
.mb-6 {
8693
  margin-bottom: 4.5rem !important;
8694
}
8695
 
8696
.mb-7 {
8697
  margin-bottom: 6rem !important;
8698
}
8699
 
8700
.mb-auto {
8701
  margin-bottom: auto !important;
8702
}
8703
 
8704
.ms-0 {
8705
  margin-left: 0 !important;
8706
}
8707
 
8708
.ms-1 {
8709
  margin-left: 0.25rem !important;
8710
}
8711
 
8712
.ms-2 {
8713
  margin-left: 0.5rem !important;
8714
}
8715
 
8716
.ms-3 {
8717
  margin-left: 1rem !important;
8718
}
8719
 
8720
.ms-4 {
8721
  margin-left: 1.5rem !important;
8722
}
8723
 
8724
.ms-5 {
8725
  margin-left: 3rem !important;
8726
}
8727
 
8728
.ms-6 {
8729
  margin-left: 4.5rem !important;
8730
}
8731
 
8732
.ms-7 {
8733
  margin-left: 6rem !important;
8734
}
8735
 
8736
.ms-auto {
8737
  margin-left: auto !important;
8738
}
8739
 
8740
.m-n1 {
8741
  margin: -0.25rem !important;
8742
}
8743
 
8744
.m-n2 {
8745
  margin: -0.5rem !important;
8746
}
8747
 
8748
.m-n3 {
8749
  margin: -1rem !important;
8750
}
8751
 
8752
.m-n4 {
8753
  margin: -1.5rem !important;
8754
}
8755
 
8756
.m-n5 {
8757
  margin: -3rem !important;
8758
}
8759
 
8760
.m-n6 {
8761
  margin: -4.5rem !important;
8762
}
8763
 
8764
.m-n7 {
8765
  margin: -6rem !important;
8766
}
8767
 
8768
.mx-n1 {
8769
  margin-right: -0.25rem !important;
8770
  margin-left: -0.25rem !important;
8771
}
8772
 
8773
.mx-n2 {
8774
  margin-right: -0.5rem !important;
8775
  margin-left: -0.5rem !important;
8776
}
8777
 
8778
.mx-n3 {
8779
  margin-right: -1rem !important;
8780
  margin-left: -1rem !important;
8781
}
8782
 
8783
.mx-n4 {
8784
  margin-right: -1.5rem !important;
8785
  margin-left: -1.5rem !important;
8786
}
8787
 
8788
.mx-n5 {
8789
  margin-right: -3rem !important;
8790
  margin-left: -3rem !important;
8791
}
8792
 
8793
.mx-n6 {
8794
  margin-right: -4.5rem !important;
8795
  margin-left: -4.5rem !important;
8796
}
8797
 
8798
.mx-n7 {
8799
  margin-right: -6rem !important;
8800
  margin-left: -6rem !important;
8801
}
8802
 
8803
.my-n1 {
8804
  margin-top: -0.25rem !important;
8805
  margin-bottom: -0.25rem !important;
8806
}
8807
 
8808
.my-n2 {
8809
  margin-top: -0.5rem !important;
8810
  margin-bottom: -0.5rem !important;
8811
}
8812
 
8813
.my-n3 {
8814
  margin-top: -1rem !important;
8815
  margin-bottom: -1rem !important;
8816
}
8817
 
8818
.my-n4 {
8819
  margin-top: -1.5rem !important;
8820
  margin-bottom: -1.5rem !important;
8821
}
8822
 
8823
.my-n5 {
8824
  margin-top: -3rem !important;
8825
  margin-bottom: -3rem !important;
8826
}
8827
 
8828
.my-n6 {
8829
  margin-top: -4.5rem !important;
8830
  margin-bottom: -4.5rem !important;
8831
}
8832
 
8833
.my-n7 {
8834
  margin-top: -6rem !important;
8835
  margin-bottom: -6rem !important;
8836
}
8837
 
8838
.mt-n1 {
8839
  margin-top: -0.25rem !important;
8840
}
8841
 
8842
.mt-n2 {
8843
  margin-top: -0.5rem !important;
8844
}
8845
 
8846
.mt-n3 {
8847
  margin-top: -1rem !important;
8848
}
8849
 
8850
.mt-n4 {
8851
  margin-top: -1.5rem !important;
8852
}
8853
 
8854
.mt-n5 {
8855
  margin-top: -3rem !important;
8856
}
8857
 
8858
.mt-n6 {
8859
  margin-top: -4.5rem !important;
8860
}
8861
 
8862
.mt-n7 {
8863
  margin-top: -6rem !important;
8864
}
8865
 
8866
.me-n1 {
8867
  margin-right: -0.25rem !important;
8868
}
8869
 
8870
.me-n2 {
8871
  margin-right: -0.5rem !important;
8872
}
8873
 
8874
.me-n3 {
8875
  margin-right: -1rem !important;
8876
}
8877
 
8878
.me-n4 {
8879
  margin-right: -1.5rem !important;
8880
}
8881
 
8882
.me-n5 {
8883
  margin-right: -3rem !important;
8884
}
8885
 
8886
.me-n6 {
8887
  margin-right: -4.5rem !important;
8888
}
8889
 
8890
.me-n7 {
8891
  margin-right: -6rem !important;
8892
}
8893
 
8894
.mb-n1 {
8895
  margin-bottom: -0.25rem !important;
8896
}
8897
 
8898
.mb-n2 {
8899
  margin-bottom: -0.5rem !important;
8900
}
8901
 
8902
.mb-n3 {
8903
  margin-bottom: -1rem !important;
8904
}
8905
 
8906
.mb-n4 {
8907
  margin-bottom: -1.5rem !important;
8908
}
8909
 
8910
.mb-n5 {
8911
  margin-bottom: -3rem !important;
8912
}
8913
 
8914
.mb-n6 {
8915
  margin-bottom: -4.5rem !important;
8916
}
8917
 
8918
.mb-n7 {
8919
  margin-bottom: -6rem !important;
8920
}
8921
 
8922
.ms-n1 {
8923
  margin-left: -0.25rem !important;
8924
}
8925
 
8926
.ms-n2 {
8927
  margin-left: -0.5rem !important;
8928
}
8929
 
8930
.ms-n3 {
8931
  margin-left: -1rem !important;
8932
}
8933
 
8934
.ms-n4 {
8935
  margin-left: -1.5rem !important;
8936
}
8937
 
8938
.ms-n5 {
8939
  margin-left: -3rem !important;
8940
}
8941
 
8942
.ms-n6 {
8943
  margin-left: -4.5rem !important;
8944
}
8945
 
8946
.ms-n7 {
8947
  margin-left: -6rem !important;
8948
}
8949
 
8950
.p-0 {
8951
  padding: 0 !important;
8952
}
8953
 
8954
.p-1 {
8955
  padding: 0.25rem !important;
8956
}
8957
 
8958
.p-2 {
8959
  padding: 0.5rem !important;
8960
}
8961
 
8962
.p-3 {
8963
  padding: 1rem !important;
8964
}
8965
 
8966
.p-4 {
8967
  padding: 1.5rem !important;
8968
}
8969
 
8970
.p-5 {
8971
  padding: 3rem !important;
8972
}
8973
 
8974
.p-6 {
8975
  padding: 4.5rem !important;
8976
}
8977
 
8978
.p-7 {
8979
  padding: 6rem !important;
8980
}
8981
 
8982
.px-0 {
8983
  padding-right: 0 !important;
8984
  padding-left: 0 !important;
8985
}
8986
 
8987
.px-1 {
8988
  padding-right: 0.25rem !important;
8989
  padding-left: 0.25rem !important;
8990
}
8991
 
8992
.px-2 {
8993
  padding-right: 0.5rem !important;
8994
  padding-left: 0.5rem !important;
8995
}
8996
 
8997
.px-3 {
8998
  padding-right: 1rem !important;
8999
  padding-left: 1rem !important;
9000
}
9001
 
9002
.px-4 {
9003
  padding-right: 1.5rem !important;
9004
  padding-left: 1.5rem !important;
9005
}
9006
 
9007
.px-5 {
9008
  padding-right: 3rem !important;
9009
  padding-left: 3rem !important;
9010
}
9011
 
9012
.px-6 {
9013
  padding-right: 4.5rem !important;
9014
  padding-left: 4.5rem !important;
9015
}
9016
 
9017
.px-7 {
9018
  padding-right: 6rem !important;
9019
  padding-left: 6rem !important;
9020
}
9021
 
9022
.py-0 {
9023
  padding-top: 0 !important;
9024
  padding-bottom: 0 !important;
9025
}
9026
 
9027
.py-1 {
9028
  padding-top: 0.25rem !important;
9029
  padding-bottom: 0.25rem !important;
9030
}
9031
 
9032
.py-2 {
9033
  padding-top: 0.5rem !important;
9034
  padding-bottom: 0.5rem !important;
9035
}
9036
 
9037
.py-3 {
9038
  padding-top: 1rem !important;
9039
  padding-bottom: 1rem !important;
9040
}
9041
 
9042
.py-4 {
9043
  padding-top: 1.5rem !important;
9044
  padding-bottom: 1.5rem !important;
9045
}
9046
 
9047
.py-5 {
9048
  padding-top: 3rem !important;
9049
  padding-bottom: 3rem !important;
9050
}
9051
 
9052
.py-6 {
9053
  padding-top: 4.5rem !important;
9054
  padding-bottom: 4.5rem !important;
9055
}
9056
 
9057
.py-7 {
9058
  padding-top: 6rem !important;
9059
  padding-bottom: 6rem !important;
9060
}
9061
 
9062
.pt-0 {
9063
  padding-top: 0 !important;
9064
}
9065
 
9066
.pt-1 {
9067
  padding-top: 0.25rem !important;
9068
}
9069
 
9070
.pt-2 {
9071
  padding-top: 0.5rem !important;
9072
}
9073
 
9074
.pt-3 {
9075
  padding-top: 1rem !important;
9076
}
9077
 
9078
.pt-4 {
9079
  padding-top: 1.5rem !important;
9080
}
9081
 
9082
.pt-5 {
9083
  padding-top: 3rem !important;
9084
}
9085
 
9086
.pt-6 {
9087
  padding-top: 4.5rem !important;
9088
}
9089
 
9090
.pt-7 {
9091
  padding-top: 6rem !important;
9092
}
9093
 
9094
.pe-0 {
9095
  padding-right: 0 !important;
9096
}
9097
 
9098
.pe-1 {
9099
  padding-right: 0.25rem !important;
9100
}
9101
 
9102
.pe-2 {
9103
  padding-right: 0.5rem !important;
9104
}
9105
 
9106
.pe-3 {
9107
  padding-right: 1rem !important;
9108
}
9109
 
9110
.pe-4 {
9111
  padding-right: 1.5rem !important;
9112
}
9113
 
9114
.pe-5 {
9115
  padding-right: 3rem !important;
9116
}
9117
 
9118
.pe-6 {
9119
  padding-right: 4.5rem !important;
9120
}
9121
 
9122
.pe-7 {
9123
  padding-right: 6rem !important;
9124
}
9125
 
9126
.pb-0 {
9127
  padding-bottom: 0 !important;
9128
}
9129
 
9130
.pb-1 {
9131
  padding-bottom: 0.25rem !important;
9132
}
9133
 
9134
.pb-2 {
9135
  padding-bottom: 0.5rem !important;
9136
}
9137
 
9138
.pb-3 {
9139
  padding-bottom: 1rem !important;
9140
}
9141
 
9142
.pb-4 {
9143
  padding-bottom: 1.5rem !important;
9144
}
9145
 
9146
.pb-5 {
9147
  padding-bottom: 3rem !important;
9148
}
9149
 
9150
.pb-6 {
9151
  padding-bottom: 4.5rem !important;
9152
}
9153
 
9154
.pb-7 {
9155
  padding-bottom: 6rem !important;
9156
}
9157
 
9158
.ps-0 {
9159
  padding-left: 0 !important;
9160
}
9161
 
9162
.ps-1 {
9163
  padding-left: 0.25rem !important;
9164
}
9165
 
9166
.ps-2 {
9167
  padding-left: 0.5rem !important;
9168
}
9169
 
9170
.ps-3 {
9171
  padding-left: 1rem !important;
9172
}
9173
 
9174
.ps-4 {
9175
  padding-left: 1.5rem !important;
9176
}
9177
 
9178
.ps-5 {
9179
  padding-left: 3rem !important;
9180
}
9181
 
9182
.ps-6 {
9183
  padding-left: 4.5rem !important;
9184
}
9185
 
9186
.ps-7 {
9187
  padding-left: 6rem !important;
9188
}
9189
 
9190
.gap-0 {
9191
  gap: 0 !important;
9192
}
9193
 
9194
.gap-1 {
9195
  gap: 0.25rem !important;
9196
}
9197
 
9198
.gap-2 {
9199
  gap: 0.5rem !important;
9200
}
9201
 
9202
.gap-3 {
9203
  gap: 1rem !important;
9204
}
9205
 
9206
.gap-4 {
9207
  gap: 1.5rem !important;
9208
}
9209
 
9210
.gap-5 {
9211
  gap: 3rem !important;
9212
}
9213
 
9214
.gap-6 {
9215
  gap: 4.5rem !important;
9216
}
9217
 
9218
.gap-7 {
9219
  gap: 6rem !important;
9220
}
9221
 
9222
.font-monospace {
9223
  font-family: var(--bs-font-monospace) !important;
9224
}
9225
 
9226
.fs-1 {
9227
  font-size: calc(1.375rem + 1.5vw) !important;
9228
}
9229
 
9230
.fs-2 {
9231
  font-size: calc(1.325rem + 0.9vw) !important;
9232
}
9233
 
9234
.fs-3 {
9235
  font-size: calc(1.275rem + 0.3vw) !important;
9236
}
9237
 
9238
.fs-4 {
9239
  font-size: 1.25rem !important;
9240
}
9241
 
9242
.fs-5 {
9243
  font-size: 1rem !important;
9244
}
9245
 
9246
.fs-6 {
9247
  font-size: 0.875rem !important;
9248
}
9249
 
9250
.fst-italic {
9251
  font-style: italic !important;
9252
}
9253
 
9254
.fst-normal {
9255
  font-style: normal !important;
9256
}
9257
 
9258
.fw-light {
9259
  font-weight: 300 !important;
9260
}
9261
 
9262
.fw-lighter {
9263
  font-weight: lighter !important;
9264
}
9265
 
9266
.fw-normal {
9267
  font-weight: 400 !important;
9268
}
9269
 
9270
.fw-bold {
9271
  font-weight: 500 !important;
9272
}
9273
 
9274
.fw-semibold {
9275
  font-weight: 600 !important;
9276
}
9277
 
9278
.fw-bolder {
9279
  font-weight: 700 !important;
9280
}
9281
 
9282
.lh-1 {
9283
  line-height: 1 !important;
9284
}
9285
 
9286
.lh-sm {
9287
  line-height: 1.25 !important;
9288
}
9289
 
9290
.lh-base {
9291
  line-height: 1.5 !important;
9292
}
9293
 
9294
.lh-lg {
9295
  line-height: 2 !important;
9296
}
9297
 
9298
.text-start {
9299
  text-align: left !important;
9300
}
9301
 
9302
.text-end {
9303
  text-align: right !important;
9304
}
9305
 
9306
.text-center {
9307
  text-align: center !important;
9308
}
9309
 
9310
.text-decoration-none {
9311
  text-decoration: none !important;
9312
}
9313
 
9314
.text-decoration-underline {
9315
  text-decoration: underline !important;
9316
}
9317
 
9318
.text-decoration-line-through {
9319
  text-decoration: line-through !important;
9320
}
9321
 
9322
.text-lowercase {
9323
  text-transform: lowercase !important;
9324
}
9325
 
9326
.text-uppercase {
9327
  text-transform: uppercase !important;
9328
}
9329
 
9330
.text-capitalize {
9331
  text-transform: capitalize !important;
9332
}
9333
 
9334
.text-wrap {
9335
  white-space: normal !important;
9336
}
9337
 
9338
.text-nowrap {
9339
  white-space: nowrap !important;
9340
}
9341
 
9342
/* rtl:begin:remove */
9343
.text-break {
9344
  word-wrap: break-word !important;
9345
  word-break: break-word !important;
9346
}
9347
 
9348
/* rtl:end:remove */
9349
.text-primary {
9350
  --bs-text-opacity: 1;
9351
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
9352
}
9353
 
9354
.text-secondary {
9355
  --bs-text-opacity: 1;
9356
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
9357
}
9358
 
9359
.text-success {
9360
  --bs-text-opacity: 1;
9361
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
9362
}
9363
 
9364
.text-info {
9365
  --bs-text-opacity: 1;
9366
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
9367
}
9368
 
9369
.text-warning {
9370
  --bs-text-opacity: 1;
9371
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
9372
}
9373
 
9374
.text-danger {
9375
  --bs-text-opacity: 1;
9376
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
9377
}
9378
 
9379
.text-light {
9380
  --bs-text-opacity: 1;
9381
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
9382
}
9383
 
9384
.text-dark {
9385
  --bs-text-opacity: 1;
9386
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
9387
}
9388
 
9389
.text-black {
9390
  --bs-text-opacity: 1;
9391
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
9392
}
9393
 
9394
.text-white {
9395
  --bs-text-opacity: 1;
9396
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
9397
}
9398
 
9399
.text-body {
9400
  --bs-text-opacity: 1;
9401
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
9402
}
9403
 
16848 stevensc 9404
.text-muted,
9405
.dropzone.dz-clickable .dz-message * {
16825 efrain 9406
  --bs-text-opacity: 1;
9407
  color: #7987a1 !important;
9408
}
9409
 
9410
.text-black-50 {
9411
  --bs-text-opacity: 1;
9412
  color: rgba(0, 0, 0, 0.5) !important;
9413
}
9414
 
9415
.text-white-50 {
9416
  --bs-text-opacity: 1;
9417
  color: rgba(255, 255, 255, 0.5) !important;
9418
}
9419
 
9420
.text-reset {
9421
  --bs-text-opacity: 1;
9422
  color: inherit !important;
9423
}
9424
 
9425
.text-opacity-25 {
9426
  --bs-text-opacity: 0.25;
9427
}
9428
 
9429
.text-opacity-50 {
9430
  --bs-text-opacity: 0.5;
9431
}
9432
 
9433
.text-opacity-75 {
9434
  --bs-text-opacity: 0.75;
9435
}
9436
 
9437
.text-opacity-100 {
9438
  --bs-text-opacity: 1;
9439
}
9440
 
9441
.bg-primary {
9442
  --bs-bg-opacity: 1;
9443
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
9444
}
9445
 
9446
.bg-secondary {
9447
  --bs-bg-opacity: 1;
9448
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
9449
}
9450
 
9451
.bg-success {
9452
  --bs-bg-opacity: 1;
9453
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
9454
}
9455
 
9456
.bg-info {
9457
  --bs-bg-opacity: 1;
9458
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
9459
}
9460
 
9461
.bg-warning {
9462
  --bs-bg-opacity: 1;
9463
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
9464
}
9465
 
9466
.bg-danger {
9467
  --bs-bg-opacity: 1;
9468
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
9469
}
9470
 
9471
.bg-light {
9472
  --bs-bg-opacity: 1;
9473
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
9474
}
9475
 
9476
.bg-dark {
9477
  --bs-bg-opacity: 1;
9478
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
9479
}
9480
 
9481
.bg-black {
9482
  --bs-bg-opacity: 1;
9483
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
9484
}
9485
 
9486
.bg-white {
9487
  --bs-bg-opacity: 1;
9488
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
9489
}
9490
 
9491
.bg-body {
9492
  --bs-bg-opacity: 1;
9493
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
9494
}
9495
 
9496
.bg-transparent {
9497
  --bs-bg-opacity: 1;
9498
  background-color: transparent !important;
9499
}
9500
 
9501
.bg-opacity-10 {
9502
  --bs-bg-opacity: 0.1;
9503
}
9504
 
9505
.bg-opacity-25 {
9506
  --bs-bg-opacity: 0.25;
9507
}
9508
 
9509
.bg-opacity-50 {
9510
  --bs-bg-opacity: 0.5;
9511
}
9512
 
9513
.bg-opacity-75 {
9514
  --bs-bg-opacity: 0.75;
9515
}
9516
 
9517
.bg-opacity-100 {
9518
  --bs-bg-opacity: 1;
9519
}
9520
 
9521
.bg-gradient {
9522
  background-image: var(--bs-gradient) !important;
9523
}
9524
 
9525
.user-select-all {
9526
  user-select: all !important;
9527
}
9528
 
9529
.user-select-auto {
9530
  user-select: auto !important;
9531
}
9532
 
9533
.user-select-none {
9534
  user-select: none !important;
9535
}
9536
 
9537
.pe-none {
9538
  pointer-events: none !important;
9539
}
9540
 
9541
.pe-auto {
9542
  pointer-events: auto !important;
9543
}
9544
 
9545
.rounded {
9546
  border-radius: var(--bs-border-radius) !important;
9547
}
9548
 
9549
.rounded-0 {
9550
  border-radius: 0 !important;
9551
}
9552
 
9553
.rounded-1 {
9554
  border-radius: var(--bs-border-radius-sm) !important;
9555
}
9556
 
9557
.rounded-2 {
9558
  border-radius: var(--bs-border-radius) !important;
9559
}
9560
 
9561
.rounded-3 {
9562
  border-radius: var(--bs-border-radius-lg) !important;
9563
}
9564
 
9565
.rounded-4 {
9566
  border-radius: var(--bs-border-radius-xl) !important;
9567
}
9568
 
9569
.rounded-5 {
9570
  border-radius: var(--bs-border-radius-2xl) !important;
9571
}
9572
 
9573
.rounded-circle {
9574
  border-radius: 50% !important;
9575
}
9576
 
9577
.rounded-pill {
9578
  border-radius: var(--bs-border-radius-pill) !important;
9579
}
9580
 
9581
.rounded-top {
9582
  border-top-left-radius: var(--bs-border-radius) !important;
9583
  border-top-right-radius: var(--bs-border-radius) !important;
9584
}
9585
 
9586
.rounded-end {
9587
  border-top-right-radius: var(--bs-border-radius) !important;
9588
  border-bottom-right-radius: var(--bs-border-radius) !important;
9589
}
9590
 
9591
.rounded-bottom {
9592
  border-bottom-right-radius: var(--bs-border-radius) !important;
9593
  border-bottom-left-radius: var(--bs-border-radius) !important;
9594
}
9595
 
9596
.rounded-start {
9597
  border-bottom-left-radius: var(--bs-border-radius) !important;
9598
  border-top-left-radius: var(--bs-border-radius) !important;
9599
}
9600
 
9601
.visible {
9602
  visibility: visible !important;
9603
}
9604
 
9605
.invisible {
9606
  visibility: hidden !important;
9607
}
9608
 
9609
.bg-gray-100 {
9610
  background-color: #f8f9fa !important;
9611
}
9612
 
9613
.bg-gray-200 {
9614
  background-color: #e9ecef !important;
9615
}
9616
 
9617
.bg-gray-300 {
9618
  background-color: #dee2e6 !important;
9619
}
9620
 
9621
.bg-gray-400 {
9622
  background-color: #cbd1db !important;
9623
}
9624
 
9625
.bg-gray-500 {
9626
  background-color: #aeb7c5 !important;
9627
}
9628
 
9629
.bg-gray-600 {
9630
  background-color: #7987a1 !important;
9631
}
9632
 
9633
.bg-gray-700 {
9634
  background-color: #41516c !important;
9635
}
9636
 
9637
.bg-gray-800 {
9638
  background-color: #212a3a !important;
9639
}
9640
 
9641
.bg-gray-900 {
9642
  background-color: #060c17 !important;
9643
}
9644
 
9645
@media (min-width: 576px) {
9646
  .float-sm-start {
9647
    float: left !important;
9648
  }
16848 stevensc 9649
 
16825 efrain 9650
  .float-sm-end {
9651
    float: right !important;
9652
  }
16848 stevensc 9653
 
16825 efrain 9654
  .float-sm-none {
9655
    float: none !important;
9656
  }
16848 stevensc 9657
 
16825 efrain 9658
  .d-sm-inline {
9659
    display: inline !important;
9660
  }
16848 stevensc 9661
 
16825 efrain 9662
  .d-sm-inline-block {
9663
    display: inline-block !important;
9664
  }
16848 stevensc 9665
 
16825 efrain 9666
  .d-sm-block {
9667
    display: block !important;
9668
  }
16848 stevensc 9669
 
16825 efrain 9670
  .d-sm-grid {
9671
    display: grid !important;
9672
  }
16848 stevensc 9673
 
16825 efrain 9674
  .d-sm-table {
9675
    display: table !important;
9676
  }
16848 stevensc 9677
 
16825 efrain 9678
  .d-sm-table-row {
9679
    display: table-row !important;
9680
  }
16848 stevensc 9681
 
16825 efrain 9682
  .d-sm-table-cell {
9683
    display: table-cell !important;
9684
  }
16848 stevensc 9685
 
16825 efrain 9686
  .d-sm-flex {
9687
    display: flex !important;
9688
  }
16848 stevensc 9689
 
16825 efrain 9690
  .d-sm-inline-flex {
9691
    display: inline-flex !important;
9692
  }
16848 stevensc 9693
 
16825 efrain 9694
  .d-sm-none {
9695
    display: none !important;
9696
  }
16848 stevensc 9697
 
16825 efrain 9698
  .border-sm {
9699
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9700
  }
16848 stevensc 9701
 
16825 efrain 9702
  .border-sm-0 {
9703
    border: 0 !important;
9704
  }
16848 stevensc 9705
 
16825 efrain 9706
  .border-top-sm {
9707
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9708
  }
16848 stevensc 9709
 
16825 efrain 9710
  .border-top-sm-0 {
9711
    border-top: 0 !important;
9712
  }
16848 stevensc 9713
 
16825 efrain 9714
  .border-end-sm {
9715
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9716
  }
16848 stevensc 9717
 
16825 efrain 9718
  .border-end-sm-0 {
9719
    border-right: 0 !important;
9720
  }
16848 stevensc 9721
 
16825 efrain 9722
  .border-bottom-sm {
9723
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9724
  }
16848 stevensc 9725
 
16825 efrain 9726
  .border-bottom-sm-0 {
9727
    border-bottom: 0 !important;
9728
  }
16848 stevensc 9729
 
16825 efrain 9730
  .border-start-sm {
9731
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
9732
  }
16848 stevensc 9733
 
16825 efrain 9734
  .border-start-sm-0 {
9735
    border-left: 0 !important;
9736
  }
16848 stevensc 9737
 
16825 efrain 9738
  .flex-sm-fill {
9739
    flex: 1 1 auto !important;
9740
  }
16848 stevensc 9741
 
16825 efrain 9742
  .flex-sm-row {
9743
    flex-direction: row !important;
9744
  }
16848 stevensc 9745
 
16825 efrain 9746
  .flex-sm-column {
9747
    flex-direction: column !important;
9748
  }
16848 stevensc 9749
 
16825 efrain 9750
  .flex-sm-row-reverse {
9751
    flex-direction: row-reverse !important;
9752
  }
16848 stevensc 9753
 
16825 efrain 9754
  .flex-sm-column-reverse {
9755
    flex-direction: column-reverse !important;
9756
  }
16848 stevensc 9757
 
16825 efrain 9758
  .flex-sm-grow-0 {
9759
    flex-grow: 0 !important;
9760
  }
16848 stevensc 9761
 
16825 efrain 9762
  .flex-sm-grow-1 {
9763
    flex-grow: 1 !important;
9764
  }
16848 stevensc 9765
 
16825 efrain 9766
  .flex-sm-shrink-0 {
9767
    flex-shrink: 0 !important;
9768
  }
16848 stevensc 9769
 
16825 efrain 9770
  .flex-sm-shrink-1 {
9771
    flex-shrink: 1 !important;
9772
  }
16848 stevensc 9773
 
16825 efrain 9774
  .flex-sm-wrap {
9775
    flex-wrap: wrap !important;
9776
  }
16848 stevensc 9777
 
16825 efrain 9778
  .flex-sm-nowrap {
9779
    flex-wrap: nowrap !important;
9780
  }
16848 stevensc 9781
 
16825 efrain 9782
  .flex-sm-wrap-reverse {
9783
    flex-wrap: wrap-reverse !important;
9784
  }
16848 stevensc 9785
 
16825 efrain 9786
  .justify-content-sm-start {
9787
    justify-content: flex-start !important;
9788
  }
16848 stevensc 9789
 
16825 efrain 9790
  .justify-content-sm-end {
9791
    justify-content: flex-end !important;
9792
  }
16848 stevensc 9793
 
16825 efrain 9794
  .justify-content-sm-center {
9795
    justify-content: center !important;
9796
  }
16848 stevensc 9797
 
16825 efrain 9798
  .justify-content-sm-between {
9799
    justify-content: space-between !important;
9800
  }
16848 stevensc 9801
 
16825 efrain 9802
  .justify-content-sm-around {
9803
    justify-content: space-around !important;
9804
  }
16848 stevensc 9805
 
16825 efrain 9806
  .justify-content-sm-evenly {
9807
    justify-content: space-evenly !important;
9808
  }
16848 stevensc 9809
 
16825 efrain 9810
  .align-items-sm-start {
9811
    align-items: flex-start !important;
9812
  }
16848 stevensc 9813
 
16825 efrain 9814
  .align-items-sm-end {
9815
    align-items: flex-end !important;
9816
  }
16848 stevensc 9817
 
16825 efrain 9818
  .align-items-sm-center {
9819
    align-items: center !important;
9820
  }
16848 stevensc 9821
 
16825 efrain 9822
  .align-items-sm-baseline {
9823
    align-items: baseline !important;
9824
  }
16848 stevensc 9825
 
16825 efrain 9826
  .align-items-sm-stretch {
9827
    align-items: stretch !important;
9828
  }
16848 stevensc 9829
 
16825 efrain 9830
  .align-content-sm-start {
9831
    align-content: flex-start !important;
9832
  }
16848 stevensc 9833
 
16825 efrain 9834
  .align-content-sm-end {
9835
    align-content: flex-end !important;
9836
  }
16848 stevensc 9837
 
16825 efrain 9838
  .align-content-sm-center {
9839
    align-content: center !important;
9840
  }
16848 stevensc 9841
 
16825 efrain 9842
  .align-content-sm-between {
9843
    align-content: space-between !important;
9844
  }
16848 stevensc 9845
 
16825 efrain 9846
  .align-content-sm-around {
9847
    align-content: space-around !important;
9848
  }
16848 stevensc 9849
 
16825 efrain 9850
  .align-content-sm-stretch {
9851
    align-content: stretch !important;
9852
  }
16848 stevensc 9853
 
16825 efrain 9854
  .align-self-sm-auto {
9855
    align-self: auto !important;
9856
  }
16848 stevensc 9857
 
16825 efrain 9858
  .align-self-sm-start {
9859
    align-self: flex-start !important;
9860
  }
16848 stevensc 9861
 
16825 efrain 9862
  .align-self-sm-end {
9863
    align-self: flex-end !important;
9864
  }
16848 stevensc 9865
 
16825 efrain 9866
  .align-self-sm-center {
9867
    align-self: center !important;
9868
  }
16848 stevensc 9869
 
16825 efrain 9870
  .align-self-sm-baseline {
9871
    align-self: baseline !important;
9872
  }
16848 stevensc 9873
 
16825 efrain 9874
  .align-self-sm-stretch {
9875
    align-self: stretch !important;
9876
  }
16848 stevensc 9877
 
16825 efrain 9878
  .order-sm-first {
9879
    order: -1 !important;
9880
  }
16848 stevensc 9881
 
16825 efrain 9882
  .order-sm-0 {
9883
    order: 0 !important;
9884
  }
16848 stevensc 9885
 
16825 efrain 9886
  .order-sm-1 {
9887
    order: 1 !important;
9888
  }
16848 stevensc 9889
 
16825 efrain 9890
  .order-sm-2 {
9891
    order: 2 !important;
9892
  }
16848 stevensc 9893
 
16825 efrain 9894
  .order-sm-3 {
9895
    order: 3 !important;
9896
  }
16848 stevensc 9897
 
16825 efrain 9898
  .order-sm-4 {
9899
    order: 4 !important;
9900
  }
16848 stevensc 9901
 
16825 efrain 9902
  .order-sm-5 {
9903
    order: 5 !important;
9904
  }
16848 stevensc 9905
 
16825 efrain 9906
  .order-sm-last {
9907
    order: 6 !important;
9908
  }
16848 stevensc 9909
 
16825 efrain 9910
  .m-sm-0 {
9911
    margin: 0 !important;
9912
  }
16848 stevensc 9913
 
16825 efrain 9914
  .m-sm-1 {
9915
    margin: 0.25rem !important;
9916
  }
16848 stevensc 9917
 
16825 efrain 9918
  .m-sm-2 {
9919
    margin: 0.5rem !important;
9920
  }
16848 stevensc 9921
 
16825 efrain 9922
  .m-sm-3 {
9923
    margin: 1rem !important;
9924
  }
16848 stevensc 9925
 
16825 efrain 9926
  .m-sm-4 {
9927
    margin: 1.5rem !important;
9928
  }
16848 stevensc 9929
 
16825 efrain 9930
  .m-sm-5 {
9931
    margin: 3rem !important;
9932
  }
16848 stevensc 9933
 
16825 efrain 9934
  .m-sm-6 {
9935
    margin: 4.5rem !important;
9936
  }
16848 stevensc 9937
 
16825 efrain 9938
  .m-sm-7 {
9939
    margin: 6rem !important;
9940
  }
16848 stevensc 9941
 
16825 efrain 9942
  .m-sm-auto {
9943
    margin: auto !important;
9944
  }
16848 stevensc 9945
 
16825 efrain 9946
  .mx-sm-0 {
9947
    margin-right: 0 !important;
9948
    margin-left: 0 !important;
9949
  }
16848 stevensc 9950
 
16825 efrain 9951
  .mx-sm-1 {
9952
    margin-right: 0.25rem !important;
9953
    margin-left: 0.25rem !important;
9954
  }
16848 stevensc 9955
 
16825 efrain 9956
  .mx-sm-2 {
9957
    margin-right: 0.5rem !important;
9958
    margin-left: 0.5rem !important;
9959
  }
16848 stevensc 9960
 
16825 efrain 9961
  .mx-sm-3 {
9962
    margin-right: 1rem !important;
9963
    margin-left: 1rem !important;
9964
  }
16848 stevensc 9965
 
16825 efrain 9966
  .mx-sm-4 {
9967
    margin-right: 1.5rem !important;
9968
    margin-left: 1.5rem !important;
9969
  }
16848 stevensc 9970
 
16825 efrain 9971
  .mx-sm-5 {
9972
    margin-right: 3rem !important;
9973
    margin-left: 3rem !important;
9974
  }
16848 stevensc 9975
 
16825 efrain 9976
  .mx-sm-6 {
9977
    margin-right: 4.5rem !important;
9978
    margin-left: 4.5rem !important;
9979
  }
16848 stevensc 9980
 
16825 efrain 9981
  .mx-sm-7 {
9982
    margin-right: 6rem !important;
9983
    margin-left: 6rem !important;
9984
  }
16848 stevensc 9985
 
16825 efrain 9986
  .mx-sm-auto {
9987
    margin-right: auto !important;
9988
    margin-left: auto !important;
9989
  }
16848 stevensc 9990
 
16825 efrain 9991
  .my-sm-0 {
9992
    margin-top: 0 !important;
9993
    margin-bottom: 0 !important;
9994
  }
16848 stevensc 9995
 
16825 efrain 9996
  .my-sm-1 {
9997
    margin-top: 0.25rem !important;
9998
    margin-bottom: 0.25rem !important;
9999
  }
16848 stevensc 10000
 
16825 efrain 10001
  .my-sm-2 {
10002
    margin-top: 0.5rem !important;
10003
    margin-bottom: 0.5rem !important;
10004
  }
16848 stevensc 10005
 
16825 efrain 10006
  .my-sm-3 {
10007
    margin-top: 1rem !important;
10008
    margin-bottom: 1rem !important;
10009
  }
16848 stevensc 10010
 
16825 efrain 10011
  .my-sm-4 {
10012
    margin-top: 1.5rem !important;
10013
    margin-bottom: 1.5rem !important;
10014
  }
16848 stevensc 10015
 
16825 efrain 10016
  .my-sm-5 {
10017
    margin-top: 3rem !important;
10018
    margin-bottom: 3rem !important;
10019
  }
16848 stevensc 10020
 
16825 efrain 10021
  .my-sm-6 {
10022
    margin-top: 4.5rem !important;
10023
    margin-bottom: 4.5rem !important;
10024
  }
16848 stevensc 10025
 
16825 efrain 10026
  .my-sm-7 {
10027
    margin-top: 6rem !important;
10028
    margin-bottom: 6rem !important;
10029
  }
16848 stevensc 10030
 
16825 efrain 10031
  .my-sm-auto {
10032
    margin-top: auto !important;
10033
    margin-bottom: auto !important;
10034
  }
16848 stevensc 10035
 
16825 efrain 10036
  .mt-sm-0 {
10037
    margin-top: 0 !important;
10038
  }
16848 stevensc 10039
 
16825 efrain 10040
  .mt-sm-1 {
10041
    margin-top: 0.25rem !important;
10042
  }
16848 stevensc 10043
 
16825 efrain 10044
  .mt-sm-2 {
10045
    margin-top: 0.5rem !important;
10046
  }
16848 stevensc 10047
 
16825 efrain 10048
  .mt-sm-3 {
10049
    margin-top: 1rem !important;
10050
  }
16848 stevensc 10051
 
16825 efrain 10052
  .mt-sm-4 {
10053
    margin-top: 1.5rem !important;
10054
  }
16848 stevensc 10055
 
16825 efrain 10056
  .mt-sm-5 {
10057
    margin-top: 3rem !important;
10058
  }
16848 stevensc 10059
 
16825 efrain 10060
  .mt-sm-6 {
10061
    margin-top: 4.5rem !important;
10062
  }
16848 stevensc 10063
 
16825 efrain 10064
  .mt-sm-7 {
10065
    margin-top: 6rem !important;
10066
  }
16848 stevensc 10067
 
16825 efrain 10068
  .mt-sm-auto {
10069
    margin-top: auto !important;
10070
  }
16848 stevensc 10071
 
16825 efrain 10072
  .me-sm-0 {
10073
    margin-right: 0 !important;
10074
  }
16848 stevensc 10075
 
16825 efrain 10076
  .me-sm-1 {
10077
    margin-right: 0.25rem !important;
10078
  }
16848 stevensc 10079
 
16825 efrain 10080
  .me-sm-2 {
10081
    margin-right: 0.5rem !important;
10082
  }
16848 stevensc 10083
 
16825 efrain 10084
  .me-sm-3 {
10085
    margin-right: 1rem !important;
10086
  }
16848 stevensc 10087
 
16825 efrain 10088
  .me-sm-4 {
10089
    margin-right: 1.5rem !important;
10090
  }
16848 stevensc 10091
 
16825 efrain 10092
  .me-sm-5 {
10093
    margin-right: 3rem !important;
10094
  }
16848 stevensc 10095
 
16825 efrain 10096
  .me-sm-6 {
10097
    margin-right: 4.5rem !important;
10098
  }
16848 stevensc 10099
 
16825 efrain 10100
  .me-sm-7 {
10101
    margin-right: 6rem !important;
10102
  }
16848 stevensc 10103
 
16825 efrain 10104
  .me-sm-auto {
10105
    margin-right: auto !important;
10106
  }
16848 stevensc 10107
 
16825 efrain 10108
  .mb-sm-0 {
10109
    margin-bottom: 0 !important;
10110
  }
16848 stevensc 10111
 
16825 efrain 10112
  .mb-sm-1 {
10113
    margin-bottom: 0.25rem !important;
10114
  }
16848 stevensc 10115
 
16825 efrain 10116
  .mb-sm-2 {
10117
    margin-bottom: 0.5rem !important;
10118
  }
16848 stevensc 10119
 
16825 efrain 10120
  .mb-sm-3 {
10121
    margin-bottom: 1rem !important;
10122
  }
16848 stevensc 10123
 
16825 efrain 10124
  .mb-sm-4 {
10125
    margin-bottom: 1.5rem !important;
10126
  }
16848 stevensc 10127
 
16825 efrain 10128
  .mb-sm-5 {
10129
    margin-bottom: 3rem !important;
10130
  }
16848 stevensc 10131
 
16825 efrain 10132
  .mb-sm-6 {
10133
    margin-bottom: 4.5rem !important;
10134
  }
16848 stevensc 10135
 
16825 efrain 10136
  .mb-sm-7 {
10137
    margin-bottom: 6rem !important;
10138
  }
16848 stevensc 10139
 
16825 efrain 10140
  .mb-sm-auto {
10141
    margin-bottom: auto !important;
10142
  }
16848 stevensc 10143
 
16825 efrain 10144
  .ms-sm-0 {
10145
    margin-left: 0 !important;
10146
  }
16848 stevensc 10147
 
16825 efrain 10148
  .ms-sm-1 {
10149
    margin-left: 0.25rem !important;
10150
  }
16848 stevensc 10151
 
16825 efrain 10152
  .ms-sm-2 {
10153
    margin-left: 0.5rem !important;
10154
  }
16848 stevensc 10155
 
16825 efrain 10156
  .ms-sm-3 {
10157
    margin-left: 1rem !important;
10158
  }
16848 stevensc 10159
 
16825 efrain 10160
  .ms-sm-4 {
10161
    margin-left: 1.5rem !important;
10162
  }
16848 stevensc 10163
 
16825 efrain 10164
  .ms-sm-5 {
10165
    margin-left: 3rem !important;
10166
  }
16848 stevensc 10167
 
16825 efrain 10168
  .ms-sm-6 {
10169
    margin-left: 4.5rem !important;
10170
  }
16848 stevensc 10171
 
16825 efrain 10172
  .ms-sm-7 {
10173
    margin-left: 6rem !important;
10174
  }
16848 stevensc 10175
 
16825 efrain 10176
  .ms-sm-auto {
10177
    margin-left: auto !important;
10178
  }
16848 stevensc 10179
 
16825 efrain 10180
  .m-sm-n1 {
10181
    margin: -0.25rem !important;
10182
  }
16848 stevensc 10183
 
16825 efrain 10184
  .m-sm-n2 {
10185
    margin: -0.5rem !important;
10186
  }
16848 stevensc 10187
 
16825 efrain 10188
  .m-sm-n3 {
10189
    margin: -1rem !important;
10190
  }
16848 stevensc 10191
 
16825 efrain 10192
  .m-sm-n4 {
10193
    margin: -1.5rem !important;
10194
  }
16848 stevensc 10195
 
16825 efrain 10196
  .m-sm-n5 {
10197
    margin: -3rem !important;
10198
  }
16848 stevensc 10199
 
16825 efrain 10200
  .m-sm-n6 {
10201
    margin: -4.5rem !important;
10202
  }
16848 stevensc 10203
 
16825 efrain 10204
  .m-sm-n7 {
10205
    margin: -6rem !important;
10206
  }
16848 stevensc 10207
 
16825 efrain 10208
  .mx-sm-n1 {
10209
    margin-right: -0.25rem !important;
10210
    margin-left: -0.25rem !important;
10211
  }
16848 stevensc 10212
 
16825 efrain 10213
  .mx-sm-n2 {
10214
    margin-right: -0.5rem !important;
10215
    margin-left: -0.5rem !important;
10216
  }
16848 stevensc 10217
 
16825 efrain 10218
  .mx-sm-n3 {
10219
    margin-right: -1rem !important;
10220
    margin-left: -1rem !important;
10221
  }
16848 stevensc 10222
 
16825 efrain 10223
  .mx-sm-n4 {
10224
    margin-right: -1.5rem !important;
10225
    margin-left: -1.5rem !important;
10226
  }
16848 stevensc 10227
 
16825 efrain 10228
  .mx-sm-n5 {
10229
    margin-right: -3rem !important;
10230
    margin-left: -3rem !important;
10231
  }
16848 stevensc 10232
 
16825 efrain 10233
  .mx-sm-n6 {
10234
    margin-right: -4.5rem !important;
10235
    margin-left: -4.5rem !important;
10236
  }
16848 stevensc 10237
 
16825 efrain 10238
  .mx-sm-n7 {
10239
    margin-right: -6rem !important;
10240
    margin-left: -6rem !important;
10241
  }
16848 stevensc 10242
 
16825 efrain 10243
  .my-sm-n1 {
10244
    margin-top: -0.25rem !important;
10245
    margin-bottom: -0.25rem !important;
10246
  }
16848 stevensc 10247
 
16825 efrain 10248
  .my-sm-n2 {
10249
    margin-top: -0.5rem !important;
10250
    margin-bottom: -0.5rem !important;
10251
  }
16848 stevensc 10252
 
16825 efrain 10253
  .my-sm-n3 {
10254
    margin-top: -1rem !important;
10255
    margin-bottom: -1rem !important;
10256
  }
16848 stevensc 10257
 
16825 efrain 10258
  .my-sm-n4 {
10259
    margin-top: -1.5rem !important;
10260
    margin-bottom: -1.5rem !important;
10261
  }
16848 stevensc 10262
 
16825 efrain 10263
  .my-sm-n5 {
10264
    margin-top: -3rem !important;
10265
    margin-bottom: -3rem !important;
10266
  }
16848 stevensc 10267
 
16825 efrain 10268
  .my-sm-n6 {
10269
    margin-top: -4.5rem !important;
10270
    margin-bottom: -4.5rem !important;
10271
  }
16848 stevensc 10272
 
16825 efrain 10273
  .my-sm-n7 {
10274
    margin-top: -6rem !important;
10275
    margin-bottom: -6rem !important;
10276
  }
16848 stevensc 10277
 
16825 efrain 10278
  .mt-sm-n1 {
10279
    margin-top: -0.25rem !important;
10280
  }
16848 stevensc 10281
 
16825 efrain 10282
  .mt-sm-n2 {
10283
    margin-top: -0.5rem !important;
10284
  }
16848 stevensc 10285
 
16825 efrain 10286
  .mt-sm-n3 {
10287
    margin-top: -1rem !important;
10288
  }
16848 stevensc 10289
 
16825 efrain 10290
  .mt-sm-n4 {
10291
    margin-top: -1.5rem !important;
10292
  }
16848 stevensc 10293
 
16825 efrain 10294
  .mt-sm-n5 {
10295
    margin-top: -3rem !important;
10296
  }
16848 stevensc 10297
 
16825 efrain 10298
  .mt-sm-n6 {
10299
    margin-top: -4.5rem !important;
10300
  }
16848 stevensc 10301
 
16825 efrain 10302
  .mt-sm-n7 {
10303
    margin-top: -6rem !important;
10304
  }
16848 stevensc 10305
 
16825 efrain 10306
  .me-sm-n1 {
10307
    margin-right: -0.25rem !important;
10308
  }
16848 stevensc 10309
 
16825 efrain 10310
  .me-sm-n2 {
10311
    margin-right: -0.5rem !important;
10312
  }
16848 stevensc 10313
 
16825 efrain 10314
  .me-sm-n3 {
10315
    margin-right: -1rem !important;
10316
  }
16848 stevensc 10317
 
16825 efrain 10318
  .me-sm-n4 {
10319
    margin-right: -1.5rem !important;
10320
  }
16848 stevensc 10321
 
16825 efrain 10322
  .me-sm-n5 {
10323
    margin-right: -3rem !important;
10324
  }
16848 stevensc 10325
 
16825 efrain 10326
  .me-sm-n6 {
10327
    margin-right: -4.5rem !important;
10328
  }
16848 stevensc 10329
 
16825 efrain 10330
  .me-sm-n7 {
10331
    margin-right: -6rem !important;
10332
  }
16848 stevensc 10333
 
16825 efrain 10334
  .mb-sm-n1 {
10335
    margin-bottom: -0.25rem !important;
10336
  }
16848 stevensc 10337
 
16825 efrain 10338
  .mb-sm-n2 {
10339
    margin-bottom: -0.5rem !important;
10340
  }
16848 stevensc 10341
 
16825 efrain 10342
  .mb-sm-n3 {
10343
    margin-bottom: -1rem !important;
10344
  }
16848 stevensc 10345
 
16825 efrain 10346
  .mb-sm-n4 {
10347
    margin-bottom: -1.5rem !important;
10348
  }
16848 stevensc 10349
 
16825 efrain 10350
  .mb-sm-n5 {
10351
    margin-bottom: -3rem !important;
10352
  }
16848 stevensc 10353
 
16825 efrain 10354
  .mb-sm-n6 {
10355
    margin-bottom: -4.5rem !important;
10356
  }
16848 stevensc 10357
 
16825 efrain 10358
  .mb-sm-n7 {
10359
    margin-bottom: -6rem !important;
10360
  }
16848 stevensc 10361
 
16825 efrain 10362
  .ms-sm-n1 {
10363
    margin-left: -0.25rem !important;
10364
  }
16848 stevensc 10365
 
16825 efrain 10366
  .ms-sm-n2 {
10367
    margin-left: -0.5rem !important;
10368
  }
16848 stevensc 10369
 
16825 efrain 10370
  .ms-sm-n3 {
10371
    margin-left: -1rem !important;
10372
  }
16848 stevensc 10373
 
16825 efrain 10374
  .ms-sm-n4 {
10375
    margin-left: -1.5rem !important;
10376
  }
16848 stevensc 10377
 
16825 efrain 10378
  .ms-sm-n5 {
10379
    margin-left: -3rem !important;
10380
  }
16848 stevensc 10381
 
16825 efrain 10382
  .ms-sm-n6 {
10383
    margin-left: -4.5rem !important;
10384
  }
16848 stevensc 10385
 
16825 efrain 10386
  .ms-sm-n7 {
10387
    margin-left: -6rem !important;
10388
  }
16848 stevensc 10389
 
16825 efrain 10390
  .p-sm-0 {
10391
    padding: 0 !important;
10392
  }
16848 stevensc 10393
 
16825 efrain 10394
  .p-sm-1 {
10395
    padding: 0.25rem !important;
10396
  }
16848 stevensc 10397
 
16825 efrain 10398
  .p-sm-2 {
10399
    padding: 0.5rem !important;
10400
  }
16848 stevensc 10401
 
16825 efrain 10402
  .p-sm-3 {
10403
    padding: 1rem !important;
10404
  }
16848 stevensc 10405
 
16825 efrain 10406
  .p-sm-4 {
10407
    padding: 1.5rem !important;
10408
  }
16848 stevensc 10409
 
16825 efrain 10410
  .p-sm-5 {
10411
    padding: 3rem !important;
10412
  }
16848 stevensc 10413
 
16825 efrain 10414
  .p-sm-6 {
10415
    padding: 4.5rem !important;
10416
  }
16848 stevensc 10417
 
16825 efrain 10418
  .p-sm-7 {
10419
    padding: 6rem !important;
10420
  }
16848 stevensc 10421
 
16825 efrain 10422
  .px-sm-0 {
10423
    padding-right: 0 !important;
10424
    padding-left: 0 !important;
10425
  }
16848 stevensc 10426
 
16825 efrain 10427
  .px-sm-1 {
10428
    padding-right: 0.25rem !important;
10429
    padding-left: 0.25rem !important;
10430
  }
16848 stevensc 10431
 
16825 efrain 10432
  .px-sm-2 {
10433
    padding-right: 0.5rem !important;
10434
    padding-left: 0.5rem !important;
10435
  }
16848 stevensc 10436
 
16825 efrain 10437
  .px-sm-3 {
10438
    padding-right: 1rem !important;
10439
    padding-left: 1rem !important;
10440
  }
16848 stevensc 10441
 
16825 efrain 10442
  .px-sm-4 {
10443
    padding-right: 1.5rem !important;
10444
    padding-left: 1.5rem !important;
10445
  }
16848 stevensc 10446
 
16825 efrain 10447
  .px-sm-5 {
10448
    padding-right: 3rem !important;
10449
    padding-left: 3rem !important;
10450
  }
16848 stevensc 10451
 
16825 efrain 10452
  .px-sm-6 {
10453
    padding-right: 4.5rem !important;
10454
    padding-left: 4.5rem !important;
10455
  }
16848 stevensc 10456
 
16825 efrain 10457
  .px-sm-7 {
10458
    padding-right: 6rem !important;
10459
    padding-left: 6rem !important;
10460
  }
16848 stevensc 10461
 
16825 efrain 10462
  .py-sm-0 {
10463
    padding-top: 0 !important;
10464
    padding-bottom: 0 !important;
10465
  }
16848 stevensc 10466
 
16825 efrain 10467
  .py-sm-1 {
10468
    padding-top: 0.25rem !important;
10469
    padding-bottom: 0.25rem !important;
10470
  }
16848 stevensc 10471
 
16825 efrain 10472
  .py-sm-2 {
10473
    padding-top: 0.5rem !important;
10474
    padding-bottom: 0.5rem !important;
10475
  }
16848 stevensc 10476
 
16825 efrain 10477
  .py-sm-3 {
10478
    padding-top: 1rem !important;
10479
    padding-bottom: 1rem !important;
10480
  }
16848 stevensc 10481
 
16825 efrain 10482
  .py-sm-4 {
10483
    padding-top: 1.5rem !important;
10484
    padding-bottom: 1.5rem !important;
10485
  }
16848 stevensc 10486
 
16825 efrain 10487
  .py-sm-5 {
10488
    padding-top: 3rem !important;
10489
    padding-bottom: 3rem !important;
10490
  }
16848 stevensc 10491
 
16825 efrain 10492
  .py-sm-6 {
10493
    padding-top: 4.5rem !important;
10494
    padding-bottom: 4.5rem !important;
10495
  }
16848 stevensc 10496
 
16825 efrain 10497
  .py-sm-7 {
10498
    padding-top: 6rem !important;
10499
    padding-bottom: 6rem !important;
10500
  }
16848 stevensc 10501
 
16825 efrain 10502
  .pt-sm-0 {
10503
    padding-top: 0 !important;
10504
  }
16848 stevensc 10505
 
16825 efrain 10506
  .pt-sm-1 {
10507
    padding-top: 0.25rem !important;
10508
  }
16848 stevensc 10509
 
16825 efrain 10510
  .pt-sm-2 {
10511
    padding-top: 0.5rem !important;
10512
  }
16848 stevensc 10513
 
16825 efrain 10514
  .pt-sm-3 {
10515
    padding-top: 1rem !important;
10516
  }
16848 stevensc 10517
 
16825 efrain 10518
  .pt-sm-4 {
10519
    padding-top: 1.5rem !important;
10520
  }
16848 stevensc 10521
 
16825 efrain 10522
  .pt-sm-5 {
10523
    padding-top: 3rem !important;
10524
  }
16848 stevensc 10525
 
16825 efrain 10526
  .pt-sm-6 {
10527
    padding-top: 4.5rem !important;
10528
  }
16848 stevensc 10529
 
16825 efrain 10530
  .pt-sm-7 {
10531
    padding-top: 6rem !important;
10532
  }
16848 stevensc 10533
 
16825 efrain 10534
  .pe-sm-0 {
10535
    padding-right: 0 !important;
10536
  }
16848 stevensc 10537
 
16825 efrain 10538
  .pe-sm-1 {
10539
    padding-right: 0.25rem !important;
10540
  }
16848 stevensc 10541
 
16825 efrain 10542
  .pe-sm-2 {
10543
    padding-right: 0.5rem !important;
10544
  }
16848 stevensc 10545
 
16825 efrain 10546
  .pe-sm-3 {
10547
    padding-right: 1rem !important;
10548
  }
16848 stevensc 10549
 
16825 efrain 10550
  .pe-sm-4 {
10551
    padding-right: 1.5rem !important;
10552
  }
16848 stevensc 10553
 
16825 efrain 10554
  .pe-sm-5 {
10555
    padding-right: 3rem !important;
10556
  }
16848 stevensc 10557
 
16825 efrain 10558
  .pe-sm-6 {
10559
    padding-right: 4.5rem !important;
10560
  }
16848 stevensc 10561
 
16825 efrain 10562
  .pe-sm-7 {
10563
    padding-right: 6rem !important;
10564
  }
16848 stevensc 10565
 
16825 efrain 10566
  .pb-sm-0 {
10567
    padding-bottom: 0 !important;
10568
  }
16848 stevensc 10569
 
16825 efrain 10570
  .pb-sm-1 {
10571
    padding-bottom: 0.25rem !important;
10572
  }
16848 stevensc 10573
 
16825 efrain 10574
  .pb-sm-2 {
10575
    padding-bottom: 0.5rem !important;
10576
  }
16848 stevensc 10577
 
16825 efrain 10578
  .pb-sm-3 {
10579
    padding-bottom: 1rem !important;
10580
  }
16848 stevensc 10581
 
16825 efrain 10582
  .pb-sm-4 {
10583
    padding-bottom: 1.5rem !important;
10584
  }
16848 stevensc 10585
 
16825 efrain 10586
  .pb-sm-5 {
10587
    padding-bottom: 3rem !important;
10588
  }
16848 stevensc 10589
 
16825 efrain 10590
  .pb-sm-6 {
10591
    padding-bottom: 4.5rem !important;
10592
  }
16848 stevensc 10593
 
16825 efrain 10594
  .pb-sm-7 {
10595
    padding-bottom: 6rem !important;
10596
  }
16848 stevensc 10597
 
16825 efrain 10598
  .ps-sm-0 {
10599
    padding-left: 0 !important;
10600
  }
16848 stevensc 10601
 
16825 efrain 10602
  .ps-sm-1 {
10603
    padding-left: 0.25rem !important;
10604
  }
16848 stevensc 10605
 
16825 efrain 10606
  .ps-sm-2 {
10607
    padding-left: 0.5rem !important;
10608
  }
16848 stevensc 10609
 
16825 efrain 10610
  .ps-sm-3 {
10611
    padding-left: 1rem !important;
10612
  }
16848 stevensc 10613
 
16825 efrain 10614
  .ps-sm-4 {
10615
    padding-left: 1.5rem !important;
10616
  }
16848 stevensc 10617
 
16825 efrain 10618
  .ps-sm-5 {
10619
    padding-left: 3rem !important;
10620
  }
16848 stevensc 10621
 
16825 efrain 10622
  .ps-sm-6 {
10623
    padding-left: 4.5rem !important;
10624
  }
16848 stevensc 10625
 
16825 efrain 10626
  .ps-sm-7 {
10627
    padding-left: 6rem !important;
10628
  }
16848 stevensc 10629
 
16825 efrain 10630
  .gap-sm-0 {
10631
    gap: 0 !important;
10632
  }
16848 stevensc 10633
 
16825 efrain 10634
  .gap-sm-1 {
10635
    gap: 0.25rem !important;
10636
  }
16848 stevensc 10637
 
16825 efrain 10638
  .gap-sm-2 {
10639
    gap: 0.5rem !important;
10640
  }
16848 stevensc 10641
 
16825 efrain 10642
  .gap-sm-3 {
10643
    gap: 1rem !important;
10644
  }
16848 stevensc 10645
 
16825 efrain 10646
  .gap-sm-4 {
10647
    gap: 1.5rem !important;
10648
  }
16848 stevensc 10649
 
16825 efrain 10650
  .gap-sm-5 {
10651
    gap: 3rem !important;
10652
  }
16848 stevensc 10653
 
16825 efrain 10654
  .gap-sm-6 {
10655
    gap: 4.5rem !important;
10656
  }
16848 stevensc 10657
 
16825 efrain 10658
  .gap-sm-7 {
10659
    gap: 6rem !important;
10660
  }
16848 stevensc 10661
 
16825 efrain 10662
  .text-sm-start {
10663
    text-align: left !important;
10664
  }
16848 stevensc 10665
 
16825 efrain 10666
  .text-sm-end {
10667
    text-align: right !important;
10668
  }
16848 stevensc 10669
 
16825 efrain 10670
  .text-sm-center {
10671
    text-align: center !important;
10672
  }
10673
}
16848 stevensc 10674
 
16825 efrain 10675
@media (min-width: 768px) {
10676
  .float-md-start {
10677
    float: left !important;
10678
  }
16848 stevensc 10679
 
16825 efrain 10680
  .float-md-end {
10681
    float: right !important;
10682
  }
16848 stevensc 10683
 
16825 efrain 10684
  .float-md-none {
10685
    float: none !important;
10686
  }
16848 stevensc 10687
 
16825 efrain 10688
  .d-md-inline {
10689
    display: inline !important;
10690
  }
16848 stevensc 10691
 
16825 efrain 10692
  .d-md-inline-block {
10693
    display: inline-block !important;
10694
  }
16848 stevensc 10695
 
16825 efrain 10696
  .d-md-block {
10697
    display: block !important;
10698
  }
16848 stevensc 10699
 
16825 efrain 10700
  .d-md-grid {
10701
    display: grid !important;
10702
  }
16848 stevensc 10703
 
16825 efrain 10704
  .d-md-table {
10705
    display: table !important;
10706
  }
16848 stevensc 10707
 
16825 efrain 10708
  .d-md-table-row {
10709
    display: table-row !important;
10710
  }
16848 stevensc 10711
 
16825 efrain 10712
  .d-md-table-cell {
10713
    display: table-cell !important;
10714
  }
16848 stevensc 10715
 
10716
  .d-md-flex,
10717
  .navbar .search-form {
16825 efrain 10718
    display: flex !important;
10719
  }
16848 stevensc 10720
 
16825 efrain 10721
  .d-md-inline-flex {
10722
    display: inline-flex !important;
10723
  }
16848 stevensc 10724
 
16825 efrain 10725
  .d-md-none {
10726
    display: none !important;
10727
  }
16848 stevensc 10728
 
16825 efrain 10729
  .border-md {
10730
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10731
  }
16848 stevensc 10732
 
16825 efrain 10733
  .border-md-0 {
10734
    border: 0 !important;
10735
  }
16848 stevensc 10736
 
16825 efrain 10737
  .border-top-md {
10738
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10739
  }
16848 stevensc 10740
 
16825 efrain 10741
  .border-top-md-0 {
10742
    border-top: 0 !important;
10743
  }
16848 stevensc 10744
 
16825 efrain 10745
  .border-end-md {
10746
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10747
  }
16848 stevensc 10748
 
16825 efrain 10749
  .border-end-md-0 {
10750
    border-right: 0 !important;
10751
  }
16848 stevensc 10752
 
16825 efrain 10753
  .border-bottom-md {
10754
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10755
  }
16848 stevensc 10756
 
16825 efrain 10757
  .border-bottom-md-0 {
10758
    border-bottom: 0 !important;
10759
  }
16848 stevensc 10760
 
16825 efrain 10761
  .border-start-md {
10762
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
10763
  }
16848 stevensc 10764
 
16825 efrain 10765
  .border-start-md-0 {
10766
    border-left: 0 !important;
10767
  }
16848 stevensc 10768
 
16825 efrain 10769
  .flex-md-fill {
10770
    flex: 1 1 auto !important;
10771
  }
16848 stevensc 10772
 
16825 efrain 10773
  .flex-md-row {
10774
    flex-direction: row !important;
10775
  }
16848 stevensc 10776
 
16825 efrain 10777
  .flex-md-column {
10778
    flex-direction: column !important;
10779
  }
16848 stevensc 10780
 
16825 efrain 10781
  .flex-md-row-reverse {
10782
    flex-direction: row-reverse !important;
10783
  }
16848 stevensc 10784
 
16825 efrain 10785
  .flex-md-column-reverse {
10786
    flex-direction: column-reverse !important;
10787
  }
16848 stevensc 10788
 
16825 efrain 10789
  .flex-md-grow-0 {
10790
    flex-grow: 0 !important;
10791
  }
16848 stevensc 10792
 
16825 efrain 10793
  .flex-md-grow-1 {
10794
    flex-grow: 1 !important;
10795
  }
16848 stevensc 10796
 
16825 efrain 10797
  .flex-md-shrink-0 {
10798
    flex-shrink: 0 !important;
10799
  }
16848 stevensc 10800
 
16825 efrain 10801
  .flex-md-shrink-1 {
10802
    flex-shrink: 1 !important;
10803
  }
16848 stevensc 10804
 
16825 efrain 10805
  .flex-md-wrap {
10806
    flex-wrap: wrap !important;
10807
  }
16848 stevensc 10808
 
16825 efrain 10809
  .flex-md-nowrap {
10810
    flex-wrap: nowrap !important;
10811
  }
16848 stevensc 10812
 
16825 efrain 10813
  .flex-md-wrap-reverse {
10814
    flex-wrap: wrap-reverse !important;
10815
  }
16848 stevensc 10816
 
16825 efrain 10817
  .justify-content-md-start {
10818
    justify-content: flex-start !important;
10819
  }
16848 stevensc 10820
 
10821
  .justify-content-md-end,
10822
  .dataTables_wrapper div.dataTables_paginate ul.pagination {
16825 efrain 10823
    justify-content: flex-end !important;
10824
  }
16848 stevensc 10825
 
16825 efrain 10826
  .justify-content-md-center {
10827
    justify-content: center !important;
10828
  }
16848 stevensc 10829
 
16825 efrain 10830
  .justify-content-md-between {
10831
    justify-content: space-between !important;
10832
  }
16848 stevensc 10833
 
16825 efrain 10834
  .justify-content-md-around {
10835
    justify-content: space-around !important;
10836
  }
16848 stevensc 10837
 
16825 efrain 10838
  .justify-content-md-evenly {
10839
    justify-content: space-evenly !important;
10840
  }
16848 stevensc 10841
 
16825 efrain 10842
  .align-items-md-start {
10843
    align-items: flex-start !important;
10844
  }
16848 stevensc 10845
 
16825 efrain 10846
  .align-items-md-end {
10847
    align-items: flex-end !important;
10848
  }
16848 stevensc 10849
 
16825 efrain 10850
  .align-items-md-center {
10851
    align-items: center !important;
10852
  }
16848 stevensc 10853
 
16825 efrain 10854
  .align-items-md-baseline {
10855
    align-items: baseline !important;
10856
  }
16848 stevensc 10857
 
16825 efrain 10858
  .align-items-md-stretch {
10859
    align-items: stretch !important;
10860
  }
16848 stevensc 10861
 
16825 efrain 10862
  .align-content-md-start {
10863
    align-content: flex-start !important;
10864
  }
16848 stevensc 10865
 
16825 efrain 10866
  .align-content-md-end {
10867
    align-content: flex-end !important;
10868
  }
16848 stevensc 10869
 
16825 efrain 10870
  .align-content-md-center {
10871
    align-content: center !important;
10872
  }
16848 stevensc 10873
 
16825 efrain 10874
  .align-content-md-between {
10875
    align-content: space-between !important;
10876
  }
16848 stevensc 10877
 
16825 efrain 10878
  .align-content-md-around {
10879
    align-content: space-around !important;
10880
  }
16848 stevensc 10881
 
16825 efrain 10882
  .align-content-md-stretch {
10883
    align-content: stretch !important;
10884
  }
16848 stevensc 10885
 
16825 efrain 10886
  .align-self-md-auto {
10887
    align-self: auto !important;
10888
  }
16848 stevensc 10889
 
16825 efrain 10890
  .align-self-md-start {
10891
    align-self: flex-start !important;
10892
  }
16848 stevensc 10893
 
16825 efrain 10894
  .align-self-md-end {
10895
    align-self: flex-end !important;
10896
  }
16848 stevensc 10897
 
16825 efrain 10898
  .align-self-md-center {
10899
    align-self: center !important;
10900
  }
16848 stevensc 10901
 
16825 efrain 10902
  .align-self-md-baseline {
10903
    align-self: baseline !important;
10904
  }
16848 stevensc 10905
 
16825 efrain 10906
  .align-self-md-stretch {
10907
    align-self: stretch !important;
10908
  }
16848 stevensc 10909
 
16825 efrain 10910
  .order-md-first {
10911
    order: -1 !important;
10912
  }
16848 stevensc 10913
 
16825 efrain 10914
  .order-md-0 {
10915
    order: 0 !important;
10916
  }
16848 stevensc 10917
 
16825 efrain 10918
  .order-md-1 {
10919
    order: 1 !important;
10920
  }
16848 stevensc 10921
 
16825 efrain 10922
  .order-md-2 {
10923
    order: 2 !important;
10924
  }
16848 stevensc 10925
 
16825 efrain 10926
  .order-md-3 {
10927
    order: 3 !important;
10928
  }
16848 stevensc 10929
 
16825 efrain 10930
  .order-md-4 {
10931
    order: 4 !important;
10932
  }
16848 stevensc 10933
 
16825 efrain 10934
  .order-md-5 {
10935
    order: 5 !important;
10936
  }
16848 stevensc 10937
 
16825 efrain 10938
  .order-md-last {
10939
    order: 6 !important;
10940
  }
16848 stevensc 10941
 
16825 efrain 10942
  .m-md-0 {
10943
    margin: 0 !important;
10944
  }
16848 stevensc 10945
 
16825 efrain 10946
  .m-md-1 {
10947
    margin: 0.25rem !important;
10948
  }
16848 stevensc 10949
 
16825 efrain 10950
  .m-md-2 {
10951
    margin: 0.5rem !important;
10952
  }
16848 stevensc 10953
 
16825 efrain 10954
  .m-md-3 {
10955
    margin: 1rem !important;
10956
  }
16848 stevensc 10957
 
16825 efrain 10958
  .m-md-4 {
10959
    margin: 1.5rem !important;
10960
  }
16848 stevensc 10961
 
16825 efrain 10962
  .m-md-5 {
10963
    margin: 3rem !important;
10964
  }
16848 stevensc 10965
 
16825 efrain 10966
  .m-md-6 {
10967
    margin: 4.5rem !important;
10968
  }
16848 stevensc 10969
 
16825 efrain 10970
  .m-md-7 {
10971
    margin: 6rem !important;
10972
  }
16848 stevensc 10973
 
16825 efrain 10974
  .m-md-auto {
10975
    margin: auto !important;
10976
  }
16848 stevensc 10977
 
16825 efrain 10978
  .mx-md-0 {
10979
    margin-right: 0 !important;
10980
    margin-left: 0 !important;
10981
  }
16848 stevensc 10982
 
16825 efrain 10983
  .mx-md-1 {
10984
    margin-right: 0.25rem !important;
10985
    margin-left: 0.25rem !important;
10986
  }
16848 stevensc 10987
 
16825 efrain 10988
  .mx-md-2 {
10989
    margin-right: 0.5rem !important;
10990
    margin-left: 0.5rem !important;
10991
  }
16848 stevensc 10992
 
16825 efrain 10993
  .mx-md-3 {
10994
    margin-right: 1rem !important;
10995
    margin-left: 1rem !important;
10996
  }
16848 stevensc 10997
 
16825 efrain 10998
  .mx-md-4 {
10999
    margin-right: 1.5rem !important;
11000
    margin-left: 1.5rem !important;
11001
  }
16848 stevensc 11002
 
16825 efrain 11003
  .mx-md-5 {
11004
    margin-right: 3rem !important;
11005
    margin-left: 3rem !important;
11006
  }
16848 stevensc 11007
 
16825 efrain 11008
  .mx-md-6 {
11009
    margin-right: 4.5rem !important;
11010
    margin-left: 4.5rem !important;
11011
  }
16848 stevensc 11012
 
16825 efrain 11013
  .mx-md-7 {
11014
    margin-right: 6rem !important;
11015
    margin-left: 6rem !important;
11016
  }
16848 stevensc 11017
 
16825 efrain 11018
  .mx-md-auto {
11019
    margin-right: auto !important;
11020
    margin-left: auto !important;
11021
  }
16848 stevensc 11022
 
16825 efrain 11023
  .my-md-0 {
11024
    margin-top: 0 !important;
11025
    margin-bottom: 0 !important;
11026
  }
16848 stevensc 11027
 
16825 efrain 11028
  .my-md-1 {
11029
    margin-top: 0.25rem !important;
11030
    margin-bottom: 0.25rem !important;
11031
  }
16848 stevensc 11032
 
16825 efrain 11033
  .my-md-2 {
11034
    margin-top: 0.5rem !important;
11035
    margin-bottom: 0.5rem !important;
11036
  }
16848 stevensc 11037
 
16825 efrain 11038
  .my-md-3 {
11039
    margin-top: 1rem !important;
11040
    margin-bottom: 1rem !important;
11041
  }
16848 stevensc 11042
 
16825 efrain 11043
  .my-md-4 {
11044
    margin-top: 1.5rem !important;
11045
    margin-bottom: 1.5rem !important;
11046
  }
16848 stevensc 11047
 
16825 efrain 11048
  .my-md-5 {
11049
    margin-top: 3rem !important;
11050
    margin-bottom: 3rem !important;
11051
  }
16848 stevensc 11052
 
16825 efrain 11053
  .my-md-6 {
11054
    margin-top: 4.5rem !important;
11055
    margin-bottom: 4.5rem !important;
11056
  }
16848 stevensc 11057
 
16825 efrain 11058
  .my-md-7 {
11059
    margin-top: 6rem !important;
11060
    margin-bottom: 6rem !important;
11061
  }
16848 stevensc 11062
 
16825 efrain 11063
  .my-md-auto {
11064
    margin-top: auto !important;
11065
    margin-bottom: auto !important;
11066
  }
16848 stevensc 11067
 
11068
  .mt-md-0,
11069
  .dataTables_wrapper div.dataTables_paginate ul.pagination {
16825 efrain 11070
    margin-top: 0 !important;
11071
  }
16848 stevensc 11072
 
16825 efrain 11073
  .mt-md-1 {
11074
    margin-top: 0.25rem !important;
11075
  }
16848 stevensc 11076
 
16825 efrain 11077
  .mt-md-2 {
11078
    margin-top: 0.5rem !important;
11079
  }
16848 stevensc 11080
 
16825 efrain 11081
  .mt-md-3 {
11082
    margin-top: 1rem !important;
11083
  }
16848 stevensc 11084
 
16825 efrain 11085
  .mt-md-4 {
11086
    margin-top: 1.5rem !important;
11087
  }
16848 stevensc 11088
 
16825 efrain 11089
  .mt-md-5 {
11090
    margin-top: 3rem !important;
11091
  }
16848 stevensc 11092
 
16825 efrain 11093
  .mt-md-6 {
11094
    margin-top: 4.5rem !important;
11095
  }
16848 stevensc 11096
 
16825 efrain 11097
  .mt-md-7 {
11098
    margin-top: 6rem !important;
11099
  }
16848 stevensc 11100
 
16825 efrain 11101
  .mt-md-auto {
11102
    margin-top: auto !important;
11103
  }
16848 stevensc 11104
 
16825 efrain 11105
  .me-md-0 {
11106
    margin-right: 0 !important;
11107
  }
16848 stevensc 11108
 
16825 efrain 11109
  .me-md-1 {
11110
    margin-right: 0.25rem !important;
11111
  }
16848 stevensc 11112
 
16825 efrain 11113
  .me-md-2 {
11114
    margin-right: 0.5rem !important;
11115
  }
16848 stevensc 11116
 
16825 efrain 11117
  .me-md-3 {
11118
    margin-right: 1rem !important;
11119
  }
16848 stevensc 11120
 
16825 efrain 11121
  .me-md-4 {
11122
    margin-right: 1.5rem !important;
11123
  }
16848 stevensc 11124
 
16825 efrain 11125
  .me-md-5 {
11126
    margin-right: 3rem !important;
11127
  }
16848 stevensc 11128
 
16825 efrain 11129
  .me-md-6 {
11130
    margin-right: 4.5rem !important;
11131
  }
16848 stevensc 11132
 
16825 efrain 11133
  .me-md-7 {
11134
    margin-right: 6rem !important;
11135
  }
16848 stevensc 11136
 
16825 efrain 11137
  .me-md-auto {
11138
    margin-right: auto !important;
11139
  }
16848 stevensc 11140
 
11141
  .mb-md-0,
11142
  .example .btn-group {
16825 efrain 11143
    margin-bottom: 0 !important;
11144
  }
16848 stevensc 11145
 
16825 efrain 11146
  .mb-md-1 {
11147
    margin-bottom: 0.25rem !important;
11148
  }
16848 stevensc 11149
 
16825 efrain 11150
  .mb-md-2 {
11151
    margin-bottom: 0.5rem !important;
11152
  }
16848 stevensc 11153
 
16825 efrain 11154
  .mb-md-3 {
11155
    margin-bottom: 1rem !important;
11156
  }
16848 stevensc 11157
 
16825 efrain 11158
  .mb-md-4 {
11159
    margin-bottom: 1.5rem !important;
11160
  }
16848 stevensc 11161
 
16825 efrain 11162
  .mb-md-5 {
11163
    margin-bottom: 3rem !important;
11164
  }
16848 stevensc 11165
 
16825 efrain 11166
  .mb-md-6 {
11167
    margin-bottom: 4.5rem !important;
11168
  }
16848 stevensc 11169
 
16825 efrain 11170
  .mb-md-7 {
11171
    margin-bottom: 6rem !important;
11172
  }
16848 stevensc 11173
 
16825 efrain 11174
  .mb-md-auto {
11175
    margin-bottom: auto !important;
11176
  }
16848 stevensc 11177
 
16825 efrain 11178
  .ms-md-0 {
11179
    margin-left: 0 !important;
11180
  }
16848 stevensc 11181
 
16825 efrain 11182
  .ms-md-1 {
11183
    margin-left: 0.25rem !important;
11184
  }
16848 stevensc 11185
 
16825 efrain 11186
  .ms-md-2 {
11187
    margin-left: 0.5rem !important;
11188
  }
16848 stevensc 11189
 
16825 efrain 11190
  .ms-md-3 {
11191
    margin-left: 1rem !important;
11192
  }
16848 stevensc 11193
 
16825 efrain 11194
  .ms-md-4 {
11195
    margin-left: 1.5rem !important;
11196
  }
16848 stevensc 11197
 
16825 efrain 11198
  .ms-md-5 {
11199
    margin-left: 3rem !important;
11200
  }
16848 stevensc 11201
 
16825 efrain 11202
  .ms-md-6 {
11203
    margin-left: 4.5rem !important;
11204
  }
16848 stevensc 11205
 
16825 efrain 11206
  .ms-md-7 {
11207
    margin-left: 6rem !important;
11208
  }
16848 stevensc 11209
 
16825 efrain 11210
  .ms-md-auto {
11211
    margin-left: auto !important;
11212
  }
16848 stevensc 11213
 
16825 efrain 11214
  .m-md-n1 {
11215
    margin: -0.25rem !important;
11216
  }
16848 stevensc 11217
 
16825 efrain 11218
  .m-md-n2 {
11219
    margin: -0.5rem !important;
11220
  }
16848 stevensc 11221
 
16825 efrain 11222
  .m-md-n3 {
11223
    margin: -1rem !important;
11224
  }
16848 stevensc 11225
 
16825 efrain 11226
  .m-md-n4 {
11227
    margin: -1.5rem !important;
11228
  }
16848 stevensc 11229
 
16825 efrain 11230
  .m-md-n5 {
11231
    margin: -3rem !important;
11232
  }
16848 stevensc 11233
 
16825 efrain 11234
  .m-md-n6 {
11235
    margin: -4.5rem !important;
11236
  }
16848 stevensc 11237
 
16825 efrain 11238
  .m-md-n7 {
11239
    margin: -6rem !important;
11240
  }
16848 stevensc 11241
 
16825 efrain 11242
  .mx-md-n1 {
11243
    margin-right: -0.25rem !important;
11244
    margin-left: -0.25rem !important;
11245
  }
16848 stevensc 11246
 
16825 efrain 11247
  .mx-md-n2 {
11248
    margin-right: -0.5rem !important;
11249
    margin-left: -0.5rem !important;
11250
  }
16848 stevensc 11251
 
16825 efrain 11252
  .mx-md-n3 {
11253
    margin-right: -1rem !important;
11254
    margin-left: -1rem !important;
11255
  }
16848 stevensc 11256
 
16825 efrain 11257
  .mx-md-n4 {
11258
    margin-right: -1.5rem !important;
11259
    margin-left: -1.5rem !important;
11260
  }
16848 stevensc 11261
 
16825 efrain 11262
  .mx-md-n5 {
11263
    margin-right: -3rem !important;
11264
    margin-left: -3rem !important;
11265
  }
16848 stevensc 11266
 
16825 efrain 11267
  .mx-md-n6 {
11268
    margin-right: -4.5rem !important;
11269
    margin-left: -4.5rem !important;
11270
  }
16848 stevensc 11271
 
16825 efrain 11272
  .mx-md-n7 {
11273
    margin-right: -6rem !important;
11274
    margin-left: -6rem !important;
11275
  }
16848 stevensc 11276
 
16825 efrain 11277
  .my-md-n1 {
11278
    margin-top: -0.25rem !important;
11279
    margin-bottom: -0.25rem !important;
11280
  }
16848 stevensc 11281
 
16825 efrain 11282
  .my-md-n2 {
11283
    margin-top: -0.5rem !important;
11284
    margin-bottom: -0.5rem !important;
11285
  }
16848 stevensc 11286
 
16825 efrain 11287
  .my-md-n3 {
11288
    margin-top: -1rem !important;
11289
    margin-bottom: -1rem !important;
11290
  }
16848 stevensc 11291
 
16825 efrain 11292
  .my-md-n4 {
11293
    margin-top: -1.5rem !important;
11294
    margin-bottom: -1.5rem !important;
11295
  }
16848 stevensc 11296
 
16825 efrain 11297
  .my-md-n5 {
11298
    margin-top: -3rem !important;
11299
    margin-bottom: -3rem !important;
11300
  }
16848 stevensc 11301
 
16825 efrain 11302
  .my-md-n6 {
11303
    margin-top: -4.5rem !important;
11304
    margin-bottom: -4.5rem !important;
11305
  }
16848 stevensc 11306
 
16825 efrain 11307
  .my-md-n7 {
11308
    margin-top: -6rem !important;
11309
    margin-bottom: -6rem !important;
11310
  }
16848 stevensc 11311
 
16825 efrain 11312
  .mt-md-n1 {
11313
    margin-top: -0.25rem !important;
11314
  }
16848 stevensc 11315
 
16825 efrain 11316
  .mt-md-n2 {
11317
    margin-top: -0.5rem !important;
11318
  }
16848 stevensc 11319
 
16825 efrain 11320
  .mt-md-n3 {
11321
    margin-top: -1rem !important;
11322
  }
16848 stevensc 11323
 
16825 efrain 11324
  .mt-md-n4 {
11325
    margin-top: -1.5rem !important;
11326
  }
16848 stevensc 11327
 
16825 efrain 11328
  .mt-md-n5 {
11329
    margin-top: -3rem !important;
11330
  }
16848 stevensc 11331
 
16825 efrain 11332
  .mt-md-n6 {
11333
    margin-top: -4.5rem !important;
11334
  }
16848 stevensc 11335
 
16825 efrain 11336
  .mt-md-n7 {
11337
    margin-top: -6rem !important;
11338
  }
16848 stevensc 11339
 
16825 efrain 11340
  .me-md-n1 {
11341
    margin-right: -0.25rem !important;
11342
  }
16848 stevensc 11343
 
16825 efrain 11344
  .me-md-n2 {
11345
    margin-right: -0.5rem !important;
11346
  }
16848 stevensc 11347
 
16825 efrain 11348
  .me-md-n3 {
11349
    margin-right: -1rem !important;
11350
  }
16848 stevensc 11351
 
16825 efrain 11352
  .me-md-n4 {
11353
    margin-right: -1.5rem !important;
11354
  }
16848 stevensc 11355
 
16825 efrain 11356
  .me-md-n5 {
11357
    margin-right: -3rem !important;
11358
  }
16848 stevensc 11359
 
16825 efrain 11360
  .me-md-n6 {
11361
    margin-right: -4.5rem !important;
11362
  }
16848 stevensc 11363
 
16825 efrain 11364
  .me-md-n7 {
11365
    margin-right: -6rem !important;
11366
  }
16848 stevensc 11367
 
16825 efrain 11368
  .mb-md-n1 {
11369
    margin-bottom: -0.25rem !important;
11370
  }
16848 stevensc 11371
 
16825 efrain 11372
  .mb-md-n2 {
11373
    margin-bottom: -0.5rem !important;
11374
  }
16848 stevensc 11375
 
16825 efrain 11376
  .mb-md-n3 {
11377
    margin-bottom: -1rem !important;
11378
  }
16848 stevensc 11379
 
16825 efrain 11380
  .mb-md-n4 {
11381
    margin-bottom: -1.5rem !important;
11382
  }
16848 stevensc 11383
 
16825 efrain 11384
  .mb-md-n5 {
11385
    margin-bottom: -3rem !important;
11386
  }
16848 stevensc 11387
 
16825 efrain 11388
  .mb-md-n6 {
11389
    margin-bottom: -4.5rem !important;
11390
  }
16848 stevensc 11391
 
16825 efrain 11392
  .mb-md-n7 {
11393
    margin-bottom: -6rem !important;
11394
  }
16848 stevensc 11395
 
16825 efrain 11396
  .ms-md-n1 {
11397
    margin-left: -0.25rem !important;
11398
  }
16848 stevensc 11399
 
16825 efrain 11400
  .ms-md-n2 {
11401
    margin-left: -0.5rem !important;
11402
  }
16848 stevensc 11403
 
16825 efrain 11404
  .ms-md-n3 {
11405
    margin-left: -1rem !important;
11406
  }
16848 stevensc 11407
 
16825 efrain 11408
  .ms-md-n4 {
11409
    margin-left: -1.5rem !important;
11410
  }
16848 stevensc 11411
 
16825 efrain 11412
  .ms-md-n5 {
11413
    margin-left: -3rem !important;
11414
  }
16848 stevensc 11415
 
16825 efrain 11416
  .ms-md-n6 {
11417
    margin-left: -4.5rem !important;
11418
  }
16848 stevensc 11419
 
16825 efrain 11420
  .ms-md-n7 {
11421
    margin-left: -6rem !important;
11422
  }
16848 stevensc 11423
 
16825 efrain 11424
  .p-md-0 {
11425
    padding: 0 !important;
11426
  }
16848 stevensc 11427
 
16825 efrain 11428
  .p-md-1 {
11429
    padding: 0.25rem !important;
11430
  }
16848 stevensc 11431
 
16825 efrain 11432
  .p-md-2 {
11433
    padding: 0.5rem !important;
11434
  }
16848 stevensc 11435
 
16825 efrain 11436
  .p-md-3 {
11437
    padding: 1rem !important;
11438
  }
16848 stevensc 11439
 
16825 efrain 11440
  .p-md-4 {
11441
    padding: 1.5rem !important;
11442
  }
16848 stevensc 11443
 
16825 efrain 11444
  .p-md-5 {
11445
    padding: 3rem !important;
11446
  }
16848 stevensc 11447
 
16825 efrain 11448
  .p-md-6 {
11449
    padding: 4.5rem !important;
11450
  }
16848 stevensc 11451
 
16825 efrain 11452
  .p-md-7 {
11453
    padding: 6rem !important;
11454
  }
16848 stevensc 11455
 
16825 efrain 11456
  .px-md-0 {
11457
    padding-right: 0 !important;
11458
    padding-left: 0 !important;
11459
  }
16848 stevensc 11460
 
16825 efrain 11461
  .px-md-1 {
11462
    padding-right: 0.25rem !important;
11463
    padding-left: 0.25rem !important;
11464
  }
16848 stevensc 11465
 
16825 efrain 11466
  .px-md-2 {
11467
    padding-right: 0.5rem !important;
11468
    padding-left: 0.5rem !important;
11469
  }
16848 stevensc 11470
 
16825 efrain 11471
  .px-md-3 {
11472
    padding-right: 1rem !important;
11473
    padding-left: 1rem !important;
11474
  }
16848 stevensc 11475
 
16825 efrain 11476
  .px-md-4 {
11477
    padding-right: 1.5rem !important;
11478
    padding-left: 1.5rem !important;
11479
  }
16848 stevensc 11480
 
16825 efrain 11481
  .px-md-5 {
11482
    padding-right: 3rem !important;
11483
    padding-left: 3rem !important;
11484
  }
16848 stevensc 11485
 
16825 efrain 11486
  .px-md-6 {
11487
    padding-right: 4.5rem !important;
11488
    padding-left: 4.5rem !important;
11489
  }
16848 stevensc 11490
 
16825 efrain 11491
  .px-md-7 {
11492
    padding-right: 6rem !important;
11493
    padding-left: 6rem !important;
11494
  }
16848 stevensc 11495
 
16825 efrain 11496
  .py-md-0 {
11497
    padding-top: 0 !important;
11498
    padding-bottom: 0 !important;
11499
  }
16848 stevensc 11500
 
16825 efrain 11501
  .py-md-1 {
11502
    padding-top: 0.25rem !important;
11503
    padding-bottom: 0.25rem !important;
11504
  }
16848 stevensc 11505
 
16825 efrain 11506
  .py-md-2 {
11507
    padding-top: 0.5rem !important;
11508
    padding-bottom: 0.5rem !important;
11509
  }
16848 stevensc 11510
 
16825 efrain 11511
  .py-md-3 {
11512
    padding-top: 1rem !important;
11513
    padding-bottom: 1rem !important;
11514
  }
16848 stevensc 11515
 
16825 efrain 11516
  .py-md-4 {
11517
    padding-top: 1.5rem !important;
11518
    padding-bottom: 1.5rem !important;
11519
  }
16848 stevensc 11520
 
16825 efrain 11521
  .py-md-5 {
11522
    padding-top: 3rem !important;
11523
    padding-bottom: 3rem !important;
11524
  }
16848 stevensc 11525
 
16825 efrain 11526
  .py-md-6 {
11527
    padding-top: 4.5rem !important;
11528
    padding-bottom: 4.5rem !important;
11529
  }
16848 stevensc 11530
 
16825 efrain 11531
  .py-md-7 {
11532
    padding-top: 6rem !important;
11533
    padding-bottom: 6rem !important;
11534
  }
16848 stevensc 11535
 
16825 efrain 11536
  .pt-md-0 {
11537
    padding-top: 0 !important;
11538
  }
16848 stevensc 11539
 
16825 efrain 11540
  .pt-md-1 {
11541
    padding-top: 0.25rem !important;
11542
  }
16848 stevensc 11543
 
16825 efrain 11544
  .pt-md-2 {
11545
    padding-top: 0.5rem !important;
11546
  }
16848 stevensc 11547
 
16825 efrain 11548
  .pt-md-3 {
11549
    padding-top: 1rem !important;
11550
  }
16848 stevensc 11551
 
16825 efrain 11552
  .pt-md-4 {
11553
    padding-top: 1.5rem !important;
11554
  }
16848 stevensc 11555
 
16825 efrain 11556
  .pt-md-5 {
11557
    padding-top: 3rem !important;
11558
  }
16848 stevensc 11559
 
16825 efrain 11560
  .pt-md-6 {
11561
    padding-top: 4.5rem !important;
11562
  }
16848 stevensc 11563
 
16825 efrain 11564
  .pt-md-7 {
11565
    padding-top: 6rem !important;
11566
  }
16848 stevensc 11567
 
16825 efrain 11568
  .pe-md-0 {
11569
    padding-right: 0 !important;
11570
  }
16848 stevensc 11571
 
16825 efrain 11572
  .pe-md-1 {
11573
    padding-right: 0.25rem !important;
11574
  }
16848 stevensc 11575
 
16825 efrain 11576
  .pe-md-2 {
11577
    padding-right: 0.5rem !important;
11578
  }
16848 stevensc 11579
 
16825 efrain 11580
  .pe-md-3 {
11581
    padding-right: 1rem !important;
11582
  }
16848 stevensc 11583
 
16825 efrain 11584
  .pe-md-4 {
11585
    padding-right: 1.5rem !important;
11586
  }
16848 stevensc 11587
 
16825 efrain 11588
  .pe-md-5 {
11589
    padding-right: 3rem !important;
11590
  }
16848 stevensc 11591
 
16825 efrain 11592
  .pe-md-6 {
11593
    padding-right: 4.5rem !important;
11594
  }
16848 stevensc 11595
 
16825 efrain 11596
  .pe-md-7 {
11597
    padding-right: 6rem !important;
11598
  }
16848 stevensc 11599
 
16825 efrain 11600
  .pb-md-0 {
11601
    padding-bottom: 0 !important;
11602
  }
16848 stevensc 11603
 
16825 efrain 11604
  .pb-md-1 {
11605
    padding-bottom: 0.25rem !important;
11606
  }
16848 stevensc 11607
 
16825 efrain 11608
  .pb-md-2 {
11609
    padding-bottom: 0.5rem !important;
11610
  }
16848 stevensc 11611
 
16825 efrain 11612
  .pb-md-3 {
11613
    padding-bottom: 1rem !important;
11614
  }
16848 stevensc 11615
 
16825 efrain 11616
  .pb-md-4 {
11617
    padding-bottom: 1.5rem !important;
11618
  }
16848 stevensc 11619
 
16825 efrain 11620
  .pb-md-5 {
11621
    padding-bottom: 3rem !important;
11622
  }
16848 stevensc 11623
 
16825 efrain 11624
  .pb-md-6 {
11625
    padding-bottom: 4.5rem !important;
11626
  }
16848 stevensc 11627
 
16825 efrain 11628
  .pb-md-7 {
11629
    padding-bottom: 6rem !important;
11630
  }
16848 stevensc 11631
 
16825 efrain 11632
  .ps-md-0 {
11633
    padding-left: 0 !important;
11634
  }
16848 stevensc 11635
 
16825 efrain 11636
  .ps-md-1 {
11637
    padding-left: 0.25rem !important;
11638
  }
16848 stevensc 11639
 
16825 efrain 11640
  .ps-md-2 {
11641
    padding-left: 0.5rem !important;
11642
  }
16848 stevensc 11643
 
16825 efrain 11644
  .ps-md-3 {
11645
    padding-left: 1rem !important;
11646
  }
16848 stevensc 11647
 
16825 efrain 11648
  .ps-md-4 {
11649
    padding-left: 1.5rem !important;
11650
  }
16848 stevensc 11651
 
16825 efrain 11652
  .ps-md-5 {
11653
    padding-left: 3rem !important;
11654
  }
16848 stevensc 11655
 
16825 efrain 11656
  .ps-md-6 {
11657
    padding-left: 4.5rem !important;
11658
  }
16848 stevensc 11659
 
16825 efrain 11660
  .ps-md-7 {
11661
    padding-left: 6rem !important;
11662
  }
16848 stevensc 11663
 
16825 efrain 11664
  .gap-md-0 {
11665
    gap: 0 !important;
11666
  }
16848 stevensc 11667
 
16825 efrain 11668
  .gap-md-1 {
11669
    gap: 0.25rem !important;
11670
  }
16848 stevensc 11671
 
16825 efrain 11672
  .gap-md-2 {
11673
    gap: 0.5rem !important;
11674
  }
16848 stevensc 11675
 
16825 efrain 11676
  .gap-md-3 {
11677
    gap: 1rem !important;
11678
  }
16848 stevensc 11679
 
16825 efrain 11680
  .gap-md-4 {
11681
    gap: 1.5rem !important;
11682
  }
16848 stevensc 11683
 
16825 efrain 11684
  .gap-md-5 {
11685
    gap: 3rem !important;
11686
  }
16848 stevensc 11687
 
16825 efrain 11688
  .gap-md-6 {
11689
    gap: 4.5rem !important;
11690
  }
16848 stevensc 11691
 
16825 efrain 11692
  .gap-md-7 {
11693
    gap: 6rem !important;
11694
  }
16848 stevensc 11695
 
16825 efrain 11696
  .text-md-start {
11697
    text-align: left !important;
11698
  }
16848 stevensc 11699
 
16825 efrain 11700
  .text-md-end {
11701
    text-align: right !important;
11702
  }
16848 stevensc 11703
 
16825 efrain 11704
  .text-md-center {
11705
    text-align: center !important;
11706
  }
11707
}
16848 stevensc 11708
 
16825 efrain 11709
@media (min-width: 992px) {
11710
  .float-lg-start {
11711
    float: left !important;
11712
  }
16848 stevensc 11713
 
16825 efrain 11714
  .float-lg-end {
11715
    float: right !important;
11716
  }
16848 stevensc 11717
 
16825 efrain 11718
  .float-lg-none {
11719
    float: none !important;
11720
  }
16848 stevensc 11721
 
16825 efrain 11722
  .d-lg-inline {
11723
    display: inline !important;
11724
  }
16848 stevensc 11725
 
16825 efrain 11726
  .d-lg-inline-block {
11727
    display: inline-block !important;
11728
  }
16848 stevensc 11729
 
16825 efrain 11730
  .d-lg-block {
11731
    display: block !important;
11732
  }
16848 stevensc 11733
 
16825 efrain 11734
  .d-lg-grid {
11735
    display: grid !important;
11736
  }
16848 stevensc 11737
 
16825 efrain 11738
  .d-lg-table {
11739
    display: table !important;
11740
  }
16848 stevensc 11741
 
16825 efrain 11742
  .d-lg-table-row {
11743
    display: table-row !important;
11744
  }
16848 stevensc 11745
 
16825 efrain 11746
  .d-lg-table-cell {
11747
    display: table-cell !important;
11748
  }
16848 stevensc 11749
 
16825 efrain 11750
  .d-lg-flex {
11751
    display: flex !important;
11752
  }
16848 stevensc 11753
 
16825 efrain 11754
  .d-lg-inline-flex {
11755
    display: inline-flex !important;
11756
  }
16848 stevensc 11757
 
16825 efrain 11758
  .d-lg-none {
11759
    display: none !important;
11760
  }
16848 stevensc 11761
 
16825 efrain 11762
  .border-lg {
11763
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11764
  }
16848 stevensc 11765
 
16825 efrain 11766
  .border-lg-0 {
11767
    border: 0 !important;
11768
  }
16848 stevensc 11769
 
16825 efrain 11770
  .border-top-lg {
11771
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11772
  }
16848 stevensc 11773
 
16825 efrain 11774
  .border-top-lg-0 {
11775
    border-top: 0 !important;
11776
  }
16848 stevensc 11777
 
16825 efrain 11778
  .border-end-lg {
11779
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11780
  }
16848 stevensc 11781
 
16825 efrain 11782
  .border-end-lg-0 {
11783
    border-right: 0 !important;
11784
  }
16848 stevensc 11785
 
16825 efrain 11786
  .border-bottom-lg {
11787
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11788
  }
16848 stevensc 11789
 
16825 efrain 11790
  .border-bottom-lg-0 {
11791
    border-bottom: 0 !important;
11792
  }
16848 stevensc 11793
 
16825 efrain 11794
  .border-start-lg {
11795
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
11796
  }
16848 stevensc 11797
 
16825 efrain 11798
  .border-start-lg-0 {
11799
    border-left: 0 !important;
11800
  }
16848 stevensc 11801
 
16825 efrain 11802
  .flex-lg-fill {
11803
    flex: 1 1 auto !important;
11804
  }
16848 stevensc 11805
 
16825 efrain 11806
  .flex-lg-row {
11807
    flex-direction: row !important;
11808
  }
16848 stevensc 11809
 
16825 efrain 11810
  .flex-lg-column {
11811
    flex-direction: column !important;
11812
  }
16848 stevensc 11813
 
16825 efrain 11814
  .flex-lg-row-reverse {
11815
    flex-direction: row-reverse !important;
11816
  }
16848 stevensc 11817
 
16825 efrain 11818
  .flex-lg-column-reverse {
11819
    flex-direction: column-reverse !important;
11820
  }
16848 stevensc 11821
 
16825 efrain 11822
  .flex-lg-grow-0 {
11823
    flex-grow: 0 !important;
11824
  }
16848 stevensc 11825
 
16825 efrain 11826
  .flex-lg-grow-1 {
11827
    flex-grow: 1 !important;
11828
  }
16848 stevensc 11829
 
16825 efrain 11830
  .flex-lg-shrink-0 {
11831
    flex-shrink: 0 !important;
11832
  }
16848 stevensc 11833
 
16825 efrain 11834
  .flex-lg-shrink-1 {
11835
    flex-shrink: 1 !important;
11836
  }
16848 stevensc 11837
 
16825 efrain 11838
  .flex-lg-wrap {
11839
    flex-wrap: wrap !important;
11840
  }
16848 stevensc 11841
 
16825 efrain 11842
  .flex-lg-nowrap {
11843
    flex-wrap: nowrap !important;
11844
  }
16848 stevensc 11845
 
16825 efrain 11846
  .flex-lg-wrap-reverse {
11847
    flex-wrap: wrap-reverse !important;
11848
  }
16848 stevensc 11849
 
16825 efrain 11850
  .justify-content-lg-start {
11851
    justify-content: flex-start !important;
11852
  }
16848 stevensc 11853
 
16825 efrain 11854
  .justify-content-lg-end {
11855
    justify-content: flex-end !important;
11856
  }
16848 stevensc 11857
 
16825 efrain 11858
  .justify-content-lg-center {
11859
    justify-content: center !important;
11860
  }
16848 stevensc 11861
 
16825 efrain 11862
  .justify-content-lg-between {
11863
    justify-content: space-between !important;
11864
  }
16848 stevensc 11865
 
16825 efrain 11866
  .justify-content-lg-around {
11867
    justify-content: space-around !important;
11868
  }
16848 stevensc 11869
 
16825 efrain 11870
  .justify-content-lg-evenly {
11871
    justify-content: space-evenly !important;
11872
  }
16848 stevensc 11873
 
16825 efrain 11874
  .align-items-lg-start {
11875
    align-items: flex-start !important;
11876
  }
16848 stevensc 11877
 
16825 efrain 11878
  .align-items-lg-end {
11879
    align-items: flex-end !important;
11880
  }
16848 stevensc 11881
 
16825 efrain 11882
  .align-items-lg-center {
11883
    align-items: center !important;
11884
  }
16848 stevensc 11885
 
16825 efrain 11886
  .align-items-lg-baseline {
11887
    align-items: baseline !important;
11888
  }
16848 stevensc 11889
 
16825 efrain 11890
  .align-items-lg-stretch {
11891
    align-items: stretch !important;
11892
  }
16848 stevensc 11893
 
16825 efrain 11894
  .align-content-lg-start {
11895
    align-content: flex-start !important;
11896
  }
16848 stevensc 11897
 
16825 efrain 11898
  .align-content-lg-end {
11899
    align-content: flex-end !important;
11900
  }
16848 stevensc 11901
 
16825 efrain 11902
  .align-content-lg-center {
11903
    align-content: center !important;
11904
  }
16848 stevensc 11905
 
16825 efrain 11906
  .align-content-lg-between {
11907
    align-content: space-between !important;
11908
  }
16848 stevensc 11909
 
16825 efrain 11910
  .align-content-lg-around {
11911
    align-content: space-around !important;
11912
  }
16848 stevensc 11913
 
16825 efrain 11914
  .align-content-lg-stretch {
11915
    align-content: stretch !important;
11916
  }
16848 stevensc 11917
 
16825 efrain 11918
  .align-self-lg-auto {
11919
    align-self: auto !important;
11920
  }
16848 stevensc 11921
 
16825 efrain 11922
  .align-self-lg-start {
11923
    align-self: flex-start !important;
11924
  }
16848 stevensc 11925
 
16825 efrain 11926
  .align-self-lg-end {
11927
    align-self: flex-end !important;
11928
  }
16848 stevensc 11929
 
16825 efrain 11930
  .align-self-lg-center {
11931
    align-self: center !important;
11932
  }
16848 stevensc 11933
 
16825 efrain 11934
  .align-self-lg-baseline {
11935
    align-self: baseline !important;
11936
  }
16848 stevensc 11937
 
16825 efrain 11938
  .align-self-lg-stretch {
11939
    align-self: stretch !important;
11940
  }
16848 stevensc 11941
 
16825 efrain 11942
  .order-lg-first {
11943
    order: -1 !important;
11944
  }
16848 stevensc 11945
 
16825 efrain 11946
  .order-lg-0 {
11947
    order: 0 !important;
11948
  }
16848 stevensc 11949
 
16825 efrain 11950
  .order-lg-1 {
11951
    order: 1 !important;
11952
  }
16848 stevensc 11953
 
16825 efrain 11954
  .order-lg-2 {
11955
    order: 2 !important;
11956
  }
16848 stevensc 11957
 
16825 efrain 11958
  .order-lg-3 {
11959
    order: 3 !important;
11960
  }
16848 stevensc 11961
 
16825 efrain 11962
  .order-lg-4 {
11963
    order: 4 !important;
11964
  }
16848 stevensc 11965
 
16825 efrain 11966
  .order-lg-5 {
11967
    order: 5 !important;
11968
  }
16848 stevensc 11969
 
16825 efrain 11970
  .order-lg-last {
11971
    order: 6 !important;
11972
  }
16848 stevensc 11973
 
16825 efrain 11974
  .m-lg-0 {
11975
    margin: 0 !important;
11976
  }
16848 stevensc 11977
 
16825 efrain 11978
  .m-lg-1 {
11979
    margin: 0.25rem !important;
11980
  }
16848 stevensc 11981
 
16825 efrain 11982
  .m-lg-2 {
11983
    margin: 0.5rem !important;
11984
  }
16848 stevensc 11985
 
16825 efrain 11986
  .m-lg-3 {
11987
    margin: 1rem !important;
11988
  }
16848 stevensc 11989
 
16825 efrain 11990
  .m-lg-4 {
11991
    margin: 1.5rem !important;
11992
  }
16848 stevensc 11993
 
16825 efrain 11994
  .m-lg-5 {
11995
    margin: 3rem !important;
11996
  }
16848 stevensc 11997
 
16825 efrain 11998
  .m-lg-6 {
11999
    margin: 4.5rem !important;
12000
  }
16848 stevensc 12001
 
16825 efrain 12002
  .m-lg-7 {
12003
    margin: 6rem !important;
12004
  }
16848 stevensc 12005
 
16825 efrain 12006
  .m-lg-auto {
12007
    margin: auto !important;
12008
  }
16848 stevensc 12009
 
16825 efrain 12010
  .mx-lg-0 {
12011
    margin-right: 0 !important;
12012
    margin-left: 0 !important;
12013
  }
16848 stevensc 12014
 
16825 efrain 12015
  .mx-lg-1 {
12016
    margin-right: 0.25rem !important;
12017
    margin-left: 0.25rem !important;
12018
  }
16848 stevensc 12019
 
16825 efrain 12020
  .mx-lg-2 {
12021
    margin-right: 0.5rem !important;
12022
    margin-left: 0.5rem !important;
12023
  }
16848 stevensc 12024
 
16825 efrain 12025
  .mx-lg-3 {
12026
    margin-right: 1rem !important;
12027
    margin-left: 1rem !important;
12028
  }
16848 stevensc 12029
 
16825 efrain 12030
  .mx-lg-4 {
12031
    margin-right: 1.5rem !important;
12032
    margin-left: 1.5rem !important;
12033
  }
16848 stevensc 12034
 
16825 efrain 12035
  .mx-lg-5 {
12036
    margin-right: 3rem !important;
12037
    margin-left: 3rem !important;
12038
  }
16848 stevensc 12039
 
16825 efrain 12040
  .mx-lg-6 {
12041
    margin-right: 4.5rem !important;
12042
    margin-left: 4.5rem !important;
12043
  }
16848 stevensc 12044
 
16825 efrain 12045
  .mx-lg-7 {
12046
    margin-right: 6rem !important;
12047
    margin-left: 6rem !important;
12048
  }
16848 stevensc 12049
 
16825 efrain 12050
  .mx-lg-auto {
12051
    margin-right: auto !important;
12052
    margin-left: auto !important;
12053
  }
16848 stevensc 12054
 
16825 efrain 12055
  .my-lg-0 {
12056
    margin-top: 0 !important;
12057
    margin-bottom: 0 !important;
12058
  }
16848 stevensc 12059
 
16825 efrain 12060
  .my-lg-1 {
12061
    margin-top: 0.25rem !important;
12062
    margin-bottom: 0.25rem !important;
12063
  }
16848 stevensc 12064
 
16825 efrain 12065
  .my-lg-2 {
12066
    margin-top: 0.5rem !important;
12067
    margin-bottom: 0.5rem !important;
12068
  }
16848 stevensc 12069
 
16825 efrain 12070
  .my-lg-3 {
12071
    margin-top: 1rem !important;
12072
    margin-bottom: 1rem !important;
12073
  }
16848 stevensc 12074
 
16825 efrain 12075
  .my-lg-4 {
12076
    margin-top: 1.5rem !important;
12077
    margin-bottom: 1.5rem !important;
12078
  }
16848 stevensc 12079
 
16825 efrain 12080
  .my-lg-5 {
12081
    margin-top: 3rem !important;
12082
    margin-bottom: 3rem !important;
12083
  }
16848 stevensc 12084
 
16825 efrain 12085
  .my-lg-6 {
12086
    margin-top: 4.5rem !important;
12087
    margin-bottom: 4.5rem !important;
12088
  }
16848 stevensc 12089
 
16825 efrain 12090
  .my-lg-7 {
12091
    margin-top: 6rem !important;
12092
    margin-bottom: 6rem !important;
12093
  }
16848 stevensc 12094
 
16825 efrain 12095
  .my-lg-auto {
12096
    margin-top: auto !important;
12097
    margin-bottom: auto !important;
12098
  }
16848 stevensc 12099
 
16825 efrain 12100
  .mt-lg-0 {
12101
    margin-top: 0 !important;
12102
  }
16848 stevensc 12103
 
16825 efrain 12104
  .mt-lg-1 {
12105
    margin-top: 0.25rem !important;
12106
  }
16848 stevensc 12107
 
16825 efrain 12108
  .mt-lg-2 {
12109
    margin-top: 0.5rem !important;
12110
  }
16848 stevensc 12111
 
16825 efrain 12112
  .mt-lg-3 {
12113
    margin-top: 1rem !important;
12114
  }
16848 stevensc 12115
 
16825 efrain 12116
  .mt-lg-4 {
12117
    margin-top: 1.5rem !important;
12118
  }
16848 stevensc 12119
 
16825 efrain 12120
  .mt-lg-5 {
12121
    margin-top: 3rem !important;
12122
  }
16848 stevensc 12123
 
16825 efrain 12124
  .mt-lg-6 {
12125
    margin-top: 4.5rem !important;
12126
  }
16848 stevensc 12127
 
16825 efrain 12128
  .mt-lg-7 {
12129
    margin-top: 6rem !important;
12130
  }
16848 stevensc 12131
 
16825 efrain 12132
  .mt-lg-auto {
12133
    margin-top: auto !important;
12134
  }
16848 stevensc 12135
 
16825 efrain 12136
  .me-lg-0 {
12137
    margin-right: 0 !important;
12138
  }
16848 stevensc 12139
 
16825 efrain 12140
  .me-lg-1 {
12141
    margin-right: 0.25rem !important;
12142
  }
16848 stevensc 12143
 
16825 efrain 12144
  .me-lg-2 {
12145
    margin-right: 0.5rem !important;
12146
  }
16848 stevensc 12147
 
16825 efrain 12148
  .me-lg-3 {
12149
    margin-right: 1rem !important;
12150
  }
16848 stevensc 12151
 
16825 efrain 12152
  .me-lg-4 {
12153
    margin-right: 1.5rem !important;
12154
  }
16848 stevensc 12155
 
16825 efrain 12156
  .me-lg-5 {
12157
    margin-right: 3rem !important;
12158
  }
16848 stevensc 12159
 
16825 efrain 12160
  .me-lg-6 {
12161
    margin-right: 4.5rem !important;
12162
  }
16848 stevensc 12163
 
16825 efrain 12164
  .me-lg-7 {
12165
    margin-right: 6rem !important;
12166
  }
16848 stevensc 12167
 
16825 efrain 12168
  .me-lg-auto {
12169
    margin-right: auto !important;
12170
  }
16848 stevensc 12171
 
16825 efrain 12172
  .mb-lg-0 {
12173
    margin-bottom: 0 !important;
12174
  }
16848 stevensc 12175
 
16825 efrain 12176
  .mb-lg-1 {
12177
    margin-bottom: 0.25rem !important;
12178
  }
16848 stevensc 12179
 
16825 efrain 12180
  .mb-lg-2 {
12181
    margin-bottom: 0.5rem !important;
12182
  }
16848 stevensc 12183
 
16825 efrain 12184
  .mb-lg-3 {
12185
    margin-bottom: 1rem !important;
12186
  }
16848 stevensc 12187
 
16825 efrain 12188
  .mb-lg-4 {
12189
    margin-bottom: 1.5rem !important;
12190
  }
16848 stevensc 12191
 
16825 efrain 12192
  .mb-lg-5 {
12193
    margin-bottom: 3rem !important;
12194
  }
16848 stevensc 12195
 
16825 efrain 12196
  .mb-lg-6 {
12197
    margin-bottom: 4.5rem !important;
12198
  }
16848 stevensc 12199
 
16825 efrain 12200
  .mb-lg-7 {
12201
    margin-bottom: 6rem !important;
12202
  }
16848 stevensc 12203
 
16825 efrain 12204
  .mb-lg-auto {
12205
    margin-bottom: auto !important;
12206
  }
16848 stevensc 12207
 
16825 efrain 12208
  .ms-lg-0 {
12209
    margin-left: 0 !important;
12210
  }
16848 stevensc 12211
 
16825 efrain 12212
  .ms-lg-1 {
12213
    margin-left: 0.25rem !important;
12214
  }
16848 stevensc 12215
 
16825 efrain 12216
  .ms-lg-2 {
12217
    margin-left: 0.5rem !important;
12218
  }
16848 stevensc 12219
 
16825 efrain 12220
  .ms-lg-3 {
12221
    margin-left: 1rem !important;
12222
  }
16848 stevensc 12223
 
16825 efrain 12224
  .ms-lg-4 {
12225
    margin-left: 1.5rem !important;
12226
  }
16848 stevensc 12227
 
16825 efrain 12228
  .ms-lg-5 {
12229
    margin-left: 3rem !important;
12230
  }
16848 stevensc 12231
 
16825 efrain 12232
  .ms-lg-6 {
12233
    margin-left: 4.5rem !important;
12234
  }
16848 stevensc 12235
 
16825 efrain 12236
  .ms-lg-7 {
12237
    margin-left: 6rem !important;
12238
  }
16848 stevensc 12239
 
16825 efrain 12240
  .ms-lg-auto {
12241
    margin-left: auto !important;
12242
  }
16848 stevensc 12243
 
16825 efrain 12244
  .m-lg-n1 {
12245
    margin: -0.25rem !important;
12246
  }
16848 stevensc 12247
 
16825 efrain 12248
  .m-lg-n2 {
12249
    margin: -0.5rem !important;
12250
  }
16848 stevensc 12251
 
16825 efrain 12252
  .m-lg-n3 {
12253
    margin: -1rem !important;
12254
  }
16848 stevensc 12255
 
16825 efrain 12256
  .m-lg-n4 {
12257
    margin: -1.5rem !important;
12258
  }
16848 stevensc 12259
 
16825 efrain 12260
  .m-lg-n5 {
12261
    margin: -3rem !important;
12262
  }
16848 stevensc 12263
 
16825 efrain 12264
  .m-lg-n6 {
12265
    margin: -4.5rem !important;
12266
  }
16848 stevensc 12267
 
16825 efrain 12268
  .m-lg-n7 {
12269
    margin: -6rem !important;
12270
  }
16848 stevensc 12271
 
16825 efrain 12272
  .mx-lg-n1 {
12273
    margin-right: -0.25rem !important;
12274
    margin-left: -0.25rem !important;
12275
  }
16848 stevensc 12276
 
16825 efrain 12277
  .mx-lg-n2 {
12278
    margin-right: -0.5rem !important;
12279
    margin-left: -0.5rem !important;
12280
  }
16848 stevensc 12281
 
16825 efrain 12282
  .mx-lg-n3 {
12283
    margin-right: -1rem !important;
12284
    margin-left: -1rem !important;
12285
  }
16848 stevensc 12286
 
16825 efrain 12287
  .mx-lg-n4 {
12288
    margin-right: -1.5rem !important;
12289
    margin-left: -1.5rem !important;
12290
  }
16848 stevensc 12291
 
16825 efrain 12292
  .mx-lg-n5 {
12293
    margin-right: -3rem !important;
12294
    margin-left: -3rem !important;
12295
  }
16848 stevensc 12296
 
16825 efrain 12297
  .mx-lg-n6 {
12298
    margin-right: -4.5rem !important;
12299
    margin-left: -4.5rem !important;
12300
  }
16848 stevensc 12301
 
16825 efrain 12302
  .mx-lg-n7 {
12303
    margin-right: -6rem !important;
12304
    margin-left: -6rem !important;
12305
  }
16848 stevensc 12306
 
16825 efrain 12307
  .my-lg-n1 {
12308
    margin-top: -0.25rem !important;
12309
    margin-bottom: -0.25rem !important;
12310
  }
16848 stevensc 12311
 
16825 efrain 12312
  .my-lg-n2 {
12313
    margin-top: -0.5rem !important;
12314
    margin-bottom: -0.5rem !important;
12315
  }
16848 stevensc 12316
 
16825 efrain 12317
  .my-lg-n3 {
12318
    margin-top: -1rem !important;
12319
    margin-bottom: -1rem !important;
12320
  }
16848 stevensc 12321
 
16825 efrain 12322
  .my-lg-n4 {
12323
    margin-top: -1.5rem !important;
12324
    margin-bottom: -1.5rem !important;
12325
  }
16848 stevensc 12326
 
16825 efrain 12327
  .my-lg-n5 {
12328
    margin-top: -3rem !important;
12329
    margin-bottom: -3rem !important;
12330
  }
16848 stevensc 12331
 
16825 efrain 12332
  .my-lg-n6 {
12333
    margin-top: -4.5rem !important;
12334
    margin-bottom: -4.5rem !important;
12335
  }
16848 stevensc 12336
 
16825 efrain 12337
  .my-lg-n7 {
12338
    margin-top: -6rem !important;
12339
    margin-bottom: -6rem !important;
12340
  }
16848 stevensc 12341
 
16825 efrain 12342
  .mt-lg-n1 {
12343
    margin-top: -0.25rem !important;
12344
  }
16848 stevensc 12345
 
16825 efrain 12346
  .mt-lg-n2 {
12347
    margin-top: -0.5rem !important;
12348
  }
16848 stevensc 12349
 
16825 efrain 12350
  .mt-lg-n3 {
12351
    margin-top: -1rem !important;
12352
  }
16848 stevensc 12353
 
16825 efrain 12354
  .mt-lg-n4 {
12355
    margin-top: -1.5rem !important;
12356
  }
16848 stevensc 12357
 
16825 efrain 12358
  .mt-lg-n5 {
12359
    margin-top: -3rem !important;
12360
  }
16848 stevensc 12361
 
16825 efrain 12362
  .mt-lg-n6 {
12363
    margin-top: -4.5rem !important;
12364
  }
16848 stevensc 12365
 
16825 efrain 12366
  .mt-lg-n7 {
12367
    margin-top: -6rem !important;
12368
  }
16848 stevensc 12369
 
16825 efrain 12370
  .me-lg-n1 {
12371
    margin-right: -0.25rem !important;
12372
  }
16848 stevensc 12373
 
16825 efrain 12374
  .me-lg-n2 {
12375
    margin-right: -0.5rem !important;
12376
  }
16848 stevensc 12377
 
16825 efrain 12378
  .me-lg-n3 {
12379
    margin-right: -1rem !important;
12380
  }
16848 stevensc 12381
 
16825 efrain 12382
  .me-lg-n4 {
12383
    margin-right: -1.5rem !important;
12384
  }
16848 stevensc 12385
 
16825 efrain 12386
  .me-lg-n5 {
12387
    margin-right: -3rem !important;
12388
  }
16848 stevensc 12389
 
16825 efrain 12390
  .me-lg-n6 {
12391
    margin-right: -4.5rem !important;
12392
  }
16848 stevensc 12393
 
16825 efrain 12394
  .me-lg-n7 {
12395
    margin-right: -6rem !important;
12396
  }
16848 stevensc 12397
 
16825 efrain 12398
  .mb-lg-n1 {
12399
    margin-bottom: -0.25rem !important;
12400
  }
16848 stevensc 12401
 
16825 efrain 12402
  .mb-lg-n2 {
12403
    margin-bottom: -0.5rem !important;
12404
  }
16848 stevensc 12405
 
16825 efrain 12406
  .mb-lg-n3 {
12407
    margin-bottom: -1rem !important;
12408
  }
16848 stevensc 12409
 
16825 efrain 12410
  .mb-lg-n4 {
12411
    margin-bottom: -1.5rem !important;
12412
  }
16848 stevensc 12413
 
16825 efrain 12414
  .mb-lg-n5 {
12415
    margin-bottom: -3rem !important;
12416
  }
16848 stevensc 12417
 
16825 efrain 12418
  .mb-lg-n6 {
12419
    margin-bottom: -4.5rem !important;
12420
  }
16848 stevensc 12421
 
16825 efrain 12422
  .mb-lg-n7 {
12423
    margin-bottom: -6rem !important;
12424
  }
16848 stevensc 12425
 
16825 efrain 12426
  .ms-lg-n1 {
12427
    margin-left: -0.25rem !important;
12428
  }
16848 stevensc 12429
 
16825 efrain 12430
  .ms-lg-n2 {
12431
    margin-left: -0.5rem !important;
12432
  }
16848 stevensc 12433
 
16825 efrain 12434
  .ms-lg-n3 {
12435
    margin-left: -1rem !important;
12436
  }
16848 stevensc 12437
 
16825 efrain 12438
  .ms-lg-n4 {
12439
    margin-left: -1.5rem !important;
12440
  }
16848 stevensc 12441
 
16825 efrain 12442
  .ms-lg-n5 {
12443
    margin-left: -3rem !important;
12444
  }
16848 stevensc 12445
 
16825 efrain 12446
  .ms-lg-n6 {
12447
    margin-left: -4.5rem !important;
12448
  }
16848 stevensc 12449
 
16825 efrain 12450
  .ms-lg-n7 {
12451
    margin-left: -6rem !important;
12452
  }
16848 stevensc 12453
 
16825 efrain 12454
  .p-lg-0 {
12455
    padding: 0 !important;
12456
  }
16848 stevensc 12457
 
16825 efrain 12458
  .p-lg-1 {
12459
    padding: 0.25rem !important;
12460
  }
16848 stevensc 12461
 
16825 efrain 12462
  .p-lg-2 {
12463
    padding: 0.5rem !important;
12464
  }
16848 stevensc 12465
 
16825 efrain 12466
  .p-lg-3 {
12467
    padding: 1rem !important;
12468
  }
16848 stevensc 12469
 
16825 efrain 12470
  .p-lg-4 {
12471
    padding: 1.5rem !important;
12472
  }
16848 stevensc 12473
 
16825 efrain 12474
  .p-lg-5 {
12475
    padding: 3rem !important;
12476
  }
16848 stevensc 12477
 
16825 efrain 12478
  .p-lg-6 {
12479
    padding: 4.5rem !important;
12480
  }
16848 stevensc 12481
 
16825 efrain 12482
  .p-lg-7 {
12483
    padding: 6rem !important;
12484
  }
16848 stevensc 12485
 
16825 efrain 12486
  .px-lg-0 {
12487
    padding-right: 0 !important;
12488
    padding-left: 0 !important;
12489
  }
16848 stevensc 12490
 
16825 efrain 12491
  .px-lg-1 {
12492
    padding-right: 0.25rem !important;
12493
    padding-left: 0.25rem !important;
12494
  }
16848 stevensc 12495
 
16825 efrain 12496
  .px-lg-2 {
12497
    padding-right: 0.5rem !important;
12498
    padding-left: 0.5rem !important;
12499
  }
16848 stevensc 12500
 
16825 efrain 12501
  .px-lg-3 {
12502
    padding-right: 1rem !important;
12503
    padding-left: 1rem !important;
12504
  }
16848 stevensc 12505
 
16825 efrain 12506
  .px-lg-4 {
12507
    padding-right: 1.5rem !important;
12508
    padding-left: 1.5rem !important;
12509
  }
16848 stevensc 12510
 
16825 efrain 12511
  .px-lg-5 {
12512
    padding-right: 3rem !important;
12513
    padding-left: 3rem !important;
12514
  }
16848 stevensc 12515
 
16825 efrain 12516
  .px-lg-6 {
12517
    padding-right: 4.5rem !important;
12518
    padding-left: 4.5rem !important;
12519
  }
16848 stevensc 12520
 
16825 efrain 12521
  .px-lg-7 {
12522
    padding-right: 6rem !important;
12523
    padding-left: 6rem !important;
12524
  }
16848 stevensc 12525
 
16825 efrain 12526
  .py-lg-0 {
12527
    padding-top: 0 !important;
12528
    padding-bottom: 0 !important;
12529
  }
16848 stevensc 12530
 
16825 efrain 12531
  .py-lg-1 {
12532
    padding-top: 0.25rem !important;
12533
    padding-bottom: 0.25rem !important;
12534
  }
16848 stevensc 12535
 
16825 efrain 12536
  .py-lg-2 {
12537
    padding-top: 0.5rem !important;
12538
    padding-bottom: 0.5rem !important;
12539
  }
16848 stevensc 12540
 
16825 efrain 12541
  .py-lg-3 {
12542
    padding-top: 1rem !important;
12543
    padding-bottom: 1rem !important;
12544
  }
16848 stevensc 12545
 
16825 efrain 12546
  .py-lg-4 {
12547
    padding-top: 1.5rem !important;
12548
    padding-bottom: 1.5rem !important;
12549
  }
16848 stevensc 12550
 
16825 efrain 12551
  .py-lg-5 {
12552
    padding-top: 3rem !important;
12553
    padding-bottom: 3rem !important;
12554
  }
16848 stevensc 12555
 
16825 efrain 12556
  .py-lg-6 {
12557
    padding-top: 4.5rem !important;
12558
    padding-bottom: 4.5rem !important;
12559
  }
16848 stevensc 12560
 
16825 efrain 12561
  .py-lg-7 {
12562
    padding-top: 6rem !important;
12563
    padding-bottom: 6rem !important;
12564
  }
16848 stevensc 12565
 
16825 efrain 12566
  .pt-lg-0 {
12567
    padding-top: 0 !important;
12568
  }
16848 stevensc 12569
 
16825 efrain 12570
  .pt-lg-1 {
12571
    padding-top: 0.25rem !important;
12572
  }
16848 stevensc 12573
 
16825 efrain 12574
  .pt-lg-2 {
12575
    padding-top: 0.5rem !important;
12576
  }
16848 stevensc 12577
 
16825 efrain 12578
  .pt-lg-3 {
12579
    padding-top: 1rem !important;
12580
  }
16848 stevensc 12581
 
16825 efrain 12582
  .pt-lg-4 {
12583
    padding-top: 1.5rem !important;
12584
  }
16848 stevensc 12585
 
16825 efrain 12586
  .pt-lg-5 {
12587
    padding-top: 3rem !important;
12588
  }
16848 stevensc 12589
 
16825 efrain 12590
  .pt-lg-6 {
12591
    padding-top: 4.5rem !important;
12592
  }
16848 stevensc 12593
 
16825 efrain 12594
  .pt-lg-7 {
12595
    padding-top: 6rem !important;
12596
  }
16848 stevensc 12597
 
16825 efrain 12598
  .pe-lg-0 {
12599
    padding-right: 0 !important;
12600
  }
16848 stevensc 12601
 
16825 efrain 12602
  .pe-lg-1 {
12603
    padding-right: 0.25rem !important;
12604
  }
16848 stevensc 12605
 
16825 efrain 12606
  .pe-lg-2 {
12607
    padding-right: 0.5rem !important;
12608
  }
16848 stevensc 12609
 
16825 efrain 12610
  .pe-lg-3 {
12611
    padding-right: 1rem !important;
12612
  }
16848 stevensc 12613
 
16825 efrain 12614
  .pe-lg-4 {
12615
    padding-right: 1.5rem !important;
12616
  }
16848 stevensc 12617
 
16825 efrain 12618
  .pe-lg-5 {
12619
    padding-right: 3rem !important;
12620
  }
16848 stevensc 12621
 
16825 efrain 12622
  .pe-lg-6 {
12623
    padding-right: 4.5rem !important;
12624
  }
16848 stevensc 12625
 
16825 efrain 12626
  .pe-lg-7 {
12627
    padding-right: 6rem !important;
12628
  }
16848 stevensc 12629
 
16825 efrain 12630
  .pb-lg-0 {
12631
    padding-bottom: 0 !important;
12632
  }
16848 stevensc 12633
 
16825 efrain 12634
  .pb-lg-1 {
12635
    padding-bottom: 0.25rem !important;
12636
  }
16848 stevensc 12637
 
16825 efrain 12638
  .pb-lg-2 {
12639
    padding-bottom: 0.5rem !important;
12640
  }
16848 stevensc 12641
 
16825 efrain 12642
  .pb-lg-3 {
12643
    padding-bottom: 1rem !important;
12644
  }
16848 stevensc 12645
 
16825 efrain 12646
  .pb-lg-4 {
12647
    padding-bottom: 1.5rem !important;
12648
  }
16848 stevensc 12649
 
16825 efrain 12650
  .pb-lg-5 {
12651
    padding-bottom: 3rem !important;
12652
  }
16848 stevensc 12653
 
16825 efrain 12654
  .pb-lg-6 {
12655
    padding-bottom: 4.5rem !important;
12656
  }
16848 stevensc 12657
 
16825 efrain 12658
  .pb-lg-7 {
12659
    padding-bottom: 6rem !important;
12660
  }
16848 stevensc 12661
 
16825 efrain 12662
  .ps-lg-0 {
12663
    padding-left: 0 !important;
12664
  }
16848 stevensc 12665
 
16825 efrain 12666
  .ps-lg-1 {
12667
    padding-left: 0.25rem !important;
12668
  }
16848 stevensc 12669
 
16825 efrain 12670
  .ps-lg-2 {
12671
    padding-left: 0.5rem !important;
12672
  }
16848 stevensc 12673
 
16825 efrain 12674
  .ps-lg-3 {
12675
    padding-left: 1rem !important;
12676
  }
16848 stevensc 12677
 
16825 efrain 12678
  .ps-lg-4 {
12679
    padding-left: 1.5rem !important;
12680
  }
16848 stevensc 12681
 
16825 efrain 12682
  .ps-lg-5 {
12683
    padding-left: 3rem !important;
12684
  }
16848 stevensc 12685
 
16825 efrain 12686
  .ps-lg-6 {
12687
    padding-left: 4.5rem !important;
12688
  }
16848 stevensc 12689
 
16825 efrain 12690
  .ps-lg-7 {
12691
    padding-left: 6rem !important;
12692
  }
16848 stevensc 12693
 
16825 efrain 12694
  .gap-lg-0 {
12695
    gap: 0 !important;
12696
  }
16848 stevensc 12697
 
16825 efrain 12698
  .gap-lg-1 {
12699
    gap: 0.25rem !important;
12700
  }
16848 stevensc 12701
 
16825 efrain 12702
  .gap-lg-2 {
12703
    gap: 0.5rem !important;
12704
  }
16848 stevensc 12705
 
16825 efrain 12706
  .gap-lg-3 {
12707
    gap: 1rem !important;
12708
  }
16848 stevensc 12709
 
16825 efrain 12710
  .gap-lg-4 {
12711
    gap: 1.5rem !important;
12712
  }
16848 stevensc 12713
 
16825 efrain 12714
  .gap-lg-5 {
12715
    gap: 3rem !important;
12716
  }
16848 stevensc 12717
 
16825 efrain 12718
  .gap-lg-6 {
12719
    gap: 4.5rem !important;
12720
  }
16848 stevensc 12721
 
16825 efrain 12722
  .gap-lg-7 {
12723
    gap: 6rem !important;
12724
  }
16848 stevensc 12725
 
16825 efrain 12726
  .text-lg-start {
12727
    text-align: left !important;
12728
  }
16848 stevensc 12729
 
16825 efrain 12730
  .text-lg-end {
12731
    text-align: right !important;
12732
  }
16848 stevensc 12733
 
16825 efrain 12734
  .text-lg-center {
12735
    text-align: center !important;
12736
  }
12737
}
16848 stevensc 12738
 
16825 efrain 12739
@media (min-width: 1200px) {
12740
  .float-xl-start {
12741
    float: left !important;
12742
  }
16848 stevensc 12743
 
16825 efrain 12744
  .float-xl-end {
12745
    float: right !important;
12746
  }
16848 stevensc 12747
 
16825 efrain 12748
  .float-xl-none {
12749
    float: none !important;
12750
  }
16848 stevensc 12751
 
16825 efrain 12752
  .d-xl-inline {
12753
    display: inline !important;
12754
  }
16848 stevensc 12755
 
16825 efrain 12756
  .d-xl-inline-block {
12757
    display: inline-block !important;
12758
  }
16848 stevensc 12759
 
16825 efrain 12760
  .d-xl-block {
12761
    display: block !important;
12762
  }
16848 stevensc 12763
 
16825 efrain 12764
  .d-xl-grid {
12765
    display: grid !important;
12766
  }
16848 stevensc 12767
 
16825 efrain 12768
  .d-xl-table {
12769
    display: table !important;
12770
  }
16848 stevensc 12771
 
16825 efrain 12772
  .d-xl-table-row {
12773
    display: table-row !important;
12774
  }
16848 stevensc 12775
 
16825 efrain 12776
  .d-xl-table-cell {
12777
    display: table-cell !important;
12778
  }
16848 stevensc 12779
 
16825 efrain 12780
  .d-xl-flex {
12781
    display: flex !important;
12782
  }
16848 stevensc 12783
 
16825 efrain 12784
  .d-xl-inline-flex {
12785
    display: inline-flex !important;
12786
  }
16848 stevensc 12787
 
16825 efrain 12788
  .d-xl-none {
12789
    display: none !important;
12790
  }
16848 stevensc 12791
 
16825 efrain 12792
  .border-xl {
12793
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12794
  }
16848 stevensc 12795
 
16825 efrain 12796
  .border-xl-0 {
12797
    border: 0 !important;
12798
  }
16848 stevensc 12799
 
16825 efrain 12800
  .border-top-xl {
12801
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12802
  }
16848 stevensc 12803
 
16825 efrain 12804
  .border-top-xl-0 {
12805
    border-top: 0 !important;
12806
  }
16848 stevensc 12807
 
16825 efrain 12808
  .border-end-xl {
12809
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12810
  }
16848 stevensc 12811
 
16825 efrain 12812
  .border-end-xl-0 {
12813
    border-right: 0 !important;
12814
  }
16848 stevensc 12815
 
16825 efrain 12816
  .border-bottom-xl {
12817
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12818
  }
16848 stevensc 12819
 
16825 efrain 12820
  .border-bottom-xl-0 {
12821
    border-bottom: 0 !important;
12822
  }
16848 stevensc 12823
 
16825 efrain 12824
  .border-start-xl {
12825
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
12826
  }
16848 stevensc 12827
 
16825 efrain 12828
  .border-start-xl-0 {
12829
    border-left: 0 !important;
12830
  }
16848 stevensc 12831
 
16825 efrain 12832
  .flex-xl-fill {
12833
    flex: 1 1 auto !important;
12834
  }
16848 stevensc 12835
 
16825 efrain 12836
  .flex-xl-row {
12837
    flex-direction: row !important;
12838
  }
16848 stevensc 12839
 
16825 efrain 12840
  .flex-xl-column {
12841
    flex-direction: column !important;
12842
  }
16848 stevensc 12843
 
16825 efrain 12844
  .flex-xl-row-reverse {
12845
    flex-direction: row-reverse !important;
12846
  }
16848 stevensc 12847
 
16825 efrain 12848
  .flex-xl-column-reverse {
12849
    flex-direction: column-reverse !important;
12850
  }
16848 stevensc 12851
 
16825 efrain 12852
  .flex-xl-grow-0 {
12853
    flex-grow: 0 !important;
12854
  }
16848 stevensc 12855
 
16825 efrain 12856
  .flex-xl-grow-1 {
12857
    flex-grow: 1 !important;
12858
  }
16848 stevensc 12859
 
16825 efrain 12860
  .flex-xl-shrink-0 {
12861
    flex-shrink: 0 !important;
12862
  }
16848 stevensc 12863
 
16825 efrain 12864
  .flex-xl-shrink-1 {
12865
    flex-shrink: 1 !important;
12866
  }
16848 stevensc 12867
 
16825 efrain 12868
  .flex-xl-wrap {
12869
    flex-wrap: wrap !important;
12870
  }
16848 stevensc 12871
 
16825 efrain 12872
  .flex-xl-nowrap {
12873
    flex-wrap: nowrap !important;
12874
  }
16848 stevensc 12875
 
16825 efrain 12876
  .flex-xl-wrap-reverse {
12877
    flex-wrap: wrap-reverse !important;
12878
  }
16848 stevensc 12879
 
16825 efrain 12880
  .justify-content-xl-start {
12881
    justify-content: flex-start !important;
12882
  }
16848 stevensc 12883
 
16825 efrain 12884
  .justify-content-xl-end {
12885
    justify-content: flex-end !important;
12886
  }
16848 stevensc 12887
 
16825 efrain 12888
  .justify-content-xl-center {
12889
    justify-content: center !important;
12890
  }
16848 stevensc 12891
 
16825 efrain 12892
  .justify-content-xl-between {
12893
    justify-content: space-between !important;
12894
  }
16848 stevensc 12895
 
16825 efrain 12896
  .justify-content-xl-around {
12897
    justify-content: space-around !important;
12898
  }
16848 stevensc 12899
 
16825 efrain 12900
  .justify-content-xl-evenly {
12901
    justify-content: space-evenly !important;
12902
  }
16848 stevensc 12903
 
16825 efrain 12904
  .align-items-xl-start {
12905
    align-items: flex-start !important;
12906
  }
16848 stevensc 12907
 
16825 efrain 12908
  .align-items-xl-end {
12909
    align-items: flex-end !important;
12910
  }
16848 stevensc 12911
 
16825 efrain 12912
  .align-items-xl-center {
12913
    align-items: center !important;
12914
  }
16848 stevensc 12915
 
16825 efrain 12916
  .align-items-xl-baseline {
12917
    align-items: baseline !important;
12918
  }
16848 stevensc 12919
 
16825 efrain 12920
  .align-items-xl-stretch {
12921
    align-items: stretch !important;
12922
  }
16848 stevensc 12923
 
16825 efrain 12924
  .align-content-xl-start {
12925
    align-content: flex-start !important;
12926
  }
16848 stevensc 12927
 
16825 efrain 12928
  .align-content-xl-end {
12929
    align-content: flex-end !important;
12930
  }
16848 stevensc 12931
 
16825 efrain 12932
  .align-content-xl-center {
12933
    align-content: center !important;
12934
  }
16848 stevensc 12935
 
16825 efrain 12936
  .align-content-xl-between {
12937
    align-content: space-between !important;
12938
  }
16848 stevensc 12939
 
16825 efrain 12940
  .align-content-xl-around {
12941
    align-content: space-around !important;
12942
  }
16848 stevensc 12943
 
16825 efrain 12944
  .align-content-xl-stretch {
12945
    align-content: stretch !important;
12946
  }
16848 stevensc 12947
 
16825 efrain 12948
  .align-self-xl-auto {
12949
    align-self: auto !important;
12950
  }
16848 stevensc 12951
 
16825 efrain 12952
  .align-self-xl-start {
12953
    align-self: flex-start !important;
12954
  }
16848 stevensc 12955
 
16825 efrain 12956
  .align-self-xl-end {
12957
    align-self: flex-end !important;
12958
  }
16848 stevensc 12959
 
16825 efrain 12960
  .align-self-xl-center {
12961
    align-self: center !important;
12962
  }
16848 stevensc 12963
 
16825 efrain 12964
  .align-self-xl-baseline {
12965
    align-self: baseline !important;
12966
  }
16848 stevensc 12967
 
16825 efrain 12968
  .align-self-xl-stretch {
12969
    align-self: stretch !important;
12970
  }
16848 stevensc 12971
 
16825 efrain 12972
  .order-xl-first {
12973
    order: -1 !important;
12974
  }
16848 stevensc 12975
 
16825 efrain 12976
  .order-xl-0 {
12977
    order: 0 !important;
12978
  }
16848 stevensc 12979
 
16825 efrain 12980
  .order-xl-1 {
12981
    order: 1 !important;
12982
  }
16848 stevensc 12983
 
16825 efrain 12984
  .order-xl-2 {
12985
    order: 2 !important;
12986
  }
16848 stevensc 12987
 
16825 efrain 12988
  .order-xl-3 {
12989
    order: 3 !important;
12990
  }
16848 stevensc 12991
 
16825 efrain 12992
  .order-xl-4 {
12993
    order: 4 !important;
12994
  }
16848 stevensc 12995
 
16825 efrain 12996
  .order-xl-5 {
12997
    order: 5 !important;
12998
  }
16848 stevensc 12999
 
16825 efrain 13000
  .order-xl-last {
13001
    order: 6 !important;
13002
  }
16848 stevensc 13003
 
16825 efrain 13004
  .m-xl-0 {
13005
    margin: 0 !important;
13006
  }
16848 stevensc 13007
 
16825 efrain 13008
  .m-xl-1 {
13009
    margin: 0.25rem !important;
13010
  }
16848 stevensc 13011
 
16825 efrain 13012
  .m-xl-2 {
13013
    margin: 0.5rem !important;
13014
  }
16848 stevensc 13015
 
16825 efrain 13016
  .m-xl-3 {
13017
    margin: 1rem !important;
13018
  }
16848 stevensc 13019
 
16825 efrain 13020
  .m-xl-4 {
13021
    margin: 1.5rem !important;
13022
  }
16848 stevensc 13023
 
16825 efrain 13024
  .m-xl-5 {
13025
    margin: 3rem !important;
13026
  }
16848 stevensc 13027
 
16825 efrain 13028
  .m-xl-6 {
13029
    margin: 4.5rem !important;
13030
  }
16848 stevensc 13031
 
16825 efrain 13032
  .m-xl-7 {
13033
    margin: 6rem !important;
13034
  }
16848 stevensc 13035
 
16825 efrain 13036
  .m-xl-auto {
13037
    margin: auto !important;
13038
  }
16848 stevensc 13039
 
16825 efrain 13040
  .mx-xl-0 {
13041
    margin-right: 0 !important;
13042
    margin-left: 0 !important;
13043
  }
16848 stevensc 13044
 
16825 efrain 13045
  .mx-xl-1 {
13046
    margin-right: 0.25rem !important;
13047
    margin-left: 0.25rem !important;
13048
  }
16848 stevensc 13049
 
16825 efrain 13050
  .mx-xl-2 {
13051
    margin-right: 0.5rem !important;
13052
    margin-left: 0.5rem !important;
13053
  }
16848 stevensc 13054
 
16825 efrain 13055
  .mx-xl-3 {
13056
    margin-right: 1rem !important;
13057
    margin-left: 1rem !important;
13058
  }
16848 stevensc 13059
 
16825 efrain 13060
  .mx-xl-4 {
13061
    margin-right: 1.5rem !important;
13062
    margin-left: 1.5rem !important;
13063
  }
16848 stevensc 13064
 
16825 efrain 13065
  .mx-xl-5 {
13066
    margin-right: 3rem !important;
13067
    margin-left: 3rem !important;
13068
  }
16848 stevensc 13069
 
16825 efrain 13070
  .mx-xl-6 {
13071
    margin-right: 4.5rem !important;
13072
    margin-left: 4.5rem !important;
13073
  }
16848 stevensc 13074
 
16825 efrain 13075
  .mx-xl-7 {
13076
    margin-right: 6rem !important;
13077
    margin-left: 6rem !important;
13078
  }
16848 stevensc 13079
 
16825 efrain 13080
  .mx-xl-auto {
13081
    margin-right: auto !important;
13082
    margin-left: auto !important;
13083
  }
16848 stevensc 13084
 
16825 efrain 13085
  .my-xl-0 {
13086
    margin-top: 0 !important;
13087
    margin-bottom: 0 !important;
13088
  }
16848 stevensc 13089
 
16825 efrain 13090
  .my-xl-1 {
13091
    margin-top: 0.25rem !important;
13092
    margin-bottom: 0.25rem !important;
13093
  }
16848 stevensc 13094
 
16825 efrain 13095
  .my-xl-2 {
13096
    margin-top: 0.5rem !important;
13097
    margin-bottom: 0.5rem !important;
13098
  }
16848 stevensc 13099
 
16825 efrain 13100
  .my-xl-3 {
13101
    margin-top: 1rem !important;
13102
    margin-bottom: 1rem !important;
13103
  }
16848 stevensc 13104
 
16825 efrain 13105
  .my-xl-4 {
13106
    margin-top: 1.5rem !important;
13107
    margin-bottom: 1.5rem !important;
13108
  }
16848 stevensc 13109
 
16825 efrain 13110
  .my-xl-5 {
13111
    margin-top: 3rem !important;
13112
    margin-bottom: 3rem !important;
13113
  }
16848 stevensc 13114
 
16825 efrain 13115
  .my-xl-6 {
13116
    margin-top: 4.5rem !important;
13117
    margin-bottom: 4.5rem !important;
13118
  }
16848 stevensc 13119
 
16825 efrain 13120
  .my-xl-7 {
13121
    margin-top: 6rem !important;
13122
    margin-bottom: 6rem !important;
13123
  }
16848 stevensc 13124
 
16825 efrain 13125
  .my-xl-auto {
13126
    margin-top: auto !important;
13127
    margin-bottom: auto !important;
13128
  }
16848 stevensc 13129
 
16825 efrain 13130
  .mt-xl-0 {
13131
    margin-top: 0 !important;
13132
  }
16848 stevensc 13133
 
16825 efrain 13134
  .mt-xl-1 {
13135
    margin-top: 0.25rem !important;
13136
  }
16848 stevensc 13137
 
16825 efrain 13138
  .mt-xl-2 {
13139
    margin-top: 0.5rem !important;
13140
  }
16848 stevensc 13141
 
16825 efrain 13142
  .mt-xl-3 {
13143
    margin-top: 1rem !important;
13144
  }
16848 stevensc 13145
 
16825 efrain 13146
  .mt-xl-4 {
13147
    margin-top: 1.5rem !important;
13148
  }
16848 stevensc 13149
 
16825 efrain 13150
  .mt-xl-5 {
13151
    margin-top: 3rem !important;
13152
  }
16848 stevensc 13153
 
16825 efrain 13154
  .mt-xl-6 {
13155
    margin-top: 4.5rem !important;
13156
  }
16848 stevensc 13157
 
16825 efrain 13158
  .mt-xl-7 {
13159
    margin-top: 6rem !important;
13160
  }
16848 stevensc 13161
 
16825 efrain 13162
  .mt-xl-auto {
13163
    margin-top: auto !important;
13164
  }
16848 stevensc 13165
 
16825 efrain 13166
  .me-xl-0 {
13167
    margin-right: 0 !important;
13168
  }
16848 stevensc 13169
 
16825 efrain 13170
  .me-xl-1 {
13171
    margin-right: 0.25rem !important;
13172
  }
16848 stevensc 13173
 
16825 efrain 13174
  .me-xl-2 {
13175
    margin-right: 0.5rem !important;
13176
  }
16848 stevensc 13177
 
16825 efrain 13178
  .me-xl-3 {
13179
    margin-right: 1rem !important;
13180
  }
16848 stevensc 13181
 
16825 efrain 13182
  .me-xl-4 {
13183
    margin-right: 1.5rem !important;
13184
  }
16848 stevensc 13185
 
16825 efrain 13186
  .me-xl-5 {
13187
    margin-right: 3rem !important;
13188
  }
16848 stevensc 13189
 
16825 efrain 13190
  .me-xl-6 {
13191
    margin-right: 4.5rem !important;
13192
  }
16848 stevensc 13193
 
16825 efrain 13194
  .me-xl-7 {
13195
    margin-right: 6rem !important;
13196
  }
16848 stevensc 13197
 
16825 efrain 13198
  .me-xl-auto {
13199
    margin-right: auto !important;
13200
  }
16848 stevensc 13201
 
16825 efrain 13202
  .mb-xl-0 {
13203
    margin-bottom: 0 !important;
13204
  }
16848 stevensc 13205
 
16825 efrain 13206
  .mb-xl-1 {
13207
    margin-bottom: 0.25rem !important;
13208
  }
16848 stevensc 13209
 
16825 efrain 13210
  .mb-xl-2 {
13211
    margin-bottom: 0.5rem !important;
13212
  }
16848 stevensc 13213
 
16825 efrain 13214
  .mb-xl-3 {
13215
    margin-bottom: 1rem !important;
13216
  }
16848 stevensc 13217
 
16825 efrain 13218
  .mb-xl-4 {
13219
    margin-bottom: 1.5rem !important;
13220
  }
16848 stevensc 13221
 
16825 efrain 13222
  .mb-xl-5 {
13223
    margin-bottom: 3rem !important;
13224
  }
16848 stevensc 13225
 
16825 efrain 13226
  .mb-xl-6 {
13227
    margin-bottom: 4.5rem !important;
13228
  }
16848 stevensc 13229
 
16825 efrain 13230
  .mb-xl-7 {
13231
    margin-bottom: 6rem !important;
13232
  }
16848 stevensc 13233
 
16825 efrain 13234
  .mb-xl-auto {
13235
    margin-bottom: auto !important;
13236
  }
16848 stevensc 13237
 
16825 efrain 13238
  .ms-xl-0 {
13239
    margin-left: 0 !important;
13240
  }
16848 stevensc 13241
 
16825 efrain 13242
  .ms-xl-1 {
13243
    margin-left: 0.25rem !important;
13244
  }
16848 stevensc 13245
 
16825 efrain 13246
  .ms-xl-2 {
13247
    margin-left: 0.5rem !important;
13248
  }
16848 stevensc 13249
 
16825 efrain 13250
  .ms-xl-3 {
13251
    margin-left: 1rem !important;
13252
  }
16848 stevensc 13253
 
16825 efrain 13254
  .ms-xl-4 {
13255
    margin-left: 1.5rem !important;
13256
  }
16848 stevensc 13257
 
16825 efrain 13258
  .ms-xl-5 {
13259
    margin-left: 3rem !important;
13260
  }
16848 stevensc 13261
 
16825 efrain 13262
  .ms-xl-6 {
13263
    margin-left: 4.5rem !important;
13264
  }
16848 stevensc 13265
 
16825 efrain 13266
  .ms-xl-7 {
13267
    margin-left: 6rem !important;
13268
  }
16848 stevensc 13269
 
16825 efrain 13270
  .ms-xl-auto {
13271
    margin-left: auto !important;
13272
  }
16848 stevensc 13273
 
16825 efrain 13274
  .m-xl-n1 {
13275
    margin: -0.25rem !important;
13276
  }
16848 stevensc 13277
 
16825 efrain 13278
  .m-xl-n2 {
13279
    margin: -0.5rem !important;
13280
  }
16848 stevensc 13281
 
16825 efrain 13282
  .m-xl-n3 {
13283
    margin: -1rem !important;
13284
  }
16848 stevensc 13285
 
16825 efrain 13286
  .m-xl-n4 {
13287
    margin: -1.5rem !important;
13288
  }
16848 stevensc 13289
 
16825 efrain 13290
  .m-xl-n5 {
13291
    margin: -3rem !important;
13292
  }
16848 stevensc 13293
 
16825 efrain 13294
  .m-xl-n6 {
13295
    margin: -4.5rem !important;
13296
  }
16848 stevensc 13297
 
16825 efrain 13298
  .m-xl-n7 {
13299
    margin: -6rem !important;
13300
  }
16848 stevensc 13301
 
16825 efrain 13302
  .mx-xl-n1 {
13303
    margin-right: -0.25rem !important;
13304
    margin-left: -0.25rem !important;
13305
  }
16848 stevensc 13306
 
16825 efrain 13307
  .mx-xl-n2 {
13308
    margin-right: -0.5rem !important;
13309
    margin-left: -0.5rem !important;
13310
  }
16848 stevensc 13311
 
16825 efrain 13312
  .mx-xl-n3 {
13313
    margin-right: -1rem !important;
13314
    margin-left: -1rem !important;
13315
  }
16848 stevensc 13316
 
16825 efrain 13317
  .mx-xl-n4 {
13318
    margin-right: -1.5rem !important;
13319
    margin-left: -1.5rem !important;
13320
  }
16848 stevensc 13321
 
16825 efrain 13322
  .mx-xl-n5 {
13323
    margin-right: -3rem !important;
13324
    margin-left: -3rem !important;
13325
  }
16848 stevensc 13326
 
16825 efrain 13327
  .mx-xl-n6 {
13328
    margin-right: -4.5rem !important;
13329
    margin-left: -4.5rem !important;
13330
  }
16848 stevensc 13331
 
16825 efrain 13332
  .mx-xl-n7 {
13333
    margin-right: -6rem !important;
13334
    margin-left: -6rem !important;
13335
  }
16848 stevensc 13336
 
16825 efrain 13337
  .my-xl-n1 {
13338
    margin-top: -0.25rem !important;
13339
    margin-bottom: -0.25rem !important;
13340
  }
16848 stevensc 13341
 
16825 efrain 13342
  .my-xl-n2 {
13343
    margin-top: -0.5rem !important;
13344
    margin-bottom: -0.5rem !important;
13345
  }
16848 stevensc 13346
 
16825 efrain 13347
  .my-xl-n3 {
13348
    margin-top: -1rem !important;
13349
    margin-bottom: -1rem !important;
13350
  }
16848 stevensc 13351
 
16825 efrain 13352
  .my-xl-n4 {
13353
    margin-top: -1.5rem !important;
13354
    margin-bottom: -1.5rem !important;
13355
  }
16848 stevensc 13356
 
16825 efrain 13357
  .my-xl-n5 {
13358
    margin-top: -3rem !important;
13359
    margin-bottom: -3rem !important;
13360
  }
16848 stevensc 13361
 
16825 efrain 13362
  .my-xl-n6 {
13363
    margin-top: -4.5rem !important;
13364
    margin-bottom: -4.5rem !important;
13365
  }
16848 stevensc 13366
 
16825 efrain 13367
  .my-xl-n7 {
13368
    margin-top: -6rem !important;
13369
    margin-bottom: -6rem !important;
13370
  }
16848 stevensc 13371
 
16825 efrain 13372
  .mt-xl-n1 {
13373
    margin-top: -0.25rem !important;
13374
  }
16848 stevensc 13375
 
16825 efrain 13376
  .mt-xl-n2 {
13377
    margin-top: -0.5rem !important;
13378
  }
16848 stevensc 13379
 
16825 efrain 13380
  .mt-xl-n3 {
13381
    margin-top: -1rem !important;
13382
  }
16848 stevensc 13383
 
16825 efrain 13384
  .mt-xl-n4 {
13385
    margin-top: -1.5rem !important;
13386
  }
16848 stevensc 13387
 
16825 efrain 13388
  .mt-xl-n5 {
13389
    margin-top: -3rem !important;
13390
  }
16848 stevensc 13391
 
16825 efrain 13392
  .mt-xl-n6 {
13393
    margin-top: -4.5rem !important;
13394
  }
16848 stevensc 13395
 
16825 efrain 13396
  .mt-xl-n7 {
13397
    margin-top: -6rem !important;
13398
  }
16848 stevensc 13399
 
16825 efrain 13400
  .me-xl-n1 {
13401
    margin-right: -0.25rem !important;
13402
  }
16848 stevensc 13403
 
16825 efrain 13404
  .me-xl-n2 {
13405
    margin-right: -0.5rem !important;
13406
  }
16848 stevensc 13407
 
16825 efrain 13408
  .me-xl-n3 {
13409
    margin-right: -1rem !important;
13410
  }
16848 stevensc 13411
 
16825 efrain 13412
  .me-xl-n4 {
13413
    margin-right: -1.5rem !important;
13414
  }
16848 stevensc 13415
 
16825 efrain 13416
  .me-xl-n5 {
13417
    margin-right: -3rem !important;
13418
  }
16848 stevensc 13419
 
16825 efrain 13420
  .me-xl-n6 {
13421
    margin-right: -4.5rem !important;
13422
  }
16848 stevensc 13423
 
16825 efrain 13424
  .me-xl-n7 {
13425
    margin-right: -6rem !important;
13426
  }
16848 stevensc 13427
 
16825 efrain 13428
  .mb-xl-n1 {
13429
    margin-bottom: -0.25rem !important;
13430
  }
16848 stevensc 13431
 
16825 efrain 13432
  .mb-xl-n2 {
13433
    margin-bottom: -0.5rem !important;
13434
  }
16848 stevensc 13435
 
16825 efrain 13436
  .mb-xl-n3 {
13437
    margin-bottom: -1rem !important;
13438
  }
16848 stevensc 13439
 
16825 efrain 13440
  .mb-xl-n4 {
13441
    margin-bottom: -1.5rem !important;
13442
  }
16848 stevensc 13443
 
16825 efrain 13444
  .mb-xl-n5 {
13445
    margin-bottom: -3rem !important;
13446
  }
16848 stevensc 13447
 
16825 efrain 13448
  .mb-xl-n6 {
13449
    margin-bottom: -4.5rem !important;
13450
  }
16848 stevensc 13451
 
16825 efrain 13452
  .mb-xl-n7 {
13453
    margin-bottom: -6rem !important;
13454
  }
16848 stevensc 13455
 
16825 efrain 13456
  .ms-xl-n1 {
13457
    margin-left: -0.25rem !important;
13458
  }
16848 stevensc 13459
 
16825 efrain 13460
  .ms-xl-n2 {
13461
    margin-left: -0.5rem !important;
13462
  }
16848 stevensc 13463
 
16825 efrain 13464
  .ms-xl-n3 {
13465
    margin-left: -1rem !important;
13466
  }
16848 stevensc 13467
 
16825 efrain 13468
  .ms-xl-n4 {
13469
    margin-left: -1.5rem !important;
13470
  }
16848 stevensc 13471
 
16825 efrain 13472
  .ms-xl-n5 {
13473
    margin-left: -3rem !important;
13474
  }
16848 stevensc 13475
 
16825 efrain 13476
  .ms-xl-n6 {
13477
    margin-left: -4.5rem !important;
13478
  }
16848 stevensc 13479
 
16825 efrain 13480
  .ms-xl-n7 {
13481
    margin-left: -6rem !important;
13482
  }
16848 stevensc 13483
 
16825 efrain 13484
  .p-xl-0 {
13485
    padding: 0 !important;
13486
  }
16848 stevensc 13487
 
16825 efrain 13488
  .p-xl-1 {
13489
    padding: 0.25rem !important;
13490
  }
16848 stevensc 13491
 
16825 efrain 13492
  .p-xl-2 {
13493
    padding: 0.5rem !important;
13494
  }
16848 stevensc 13495
 
16825 efrain 13496
  .p-xl-3 {
13497
    padding: 1rem !important;
13498
  }
16848 stevensc 13499
 
16825 efrain 13500
  .p-xl-4 {
13501
    padding: 1.5rem !important;
13502
  }
16848 stevensc 13503
 
16825 efrain 13504
  .p-xl-5 {
13505
    padding: 3rem !important;
13506
  }
16848 stevensc 13507
 
16825 efrain 13508
  .p-xl-6 {
13509
    padding: 4.5rem !important;
13510
  }
16848 stevensc 13511
 
16825 efrain 13512
  .p-xl-7 {
13513
    padding: 6rem !important;
13514
  }
16848 stevensc 13515
 
16825 efrain 13516
  .px-xl-0 {
13517
    padding-right: 0 !important;
13518
    padding-left: 0 !important;
13519
  }
16848 stevensc 13520
 
16825 efrain 13521
  .px-xl-1 {
13522
    padding-right: 0.25rem !important;
13523
    padding-left: 0.25rem !important;
13524
  }
16848 stevensc 13525
 
16825 efrain 13526
  .px-xl-2 {
13527
    padding-right: 0.5rem !important;
13528
    padding-left: 0.5rem !important;
13529
  }
16848 stevensc 13530
 
16825 efrain 13531
  .px-xl-3 {
13532
    padding-right: 1rem !important;
13533
    padding-left: 1rem !important;
13534
  }
16848 stevensc 13535
 
16825 efrain 13536
  .px-xl-4 {
13537
    padding-right: 1.5rem !important;
13538
    padding-left: 1.5rem !important;
13539
  }
16848 stevensc 13540
 
16825 efrain 13541
  .px-xl-5 {
13542
    padding-right: 3rem !important;
13543
    padding-left: 3rem !important;
13544
  }
16848 stevensc 13545
 
16825 efrain 13546
  .px-xl-6 {
13547
    padding-right: 4.5rem !important;
13548
    padding-left: 4.5rem !important;
13549
  }
16848 stevensc 13550
 
16825 efrain 13551
  .px-xl-7 {
13552
    padding-right: 6rem !important;
13553
    padding-left: 6rem !important;
13554
  }
16848 stevensc 13555
 
16825 efrain 13556
  .py-xl-0 {
13557
    padding-top: 0 !important;
13558
    padding-bottom: 0 !important;
13559
  }
16848 stevensc 13560
 
16825 efrain 13561
  .py-xl-1 {
13562
    padding-top: 0.25rem !important;
13563
    padding-bottom: 0.25rem !important;
13564
  }
16848 stevensc 13565
 
16825 efrain 13566
  .py-xl-2 {
13567
    padding-top: 0.5rem !important;
13568
    padding-bottom: 0.5rem !important;
13569
  }
16848 stevensc 13570
 
16825 efrain 13571
  .py-xl-3 {
13572
    padding-top: 1rem !important;
13573
    padding-bottom: 1rem !important;
13574
  }
16848 stevensc 13575
 
16825 efrain 13576
  .py-xl-4 {
13577
    padding-top: 1.5rem !important;
13578
    padding-bottom: 1.5rem !important;
13579
  }
16848 stevensc 13580
 
16825 efrain 13581
  .py-xl-5 {
13582
    padding-top: 3rem !important;
13583
    padding-bottom: 3rem !important;
13584
  }
16848 stevensc 13585
 
16825 efrain 13586
  .py-xl-6 {
13587
    padding-top: 4.5rem !important;
13588
    padding-bottom: 4.5rem !important;
13589
  }
16848 stevensc 13590
 
16825 efrain 13591
  .py-xl-7 {
13592
    padding-top: 6rem !important;
13593
    padding-bottom: 6rem !important;
13594
  }
16848 stevensc 13595
 
16825 efrain 13596
  .pt-xl-0 {
13597
    padding-top: 0 !important;
13598
  }
16848 stevensc 13599
 
16825 efrain 13600
  .pt-xl-1 {
13601
    padding-top: 0.25rem !important;
13602
  }
16848 stevensc 13603
 
16825 efrain 13604
  .pt-xl-2 {
13605
    padding-top: 0.5rem !important;
13606
  }
16848 stevensc 13607
 
16825 efrain 13608
  .pt-xl-3 {
13609
    padding-top: 1rem !important;
13610
  }
16848 stevensc 13611
 
16825 efrain 13612
  .pt-xl-4 {
13613
    padding-top: 1.5rem !important;
13614
  }
16848 stevensc 13615
 
16825 efrain 13616
  .pt-xl-5 {
13617
    padding-top: 3rem !important;
13618
  }
16848 stevensc 13619
 
16825 efrain 13620
  .pt-xl-6 {
13621
    padding-top: 4.5rem !important;
13622
  }
16848 stevensc 13623
 
16825 efrain 13624
  .pt-xl-7 {
13625
    padding-top: 6rem !important;
13626
  }
16848 stevensc 13627
 
16825 efrain 13628
  .pe-xl-0 {
13629
    padding-right: 0 !important;
13630
  }
16848 stevensc 13631
 
16825 efrain 13632
  .pe-xl-1 {
13633
    padding-right: 0.25rem !important;
13634
  }
16848 stevensc 13635
 
16825 efrain 13636
  .pe-xl-2 {
13637
    padding-right: 0.5rem !important;
13638
  }
16848 stevensc 13639
 
16825 efrain 13640
  .pe-xl-3 {
13641
    padding-right: 1rem !important;
13642
  }
16848 stevensc 13643
 
16825 efrain 13644
  .pe-xl-4 {
13645
    padding-right: 1.5rem !important;
13646
  }
16848 stevensc 13647
 
16825 efrain 13648
  .pe-xl-5 {
13649
    padding-right: 3rem !important;
13650
  }
16848 stevensc 13651
 
16825 efrain 13652
  .pe-xl-6 {
13653
    padding-right: 4.5rem !important;
13654
  }
16848 stevensc 13655
 
16825 efrain 13656
  .pe-xl-7 {
13657
    padding-right: 6rem !important;
13658
  }
16848 stevensc 13659
 
16825 efrain 13660
  .pb-xl-0 {
13661
    padding-bottom: 0 !important;
13662
  }
16848 stevensc 13663
 
16825 efrain 13664
  .pb-xl-1 {
13665
    padding-bottom: 0.25rem !important;
13666
  }
16848 stevensc 13667
 
16825 efrain 13668
  .pb-xl-2 {
13669
    padding-bottom: 0.5rem !important;
13670
  }
16848 stevensc 13671
 
16825 efrain 13672
  .pb-xl-3 {
13673
    padding-bottom: 1rem !important;
13674
  }
16848 stevensc 13675
 
16825 efrain 13676
  .pb-xl-4 {
13677
    padding-bottom: 1.5rem !important;
13678
  }
16848 stevensc 13679
 
16825 efrain 13680
  .pb-xl-5 {
13681
    padding-bottom: 3rem !important;
13682
  }
16848 stevensc 13683
 
16825 efrain 13684
  .pb-xl-6 {
13685
    padding-bottom: 4.5rem !important;
13686
  }
16848 stevensc 13687
 
16825 efrain 13688
  .pb-xl-7 {
13689
    padding-bottom: 6rem !important;
13690
  }
16848 stevensc 13691
 
16825 efrain 13692
  .ps-xl-0 {
13693
    padding-left: 0 !important;
13694
  }
16848 stevensc 13695
 
16825 efrain 13696
  .ps-xl-1 {
13697
    padding-left: 0.25rem !important;
13698
  }
16848 stevensc 13699
 
16825 efrain 13700
  .ps-xl-2 {
13701
    padding-left: 0.5rem !important;
13702
  }
16848 stevensc 13703
 
16825 efrain 13704
  .ps-xl-3 {
13705
    padding-left: 1rem !important;
13706
  }
16848 stevensc 13707
 
16825 efrain 13708
  .ps-xl-4 {
13709
    padding-left: 1.5rem !important;
13710
  }
16848 stevensc 13711
 
16825 efrain 13712
  .ps-xl-5 {
13713
    padding-left: 3rem !important;
13714
  }
16848 stevensc 13715
 
16825 efrain 13716
  .ps-xl-6 {
13717
    padding-left: 4.5rem !important;
13718
  }
16848 stevensc 13719
 
16825 efrain 13720
  .ps-xl-7 {
13721
    padding-left: 6rem !important;
13722
  }
16848 stevensc 13723
 
16825 efrain 13724
  .gap-xl-0 {
13725
    gap: 0 !important;
13726
  }
16848 stevensc 13727
 
16825 efrain 13728
  .gap-xl-1 {
13729
    gap: 0.25rem !important;
13730
  }
16848 stevensc 13731
 
16825 efrain 13732
  .gap-xl-2 {
13733
    gap: 0.5rem !important;
13734
  }
16848 stevensc 13735
 
16825 efrain 13736
  .gap-xl-3 {
13737
    gap: 1rem !important;
13738
  }
16848 stevensc 13739
 
16825 efrain 13740
  .gap-xl-4 {
13741
    gap: 1.5rem !important;
13742
  }
16848 stevensc 13743
 
16825 efrain 13744
  .gap-xl-5 {
13745
    gap: 3rem !important;
13746
  }
16848 stevensc 13747
 
16825 efrain 13748
  .gap-xl-6 {
13749
    gap: 4.5rem !important;
13750
  }
16848 stevensc 13751
 
16825 efrain 13752
  .gap-xl-7 {
13753
    gap: 6rem !important;
13754
  }
16848 stevensc 13755
 
16825 efrain 13756
  .text-xl-start {
13757
    text-align: left !important;
13758
  }
16848 stevensc 13759
 
16825 efrain 13760
  .text-xl-end {
13761
    text-align: right !important;
13762
  }
16848 stevensc 13763
 
16825 efrain 13764
  .text-xl-center {
13765
    text-align: center !important;
13766
  }
13767
}
16848 stevensc 13768
 
16825 efrain 13769
@media (min-width: 1400px) {
13770
  .float-xxl-start {
13771
    float: left !important;
13772
  }
16848 stevensc 13773
 
16825 efrain 13774
  .float-xxl-end {
13775
    float: right !important;
13776
  }
16848 stevensc 13777
 
16825 efrain 13778
  .float-xxl-none {
13779
    float: none !important;
13780
  }
16848 stevensc 13781
 
16825 efrain 13782
  .d-xxl-inline {
13783
    display: inline !important;
13784
  }
16848 stevensc 13785
 
16825 efrain 13786
  .d-xxl-inline-block {
13787
    display: inline-block !important;
13788
  }
16848 stevensc 13789
 
16825 efrain 13790
  .d-xxl-block {
13791
    display: block !important;
13792
  }
16848 stevensc 13793
 
16825 efrain 13794
  .d-xxl-grid {
13795
    display: grid !important;
13796
  }
16848 stevensc 13797
 
16825 efrain 13798
  .d-xxl-table {
13799
    display: table !important;
13800
  }
16848 stevensc 13801
 
16825 efrain 13802
  .d-xxl-table-row {
13803
    display: table-row !important;
13804
  }
16848 stevensc 13805
 
16825 efrain 13806
  .d-xxl-table-cell {
13807
    display: table-cell !important;
13808
  }
16848 stevensc 13809
 
16825 efrain 13810
  .d-xxl-flex {
13811
    display: flex !important;
13812
  }
16848 stevensc 13813
 
16825 efrain 13814
  .d-xxl-inline-flex {
13815
    display: inline-flex !important;
13816
  }
16848 stevensc 13817
 
16825 efrain 13818
  .d-xxl-none {
13819
    display: none !important;
13820
  }
16848 stevensc 13821
 
16825 efrain 13822
  .border-xxl {
13823
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13824
  }
16848 stevensc 13825
 
16825 efrain 13826
  .border-xxl-0 {
13827
    border: 0 !important;
13828
  }
16848 stevensc 13829
 
16825 efrain 13830
  .border-top-xxl {
13831
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13832
  }
16848 stevensc 13833
 
16825 efrain 13834
  .border-top-xxl-0 {
13835
    border-top: 0 !important;
13836
  }
16848 stevensc 13837
 
16825 efrain 13838
  .border-end-xxl {
13839
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13840
  }
16848 stevensc 13841
 
16825 efrain 13842
  .border-end-xxl-0 {
13843
    border-right: 0 !important;
13844
  }
16848 stevensc 13845
 
16825 efrain 13846
  .border-bottom-xxl {
13847
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13848
  }
16848 stevensc 13849
 
16825 efrain 13850
  .border-bottom-xxl-0 {
13851
    border-bottom: 0 !important;
13852
  }
16848 stevensc 13853
 
16825 efrain 13854
  .border-start-xxl {
13855
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
13856
  }
16848 stevensc 13857
 
16825 efrain 13858
  .border-start-xxl-0 {
13859
    border-left: 0 !important;
13860
  }
16848 stevensc 13861
 
16825 efrain 13862
  .flex-xxl-fill {
13863
    flex: 1 1 auto !important;
13864
  }
16848 stevensc 13865
 
16825 efrain 13866
  .flex-xxl-row {
13867
    flex-direction: row !important;
13868
  }
16848 stevensc 13869
 
16825 efrain 13870
  .flex-xxl-column {
13871
    flex-direction: column !important;
13872
  }
16848 stevensc 13873
 
16825 efrain 13874
  .flex-xxl-row-reverse {
13875
    flex-direction: row-reverse !important;
13876
  }
16848 stevensc 13877
 
16825 efrain 13878
  .flex-xxl-column-reverse {
13879
    flex-direction: column-reverse !important;
13880
  }
16848 stevensc 13881
 
16825 efrain 13882
  .flex-xxl-grow-0 {
13883
    flex-grow: 0 !important;
13884
  }
16848 stevensc 13885
 
16825 efrain 13886
  .flex-xxl-grow-1 {
13887
    flex-grow: 1 !important;
13888
  }
16848 stevensc 13889
 
16825 efrain 13890
  .flex-xxl-shrink-0 {
13891
    flex-shrink: 0 !important;
13892
  }
16848 stevensc 13893
 
16825 efrain 13894
  .flex-xxl-shrink-1 {
13895
    flex-shrink: 1 !important;
13896
  }
16848 stevensc 13897
 
16825 efrain 13898
  .flex-xxl-wrap {
13899
    flex-wrap: wrap !important;
13900
  }
16848 stevensc 13901
 
16825 efrain 13902
  .flex-xxl-nowrap {
13903
    flex-wrap: nowrap !important;
13904
  }
16848 stevensc 13905
 
16825 efrain 13906
  .flex-xxl-wrap-reverse {
13907
    flex-wrap: wrap-reverse !important;
13908
  }
16848 stevensc 13909
 
16825 efrain 13910
  .justify-content-xxl-start {
13911
    justify-content: flex-start !important;
13912
  }
16848 stevensc 13913
 
16825 efrain 13914
  .justify-content-xxl-end {
13915
    justify-content: flex-end !important;
13916
  }
16848 stevensc 13917
 
16825 efrain 13918
  .justify-content-xxl-center {
13919
    justify-content: center !important;
13920
  }
16848 stevensc 13921
 
16825 efrain 13922
  .justify-content-xxl-between {
13923
    justify-content: space-between !important;
13924
  }
16848 stevensc 13925
 
16825 efrain 13926
  .justify-content-xxl-around {
13927
    justify-content: space-around !important;
13928
  }
16848 stevensc 13929
 
16825 efrain 13930
  .justify-content-xxl-evenly {
13931
    justify-content: space-evenly !important;
13932
  }
16848 stevensc 13933
 
16825 efrain 13934
  .align-items-xxl-start {
13935
    align-items: flex-start !important;
13936
  }
16848 stevensc 13937
 
16825 efrain 13938
  .align-items-xxl-end {
13939
    align-items: flex-end !important;
13940
  }
16848 stevensc 13941
 
16825 efrain 13942
  .align-items-xxl-center {
13943
    align-items: center !important;
13944
  }
16848 stevensc 13945
 
16825 efrain 13946
  .align-items-xxl-baseline {
13947
    align-items: baseline !important;
13948
  }
16848 stevensc 13949
 
16825 efrain 13950
  .align-items-xxl-stretch {
13951
    align-items: stretch !important;
13952
  }
16848 stevensc 13953
 
16825 efrain 13954
  .align-content-xxl-start {
13955
    align-content: flex-start !important;
13956
  }
16848 stevensc 13957
 
16825 efrain 13958
  .align-content-xxl-end {
13959
    align-content: flex-end !important;
13960
  }
16848 stevensc 13961
 
16825 efrain 13962
  .align-content-xxl-center {
13963
    align-content: center !important;
13964
  }
16848 stevensc 13965
 
16825 efrain 13966
  .align-content-xxl-between {
13967
    align-content: space-between !important;
13968
  }
16848 stevensc 13969
 
16825 efrain 13970
  .align-content-xxl-around {
13971
    align-content: space-around !important;
13972
  }
16848 stevensc 13973
 
16825 efrain 13974
  .align-content-xxl-stretch {
13975
    align-content: stretch !important;
13976
  }
16848 stevensc 13977
 
16825 efrain 13978
  .align-self-xxl-auto {
13979
    align-self: auto !important;
13980
  }
16848 stevensc 13981
 
16825 efrain 13982
  .align-self-xxl-start {
13983
    align-self: flex-start !important;
13984
  }
16848 stevensc 13985
 
16825 efrain 13986
  .align-self-xxl-end {
13987
    align-self: flex-end !important;
13988
  }
16848 stevensc 13989
 
16825 efrain 13990
  .align-self-xxl-center {
13991
    align-self: center !important;
13992
  }
16848 stevensc 13993
 
16825 efrain 13994
  .align-self-xxl-baseline {
13995
    align-self: baseline !important;
13996
  }
16848 stevensc 13997
 
16825 efrain 13998
  .align-self-xxl-stretch {
13999
    align-self: stretch !important;
14000
  }
16848 stevensc 14001
 
16825 efrain 14002
  .order-xxl-first {
14003
    order: -1 !important;
14004
  }
16848 stevensc 14005
 
16825 efrain 14006
  .order-xxl-0 {
14007
    order: 0 !important;
14008
  }
16848 stevensc 14009
 
16825 efrain 14010
  .order-xxl-1 {
14011
    order: 1 !important;
14012
  }
16848 stevensc 14013
 
16825 efrain 14014
  .order-xxl-2 {
14015
    order: 2 !important;
14016
  }
16848 stevensc 14017
 
16825 efrain 14018
  .order-xxl-3 {
14019
    order: 3 !important;
14020
  }
16848 stevensc 14021
 
16825 efrain 14022
  .order-xxl-4 {
14023
    order: 4 !important;
14024
  }
16848 stevensc 14025
 
16825 efrain 14026
  .order-xxl-5 {
14027
    order: 5 !important;
14028
  }
16848 stevensc 14029
 
16825 efrain 14030
  .order-xxl-last {
14031
    order: 6 !important;
14032
  }
16848 stevensc 14033
 
16825 efrain 14034
  .m-xxl-0 {
14035
    margin: 0 !important;
14036
  }
16848 stevensc 14037
 
16825 efrain 14038
  .m-xxl-1 {
14039
    margin: 0.25rem !important;
14040
  }
16848 stevensc 14041
 
16825 efrain 14042
  .m-xxl-2 {
14043
    margin: 0.5rem !important;
14044
  }
16848 stevensc 14045
 
16825 efrain 14046
  .m-xxl-3 {
14047
    margin: 1rem !important;
14048
  }
16848 stevensc 14049
 
16825 efrain 14050
  .m-xxl-4 {
14051
    margin: 1.5rem !important;
14052
  }
16848 stevensc 14053
 
16825 efrain 14054
  .m-xxl-5 {
14055
    margin: 3rem !important;
14056
  }
16848 stevensc 14057
 
16825 efrain 14058
  .m-xxl-6 {
14059
    margin: 4.5rem !important;
14060
  }
16848 stevensc 14061
 
16825 efrain 14062
  .m-xxl-7 {
14063
    margin: 6rem !important;
14064
  }
16848 stevensc 14065
 
16825 efrain 14066
  .m-xxl-auto {
14067
    margin: auto !important;
14068
  }
16848 stevensc 14069
 
16825 efrain 14070
  .mx-xxl-0 {
14071
    margin-right: 0 !important;
14072
    margin-left: 0 !important;
14073
  }
16848 stevensc 14074
 
16825 efrain 14075
  .mx-xxl-1 {
14076
    margin-right: 0.25rem !important;
14077
    margin-left: 0.25rem !important;
14078
  }
16848 stevensc 14079
 
16825 efrain 14080
  .mx-xxl-2 {
14081
    margin-right: 0.5rem !important;
14082
    margin-left: 0.5rem !important;
14083
  }
16848 stevensc 14084
 
16825 efrain 14085
  .mx-xxl-3 {
14086
    margin-right: 1rem !important;
14087
    margin-left: 1rem !important;
14088
  }
16848 stevensc 14089
 
16825 efrain 14090
  .mx-xxl-4 {
14091
    margin-right: 1.5rem !important;
14092
    margin-left: 1.5rem !important;
14093
  }
16848 stevensc 14094
 
16825 efrain 14095
  .mx-xxl-5 {
14096
    margin-right: 3rem !important;
14097
    margin-left: 3rem !important;
14098
  }
16848 stevensc 14099
 
16825 efrain 14100
  .mx-xxl-6 {
14101
    margin-right: 4.5rem !important;
14102
    margin-left: 4.5rem !important;
14103
  }
16848 stevensc 14104
 
16825 efrain 14105
  .mx-xxl-7 {
14106
    margin-right: 6rem !important;
14107
    margin-left: 6rem !important;
14108
  }
16848 stevensc 14109
 
16825 efrain 14110
  .mx-xxl-auto {
14111
    margin-right: auto !important;
14112
    margin-left: auto !important;
14113
  }
16848 stevensc 14114
 
16825 efrain 14115
  .my-xxl-0 {
14116
    margin-top: 0 !important;
14117
    margin-bottom: 0 !important;
14118
  }
16848 stevensc 14119
 
16825 efrain 14120
  .my-xxl-1 {
14121
    margin-top: 0.25rem !important;
14122
    margin-bottom: 0.25rem !important;
14123
  }
16848 stevensc 14124
 
16825 efrain 14125
  .my-xxl-2 {
14126
    margin-top: 0.5rem !important;
14127
    margin-bottom: 0.5rem !important;
14128
  }
16848 stevensc 14129
 
16825 efrain 14130
  .my-xxl-3 {
14131
    margin-top: 1rem !important;
14132
    margin-bottom: 1rem !important;
14133
  }
16848 stevensc 14134
 
16825 efrain 14135
  .my-xxl-4 {
14136
    margin-top: 1.5rem !important;
14137
    margin-bottom: 1.5rem !important;
14138
  }
16848 stevensc 14139
 
16825 efrain 14140
  .my-xxl-5 {
14141
    margin-top: 3rem !important;
14142
    margin-bottom: 3rem !important;
14143
  }
16848 stevensc 14144
 
16825 efrain 14145
  .my-xxl-6 {
14146
    margin-top: 4.5rem !important;
14147
    margin-bottom: 4.5rem !important;
14148
  }
16848 stevensc 14149
 
16825 efrain 14150
  .my-xxl-7 {
14151
    margin-top: 6rem !important;
14152
    margin-bottom: 6rem !important;
14153
  }
16848 stevensc 14154
 
16825 efrain 14155
  .my-xxl-auto {
14156
    margin-top: auto !important;
14157
    margin-bottom: auto !important;
14158
  }
16848 stevensc 14159
 
16825 efrain 14160
  .mt-xxl-0 {
14161
    margin-top: 0 !important;
14162
  }
16848 stevensc 14163
 
16825 efrain 14164
  .mt-xxl-1 {
14165
    margin-top: 0.25rem !important;
14166
  }
16848 stevensc 14167
 
16825 efrain 14168
  .mt-xxl-2 {
14169
    margin-top: 0.5rem !important;
14170
  }
16848 stevensc 14171
 
16825 efrain 14172
  .mt-xxl-3 {
14173
    margin-top: 1rem !important;
14174
  }
16848 stevensc 14175
 
16825 efrain 14176
  .mt-xxl-4 {
14177
    margin-top: 1.5rem !important;
14178
  }
16848 stevensc 14179
 
16825 efrain 14180
  .mt-xxl-5 {
14181
    margin-top: 3rem !important;
14182
  }
16848 stevensc 14183
 
16825 efrain 14184
  .mt-xxl-6 {
14185
    margin-top: 4.5rem !important;
14186
  }
16848 stevensc 14187
 
16825 efrain 14188
  .mt-xxl-7 {
14189
    margin-top: 6rem !important;
14190
  }
16848 stevensc 14191
 
16825 efrain 14192
  .mt-xxl-auto {
14193
    margin-top: auto !important;
14194
  }
16848 stevensc 14195
 
16825 efrain 14196
  .me-xxl-0 {
14197
    margin-right: 0 !important;
14198
  }
16848 stevensc 14199
 
16825 efrain 14200
  .me-xxl-1 {
14201
    margin-right: 0.25rem !important;
14202
  }
16848 stevensc 14203
 
16825 efrain 14204
  .me-xxl-2 {
14205
    margin-right: 0.5rem !important;
14206
  }
16848 stevensc 14207
 
16825 efrain 14208
  .me-xxl-3 {
14209
    margin-right: 1rem !important;
14210
  }
16848 stevensc 14211
 
16825 efrain 14212
  .me-xxl-4 {
14213
    margin-right: 1.5rem !important;
14214
  }
16848 stevensc 14215
 
16825 efrain 14216
  .me-xxl-5 {
14217
    margin-right: 3rem !important;
14218
  }
16848 stevensc 14219
 
16825 efrain 14220
  .me-xxl-6 {
14221
    margin-right: 4.5rem !important;
14222
  }
16848 stevensc 14223
 
16825 efrain 14224
  .me-xxl-7 {
14225
    margin-right: 6rem !important;
14226
  }
16848 stevensc 14227
 
16825 efrain 14228
  .me-xxl-auto {
14229
    margin-right: auto !important;
14230
  }
16848 stevensc 14231
 
16825 efrain 14232
  .mb-xxl-0 {
14233
    margin-bottom: 0 !important;
14234
  }
16848 stevensc 14235
 
16825 efrain 14236
  .mb-xxl-1 {
14237
    margin-bottom: 0.25rem !important;
14238
  }
16848 stevensc 14239
 
16825 efrain 14240
  .mb-xxl-2 {
14241
    margin-bottom: 0.5rem !important;
14242
  }
16848 stevensc 14243
 
16825 efrain 14244
  .mb-xxl-3 {
14245
    margin-bottom: 1rem !important;
14246
  }
16848 stevensc 14247
 
16825 efrain 14248
  .mb-xxl-4 {
14249
    margin-bottom: 1.5rem !important;
14250
  }
16848 stevensc 14251
 
16825 efrain 14252
  .mb-xxl-5 {
14253
    margin-bottom: 3rem !important;
14254
  }
16848 stevensc 14255
 
16825 efrain 14256
  .mb-xxl-6 {
14257
    margin-bottom: 4.5rem !important;
14258
  }
16848 stevensc 14259
 
16825 efrain 14260
  .mb-xxl-7 {
14261
    margin-bottom: 6rem !important;
14262
  }
16848 stevensc 14263
 
16825 efrain 14264
  .mb-xxl-auto {
14265
    margin-bottom: auto !important;
14266
  }
16848 stevensc 14267
 
16825 efrain 14268
  .ms-xxl-0 {
14269
    margin-left: 0 !important;
14270
  }
16848 stevensc 14271
 
16825 efrain 14272
  .ms-xxl-1 {
14273
    margin-left: 0.25rem !important;
14274
  }
16848 stevensc 14275
 
16825 efrain 14276
  .ms-xxl-2 {
14277
    margin-left: 0.5rem !important;
14278
  }
16848 stevensc 14279
 
16825 efrain 14280
  .ms-xxl-3 {
14281
    margin-left: 1rem !important;
14282
  }
16848 stevensc 14283
 
16825 efrain 14284
  .ms-xxl-4 {
14285
    margin-left: 1.5rem !important;
14286
  }
16848 stevensc 14287
 
16825 efrain 14288
  .ms-xxl-5 {
14289
    margin-left: 3rem !important;
14290
  }
16848 stevensc 14291
 
16825 efrain 14292
  .ms-xxl-6 {
14293
    margin-left: 4.5rem !important;
14294
  }
16848 stevensc 14295
 
16825 efrain 14296
  .ms-xxl-7 {
14297
    margin-left: 6rem !important;
14298
  }
16848 stevensc 14299
 
16825 efrain 14300
  .ms-xxl-auto {
14301
    margin-left: auto !important;
14302
  }
16848 stevensc 14303
 
16825 efrain 14304
  .m-xxl-n1 {
14305
    margin: -0.25rem !important;
14306
  }
16848 stevensc 14307
 
16825 efrain 14308
  .m-xxl-n2 {
14309
    margin: -0.5rem !important;
14310
  }
16848 stevensc 14311
 
16825 efrain 14312
  .m-xxl-n3 {
14313
    margin: -1rem !important;
14314
  }
16848 stevensc 14315
 
16825 efrain 14316
  .m-xxl-n4 {
14317
    margin: -1.5rem !important;
14318
  }
16848 stevensc 14319
 
16825 efrain 14320
  .m-xxl-n5 {
14321
    margin: -3rem !important;
14322
  }
16848 stevensc 14323
 
16825 efrain 14324
  .m-xxl-n6 {
14325
    margin: -4.5rem !important;
14326
  }
16848 stevensc 14327
 
16825 efrain 14328
  .m-xxl-n7 {
14329
    margin: -6rem !important;
14330
  }
16848 stevensc 14331
 
16825 efrain 14332
  .mx-xxl-n1 {
14333
    margin-right: -0.25rem !important;
14334
    margin-left: -0.25rem !important;
14335
  }
16848 stevensc 14336
 
16825 efrain 14337
  .mx-xxl-n2 {
14338
    margin-right: -0.5rem !important;
14339
    margin-left: -0.5rem !important;
14340
  }
16848 stevensc 14341
 
16825 efrain 14342
  .mx-xxl-n3 {
14343
    margin-right: -1rem !important;
14344
    margin-left: -1rem !important;
14345
  }
16848 stevensc 14346
 
16825 efrain 14347
  .mx-xxl-n4 {
14348
    margin-right: -1.5rem !important;
14349
    margin-left: -1.5rem !important;
14350
  }
16848 stevensc 14351
 
16825 efrain 14352
  .mx-xxl-n5 {
14353
    margin-right: -3rem !important;
14354
    margin-left: -3rem !important;
14355
  }
16848 stevensc 14356
 
16825 efrain 14357
  .mx-xxl-n6 {
14358
    margin-right: -4.5rem !important;
14359
    margin-left: -4.5rem !important;
14360
  }
16848 stevensc 14361
 
16825 efrain 14362
  .mx-xxl-n7 {
14363
    margin-right: -6rem !important;
14364
    margin-left: -6rem !important;
14365
  }
16848 stevensc 14366
 
16825 efrain 14367
  .my-xxl-n1 {
14368
    margin-top: -0.25rem !important;
14369
    margin-bottom: -0.25rem !important;
14370
  }
16848 stevensc 14371
 
16825 efrain 14372
  .my-xxl-n2 {
14373
    margin-top: -0.5rem !important;
14374
    margin-bottom: -0.5rem !important;
14375
  }
16848 stevensc 14376
 
16825 efrain 14377
  .my-xxl-n3 {
14378
    margin-top: -1rem !important;
14379
    margin-bottom: -1rem !important;
14380
  }
16848 stevensc 14381
 
16825 efrain 14382
  .my-xxl-n4 {
14383
    margin-top: -1.5rem !important;
14384
    margin-bottom: -1.5rem !important;
14385
  }
16848 stevensc 14386
 
16825 efrain 14387
  .my-xxl-n5 {
14388
    margin-top: -3rem !important;
14389
    margin-bottom: -3rem !important;
14390
  }
16848 stevensc 14391
 
16825 efrain 14392
  .my-xxl-n6 {
14393
    margin-top: -4.5rem !important;
14394
    margin-bottom: -4.5rem !important;
14395
  }
16848 stevensc 14396
 
16825 efrain 14397
  .my-xxl-n7 {
14398
    margin-top: -6rem !important;
14399
    margin-bottom: -6rem !important;
14400
  }
16848 stevensc 14401
 
16825 efrain 14402
  .mt-xxl-n1 {
14403
    margin-top: -0.25rem !important;
14404
  }
16848 stevensc 14405
 
16825 efrain 14406
  .mt-xxl-n2 {
14407
    margin-top: -0.5rem !important;
14408
  }
16848 stevensc 14409
 
16825 efrain 14410
  .mt-xxl-n3 {
14411
    margin-top: -1rem !important;
14412
  }
16848 stevensc 14413
 
16825 efrain 14414
  .mt-xxl-n4 {
14415
    margin-top: -1.5rem !important;
14416
  }
16848 stevensc 14417
 
16825 efrain 14418
  .mt-xxl-n5 {
14419
    margin-top: -3rem !important;
14420
  }
16848 stevensc 14421
 
16825 efrain 14422
  .mt-xxl-n6 {
14423
    margin-top: -4.5rem !important;
14424
  }
16848 stevensc 14425
 
16825 efrain 14426
  .mt-xxl-n7 {
14427
    margin-top: -6rem !important;
14428
  }
16848 stevensc 14429
 
16825 efrain 14430
  .me-xxl-n1 {
14431
    margin-right: -0.25rem !important;
14432
  }
16848 stevensc 14433
 
16825 efrain 14434
  .me-xxl-n2 {
14435
    margin-right: -0.5rem !important;
14436
  }
16848 stevensc 14437
 
16825 efrain 14438
  .me-xxl-n3 {
14439
    margin-right: -1rem !important;
14440
  }
16848 stevensc 14441
 
16825 efrain 14442
  .me-xxl-n4 {
14443
    margin-right: -1.5rem !important;
14444
  }
16848 stevensc 14445
 
16825 efrain 14446
  .me-xxl-n5 {
14447
    margin-right: -3rem !important;
14448
  }
16848 stevensc 14449
 
16825 efrain 14450
  .me-xxl-n6 {
14451
    margin-right: -4.5rem !important;
14452
  }
16848 stevensc 14453
 
16825 efrain 14454
  .me-xxl-n7 {
14455
    margin-right: -6rem !important;
14456
  }
16848 stevensc 14457
 
16825 efrain 14458
  .mb-xxl-n1 {
14459
    margin-bottom: -0.25rem !important;
14460
  }
16848 stevensc 14461
 
16825 efrain 14462
  .mb-xxl-n2 {
14463
    margin-bottom: -0.5rem !important;
14464
  }
16848 stevensc 14465
 
16825 efrain 14466
  .mb-xxl-n3 {
14467
    margin-bottom: -1rem !important;
14468
  }
16848 stevensc 14469
 
16825 efrain 14470
  .mb-xxl-n4 {
14471
    margin-bottom: -1.5rem !important;
14472
  }
16848 stevensc 14473
 
16825 efrain 14474
  .mb-xxl-n5 {
14475
    margin-bottom: -3rem !important;
14476
  }
16848 stevensc 14477
 
16825 efrain 14478
  .mb-xxl-n6 {
14479
    margin-bottom: -4.5rem !important;
14480
  }
16848 stevensc 14481
 
16825 efrain 14482
  .mb-xxl-n7 {
14483
    margin-bottom: -6rem !important;
14484
  }
16848 stevensc 14485
 
16825 efrain 14486
  .ms-xxl-n1 {
14487
    margin-left: -0.25rem !important;
14488
  }
16848 stevensc 14489
 
16825 efrain 14490
  .ms-xxl-n2 {
14491
    margin-left: -0.5rem !important;
14492
  }
16848 stevensc 14493
 
16825 efrain 14494
  .ms-xxl-n3 {
14495
    margin-left: -1rem !important;
14496
  }
16848 stevensc 14497
 
16825 efrain 14498
  .ms-xxl-n4 {
14499
    margin-left: -1.5rem !important;
14500
  }
16848 stevensc 14501
 
16825 efrain 14502
  .ms-xxl-n5 {
14503
    margin-left: -3rem !important;
14504
  }
16848 stevensc 14505
 
16825 efrain 14506
  .ms-xxl-n6 {
14507
    margin-left: -4.5rem !important;
14508
  }
16848 stevensc 14509
 
16825 efrain 14510
  .ms-xxl-n7 {
14511
    margin-left: -6rem !important;
14512
  }
16848 stevensc 14513
 
16825 efrain 14514
  .p-xxl-0 {
14515
    padding: 0 !important;
14516
  }
16848 stevensc 14517
 
16825 efrain 14518
  .p-xxl-1 {
14519
    padding: 0.25rem !important;
14520
  }
16848 stevensc 14521
 
16825 efrain 14522
  .p-xxl-2 {
14523
    padding: 0.5rem !important;
14524
  }
16848 stevensc 14525
 
16825 efrain 14526
  .p-xxl-3 {
14527
    padding: 1rem !important;
14528
  }
16848 stevensc 14529
 
16825 efrain 14530
  .p-xxl-4 {
14531
    padding: 1.5rem !important;
14532
  }
16848 stevensc 14533
 
16825 efrain 14534
  .p-xxl-5 {
14535
    padding: 3rem !important;
14536
  }
16848 stevensc 14537
 
16825 efrain 14538
  .p-xxl-6 {
14539
    padding: 4.5rem !important;
14540
  }
16848 stevensc 14541
 
16825 efrain 14542
  .p-xxl-7 {
14543
    padding: 6rem !important;
14544
  }
16848 stevensc 14545
 
16825 efrain 14546
  .px-xxl-0 {
14547
    padding-right: 0 !important;
14548
    padding-left: 0 !important;
14549
  }
16848 stevensc 14550
 
16825 efrain 14551
  .px-xxl-1 {
14552
    padding-right: 0.25rem !important;
14553
    padding-left: 0.25rem !important;
14554
  }
16848 stevensc 14555
 
16825 efrain 14556
  .px-xxl-2 {
14557
    padding-right: 0.5rem !important;
14558
    padding-left: 0.5rem !important;
14559
  }
16848 stevensc 14560
 
16825 efrain 14561
  .px-xxl-3 {
14562
    padding-right: 1rem !important;
14563
    padding-left: 1rem !important;
14564
  }
16848 stevensc 14565
 
16825 efrain 14566
  .px-xxl-4 {
14567
    padding-right: 1.5rem !important;
14568
    padding-left: 1.5rem !important;
14569
  }
16848 stevensc 14570
 
16825 efrain 14571
  .px-xxl-5 {
14572
    padding-right: 3rem !important;
14573
    padding-left: 3rem !important;
14574
  }
16848 stevensc 14575
 
16825 efrain 14576
  .px-xxl-6 {
14577
    padding-right: 4.5rem !important;
14578
    padding-left: 4.5rem !important;
14579
  }
16848 stevensc 14580
 
16825 efrain 14581
  .px-xxl-7 {
14582
    padding-right: 6rem !important;
14583
    padding-left: 6rem !important;
14584
  }
16848 stevensc 14585
 
16825 efrain 14586
  .py-xxl-0 {
14587
    padding-top: 0 !important;
14588
    padding-bottom: 0 !important;
14589
  }
16848 stevensc 14590
 
16825 efrain 14591
  .py-xxl-1 {
14592
    padding-top: 0.25rem !important;
14593
    padding-bottom: 0.25rem !important;
14594
  }
16848 stevensc 14595
 
16825 efrain 14596
  .py-xxl-2 {
14597
    padding-top: 0.5rem !important;
14598
    padding-bottom: 0.5rem !important;
14599
  }
16848 stevensc 14600
 
16825 efrain 14601
  .py-xxl-3 {
14602
    padding-top: 1rem !important;
14603
    padding-bottom: 1rem !important;
14604
  }
16848 stevensc 14605
 
16825 efrain 14606
  .py-xxl-4 {
14607
    padding-top: 1.5rem !important;
14608
    padding-bottom: 1.5rem !important;
14609
  }
16848 stevensc 14610
 
16825 efrain 14611
  .py-xxl-5 {
14612
    padding-top: 3rem !important;
14613
    padding-bottom: 3rem !important;
14614
  }
16848 stevensc 14615
 
16825 efrain 14616
  .py-xxl-6 {
14617
    padding-top: 4.5rem !important;
14618
    padding-bottom: 4.5rem !important;
14619
  }
16848 stevensc 14620
 
16825 efrain 14621
  .py-xxl-7 {
14622
    padding-top: 6rem !important;
14623
    padding-bottom: 6rem !important;
14624
  }
16848 stevensc 14625
 
16825 efrain 14626
  .pt-xxl-0 {
14627
    padding-top: 0 !important;
14628
  }
16848 stevensc 14629
 
16825 efrain 14630
  .pt-xxl-1 {
14631
    padding-top: 0.25rem !important;
14632
  }
16848 stevensc 14633
 
16825 efrain 14634
  .pt-xxl-2 {
14635
    padding-top: 0.5rem !important;
14636
  }
16848 stevensc 14637
 
16825 efrain 14638
  .pt-xxl-3 {
14639
    padding-top: 1rem !important;
14640
  }
16848 stevensc 14641
 
16825 efrain 14642
  .pt-xxl-4 {
14643
    padding-top: 1.5rem !important;
14644
  }
16848 stevensc 14645
 
16825 efrain 14646
  .pt-xxl-5 {
14647
    padding-top: 3rem !important;
14648
  }
16848 stevensc 14649
 
16825 efrain 14650
  .pt-xxl-6 {
14651
    padding-top: 4.5rem !important;
14652
  }
16848 stevensc 14653
 
16825 efrain 14654
  .pt-xxl-7 {
14655
    padding-top: 6rem !important;
14656
  }
16848 stevensc 14657
 
16825 efrain 14658
  .pe-xxl-0 {
14659
    padding-right: 0 !important;
14660
  }
16848 stevensc 14661
 
16825 efrain 14662
  .pe-xxl-1 {
14663
    padding-right: 0.25rem !important;
14664
  }
16848 stevensc 14665
 
16825 efrain 14666
  .pe-xxl-2 {
14667
    padding-right: 0.5rem !important;
14668
  }
16848 stevensc 14669
 
16825 efrain 14670
  .pe-xxl-3 {
14671
    padding-right: 1rem !important;
14672
  }
16848 stevensc 14673
 
16825 efrain 14674
  .pe-xxl-4 {
14675
    padding-right: 1.5rem !important;
14676
  }
16848 stevensc 14677
 
16825 efrain 14678
  .pe-xxl-5 {
14679
    padding-right: 3rem !important;
14680
  }
16848 stevensc 14681
 
16825 efrain 14682
  .pe-xxl-6 {
14683
    padding-right: 4.5rem !important;
14684
  }
16848 stevensc 14685
 
16825 efrain 14686
  .pe-xxl-7 {
14687
    padding-right: 6rem !important;
14688
  }
16848 stevensc 14689
 
16825 efrain 14690
  .pb-xxl-0 {
14691
    padding-bottom: 0 !important;
14692
  }
16848 stevensc 14693
 
16825 efrain 14694
  .pb-xxl-1 {
14695
    padding-bottom: 0.25rem !important;
14696
  }
16848 stevensc 14697
 
16825 efrain 14698
  .pb-xxl-2 {
14699
    padding-bottom: 0.5rem !important;
14700
  }
16848 stevensc 14701
 
16825 efrain 14702
  .pb-xxl-3 {
14703
    padding-bottom: 1rem !important;
14704
  }
16848 stevensc 14705
 
16825 efrain 14706
  .pb-xxl-4 {
14707
    padding-bottom: 1.5rem !important;
14708
  }
16848 stevensc 14709
 
16825 efrain 14710
  .pb-xxl-5 {
14711
    padding-bottom: 3rem !important;
14712
  }
16848 stevensc 14713
 
16825 efrain 14714
  .pb-xxl-6 {
14715
    padding-bottom: 4.5rem !important;
14716
  }
16848 stevensc 14717
 
16825 efrain 14718
  .pb-xxl-7 {
14719
    padding-bottom: 6rem !important;
14720
  }
16848 stevensc 14721
 
16825 efrain 14722
  .ps-xxl-0 {
14723
    padding-left: 0 !important;
14724
  }
16848 stevensc 14725
 
16825 efrain 14726
  .ps-xxl-1 {
14727
    padding-left: 0.25rem !important;
14728
  }
16848 stevensc 14729
 
16825 efrain 14730
  .ps-xxl-2 {
14731
    padding-left: 0.5rem !important;
14732
  }
16848 stevensc 14733
 
16825 efrain 14734
  .ps-xxl-3 {
14735
    padding-left: 1rem !important;
14736
  }
16848 stevensc 14737
 
16825 efrain 14738
  .ps-xxl-4 {
14739
    padding-left: 1.5rem !important;
14740
  }
16848 stevensc 14741
 
16825 efrain 14742
  .ps-xxl-5 {
14743
    padding-left: 3rem !important;
14744
  }
16848 stevensc 14745
 
16825 efrain 14746
  .ps-xxl-6 {
14747
    padding-left: 4.5rem !important;
14748
  }
16848 stevensc 14749
 
16825 efrain 14750
  .ps-xxl-7 {
14751
    padding-left: 6rem !important;
14752
  }
16848 stevensc 14753
 
16825 efrain 14754
  .gap-xxl-0 {
14755
    gap: 0 !important;
14756
  }
16848 stevensc 14757
 
16825 efrain 14758
  .gap-xxl-1 {
14759
    gap: 0.25rem !important;
14760
  }
16848 stevensc 14761
 
16825 efrain 14762
  .gap-xxl-2 {
14763
    gap: 0.5rem !important;
14764
  }
16848 stevensc 14765
 
16825 efrain 14766
  .gap-xxl-3 {
14767
    gap: 1rem !important;
14768
  }
16848 stevensc 14769
 
16825 efrain 14770
  .gap-xxl-4 {
14771
    gap: 1.5rem !important;
14772
  }
16848 stevensc 14773
 
16825 efrain 14774
  .gap-xxl-5 {
14775
    gap: 3rem !important;
14776
  }
16848 stevensc 14777
 
16825 efrain 14778
  .gap-xxl-6 {
14779
    gap: 4.5rem !important;
14780
  }
16848 stevensc 14781
 
16825 efrain 14782
  .gap-xxl-7 {
14783
    gap: 6rem !important;
14784
  }
16848 stevensc 14785
 
16825 efrain 14786
  .text-xxl-start {
14787
    text-align: left !important;
14788
  }
16848 stevensc 14789
 
16825 efrain 14790
  .text-xxl-end {
14791
    text-align: right !important;
14792
  }
16848 stevensc 14793
 
16825 efrain 14794
  .text-xxl-center {
14795
    text-align: center !important;
14796
  }
14797
}
16848 stevensc 14798
 
16825 efrain 14799
@media (min-width: 1200px) {
14800
  .fs-1 {
14801
    font-size: 2.5rem !important;
14802
  }
16848 stevensc 14803
 
16825 efrain 14804
  .fs-2 {
14805
    font-size: 2rem !important;
14806
  }
16848 stevensc 14807
 
16825 efrain 14808
  .fs-3 {
14809
    font-size: 1.5rem !important;
14810
  }
14811
}
16848 stevensc 14812
 
16825 efrain 14813
@media print {
14814
  .d-print-inline {
14815
    display: inline !important;
14816
  }
16848 stevensc 14817
 
16825 efrain 14818
  .d-print-inline-block {
14819
    display: inline-block !important;
14820
  }
16848 stevensc 14821
 
16825 efrain 14822
  .d-print-block {
14823
    display: block !important;
14824
  }
16848 stevensc 14825
 
16825 efrain 14826
  .d-print-grid {
14827
    display: grid !important;
14828
  }
16848 stevensc 14829
 
16825 efrain 14830
  .d-print-table {
14831
    display: table !important;
14832
  }
16848 stevensc 14833
 
16825 efrain 14834
  .d-print-table-row {
14835
    display: table-row !important;
14836
  }
16848 stevensc 14837
 
16825 efrain 14838
  .d-print-table-cell {
14839
    display: table-cell !important;
14840
  }
16848 stevensc 14841
 
16825 efrain 14842
  .d-print-flex {
14843
    display: flex !important;
14844
  }
16848 stevensc 14845
 
16825 efrain 14846
  .d-print-inline-flex {
14847
    display: inline-flex !important;
14848
  }
16848 stevensc 14849
 
16825 efrain 14850
  .d-print-none {
14851
    display: none !important;
14852
  }
14853
}
16848 stevensc 14854
 
16825 efrain 14855
@keyframes dropdownAnimation {
14856
  from {
14857
    opacity: 0;
14858
    transform: translate3d(0, 20px, 0);
14859
  }
16848 stevensc 14860
 
16825 efrain 14861
  to {
14862
    opacity: 1;
14863
    transform: none;
14864
    transform: translate3d(0, 0px, 0);
14865
  }
14866
}
16848 stevensc 14867
 
14868
.dropdownAnimation,
14869
.navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu,
14870
.navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu {
16825 efrain 14871
  -webkit-animation-name: dropdownAnimation;
14872
  animation-name: dropdownAnimation;
14873
  -webkit-animation-duration: 0.2s;
14874
  animation-duration: 0.2s;
14875
  -webkit-animation-fill-mode: both;
14876
  animation-fill-mode: both;
14877
}
14878
 
14879
@keyframes fadeOut {
14880
  from {
14881
    opacity: 1;
14882
  }
16848 stevensc 14883
 
16825 efrain 14884
  to {
14885
    opacity: 0;
14886
  }
14887
}
16848 stevensc 14888
 
16825 efrain 14889
.fadeOut {
14890
  animation-name: fadeOUt;
14891
}
14892
 
14893
@keyframes fadeInUp {
14894
  from {
14895
    opacity: 0;
14896
    transform: translate3d(0, 100%, 0);
14897
  }
16848 stevensc 14898
 
16825 efrain 14899
  to {
14900
    opacity: 1;
14901
    transform: none;
14902
  }
14903
}
16848 stevensc 14904
 
16825 efrain 14905
.fadeInUp {
14906
  animation-name: fadeInUp;
14907
}
14908
 
16848 stevensc 14909
.infinite-spin,
14910
.settings-sidebar .sidebar-body .settings-sidebar-toggler svg {
16825 efrain 14911
  animation-name: spin;
14912
  animation-duration: 3s;
14913
  animation-iteration-count: infinite;
14914
  animation-timing-function: linear;
14915
}
16848 stevensc 14916
 
16825 efrain 14917
@keyframes spin {
14918
  from {
14919
    transform: rotate(0deg);
14920
  }
16848 stevensc 14921
 
16825 efrain 14922
  to {
14923
    transform: rotate(360deg);
14924
  }
14925
}
14926
 
16848 stevensc 14927
.pulse,
14928
.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator .circle::before {
16825 efrain 14929
  animation-name: pulse;
14930
  animation-duration: 0.9s;
14931
  animation-iteration-count: infinite;
14932
  animation-timing-function: ease-out;
14933
}
16848 stevensc 14934
 
16825 efrain 14935
@keyframes pulse {
14936
  0% {
14937
    opacity: 1;
14938
    width: 7px;
14939
    height: 7px;
14940
    left: 0;
14941
    top: 0;
14942
  }
16848 stevensc 14943
 
16825 efrain 14944
  95% {
14945
    opacity: 0.1;
14946
    left: -10.5px;
14947
    top: -10.5px;
14948
    width: 28px;
14949
    height: 28px;
14950
  }
16848 stevensc 14951
 
16825 efrain 14952
  100% {
14953
    opacity: 0;
14954
    width: 7px;
14955
    height: 7px;
14956
    left: 0;
14957
    top: 0;
14958
  }
14959
}
14960
 
14961
.wd-5 {
14962
  width: 5px;
14963
}
14964
 
14965
.wd-5p {
14966
  width: 5%;
14967
}
14968
 
14969
.mx-wd-5p {
14970
  max-width: 5%;
14971
}
14972
 
14973
.mn-wd-5p {
14974
  min-width: 5%;
14975
}
14976
 
14977
.wd-5-f {
14978
  width: 5px !important;
14979
}
14980
 
14981
.wd-5p-f {
14982
  width: 5% !important;
14983
}
14984
 
14985
.mx-wd-5p-f {
14986
  max-width: 5% !important;
14987
}
14988
 
14989
.mn-wd-5p-f {
14990
  min-width: 5% !important;
14991
}
14992
 
14993
.wd-10 {
14994
  width: 10px;
14995
}
14996
 
14997
.wd-10p {
14998
  width: 10%;
14999
}
15000
 
15001
.mx-wd-10p {
15002
  max-width: 10%;
15003
}
15004
 
15005
.mn-wd-10p {
15006
  min-width: 10%;
15007
}
15008
 
15009
.wd-10-f {
15010
  width: 10px !important;
15011
}
15012
 
15013
.wd-10p-f {
15014
  width: 10% !important;
15015
}
15016
 
15017
.mx-wd-10p-f {
15018
  max-width: 10% !important;
15019
}
15020
 
15021
.mn-wd-10p-f {
15022
  min-width: 10% !important;
15023
}
15024
 
15025
.wd-15 {
15026
  width: 15px;
15027
}
15028
 
15029
.wd-15p {
15030
  width: 15%;
15031
}
15032
 
15033
.mx-wd-15p {
15034
  max-width: 15%;
15035
}
15036
 
15037
.mn-wd-15p {
15038
  min-width: 15%;
15039
}
15040
 
15041
.wd-15-f {
15042
  width: 15px !important;
15043
}
15044
 
15045
.wd-15p-f {
15046
  width: 15% !important;
15047
}
15048
 
15049
.mx-wd-15p-f {
15050
  max-width: 15% !important;
15051
}
15052
 
15053
.mn-wd-15p-f {
15054
  min-width: 15% !important;
15055
}
15056
 
15057
.wd-20 {
15058
  width: 20px;
15059
}
15060
 
15061
.wd-20p {
15062
  width: 20%;
15063
}
15064
 
15065
.mx-wd-20p {
15066
  max-width: 20%;
15067
}
15068
 
15069
.mn-wd-20p {
15070
  min-width: 20%;
15071
}
15072
 
15073
.wd-20-f {
15074
  width: 20px !important;
15075
}
15076
 
15077
.wd-20p-f {
15078
  width: 20% !important;
15079
}
15080
 
15081
.mx-wd-20p-f {
15082
  max-width: 20% !important;
15083
}
15084
 
15085
.mn-wd-20p-f {
15086
  min-width: 20% !important;
15087
}
15088
 
15089
.wd-25 {
15090
  width: 25px;
15091
}
15092
 
15093
.wd-25p {
15094
  width: 25%;
15095
}
15096
 
15097
.mx-wd-25p {
15098
  max-width: 25%;
15099
}
15100
 
15101
.mn-wd-25p {
15102
  min-width: 25%;
15103
}
15104
 
15105
.wd-25-f {
15106
  width: 25px !important;
15107
}
15108
 
15109
.wd-25p-f {
15110
  width: 25% !important;
15111
}
15112
 
15113
.mx-wd-25p-f {
15114
  max-width: 25% !important;
15115
}
15116
 
15117
.mn-wd-25p-f {
15118
  min-width: 25% !important;
15119
}
15120
 
15121
.wd-30 {
15122
  width: 30px;
15123
}
15124
 
15125
.wd-30p {
15126
  width: 30%;
15127
}
15128
 
15129
.mx-wd-30p {
15130
  max-width: 30%;
15131
}
15132
 
15133
.mn-wd-30p {
15134
  min-width: 30%;
15135
}
15136
 
15137
.wd-30-f {
15138
  width: 30px !important;
15139
}
15140
 
15141
.wd-30p-f {
15142
  width: 30% !important;
15143
}
15144
 
15145
.mx-wd-30p-f {
15146
  max-width: 30% !important;
15147
}
15148
 
15149
.mn-wd-30p-f {
15150
  min-width: 30% !important;
15151
}
15152
 
15153
.wd-35 {
15154
  width: 35px;
15155
}
15156
 
15157
.wd-35p {
15158
  width: 35%;
15159
}
15160
 
15161
.mx-wd-35p {
15162
  max-width: 35%;
15163
}
15164
 
15165
.mn-wd-35p {
15166
  min-width: 35%;
15167
}
15168
 
15169
.wd-35-f {
15170
  width: 35px !important;
15171
}
15172
 
15173
.wd-35p-f {
15174
  width: 35% !important;
15175
}
15176
 
15177
.mx-wd-35p-f {
15178
  max-width: 35% !important;
15179
}
15180
 
15181
.mn-wd-35p-f {
15182
  min-width: 35% !important;
15183
}
15184
 
15185
.wd-40 {
15186
  width: 40px;
15187
}
15188
 
15189
.wd-40p {
15190
  width: 40%;
15191
}
15192
 
15193
.mx-wd-40p {
15194
  max-width: 40%;
15195
}
15196
 
15197
.mn-wd-40p {
15198
  min-width: 40%;
15199
}
15200
 
15201
.wd-40-f {
15202
  width: 40px !important;
15203
}
15204
 
15205
.wd-40p-f {
15206
  width: 40% !important;
15207
}
15208
 
15209
.mx-wd-40p-f {
15210
  max-width: 40% !important;
15211
}
15212
 
15213
.mn-wd-40p-f {
15214
  min-width: 40% !important;
15215
}
15216
 
15217
.wd-45 {
15218
  width: 45px;
15219
}
15220
 
15221
.wd-45p {
15222
  width: 45%;
15223
}
15224
 
15225
.mx-wd-45p {
15226
  max-width: 45%;
15227
}
15228
 
15229
.mn-wd-45p {
15230
  min-width: 45%;
15231
}
15232
 
15233
.wd-45-f {
15234
  width: 45px !important;
15235
}
15236
 
15237
.wd-45p-f {
15238
  width: 45% !important;
15239
}
15240
 
15241
.mx-wd-45p-f {
15242
  max-width: 45% !important;
15243
}
15244
 
15245
.mn-wd-45p-f {
15246
  min-width: 45% !important;
15247
}
15248
 
15249
.wd-50 {
15250
  width: 50px;
15251
}
15252
 
15253
.wd-50p {
15254
  width: 50%;
15255
}
15256
 
15257
.mx-wd-50p {
15258
  max-width: 50%;
15259
}
15260
 
15261
.mn-wd-50p {
15262
  min-width: 50%;
15263
}
15264
 
15265
.wd-50-f {
15266
  width: 50px !important;
15267
}
15268
 
15269
.wd-50p-f {
15270
  width: 50% !important;
15271
}
15272
 
15273
.mx-wd-50p-f {
15274
  max-width: 50% !important;
15275
}
15276
 
15277
.mn-wd-50p-f {
15278
  min-width: 50% !important;
15279
}
15280
 
15281
.wd-55 {
15282
  width: 55px;
15283
}
15284
 
15285
.wd-55p {
15286
  width: 55%;
15287
}
15288
 
15289
.mx-wd-55p {
15290
  max-width: 55%;
15291
}
15292
 
15293
.mn-wd-55p {
15294
  min-width: 55%;
15295
}
15296
 
15297
.wd-55-f {
15298
  width: 55px !important;
15299
}
15300
 
15301
.wd-55p-f {
15302
  width: 55% !important;
15303
}
15304
 
15305
.mx-wd-55p-f {
15306
  max-width: 55% !important;
15307
}
15308
 
15309
.mn-wd-55p-f {
15310
  min-width: 55% !important;
15311
}
15312
 
15313
.wd-60 {
15314
  width: 60px;
15315
}
15316
 
15317
.wd-60p {
15318
  width: 60%;
15319
}
15320
 
15321
.mx-wd-60p {
15322
  max-width: 60%;
15323
}
15324
 
15325
.mn-wd-60p {
15326
  min-width: 60%;
15327
}
15328
 
15329
.wd-60-f {
15330
  width: 60px !important;
15331
}
15332
 
15333
.wd-60p-f {
15334
  width: 60% !important;
15335
}
15336
 
15337
.mx-wd-60p-f {
15338
  max-width: 60% !important;
15339
}
15340
 
15341
.mn-wd-60p-f {
15342
  min-width: 60% !important;
15343
}
15344
 
15345
.wd-65 {
15346
  width: 65px;
15347
}
15348
 
15349
.wd-65p {
15350
  width: 65%;
15351
}
15352
 
15353
.mx-wd-65p {
15354
  max-width: 65%;
15355
}
15356
 
15357
.mn-wd-65p {
15358
  min-width: 65%;
15359
}
15360
 
15361
.wd-65-f {
15362
  width: 65px !important;
15363
}
15364
 
15365
.wd-65p-f {
15366
  width: 65% !important;
15367
}
15368
 
15369
.mx-wd-65p-f {
15370
  max-width: 65% !important;
15371
}
15372
 
15373
.mn-wd-65p-f {
15374
  min-width: 65% !important;
15375
}
15376
 
15377
.wd-70 {
15378
  width: 70px;
15379
}
15380
 
15381
.wd-70p {
15382
  width: 70%;
15383
}
15384
 
15385
.mx-wd-70p {
15386
  max-width: 70%;
15387
}
15388
 
15389
.mn-wd-70p {
15390
  min-width: 70%;
15391
}
15392
 
15393
.wd-70-f {
15394
  width: 70px !important;
15395
}
15396
 
15397
.wd-70p-f {
15398
  width: 70% !important;
15399
}
15400
 
15401
.mx-wd-70p-f {
15402
  max-width: 70% !important;
15403
}
15404
 
15405
.mn-wd-70p-f {
15406
  min-width: 70% !important;
15407
}
15408
 
15409
.wd-75 {
15410
  width: 75px;
15411
}
15412
 
15413
.wd-75p {
15414
  width: 75%;
15415
}
15416
 
15417
.mx-wd-75p {
15418
  max-width: 75%;
15419
}
15420
 
15421
.mn-wd-75p {
15422
  min-width: 75%;
15423
}
15424
 
15425
.wd-75-f {
15426
  width: 75px !important;
15427
}
15428
 
15429
.wd-75p-f {
15430
  width: 75% !important;
15431
}
15432
 
15433
.mx-wd-75p-f {
15434
  max-width: 75% !important;
15435
}
15436
 
15437
.mn-wd-75p-f {
15438
  min-width: 75% !important;
15439
}
15440
 
15441
.wd-80 {
15442
  width: 80px;
15443
}
15444
 
15445
.wd-80p {
15446
  width: 80%;
15447
}
15448
 
15449
.mx-wd-80p {
15450
  max-width: 80%;
15451
}
15452
 
15453
.mn-wd-80p {
15454
  min-width: 80%;
15455
}
15456
 
15457
.wd-80-f {
15458
  width: 80px !important;
15459
}
15460
 
15461
.wd-80p-f {
15462
  width: 80% !important;
15463
}
15464
 
15465
.mx-wd-80p-f {
15466
  max-width: 80% !important;
15467
}
15468
 
15469
.mn-wd-80p-f {
15470
  min-width: 80% !important;
15471
}
15472
 
15473
.wd-85 {
15474
  width: 85px;
15475
}
15476
 
15477
.wd-85p {
15478
  width: 85%;
15479
}
15480
 
15481
.mx-wd-85p {
15482
  max-width: 85%;
15483
}
15484
 
15485
.mn-wd-85p {
15486
  min-width: 85%;
15487
}
15488
 
15489
.wd-85-f {
15490
  width: 85px !important;
15491
}
15492
 
15493
.wd-85p-f {
15494
  width: 85% !important;
15495
}
15496
 
15497
.mx-wd-85p-f {
15498
  max-width: 85% !important;
15499
}
15500
 
15501
.mn-wd-85p-f {
15502
  min-width: 85% !important;
15503
}
15504
 
15505
.wd-90 {
15506
  width: 90px;
15507
}
15508
 
15509
.wd-90p {
15510
  width: 90%;
15511
}
15512
 
15513
.mx-wd-90p {
15514
  max-width: 90%;
15515
}
15516
 
15517
.mn-wd-90p {
15518
  min-width: 90%;
15519
}
15520
 
15521
.wd-90-f {
15522
  width: 90px !important;
15523
}
15524
 
15525
.wd-90p-f {
15526
  width: 90% !important;
15527
}
15528
 
15529
.mx-wd-90p-f {
15530
  max-width: 90% !important;
15531
}
15532
 
15533
.mn-wd-90p-f {
15534
  min-width: 90% !important;
15535
}
15536
 
15537
.wd-95 {
15538
  width: 95px;
15539
}
15540
 
15541
.wd-95p {
15542
  width: 95%;
15543
}
15544
 
15545
.mx-wd-95p {
15546
  max-width: 95%;
15547
}
15548
 
15549
.mn-wd-95p {
15550
  min-width: 95%;
15551
}
15552
 
15553
.wd-95-f {
15554
  width: 95px !important;
15555
}
15556
 
15557
.wd-95p-f {
15558
  width: 95% !important;
15559
}
15560
 
15561
.mx-wd-95p-f {
15562
  max-width: 95% !important;
15563
}
15564
 
15565
.mn-wd-95p-f {
15566
  min-width: 95% !important;
15567
}
15568
 
15569
.wd-100 {
15570
  width: 100px;
15571
}
15572
 
15573
.wd-100p {
15574
  width: 100%;
15575
}
15576
 
15577
.mx-wd-100p {
15578
  max-width: 100%;
15579
}
15580
 
15581
.mn-wd-100p {
15582
  min-width: 100%;
15583
}
15584
 
15585
.wd-100-f {
15586
  width: 100px !important;
15587
}
15588
 
15589
.wd-100p-f {
15590
  width: 100% !important;
15591
}
15592
 
15593
.mx-wd-100p-f {
15594
  max-width: 100% !important;
15595
}
15596
 
15597
.mn-wd-100p-f {
15598
  min-width: 100% !important;
15599
}
15600
 
15601
.wd-150 {
15602
  width: 150px;
15603
}
15604
 
15605
.wd-150-f {
15606
  width: 150px !important;
15607
}
15608
 
15609
.wd-200 {
15610
  width: 200px;
15611
}
15612
 
15613
.wd-200-f {
15614
  width: 200px !important;
15615
}
15616
 
15617
.wd-250 {
15618
  width: 250px;
15619
}
15620
 
15621
.wd-250-f {
15622
  width: 250px !important;
15623
}
15624
 
15625
.wd-300 {
15626
  width: 300px;
15627
}
15628
 
15629
.wd-300-f {
15630
  width: 300px !important;
15631
}
15632
 
15633
.wd-350 {
15634
  width: 350px;
15635
}
15636
 
15637
.wd-350-f {
15638
  width: 350px !important;
15639
}
15640
 
15641
.wd-400 {
15642
  width: 400px;
15643
}
15644
 
15645
.wd-400-f {
15646
  width: 400px !important;
15647
}
15648
 
15649
.wd-450 {
15650
  width: 450px;
15651
}
15652
 
15653
.wd-450-f {
15654
  width: 450px !important;
15655
}
15656
 
15657
.wd-500 {
15658
  width: 500px;
15659
}
15660
 
15661
.wd-500-f {
15662
  width: 500px !important;
15663
}
15664
 
15665
.wd-550 {
15666
  width: 550px;
15667
}
15668
 
15669
.wd-550-f {
15670
  width: 550px !important;
15671
}
15672
 
15673
.wd-600 {
15674
  width: 600px;
15675
}
15676
 
15677
.wd-600-f {
15678
  width: 600px !important;
15679
}
15680
 
15681
.wd-650 {
15682
  width: 650px;
15683
}
15684
 
15685
.wd-650-f {
15686
  width: 650px !important;
15687
}
15688
 
15689
.wd-700 {
15690
  width: 700px;
15691
}
15692
 
15693
.wd-700-f {
15694
  width: 700px !important;
15695
}
15696
 
15697
.wd-750 {
15698
  width: 750px;
15699
}
15700
 
15701
.wd-750-f {
15702
  width: 750px !important;
15703
}
15704
 
15705
.wd-800 {
15706
  width: 800px;
15707
}
15708
 
15709
.wd-800-f {
15710
  width: 800px !important;
15711
}
15712
 
15713
.wd-850 {
15714
  width: 850px;
15715
}
15716
 
15717
.wd-850-f {
15718
  width: 850px !important;
15719
}
15720
 
15721
.wd-900 {
15722
  width: 900px;
15723
}
15724
 
15725
.wd-900-f {
15726
  width: 900px !important;
15727
}
15728
 
15729
.wd-950 {
15730
  width: 950px;
15731
}
15732
 
15733
.wd-950-f {
15734
  width: 950px !important;
15735
}
15736
 
15737
.wd-1000 {
15738
  width: 1000px;
15739
}
15740
 
15741
.wd-1000-f {
15742
  width: 1000px !important;
15743
}
15744
 
15745
@media (min-width: 480px) {
15746
  .wd-xs-5 {
15747
    width: 5px;
15748
  }
16848 stevensc 15749
 
16825 efrain 15750
  .wd-xs-5p {
15751
    width: 5%;
15752
  }
16848 stevensc 15753
 
16825 efrain 15754
  .mx-wd-xs-5p {
15755
    max-width: 5%;
15756
  }
16848 stevensc 15757
 
16825 efrain 15758
  .mn-wd-xs-5p {
15759
    min-width: 5%;
15760
  }
16848 stevensc 15761
 
16825 efrain 15762
  .wd-xs-5-f {
15763
    width: 5px !important;
15764
  }
16848 stevensc 15765
 
16825 efrain 15766
  .wd-xs-5p-f {
15767
    width: 5% !important;
15768
  }
16848 stevensc 15769
 
16825 efrain 15770
  .mx-wd-xs-5p-f {
15771
    max-width: 5% !important;
15772
  }
16848 stevensc 15773
 
16825 efrain 15774
  .mn-wd-xs-5p-f {
15775
    min-width: 5% !important;
15776
  }
16848 stevensc 15777
 
16825 efrain 15778
  .wd-xs-10 {
15779
    width: 10px;
15780
  }
16848 stevensc 15781
 
16825 efrain 15782
  .wd-xs-10p {
15783
    width: 10%;
15784
  }
16848 stevensc 15785
 
16825 efrain 15786
  .mx-wd-xs-10p {
15787
    max-width: 10%;
15788
  }
16848 stevensc 15789
 
16825 efrain 15790
  .mn-wd-xs-10p {
15791
    min-width: 10%;
15792
  }
16848 stevensc 15793
 
16825 efrain 15794
  .wd-xs-10-f {
15795
    width: 10px !important;
15796
  }
16848 stevensc 15797
 
16825 efrain 15798
  .wd-xs-10p-f {
15799
    width: 10% !important;
15800
  }
16848 stevensc 15801
 
16825 efrain 15802
  .mx-wd-xs-10p-f {
15803
    max-width: 10% !important;
15804
  }
16848 stevensc 15805
 
16825 efrain 15806
  .mn-wd-xs-10p-f {
15807
    min-width: 10% !important;
15808
  }
16848 stevensc 15809
 
16825 efrain 15810
  .wd-xs-15 {
15811
    width: 15px;
15812
  }
16848 stevensc 15813
 
16825 efrain 15814
  .wd-xs-15p {
15815
    width: 15%;
15816
  }
16848 stevensc 15817
 
16825 efrain 15818
  .mx-wd-xs-15p {
15819
    max-width: 15%;
15820
  }
16848 stevensc 15821
 
16825 efrain 15822
  .mn-wd-xs-15p {
15823
    min-width: 15%;
15824
  }
16848 stevensc 15825
 
16825 efrain 15826
  .wd-xs-15-f {
15827
    width: 15px !important;
15828
  }
16848 stevensc 15829
 
16825 efrain 15830
  .wd-xs-15p-f {
15831
    width: 15% !important;
15832
  }
16848 stevensc 15833
 
16825 efrain 15834
  .mx-wd-xs-15p-f {
15835
    max-width: 15% !important;
15836
  }
16848 stevensc 15837
 
16825 efrain 15838
  .mn-wd-xs-15p-f {
15839
    min-width: 15% !important;
15840
  }
16848 stevensc 15841
 
16825 efrain 15842
  .wd-xs-20 {
15843
    width: 20px;
15844
  }
16848 stevensc 15845
 
16825 efrain 15846
  .wd-xs-20p {
15847
    width: 20%;
15848
  }
16848 stevensc 15849
 
16825 efrain 15850
  .mx-wd-xs-20p {
15851
    max-width: 20%;
15852
  }
16848 stevensc 15853
 
16825 efrain 15854
  .mn-wd-xs-20p {
15855
    min-width: 20%;
15856
  }
16848 stevensc 15857
 
16825 efrain 15858
  .wd-xs-20-f {
15859
    width: 20px !important;
15860
  }
16848 stevensc 15861
 
16825 efrain 15862
  .wd-xs-20p-f {
15863
    width: 20% !important;
15864
  }
16848 stevensc 15865
 
16825 efrain 15866
  .mx-wd-xs-20p-f {
15867
    max-width: 20% !important;
15868
  }
16848 stevensc 15869
 
16825 efrain 15870
  .mn-wd-xs-20p-f {
15871
    min-width: 20% !important;
15872
  }
16848 stevensc 15873
 
16825 efrain 15874
  .wd-xs-25 {
15875
    width: 25px;
15876
  }
16848 stevensc 15877
 
16825 efrain 15878
  .wd-xs-25p {
15879
    width: 25%;
15880
  }
16848 stevensc 15881
 
16825 efrain 15882
  .mx-wd-xs-25p {
15883
    max-width: 25%;
15884
  }
16848 stevensc 15885
 
16825 efrain 15886
  .mn-wd-xs-25p {
15887
    min-width: 25%;
15888
  }
16848 stevensc 15889
 
16825 efrain 15890
  .wd-xs-25-f {
15891
    width: 25px !important;
15892
  }
16848 stevensc 15893
 
16825 efrain 15894
  .wd-xs-25p-f {
15895
    width: 25% !important;
15896
  }
16848 stevensc 15897
 
16825 efrain 15898
  .mx-wd-xs-25p-f {
15899
    max-width: 25% !important;
15900
  }
16848 stevensc 15901
 
16825 efrain 15902
  .mn-wd-xs-25p-f {
15903
    min-width: 25% !important;
15904
  }
16848 stevensc 15905
 
16825 efrain 15906
  .wd-xs-30 {
15907
    width: 30px;
15908
  }
16848 stevensc 15909
 
16825 efrain 15910
  .wd-xs-30p {
15911
    width: 30%;
15912
  }
16848 stevensc 15913
 
16825 efrain 15914
  .mx-wd-xs-30p {
15915
    max-width: 30%;
15916
  }
16848 stevensc 15917
 
16825 efrain 15918
  .mn-wd-xs-30p {
15919
    min-width: 30%;
15920
  }
16848 stevensc 15921
 
16825 efrain 15922
  .wd-xs-30-f {
15923
    width: 30px !important;
15924
  }
16848 stevensc 15925
 
16825 efrain 15926
  .wd-xs-30p-f {
15927
    width: 30% !important;
15928
  }
16848 stevensc 15929
 
16825 efrain 15930
  .mx-wd-xs-30p-f {
15931
    max-width: 30% !important;
15932
  }
16848 stevensc 15933
 
16825 efrain 15934
  .mn-wd-xs-30p-f {
15935
    min-width: 30% !important;
15936
  }
16848 stevensc 15937
 
16825 efrain 15938
  .wd-xs-35 {
15939
    width: 35px;
15940
  }
16848 stevensc 15941
 
16825 efrain 15942
  .wd-xs-35p {
15943
    width: 35%;
15944
  }
16848 stevensc 15945
 
16825 efrain 15946
  .mx-wd-xs-35p {
15947
    max-width: 35%;
15948
  }
16848 stevensc 15949
 
16825 efrain 15950
  .mn-wd-xs-35p {
15951
    min-width: 35%;
15952
  }
16848 stevensc 15953
 
16825 efrain 15954
  .wd-xs-35-f {
15955
    width: 35px !important;
15956
  }
16848 stevensc 15957
 
16825 efrain 15958
  .wd-xs-35p-f {
15959
    width: 35% !important;
15960
  }
16848 stevensc 15961
 
16825 efrain 15962
  .mx-wd-xs-35p-f {
15963
    max-width: 35% !important;
15964
  }
16848 stevensc 15965
 
16825 efrain 15966
  .mn-wd-xs-35p-f {
15967
    min-width: 35% !important;
15968
  }
16848 stevensc 15969
 
16825 efrain 15970
  .wd-xs-40 {
15971
    width: 40px;
15972
  }
16848 stevensc 15973
 
16825 efrain 15974
  .wd-xs-40p {
15975
    width: 40%;
15976
  }
16848 stevensc 15977
 
16825 efrain 15978
  .mx-wd-xs-40p {
15979
    max-width: 40%;
15980
  }
16848 stevensc 15981
 
16825 efrain 15982
  .mn-wd-xs-40p {
15983
    min-width: 40%;
15984
  }
16848 stevensc 15985
 
16825 efrain 15986
  .wd-xs-40-f {
15987
    width: 40px !important;
15988
  }
16848 stevensc 15989
 
16825 efrain 15990
  .wd-xs-40p-f {
15991
    width: 40% !important;
15992
  }
16848 stevensc 15993
 
16825 efrain 15994
  .mx-wd-xs-40p-f {
15995
    max-width: 40% !important;
15996
  }
16848 stevensc 15997
 
16825 efrain 15998
  .mn-wd-xs-40p-f {
15999
    min-width: 40% !important;
16000
  }
16848 stevensc 16001
 
16825 efrain 16002
  .wd-xs-45 {
16003
    width: 45px;
16004
  }
16848 stevensc 16005
 
16825 efrain 16006
  .wd-xs-45p {
16007
    width: 45%;
16008
  }
16848 stevensc 16009
 
16825 efrain 16010
  .mx-wd-xs-45p {
16011
    max-width: 45%;
16012
  }
16848 stevensc 16013
 
16825 efrain 16014
  .mn-wd-xs-45p {
16015
    min-width: 45%;
16016
  }
16848 stevensc 16017
 
16825 efrain 16018
  .wd-xs-45-f {
16019
    width: 45px !important;
16020
  }
16848 stevensc 16021
 
16825 efrain 16022
  .wd-xs-45p-f {
16023
    width: 45% !important;
16024
  }
16848 stevensc 16025
 
16825 efrain 16026
  .mx-wd-xs-45p-f {
16027
    max-width: 45% !important;
16028
  }
16848 stevensc 16029
 
16825 efrain 16030
  .mn-wd-xs-45p-f {
16031
    min-width: 45% !important;
16032
  }
16848 stevensc 16033
 
16825 efrain 16034
  .wd-xs-50 {
16035
    width: 50px;
16036
  }
16848 stevensc 16037
 
16825 efrain 16038
  .wd-xs-50p {
16039
    width: 50%;
16040
  }
16848 stevensc 16041
 
16825 efrain 16042
  .mx-wd-xs-50p {
16043
    max-width: 50%;
16044
  }
16848 stevensc 16045
 
16825 efrain 16046
  .mn-wd-xs-50p {
16047
    min-width: 50%;
16048
  }
16848 stevensc 16049
 
16825 efrain 16050
  .wd-xs-50-f {
16051
    width: 50px !important;
16052
  }
16848 stevensc 16053
 
16825 efrain 16054
  .wd-xs-50p-f {
16055
    width: 50% !important;
16056
  }
16848 stevensc 16057
 
16825 efrain 16058
  .mx-wd-xs-50p-f {
16059
    max-width: 50% !important;
16060
  }
16848 stevensc 16061
 
16825 efrain 16062
  .mn-wd-xs-50p-f {
16063
    min-width: 50% !important;
16064
  }
16848 stevensc 16065
 
16825 efrain 16066
  .wd-xs-55 {
16067
    width: 55px;
16068
  }
16848 stevensc 16069
 
16825 efrain 16070
  .wd-xs-55p {
16071
    width: 55%;
16072
  }
16848 stevensc 16073
 
16825 efrain 16074
  .mx-wd-xs-55p {
16075
    max-width: 55%;
16076
  }
16848 stevensc 16077
 
16825 efrain 16078
  .mn-wd-xs-55p {
16079
    min-width: 55%;
16080
  }
16848 stevensc 16081
 
16825 efrain 16082
  .wd-xs-55-f {
16083
    width: 55px !important;
16084
  }
16848 stevensc 16085
 
16825 efrain 16086
  .wd-xs-55p-f {
16087
    width: 55% !important;
16088
  }
16848 stevensc 16089
 
16825 efrain 16090
  .mx-wd-xs-55p-f {
16091
    max-width: 55% !important;
16092
  }
16848 stevensc 16093
 
16825 efrain 16094
  .mn-wd-xs-55p-f {
16095
    min-width: 55% !important;
16096
  }
16848 stevensc 16097
 
16825 efrain 16098
  .wd-xs-60 {
16099
    width: 60px;
16100
  }
16848 stevensc 16101
 
16825 efrain 16102
  .wd-xs-60p {
16103
    width: 60%;
16104
  }
16848 stevensc 16105
 
16825 efrain 16106
  .mx-wd-xs-60p {
16107
    max-width: 60%;
16108
  }
16848 stevensc 16109
 
16825 efrain 16110
  .mn-wd-xs-60p {
16111
    min-width: 60%;
16112
  }
16848 stevensc 16113
 
16825 efrain 16114
  .wd-xs-60-f {
16115
    width: 60px !important;
16116
  }
16848 stevensc 16117
 
16825 efrain 16118
  .wd-xs-60p-f {
16119
    width: 60% !important;
16120
  }
16848 stevensc 16121
 
16825 efrain 16122
  .mx-wd-xs-60p-f {
16123
    max-width: 60% !important;
16124
  }
16848 stevensc 16125
 
16825 efrain 16126
  .mn-wd-xs-60p-f {
16127
    min-width: 60% !important;
16128
  }
16848 stevensc 16129
 
16825 efrain 16130
  .wd-xs-65 {
16131
    width: 65px;
16132
  }
16848 stevensc 16133
 
16825 efrain 16134
  .wd-xs-65p {
16135
    width: 65%;
16136
  }
16848 stevensc 16137
 
16825 efrain 16138
  .mx-wd-xs-65p {
16139
    max-width: 65%;
16140
  }
16848 stevensc 16141
 
16825 efrain 16142
  .mn-wd-xs-65p {
16143
    min-width: 65%;
16144
  }
16848 stevensc 16145
 
16825 efrain 16146
  .wd-xs-65-f {
16147
    width: 65px !important;
16148
  }
16848 stevensc 16149
 
16825 efrain 16150
  .wd-xs-65p-f {
16151
    width: 65% !important;
16152
  }
16848 stevensc 16153
 
16825 efrain 16154
  .mx-wd-xs-65p-f {
16155
    max-width: 65% !important;
16156
  }
16848 stevensc 16157
 
16825 efrain 16158
  .mn-wd-xs-65p-f {
16159
    min-width: 65% !important;
16160
  }
16848 stevensc 16161
 
16825 efrain 16162
  .wd-xs-70 {
16163
    width: 70px;
16164
  }
16848 stevensc 16165
 
16825 efrain 16166
  .wd-xs-70p {
16167
    width: 70%;
16168
  }
16848 stevensc 16169
 
16825 efrain 16170
  .mx-wd-xs-70p {
16171
    max-width: 70%;
16172
  }
16848 stevensc 16173
 
16825 efrain 16174
  .mn-wd-xs-70p {
16175
    min-width: 70%;
16176
  }
16848 stevensc 16177
 
16825 efrain 16178
  .wd-xs-70-f {
16179
    width: 70px !important;
16180
  }
16848 stevensc 16181
 
16825 efrain 16182
  .wd-xs-70p-f {
16183
    width: 70% !important;
16184
  }
16848 stevensc 16185
 
16825 efrain 16186
  .mx-wd-xs-70p-f {
16187
    max-width: 70% !important;
16188
  }
16848 stevensc 16189
 
16825 efrain 16190
  .mn-wd-xs-70p-f {
16191
    min-width: 70% !important;
16192
  }
16848 stevensc 16193
 
16825 efrain 16194
  .wd-xs-75 {
16195
    width: 75px;
16196
  }
16848 stevensc 16197
 
16825 efrain 16198
  .wd-xs-75p {
16199
    width: 75%;
16200
  }
16848 stevensc 16201
 
16825 efrain 16202
  .mx-wd-xs-75p {
16203
    max-width: 75%;
16204
  }
16848 stevensc 16205
 
16825 efrain 16206
  .mn-wd-xs-75p {
16207
    min-width: 75%;
16208
  }
16848 stevensc 16209
 
16825 efrain 16210
  .wd-xs-75-f {
16211
    width: 75px !important;
16212
  }
16848 stevensc 16213
 
16825 efrain 16214
  .wd-xs-75p-f {
16215
    width: 75% !important;
16216
  }
16848 stevensc 16217
 
16825 efrain 16218
  .mx-wd-xs-75p-f {
16219
    max-width: 75% !important;
16220
  }
16848 stevensc 16221
 
16825 efrain 16222
  .mn-wd-xs-75p-f {
16223
    min-width: 75% !important;
16224
  }
16848 stevensc 16225
 
16825 efrain 16226
  .wd-xs-80 {
16227
    width: 80px;
16228
  }
16848 stevensc 16229
 
16825 efrain 16230
  .wd-xs-80p {
16231
    width: 80%;
16232
  }
16848 stevensc 16233
 
16825 efrain 16234
  .mx-wd-xs-80p {
16235
    max-width: 80%;
16236
  }
16848 stevensc 16237
 
16825 efrain 16238
  .mn-wd-xs-80p {
16239
    min-width: 80%;
16240
  }
16848 stevensc 16241
 
16825 efrain 16242
  .wd-xs-80-f {
16243
    width: 80px !important;
16244
  }
16848 stevensc 16245
 
16825 efrain 16246
  .wd-xs-80p-f {
16247
    width: 80% !important;
16248
  }
16848 stevensc 16249
 
16825 efrain 16250
  .mx-wd-xs-80p-f {
16251
    max-width: 80% !important;
16252
  }
16848 stevensc 16253
 
16825 efrain 16254
  .mn-wd-xs-80p-f {
16255
    min-width: 80% !important;
16256
  }
16848 stevensc 16257
 
16825 efrain 16258
  .wd-xs-85 {
16259
    width: 85px;
16260
  }
16848 stevensc 16261
 
16825 efrain 16262
  .wd-xs-85p {
16263
    width: 85%;
16264
  }
16848 stevensc 16265
 
16825 efrain 16266
  .mx-wd-xs-85p {
16267
    max-width: 85%;
16268
  }
16848 stevensc 16269
 
16825 efrain 16270
  .mn-wd-xs-85p {
16271
    min-width: 85%;
16272
  }
16848 stevensc 16273
 
16825 efrain 16274
  .wd-xs-85-f {
16275
    width: 85px !important;
16276
  }
16848 stevensc 16277
 
16825 efrain 16278
  .wd-xs-85p-f {
16279
    width: 85% !important;
16280
  }
16848 stevensc 16281
 
16825 efrain 16282
  .mx-wd-xs-85p-f {
16283
    max-width: 85% !important;
16284
  }
16848 stevensc 16285
 
16825 efrain 16286
  .mn-wd-xs-85p-f {
16287
    min-width: 85% !important;
16288
  }
16848 stevensc 16289
 
16825 efrain 16290
  .wd-xs-90 {
16291
    width: 90px;
16292
  }
16848 stevensc 16293
 
16825 efrain 16294
  .wd-xs-90p {
16295
    width: 90%;
16296
  }
16848 stevensc 16297
 
16825 efrain 16298
  .mx-wd-xs-90p {
16299
    max-width: 90%;
16300
  }
16848 stevensc 16301
 
16825 efrain 16302
  .mn-wd-xs-90p {
16303
    min-width: 90%;
16304
  }
16848 stevensc 16305
 
16825 efrain 16306
  .wd-xs-90-f {
16307
    width: 90px !important;
16308
  }
16848 stevensc 16309
 
16825 efrain 16310
  .wd-xs-90p-f {
16311
    width: 90% !important;
16312
  }
16848 stevensc 16313
 
16825 efrain 16314
  .mx-wd-xs-90p-f {
16315
    max-width: 90% !important;
16316
  }
16848 stevensc 16317
 
16825 efrain 16318
  .mn-wd-xs-90p-f {
16319
    min-width: 90% !important;
16320
  }
16848 stevensc 16321
 
16825 efrain 16322
  .wd-xs-95 {
16323
    width: 95px;
16324
  }
16848 stevensc 16325
 
16825 efrain 16326
  .wd-xs-95p {
16327
    width: 95%;
16328
  }
16848 stevensc 16329
 
16825 efrain 16330
  .mx-wd-xs-95p {
16331
    max-width: 95%;
16332
  }
16848 stevensc 16333
 
16825 efrain 16334
  .mn-wd-xs-95p {
16335
    min-width: 95%;
16336
  }
16848 stevensc 16337
 
16825 efrain 16338
  .wd-xs-95-f {
16339
    width: 95px !important;
16340
  }
16848 stevensc 16341
 
16825 efrain 16342
  .wd-xs-95p-f {
16343
    width: 95% !important;
16344
  }
16848 stevensc 16345
 
16825 efrain 16346
  .mx-wd-xs-95p-f {
16347
    max-width: 95% !important;
16348
  }
16848 stevensc 16349
 
16825 efrain 16350
  .mn-wd-xs-95p-f {
16351
    min-width: 95% !important;
16352
  }
16848 stevensc 16353
 
16825 efrain 16354
  .wd-xs-100 {
16355
    width: 100px;
16356
  }
16848 stevensc 16357
 
16825 efrain 16358
  .wd-xs-100p {
16359
    width: 100%;
16360
  }
16848 stevensc 16361
 
16825 efrain 16362
  .mx-wd-xs-100p {
16363
    max-width: 100%;
16364
  }
16848 stevensc 16365
 
16825 efrain 16366
  .mn-wd-xs-100p {
16367
    min-width: 100%;
16368
  }
16848 stevensc 16369
 
16825 efrain 16370
  .wd-xs-100-f {
16371
    width: 100px !important;
16372
  }
16848 stevensc 16373
 
16825 efrain 16374
  .wd-xs-100p-f {
16375
    width: 100% !important;
16376
  }
16848 stevensc 16377
 
16825 efrain 16378
  .mx-wd-xs-100p-f {
16379
    max-width: 100% !important;
16380
  }
16848 stevensc 16381
 
16825 efrain 16382
  .mn-wd-xs-100p-f {
16383
    min-width: 100% !important;
16384
  }
16848 stevensc 16385
 
16825 efrain 16386
  .wd-xs-150 {
16387
    width: 150px;
16388
  }
16848 stevensc 16389
 
16825 efrain 16390
  .wd-xs-150p {
16391
    width: 150%;
16392
  }
16848 stevensc 16393
 
16825 efrain 16394
  .mx-wd-xs-150p {
16395
    max-width: 150%;
16396
  }
16848 stevensc 16397
 
16825 efrain 16398
  .mn-wd-xs-150p {
16399
    min-width: 150%;
16400
  }
16848 stevensc 16401
 
16825 efrain 16402
  .wd-xs-150-f {
16403
    width: 150px !important;
16404
  }
16848 stevensc 16405
 
16825 efrain 16406
  .wd-xs-150p-f {
16407
    width: 150% !important;
16408
  }
16848 stevensc 16409
 
16825 efrain 16410
  .mx-wd-xs-150p-f {
16411
    max-width: 150% !important;
16412
  }
16848 stevensc 16413
 
16825 efrain 16414
  .mn-wd-xs-150p-f {
16415
    min-width: 150% !important;
16416
  }
16848 stevensc 16417
 
16825 efrain 16418
  .wd-xs-200 {
16419
    width: 200px;
16420
  }
16848 stevensc 16421
 
16825 efrain 16422
  .wd-xs-200p {
16423
    width: 200%;
16424
  }
16848 stevensc 16425
 
16825 efrain 16426
  .mx-wd-xs-200p {
16427
    max-width: 200%;
16428
  }
16848 stevensc 16429
 
16825 efrain 16430
  .mn-wd-xs-200p {
16431
    min-width: 200%;
16432
  }
16848 stevensc 16433
 
16825 efrain 16434
  .wd-xs-200-f {
16435
    width: 200px !important;
16436
  }
16848 stevensc 16437
 
16825 efrain 16438
  .wd-xs-200p-f {
16439
    width: 200% !important;
16440
  }
16848 stevensc 16441
 
16825 efrain 16442
  .mx-wd-xs-200p-f {
16443
    max-width: 200% !important;
16444
  }
16848 stevensc 16445
 
16825 efrain 16446
  .mn-wd-xs-200p-f {
16447
    min-width: 200% !important;
16448
  }
16848 stevensc 16449
 
16825 efrain 16450
  .wd-xs-250 {
16451
    width: 250px;
16452
  }
16848 stevensc 16453
 
16825 efrain 16454
  .wd-xs-250p {
16455
    width: 250%;
16456
  }
16848 stevensc 16457
 
16825 efrain 16458
  .mx-wd-xs-250p {
16459
    max-width: 250%;
16460
  }
16848 stevensc 16461
 
16825 efrain 16462
  .mn-wd-xs-250p {
16463
    min-width: 250%;
16464
  }
16848 stevensc 16465
 
16825 efrain 16466
  .wd-xs-250-f {
16467
    width: 250px !important;
16468
  }
16848 stevensc 16469
 
16825 efrain 16470
  .wd-xs-250p-f {
16471
    width: 250% !important;
16472
  }
16848 stevensc 16473
 
16825 efrain 16474
  .mx-wd-xs-250p-f {
16475
    max-width: 250% !important;
16476
  }
16848 stevensc 16477
 
16825 efrain 16478
  .mn-wd-xs-250p-f {
16479
    min-width: 250% !important;
16480
  }
16848 stevensc 16481
 
16825 efrain 16482
  .wd-xs-300 {
16483
    width: 300px;
16484
  }
16848 stevensc 16485
 
16825 efrain 16486
  .wd-xs-300p {
16487
    width: 300%;
16488
  }
16848 stevensc 16489
 
16825 efrain 16490
  .mx-wd-xs-300p {
16491
    max-width: 300%;
16492
  }
16848 stevensc 16493
 
16825 efrain 16494
  .mn-wd-xs-300p {
16495
    min-width: 300%;
16496
  }
16848 stevensc 16497
 
16825 efrain 16498
  .wd-xs-300-f {
16499
    width: 300px !important;
16500
  }
16848 stevensc 16501
 
16825 efrain 16502
  .wd-xs-300p-f {
16503
    width: 300% !important;
16504
  }
16848 stevensc 16505
 
16825 efrain 16506
  .mx-wd-xs-300p-f {
16507
    max-width: 300% !important;
16508
  }
16848 stevensc 16509
 
16825 efrain 16510
  .mn-wd-xs-300p-f {
16511
    min-width: 300% !important;
16512
  }
16848 stevensc 16513
 
16825 efrain 16514
  .wd-xs-350 {
16515
    width: 350px;
16516
  }
16848 stevensc 16517
 
16825 efrain 16518
  .wd-xs-350p {
16519
    width: 350%;
16520
  }
16848 stevensc 16521
 
16825 efrain 16522
  .mx-wd-xs-350p {
16523
    max-width: 350%;
16524
  }
16848 stevensc 16525
 
16825 efrain 16526
  .mn-wd-xs-350p {
16527
    min-width: 350%;
16528
  }
16848 stevensc 16529
 
16825 efrain 16530
  .wd-xs-350-f {
16531
    width: 350px !important;
16532
  }
16848 stevensc 16533
 
16825 efrain 16534
  .wd-xs-350p-f {
16535
    width: 350% !important;
16536
  }
16848 stevensc 16537
 
16825 efrain 16538
  .mx-wd-xs-350p-f {
16539
    max-width: 350% !important;
16540
  }
16848 stevensc 16541
 
16825 efrain 16542
  .mn-wd-xs-350p-f {
16543
    min-width: 350% !important;
16544
  }
16848 stevensc 16545
 
16825 efrain 16546
  .wd-xs-400 {
16547
    width: 400px;
16548
  }
16848 stevensc 16549
 
16825 efrain 16550
  .wd-xs-400p {
16551
    width: 400%;
16552
  }
16848 stevensc 16553
 
16825 efrain 16554
  .mx-wd-xs-400p {
16555
    max-width: 400%;
16556
  }
16848 stevensc 16557
 
16825 efrain 16558
  .mn-wd-xs-400p {
16559
    min-width: 400%;
16560
  }
16848 stevensc 16561
 
16825 efrain 16562
  .wd-xs-400-f {
16563
    width: 400px !important;
16564
  }
16848 stevensc 16565
 
16825 efrain 16566
  .wd-xs-400p-f {
16567
    width: 400% !important;
16568
  }
16848 stevensc 16569
 
16825 efrain 16570
  .mx-wd-xs-400p-f {
16571
    max-width: 400% !important;
16572
  }
16848 stevensc 16573
 
16825 efrain 16574
  .mn-wd-xs-400p-f {
16575
    min-width: 400% !important;
16576
  }
16848 stevensc 16577
 
16825 efrain 16578
  .wd-xs-450 {
16579
    width: 450px;
16580
  }
16848 stevensc 16581
 
16825 efrain 16582
  .wd-xs-450p {
16583
    width: 450%;
16584
  }
16848 stevensc 16585
 
16825 efrain 16586
  .mx-wd-xs-450p {
16587
    max-width: 450%;
16588
  }
16848 stevensc 16589
 
16825 efrain 16590
  .mn-wd-xs-450p {
16591
    min-width: 450%;
16592
  }
16848 stevensc 16593
 
16825 efrain 16594
  .wd-xs-450-f {
16595
    width: 450px !important;
16596
  }
16848 stevensc 16597
 
16825 efrain 16598
  .wd-xs-450p-f {
16599
    width: 450% !important;
16600
  }
16848 stevensc 16601
 
16825 efrain 16602
  .mx-wd-xs-450p-f {
16603
    max-width: 450% !important;
16604
  }
16848 stevensc 16605
 
16825 efrain 16606
  .mn-wd-xs-450p-f {
16607
    min-width: 450% !important;
16608
  }
16848 stevensc 16609
 
16825 efrain 16610
  .wd-xs-500 {
16611
    width: 500px;
16612
  }
16848 stevensc 16613
 
16825 efrain 16614
  .wd-xs-500p {
16615
    width: 500%;
16616
  }
16848 stevensc 16617
 
16825 efrain 16618
  .mx-wd-xs-500p {
16619
    max-width: 500%;
16620
  }
16848 stevensc 16621
 
16825 efrain 16622
  .mn-wd-xs-500p {
16623
    min-width: 500%;
16624
  }
16848 stevensc 16625
 
16825 efrain 16626
  .wd-xs-500-f {
16627
    width: 500px !important;
16628
  }
16848 stevensc 16629
 
16825 efrain 16630
  .wd-xs-500p-f {
16631
    width: 500% !important;
16632
  }
16848 stevensc 16633
 
16825 efrain 16634
  .mx-wd-xs-500p-f {
16635
    max-width: 500% !important;
16636
  }
16848 stevensc 16637
 
16825 efrain 16638
  .mn-wd-xs-500p-f {
16639
    min-width: 500% !important;
16640
  }
16848 stevensc 16641
 
16825 efrain 16642
  .wd-xs-550 {
16643
    width: 550px;
16644
  }
16848 stevensc 16645
 
16825 efrain 16646
  .wd-xs-550p {
16647
    width: 550%;
16648
  }
16848 stevensc 16649
 
16825 efrain 16650
  .mx-wd-xs-550p {
16651
    max-width: 550%;
16652
  }
16848 stevensc 16653
 
16825 efrain 16654
  .mn-wd-xs-550p {
16655
    min-width: 550%;
16656
  }
16848 stevensc 16657
 
16825 efrain 16658
  .wd-xs-550-f {
16659
    width: 550px !important;
16660
  }
16848 stevensc 16661
 
16825 efrain 16662
  .wd-xs-550p-f {
16663
    width: 550% !important;
16664
  }
16848 stevensc 16665
 
16825 efrain 16666
  .mx-wd-xs-550p-f {
16667
    max-width: 550% !important;
16668
  }
16848 stevensc 16669
 
16825 efrain 16670
  .mn-wd-xs-550p-f {
16671
    min-width: 550% !important;
16672
  }
16848 stevensc 16673
 
16825 efrain 16674
  .wd-xs-600 {
16675
    width: 600px;
16676
  }
16848 stevensc 16677
 
16825 efrain 16678
  .wd-xs-600p {
16679
    width: 600%;
16680
  }
16848 stevensc 16681
 
16825 efrain 16682
  .mx-wd-xs-600p {
16683
    max-width: 600%;
16684
  }
16848 stevensc 16685
 
16825 efrain 16686
  .mn-wd-xs-600p {
16687
    min-width: 600%;
16688
  }
16848 stevensc 16689
 
16825 efrain 16690
  .wd-xs-600-f {
16691
    width: 600px !important;
16692
  }
16848 stevensc 16693
 
16825 efrain 16694
  .wd-xs-600p-f {
16695
    width: 600% !important;
16696
  }
16848 stevensc 16697
 
16825 efrain 16698
  .mx-wd-xs-600p-f {
16699
    max-width: 600% !important;
16700
  }
16848 stevensc 16701
 
16825 efrain 16702
  .mn-wd-xs-600p-f {
16703
    min-width: 600% !important;
16704
  }
16848 stevensc 16705
 
16825 efrain 16706
  .wd-xs-650 {
16707
    width: 650px;
16708
  }
16848 stevensc 16709
 
16825 efrain 16710
  .wd-xs-650p {
16711
    width: 650%;
16712
  }
16848 stevensc 16713
 
16825 efrain 16714
  .mx-wd-xs-650p {
16715
    max-width: 650%;
16716
  }
16848 stevensc 16717
 
16825 efrain 16718
  .mn-wd-xs-650p {
16719
    min-width: 650%;
16720
  }
16848 stevensc 16721
 
16825 efrain 16722
  .wd-xs-650-f {
16723
    width: 650px !important;
16724
  }
16848 stevensc 16725
 
16825 efrain 16726
  .wd-xs-650p-f {
16727
    width: 650% !important;
16728
  }
16848 stevensc 16729
 
16825 efrain 16730
  .mx-wd-xs-650p-f {
16731
    max-width: 650% !important;
16732
  }
16848 stevensc 16733
 
16825 efrain 16734
  .mn-wd-xs-650p-f {
16735
    min-width: 650% !important;
16736
  }
16848 stevensc 16737
 
16825 efrain 16738
  .wd-xs-700 {
16739
    width: 700px;
16740
  }
16848 stevensc 16741
 
16825 efrain 16742
  .wd-xs-700p {
16743
    width: 700%;
16744
  }
16848 stevensc 16745
 
16825 efrain 16746
  .mx-wd-xs-700p {
16747
    max-width: 700%;
16748
  }
16848 stevensc 16749
 
16825 efrain 16750
  .mn-wd-xs-700p {
16751
    min-width: 700%;
16752
  }
16848 stevensc 16753
 
16825 efrain 16754
  .wd-xs-700-f {
16755
    width: 700px !important;
16756
  }
16848 stevensc 16757
 
16825 efrain 16758
  .wd-xs-700p-f {
16759
    width: 700% !important;
16760
  }
16848 stevensc 16761
 
16825 efrain 16762
  .mx-wd-xs-700p-f {
16763
    max-width: 700% !important;
16764
  }
16848 stevensc 16765
 
16825 efrain 16766
  .mn-wd-xs-700p-f {
16767
    min-width: 700% !important;
16768
  }
16848 stevensc 16769
 
16825 efrain 16770
  .wd-xs-750 {
16771
    width: 750px;
16772
  }
16848 stevensc 16773
 
16825 efrain 16774
  .wd-xs-750p {
16775
    width: 750%;
16776
  }
16848 stevensc 16777
 
16825 efrain 16778
  .mx-wd-xs-750p {
16779
    max-width: 750%;
16780
  }
16848 stevensc 16781
 
16825 efrain 16782
  .mn-wd-xs-750p {
16783
    min-width: 750%;
16784
  }
16848 stevensc 16785
 
16825 efrain 16786
  .wd-xs-750-f {
16787
    width: 750px !important;
16788
  }
16848 stevensc 16789
 
16825 efrain 16790
  .wd-xs-750p-f {
16791
    width: 750% !important;
16792
  }
16848 stevensc 16793
 
16825 efrain 16794
  .mx-wd-xs-750p-f {
16795
    max-width: 750% !important;
16796
  }
16848 stevensc 16797
 
16825 efrain 16798
  .mn-wd-xs-750p-f {
16799
    min-width: 750% !important;
16800
  }
16848 stevensc 16801
 
16825 efrain 16802
  .wd-xs-800 {
16803
    width: 800px;
16804
  }
16848 stevensc 16805
 
16825 efrain 16806
  .wd-xs-800p {
16807
    width: 800%;
16808
  }
16848 stevensc 16809
 
16825 efrain 16810
  .mx-wd-xs-800p {
16811
    max-width: 800%;
16812
  }
16848 stevensc 16813
 
16825 efrain 16814
  .mn-wd-xs-800p {
16815
    min-width: 800%;
16816
  }
16848 stevensc 16817
 
16825 efrain 16818
  .wd-xs-800-f {
16819
    width: 800px !important;
16820
  }
16848 stevensc 16821
 
16825 efrain 16822
  .wd-xs-800p-f {
16823
    width: 800% !important;
16824
  }
16848 stevensc 16825
 
16825 efrain 16826
  .mx-wd-xs-800p-f {
16827
    max-width: 800% !important;
16828
  }
16848 stevensc 16829
 
16825 efrain 16830
  .mn-wd-xs-800p-f {
16831
    min-width: 800% !important;
16832
  }
16848 stevensc 16833
 
16825 efrain 16834
  .wd-xs-850 {
16835
    width: 850px;
16836
  }
16848 stevensc 16837
 
16825 efrain 16838
  .wd-xs-850p {
16839
    width: 850%;
16840
  }
16848 stevensc 16841
 
16825 efrain 16842
  .mx-wd-xs-850p {
16843
    max-width: 850%;
16844
  }
16848 stevensc 16845
 
16825 efrain 16846
  .mn-wd-xs-850p {
16847
    min-width: 850%;
16848
  }
16848 stevensc 16849
 
16825 efrain 16850
  .wd-xs-850-f {
16851
    width: 850px !important;
16852
  }
16848 stevensc 16853
 
16825 efrain 16854
  .wd-xs-850p-f {
16855
    width: 850% !important;
16856
  }
16848 stevensc 16857
 
16825 efrain 16858
  .mx-wd-xs-850p-f {
16859
    max-width: 850% !important;
16860
  }
16848 stevensc 16861
 
16825 efrain 16862
  .mn-wd-xs-850p-f {
16863
    min-width: 850% !important;
16864
  }
16848 stevensc 16865
 
16825 efrain 16866
  .wd-xs-900 {
16867
    width: 900px;
16868
  }
16848 stevensc 16869
 
16825 efrain 16870
  .wd-xs-900p {
16871
    width: 900%;
16872
  }
16848 stevensc 16873
 
16825 efrain 16874
  .mx-wd-xs-900p {
16875
    max-width: 900%;
16876
  }
16848 stevensc 16877
 
16825 efrain 16878
  .mn-wd-xs-900p {
16879
    min-width: 900%;
16880
  }
16848 stevensc 16881
 
16825 efrain 16882
  .wd-xs-900-f {
16883
    width: 900px !important;
16884
  }
16848 stevensc 16885
 
16825 efrain 16886
  .wd-xs-900p-f {
16887
    width: 900% !important;
16888
  }
16848 stevensc 16889
 
16825 efrain 16890
  .mx-wd-xs-900p-f {
16891
    max-width: 900% !important;
16892
  }
16848 stevensc 16893
 
16825 efrain 16894
  .mn-wd-xs-900p-f {
16895
    min-width: 900% !important;
16896
  }
16848 stevensc 16897
 
16825 efrain 16898
  .wd-xs-950 {
16899
    width: 950px;
16900
  }
16848 stevensc 16901
 
16825 efrain 16902
  .wd-xs-950p {
16903
    width: 950%;
16904
  }
16848 stevensc 16905
 
16825 efrain 16906
  .mx-wd-xs-950p {
16907
    max-width: 950%;
16908
  }
16848 stevensc 16909
 
16825 efrain 16910
  .mn-wd-xs-950p {
16911
    min-width: 950%;
16912
  }
16848 stevensc 16913
 
16825 efrain 16914
  .wd-xs-950-f {
16915
    width: 950px !important;
16916
  }
16848 stevensc 16917
 
16825 efrain 16918
  .wd-xs-950p-f {
16919
    width: 950% !important;
16920
  }
16848 stevensc 16921
 
16825 efrain 16922
  .mx-wd-xs-950p-f {
16923
    max-width: 950% !important;
16924
  }
16848 stevensc 16925
 
16825 efrain 16926
  .mn-wd-xs-950p-f {
16927
    min-width: 950% !important;
16928
  }
16848 stevensc 16929
 
16825 efrain 16930
  .wd-xs-1000 {
16931
    width: 1000px;
16932
  }
16848 stevensc 16933
 
16825 efrain 16934
  .wd-xs-1000p {
16935
    width: 1000%;
16936
  }
16848 stevensc 16937
 
16825 efrain 16938
  .mx-wd-xs-1000p {
16939
    max-width: 1000%;
16940
  }
16848 stevensc 16941
 
16825 efrain 16942
  .mn-wd-xs-1000p {
16943
    min-width: 1000%;
16944
  }
16848 stevensc 16945
 
16825 efrain 16946
  .wd-xs-1000-f {
16947
    width: 1000px !important;
16948
  }
16848 stevensc 16949
 
16825 efrain 16950
  .wd-xs-1000p-f {
16951
    width: 1000% !important;
16952
  }
16848 stevensc 16953
 
16825 efrain 16954
  .mx-wd-xs-1000p-f {
16955
    max-width: 1000% !important;
16956
  }
16848 stevensc 16957
 
16825 efrain 16958
  .mn-wd-xs-1000p-f {
16959
    min-width: 1000% !important;
16960
  }
16848 stevensc 16961
 
16825 efrain 16962
  .wd-xs-auto {
16963
    width: auto;
16964
  }
16848 stevensc 16965
 
16825 efrain 16966
  .wd-xs-auto-f {
16967
    width: auto !important;
16968
  }
16969
}
16848 stevensc 16970
 
16825 efrain 16971
@media (min-width: 576px) {
16972
  .wd-sm-5 {
16973
    width: 5px;
16974
  }
16848 stevensc 16975
 
16825 efrain 16976
  .wd-sm-5p {
16977
    width: 5%;
16978
  }
16848 stevensc 16979
 
16825 efrain 16980
  .mx-wd-sm-5p {
16981
    max-width: 5%;
16982
  }
16848 stevensc 16983
 
16825 efrain 16984
  .mn-wd-sm-5p {
16985
    min-width: 5%;
16986
  }
16848 stevensc 16987
 
16825 efrain 16988
  .wd-sm-5-f {
16989
    width: 5px !important;
16990
  }
16848 stevensc 16991
 
16825 efrain 16992
  .wd-sm-5p-f {
16993
    width: 5% !important;
16994
  }
16848 stevensc 16995
 
16825 efrain 16996
  .mx-wd-sm-5p-f {
16997
    max-width: 5% !important;
16998
  }
16848 stevensc 16999
 
16825 efrain 17000
  .mn-wd-sm-5p-f {
17001
    min-width: 5% !important;
17002
  }
16848 stevensc 17003
 
16825 efrain 17004
  .wd-sm-10 {
17005
    width: 10px;
17006
  }
16848 stevensc 17007
 
16825 efrain 17008
  .wd-sm-10p {
17009
    width: 10%;
17010
  }
16848 stevensc 17011
 
16825 efrain 17012
  .mx-wd-sm-10p {
17013
    max-width: 10%;
17014
  }
16848 stevensc 17015
 
16825 efrain 17016
  .mn-wd-sm-10p {
17017
    min-width: 10%;
17018
  }
16848 stevensc 17019
 
16825 efrain 17020
  .wd-sm-10-f {
17021
    width: 10px !important;
17022
  }
16848 stevensc 17023
 
16825 efrain 17024
  .wd-sm-10p-f {
17025
    width: 10% !important;
17026
  }
16848 stevensc 17027
 
16825 efrain 17028
  .mx-wd-sm-10p-f {
17029
    max-width: 10% !important;
17030
  }
16848 stevensc 17031
 
16825 efrain 17032
  .mn-wd-sm-10p-f {
17033
    min-width: 10% !important;
17034
  }
16848 stevensc 17035
 
16825 efrain 17036
  .wd-sm-15 {
17037
    width: 15px;
17038
  }
16848 stevensc 17039
 
16825 efrain 17040
  .wd-sm-15p {
17041
    width: 15%;
17042
  }
16848 stevensc 17043
 
16825 efrain 17044
  .mx-wd-sm-15p {
17045
    max-width: 15%;
17046
  }
16848 stevensc 17047
 
16825 efrain 17048
  .mn-wd-sm-15p {
17049
    min-width: 15%;
17050
  }
16848 stevensc 17051
 
16825 efrain 17052
  .wd-sm-15-f {
17053
    width: 15px !important;
17054
  }
16848 stevensc 17055
 
16825 efrain 17056
  .wd-sm-15p-f {
17057
    width: 15% !important;
17058
  }
16848 stevensc 17059
 
16825 efrain 17060
  .mx-wd-sm-15p-f {
17061
    max-width: 15% !important;
17062
  }
16848 stevensc 17063
 
16825 efrain 17064
  .mn-wd-sm-15p-f {
17065
    min-width: 15% !important;
17066
  }
16848 stevensc 17067
 
16825 efrain 17068
  .wd-sm-20 {
17069
    width: 20px;
17070
  }
16848 stevensc 17071
 
16825 efrain 17072
  .wd-sm-20p {
17073
    width: 20%;
17074
  }
16848 stevensc 17075
 
16825 efrain 17076
  .mx-wd-sm-20p {
17077
    max-width: 20%;
17078
  }
16848 stevensc 17079
 
16825 efrain 17080
  .mn-wd-sm-20p {
17081
    min-width: 20%;
17082
  }
16848 stevensc 17083
 
16825 efrain 17084
  .wd-sm-20-f {
17085
    width: 20px !important;
17086
  }
16848 stevensc 17087
 
16825 efrain 17088
  .wd-sm-20p-f {
17089
    width: 20% !important;
17090
  }
16848 stevensc 17091
 
16825 efrain 17092
  .mx-wd-sm-20p-f {
17093
    max-width: 20% !important;
17094
  }
16848 stevensc 17095
 
16825 efrain 17096
  .mn-wd-sm-20p-f {
17097
    min-width: 20% !important;
17098
  }
16848 stevensc 17099
 
16825 efrain 17100
  .wd-sm-25 {
17101
    width: 25px;
17102
  }
16848 stevensc 17103
 
16825 efrain 17104
  .wd-sm-25p {
17105
    width: 25%;
17106
  }
16848 stevensc 17107
 
16825 efrain 17108
  .mx-wd-sm-25p {
17109
    max-width: 25%;
17110
  }
16848 stevensc 17111
 
16825 efrain 17112
  .mn-wd-sm-25p {
17113
    min-width: 25%;
17114
  }
16848 stevensc 17115
 
16825 efrain 17116
  .wd-sm-25-f {
17117
    width: 25px !important;
17118
  }
16848 stevensc 17119
 
16825 efrain 17120
  .wd-sm-25p-f {
17121
    width: 25% !important;
17122
  }
16848 stevensc 17123
 
16825 efrain 17124
  .mx-wd-sm-25p-f {
17125
    max-width: 25% !important;
17126
  }
16848 stevensc 17127
 
16825 efrain 17128
  .mn-wd-sm-25p-f {
17129
    min-width: 25% !important;
17130
  }
16848 stevensc 17131
 
16825 efrain 17132
  .wd-sm-30 {
17133
    width: 30px;
17134
  }
16848 stevensc 17135
 
16825 efrain 17136
  .wd-sm-30p {
17137
    width: 30%;
17138
  }
16848 stevensc 17139
 
16825 efrain 17140
  .mx-wd-sm-30p {
17141
    max-width: 30%;
17142
  }
16848 stevensc 17143
 
16825 efrain 17144
  .mn-wd-sm-30p {
17145
    min-width: 30%;
17146
  }
16848 stevensc 17147
 
16825 efrain 17148
  .wd-sm-30-f {
17149
    width: 30px !important;
17150
  }
16848 stevensc 17151
 
16825 efrain 17152
  .wd-sm-30p-f {
17153
    width: 30% !important;
17154
  }
16848 stevensc 17155
 
16825 efrain 17156
  .mx-wd-sm-30p-f {
17157
    max-width: 30% !important;
17158
  }
16848 stevensc 17159
 
16825 efrain 17160
  .mn-wd-sm-30p-f {
17161
    min-width: 30% !important;
17162
  }
16848 stevensc 17163
 
16825 efrain 17164
  .wd-sm-35 {
17165
    width: 35px;
17166
  }
16848 stevensc 17167
 
16825 efrain 17168
  .wd-sm-35p {
17169
    width: 35%;
17170
  }
16848 stevensc 17171
 
16825 efrain 17172
  .mx-wd-sm-35p {
17173
    max-width: 35%;
17174
  }
16848 stevensc 17175
 
16825 efrain 17176
  .mn-wd-sm-35p {
17177
    min-width: 35%;
17178
  }
16848 stevensc 17179
 
16825 efrain 17180
  .wd-sm-35-f {
17181
    width: 35px !important;
17182
  }
16848 stevensc 17183
 
16825 efrain 17184
  .wd-sm-35p-f {
17185
    width: 35% !important;
17186
  }
16848 stevensc 17187
 
16825 efrain 17188
  .mx-wd-sm-35p-f {
17189
    max-width: 35% !important;
17190
  }
16848 stevensc 17191
 
16825 efrain 17192
  .mn-wd-sm-35p-f {
17193
    min-width: 35% !important;
17194
  }
16848 stevensc 17195
 
16825 efrain 17196
  .wd-sm-40 {
17197
    width: 40px;
17198
  }
16848 stevensc 17199
 
16825 efrain 17200
  .wd-sm-40p {
17201
    width: 40%;
17202
  }
16848 stevensc 17203
 
16825 efrain 17204
  .mx-wd-sm-40p {
17205
    max-width: 40%;
17206
  }
16848 stevensc 17207
 
16825 efrain 17208
  .mn-wd-sm-40p {
17209
    min-width: 40%;
17210
  }
16848 stevensc 17211
 
16825 efrain 17212
  .wd-sm-40-f {
17213
    width: 40px !important;
17214
  }
16848 stevensc 17215
 
16825 efrain 17216
  .wd-sm-40p-f {
17217
    width: 40% !important;
17218
  }
16848 stevensc 17219
 
16825 efrain 17220
  .mx-wd-sm-40p-f {
17221
    max-width: 40% !important;
17222
  }
16848 stevensc 17223
 
16825 efrain 17224
  .mn-wd-sm-40p-f {
17225
    min-width: 40% !important;
17226
  }
16848 stevensc 17227
 
16825 efrain 17228
  .wd-sm-45 {
17229
    width: 45px;
17230
  }
16848 stevensc 17231
 
16825 efrain 17232
  .wd-sm-45p {
17233
    width: 45%;
17234
  }
16848 stevensc 17235
 
16825 efrain 17236
  .mx-wd-sm-45p {
17237
    max-width: 45%;
17238
  }
16848 stevensc 17239
 
16825 efrain 17240
  .mn-wd-sm-45p {
17241
    min-width: 45%;
17242
  }
16848 stevensc 17243
 
16825 efrain 17244
  .wd-sm-45-f {
17245
    width: 45px !important;
17246
  }
16848 stevensc 17247
 
16825 efrain 17248
  .wd-sm-45p-f {
17249
    width: 45% !important;
17250
  }
16848 stevensc 17251
 
16825 efrain 17252
  .mx-wd-sm-45p-f {
17253
    max-width: 45% !important;
17254
  }
16848 stevensc 17255
 
16825 efrain 17256
  .mn-wd-sm-45p-f {
17257
    min-width: 45% !important;
17258
  }
16848 stevensc 17259
 
16825 efrain 17260
  .wd-sm-50 {
17261
    width: 50px;
17262
  }
16848 stevensc 17263
 
16825 efrain 17264
  .wd-sm-50p {
17265
    width: 50%;
17266
  }
16848 stevensc 17267
 
16825 efrain 17268
  .mx-wd-sm-50p {
17269
    max-width: 50%;
17270
  }
16848 stevensc 17271
 
16825 efrain 17272
  .mn-wd-sm-50p {
17273
    min-width: 50%;
17274
  }
16848 stevensc 17275
 
16825 efrain 17276
  .wd-sm-50-f {
17277
    width: 50px !important;
17278
  }
16848 stevensc 17279
 
16825 efrain 17280
  .wd-sm-50p-f {
17281
    width: 50% !important;
17282
  }
16848 stevensc 17283
 
16825 efrain 17284
  .mx-wd-sm-50p-f {
17285
    max-width: 50% !important;
17286
  }
16848 stevensc 17287
 
16825 efrain 17288
  .mn-wd-sm-50p-f {
17289
    min-width: 50% !important;
17290
  }
16848 stevensc 17291
 
16825 efrain 17292
  .wd-sm-55 {
17293
    width: 55px;
17294
  }
16848 stevensc 17295
 
16825 efrain 17296
  .wd-sm-55p {
17297
    width: 55%;
17298
  }
16848 stevensc 17299
 
16825 efrain 17300
  .mx-wd-sm-55p {
17301
    max-width: 55%;
17302
  }
16848 stevensc 17303
 
16825 efrain 17304
  .mn-wd-sm-55p {
17305
    min-width: 55%;
17306
  }
16848 stevensc 17307
 
16825 efrain 17308
  .wd-sm-55-f {
17309
    width: 55px !important;
17310
  }
16848 stevensc 17311
 
16825 efrain 17312
  .wd-sm-55p-f {
17313
    width: 55% !important;
17314
  }
16848 stevensc 17315
 
16825 efrain 17316
  .mx-wd-sm-55p-f {
17317
    max-width: 55% !important;
17318
  }
16848 stevensc 17319
 
16825 efrain 17320
  .mn-wd-sm-55p-f {
17321
    min-width: 55% !important;
17322
  }
16848 stevensc 17323
 
16825 efrain 17324
  .wd-sm-60 {
17325
    width: 60px;
17326
  }
16848 stevensc 17327
 
16825 efrain 17328
  .wd-sm-60p {
17329
    width: 60%;
17330
  }
16848 stevensc 17331
 
16825 efrain 17332
  .mx-wd-sm-60p {
17333
    max-width: 60%;
17334
  }
16848 stevensc 17335
 
16825 efrain 17336
  .mn-wd-sm-60p {
17337
    min-width: 60%;
17338
  }
16848 stevensc 17339
 
16825 efrain 17340
  .wd-sm-60-f {
17341
    width: 60px !important;
17342
  }
16848 stevensc 17343
 
16825 efrain 17344
  .wd-sm-60p-f {
17345
    width: 60% !important;
17346
  }
16848 stevensc 17347
 
16825 efrain 17348
  .mx-wd-sm-60p-f {
17349
    max-width: 60% !important;
17350
  }
16848 stevensc 17351
 
16825 efrain 17352
  .mn-wd-sm-60p-f {
17353
    min-width: 60% !important;
17354
  }
16848 stevensc 17355
 
16825 efrain 17356
  .wd-sm-65 {
17357
    width: 65px;
17358
  }
16848 stevensc 17359
 
16825 efrain 17360
  .wd-sm-65p {
17361
    width: 65%;
17362
  }
16848 stevensc 17363
 
16825 efrain 17364
  .mx-wd-sm-65p {
17365
    max-width: 65%;
17366
  }
16848 stevensc 17367
 
16825 efrain 17368
  .mn-wd-sm-65p {
17369
    min-width: 65%;
17370
  }
16848 stevensc 17371
 
16825 efrain 17372
  .wd-sm-65-f {
17373
    width: 65px !important;
17374
  }
16848 stevensc 17375
 
16825 efrain 17376
  .wd-sm-65p-f {
17377
    width: 65% !important;
17378
  }
16848 stevensc 17379
 
16825 efrain 17380
  .mx-wd-sm-65p-f {
17381
    max-width: 65% !important;
17382
  }
16848 stevensc 17383
 
16825 efrain 17384
  .mn-wd-sm-65p-f {
17385
    min-width: 65% !important;
17386
  }
16848 stevensc 17387
 
16825 efrain 17388
  .wd-sm-70 {
17389
    width: 70px;
17390
  }
16848 stevensc 17391
 
16825 efrain 17392
  .wd-sm-70p {
17393
    width: 70%;
17394
  }
16848 stevensc 17395
 
16825 efrain 17396
  .mx-wd-sm-70p {
17397
    max-width: 70%;
17398
  }
16848 stevensc 17399
 
16825 efrain 17400
  .mn-wd-sm-70p {
17401
    min-width: 70%;
17402
  }
16848 stevensc 17403
 
16825 efrain 17404
  .wd-sm-70-f {
17405
    width: 70px !important;
17406
  }
16848 stevensc 17407
 
16825 efrain 17408
  .wd-sm-70p-f {
17409
    width: 70% !important;
17410
  }
16848 stevensc 17411
 
16825 efrain 17412
  .mx-wd-sm-70p-f {
17413
    max-width: 70% !important;
17414
  }
16848 stevensc 17415
 
16825 efrain 17416
  .mn-wd-sm-70p-f {
17417
    min-width: 70% !important;
17418
  }
16848 stevensc 17419
 
16825 efrain 17420
  .wd-sm-75 {
17421
    width: 75px;
17422
  }
16848 stevensc 17423
 
16825 efrain 17424
  .wd-sm-75p {
17425
    width: 75%;
17426
  }
16848 stevensc 17427
 
16825 efrain 17428
  .mx-wd-sm-75p {
17429
    max-width: 75%;
17430
  }
16848 stevensc 17431
 
16825 efrain 17432
  .mn-wd-sm-75p {
17433
    min-width: 75%;
17434
  }
16848 stevensc 17435
 
16825 efrain 17436
  .wd-sm-75-f {
17437
    width: 75px !important;
17438
  }
16848 stevensc 17439
 
16825 efrain 17440
  .wd-sm-75p-f {
17441
    width: 75% !important;
17442
  }
16848 stevensc 17443
 
16825 efrain 17444
  .mx-wd-sm-75p-f {
17445
    max-width: 75% !important;
17446
  }
16848 stevensc 17447
 
16825 efrain 17448
  .mn-wd-sm-75p-f {
17449
    min-width: 75% !important;
17450
  }
16848 stevensc 17451
 
16825 efrain 17452
  .wd-sm-80 {
17453
    width: 80px;
17454
  }
16848 stevensc 17455
 
16825 efrain 17456
  .wd-sm-80p {
17457
    width: 80%;
17458
  }
16848 stevensc 17459
 
16825 efrain 17460
  .mx-wd-sm-80p {
17461
    max-width: 80%;
17462
  }
16848 stevensc 17463
 
16825 efrain 17464
  .mn-wd-sm-80p {
17465
    min-width: 80%;
17466
  }
16848 stevensc 17467
 
16825 efrain 17468
  .wd-sm-80-f {
17469
    width: 80px !important;
17470
  }
16848 stevensc 17471
 
16825 efrain 17472
  .wd-sm-80p-f {
17473
    width: 80% !important;
17474
  }
16848 stevensc 17475
 
16825 efrain 17476
  .mx-wd-sm-80p-f {
17477
    max-width: 80% !important;
17478
  }
16848 stevensc 17479
 
16825 efrain 17480
  .mn-wd-sm-80p-f {
17481
    min-width: 80% !important;
17482
  }
16848 stevensc 17483
 
16825 efrain 17484
  .wd-sm-85 {
17485
    width: 85px;
17486
  }
16848 stevensc 17487
 
16825 efrain 17488
  .wd-sm-85p {
17489
    width: 85%;
17490
  }
16848 stevensc 17491
 
16825 efrain 17492
  .mx-wd-sm-85p {
17493
    max-width: 85%;
17494
  }
16848 stevensc 17495
 
16825 efrain 17496
  .mn-wd-sm-85p {
17497
    min-width: 85%;
17498
  }
16848 stevensc 17499
 
16825 efrain 17500
  .wd-sm-85-f {
17501
    width: 85px !important;
17502
  }
16848 stevensc 17503
 
16825 efrain 17504
  .wd-sm-85p-f {
17505
    width: 85% !important;
17506
  }
16848 stevensc 17507
 
16825 efrain 17508
  .mx-wd-sm-85p-f {
17509
    max-width: 85% !important;
17510
  }
16848 stevensc 17511
 
16825 efrain 17512
  .mn-wd-sm-85p-f {
17513
    min-width: 85% !important;
17514
  }
16848 stevensc 17515
 
16825 efrain 17516
  .wd-sm-90 {
17517
    width: 90px;
17518
  }
16848 stevensc 17519
 
16825 efrain 17520
  .wd-sm-90p {
17521
    width: 90%;
17522
  }
16848 stevensc 17523
 
16825 efrain 17524
  .mx-wd-sm-90p {
17525
    max-width: 90%;
17526
  }
16848 stevensc 17527
 
16825 efrain 17528
  .mn-wd-sm-90p {
17529
    min-width: 90%;
17530
  }
16848 stevensc 17531
 
16825 efrain 17532
  .wd-sm-90-f {
17533
    width: 90px !important;
17534
  }
16848 stevensc 17535
 
16825 efrain 17536
  .wd-sm-90p-f {
17537
    width: 90% !important;
17538
  }
16848 stevensc 17539
 
16825 efrain 17540
  .mx-wd-sm-90p-f {
17541
    max-width: 90% !important;
17542
  }
16848 stevensc 17543
 
16825 efrain 17544
  .mn-wd-sm-90p-f {
17545
    min-width: 90% !important;
17546
  }
16848 stevensc 17547
 
16825 efrain 17548
  .wd-sm-95 {
17549
    width: 95px;
17550
  }
16848 stevensc 17551
 
16825 efrain 17552
  .wd-sm-95p {
17553
    width: 95%;
17554
  }
16848 stevensc 17555
 
16825 efrain 17556
  .mx-wd-sm-95p {
17557
    max-width: 95%;
17558
  }
16848 stevensc 17559
 
16825 efrain 17560
  .mn-wd-sm-95p {
17561
    min-width: 95%;
17562
  }
16848 stevensc 17563
 
16825 efrain 17564
  .wd-sm-95-f {
17565
    width: 95px !important;
17566
  }
16848 stevensc 17567
 
16825 efrain 17568
  .wd-sm-95p-f {
17569
    width: 95% !important;
17570
  }
16848 stevensc 17571
 
16825 efrain 17572
  .mx-wd-sm-95p-f {
17573
    max-width: 95% !important;
17574
  }
16848 stevensc 17575
 
16825 efrain 17576
  .mn-wd-sm-95p-f {
17577
    min-width: 95% !important;
17578
  }
16848 stevensc 17579
 
16825 efrain 17580
  .wd-sm-100 {
17581
    width: 100px;
17582
  }
16848 stevensc 17583
 
16825 efrain 17584
  .wd-sm-100p {
17585
    width: 100%;
17586
  }
16848 stevensc 17587
 
16825 efrain 17588
  .mx-wd-sm-100p {
17589
    max-width: 100%;
17590
  }
16848 stevensc 17591
 
16825 efrain 17592
  .mn-wd-sm-100p {
17593
    min-width: 100%;
17594
  }
16848 stevensc 17595
 
16825 efrain 17596
  .wd-sm-100-f {
17597
    width: 100px !important;
17598
  }
16848 stevensc 17599
 
16825 efrain 17600
  .wd-sm-100p-f {
17601
    width: 100% !important;
17602
  }
16848 stevensc 17603
 
16825 efrain 17604
  .mx-wd-sm-100p-f {
17605
    max-width: 100% !important;
17606
  }
16848 stevensc 17607
 
16825 efrain 17608
  .mn-wd-sm-100p-f {
17609
    min-width: 100% !important;
17610
  }
16848 stevensc 17611
 
16825 efrain 17612
  .wd-sm-150 {
17613
    width: 150px;
17614
  }
16848 stevensc 17615
 
16825 efrain 17616
  .wd-sm-150p {
17617
    width: 150%;
17618
  }
16848 stevensc 17619
 
16825 efrain 17620
  .mx-wd-sm-150p {
17621
    max-width: 150%;
17622
  }
16848 stevensc 17623
 
16825 efrain 17624
  .mn-wd-sm-150p {
17625
    min-width: 150%;
17626
  }
16848 stevensc 17627
 
16825 efrain 17628
  .wd-sm-150-f {
17629
    width: 150px !important;
17630
  }
16848 stevensc 17631
 
16825 efrain 17632
  .wd-sm-150p-f {
17633
    width: 150% !important;
17634
  }
16848 stevensc 17635
 
16825 efrain 17636
  .mx-wd-sm-150p-f {
17637
    max-width: 150% !important;
17638
  }
16848 stevensc 17639
 
16825 efrain 17640
  .mn-wd-sm-150p-f {
17641
    min-width: 150% !important;
17642
  }
16848 stevensc 17643
 
16825 efrain 17644
  .wd-sm-200 {
17645
    width: 200px;
17646
  }
16848 stevensc 17647
 
16825 efrain 17648
  .wd-sm-200p {
17649
    width: 200%;
17650
  }
16848 stevensc 17651
 
16825 efrain 17652
  .mx-wd-sm-200p {
17653
    max-width: 200%;
17654
  }
16848 stevensc 17655
 
16825 efrain 17656
  .mn-wd-sm-200p {
17657
    min-width: 200%;
17658
  }
16848 stevensc 17659
 
16825 efrain 17660
  .wd-sm-200-f {
17661
    width: 200px !important;
17662
  }
16848 stevensc 17663
 
16825 efrain 17664
  .wd-sm-200p-f {
17665
    width: 200% !important;
17666
  }
16848 stevensc 17667
 
16825 efrain 17668
  .mx-wd-sm-200p-f {
17669
    max-width: 200% !important;
17670
  }
16848 stevensc 17671
 
16825 efrain 17672
  .mn-wd-sm-200p-f {
17673
    min-width: 200% !important;
17674
  }
16848 stevensc 17675
 
16825 efrain 17676
  .wd-sm-250 {
17677
    width: 250px;
17678
  }
16848 stevensc 17679
 
16825 efrain 17680
  .wd-sm-250p {
17681
    width: 250%;
17682
  }
16848 stevensc 17683
 
16825 efrain 17684
  .mx-wd-sm-250p {
17685
    max-width: 250%;
17686
  }
16848 stevensc 17687
 
16825 efrain 17688
  .mn-wd-sm-250p {
17689
    min-width: 250%;
17690
  }
16848 stevensc 17691
 
16825 efrain 17692
  .wd-sm-250-f {
17693
    width: 250px !important;
17694
  }
16848 stevensc 17695
 
16825 efrain 17696
  .wd-sm-250p-f {
17697
    width: 250% !important;
17698
  }
16848 stevensc 17699
 
16825 efrain 17700
  .mx-wd-sm-250p-f {
17701
    max-width: 250% !important;
17702
  }
16848 stevensc 17703
 
16825 efrain 17704
  .mn-wd-sm-250p-f {
17705
    min-width: 250% !important;
17706
  }
16848 stevensc 17707
 
16825 efrain 17708
  .wd-sm-300 {
17709
    width: 300px;
17710
  }
16848 stevensc 17711
 
16825 efrain 17712
  .wd-sm-300p {
17713
    width: 300%;
17714
  }
16848 stevensc 17715
 
16825 efrain 17716
  .mx-wd-sm-300p {
17717
    max-width: 300%;
17718
  }
16848 stevensc 17719
 
16825 efrain 17720
  .mn-wd-sm-300p {
17721
    min-width: 300%;
17722
  }
16848 stevensc 17723
 
16825 efrain 17724
  .wd-sm-300-f {
17725
    width: 300px !important;
17726
  }
16848 stevensc 17727
 
16825 efrain 17728
  .wd-sm-300p-f {
17729
    width: 300% !important;
17730
  }
16848 stevensc 17731
 
16825 efrain 17732
  .mx-wd-sm-300p-f {
17733
    max-width: 300% !important;
17734
  }
16848 stevensc 17735
 
16825 efrain 17736
  .mn-wd-sm-300p-f {
17737
    min-width: 300% !important;
17738
  }
16848 stevensc 17739
 
16825 efrain 17740
  .wd-sm-350 {
17741
    width: 350px;
17742
  }
16848 stevensc 17743
 
16825 efrain 17744
  .wd-sm-350p {
17745
    width: 350%;
17746
  }
16848 stevensc 17747
 
16825 efrain 17748
  .mx-wd-sm-350p {
17749
    max-width: 350%;
17750
  }
16848 stevensc 17751
 
16825 efrain 17752
  .mn-wd-sm-350p {
17753
    min-width: 350%;
17754
  }
16848 stevensc 17755
 
16825 efrain 17756
  .wd-sm-350-f {
17757
    width: 350px !important;
17758
  }
16848 stevensc 17759
 
16825 efrain 17760
  .wd-sm-350p-f {
17761
    width: 350% !important;
17762
  }
16848 stevensc 17763
 
16825 efrain 17764
  .mx-wd-sm-350p-f {
17765
    max-width: 350% !important;
17766
  }
16848 stevensc 17767
 
16825 efrain 17768
  .mn-wd-sm-350p-f {
17769
    min-width: 350% !important;
17770
  }
16848 stevensc 17771
 
16825 efrain 17772
  .wd-sm-400 {
17773
    width: 400px;
17774
  }
16848 stevensc 17775
 
16825 efrain 17776
  .wd-sm-400p {
17777
    width: 400%;
17778
  }
16848 stevensc 17779
 
16825 efrain 17780
  .mx-wd-sm-400p {
17781
    max-width: 400%;
17782
  }
16848 stevensc 17783
 
16825 efrain 17784
  .mn-wd-sm-400p {
17785
    min-width: 400%;
17786
  }
16848 stevensc 17787
 
16825 efrain 17788
  .wd-sm-400-f {
17789
    width: 400px !important;
17790
  }
16848 stevensc 17791
 
16825 efrain 17792
  .wd-sm-400p-f {
17793
    width: 400% !important;
17794
  }
16848 stevensc 17795
 
16825 efrain 17796
  .mx-wd-sm-400p-f {
17797
    max-width: 400% !important;
17798
  }
16848 stevensc 17799
 
16825 efrain 17800
  .mn-wd-sm-400p-f {
17801
    min-width: 400% !important;
17802
  }
16848 stevensc 17803
 
16825 efrain 17804
  .wd-sm-450 {
17805
    width: 450px;
17806
  }
16848 stevensc 17807
 
16825 efrain 17808
  .wd-sm-450p {
17809
    width: 450%;
17810
  }
16848 stevensc 17811
 
16825 efrain 17812
  .mx-wd-sm-450p {
17813
    max-width: 450%;
17814
  }
16848 stevensc 17815
 
16825 efrain 17816
  .mn-wd-sm-450p {
17817
    min-width: 450%;
17818
  }
16848 stevensc 17819
 
16825 efrain 17820
  .wd-sm-450-f {
17821
    width: 450px !important;
17822
  }
16848 stevensc 17823
 
16825 efrain 17824
  .wd-sm-450p-f {
17825
    width: 450% !important;
17826
  }
16848 stevensc 17827
 
16825 efrain 17828
  .mx-wd-sm-450p-f {
17829
    max-width: 450% !important;
17830
  }
16848 stevensc 17831
 
16825 efrain 17832
  .mn-wd-sm-450p-f {
17833
    min-width: 450% !important;
17834
  }
16848 stevensc 17835
 
16825 efrain 17836
  .wd-sm-500 {
17837
    width: 500px;
17838
  }
16848 stevensc 17839
 
16825 efrain 17840
  .wd-sm-500p {
17841
    width: 500%;
17842
  }
16848 stevensc 17843
 
16825 efrain 17844
  .mx-wd-sm-500p {
17845
    max-width: 500%;
17846
  }
16848 stevensc 17847
 
16825 efrain 17848
  .mn-wd-sm-500p {
17849
    min-width: 500%;
17850
  }
16848 stevensc 17851
 
16825 efrain 17852
  .wd-sm-500-f {
17853
    width: 500px !important;
17854
  }
16848 stevensc 17855
 
16825 efrain 17856
  .wd-sm-500p-f {
17857
    width: 500% !important;
17858
  }
16848 stevensc 17859
 
16825 efrain 17860
  .mx-wd-sm-500p-f {
17861
    max-width: 500% !important;
17862
  }
16848 stevensc 17863
 
16825 efrain 17864
  .mn-wd-sm-500p-f {
17865
    min-width: 500% !important;
17866
  }
16848 stevensc 17867
 
16825 efrain 17868
  .wd-sm-550 {
17869
    width: 550px;
17870
  }
16848 stevensc 17871
 
16825 efrain 17872
  .wd-sm-550p {
17873
    width: 550%;
17874
  }
16848 stevensc 17875
 
16825 efrain 17876
  .mx-wd-sm-550p {
17877
    max-width: 550%;
17878
  }
16848 stevensc 17879
 
16825 efrain 17880
  .mn-wd-sm-550p {
17881
    min-width: 550%;
17882
  }
16848 stevensc 17883
 
16825 efrain 17884
  .wd-sm-550-f {
17885
    width: 550px !important;
17886
  }
16848 stevensc 17887
 
16825 efrain 17888
  .wd-sm-550p-f {
17889
    width: 550% !important;
17890
  }
16848 stevensc 17891
 
16825 efrain 17892
  .mx-wd-sm-550p-f {
17893
    max-width: 550% !important;
17894
  }
16848 stevensc 17895
 
16825 efrain 17896
  .mn-wd-sm-550p-f {
17897
    min-width: 550% !important;
17898
  }
16848 stevensc 17899
 
16825 efrain 17900
  .wd-sm-600 {
17901
    width: 600px;
17902
  }
16848 stevensc 17903
 
16825 efrain 17904
  .wd-sm-600p {
17905
    width: 600%;
17906
  }
16848 stevensc 17907
 
16825 efrain 17908
  .mx-wd-sm-600p {
17909
    max-width: 600%;
17910
  }
16848 stevensc 17911
 
16825 efrain 17912
  .mn-wd-sm-600p {
17913
    min-width: 600%;
17914
  }
16848 stevensc 17915
 
16825 efrain 17916
  .wd-sm-600-f {
17917
    width: 600px !important;
17918
  }
16848 stevensc 17919
 
16825 efrain 17920
  .wd-sm-600p-f {
17921
    width: 600% !important;
17922
  }
16848 stevensc 17923
 
16825 efrain 17924
  .mx-wd-sm-600p-f {
17925
    max-width: 600% !important;
17926
  }
16848 stevensc 17927
 
16825 efrain 17928
  .mn-wd-sm-600p-f {
17929
    min-width: 600% !important;
17930
  }
16848 stevensc 17931
 
16825 efrain 17932
  .wd-sm-650 {
17933
    width: 650px;
17934
  }
16848 stevensc 17935
 
16825 efrain 17936
  .wd-sm-650p {
17937
    width: 650%;
17938
  }
16848 stevensc 17939
 
16825 efrain 17940
  .mx-wd-sm-650p {
17941
    max-width: 650%;
17942
  }
16848 stevensc 17943
 
16825 efrain 17944
  .mn-wd-sm-650p {
17945
    min-width: 650%;
17946
  }
16848 stevensc 17947
 
16825 efrain 17948
  .wd-sm-650-f {
17949
    width: 650px !important;
17950
  }
16848 stevensc 17951
 
16825 efrain 17952
  .wd-sm-650p-f {
17953
    width: 650% !important;
17954
  }
16848 stevensc 17955
 
16825 efrain 17956
  .mx-wd-sm-650p-f {
17957
    max-width: 650% !important;
17958
  }
16848 stevensc 17959
 
16825 efrain 17960
  .mn-wd-sm-650p-f {
17961
    min-width: 650% !important;
17962
  }
16848 stevensc 17963
 
16825 efrain 17964
  .wd-sm-700 {
17965
    width: 700px;
17966
  }
16848 stevensc 17967
 
16825 efrain 17968
  .wd-sm-700p {
17969
    width: 700%;
17970
  }
16848 stevensc 17971
 
16825 efrain 17972
  .mx-wd-sm-700p {
17973
    max-width: 700%;
17974
  }
16848 stevensc 17975
 
16825 efrain 17976
  .mn-wd-sm-700p {
17977
    min-width: 700%;
17978
  }
16848 stevensc 17979
 
16825 efrain 17980
  .wd-sm-700-f {
17981
    width: 700px !important;
17982
  }
16848 stevensc 17983
 
16825 efrain 17984
  .wd-sm-700p-f {
17985
    width: 700% !important;
17986
  }
16848 stevensc 17987
 
16825 efrain 17988
  .mx-wd-sm-700p-f {
17989
    max-width: 700% !important;
17990
  }
16848 stevensc 17991
 
16825 efrain 17992
  .mn-wd-sm-700p-f {
17993
    min-width: 700% !important;
17994
  }
16848 stevensc 17995
 
16825 efrain 17996
  .wd-sm-750 {
17997
    width: 750px;
17998
  }
16848 stevensc 17999
 
16825 efrain 18000
  .wd-sm-750p {
18001
    width: 750%;
18002
  }
16848 stevensc 18003
 
16825 efrain 18004
  .mx-wd-sm-750p {
18005
    max-width: 750%;
18006
  }
16848 stevensc 18007
 
16825 efrain 18008
  .mn-wd-sm-750p {
18009
    min-width: 750%;
18010
  }
16848 stevensc 18011
 
16825 efrain 18012
  .wd-sm-750-f {
18013
    width: 750px !important;
18014
  }
16848 stevensc 18015
 
16825 efrain 18016
  .wd-sm-750p-f {
18017
    width: 750% !important;
18018
  }
16848 stevensc 18019
 
16825 efrain 18020
  .mx-wd-sm-750p-f {
18021
    max-width: 750% !important;
18022
  }
16848 stevensc 18023
 
16825 efrain 18024
  .mn-wd-sm-750p-f {
18025
    min-width: 750% !important;
18026
  }
16848 stevensc 18027
 
16825 efrain 18028
  .wd-sm-800 {
18029
    width: 800px;
18030
  }
16848 stevensc 18031
 
16825 efrain 18032
  .wd-sm-800p {
18033
    width: 800%;
18034
  }
16848 stevensc 18035
 
16825 efrain 18036
  .mx-wd-sm-800p {
18037
    max-width: 800%;
18038
  }
16848 stevensc 18039
 
16825 efrain 18040
  .mn-wd-sm-800p {
18041
    min-width: 800%;
18042
  }
16848 stevensc 18043
 
16825 efrain 18044
  .wd-sm-800-f {
18045
    width: 800px !important;
18046
  }
16848 stevensc 18047
 
16825 efrain 18048
  .wd-sm-800p-f {
18049
    width: 800% !important;
18050
  }
16848 stevensc 18051
 
16825 efrain 18052
  .mx-wd-sm-800p-f {
18053
    max-width: 800% !important;
18054
  }
16848 stevensc 18055
 
16825 efrain 18056
  .mn-wd-sm-800p-f {
18057
    min-width: 800% !important;
18058
  }
16848 stevensc 18059
 
16825 efrain 18060
  .wd-sm-850 {
18061
    width: 850px;
18062
  }
16848 stevensc 18063
 
16825 efrain 18064
  .wd-sm-850p {
18065
    width: 850%;
18066
  }
16848 stevensc 18067
 
16825 efrain 18068
  .mx-wd-sm-850p {
18069
    max-width: 850%;
18070
  }
16848 stevensc 18071
 
16825 efrain 18072
  .mn-wd-sm-850p {
18073
    min-width: 850%;
18074
  }
16848 stevensc 18075
 
16825 efrain 18076
  .wd-sm-850-f {
18077
    width: 850px !important;
18078
  }
16848 stevensc 18079
 
16825 efrain 18080
  .wd-sm-850p-f {
18081
    width: 850% !important;
18082
  }
16848 stevensc 18083
 
16825 efrain 18084
  .mx-wd-sm-850p-f {
18085
    max-width: 850% !important;
18086
  }
16848 stevensc 18087
 
16825 efrain 18088
  .mn-wd-sm-850p-f {
18089
    min-width: 850% !important;
18090
  }
16848 stevensc 18091
 
16825 efrain 18092
  .wd-sm-900 {
18093
    width: 900px;
18094
  }
16848 stevensc 18095
 
16825 efrain 18096
  .wd-sm-900p {
18097
    width: 900%;
18098
  }
16848 stevensc 18099
 
16825 efrain 18100
  .mx-wd-sm-900p {
18101
    max-width: 900%;
18102
  }
16848 stevensc 18103
 
16825 efrain 18104
  .mn-wd-sm-900p {
18105
    min-width: 900%;
18106
  }
16848 stevensc 18107
 
16825 efrain 18108
  .wd-sm-900-f {
18109
    width: 900px !important;
18110
  }
16848 stevensc 18111
 
16825 efrain 18112
  .wd-sm-900p-f {
18113
    width: 900% !important;
18114
  }
16848 stevensc 18115
 
16825 efrain 18116
  .mx-wd-sm-900p-f {
18117
    max-width: 900% !important;
18118
  }
16848 stevensc 18119
 
16825 efrain 18120
  .mn-wd-sm-900p-f {
18121
    min-width: 900% !important;
18122
  }
16848 stevensc 18123
 
16825 efrain 18124
  .wd-sm-950 {
18125
    width: 950px;
18126
  }
16848 stevensc 18127
 
16825 efrain 18128
  .wd-sm-950p {
18129
    width: 950%;
18130
  }
16848 stevensc 18131
 
16825 efrain 18132
  .mx-wd-sm-950p {
18133
    max-width: 950%;
18134
  }
16848 stevensc 18135
 
16825 efrain 18136
  .mn-wd-sm-950p {
18137
    min-width: 950%;
18138
  }
16848 stevensc 18139
 
16825 efrain 18140
  .wd-sm-950-f {
18141
    width: 950px !important;
18142
  }
16848 stevensc 18143
 
16825 efrain 18144
  .wd-sm-950p-f {
18145
    width: 950% !important;
18146
  }
16848 stevensc 18147
 
16825 efrain 18148
  .mx-wd-sm-950p-f {
18149
    max-width: 950% !important;
18150
  }
16848 stevensc 18151
 
16825 efrain 18152
  .mn-wd-sm-950p-f {
18153
    min-width: 950% !important;
18154
  }
16848 stevensc 18155
 
16825 efrain 18156
  .wd-sm-1000 {
18157
    width: 1000px;
18158
  }
16848 stevensc 18159
 
16825 efrain 18160
  .wd-sm-1000p {
18161
    width: 1000%;
18162
  }
16848 stevensc 18163
 
16825 efrain 18164
  .mx-wd-sm-1000p {
18165
    max-width: 1000%;
18166
  }
16848 stevensc 18167
 
16825 efrain 18168
  .mn-wd-sm-1000p {
18169
    min-width: 1000%;
18170
  }
16848 stevensc 18171
 
16825 efrain 18172
  .wd-sm-1000-f {
18173
    width: 1000px !important;
18174
  }
16848 stevensc 18175
 
16825 efrain 18176
  .wd-sm-1000p-f {
18177
    width: 1000% !important;
18178
  }
16848 stevensc 18179
 
16825 efrain 18180
  .mx-wd-sm-1000p-f {
18181
    max-width: 1000% !important;
18182
  }
16848 stevensc 18183
 
16825 efrain 18184
  .mn-wd-sm-1000p-f {
18185
    min-width: 1000% !important;
18186
  }
16848 stevensc 18187
 
16825 efrain 18188
  .wd-sm-auto {
18189
    width: auto;
18190
  }
16848 stevensc 18191
 
16825 efrain 18192
  .wd-sm-auto-f {
18193
    width: auto !important;
18194
  }
18195
}
16848 stevensc 18196
 
16825 efrain 18197
@media (min-width: 768px) {
18198
  .wd-md-5 {
18199
    width: 5px;
18200
  }
16848 stevensc 18201
 
16825 efrain 18202
  .wd-md-5p {
18203
    width: 5%;
18204
  }
16848 stevensc 18205
 
16825 efrain 18206
  .mx-wd-md-5p {
18207
    max-width: 5%;
18208
  }
16848 stevensc 18209
 
16825 efrain 18210
  .mn-wd-md-5p {
18211
    min-width: 5%;
18212
  }
16848 stevensc 18213
 
16825 efrain 18214
  .wd-md-5-f {
18215
    width: 5px !important;
18216
  }
16848 stevensc 18217
 
16825 efrain 18218
  .wd-md-5p-f {
18219
    width: 5% !important;
18220
  }
16848 stevensc 18221
 
16825 efrain 18222
  .mx-wd-md-5p-f {
18223
    max-width: 5% !important;
18224
  }
16848 stevensc 18225
 
16825 efrain 18226
  .mn-wd-md-5p-f {
18227
    min-width: 5% !important;
18228
  }
16848 stevensc 18229
 
16825 efrain 18230
  .wd-md-10 {
18231
    width: 10px;
18232
  }
16848 stevensc 18233
 
16825 efrain 18234
  .wd-md-10p {
18235
    width: 10%;
18236
  }
16848 stevensc 18237
 
16825 efrain 18238
  .mx-wd-md-10p {
18239
    max-width: 10%;
18240
  }
16848 stevensc 18241
 
16825 efrain 18242
  .mn-wd-md-10p {
18243
    min-width: 10%;
18244
  }
16848 stevensc 18245
 
16825 efrain 18246
  .wd-md-10-f {
18247
    width: 10px !important;
18248
  }
16848 stevensc 18249
 
16825 efrain 18250
  .wd-md-10p-f {
18251
    width: 10% !important;
18252
  }
16848 stevensc 18253
 
16825 efrain 18254
  .mx-wd-md-10p-f {
18255
    max-width: 10% !important;
18256
  }
16848 stevensc 18257
 
16825 efrain 18258
  .mn-wd-md-10p-f {
18259
    min-width: 10% !important;
18260
  }
16848 stevensc 18261
 
16825 efrain 18262
  .wd-md-15 {
18263
    width: 15px;
18264
  }
16848 stevensc 18265
 
16825 efrain 18266
  .wd-md-15p {
18267
    width: 15%;
18268
  }
16848 stevensc 18269
 
16825 efrain 18270
  .mx-wd-md-15p {
18271
    max-width: 15%;
18272
  }
16848 stevensc 18273
 
16825 efrain 18274
  .mn-wd-md-15p {
18275
    min-width: 15%;
18276
  }
16848 stevensc 18277
 
16825 efrain 18278
  .wd-md-15-f {
18279
    width: 15px !important;
18280
  }
16848 stevensc 18281
 
16825 efrain 18282
  .wd-md-15p-f {
18283
    width: 15% !important;
18284
  }
16848 stevensc 18285
 
16825 efrain 18286
  .mx-wd-md-15p-f {
18287
    max-width: 15% !important;
18288
  }
16848 stevensc 18289
 
16825 efrain 18290
  .mn-wd-md-15p-f {
18291
    min-width: 15% !important;
18292
  }
16848 stevensc 18293
 
16825 efrain 18294
  .wd-md-20 {
18295
    width: 20px;
18296
  }
16848 stevensc 18297
 
16825 efrain 18298
  .wd-md-20p {
18299
    width: 20%;
18300
  }
16848 stevensc 18301
 
16825 efrain 18302
  .mx-wd-md-20p {
18303
    max-width: 20%;
18304
  }
16848 stevensc 18305
 
16825 efrain 18306
  .mn-wd-md-20p {
18307
    min-width: 20%;
18308
  }
16848 stevensc 18309
 
16825 efrain 18310
  .wd-md-20-f {
18311
    width: 20px !important;
18312
  }
16848 stevensc 18313
 
16825 efrain 18314
  .wd-md-20p-f {
18315
    width: 20% !important;
18316
  }
16848 stevensc 18317
 
16825 efrain 18318
  .mx-wd-md-20p-f {
18319
    max-width: 20% !important;
18320
  }
16848 stevensc 18321
 
16825 efrain 18322
  .mn-wd-md-20p-f {
18323
    min-width: 20% !important;
18324
  }
16848 stevensc 18325
 
16825 efrain 18326
  .wd-md-25 {
18327
    width: 25px;
18328
  }
16848 stevensc 18329
 
16825 efrain 18330
  .wd-md-25p {
18331
    width: 25%;
18332
  }
16848 stevensc 18333
 
16825 efrain 18334
  .mx-wd-md-25p {
18335
    max-width: 25%;
18336
  }
16848 stevensc 18337
 
16825 efrain 18338
  .mn-wd-md-25p {
18339
    min-width: 25%;
18340
  }
16848 stevensc 18341
 
16825 efrain 18342
  .wd-md-25-f {
18343
    width: 25px !important;
18344
  }
16848 stevensc 18345
 
16825 efrain 18346
  .wd-md-25p-f {
18347
    width: 25% !important;
18348
  }
16848 stevensc 18349
 
16825 efrain 18350
  .mx-wd-md-25p-f {
18351
    max-width: 25% !important;
18352
  }
16848 stevensc 18353
 
16825 efrain 18354
  .mn-wd-md-25p-f {
18355
    min-width: 25% !important;
18356
  }
16848 stevensc 18357
 
16825 efrain 18358
  .wd-md-30 {
18359
    width: 30px;
18360
  }
16848 stevensc 18361
 
16825 efrain 18362
  .wd-md-30p {
18363
    width: 30%;
18364
  }
16848 stevensc 18365
 
16825 efrain 18366
  .mx-wd-md-30p {
18367
    max-width: 30%;
18368
  }
16848 stevensc 18369
 
16825 efrain 18370
  .mn-wd-md-30p {
18371
    min-width: 30%;
18372
  }
16848 stevensc 18373
 
16825 efrain 18374
  .wd-md-30-f {
18375
    width: 30px !important;
18376
  }
16848 stevensc 18377
 
16825 efrain 18378
  .wd-md-30p-f {
18379
    width: 30% !important;
18380
  }
16848 stevensc 18381
 
16825 efrain 18382
  .mx-wd-md-30p-f {
18383
    max-width: 30% !important;
18384
  }
16848 stevensc 18385
 
16825 efrain 18386
  .mn-wd-md-30p-f {
18387
    min-width: 30% !important;
18388
  }
16848 stevensc 18389
 
16825 efrain 18390
  .wd-md-35 {
18391
    width: 35px;
18392
  }
16848 stevensc 18393
 
16825 efrain 18394
  .wd-md-35p {
18395
    width: 35%;
18396
  }
16848 stevensc 18397
 
16825 efrain 18398
  .mx-wd-md-35p {
18399
    max-width: 35%;
18400
  }
16848 stevensc 18401
 
16825 efrain 18402
  .mn-wd-md-35p {
18403
    min-width: 35%;
18404
  }
16848 stevensc 18405
 
16825 efrain 18406
  .wd-md-35-f {
18407
    width: 35px !important;
18408
  }
16848 stevensc 18409
 
16825 efrain 18410
  .wd-md-35p-f {
18411
    width: 35% !important;
18412
  }
16848 stevensc 18413
 
16825 efrain 18414
  .mx-wd-md-35p-f {
18415
    max-width: 35% !important;
18416
  }
16848 stevensc 18417
 
16825 efrain 18418
  .mn-wd-md-35p-f {
18419
    min-width: 35% !important;
18420
  }
16848 stevensc 18421
 
16825 efrain 18422
  .wd-md-40 {
18423
    width: 40px;
18424
  }
16848 stevensc 18425
 
16825 efrain 18426
  .wd-md-40p {
18427
    width: 40%;
18428
  }
16848 stevensc 18429
 
16825 efrain 18430
  .mx-wd-md-40p {
18431
    max-width: 40%;
18432
  }
16848 stevensc 18433
 
16825 efrain 18434
  .mn-wd-md-40p {
18435
    min-width: 40%;
18436
  }
16848 stevensc 18437
 
16825 efrain 18438
  .wd-md-40-f {
18439
    width: 40px !important;
18440
  }
16848 stevensc 18441
 
16825 efrain 18442
  .wd-md-40p-f {
18443
    width: 40% !important;
18444
  }
16848 stevensc 18445
 
16825 efrain 18446
  .mx-wd-md-40p-f {
18447
    max-width: 40% !important;
18448
  }
16848 stevensc 18449
 
16825 efrain 18450
  .mn-wd-md-40p-f {
18451
    min-width: 40% !important;
18452
  }
16848 stevensc 18453
 
16825 efrain 18454
  .wd-md-45 {
18455
    width: 45px;
18456
  }
16848 stevensc 18457
 
16825 efrain 18458
  .wd-md-45p {
18459
    width: 45%;
18460
  }
16848 stevensc 18461
 
16825 efrain 18462
  .mx-wd-md-45p {
18463
    max-width: 45%;
18464
  }
16848 stevensc 18465
 
16825 efrain 18466
  .mn-wd-md-45p {
18467
    min-width: 45%;
18468
  }
16848 stevensc 18469
 
16825 efrain 18470
  .wd-md-45-f {
18471
    width: 45px !important;
18472
  }
16848 stevensc 18473
 
16825 efrain 18474
  .wd-md-45p-f {
18475
    width: 45% !important;
18476
  }
16848 stevensc 18477
 
16825 efrain 18478
  .mx-wd-md-45p-f {
18479
    max-width: 45% !important;
18480
  }
16848 stevensc 18481
 
16825 efrain 18482
  .mn-wd-md-45p-f {
18483
    min-width: 45% !important;
18484
  }
16848 stevensc 18485
 
16825 efrain 18486
  .wd-md-50 {
18487
    width: 50px;
18488
  }
16848 stevensc 18489
 
16825 efrain 18490
  .wd-md-50p {
18491
    width: 50%;
18492
  }
16848 stevensc 18493
 
16825 efrain 18494
  .mx-wd-md-50p {
18495
    max-width: 50%;
18496
  }
16848 stevensc 18497
 
16825 efrain 18498
  .mn-wd-md-50p {
18499
    min-width: 50%;
18500
  }
16848 stevensc 18501
 
16825 efrain 18502
  .wd-md-50-f {
18503
    width: 50px !important;
18504
  }
16848 stevensc 18505
 
16825 efrain 18506
  .wd-md-50p-f {
18507
    width: 50% !important;
18508
  }
16848 stevensc 18509
 
16825 efrain 18510
  .mx-wd-md-50p-f {
18511
    max-width: 50% !important;
18512
  }
16848 stevensc 18513
 
16825 efrain 18514
  .mn-wd-md-50p-f {
18515
    min-width: 50% !important;
18516
  }
16848 stevensc 18517
 
16825 efrain 18518
  .wd-md-55 {
18519
    width: 55px;
18520
  }
16848 stevensc 18521
 
16825 efrain 18522
  .wd-md-55p {
18523
    width: 55%;
18524
  }
16848 stevensc 18525
 
16825 efrain 18526
  .mx-wd-md-55p {
18527
    max-width: 55%;
18528
  }
16848 stevensc 18529
 
16825 efrain 18530
  .mn-wd-md-55p {
18531
    min-width: 55%;
18532
  }
16848 stevensc 18533
 
16825 efrain 18534
  .wd-md-55-f {
18535
    width: 55px !important;
18536
  }
16848 stevensc 18537
 
16825 efrain 18538
  .wd-md-55p-f {
18539
    width: 55% !important;
18540
  }
16848 stevensc 18541
 
16825 efrain 18542
  .mx-wd-md-55p-f {
18543
    max-width: 55% !important;
18544
  }
16848 stevensc 18545
 
16825 efrain 18546
  .mn-wd-md-55p-f {
18547
    min-width: 55% !important;
18548
  }
16848 stevensc 18549
 
16825 efrain 18550
  .wd-md-60 {
18551
    width: 60px;
18552
  }
16848 stevensc 18553
 
16825 efrain 18554
  .wd-md-60p {
18555
    width: 60%;
18556
  }
16848 stevensc 18557
 
16825 efrain 18558
  .mx-wd-md-60p {
18559
    max-width: 60%;
18560
  }
16848 stevensc 18561
 
16825 efrain 18562
  .mn-wd-md-60p {
18563
    min-width: 60%;
18564
  }
16848 stevensc 18565
 
16825 efrain 18566
  .wd-md-60-f {
18567
    width: 60px !important;
18568
  }
16848 stevensc 18569
 
16825 efrain 18570
  .wd-md-60p-f {
18571
    width: 60% !important;
18572
  }
16848 stevensc 18573
 
16825 efrain 18574
  .mx-wd-md-60p-f {
18575
    max-width: 60% !important;
18576
  }
16848 stevensc 18577
 
16825 efrain 18578
  .mn-wd-md-60p-f {
18579
    min-width: 60% !important;
18580
  }
16848 stevensc 18581
 
16825 efrain 18582
  .wd-md-65 {
18583
    width: 65px;
18584
  }
16848 stevensc 18585
 
16825 efrain 18586
  .wd-md-65p {
18587
    width: 65%;
18588
  }
16848 stevensc 18589
 
16825 efrain 18590
  .mx-wd-md-65p {
18591
    max-width: 65%;
18592
  }
16848 stevensc 18593
 
16825 efrain 18594
  .mn-wd-md-65p {
18595
    min-width: 65%;
18596
  }
16848 stevensc 18597
 
16825 efrain 18598
  .wd-md-65-f {
18599
    width: 65px !important;
18600
  }
16848 stevensc 18601
 
16825 efrain 18602
  .wd-md-65p-f {
18603
    width: 65% !important;
18604
  }
16848 stevensc 18605
 
16825 efrain 18606
  .mx-wd-md-65p-f {
18607
    max-width: 65% !important;
18608
  }
16848 stevensc 18609
 
16825 efrain 18610
  .mn-wd-md-65p-f {
18611
    min-width: 65% !important;
18612
  }
16848 stevensc 18613
 
16825 efrain 18614
  .wd-md-70 {
18615
    width: 70px;
18616
  }
16848 stevensc 18617
 
16825 efrain 18618
  .wd-md-70p {
18619
    width: 70%;
18620
  }
16848 stevensc 18621
 
16825 efrain 18622
  .mx-wd-md-70p {
18623
    max-width: 70%;
18624
  }
16848 stevensc 18625
 
16825 efrain 18626
  .mn-wd-md-70p {
18627
    min-width: 70%;
18628
  }
16848 stevensc 18629
 
16825 efrain 18630
  .wd-md-70-f {
18631
    width: 70px !important;
18632
  }
16848 stevensc 18633
 
16825 efrain 18634
  .wd-md-70p-f {
18635
    width: 70% !important;
18636
  }
16848 stevensc 18637
 
16825 efrain 18638
  .mx-wd-md-70p-f {
18639
    max-width: 70% !important;
18640
  }
16848 stevensc 18641
 
16825 efrain 18642
  .mn-wd-md-70p-f {
18643
    min-width: 70% !important;
18644
  }
16848 stevensc 18645
 
16825 efrain 18646
  .wd-md-75 {
18647
    width: 75px;
18648
  }
16848 stevensc 18649
 
16825 efrain 18650
  .wd-md-75p {
18651
    width: 75%;
18652
  }
16848 stevensc 18653
 
16825 efrain 18654
  .mx-wd-md-75p {
18655
    max-width: 75%;
18656
  }
16848 stevensc 18657
 
16825 efrain 18658
  .mn-wd-md-75p {
18659
    min-width: 75%;
18660
  }
16848 stevensc 18661
 
16825 efrain 18662
  .wd-md-75-f {
18663
    width: 75px !important;
18664
  }
16848 stevensc 18665
 
16825 efrain 18666
  .wd-md-75p-f {
18667
    width: 75% !important;
18668
  }
16848 stevensc 18669
 
16825 efrain 18670
  .mx-wd-md-75p-f {
18671
    max-width: 75% !important;
18672
  }
16848 stevensc 18673
 
16825 efrain 18674
  .mn-wd-md-75p-f {
18675
    min-width: 75% !important;
18676
  }
16848 stevensc 18677
 
16825 efrain 18678
  .wd-md-80 {
18679
    width: 80px;
18680
  }
16848 stevensc 18681
 
16825 efrain 18682
  .wd-md-80p {
18683
    width: 80%;
18684
  }
16848 stevensc 18685
 
16825 efrain 18686
  .mx-wd-md-80p {
18687
    max-width: 80%;
18688
  }
16848 stevensc 18689
 
16825 efrain 18690
  .mn-wd-md-80p {
18691
    min-width: 80%;
18692
  }
16848 stevensc 18693
 
16825 efrain 18694
  .wd-md-80-f {
18695
    width: 80px !important;
18696
  }
16848 stevensc 18697
 
16825 efrain 18698
  .wd-md-80p-f {
18699
    width: 80% !important;
18700
  }
16848 stevensc 18701
 
16825 efrain 18702
  .mx-wd-md-80p-f {
18703
    max-width: 80% !important;
18704
  }
16848 stevensc 18705
 
16825 efrain 18706
  .mn-wd-md-80p-f {
18707
    min-width: 80% !important;
18708
  }
16848 stevensc 18709
 
16825 efrain 18710
  .wd-md-85 {
18711
    width: 85px;
18712
  }
16848 stevensc 18713
 
16825 efrain 18714
  .wd-md-85p {
18715
    width: 85%;
18716
  }
16848 stevensc 18717
 
16825 efrain 18718
  .mx-wd-md-85p {
18719
    max-width: 85%;
18720
  }
16848 stevensc 18721
 
16825 efrain 18722
  .mn-wd-md-85p {
18723
    min-width: 85%;
18724
  }
16848 stevensc 18725
 
16825 efrain 18726
  .wd-md-85-f {
18727
    width: 85px !important;
18728
  }
16848 stevensc 18729
 
16825 efrain 18730
  .wd-md-85p-f {
18731
    width: 85% !important;
18732
  }
16848 stevensc 18733
 
16825 efrain 18734
  .mx-wd-md-85p-f {
18735
    max-width: 85% !important;
18736
  }
16848 stevensc 18737
 
16825 efrain 18738
  .mn-wd-md-85p-f {
18739
    min-width: 85% !important;
18740
  }
16848 stevensc 18741
 
16825 efrain 18742
  .wd-md-90 {
18743
    width: 90px;
18744
  }
16848 stevensc 18745
 
16825 efrain 18746
  .wd-md-90p {
18747
    width: 90%;
18748
  }
16848 stevensc 18749
 
16825 efrain 18750
  .mx-wd-md-90p {
18751
    max-width: 90%;
18752
  }
16848 stevensc 18753
 
16825 efrain 18754
  .mn-wd-md-90p {
18755
    min-width: 90%;
18756
  }
16848 stevensc 18757
 
16825 efrain 18758
  .wd-md-90-f {
18759
    width: 90px !important;
18760
  }
16848 stevensc 18761
 
16825 efrain 18762
  .wd-md-90p-f {
18763
    width: 90% !important;
18764
  }
16848 stevensc 18765
 
16825 efrain 18766
  .mx-wd-md-90p-f {
18767
    max-width: 90% !important;
18768
  }
16848 stevensc 18769
 
16825 efrain 18770
  .mn-wd-md-90p-f {
18771
    min-width: 90% !important;
18772
  }
16848 stevensc 18773
 
16825 efrain 18774
  .wd-md-95 {
18775
    width: 95px;
18776
  }
16848 stevensc 18777
 
16825 efrain 18778
  .wd-md-95p {
18779
    width: 95%;
18780
  }
16848 stevensc 18781
 
16825 efrain 18782
  .mx-wd-md-95p {
18783
    max-width: 95%;
18784
  }
16848 stevensc 18785
 
16825 efrain 18786
  .mn-wd-md-95p {
18787
    min-width: 95%;
18788
  }
16848 stevensc 18789
 
16825 efrain 18790
  .wd-md-95-f {
18791
    width: 95px !important;
18792
  }
16848 stevensc 18793
 
16825 efrain 18794
  .wd-md-95p-f {
18795
    width: 95% !important;
18796
  }
16848 stevensc 18797
 
16825 efrain 18798
  .mx-wd-md-95p-f {
18799
    max-width: 95% !important;
18800
  }
16848 stevensc 18801
 
16825 efrain 18802
  .mn-wd-md-95p-f {
18803
    min-width: 95% !important;
18804
  }
16848 stevensc 18805
 
16825 efrain 18806
  .wd-md-100 {
18807
    width: 100px;
18808
  }
16848 stevensc 18809
 
16825 efrain 18810
  .wd-md-100p {
18811
    width: 100%;
18812
  }
16848 stevensc 18813
 
16825 efrain 18814
  .mx-wd-md-100p {
18815
    max-width: 100%;
18816
  }
16848 stevensc 18817
 
16825 efrain 18818
  .mn-wd-md-100p {
18819
    min-width: 100%;
18820
  }
16848 stevensc 18821
 
16825 efrain 18822
  .wd-md-100-f {
18823
    width: 100px !important;
18824
  }
16848 stevensc 18825
 
16825 efrain 18826
  .wd-md-100p-f {
18827
    width: 100% !important;
18828
  }
16848 stevensc 18829
 
16825 efrain 18830
  .mx-wd-md-100p-f {
18831
    max-width: 100% !important;
18832
  }
16848 stevensc 18833
 
16825 efrain 18834
  .mn-wd-md-100p-f {
18835
    min-width: 100% !important;
18836
  }
16848 stevensc 18837
 
16825 efrain 18838
  .wd-md-150 {
18839
    width: 150px;
18840
  }
16848 stevensc 18841
 
16825 efrain 18842
  .wd-md-150p {
18843
    width: 150%;
18844
  }
16848 stevensc 18845
 
16825 efrain 18846
  .mx-wd-md-150p {
18847
    max-width: 150%;
18848
  }
16848 stevensc 18849
 
16825 efrain 18850
  .mn-wd-md-150p {
18851
    min-width: 150%;
18852
  }
16848 stevensc 18853
 
16825 efrain 18854
  .wd-md-150-f {
18855
    width: 150px !important;
18856
  }
16848 stevensc 18857
 
16825 efrain 18858
  .wd-md-150p-f {
18859
    width: 150% !important;
18860
  }
16848 stevensc 18861
 
16825 efrain 18862
  .mx-wd-md-150p-f {
18863
    max-width: 150% !important;
18864
  }
16848 stevensc 18865
 
16825 efrain 18866
  .mn-wd-md-150p-f {
18867
    min-width: 150% !important;
18868
  }
16848 stevensc 18869
 
16825 efrain 18870
  .wd-md-200 {
18871
    width: 200px;
18872
  }
16848 stevensc 18873
 
16825 efrain 18874
  .wd-md-200p {
18875
    width: 200%;
18876
  }
16848 stevensc 18877
 
16825 efrain 18878
  .mx-wd-md-200p {
18879
    max-width: 200%;
18880
  }
16848 stevensc 18881
 
16825 efrain 18882
  .mn-wd-md-200p {
18883
    min-width: 200%;
18884
  }
16848 stevensc 18885
 
16825 efrain 18886
  .wd-md-200-f {
18887
    width: 200px !important;
18888
  }
16848 stevensc 18889
 
16825 efrain 18890
  .wd-md-200p-f {
18891
    width: 200% !important;
18892
  }
16848 stevensc 18893
 
16825 efrain 18894
  .mx-wd-md-200p-f {
18895
    max-width: 200% !important;
18896
  }
16848 stevensc 18897
 
16825 efrain 18898
  .mn-wd-md-200p-f {
18899
    min-width: 200% !important;
18900
  }
16848 stevensc 18901
 
16825 efrain 18902
  .wd-md-250 {
18903
    width: 250px;
18904
  }
16848 stevensc 18905
 
16825 efrain 18906
  .wd-md-250p {
18907
    width: 250%;
18908
  }
16848 stevensc 18909
 
16825 efrain 18910
  .mx-wd-md-250p {
18911
    max-width: 250%;
18912
  }
16848 stevensc 18913
 
16825 efrain 18914
  .mn-wd-md-250p {
18915
    min-width: 250%;
18916
  }
16848 stevensc 18917
 
16825 efrain 18918
  .wd-md-250-f {
18919
    width: 250px !important;
18920
  }
16848 stevensc 18921
 
16825 efrain 18922
  .wd-md-250p-f {
18923
    width: 250% !important;
18924
  }
16848 stevensc 18925
 
16825 efrain 18926
  .mx-wd-md-250p-f {
18927
    max-width: 250% !important;
18928
  }
16848 stevensc 18929
 
16825 efrain 18930
  .mn-wd-md-250p-f {
18931
    min-width: 250% !important;
18932
  }
16848 stevensc 18933
 
16825 efrain 18934
  .wd-md-300 {
18935
    width: 300px;
18936
  }
16848 stevensc 18937
 
16825 efrain 18938
  .wd-md-300p {
18939
    width: 300%;
18940
  }
16848 stevensc 18941
 
16825 efrain 18942
  .mx-wd-md-300p {
18943
    max-width: 300%;
18944
  }
16848 stevensc 18945
 
16825 efrain 18946
  .mn-wd-md-300p {
18947
    min-width: 300%;
18948
  }
16848 stevensc 18949
 
16825 efrain 18950
  .wd-md-300-f {
18951
    width: 300px !important;
18952
  }
16848 stevensc 18953
 
16825 efrain 18954
  .wd-md-300p-f {
18955
    width: 300% !important;
18956
  }
16848 stevensc 18957
 
16825 efrain 18958
  .mx-wd-md-300p-f {
18959
    max-width: 300% !important;
18960
  }
16848 stevensc 18961
 
16825 efrain 18962
  .mn-wd-md-300p-f {
18963
    min-width: 300% !important;
18964
  }
16848 stevensc 18965
 
16825 efrain 18966
  .wd-md-350 {
18967
    width: 350px;
18968
  }
16848 stevensc 18969
 
16825 efrain 18970
  .wd-md-350p {
18971
    width: 350%;
18972
  }
16848 stevensc 18973
 
16825 efrain 18974
  .mx-wd-md-350p {
18975
    max-width: 350%;
18976
  }
16848 stevensc 18977
 
16825 efrain 18978
  .mn-wd-md-350p {
18979
    min-width: 350%;
18980
  }
16848 stevensc 18981
 
16825 efrain 18982
  .wd-md-350-f {
18983
    width: 350px !important;
18984
  }
16848 stevensc 18985
 
16825 efrain 18986
  .wd-md-350p-f {
18987
    width: 350% !important;
18988
  }
16848 stevensc 18989
 
16825 efrain 18990
  .mx-wd-md-350p-f {
18991
    max-width: 350% !important;
18992
  }
16848 stevensc 18993
 
16825 efrain 18994
  .mn-wd-md-350p-f {
18995
    min-width: 350% !important;
18996
  }
16848 stevensc 18997
 
16825 efrain 18998
  .wd-md-400 {
18999
    width: 400px;
19000
  }
16848 stevensc 19001
 
16825 efrain 19002
  .wd-md-400p {
19003
    width: 400%;
19004
  }
16848 stevensc 19005
 
16825 efrain 19006
  .mx-wd-md-400p {
19007
    max-width: 400%;
19008
  }
16848 stevensc 19009
 
16825 efrain 19010
  .mn-wd-md-400p {
19011
    min-width: 400%;
19012
  }
16848 stevensc 19013
 
16825 efrain 19014
  .wd-md-400-f {
19015
    width: 400px !important;
19016
  }
16848 stevensc 19017
 
16825 efrain 19018
  .wd-md-400p-f {
19019
    width: 400% !important;
19020
  }
16848 stevensc 19021
 
16825 efrain 19022
  .mx-wd-md-400p-f {
19023
    max-width: 400% !important;
19024
  }
16848 stevensc 19025
 
16825 efrain 19026
  .mn-wd-md-400p-f {
19027
    min-width: 400% !important;
19028
  }
16848 stevensc 19029
 
16825 efrain 19030
  .wd-md-450 {
19031
    width: 450px;
19032
  }
16848 stevensc 19033
 
16825 efrain 19034
  .wd-md-450p {
19035
    width: 450%;
19036
  }
16848 stevensc 19037
 
16825 efrain 19038
  .mx-wd-md-450p {
19039
    max-width: 450%;
19040
  }
16848 stevensc 19041
 
16825 efrain 19042
  .mn-wd-md-450p {
19043
    min-width: 450%;
19044
  }
16848 stevensc 19045
 
16825 efrain 19046
  .wd-md-450-f {
19047
    width: 450px !important;
19048
  }
16848 stevensc 19049
 
16825 efrain 19050
  .wd-md-450p-f {
19051
    width: 450% !important;
19052
  }
16848 stevensc 19053
 
16825 efrain 19054
  .mx-wd-md-450p-f {
19055
    max-width: 450% !important;
19056
  }
16848 stevensc 19057
 
16825 efrain 19058
  .mn-wd-md-450p-f {
19059
    min-width: 450% !important;
19060
  }
16848 stevensc 19061
 
16825 efrain 19062
  .wd-md-500 {
19063
    width: 500px;
19064
  }
16848 stevensc 19065
 
16825 efrain 19066
  .wd-md-500p {
19067
    width: 500%;
19068
  }
16848 stevensc 19069
 
16825 efrain 19070
  .mx-wd-md-500p {
19071
    max-width: 500%;
19072
  }
16848 stevensc 19073
 
16825 efrain 19074
  .mn-wd-md-500p {
19075
    min-width: 500%;
19076
  }
16848 stevensc 19077
 
16825 efrain 19078
  .wd-md-500-f {
19079
    width: 500px !important;
19080
  }
16848 stevensc 19081
 
16825 efrain 19082
  .wd-md-500p-f {
19083
    width: 500% !important;
19084
  }
16848 stevensc 19085
 
16825 efrain 19086
  .mx-wd-md-500p-f {
19087
    max-width: 500% !important;
19088
  }
16848 stevensc 19089
 
16825 efrain 19090
  .mn-wd-md-500p-f {
19091
    min-width: 500% !important;
19092
  }
16848 stevensc 19093
 
16825 efrain 19094
  .wd-md-550 {
19095
    width: 550px;
19096
  }
16848 stevensc 19097
 
16825 efrain 19098
  .wd-md-550p {
19099
    width: 550%;
19100
  }
16848 stevensc 19101
 
16825 efrain 19102
  .mx-wd-md-550p {
19103
    max-width: 550%;
19104
  }
16848 stevensc 19105
 
16825 efrain 19106
  .mn-wd-md-550p {
19107
    min-width: 550%;
19108
  }
16848 stevensc 19109
 
16825 efrain 19110
  .wd-md-550-f {
19111
    width: 550px !important;
19112
  }
16848 stevensc 19113
 
16825 efrain 19114
  .wd-md-550p-f {
19115
    width: 550% !important;
19116
  }
16848 stevensc 19117
 
16825 efrain 19118
  .mx-wd-md-550p-f {
19119
    max-width: 550% !important;
19120
  }
16848 stevensc 19121
 
16825 efrain 19122
  .mn-wd-md-550p-f {
19123
    min-width: 550% !important;
19124
  }
16848 stevensc 19125
 
16825 efrain 19126
  .wd-md-600 {
19127
    width: 600px;
19128
  }
16848 stevensc 19129
 
16825 efrain 19130
  .wd-md-600p {
19131
    width: 600%;
19132
  }
16848 stevensc 19133
 
16825 efrain 19134
  .mx-wd-md-600p {
19135
    max-width: 600%;
19136
  }
16848 stevensc 19137
 
16825 efrain 19138
  .mn-wd-md-600p {
19139
    min-width: 600%;
19140
  }
16848 stevensc 19141
 
16825 efrain 19142
  .wd-md-600-f {
19143
    width: 600px !important;
19144
  }
16848 stevensc 19145
 
16825 efrain 19146
  .wd-md-600p-f {
19147
    width: 600% !important;
19148
  }
16848 stevensc 19149
 
16825 efrain 19150
  .mx-wd-md-600p-f {
19151
    max-width: 600% !important;
19152
  }
16848 stevensc 19153
 
16825 efrain 19154
  .mn-wd-md-600p-f {
19155
    min-width: 600% !important;
19156
  }
16848 stevensc 19157
 
16825 efrain 19158
  .wd-md-650 {
19159
    width: 650px;
19160
  }
16848 stevensc 19161
 
16825 efrain 19162
  .wd-md-650p {
19163
    width: 650%;
19164
  }
16848 stevensc 19165
 
16825 efrain 19166
  .mx-wd-md-650p {
19167
    max-width: 650%;
19168
  }
16848 stevensc 19169
 
16825 efrain 19170
  .mn-wd-md-650p {
19171
    min-width: 650%;
19172
  }
16848 stevensc 19173
 
16825 efrain 19174
  .wd-md-650-f {
19175
    width: 650px !important;
19176
  }
16848 stevensc 19177
 
16825 efrain 19178
  .wd-md-650p-f {
19179
    width: 650% !important;
19180
  }
16848 stevensc 19181
 
16825 efrain 19182
  .mx-wd-md-650p-f {
19183
    max-width: 650% !important;
19184
  }
16848 stevensc 19185
 
16825 efrain 19186
  .mn-wd-md-650p-f {
19187
    min-width: 650% !important;
19188
  }
16848 stevensc 19189
 
16825 efrain 19190
  .wd-md-700 {
19191
    width: 700px;
19192
  }
16848 stevensc 19193
 
16825 efrain 19194
  .wd-md-700p {
19195
    width: 700%;
19196
  }
16848 stevensc 19197
 
16825 efrain 19198
  .mx-wd-md-700p {
19199
    max-width: 700%;
19200
  }
16848 stevensc 19201
 
16825 efrain 19202
  .mn-wd-md-700p {
19203
    min-width: 700%;
19204
  }
16848 stevensc 19205
 
16825 efrain 19206
  .wd-md-700-f {
19207
    width: 700px !important;
19208
  }
16848 stevensc 19209
 
16825 efrain 19210
  .wd-md-700p-f {
19211
    width: 700% !important;
19212
  }
16848 stevensc 19213
 
16825 efrain 19214
  .mx-wd-md-700p-f {
19215
    max-width: 700% !important;
19216
  }
16848 stevensc 19217
 
16825 efrain 19218
  .mn-wd-md-700p-f {
19219
    min-width: 700% !important;
19220
  }
16848 stevensc 19221
 
16825 efrain 19222
  .wd-md-750 {
19223
    width: 750px;
19224
  }
16848 stevensc 19225
 
16825 efrain 19226
  .wd-md-750p {
19227
    width: 750%;
19228
  }
16848 stevensc 19229
 
16825 efrain 19230
  .mx-wd-md-750p {
19231
    max-width: 750%;
19232
  }
16848 stevensc 19233
 
16825 efrain 19234
  .mn-wd-md-750p {
19235
    min-width: 750%;
19236
  }
16848 stevensc 19237
 
16825 efrain 19238
  .wd-md-750-f {
19239
    width: 750px !important;
19240
  }
16848 stevensc 19241
 
16825 efrain 19242
  .wd-md-750p-f {
19243
    width: 750% !important;
19244
  }
16848 stevensc 19245
 
16825 efrain 19246
  .mx-wd-md-750p-f {
19247
    max-width: 750% !important;
19248
  }
16848 stevensc 19249
 
16825 efrain 19250
  .mn-wd-md-750p-f {
19251
    min-width: 750% !important;
19252
  }
16848 stevensc 19253
 
16825 efrain 19254
  .wd-md-800 {
19255
    width: 800px;
19256
  }
16848 stevensc 19257
 
16825 efrain 19258
  .wd-md-800p {
19259
    width: 800%;
19260
  }
16848 stevensc 19261
 
16825 efrain 19262
  .mx-wd-md-800p {
19263
    max-width: 800%;
19264
  }
16848 stevensc 19265
 
16825 efrain 19266
  .mn-wd-md-800p {
19267
    min-width: 800%;
19268
  }
16848 stevensc 19269
 
16825 efrain 19270
  .wd-md-800-f {
19271
    width: 800px !important;
19272
  }
16848 stevensc 19273
 
16825 efrain 19274
  .wd-md-800p-f {
19275
    width: 800% !important;
19276
  }
16848 stevensc 19277
 
16825 efrain 19278
  .mx-wd-md-800p-f {
19279
    max-width: 800% !important;
19280
  }
16848 stevensc 19281
 
16825 efrain 19282
  .mn-wd-md-800p-f {
19283
    min-width: 800% !important;
19284
  }
16848 stevensc 19285
 
16825 efrain 19286
  .wd-md-850 {
19287
    width: 850px;
19288
  }
16848 stevensc 19289
 
16825 efrain 19290
  .wd-md-850p {
19291
    width: 850%;
19292
  }
16848 stevensc 19293
 
16825 efrain 19294
  .mx-wd-md-850p {
19295
    max-width: 850%;
19296
  }
16848 stevensc 19297
 
16825 efrain 19298
  .mn-wd-md-850p {
19299
    min-width: 850%;
19300
  }
16848 stevensc 19301
 
16825 efrain 19302
  .wd-md-850-f {
19303
    width: 850px !important;
19304
  }
16848 stevensc 19305
 
16825 efrain 19306
  .wd-md-850p-f {
19307
    width: 850% !important;
19308
  }
16848 stevensc 19309
 
16825 efrain 19310
  .mx-wd-md-850p-f {
19311
    max-width: 850% !important;
19312
  }
16848 stevensc 19313
 
16825 efrain 19314
  .mn-wd-md-850p-f {
19315
    min-width: 850% !important;
19316
  }
16848 stevensc 19317
 
16825 efrain 19318
  .wd-md-900 {
19319
    width: 900px;
19320
  }
16848 stevensc 19321
 
16825 efrain 19322
  .wd-md-900p {
19323
    width: 900%;
19324
  }
16848 stevensc 19325
 
16825 efrain 19326
  .mx-wd-md-900p {
19327
    max-width: 900%;
19328
  }
16848 stevensc 19329
 
16825 efrain 19330
  .mn-wd-md-900p {
19331
    min-width: 900%;
19332
  }
16848 stevensc 19333
 
16825 efrain 19334
  .wd-md-900-f {
19335
    width: 900px !important;
19336
  }
16848 stevensc 19337
 
16825 efrain 19338
  .wd-md-900p-f {
19339
    width: 900% !important;
19340
  }
16848 stevensc 19341
 
16825 efrain 19342
  .mx-wd-md-900p-f {
19343
    max-width: 900% !important;
19344
  }
16848 stevensc 19345
 
16825 efrain 19346
  .mn-wd-md-900p-f {
19347
    min-width: 900% !important;
19348
  }
16848 stevensc 19349
 
16825 efrain 19350
  .wd-md-950 {
19351
    width: 950px;
19352
  }
16848 stevensc 19353
 
16825 efrain 19354
  .wd-md-950p {
19355
    width: 950%;
19356
  }
16848 stevensc 19357
 
16825 efrain 19358
  .mx-wd-md-950p {
19359
    max-width: 950%;
19360
  }
16848 stevensc 19361
 
16825 efrain 19362
  .mn-wd-md-950p {
19363
    min-width: 950%;
19364
  }
16848 stevensc 19365
 
16825 efrain 19366
  .wd-md-950-f {
19367
    width: 950px !important;
19368
  }
16848 stevensc 19369
 
16825 efrain 19370
  .wd-md-950p-f {
19371
    width: 950% !important;
19372
  }
16848 stevensc 19373
 
16825 efrain 19374
  .mx-wd-md-950p-f {
19375
    max-width: 950% !important;
19376
  }
16848 stevensc 19377
 
16825 efrain 19378
  .mn-wd-md-950p-f {
19379
    min-width: 950% !important;
19380
  }
16848 stevensc 19381
 
16825 efrain 19382
  .wd-md-1000 {
19383
    width: 1000px;
19384
  }
16848 stevensc 19385
 
16825 efrain 19386
  .wd-md-1000p {
19387
    width: 1000%;
19388
  }
16848 stevensc 19389
 
16825 efrain 19390
  .mx-wd-md-1000p {
19391
    max-width: 1000%;
19392
  }
16848 stevensc 19393
 
16825 efrain 19394
  .mn-wd-md-1000p {
19395
    min-width: 1000%;
19396
  }
16848 stevensc 19397
 
16825 efrain 19398
  .wd-md-1000-f {
19399
    width: 1000px !important;
19400
  }
16848 stevensc 19401
 
16825 efrain 19402
  .wd-md-1000p-f {
19403
    width: 1000% !important;
19404
  }
16848 stevensc 19405
 
16825 efrain 19406
  .mx-wd-md-1000p-f {
19407
    max-width: 1000% !important;
19408
  }
16848 stevensc 19409
 
16825 efrain 19410
  .mn-wd-md-1000p-f {
19411
    min-width: 1000% !important;
19412
  }
16848 stevensc 19413
 
16825 efrain 19414
  .wd-md-auto {
19415
    width: auto;
19416
  }
16848 stevensc 19417
 
16825 efrain 19418
  .wd-md-auto-f {
19419
    width: auto !important;
19420
  }
16848 stevensc 19421
 
16825 efrain 19422
  .wd-md-120 {
19423
    width: 120px;
19424
  }
19425
}
16848 stevensc 19426
 
16825 efrain 19427
@media (min-width: 992px) {
19428
  .wd-lg-5 {
19429
    width: 5px;
19430
  }
16848 stevensc 19431
 
16825 efrain 19432
  .wd-lg-5p {
19433
    width: 5%;
19434
  }
16848 stevensc 19435
 
16825 efrain 19436
  .mx-wd-lg-5p {
19437
    max-width: 5%;
19438
  }
16848 stevensc 19439
 
16825 efrain 19440
  .mn-wd-lg-5p {
19441
    min-width: 5%;
19442
  }
16848 stevensc 19443
 
16825 efrain 19444
  .wd-lg-5-f {
19445
    width: 5px !important;
19446
  }
16848 stevensc 19447
 
16825 efrain 19448
  .wd-lg-5p-f {
19449
    width: 5% !important;
19450
  }
16848 stevensc 19451
 
16825 efrain 19452
  .mx-wd-lg-5p-f {
19453
    max-width: 5% !important;
19454
  }
16848 stevensc 19455
 
16825 efrain 19456
  .mn-wd-lg-5p-f {
19457
    min-width: 5% !important;
19458
  }
16848 stevensc 19459
 
16825 efrain 19460
  .wd-lg-10 {
19461
    width: 10px;
19462
  }
16848 stevensc 19463
 
16825 efrain 19464
  .wd-lg-10p {
19465
    width: 10%;
19466
  }
16848 stevensc 19467
 
16825 efrain 19468
  .mx-wd-lg-10p {
19469
    max-width: 10%;
19470
  }
16848 stevensc 19471
 
16825 efrain 19472
  .mn-wd-lg-10p {
19473
    min-width: 10%;
19474
  }
16848 stevensc 19475
 
16825 efrain 19476
  .wd-lg-10-f {
19477
    width: 10px !important;
19478
  }
16848 stevensc 19479
 
16825 efrain 19480
  .wd-lg-10p-f {
19481
    width: 10% !important;
19482
  }
16848 stevensc 19483
 
16825 efrain 19484
  .mx-wd-lg-10p-f {
19485
    max-width: 10% !important;
19486
  }
16848 stevensc 19487
 
16825 efrain 19488
  .mn-wd-lg-10p-f {
19489
    min-width: 10% !important;
19490
  }
16848 stevensc 19491
 
16825 efrain 19492
  .wd-lg-15 {
19493
    width: 15px;
19494
  }
16848 stevensc 19495
 
16825 efrain 19496
  .wd-lg-15p {
19497
    width: 15%;
19498
  }
16848 stevensc 19499
 
16825 efrain 19500
  .mx-wd-lg-15p {
19501
    max-width: 15%;
19502
  }
16848 stevensc 19503
 
16825 efrain 19504
  .mn-wd-lg-15p {
19505
    min-width: 15%;
19506
  }
16848 stevensc 19507
 
16825 efrain 19508
  .wd-lg-15-f {
19509
    width: 15px !important;
19510
  }
16848 stevensc 19511
 
16825 efrain 19512
  .wd-lg-15p-f {
19513
    width: 15% !important;
19514
  }
16848 stevensc 19515
 
16825 efrain 19516
  .mx-wd-lg-15p-f {
19517
    max-width: 15% !important;
19518
  }
16848 stevensc 19519
 
16825 efrain 19520
  .mn-wd-lg-15p-f {
19521
    min-width: 15% !important;
19522
  }
16848 stevensc 19523
 
16825 efrain 19524
  .wd-lg-20 {
19525
    width: 20px;
19526
  }
16848 stevensc 19527
 
16825 efrain 19528
  .wd-lg-20p {
19529
    width: 20%;
19530
  }
16848 stevensc 19531
 
16825 efrain 19532
  .mx-wd-lg-20p {
19533
    max-width: 20%;
19534
  }
16848 stevensc 19535
 
16825 efrain 19536
  .mn-wd-lg-20p {
19537
    min-width: 20%;
19538
  }
16848 stevensc 19539
 
16825 efrain 19540
  .wd-lg-20-f {
19541
    width: 20px !important;
19542
  }
16848 stevensc 19543
 
16825 efrain 19544
  .wd-lg-20p-f {
19545
    width: 20% !important;
19546
  }
16848 stevensc 19547
 
16825 efrain 19548
  .mx-wd-lg-20p-f {
19549
    max-width: 20% !important;
19550
  }
16848 stevensc 19551
 
16825 efrain 19552
  .mn-wd-lg-20p-f {
19553
    min-width: 20% !important;
19554
  }
16848 stevensc 19555
 
16825 efrain 19556
  .wd-lg-25 {
19557
    width: 25px;
19558
  }
16848 stevensc 19559
 
16825 efrain 19560
  .wd-lg-25p {
19561
    width: 25%;
19562
  }
16848 stevensc 19563
 
16825 efrain 19564
  .mx-wd-lg-25p {
19565
    max-width: 25%;
19566
  }
16848 stevensc 19567
 
16825 efrain 19568
  .mn-wd-lg-25p {
19569
    min-width: 25%;
19570
  }
16848 stevensc 19571
 
16825 efrain 19572
  .wd-lg-25-f {
19573
    width: 25px !important;
19574
  }
16848 stevensc 19575
 
16825 efrain 19576
  .wd-lg-25p-f {
19577
    width: 25% !important;
19578
  }
16848 stevensc 19579
 
16825 efrain 19580
  .mx-wd-lg-25p-f {
19581
    max-width: 25% !important;
19582
  }
16848 stevensc 19583
 
16825 efrain 19584
  .mn-wd-lg-25p-f {
19585
    min-width: 25% !important;
19586
  }
16848 stevensc 19587
 
16825 efrain 19588
  .wd-lg-30 {
19589
    width: 30px;
19590
  }
16848 stevensc 19591
 
16825 efrain 19592
  .wd-lg-30p {
19593
    width: 30%;
19594
  }
16848 stevensc 19595
 
16825 efrain 19596
  .mx-wd-lg-30p {
19597
    max-width: 30%;
19598
  }
16848 stevensc 19599
 
16825 efrain 19600
  .mn-wd-lg-30p {
19601
    min-width: 30%;
19602
  }
16848 stevensc 19603
 
16825 efrain 19604
  .wd-lg-30-f {
19605
    width: 30px !important;
19606
  }
16848 stevensc 19607
 
16825 efrain 19608
  .wd-lg-30p-f {
19609
    width: 30% !important;
19610
  }
16848 stevensc 19611
 
16825 efrain 19612
  .mx-wd-lg-30p-f {
19613
    max-width: 30% !important;
19614
  }
16848 stevensc 19615
 
16825 efrain 19616
  .mn-wd-lg-30p-f {
19617
    min-width: 30% !important;
19618
  }
16848 stevensc 19619
 
16825 efrain 19620
  .wd-lg-35 {
19621
    width: 35px;
19622
  }
16848 stevensc 19623
 
16825 efrain 19624
  .wd-lg-35p {
19625
    width: 35%;
19626
  }
16848 stevensc 19627
 
16825 efrain 19628
  .mx-wd-lg-35p {
19629
    max-width: 35%;
19630
  }
16848 stevensc 19631
 
16825 efrain 19632
  .mn-wd-lg-35p {
19633
    min-width: 35%;
19634
  }
16848 stevensc 19635
 
16825 efrain 19636
  .wd-lg-35-f {
19637
    width: 35px !important;
19638
  }
16848 stevensc 19639
 
16825 efrain 19640
  .wd-lg-35p-f {
19641
    width: 35% !important;
19642
  }
16848 stevensc 19643
 
16825 efrain 19644
  .mx-wd-lg-35p-f {
19645
    max-width: 35% !important;
19646
  }
16848 stevensc 19647
 
16825 efrain 19648
  .mn-wd-lg-35p-f {
19649
    min-width: 35% !important;
19650
  }
16848 stevensc 19651
 
16825 efrain 19652
  .wd-lg-40 {
19653
    width: 40px;
19654
  }
16848 stevensc 19655
 
16825 efrain 19656
  .wd-lg-40p {
19657
    width: 40%;
19658
  }
16848 stevensc 19659
 
16825 efrain 19660
  .mx-wd-lg-40p {
19661
    max-width: 40%;
19662
  }
16848 stevensc 19663
 
16825 efrain 19664
  .mn-wd-lg-40p {
19665
    min-width: 40%;
19666
  }
16848 stevensc 19667
 
16825 efrain 19668
  .wd-lg-40-f {
19669
    width: 40px !important;
19670
  }
16848 stevensc 19671
 
16825 efrain 19672
  .wd-lg-40p-f {
19673
    width: 40% !important;
19674
  }
16848 stevensc 19675
 
16825 efrain 19676
  .mx-wd-lg-40p-f {
19677
    max-width: 40% !important;
19678
  }
16848 stevensc 19679
 
16825 efrain 19680
  .mn-wd-lg-40p-f {
19681
    min-width: 40% !important;
19682
  }
16848 stevensc 19683
 
16825 efrain 19684
  .wd-lg-45 {
19685
    width: 45px;
19686
  }
16848 stevensc 19687
 
16825 efrain 19688
  .wd-lg-45p {
19689
    width: 45%;
19690
  }
16848 stevensc 19691
 
16825 efrain 19692
  .mx-wd-lg-45p {
19693
    max-width: 45%;
19694
  }
16848 stevensc 19695
 
16825 efrain 19696
  .mn-wd-lg-45p {
19697
    min-width: 45%;
19698
  }
16848 stevensc 19699
 
16825 efrain 19700
  .wd-lg-45-f {
19701
    width: 45px !important;
19702
  }
16848 stevensc 19703
 
16825 efrain 19704
  .wd-lg-45p-f {
19705
    width: 45% !important;
19706
  }
16848 stevensc 19707
 
16825 efrain 19708
  .mx-wd-lg-45p-f {
19709
    max-width: 45% !important;
19710
  }
16848 stevensc 19711
 
16825 efrain 19712
  .mn-wd-lg-45p-f {
19713
    min-width: 45% !important;
19714
  }
16848 stevensc 19715
 
16825 efrain 19716
  .wd-lg-50 {
19717
    width: 50px;
19718
  }
16848 stevensc 19719
 
16825 efrain 19720
  .wd-lg-50p {
19721
    width: 50%;
19722
  }
16848 stevensc 19723
 
16825 efrain 19724
  .mx-wd-lg-50p {
19725
    max-width: 50%;
19726
  }
16848 stevensc 19727
 
16825 efrain 19728
  .mn-wd-lg-50p {
19729
    min-width: 50%;
19730
  }
16848 stevensc 19731
 
16825 efrain 19732
  .wd-lg-50-f {
19733
    width: 50px !important;
19734
  }
16848 stevensc 19735
 
16825 efrain 19736
  .wd-lg-50p-f {
19737
    width: 50% !important;
19738
  }
16848 stevensc 19739
 
16825 efrain 19740
  .mx-wd-lg-50p-f {
19741
    max-width: 50% !important;
19742
  }
16848 stevensc 19743
 
16825 efrain 19744
  .mn-wd-lg-50p-f {
19745
    min-width: 50% !important;
19746
  }
16848 stevensc 19747
 
16825 efrain 19748
  .wd-lg-55 {
19749
    width: 55px;
19750
  }
16848 stevensc 19751
 
16825 efrain 19752
  .wd-lg-55p {
19753
    width: 55%;
19754
  }
16848 stevensc 19755
 
16825 efrain 19756
  .mx-wd-lg-55p {
19757
    max-width: 55%;
19758
  }
16848 stevensc 19759
 
16825 efrain 19760
  .mn-wd-lg-55p {
19761
    min-width: 55%;
19762
  }
16848 stevensc 19763
 
16825 efrain 19764
  .wd-lg-55-f {
19765
    width: 55px !important;
19766
  }
16848 stevensc 19767
 
16825 efrain 19768
  .wd-lg-55p-f {
19769
    width: 55% !important;
19770
  }
16848 stevensc 19771
 
16825 efrain 19772
  .mx-wd-lg-55p-f {
19773
    max-width: 55% !important;
19774
  }
16848 stevensc 19775
 
16825 efrain 19776
  .mn-wd-lg-55p-f {
19777
    min-width: 55% !important;
19778
  }
16848 stevensc 19779
 
16825 efrain 19780
  .wd-lg-60 {
19781
    width: 60px;
19782
  }
16848 stevensc 19783
 
16825 efrain 19784
  .wd-lg-60p {
19785
    width: 60%;
19786
  }
16848 stevensc 19787
 
16825 efrain 19788
  .mx-wd-lg-60p {
19789
    max-width: 60%;
19790
  }
16848 stevensc 19791
 
16825 efrain 19792
  .mn-wd-lg-60p {
19793
    min-width: 60%;
19794
  }
16848 stevensc 19795
 
16825 efrain 19796
  .wd-lg-60-f {
19797
    width: 60px !important;
19798
  }
16848 stevensc 19799
 
16825 efrain 19800
  .wd-lg-60p-f {
19801
    width: 60% !important;
19802
  }
16848 stevensc 19803
 
16825 efrain 19804
  .mx-wd-lg-60p-f {
19805
    max-width: 60% !important;
19806
  }
16848 stevensc 19807
 
16825 efrain 19808
  .mn-wd-lg-60p-f {
19809
    min-width: 60% !important;
19810
  }
16848 stevensc 19811
 
16825 efrain 19812
  .wd-lg-65 {
19813
    width: 65px;
19814
  }
16848 stevensc 19815
 
16825 efrain 19816
  .wd-lg-65p {
19817
    width: 65%;
19818
  }
16848 stevensc 19819
 
16825 efrain 19820
  .mx-wd-lg-65p {
19821
    max-width: 65%;
19822
  }
16848 stevensc 19823
 
16825 efrain 19824
  .mn-wd-lg-65p {
19825
    min-width: 65%;
19826
  }
16848 stevensc 19827
 
16825 efrain 19828
  .wd-lg-65-f {
19829
    width: 65px !important;
19830
  }
16848 stevensc 19831
 
16825 efrain 19832
  .wd-lg-65p-f {
19833
    width: 65% !important;
19834
  }
16848 stevensc 19835
 
16825 efrain 19836
  .mx-wd-lg-65p-f {
19837
    max-width: 65% !important;
19838
  }
16848 stevensc 19839
 
16825 efrain 19840
  .mn-wd-lg-65p-f {
19841
    min-width: 65% !important;
19842
  }
16848 stevensc 19843
 
16825 efrain 19844
  .wd-lg-70 {
19845
    width: 70px;
19846
  }
16848 stevensc 19847
 
16825 efrain 19848
  .wd-lg-70p {
19849
    width: 70%;
19850
  }
16848 stevensc 19851
 
16825 efrain 19852
  .mx-wd-lg-70p {
19853
    max-width: 70%;
19854
  }
16848 stevensc 19855
 
16825 efrain 19856
  .mn-wd-lg-70p {
19857
    min-width: 70%;
19858
  }
16848 stevensc 19859
 
16825 efrain 19860
  .wd-lg-70-f {
19861
    width: 70px !important;
19862
  }
16848 stevensc 19863
 
16825 efrain 19864
  .wd-lg-70p-f {
19865
    width: 70% !important;
19866
  }
16848 stevensc 19867
 
16825 efrain 19868
  .mx-wd-lg-70p-f {
19869
    max-width: 70% !important;
19870
  }
16848 stevensc 19871
 
16825 efrain 19872
  .mn-wd-lg-70p-f {
19873
    min-width: 70% !important;
19874
  }
16848 stevensc 19875
 
16825 efrain 19876
  .wd-lg-75 {
19877
    width: 75px;
19878
  }
16848 stevensc 19879
 
16825 efrain 19880
  .wd-lg-75p {
19881
    width: 75%;
19882
  }
16848 stevensc 19883
 
16825 efrain 19884
  .mx-wd-lg-75p {
19885
    max-width: 75%;
19886
  }
16848 stevensc 19887
 
16825 efrain 19888
  .mn-wd-lg-75p {
19889
    min-width: 75%;
19890
  }
16848 stevensc 19891
 
16825 efrain 19892
  .wd-lg-75-f {
19893
    width: 75px !important;
19894
  }
16848 stevensc 19895
 
16825 efrain 19896
  .wd-lg-75p-f {
19897
    width: 75% !important;
19898
  }
16848 stevensc 19899
 
16825 efrain 19900
  .mx-wd-lg-75p-f {
19901
    max-width: 75% !important;
19902
  }
16848 stevensc 19903
 
16825 efrain 19904
  .mn-wd-lg-75p-f {
19905
    min-width: 75% !important;
19906
  }
16848 stevensc 19907
 
16825 efrain 19908
  .wd-lg-80 {
19909
    width: 80px;
19910
  }
16848 stevensc 19911
 
16825 efrain 19912
  .wd-lg-80p {
19913
    width: 80%;
19914
  }
16848 stevensc 19915
 
16825 efrain 19916
  .mx-wd-lg-80p {
19917
    max-width: 80%;
19918
  }
16848 stevensc 19919
 
16825 efrain 19920
  .mn-wd-lg-80p {
19921
    min-width: 80%;
19922
  }
16848 stevensc 19923
 
16825 efrain 19924
  .wd-lg-80-f {
19925
    width: 80px !important;
19926
  }
16848 stevensc 19927
 
16825 efrain 19928
  .wd-lg-80p-f {
19929
    width: 80% !important;
19930
  }
16848 stevensc 19931
 
16825 efrain 19932
  .mx-wd-lg-80p-f {
19933
    max-width: 80% !important;
19934
  }
16848 stevensc 19935
 
16825 efrain 19936
  .mn-wd-lg-80p-f {
19937
    min-width: 80% !important;
19938
  }
16848 stevensc 19939
 
16825 efrain 19940
  .wd-lg-85 {
19941
    width: 85px;
19942
  }
16848 stevensc 19943
 
16825 efrain 19944
  .wd-lg-85p {
19945
    width: 85%;
19946
  }
16848 stevensc 19947
 
16825 efrain 19948
  .mx-wd-lg-85p {
19949
    max-width: 85%;
19950
  }
16848 stevensc 19951
 
16825 efrain 19952
  .mn-wd-lg-85p {
19953
    min-width: 85%;
19954
  }
16848 stevensc 19955
 
16825 efrain 19956
  .wd-lg-85-f {
19957
    width: 85px !important;
19958
  }
16848 stevensc 19959
 
16825 efrain 19960
  .wd-lg-85p-f {
19961
    width: 85% !important;
19962
  }
16848 stevensc 19963
 
16825 efrain 19964
  .mx-wd-lg-85p-f {
19965
    max-width: 85% !important;
19966
  }
16848 stevensc 19967
 
16825 efrain 19968
  .mn-wd-lg-85p-f {
19969
    min-width: 85% !important;
19970
  }
16848 stevensc 19971
 
16825 efrain 19972
  .wd-lg-90 {
19973
    width: 90px;
19974
  }
16848 stevensc 19975
 
16825 efrain 19976
  .wd-lg-90p {
19977
    width: 90%;
19978
  }
16848 stevensc 19979
 
16825 efrain 19980
  .mx-wd-lg-90p {
19981
    max-width: 90%;
19982
  }
16848 stevensc 19983
 
16825 efrain 19984
  .mn-wd-lg-90p {
19985
    min-width: 90%;
19986
  }
16848 stevensc 19987
 
16825 efrain 19988
  .wd-lg-90-f {
19989
    width: 90px !important;
19990
  }
16848 stevensc 19991
 
16825 efrain 19992
  .wd-lg-90p-f {
19993
    width: 90% !important;
19994
  }
16848 stevensc 19995
 
16825 efrain 19996
  .mx-wd-lg-90p-f {
19997
    max-width: 90% !important;
19998
  }
16848 stevensc 19999
 
16825 efrain 20000
  .mn-wd-lg-90p-f {
20001
    min-width: 90% !important;
20002
  }
16848 stevensc 20003
 
16825 efrain 20004
  .wd-lg-95 {
20005
    width: 95px;
20006
  }
16848 stevensc 20007
 
16825 efrain 20008
  .wd-lg-95p {
20009
    width: 95%;
20010
  }
16848 stevensc 20011
 
16825 efrain 20012
  .mx-wd-lg-95p {
20013
    max-width: 95%;
20014
  }
16848 stevensc 20015
 
16825 efrain 20016
  .mn-wd-lg-95p {
20017
    min-width: 95%;
20018
  }
16848 stevensc 20019
 
16825 efrain 20020
  .wd-lg-95-f {
20021
    width: 95px !important;
20022
  }
16848 stevensc 20023
 
16825 efrain 20024
  .wd-lg-95p-f {
20025
    width: 95% !important;
20026
  }
16848 stevensc 20027
 
16825 efrain 20028
  .mx-wd-lg-95p-f {
20029
    max-width: 95% !important;
20030
  }
16848 stevensc 20031
 
16825 efrain 20032
  .mn-wd-lg-95p-f {
20033
    min-width: 95% !important;
20034
  }
16848 stevensc 20035
 
16825 efrain 20036
  .wd-lg-100 {
20037
    width: 100px;
20038
  }
16848 stevensc 20039
 
16825 efrain 20040
  .wd-lg-100p {
20041
    width: 100%;
20042
  }
16848 stevensc 20043
 
16825 efrain 20044
  .mx-wd-lg-100p {
20045
    max-width: 100%;
20046
  }
16848 stevensc 20047
 
16825 efrain 20048
  .mn-wd-lg-100p {
20049
    min-width: 100%;
20050
  }
16848 stevensc 20051
 
16825 efrain 20052
  .wd-lg-100-f {
20053
    width: 100px !important;
20054
  }
16848 stevensc 20055
 
16825 efrain 20056
  .wd-lg-100p-f {
20057
    width: 100% !important;
20058
  }
16848 stevensc 20059
 
16825 efrain 20060
  .mx-wd-lg-100p-f {
20061
    max-width: 100% !important;
20062
  }
16848 stevensc 20063
 
16825 efrain 20064
  .mn-wd-lg-100p-f {
20065
    min-width: 100% !important;
20066
  }
16848 stevensc 20067
 
16825 efrain 20068
  .wd-lg-150 {
20069
    width: 150px;
20070
  }
16848 stevensc 20071
 
16825 efrain 20072
  .wd-lg-150p {
20073
    width: 150%;
20074
  }
16848 stevensc 20075
 
16825 efrain 20076
  .mx-wd-lg-150p {
20077
    max-width: 150%;
20078
  }
16848 stevensc 20079
 
16825 efrain 20080
  .mn-wd-lg-150p {
20081
    min-width: 150%;
20082
  }
16848 stevensc 20083
 
16825 efrain 20084
  .wd-lg-150-f {
20085
    width: 150px !important;
20086
  }
16848 stevensc 20087
 
16825 efrain 20088
  .wd-lg-150p-f {
20089
    width: 150% !important;
20090
  }
16848 stevensc 20091
 
16825 efrain 20092
  .mx-wd-lg-150p-f {
20093
    max-width: 150% !important;
20094
  }
16848 stevensc 20095
 
16825 efrain 20096
  .mn-wd-lg-150p-f {
20097
    min-width: 150% !important;
20098
  }
16848 stevensc 20099
 
16825 efrain 20100
  .wd-lg-200 {
20101
    width: 200px;
20102
  }
16848 stevensc 20103
 
16825 efrain 20104
  .wd-lg-200p {
20105
    width: 200%;
20106
  }
16848 stevensc 20107
 
16825 efrain 20108
  .mx-wd-lg-200p {
20109
    max-width: 200%;
20110
  }
16848 stevensc 20111
 
16825 efrain 20112
  .mn-wd-lg-200p {
20113
    min-width: 200%;
20114
  }
16848 stevensc 20115
 
16825 efrain 20116
  .wd-lg-200-f {
20117
    width: 200px !important;
20118
  }
16848 stevensc 20119
 
16825 efrain 20120
  .wd-lg-200p-f {
20121
    width: 200% !important;
20122
  }
16848 stevensc 20123
 
16825 efrain 20124
  .mx-wd-lg-200p-f {
20125
    max-width: 200% !important;
20126
  }
16848 stevensc 20127
 
16825 efrain 20128
  .mn-wd-lg-200p-f {
20129
    min-width: 200% !important;
20130
  }
16848 stevensc 20131
 
16825 efrain 20132
  .wd-lg-250 {
20133
    width: 250px;
20134
  }
16848 stevensc 20135
 
16825 efrain 20136
  .wd-lg-250p {
20137
    width: 250%;
20138
  }
16848 stevensc 20139
 
16825 efrain 20140
  .mx-wd-lg-250p {
20141
    max-width: 250%;
20142
  }
16848 stevensc 20143
 
16825 efrain 20144
  .mn-wd-lg-250p {
20145
    min-width: 250%;
20146
  }
16848 stevensc 20147
 
16825 efrain 20148
  .wd-lg-250-f {
20149
    width: 250px !important;
20150
  }
16848 stevensc 20151
 
16825 efrain 20152
  .wd-lg-250p-f {
20153
    width: 250% !important;
20154
  }
16848 stevensc 20155
 
16825 efrain 20156
  .mx-wd-lg-250p-f {
20157
    max-width: 250% !important;
20158
  }
16848 stevensc 20159
 
16825 efrain 20160
  .mn-wd-lg-250p-f {
20161
    min-width: 250% !important;
20162
  }
16848 stevensc 20163
 
16825 efrain 20164
  .wd-lg-300 {
20165
    width: 300px;
20166
  }
16848 stevensc 20167
 
16825 efrain 20168
  .wd-lg-300p {
20169
    width: 300%;
20170
  }
16848 stevensc 20171
 
16825 efrain 20172
  .mx-wd-lg-300p {
20173
    max-width: 300%;
20174
  }
16848 stevensc 20175
 
16825 efrain 20176
  .mn-wd-lg-300p {
20177
    min-width: 300%;
20178
  }
16848 stevensc 20179
 
16825 efrain 20180
  .wd-lg-300-f {
20181
    width: 300px !important;
20182
  }
16848 stevensc 20183
 
16825 efrain 20184
  .wd-lg-300p-f {
20185
    width: 300% !important;
20186
  }
16848 stevensc 20187
 
16825 efrain 20188
  .mx-wd-lg-300p-f {
20189
    max-width: 300% !important;
20190
  }
16848 stevensc 20191
 
16825 efrain 20192
  .mn-wd-lg-300p-f {
20193
    min-width: 300% !important;
20194
  }
16848 stevensc 20195
 
16825 efrain 20196
  .wd-lg-350 {
20197
    width: 350px;
20198
  }
16848 stevensc 20199
 
16825 efrain 20200
  .wd-lg-350p {
20201
    width: 350%;
20202
  }
16848 stevensc 20203
 
16825 efrain 20204
  .mx-wd-lg-350p {
20205
    max-width: 350%;
20206
  }
16848 stevensc 20207
 
16825 efrain 20208
  .mn-wd-lg-350p {
20209
    min-width: 350%;
20210
  }
16848 stevensc 20211
 
16825 efrain 20212
  .wd-lg-350-f {
20213
    width: 350px !important;
20214
  }
16848 stevensc 20215
 
16825 efrain 20216
  .wd-lg-350p-f {
20217
    width: 350% !important;
20218
  }
16848 stevensc 20219
 
16825 efrain 20220
  .mx-wd-lg-350p-f {
20221
    max-width: 350% !important;
20222
  }
16848 stevensc 20223
 
16825 efrain 20224
  .mn-wd-lg-350p-f {
20225
    min-width: 350% !important;
20226
  }
16848 stevensc 20227
 
16825 efrain 20228
  .wd-lg-400 {
20229
    width: 400px;
20230
  }
16848 stevensc 20231
 
16825 efrain 20232
  .wd-lg-400p {
20233
    width: 400%;
20234
  }
16848 stevensc 20235
 
16825 efrain 20236
  .mx-wd-lg-400p {
20237
    max-width: 400%;
20238
  }
16848 stevensc 20239
 
16825 efrain 20240
  .mn-wd-lg-400p {
20241
    min-width: 400%;
20242
  }
16848 stevensc 20243
 
16825 efrain 20244
  .wd-lg-400-f {
20245
    width: 400px !important;
20246
  }
16848 stevensc 20247
 
16825 efrain 20248
  .wd-lg-400p-f {
20249
    width: 400% !important;
20250
  }
16848 stevensc 20251
 
16825 efrain 20252
  .mx-wd-lg-400p-f {
20253
    max-width: 400% !important;
20254
  }
16848 stevensc 20255
 
16825 efrain 20256
  .mn-wd-lg-400p-f {
20257
    min-width: 400% !important;
20258
  }
16848 stevensc 20259
 
16825 efrain 20260
  .wd-lg-450 {
20261
    width: 450px;
20262
  }
16848 stevensc 20263
 
16825 efrain 20264
  .wd-lg-450p {
20265
    width: 450%;
20266
  }
16848 stevensc 20267
 
16825 efrain 20268
  .mx-wd-lg-450p {
20269
    max-width: 450%;
20270
  }
16848 stevensc 20271
 
16825 efrain 20272
  .mn-wd-lg-450p {
20273
    min-width: 450%;
20274
  }
16848 stevensc 20275
 
16825 efrain 20276
  .wd-lg-450-f {
20277
    width: 450px !important;
20278
  }
16848 stevensc 20279
 
16825 efrain 20280
  .wd-lg-450p-f {
20281
    width: 450% !important;
20282
  }
16848 stevensc 20283
 
16825 efrain 20284
  .mx-wd-lg-450p-f {
20285
    max-width: 450% !important;
20286
  }
16848 stevensc 20287
 
16825 efrain 20288
  .mn-wd-lg-450p-f {
20289
    min-width: 450% !important;
20290
  }
16848 stevensc 20291
 
16825 efrain 20292
  .wd-lg-500 {
20293
    width: 500px;
20294
  }
16848 stevensc 20295
 
16825 efrain 20296
  .wd-lg-500p {
20297
    width: 500%;
20298
  }
16848 stevensc 20299
 
16825 efrain 20300
  .mx-wd-lg-500p {
20301
    max-width: 500%;
20302
  }
16848 stevensc 20303
 
16825 efrain 20304
  .mn-wd-lg-500p {
20305
    min-width: 500%;
20306
  }
16848 stevensc 20307
 
16825 efrain 20308
  .wd-lg-500-f {
20309
    width: 500px !important;
20310
  }
16848 stevensc 20311
 
16825 efrain 20312
  .wd-lg-500p-f {
20313
    width: 500% !important;
20314
  }
16848 stevensc 20315
 
16825 efrain 20316
  .mx-wd-lg-500p-f {
20317
    max-width: 500% !important;
20318
  }
16848 stevensc 20319
 
16825 efrain 20320
  .mn-wd-lg-500p-f {
20321
    min-width: 500% !important;
20322
  }
16848 stevensc 20323
 
16825 efrain 20324
  .wd-lg-550 {
20325
    width: 550px;
20326
  }
16848 stevensc 20327
 
16825 efrain 20328
  .wd-lg-550p {
20329
    width: 550%;
20330
  }
16848 stevensc 20331
 
16825 efrain 20332
  .mx-wd-lg-550p {
20333
    max-width: 550%;
20334
  }
16848 stevensc 20335
 
16825 efrain 20336
  .mn-wd-lg-550p {
20337
    min-width: 550%;
20338
  }
16848 stevensc 20339
 
16825 efrain 20340
  .wd-lg-550-f {
20341
    width: 550px !important;
20342
  }
16848 stevensc 20343
 
16825 efrain 20344
  .wd-lg-550p-f {
20345
    width: 550% !important;
20346
  }
16848 stevensc 20347
 
16825 efrain 20348
  .mx-wd-lg-550p-f {
20349
    max-width: 550% !important;
20350
  }
16848 stevensc 20351
 
16825 efrain 20352
  .mn-wd-lg-550p-f {
20353
    min-width: 550% !important;
20354
  }
16848 stevensc 20355
 
16825 efrain 20356
  .wd-lg-600 {
20357
    width: 600px;
20358
  }
16848 stevensc 20359
 
16825 efrain 20360
  .wd-lg-600p {
20361
    width: 600%;
20362
  }
16848 stevensc 20363
 
16825 efrain 20364
  .mx-wd-lg-600p {
20365
    max-width: 600%;
20366
  }
16848 stevensc 20367
 
16825 efrain 20368
  .mn-wd-lg-600p {
20369
    min-width: 600%;
20370
  }
16848 stevensc 20371
 
16825 efrain 20372
  .wd-lg-600-f {
20373
    width: 600px !important;
20374
  }
16848 stevensc 20375
 
16825 efrain 20376
  .wd-lg-600p-f {
20377
    width: 600% !important;
20378
  }
16848 stevensc 20379
 
16825 efrain 20380
  .mx-wd-lg-600p-f {
20381
    max-width: 600% !important;
20382
  }
16848 stevensc 20383
 
16825 efrain 20384
  .mn-wd-lg-600p-f {
20385
    min-width: 600% !important;
20386
  }
16848 stevensc 20387
 
16825 efrain 20388
  .wd-lg-650 {
20389
    width: 650px;
20390
  }
16848 stevensc 20391
 
16825 efrain 20392
  .wd-lg-650p {
20393
    width: 650%;
20394
  }
16848 stevensc 20395
 
16825 efrain 20396
  .mx-wd-lg-650p {
20397
    max-width: 650%;
20398
  }
16848 stevensc 20399
 
16825 efrain 20400
  .mn-wd-lg-650p {
20401
    min-width: 650%;
20402
  }
16848 stevensc 20403
 
16825 efrain 20404
  .wd-lg-650-f {
20405
    width: 650px !important;
20406
  }
16848 stevensc 20407
 
16825 efrain 20408
  .wd-lg-650p-f {
20409
    width: 650% !important;
20410
  }
16848 stevensc 20411
 
16825 efrain 20412
  .mx-wd-lg-650p-f {
20413
    max-width: 650% !important;
20414
  }
16848 stevensc 20415
 
16825 efrain 20416
  .mn-wd-lg-650p-f {
20417
    min-width: 650% !important;
20418
  }
16848 stevensc 20419
 
16825 efrain 20420
  .wd-lg-700 {
20421
    width: 700px;
20422
  }
16848 stevensc 20423
 
16825 efrain 20424
  .wd-lg-700p {
20425
    width: 700%;
20426
  }
16848 stevensc 20427
 
16825 efrain 20428
  .mx-wd-lg-700p {
20429
    max-width: 700%;
20430
  }
16848 stevensc 20431
 
16825 efrain 20432
  .mn-wd-lg-700p {
20433
    min-width: 700%;
20434
  }
16848 stevensc 20435
 
16825 efrain 20436
  .wd-lg-700-f {
20437
    width: 700px !important;
20438
  }
16848 stevensc 20439
 
16825 efrain 20440
  .wd-lg-700p-f {
20441
    width: 700% !important;
20442
  }
16848 stevensc 20443
 
16825 efrain 20444
  .mx-wd-lg-700p-f {
20445
    max-width: 700% !important;
20446
  }
16848 stevensc 20447
 
16825 efrain 20448
  .mn-wd-lg-700p-f {
20449
    min-width: 700% !important;
20450
  }
16848 stevensc 20451
 
16825 efrain 20452
  .wd-lg-750 {
20453
    width: 750px;
20454
  }
16848 stevensc 20455
 
16825 efrain 20456
  .wd-lg-750p {
20457
    width: 750%;
20458
  }
16848 stevensc 20459
 
16825 efrain 20460
  .mx-wd-lg-750p {
20461
    max-width: 750%;
20462
  }
16848 stevensc 20463
 
16825 efrain 20464
  .mn-wd-lg-750p {
20465
    min-width: 750%;
20466
  }
16848 stevensc 20467
 
16825 efrain 20468
  .wd-lg-750-f {
20469
    width: 750px !important;
20470
  }
16848 stevensc 20471
 
16825 efrain 20472
  .wd-lg-750p-f {
20473
    width: 750% !important;
20474
  }
16848 stevensc 20475
 
16825 efrain 20476
  .mx-wd-lg-750p-f {
20477
    max-width: 750% !important;
20478
  }
16848 stevensc 20479
 
16825 efrain 20480
  .mn-wd-lg-750p-f {
20481
    min-width: 750% !important;
20482
  }
16848 stevensc 20483
 
16825 efrain 20484
  .wd-lg-800 {
20485
    width: 800px;
20486
  }
16848 stevensc 20487
 
16825 efrain 20488
  .wd-lg-800p {
20489
    width: 800%;
20490
  }
16848 stevensc 20491
 
16825 efrain 20492
  .mx-wd-lg-800p {
20493
    max-width: 800%;
20494
  }
16848 stevensc 20495
 
16825 efrain 20496
  .mn-wd-lg-800p {
20497
    min-width: 800%;
20498
  }
16848 stevensc 20499
 
16825 efrain 20500
  .wd-lg-800-f {
20501
    width: 800px !important;
20502
  }
16848 stevensc 20503
 
16825 efrain 20504
  .wd-lg-800p-f {
20505
    width: 800% !important;
20506
  }
16848 stevensc 20507
 
16825 efrain 20508
  .mx-wd-lg-800p-f {
20509
    max-width: 800% !important;
20510
  }
16848 stevensc 20511
 
16825 efrain 20512
  .mn-wd-lg-800p-f {
20513
    min-width: 800% !important;
20514
  }
16848 stevensc 20515
 
16825 efrain 20516
  .wd-lg-850 {
20517
    width: 850px;
20518
  }
16848 stevensc 20519
 
16825 efrain 20520
  .wd-lg-850p {
20521
    width: 850%;
20522
  }
16848 stevensc 20523
 
16825 efrain 20524
  .mx-wd-lg-850p {
20525
    max-width: 850%;
20526
  }
16848 stevensc 20527
 
16825 efrain 20528
  .mn-wd-lg-850p {
20529
    min-width: 850%;
20530
  }
16848 stevensc 20531
 
16825 efrain 20532
  .wd-lg-850-f {
20533
    width: 850px !important;
20534
  }
16848 stevensc 20535
 
16825 efrain 20536
  .wd-lg-850p-f {
20537
    width: 850% !important;
20538
  }
16848 stevensc 20539
 
16825 efrain 20540
  .mx-wd-lg-850p-f {
20541
    max-width: 850% !important;
20542
  }
16848 stevensc 20543
 
16825 efrain 20544
  .mn-wd-lg-850p-f {
20545
    min-width: 850% !important;
20546
  }
16848 stevensc 20547
 
16825 efrain 20548
  .wd-lg-900 {
20549
    width: 900px;
20550
  }
16848 stevensc 20551
 
16825 efrain 20552
  .wd-lg-900p {
20553
    width: 900%;
20554
  }
16848 stevensc 20555
 
16825 efrain 20556
  .mx-wd-lg-900p {
20557
    max-width: 900%;
20558
  }
16848 stevensc 20559
 
16825 efrain 20560
  .mn-wd-lg-900p {
20561
    min-width: 900%;
20562
  }
16848 stevensc 20563
 
16825 efrain 20564
  .wd-lg-900-f {
20565
    width: 900px !important;
20566
  }
16848 stevensc 20567
 
16825 efrain 20568
  .wd-lg-900p-f {
20569
    width: 900% !important;
20570
  }
16848 stevensc 20571
 
16825 efrain 20572
  .mx-wd-lg-900p-f {
20573
    max-width: 900% !important;
20574
  }
16848 stevensc 20575
 
16825 efrain 20576
  .mn-wd-lg-900p-f {
20577
    min-width: 900% !important;
20578
  }
16848 stevensc 20579
 
16825 efrain 20580
  .wd-lg-950 {
20581
    width: 950px;
20582
  }
16848 stevensc 20583
 
16825 efrain 20584
  .wd-lg-950p {
20585
    width: 950%;
20586
  }
16848 stevensc 20587
 
16825 efrain 20588
  .mx-wd-lg-950p {
20589
    max-width: 950%;
20590
  }
16848 stevensc 20591
 
16825 efrain 20592
  .mn-wd-lg-950p {
20593
    min-width: 950%;
20594
  }
16848 stevensc 20595
 
16825 efrain 20596
  .wd-lg-950-f {
20597
    width: 950px !important;
20598
  }
16848 stevensc 20599
 
16825 efrain 20600
  .wd-lg-950p-f {
20601
    width: 950% !important;
20602
  }
16848 stevensc 20603
 
16825 efrain 20604
  .mx-wd-lg-950p-f {
20605
    max-width: 950% !important;
20606
  }
16848 stevensc 20607
 
16825 efrain 20608
  .mn-wd-lg-950p-f {
20609
    min-width: 950% !important;
20610
  }
16848 stevensc 20611
 
16825 efrain 20612
  .wd-lg-1000 {
20613
    width: 1000px;
20614
  }
16848 stevensc 20615
 
16825 efrain 20616
  .wd-lg-1000p {
20617
    width: 1000%;
20618
  }
16848 stevensc 20619
 
16825 efrain 20620
  .mx-wd-lg-1000p {
20621
    max-width: 1000%;
20622
  }
16848 stevensc 20623
 
16825 efrain 20624
  .mn-wd-lg-1000p {
20625
    min-width: 1000%;
20626
  }
16848 stevensc 20627
 
16825 efrain 20628
  .wd-lg-1000-f {
20629
    width: 1000px !important;
20630
  }
16848 stevensc 20631
 
16825 efrain 20632
  .wd-lg-1000p-f {
20633
    width: 1000% !important;
20634
  }
16848 stevensc 20635
 
16825 efrain 20636
  .mx-wd-lg-1000p-f {
20637
    max-width: 1000% !important;
20638
  }
16848 stevensc 20639
 
16825 efrain 20640
  .mn-wd-lg-1000p-f {
20641
    min-width: 1000% !important;
20642
  }
16848 stevensc 20643
 
16825 efrain 20644
  .wd-lg-auto {
20645
    width: auto;
20646
  }
16848 stevensc 20647
 
16825 efrain 20648
  .wd-lg-auto-f {
20649
    width: auto !important;
20650
  }
20651
}
16848 stevensc 20652
 
16825 efrain 20653
@media (min-width: 1200px) {
20654
  .wd-xl-5 {
20655
    width: 5px;
20656
  }
16848 stevensc 20657
 
16825 efrain 20658
  .wd-xl-5p {
20659
    width: 5%;
20660
  }
16848 stevensc 20661
 
16825 efrain 20662
  .mx-wd-xl-5p {
20663
    max-width: 5%;
20664
  }
16848 stevensc 20665
 
16825 efrain 20666
  .mn-wd-xl-5p {
20667
    min-width: 5%;
20668
  }
16848 stevensc 20669
 
16825 efrain 20670
  .wd-xl-5-f {
20671
    width: 5px !important;
20672
  }
16848 stevensc 20673
 
16825 efrain 20674
  .wd-xl-5p-f {
20675
    width: 5% !important;
20676
  }
16848 stevensc 20677
 
16825 efrain 20678
  .mx-wd-xl-5p-f {
20679
    max-width: 5% !important;
20680
  }
16848 stevensc 20681
 
16825 efrain 20682
  .mn-wd-xl-5p-f {
20683
    min-width: 5% !important;
20684
  }
16848 stevensc 20685
 
16825 efrain 20686
  .wd-xl-10 {
20687
    width: 10px;
20688
  }
16848 stevensc 20689
 
16825 efrain 20690
  .wd-xl-10p {
20691
    width: 10%;
20692
  }
16848 stevensc 20693
 
16825 efrain 20694
  .mx-wd-xl-10p {
20695
    max-width: 10%;
20696
  }
16848 stevensc 20697
 
16825 efrain 20698
  .mn-wd-xl-10p {
20699
    min-width: 10%;
20700
  }
16848 stevensc 20701
 
16825 efrain 20702
  .wd-xl-10-f {
20703
    width: 10px !important;
20704
  }
16848 stevensc 20705
 
16825 efrain 20706
  .wd-xl-10p-f {
20707
    width: 10% !important;
20708
  }
16848 stevensc 20709
 
16825 efrain 20710
  .mx-wd-xl-10p-f {
20711
    max-width: 10% !important;
20712
  }
16848 stevensc 20713
 
16825 efrain 20714
  .mn-wd-xl-10p-f {
20715
    min-width: 10% !important;
20716
  }
16848 stevensc 20717
 
16825 efrain 20718
  .wd-xl-15 {
20719
    width: 15px;
20720
  }
16848 stevensc 20721
 
16825 efrain 20722
  .wd-xl-15p {
20723
    width: 15%;
20724
  }
16848 stevensc 20725
 
16825 efrain 20726
  .mx-wd-xl-15p {
20727
    max-width: 15%;
20728
  }
16848 stevensc 20729
 
16825 efrain 20730
  .mn-wd-xl-15p {
20731
    min-width: 15%;
20732
  }
16848 stevensc 20733
 
16825 efrain 20734
  .wd-xl-15-f {
20735
    width: 15px !important;
20736
  }
16848 stevensc 20737
 
16825 efrain 20738
  .wd-xl-15p-f {
20739
    width: 15% !important;
20740
  }
16848 stevensc 20741
 
16825 efrain 20742
  .mx-wd-xl-15p-f {
20743
    max-width: 15% !important;
20744
  }
16848 stevensc 20745
 
16825 efrain 20746
  .mn-wd-xl-15p-f {
20747
    min-width: 15% !important;
20748
  }
16848 stevensc 20749
 
16825 efrain 20750
  .wd-xl-20 {
20751
    width: 20px;
20752
  }
16848 stevensc 20753
 
16825 efrain 20754
  .wd-xl-20p {
20755
    width: 20%;
20756
  }
16848 stevensc 20757
 
16825 efrain 20758
  .mx-wd-xl-20p {
20759
    max-width: 20%;
20760
  }
16848 stevensc 20761
 
16825 efrain 20762
  .mn-wd-xl-20p {
20763
    min-width: 20%;
20764
  }
16848 stevensc 20765
 
16825 efrain 20766
  .wd-xl-20-f {
20767
    width: 20px !important;
20768
  }
16848 stevensc 20769
 
16825 efrain 20770
  .wd-xl-20p-f {
20771
    width: 20% !important;
20772
  }
16848 stevensc 20773
 
16825 efrain 20774
  .mx-wd-xl-20p-f {
20775
    max-width: 20% !important;
20776
  }
16848 stevensc 20777
 
16825 efrain 20778
  .mn-wd-xl-20p-f {
20779
    min-width: 20% !important;
20780
  }
16848 stevensc 20781
 
16825 efrain 20782
  .wd-xl-25 {
20783
    width: 25px;
20784
  }
16848 stevensc 20785
 
16825 efrain 20786
  .wd-xl-25p {
20787
    width: 25%;
20788
  }
16848 stevensc 20789
 
16825 efrain 20790
  .mx-wd-xl-25p {
20791
    max-width: 25%;
20792
  }
16848 stevensc 20793
 
16825 efrain 20794
  .mn-wd-xl-25p {
20795
    min-width: 25%;
20796
  }
16848 stevensc 20797
 
16825 efrain 20798
  .wd-xl-25-f {
20799
    width: 25px !important;
20800
  }
16848 stevensc 20801
 
16825 efrain 20802
  .wd-xl-25p-f {
20803
    width: 25% !important;
20804
  }
16848 stevensc 20805
 
16825 efrain 20806
  .mx-wd-xl-25p-f {
20807
    max-width: 25% !important;
20808
  }
16848 stevensc 20809
 
16825 efrain 20810
  .mn-wd-xl-25p-f {
20811
    min-width: 25% !important;
20812
  }
16848 stevensc 20813
 
16825 efrain 20814
  .wd-xl-30 {
20815
    width: 30px;
20816
  }
16848 stevensc 20817
 
16825 efrain 20818
  .wd-xl-30p {
20819
    width: 30%;
20820
  }
16848 stevensc 20821
 
16825 efrain 20822
  .mx-wd-xl-30p {
20823
    max-width: 30%;
20824
  }
16848 stevensc 20825
 
16825 efrain 20826
  .mn-wd-xl-30p {
20827
    min-width: 30%;
20828
  }
16848 stevensc 20829
 
16825 efrain 20830
  .wd-xl-30-f {
20831
    width: 30px !important;
20832
  }
16848 stevensc 20833
 
16825 efrain 20834
  .wd-xl-30p-f {
20835
    width: 30% !important;
20836
  }
16848 stevensc 20837
 
16825 efrain 20838
  .mx-wd-xl-30p-f {
20839
    max-width: 30% !important;
20840
  }
16848 stevensc 20841
 
16825 efrain 20842
  .mn-wd-xl-30p-f {
20843
    min-width: 30% !important;
20844
  }
16848 stevensc 20845
 
16825 efrain 20846
  .wd-xl-35 {
20847
    width: 35px;
20848
  }
16848 stevensc 20849
 
16825 efrain 20850
  .wd-xl-35p {
20851
    width: 35%;
20852
  }
16848 stevensc 20853
 
16825 efrain 20854
  .mx-wd-xl-35p {
20855
    max-width: 35%;
20856
  }
16848 stevensc 20857
 
16825 efrain 20858
  .mn-wd-xl-35p {
20859
    min-width: 35%;
20860
  }
16848 stevensc 20861
 
16825 efrain 20862
  .wd-xl-35-f {
20863
    width: 35px !important;
20864
  }
16848 stevensc 20865
 
16825 efrain 20866
  .wd-xl-35p-f {
20867
    width: 35% !important;
20868
  }
16848 stevensc 20869
 
16825 efrain 20870
  .mx-wd-xl-35p-f {
20871
    max-width: 35% !important;
20872
  }
16848 stevensc 20873
 
16825 efrain 20874
  .mn-wd-xl-35p-f {
20875
    min-width: 35% !important;
20876
  }
16848 stevensc 20877
 
16825 efrain 20878
  .wd-xl-40 {
20879
    width: 40px;
20880
  }
16848 stevensc 20881
 
16825 efrain 20882
  .wd-xl-40p {
20883
    width: 40%;
20884
  }
16848 stevensc 20885
 
16825 efrain 20886
  .mx-wd-xl-40p {
20887
    max-width: 40%;
20888
  }
16848 stevensc 20889
 
16825 efrain 20890
  .mn-wd-xl-40p {
20891
    min-width: 40%;
20892
  }
16848 stevensc 20893
 
16825 efrain 20894
  .wd-xl-40-f {
20895
    width: 40px !important;
20896
  }
16848 stevensc 20897
 
16825 efrain 20898
  .wd-xl-40p-f {
20899
    width: 40% !important;
20900
  }
16848 stevensc 20901
 
16825 efrain 20902
  .mx-wd-xl-40p-f {
20903
    max-width: 40% !important;
20904
  }
16848 stevensc 20905
 
16825 efrain 20906
  .mn-wd-xl-40p-f {
20907
    min-width: 40% !important;
20908
  }
16848 stevensc 20909
 
16825 efrain 20910
  .wd-xl-45 {
20911
    width: 45px;
20912
  }
16848 stevensc 20913
 
16825 efrain 20914
  .wd-xl-45p {
20915
    width: 45%;
20916
  }
16848 stevensc 20917
 
16825 efrain 20918
  .mx-wd-xl-45p {
20919
    max-width: 45%;
20920
  }
16848 stevensc 20921
 
16825 efrain 20922
  .mn-wd-xl-45p {
20923
    min-width: 45%;
20924
  }
16848 stevensc 20925
 
16825 efrain 20926
  .wd-xl-45-f {
20927
    width: 45px !important;
20928
  }
16848 stevensc 20929
 
16825 efrain 20930
  .wd-xl-45p-f {
20931
    width: 45% !important;
20932
  }
16848 stevensc 20933
 
16825 efrain 20934
  .mx-wd-xl-45p-f {
20935
    max-width: 45% !important;
20936
  }
16848 stevensc 20937
 
16825 efrain 20938
  .mn-wd-xl-45p-f {
20939
    min-width: 45% !important;
20940
  }
16848 stevensc 20941
 
16825 efrain 20942
  .wd-xl-50 {
20943
    width: 50px;
20944
  }
16848 stevensc 20945
 
16825 efrain 20946
  .wd-xl-50p {
20947
    width: 50%;
20948
  }
16848 stevensc 20949
 
16825 efrain 20950
  .mx-wd-xl-50p {
20951
    max-width: 50%;
20952
  }
16848 stevensc 20953
 
16825 efrain 20954
  .mn-wd-xl-50p {
20955
    min-width: 50%;
20956
  }
16848 stevensc 20957
 
16825 efrain 20958
  .wd-xl-50-f {
20959
    width: 50px !important;
20960
  }
16848 stevensc 20961
 
16825 efrain 20962
  .wd-xl-50p-f {
20963
    width: 50% !important;
20964
  }
16848 stevensc 20965
 
16825 efrain 20966
  .mx-wd-xl-50p-f {
20967
    max-width: 50% !important;
20968
  }
16848 stevensc 20969
 
16825 efrain 20970
  .mn-wd-xl-50p-f {
20971
    min-width: 50% !important;
20972
  }
16848 stevensc 20973
 
16825 efrain 20974
  .wd-xl-55 {
20975
    width: 55px;
20976
  }
16848 stevensc 20977
 
16825 efrain 20978
  .wd-xl-55p {
20979
    width: 55%;
20980
  }
16848 stevensc 20981
 
16825 efrain 20982
  .mx-wd-xl-55p {
20983
    max-width: 55%;
20984
  }
16848 stevensc 20985
 
16825 efrain 20986
  .mn-wd-xl-55p {
20987
    min-width: 55%;
20988
  }
16848 stevensc 20989
 
16825 efrain 20990
  .wd-xl-55-f {
20991
    width: 55px !important;
20992
  }
16848 stevensc 20993
 
16825 efrain 20994
  .wd-xl-55p-f {
20995
    width: 55% !important;
20996
  }
16848 stevensc 20997
 
16825 efrain 20998
  .mx-wd-xl-55p-f {
20999
    max-width: 55% !important;
21000
  }
16848 stevensc 21001
 
16825 efrain 21002
  .mn-wd-xl-55p-f {
21003
    min-width: 55% !important;
21004
  }
16848 stevensc 21005
 
16825 efrain 21006
  .wd-xl-60 {
21007
    width: 60px;
21008
  }
16848 stevensc 21009
 
16825 efrain 21010
  .wd-xl-60p {
21011
    width: 60%;
21012
  }
16848 stevensc 21013
 
16825 efrain 21014
  .mx-wd-xl-60p {
21015
    max-width: 60%;
21016
  }
16848 stevensc 21017
 
16825 efrain 21018
  .mn-wd-xl-60p {
21019
    min-width: 60%;
21020
  }
16848 stevensc 21021
 
16825 efrain 21022
  .wd-xl-60-f {
21023
    width: 60px !important;
21024
  }
16848 stevensc 21025
 
16825 efrain 21026
  .wd-xl-60p-f {
21027
    width: 60% !important;
21028
  }
16848 stevensc 21029
 
16825 efrain 21030
  .mx-wd-xl-60p-f {
21031
    max-width: 60% !important;
21032
  }
16848 stevensc 21033
 
16825 efrain 21034
  .mn-wd-xl-60p-f {
21035
    min-width: 60% !important;
21036
  }
16848 stevensc 21037
 
16825 efrain 21038
  .wd-xl-65 {
21039
    width: 65px;
21040
  }
16848 stevensc 21041
 
16825 efrain 21042
  .wd-xl-65p {
21043
    width: 65%;
21044
  }
16848 stevensc 21045
 
16825 efrain 21046
  .mx-wd-xl-65p {
21047
    max-width: 65%;
21048
  }
16848 stevensc 21049
 
16825 efrain 21050
  .mn-wd-xl-65p {
21051
    min-width: 65%;
21052
  }
16848 stevensc 21053
 
16825 efrain 21054
  .wd-xl-65-f {
21055
    width: 65px !important;
21056
  }
16848 stevensc 21057
 
16825 efrain 21058
  .wd-xl-65p-f {
21059
    width: 65% !important;
21060
  }
16848 stevensc 21061
 
16825 efrain 21062
  .mx-wd-xl-65p-f {
21063
    max-width: 65% !important;
21064
  }
16848 stevensc 21065
 
16825 efrain 21066
  .mn-wd-xl-65p-f {
21067
    min-width: 65% !important;
21068
  }
16848 stevensc 21069
 
16825 efrain 21070
  .wd-xl-70 {
21071
    width: 70px;
21072
  }
16848 stevensc 21073
 
16825 efrain 21074
  .wd-xl-70p {
21075
    width: 70%;
21076
  }
16848 stevensc 21077
 
16825 efrain 21078
  .mx-wd-xl-70p {
21079
    max-width: 70%;
21080
  }
16848 stevensc 21081
 
16825 efrain 21082
  .mn-wd-xl-70p {
21083
    min-width: 70%;
21084
  }
16848 stevensc 21085
 
16825 efrain 21086
  .wd-xl-70-f {
21087
    width: 70px !important;
21088
  }
16848 stevensc 21089
 
16825 efrain 21090
  .wd-xl-70p-f {
21091
    width: 70% !important;
21092
  }
16848 stevensc 21093
 
16825 efrain 21094
  .mx-wd-xl-70p-f {
21095
    max-width: 70% !important;
21096
  }
16848 stevensc 21097
 
16825 efrain 21098
  .mn-wd-xl-70p-f {
21099
    min-width: 70% !important;
21100
  }
16848 stevensc 21101
 
16825 efrain 21102
  .wd-xl-75 {
21103
    width: 75px;
21104
  }
16848 stevensc 21105
 
16825 efrain 21106
  .wd-xl-75p {
21107
    width: 75%;
21108
  }
16848 stevensc 21109
 
16825 efrain 21110
  .mx-wd-xl-75p {
21111
    max-width: 75%;
21112
  }
16848 stevensc 21113
 
16825 efrain 21114
  .mn-wd-xl-75p {
21115
    min-width: 75%;
21116
  }
16848 stevensc 21117
 
16825 efrain 21118
  .wd-xl-75-f {
21119
    width: 75px !important;
21120
  }
16848 stevensc 21121
 
16825 efrain 21122
  .wd-xl-75p-f {
21123
    width: 75% !important;
21124
  }
16848 stevensc 21125
 
16825 efrain 21126
  .mx-wd-xl-75p-f {
21127
    max-width: 75% !important;
21128
  }
16848 stevensc 21129
 
16825 efrain 21130
  .mn-wd-xl-75p-f {
21131
    min-width: 75% !important;
21132
  }
16848 stevensc 21133
 
16825 efrain 21134
  .wd-xl-80 {
21135
    width: 80px;
21136
  }
16848 stevensc 21137
 
16825 efrain 21138
  .wd-xl-80p {
21139
    width: 80%;
21140
  }
16848 stevensc 21141
 
16825 efrain 21142
  .mx-wd-xl-80p {
21143
    max-width: 80%;
21144
  }
16848 stevensc 21145
 
16825 efrain 21146
  .mn-wd-xl-80p {
21147
    min-width: 80%;
21148
  }
16848 stevensc 21149
 
16825 efrain 21150
  .wd-xl-80-f {
21151
    width: 80px !important;
21152
  }
16848 stevensc 21153
 
16825 efrain 21154
  .wd-xl-80p-f {
21155
    width: 80% !important;
21156
  }
16848 stevensc 21157
 
16825 efrain 21158
  .mx-wd-xl-80p-f {
21159
    max-width: 80% !important;
21160
  }
16848 stevensc 21161
 
16825 efrain 21162
  .mn-wd-xl-80p-f {
21163
    min-width: 80% !important;
21164
  }
16848 stevensc 21165
 
16825 efrain 21166
  .wd-xl-85 {
21167
    width: 85px;
21168
  }
16848 stevensc 21169
 
16825 efrain 21170
  .wd-xl-85p {
21171
    width: 85%;
21172
  }
16848 stevensc 21173
 
16825 efrain 21174
  .mx-wd-xl-85p {
21175
    max-width: 85%;
21176
  }
16848 stevensc 21177
 
16825 efrain 21178
  .mn-wd-xl-85p {
21179
    min-width: 85%;
21180
  }
16848 stevensc 21181
 
16825 efrain 21182
  .wd-xl-85-f {
21183
    width: 85px !important;
21184
  }
16848 stevensc 21185
 
16825 efrain 21186
  .wd-xl-85p-f {
21187
    width: 85% !important;
21188
  }
16848 stevensc 21189
 
16825 efrain 21190
  .mx-wd-xl-85p-f {
21191
    max-width: 85% !important;
21192
  }
16848 stevensc 21193
 
16825 efrain 21194
  .mn-wd-xl-85p-f {
21195
    min-width: 85% !important;
21196
  }
16848 stevensc 21197
 
16825 efrain 21198
  .wd-xl-90 {
21199
    width: 90px;
21200
  }
16848 stevensc 21201
 
16825 efrain 21202
  .wd-xl-90p {
21203
    width: 90%;
21204
  }
16848 stevensc 21205
 
16825 efrain 21206
  .mx-wd-xl-90p {
21207
    max-width: 90%;
21208
  }
16848 stevensc 21209
 
16825 efrain 21210
  .mn-wd-xl-90p {
21211
    min-width: 90%;
21212
  }
16848 stevensc 21213
 
16825 efrain 21214
  .wd-xl-90-f {
21215
    width: 90px !important;
21216
  }
16848 stevensc 21217
 
16825 efrain 21218
  .wd-xl-90p-f {
21219
    width: 90% !important;
21220
  }
16848 stevensc 21221
 
16825 efrain 21222
  .mx-wd-xl-90p-f {
21223
    max-width: 90% !important;
21224
  }
16848 stevensc 21225
 
16825 efrain 21226
  .mn-wd-xl-90p-f {
21227
    min-width: 90% !important;
21228
  }
16848 stevensc 21229
 
16825 efrain 21230
  .wd-xl-95 {
21231
    width: 95px;
21232
  }
16848 stevensc 21233
 
16825 efrain 21234
  .wd-xl-95p {
21235
    width: 95%;
21236
  }
16848 stevensc 21237
 
16825 efrain 21238
  .mx-wd-xl-95p {
21239
    max-width: 95%;
21240
  }
16848 stevensc 21241
 
16825 efrain 21242
  .mn-wd-xl-95p {
21243
    min-width: 95%;
21244
  }
16848 stevensc 21245
 
16825 efrain 21246
  .wd-xl-95-f {
21247
    width: 95px !important;
21248
  }
16848 stevensc 21249
 
16825 efrain 21250
  .wd-xl-95p-f {
21251
    width: 95% !important;
21252
  }
16848 stevensc 21253
 
16825 efrain 21254
  .mx-wd-xl-95p-f {
21255
    max-width: 95% !important;
21256
  }
16848 stevensc 21257
 
16825 efrain 21258
  .mn-wd-xl-95p-f {
21259
    min-width: 95% !important;
21260
  }
16848 stevensc 21261
 
16825 efrain 21262
  .wd-xl-100 {
21263
    width: 100px;
21264
  }
16848 stevensc 21265
 
16825 efrain 21266
  .wd-xl-100p {
21267
    width: 100%;
21268
  }
16848 stevensc 21269
 
16825 efrain 21270
  .mx-wd-xl-100p {
21271
    max-width: 100%;
21272
  }
16848 stevensc 21273
 
16825 efrain 21274
  .mn-wd-xl-100p {
21275
    min-width: 100%;
21276
  }
16848 stevensc 21277
 
16825 efrain 21278
  .wd-xl-100-f {
21279
    width: 100px !important;
21280
  }
16848 stevensc 21281
 
16825 efrain 21282
  .wd-xl-100p-f {
21283
    width: 100% !important;
21284
  }
16848 stevensc 21285
 
16825 efrain 21286
  .mx-wd-xl-100p-f {
21287
    max-width: 100% !important;
21288
  }
16848 stevensc 21289
 
16825 efrain 21290
  .mn-wd-xl-100p-f {
21291
    min-width: 100% !important;
21292
  }
16848 stevensc 21293
 
16825 efrain 21294
  .wd-xl-150 {
21295
    width: 150px;
21296
  }
16848 stevensc 21297
 
16825 efrain 21298
  .wd-xl-150p {
21299
    width: 150%;
21300
  }
16848 stevensc 21301
 
16825 efrain 21302
  .mx-wd-xl-150p {
21303
    max-width: 150%;
21304
  }
16848 stevensc 21305
 
16825 efrain 21306
  .mn-wd-xl-150p {
21307
    min-width: 150%;
21308
  }
16848 stevensc 21309
 
16825 efrain 21310
  .wd-xl-150-f {
21311
    width: 150px !important;
21312
  }
16848 stevensc 21313
 
16825 efrain 21314
  .wd-xl-150p-f {
21315
    width: 150% !important;
21316
  }
16848 stevensc 21317
 
16825 efrain 21318
  .mx-wd-xl-150p-f {
21319
    max-width: 150% !important;
21320
  }
16848 stevensc 21321
 
16825 efrain 21322
  .mn-wd-xl-150p-f {
21323
    min-width: 150% !important;
21324
  }
16848 stevensc 21325
 
16825 efrain 21326
  .wd-xl-200 {
21327
    width: 200px;
21328
  }
16848 stevensc 21329
 
16825 efrain 21330
  .wd-xl-200p {
21331
    width: 200%;
21332
  }
16848 stevensc 21333
 
16825 efrain 21334
  .mx-wd-xl-200p {
21335
    max-width: 200%;
21336
  }
16848 stevensc 21337
 
16825 efrain 21338
  .mn-wd-xl-200p {
21339
    min-width: 200%;
21340
  }
16848 stevensc 21341
 
16825 efrain 21342
  .wd-xl-200-f {
21343
    width: 200px !important;
21344
  }
16848 stevensc 21345
 
16825 efrain 21346
  .wd-xl-200p-f {
21347
    width: 200% !important;
21348
  }
16848 stevensc 21349
 
16825 efrain 21350
  .mx-wd-xl-200p-f {
21351
    max-width: 200% !important;
21352
  }
16848 stevensc 21353
 
16825 efrain 21354
  .mn-wd-xl-200p-f {
21355
    min-width: 200% !important;
21356
  }
16848 stevensc 21357
 
16825 efrain 21358
  .wd-xl-250 {
21359
    width: 250px;
21360
  }
16848 stevensc 21361
 
16825 efrain 21362
  .wd-xl-250p {
21363
    width: 250%;
21364
  }
16848 stevensc 21365
 
16825 efrain 21366
  .mx-wd-xl-250p {
21367
    max-width: 250%;
21368
  }
16848 stevensc 21369
 
16825 efrain 21370
  .mn-wd-xl-250p {
21371
    min-width: 250%;
21372
  }
16848 stevensc 21373
 
16825 efrain 21374
  .wd-xl-250-f {
21375
    width: 250px !important;
21376
  }
16848 stevensc 21377
 
16825 efrain 21378
  .wd-xl-250p-f {
21379
    width: 250% !important;
21380
  }
16848 stevensc 21381
 
16825 efrain 21382
  .mx-wd-xl-250p-f {
21383
    max-width: 250% !important;
21384
  }
16848 stevensc 21385
 
16825 efrain 21386
  .mn-wd-xl-250p-f {
21387
    min-width: 250% !important;
21388
  }
16848 stevensc 21389
 
16825 efrain 21390
  .wd-xl-300 {
21391
    width: 300px;
21392
  }
16848 stevensc 21393
 
16825 efrain 21394
  .wd-xl-300p {
21395
    width: 300%;
21396
  }
16848 stevensc 21397
 
16825 efrain 21398
  .mx-wd-xl-300p {
21399
    max-width: 300%;
21400
  }
16848 stevensc 21401
 
16825 efrain 21402
  .mn-wd-xl-300p {
21403
    min-width: 300%;
21404
  }
16848 stevensc 21405
 
16825 efrain 21406
  .wd-xl-300-f {
21407
    width: 300px !important;
21408
  }
16848 stevensc 21409
 
16825 efrain 21410
  .wd-xl-300p-f {
21411
    width: 300% !important;
21412
  }
16848 stevensc 21413
 
16825 efrain 21414
  .mx-wd-xl-300p-f {
21415
    max-width: 300% !important;
21416
  }
16848 stevensc 21417
 
16825 efrain 21418
  .mn-wd-xl-300p-f {
21419
    min-width: 300% !important;
21420
  }
16848 stevensc 21421
 
16825 efrain 21422
  .wd-xl-350 {
21423
    width: 350px;
21424
  }
16848 stevensc 21425
 
16825 efrain 21426
  .wd-xl-350p {
21427
    width: 350%;
21428
  }
16848 stevensc 21429
 
16825 efrain 21430
  .mx-wd-xl-350p {
21431
    max-width: 350%;
21432
  }
16848 stevensc 21433
 
16825 efrain 21434
  .mn-wd-xl-350p {
21435
    min-width: 350%;
21436
  }
16848 stevensc 21437
 
16825 efrain 21438
  .wd-xl-350-f {
21439
    width: 350px !important;
21440
  }
16848 stevensc 21441
 
16825 efrain 21442
  .wd-xl-350p-f {
21443
    width: 350% !important;
21444
  }
16848 stevensc 21445
 
16825 efrain 21446
  .mx-wd-xl-350p-f {
21447
    max-width: 350% !important;
21448
  }
16848 stevensc 21449
 
16825 efrain 21450
  .mn-wd-xl-350p-f {
21451
    min-width: 350% !important;
21452
  }
16848 stevensc 21453
 
16825 efrain 21454
  .wd-xl-400 {
21455
    width: 400px;
21456
  }
16848 stevensc 21457
 
16825 efrain 21458
  .wd-xl-400p {
21459
    width: 400%;
21460
  }
16848 stevensc 21461
 
16825 efrain 21462
  .mx-wd-xl-400p {
21463
    max-width: 400%;
21464
  }
16848 stevensc 21465
 
16825 efrain 21466
  .mn-wd-xl-400p {
21467
    min-width: 400%;
21468
  }
16848 stevensc 21469
 
16825 efrain 21470
  .wd-xl-400-f {
21471
    width: 400px !important;
21472
  }
16848 stevensc 21473
 
16825 efrain 21474
  .wd-xl-400p-f {
21475
    width: 400% !important;
21476
  }
16848 stevensc 21477
 
16825 efrain 21478
  .mx-wd-xl-400p-f {
21479
    max-width: 400% !important;
21480
  }
16848 stevensc 21481
 
16825 efrain 21482
  .mn-wd-xl-400p-f {
21483
    min-width: 400% !important;
21484
  }
16848 stevensc 21485
 
16825 efrain 21486
  .wd-xl-450 {
21487
    width: 450px;
21488
  }
16848 stevensc 21489
 
16825 efrain 21490
  .wd-xl-450p {
21491
    width: 450%;
21492
  }
16848 stevensc 21493
 
16825 efrain 21494
  .mx-wd-xl-450p {
21495
    max-width: 450%;
21496
  }
16848 stevensc 21497
 
16825 efrain 21498
  .mn-wd-xl-450p {
21499
    min-width: 450%;
21500
  }
16848 stevensc 21501
 
16825 efrain 21502
  .wd-xl-450-f {
21503
    width: 450px !important;
21504
  }
16848 stevensc 21505
 
16825 efrain 21506
  .wd-xl-450p-f {
21507
    width: 450% !important;
21508
  }
16848 stevensc 21509
 
16825 efrain 21510
  .mx-wd-xl-450p-f {
21511
    max-width: 450% !important;
21512
  }
16848 stevensc 21513
 
16825 efrain 21514
  .mn-wd-xl-450p-f {
21515
    min-width: 450% !important;
21516
  }
16848 stevensc 21517
 
16825 efrain 21518
  .wd-xl-500 {
21519
    width: 500px;
21520
  }
16848 stevensc 21521
 
16825 efrain 21522
  .wd-xl-500p {
21523
    width: 500%;
21524
  }
16848 stevensc 21525
 
16825 efrain 21526
  .mx-wd-xl-500p {
21527
    max-width: 500%;
21528
  }
16848 stevensc 21529
 
16825 efrain 21530
  .mn-wd-xl-500p {
21531
    min-width: 500%;
21532
  }
16848 stevensc 21533
 
16825 efrain 21534
  .wd-xl-500-f {
21535
    width: 500px !important;
21536
  }
16848 stevensc 21537
 
16825 efrain 21538
  .wd-xl-500p-f {
21539
    width: 500% !important;
21540
  }
16848 stevensc 21541
 
16825 efrain 21542
  .mx-wd-xl-500p-f {
21543
    max-width: 500% !important;
21544
  }
16848 stevensc 21545
 
16825 efrain 21546
  .mn-wd-xl-500p-f {
21547
    min-width: 500% !important;
21548
  }
16848 stevensc 21549
 
16825 efrain 21550
  .wd-xl-550 {
21551
    width: 550px;
21552
  }
16848 stevensc 21553
 
16825 efrain 21554
  .wd-xl-550p {
21555
    width: 550%;
21556
  }
16848 stevensc 21557
 
16825 efrain 21558
  .mx-wd-xl-550p {
21559
    max-width: 550%;
21560
  }
16848 stevensc 21561
 
16825 efrain 21562
  .mn-wd-xl-550p {
21563
    min-width: 550%;
21564
  }
16848 stevensc 21565
 
16825 efrain 21566
  .wd-xl-550-f {
21567
    width: 550px !important;
21568
  }
16848 stevensc 21569
 
16825 efrain 21570
  .wd-xl-550p-f {
21571
    width: 550% !important;
21572
  }
16848 stevensc 21573
 
16825 efrain 21574
  .mx-wd-xl-550p-f {
21575
    max-width: 550% !important;
21576
  }
16848 stevensc 21577
 
16825 efrain 21578
  .mn-wd-xl-550p-f {
21579
    min-width: 550% !important;
21580
  }
16848 stevensc 21581
 
16825 efrain 21582
  .wd-xl-600 {
21583
    width: 600px;
21584
  }
16848 stevensc 21585
 
16825 efrain 21586
  .wd-xl-600p {
21587
    width: 600%;
21588
  }
16848 stevensc 21589
 
16825 efrain 21590
  .mx-wd-xl-600p {
21591
    max-width: 600%;
21592
  }
16848 stevensc 21593
 
16825 efrain 21594
  .mn-wd-xl-600p {
21595
    min-width: 600%;
21596
  }
16848 stevensc 21597
 
16825 efrain 21598
  .wd-xl-600-f {
21599
    width: 600px !important;
21600
  }
16848 stevensc 21601
 
16825 efrain 21602
  .wd-xl-600p-f {
21603
    width: 600% !important;
21604
  }
16848 stevensc 21605
 
16825 efrain 21606
  .mx-wd-xl-600p-f {
21607
    max-width: 600% !important;
21608
  }
16848 stevensc 21609
 
16825 efrain 21610
  .mn-wd-xl-600p-f {
21611
    min-width: 600% !important;
21612
  }
16848 stevensc 21613
 
16825 efrain 21614
  .wd-xl-650 {
21615
    width: 650px;
21616
  }
16848 stevensc 21617
 
16825 efrain 21618
  .wd-xl-650p {
21619
    width: 650%;
21620
  }
16848 stevensc 21621
 
16825 efrain 21622
  .mx-wd-xl-650p {
21623
    max-width: 650%;
21624
  }
16848 stevensc 21625
 
16825 efrain 21626
  .mn-wd-xl-650p {
21627
    min-width: 650%;
21628
  }
16848 stevensc 21629
 
16825 efrain 21630
  .wd-xl-650-f {
21631
    width: 650px !important;
21632
  }
16848 stevensc 21633
 
16825 efrain 21634
  .wd-xl-650p-f {
21635
    width: 650% !important;
21636
  }
16848 stevensc 21637
 
16825 efrain 21638
  .mx-wd-xl-650p-f {
21639
    max-width: 650% !important;
21640
  }
16848 stevensc 21641
 
16825 efrain 21642
  .mn-wd-xl-650p-f {
21643
    min-width: 650% !important;
21644
  }
16848 stevensc 21645
 
16825 efrain 21646
  .wd-xl-700 {
21647
    width: 700px;
21648
  }
16848 stevensc 21649
 
16825 efrain 21650
  .wd-xl-700p {
21651
    width: 700%;
21652
  }
16848 stevensc 21653
 
16825 efrain 21654
  .mx-wd-xl-700p {
21655
    max-width: 700%;
21656
  }
16848 stevensc 21657
 
16825 efrain 21658
  .mn-wd-xl-700p {
21659
    min-width: 700%;
21660
  }
16848 stevensc 21661
 
16825 efrain 21662
  .wd-xl-700-f {
21663
    width: 700px !important;
21664
  }
16848 stevensc 21665
 
16825 efrain 21666
  .wd-xl-700p-f {
21667
    width: 700% !important;
21668
  }
16848 stevensc 21669
 
16825 efrain 21670
  .mx-wd-xl-700p-f {
21671
    max-width: 700% !important;
21672
  }
16848 stevensc 21673
 
16825 efrain 21674
  .mn-wd-xl-700p-f {
21675
    min-width: 700% !important;
21676
  }
16848 stevensc 21677
 
16825 efrain 21678
  .wd-xl-750 {
21679
    width: 750px;
21680
  }
16848 stevensc 21681
 
16825 efrain 21682
  .wd-xl-750p {
21683
    width: 750%;
21684
  }
16848 stevensc 21685
 
16825 efrain 21686
  .mx-wd-xl-750p {
21687
    max-width: 750%;
21688
  }
16848 stevensc 21689
 
16825 efrain 21690
  .mn-wd-xl-750p {
21691
    min-width: 750%;
21692
  }
16848 stevensc 21693
 
16825 efrain 21694
  .wd-xl-750-f {
21695
    width: 750px !important;
21696
  }
16848 stevensc 21697
 
16825 efrain 21698
  .wd-xl-750p-f {
21699
    width: 750% !important;
21700
  }
16848 stevensc 21701
 
16825 efrain 21702
  .mx-wd-xl-750p-f {
21703
    max-width: 750% !important;
21704
  }
16848 stevensc 21705
 
16825 efrain 21706
  .mn-wd-xl-750p-f {
21707
    min-width: 750% !important;
21708
  }
16848 stevensc 21709
 
16825 efrain 21710
  .wd-xl-800 {
21711
    width: 800px;
21712
  }
16848 stevensc 21713
 
16825 efrain 21714
  .wd-xl-800p {
21715
    width: 800%;
21716
  }
16848 stevensc 21717
 
16825 efrain 21718
  .mx-wd-xl-800p {
21719
    max-width: 800%;
21720
  }
16848 stevensc 21721
 
16825 efrain 21722
  .mn-wd-xl-800p {
21723
    min-width: 800%;
21724
  }
16848 stevensc 21725
 
16825 efrain 21726
  .wd-xl-800-f {
21727
    width: 800px !important;
21728
  }
16848 stevensc 21729
 
16825 efrain 21730
  .wd-xl-800p-f {
21731
    width: 800% !important;
21732
  }
16848 stevensc 21733
 
16825 efrain 21734
  .mx-wd-xl-800p-f {
21735
    max-width: 800% !important;
21736
  }
16848 stevensc 21737
 
16825 efrain 21738
  .mn-wd-xl-800p-f {
21739
    min-width: 800% !important;
21740
  }
16848 stevensc 21741
 
16825 efrain 21742
  .wd-xl-850 {
21743
    width: 850px;
21744
  }
16848 stevensc 21745
 
16825 efrain 21746
  .wd-xl-850p {
21747
    width: 850%;
21748
  }
16848 stevensc 21749
 
16825 efrain 21750
  .mx-wd-xl-850p {
21751
    max-width: 850%;
21752
  }
16848 stevensc 21753
 
16825 efrain 21754
  .mn-wd-xl-850p {
21755
    min-width: 850%;
21756
  }
16848 stevensc 21757
 
16825 efrain 21758
  .wd-xl-850-f {
21759
    width: 850px !important;
21760
  }
16848 stevensc 21761
 
16825 efrain 21762
  .wd-xl-850p-f {
21763
    width: 850% !important;
21764
  }
16848 stevensc 21765
 
16825 efrain 21766
  .mx-wd-xl-850p-f {
21767
    max-width: 850% !important;
21768
  }
16848 stevensc 21769
 
16825 efrain 21770
  .mn-wd-xl-850p-f {
21771
    min-width: 850% !important;
21772
  }
16848 stevensc 21773
 
16825 efrain 21774
  .wd-xl-900 {
21775
    width: 900px;
21776
  }
16848 stevensc 21777
 
16825 efrain 21778
  .wd-xl-900p {
21779
    width: 900%;
21780
  }
16848 stevensc 21781
 
16825 efrain 21782
  .mx-wd-xl-900p {
21783
    max-width: 900%;
21784
  }
16848 stevensc 21785
 
16825 efrain 21786
  .mn-wd-xl-900p {
21787
    min-width: 900%;
21788
  }
16848 stevensc 21789
 
16825 efrain 21790
  .wd-xl-900-f {
21791
    width: 900px !important;
21792
  }
16848 stevensc 21793
 
16825 efrain 21794
  .wd-xl-900p-f {
21795
    width: 900% !important;
21796
  }
16848 stevensc 21797
 
16825 efrain 21798
  .mx-wd-xl-900p-f {
21799
    max-width: 900% !important;
21800
  }
16848 stevensc 21801
 
16825 efrain 21802
  .mn-wd-xl-900p-f {
21803
    min-width: 900% !important;
21804
  }
16848 stevensc 21805
 
16825 efrain 21806
  .wd-xl-950 {
21807
    width: 950px;
21808
  }
16848 stevensc 21809
 
16825 efrain 21810
  .wd-xl-950p {
21811
    width: 950%;
21812
  }
16848 stevensc 21813
 
16825 efrain 21814
  .mx-wd-xl-950p {
21815
    max-width: 950%;
21816
  }
16848 stevensc 21817
 
16825 efrain 21818
  .mn-wd-xl-950p {
21819
    min-width: 950%;
21820
  }
16848 stevensc 21821
 
16825 efrain 21822
  .wd-xl-950-f {
21823
    width: 950px !important;
21824
  }
16848 stevensc 21825
 
16825 efrain 21826
  .wd-xl-950p-f {
21827
    width: 950% !important;
21828
  }
16848 stevensc 21829
 
16825 efrain 21830
  .mx-wd-xl-950p-f {
21831
    max-width: 950% !important;
21832
  }
16848 stevensc 21833
 
16825 efrain 21834
  .mn-wd-xl-950p-f {
21835
    min-width: 950% !important;
21836
  }
16848 stevensc 21837
 
16825 efrain 21838
  .wd-xl-1000 {
21839
    width: 1000px;
21840
  }
16848 stevensc 21841
 
16825 efrain 21842
  .wd-xl-1000p {
21843
    width: 1000%;
21844
  }
16848 stevensc 21845
 
16825 efrain 21846
  .mx-wd-xl-1000p {
21847
    max-width: 1000%;
21848
  }
16848 stevensc 21849
 
16825 efrain 21850
  .mn-wd-xl-1000p {
21851
    min-width: 1000%;
21852
  }
16848 stevensc 21853
 
16825 efrain 21854
  .wd-xl-1000-f {
21855
    width: 1000px !important;
21856
  }
16848 stevensc 21857
 
16825 efrain 21858
  .wd-xl-1000p-f {
21859
    width: 1000% !important;
21860
  }
16848 stevensc 21861
 
16825 efrain 21862
  .mx-wd-xl-1000p-f {
21863
    max-width: 1000% !important;
21864
  }
16848 stevensc 21865
 
16825 efrain 21866
  .mn-wd-xl-1000p-f {
21867
    min-width: 1000% !important;
21868
  }
16848 stevensc 21869
 
16825 efrain 21870
  .wd-xl-auto {
21871
    width: auto;
21872
  }
16848 stevensc 21873
 
16825 efrain 21874
  .wd-xl-auto {
21875
    width: auto !important;
21876
  }
21877
}
16848 stevensc 21878
 
16825 efrain 21879
@media (min-width: 1400px) {
21880
  .wd-xxl-5 {
21881
    width: 5px;
21882
  }
16848 stevensc 21883
 
16825 efrain 21884
  .wd-xxl-5p {
21885
    width: 5%;
21886
  }
16848 stevensc 21887
 
16825 efrain 21888
  .mx-wd-xxl-5p {
21889
    max-width: 5%;
21890
  }
16848 stevensc 21891
 
16825 efrain 21892
  .mn-wd-xxl-5p {
21893
    min-width: 5%;
21894
  }
16848 stevensc 21895
 
16825 efrain 21896
  .wd-xxl-5-f {
21897
    width: 5px !important;
21898
  }
16848 stevensc 21899
 
16825 efrain 21900
  .wd-xxl-5p-f {
21901
    width: 5% !important;
21902
  }
16848 stevensc 21903
 
16825 efrain 21904
  .mx-wd-xxl-5p-f {
21905
    max-width: 5% !important;
21906
  }
16848 stevensc 21907
 
16825 efrain 21908
  .mn-wd-xxl-5p-f {
21909
    min-width: 5% !important;
21910
  }
16848 stevensc 21911
 
16825 efrain 21912
  .wd-xxl-10 {
21913
    width: 10px;
21914
  }
16848 stevensc 21915
 
16825 efrain 21916
  .wd-xxl-10p {
21917
    width: 10%;
21918
  }
16848 stevensc 21919
 
16825 efrain 21920
  .mx-wd-xxl-10p {
21921
    max-width: 10%;
21922
  }
16848 stevensc 21923
 
16825 efrain 21924
  .mn-wd-xxl-10p {
21925
    min-width: 10%;
21926
  }
16848 stevensc 21927
 
16825 efrain 21928
  .wd-xxl-10-f {
21929
    width: 10px !important;
21930
  }
16848 stevensc 21931
 
16825 efrain 21932
  .wd-xxl-10p-f {
21933
    width: 10% !important;
21934
  }
16848 stevensc 21935
 
16825 efrain 21936
  .mx-wd-xxl-10p-f {
21937
    max-width: 10% !important;
21938
  }
16848 stevensc 21939
 
16825 efrain 21940
  .mn-wd-xxl-10p-f {
21941
    min-width: 10% !important;
21942
  }
16848 stevensc 21943
 
16825 efrain 21944
  .wd-xxl-15 {
21945
    width: 15px;
21946
  }
16848 stevensc 21947
 
16825 efrain 21948
  .wd-xxl-15p {
21949
    width: 15%;
21950
  }
16848 stevensc 21951
 
16825 efrain 21952
  .mx-wd-xxl-15p {
21953
    max-width: 15%;
21954
  }
16848 stevensc 21955
 
16825 efrain 21956
  .mn-wd-xxl-15p {
21957
    min-width: 15%;
21958
  }
16848 stevensc 21959
 
16825 efrain 21960
  .wd-xxl-15-f {
21961
    width: 15px !important;
21962
  }
16848 stevensc 21963
 
16825 efrain 21964
  .wd-xxl-15p-f {
21965
    width: 15% !important;
21966
  }
16848 stevensc 21967
 
16825 efrain 21968
  .mx-wd-xxl-15p-f {
21969
    max-width: 15% !important;
21970
  }
16848 stevensc 21971
 
16825 efrain 21972
  .mn-wd-xxl-15p-f {
21973
    min-width: 15% !important;
21974
  }
16848 stevensc 21975
 
16825 efrain 21976
  .wd-xxl-20 {
21977
    width: 20px;
21978
  }
16848 stevensc 21979
 
16825 efrain 21980
  .wd-xxl-20p {
21981
    width: 20%;
21982
  }
16848 stevensc 21983
 
16825 efrain 21984
  .mx-wd-xxl-20p {
21985
    max-width: 20%;
21986
  }
16848 stevensc 21987
 
16825 efrain 21988
  .mn-wd-xxl-20p {
21989
    min-width: 20%;
21990
  }
16848 stevensc 21991
 
16825 efrain 21992
  .wd-xxl-20-f {
21993
    width: 20px !important;
21994
  }
16848 stevensc 21995
 
16825 efrain 21996
  .wd-xxl-20p-f {
21997
    width: 20% !important;
21998
  }
16848 stevensc 21999
 
16825 efrain 22000
  .mx-wd-xxl-20p-f {
22001
    max-width: 20% !important;
22002
  }
16848 stevensc 22003
 
16825 efrain 22004
  .mn-wd-xxl-20p-f {
22005
    min-width: 20% !important;
22006
  }
16848 stevensc 22007
 
16825 efrain 22008
  .wd-xxl-25 {
22009
    width: 25px;
22010
  }
16848 stevensc 22011
 
16825 efrain 22012
  .wd-xxl-25p {
22013
    width: 25%;
22014
  }
16848 stevensc 22015
 
16825 efrain 22016
  .mx-wd-xxl-25p {
22017
    max-width: 25%;
22018
  }
16848 stevensc 22019
 
16825 efrain 22020
  .mn-wd-xxl-25p {
22021
    min-width: 25%;
22022
  }
16848 stevensc 22023
 
16825 efrain 22024
  .wd-xxl-25-f {
22025
    width: 25px !important;
22026
  }
16848 stevensc 22027
 
16825 efrain 22028
  .wd-xxl-25p-f {
22029
    width: 25% !important;
22030
  }
16848 stevensc 22031
 
16825 efrain 22032
  .mx-wd-xxl-25p-f {
22033
    max-width: 25% !important;
22034
  }
16848 stevensc 22035
 
16825 efrain 22036
  .mn-wd-xxl-25p-f {
22037
    min-width: 25% !important;
22038
  }
16848 stevensc 22039
 
16825 efrain 22040
  .wd-xxl-30 {
22041
    width: 30px;
22042
  }
16848 stevensc 22043
 
16825 efrain 22044
  .wd-xxl-30p {
22045
    width: 30%;
22046
  }
16848 stevensc 22047
 
16825 efrain 22048
  .mx-wd-xxl-30p {
22049
    max-width: 30%;
22050
  }
16848 stevensc 22051
 
16825 efrain 22052
  .mn-wd-xxl-30p {
22053
    min-width: 30%;
22054
  }
16848 stevensc 22055
 
16825 efrain 22056
  .wd-xxl-30-f {
22057
    width: 30px !important;
22058
  }
16848 stevensc 22059
 
16825 efrain 22060
  .wd-xxl-30p-f {
22061
    width: 30% !important;
22062
  }
16848 stevensc 22063
 
16825 efrain 22064
  .mx-wd-xxl-30p-f {
22065
    max-width: 30% !important;
22066
  }
16848 stevensc 22067
 
16825 efrain 22068
  .mn-wd-xxl-30p-f {
22069
    min-width: 30% !important;
22070
  }
16848 stevensc 22071
 
16825 efrain 22072
  .wd-xxl-35 {
22073
    width: 35px;
22074
  }
16848 stevensc 22075
 
16825 efrain 22076
  .wd-xxl-35p {
22077
    width: 35%;
22078
  }
16848 stevensc 22079
 
16825 efrain 22080
  .mx-wd-xxl-35p {
22081
    max-width: 35%;
22082
  }
16848 stevensc 22083
 
16825 efrain 22084
  .mn-wd-xxl-35p {
22085
    min-width: 35%;
22086
  }
16848 stevensc 22087
 
16825 efrain 22088
  .wd-xxl-35-f {
22089
    width: 35px !important;
22090
  }
16848 stevensc 22091
 
16825 efrain 22092
  .wd-xxl-35p-f {
22093
    width: 35% !important;
22094
  }
16848 stevensc 22095
 
16825 efrain 22096
  .mx-wd-xxl-35p-f {
22097
    max-width: 35% !important;
22098
  }
16848 stevensc 22099
 
16825 efrain 22100
  .mn-wd-xxl-35p-f {
22101
    min-width: 35% !important;
22102
  }
16848 stevensc 22103
 
16825 efrain 22104
  .wd-xxl-40 {
22105
    width: 40px;
22106
  }
16848 stevensc 22107
 
16825 efrain 22108
  .wd-xxl-40p {
22109
    width: 40%;
22110
  }
16848 stevensc 22111
 
16825 efrain 22112
  .mx-wd-xxl-40p {
22113
    max-width: 40%;
22114
  }
16848 stevensc 22115
 
16825 efrain 22116
  .mn-wd-xxl-40p {
22117
    min-width: 40%;
22118
  }
16848 stevensc 22119
 
16825 efrain 22120
  .wd-xxl-40-f {
22121
    width: 40px !important;
22122
  }
16848 stevensc 22123
 
16825 efrain 22124
  .wd-xxl-40p-f {
22125
    width: 40% !important;
22126
  }
16848 stevensc 22127
 
16825 efrain 22128
  .mx-wd-xxl-40p-f {
22129
    max-width: 40% !important;
22130
  }
16848 stevensc 22131
 
16825 efrain 22132
  .mn-wd-xxl-40p-f {
22133
    min-width: 40% !important;
22134
  }
16848 stevensc 22135
 
16825 efrain 22136
  .wd-xxl-45 {
22137
    width: 45px;
22138
  }
16848 stevensc 22139
 
16825 efrain 22140
  .wd-xxl-45p {
22141
    width: 45%;
22142
  }
16848 stevensc 22143
 
16825 efrain 22144
  .mx-wd-xxl-45p {
22145
    max-width: 45%;
22146
  }
16848 stevensc 22147
 
16825 efrain 22148
  .mn-wd-xxl-45p {
22149
    min-width: 45%;
22150
  }
16848 stevensc 22151
 
16825 efrain 22152
  .wd-xxl-45-f {
22153
    width: 45px !important;
22154
  }
16848 stevensc 22155
 
16825 efrain 22156
  .wd-xxl-45p-f {
22157
    width: 45% !important;
22158
  }
16848 stevensc 22159
 
16825 efrain 22160
  .mx-wd-xxl-45p-f {
22161
    max-width: 45% !important;
22162
  }
16848 stevensc 22163
 
16825 efrain 22164
  .mn-wd-xxl-45p-f {
22165
    min-width: 45% !important;
22166
  }
16848 stevensc 22167
 
16825 efrain 22168
  .wd-xxl-50 {
22169
    width: 50px;
22170
  }
16848 stevensc 22171
 
16825 efrain 22172
  .wd-xxl-50p {
22173
    width: 50%;
22174
  }
16848 stevensc 22175
 
16825 efrain 22176
  .mx-wd-xxl-50p {
22177
    max-width: 50%;
22178
  }
16848 stevensc 22179
 
16825 efrain 22180
  .mn-wd-xxl-50p {
22181
    min-width: 50%;
22182
  }
16848 stevensc 22183
 
16825 efrain 22184
  .wd-xxl-50-f {
22185
    width: 50px !important;
22186
  }
16848 stevensc 22187
 
16825 efrain 22188
  .wd-xxl-50p-f {
22189
    width: 50% !important;
22190
  }
16848 stevensc 22191
 
16825 efrain 22192
  .mx-wd-xxl-50p-f {
22193
    max-width: 50% !important;
22194
  }
16848 stevensc 22195
 
16825 efrain 22196
  .mn-wd-xxl-50p-f {
22197
    min-width: 50% !important;
22198
  }
16848 stevensc 22199
 
16825 efrain 22200
  .wd-xxl-55 {
22201
    width: 55px;
22202
  }
16848 stevensc 22203
 
16825 efrain 22204
  .wd-xxl-55p {
22205
    width: 55%;
22206
  }
16848 stevensc 22207
 
16825 efrain 22208
  .mx-wd-xxl-55p {
22209
    max-width: 55%;
22210
  }
16848 stevensc 22211
 
16825 efrain 22212
  .mn-wd-xxl-55p {
22213
    min-width: 55%;
22214
  }
16848 stevensc 22215
 
16825 efrain 22216
  .wd-xxl-55-f {
22217
    width: 55px !important;
22218
  }
16848 stevensc 22219
 
16825 efrain 22220
  .wd-xxl-55p-f {
22221
    width: 55% !important;
22222
  }
16848 stevensc 22223
 
16825 efrain 22224
  .mx-wd-xxl-55p-f {
22225
    max-width: 55% !important;
22226
  }
16848 stevensc 22227
 
16825 efrain 22228
  .mn-wd-xxl-55p-f {
22229
    min-width: 55% !important;
22230
  }
16848 stevensc 22231
 
16825 efrain 22232
  .wd-xxl-60 {
22233
    width: 60px;
22234
  }
16848 stevensc 22235
 
16825 efrain 22236
  .wd-xxl-60p {
22237
    width: 60%;
22238
  }
16848 stevensc 22239
 
16825 efrain 22240
  .mx-wd-xxl-60p {
22241
    max-width: 60%;
22242
  }
16848 stevensc 22243
 
16825 efrain 22244
  .mn-wd-xxl-60p {
22245
    min-width: 60%;
22246
  }
16848 stevensc 22247
 
16825 efrain 22248
  .wd-xxl-60-f {
22249
    width: 60px !important;
22250
  }
16848 stevensc 22251
 
16825 efrain 22252
  .wd-xxl-60p-f {
22253
    width: 60% !important;
22254
  }
16848 stevensc 22255
 
16825 efrain 22256
  .mx-wd-xxl-60p-f {
22257
    max-width: 60% !important;
22258
  }
16848 stevensc 22259
 
16825 efrain 22260
  .mn-wd-xxl-60p-f {
22261
    min-width: 60% !important;
22262
  }
16848 stevensc 22263
 
16825 efrain 22264
  .wd-xxl-65 {
22265
    width: 65px;
22266
  }
16848 stevensc 22267
 
16825 efrain 22268
  .wd-xxl-65p {
22269
    width: 65%;
22270
  }
16848 stevensc 22271
 
16825 efrain 22272
  .mx-wd-xxl-65p {
22273
    max-width: 65%;
22274
  }
16848 stevensc 22275
 
16825 efrain 22276
  .mn-wd-xxl-65p {
22277
    min-width: 65%;
22278
  }
16848 stevensc 22279
 
16825 efrain 22280
  .wd-xxl-65-f {
22281
    width: 65px !important;
22282
  }
16848 stevensc 22283
 
16825 efrain 22284
  .wd-xxl-65p-f {
22285
    width: 65% !important;
22286
  }
16848 stevensc 22287
 
16825 efrain 22288
  .mx-wd-xxl-65p-f {
22289
    max-width: 65% !important;
22290
  }
16848 stevensc 22291
 
16825 efrain 22292
  .mn-wd-xxl-65p-f {
22293
    min-width: 65% !important;
22294
  }
16848 stevensc 22295
 
16825 efrain 22296
  .wd-xxl-70 {
22297
    width: 70px;
22298
  }
16848 stevensc 22299
 
16825 efrain 22300
  .wd-xxl-70p {
22301
    width: 70%;
22302
  }
16848 stevensc 22303
 
16825 efrain 22304
  .mx-wd-xxl-70p {
22305
    max-width: 70%;
22306
  }
16848 stevensc 22307
 
16825 efrain 22308
  .mn-wd-xxl-70p {
22309
    min-width: 70%;
22310
  }
16848 stevensc 22311
 
16825 efrain 22312
  .wd-xxl-70-f {
22313
    width: 70px !important;
22314
  }
16848 stevensc 22315
 
16825 efrain 22316
  .wd-xxl-70p-f {
22317
    width: 70% !important;
22318
  }
16848 stevensc 22319
 
16825 efrain 22320
  .mx-wd-xxl-70p-f {
22321
    max-width: 70% !important;
22322
  }
16848 stevensc 22323
 
16825 efrain 22324
  .mn-wd-xxl-70p-f {
22325
    min-width: 70% !important;
22326
  }
16848 stevensc 22327
 
16825 efrain 22328
  .wd-xxl-75 {
22329
    width: 75px;
22330
  }
16848 stevensc 22331
 
16825 efrain 22332
  .wd-xxl-75p {
22333
    width: 75%;
22334
  }
16848 stevensc 22335
 
16825 efrain 22336
  .mx-wd-xxl-75p {
22337
    max-width: 75%;
22338
  }
16848 stevensc 22339
 
16825 efrain 22340
  .mn-wd-xxl-75p {
22341
    min-width: 75%;
22342
  }
16848 stevensc 22343
 
16825 efrain 22344
  .wd-xxl-75-f {
22345
    width: 75px !important;
22346
  }
16848 stevensc 22347
 
16825 efrain 22348
  .wd-xxl-75p-f {
22349
    width: 75% !important;
22350
  }
16848 stevensc 22351
 
16825 efrain 22352
  .mx-wd-xxl-75p-f {
22353
    max-width: 75% !important;
22354
  }
16848 stevensc 22355
 
16825 efrain 22356
  .mn-wd-xxl-75p-f {
22357
    min-width: 75% !important;
22358
  }
16848 stevensc 22359
 
16825 efrain 22360
  .wd-xxl-80 {
22361
    width: 80px;
22362
  }
16848 stevensc 22363
 
16825 efrain 22364
  .wd-xxl-80p {
22365
    width: 80%;
22366
  }
16848 stevensc 22367
 
16825 efrain 22368
  .mx-wd-xxl-80p {
22369
    max-width: 80%;
22370
  }
16848 stevensc 22371
 
16825 efrain 22372
  .mn-wd-xxl-80p {
22373
    min-width: 80%;
22374
  }
16848 stevensc 22375
 
16825 efrain 22376
  .wd-xxl-80-f {
22377
    width: 80px !important;
22378
  }
16848 stevensc 22379
 
16825 efrain 22380
  .wd-xxl-80p-f {
22381
    width: 80% !important;
22382
  }
16848 stevensc 22383
 
16825 efrain 22384
  .mx-wd-xxl-80p-f {
22385
    max-width: 80% !important;
22386
  }
16848 stevensc 22387
 
16825 efrain 22388
  .mn-wd-xxl-80p-f {
22389
    min-width: 80% !important;
22390
  }
16848 stevensc 22391
 
16825 efrain 22392
  .wd-xxl-85 {
22393
    width: 85px;
22394
  }
16848 stevensc 22395
 
16825 efrain 22396
  .wd-xxl-85p {
22397
    width: 85%;
22398
  }
16848 stevensc 22399
 
16825 efrain 22400
  .mx-wd-xxl-85p {
22401
    max-width: 85%;
22402
  }
16848 stevensc 22403
 
16825 efrain 22404
  .mn-wd-xxl-85p {
22405
    min-width: 85%;
22406
  }
16848 stevensc 22407
 
16825 efrain 22408
  .wd-xxl-85-f {
22409
    width: 85px !important;
22410
  }
16848 stevensc 22411
 
16825 efrain 22412
  .wd-xxl-85p-f {
22413
    width: 85% !important;
22414
  }
16848 stevensc 22415
 
16825 efrain 22416
  .mx-wd-xxl-85p-f {
22417
    max-width: 85% !important;
22418
  }
16848 stevensc 22419
 
16825 efrain 22420
  .mn-wd-xxl-85p-f {
22421
    min-width: 85% !important;
22422
  }
16848 stevensc 22423
 
16825 efrain 22424
  .wd-xxl-90 {
22425
    width: 90px;
22426
  }
16848 stevensc 22427
 
16825 efrain 22428
  .wd-xxl-90p {
22429
    width: 90%;
22430
  }
16848 stevensc 22431
 
16825 efrain 22432
  .mx-wd-xxl-90p {
22433
    max-width: 90%;
22434
  }
16848 stevensc 22435
 
16825 efrain 22436
  .mn-wd-xxl-90p {
22437
    min-width: 90%;
22438
  }
16848 stevensc 22439
 
16825 efrain 22440
  .wd-xxl-90-f {
22441
    width: 90px !important;
22442
  }
16848 stevensc 22443
 
16825 efrain 22444
  .wd-xxl-90p-f {
22445
    width: 90% !important;
22446
  }
16848 stevensc 22447
 
16825 efrain 22448
  .mx-wd-xxl-90p-f {
22449
    max-width: 90% !important;
22450
  }
16848 stevensc 22451
 
16825 efrain 22452
  .mn-wd-xxl-90p-f {
22453
    min-width: 90% !important;
22454
  }
16848 stevensc 22455
 
16825 efrain 22456
  .wd-xxl-95 {
22457
    width: 95px;
22458
  }
16848 stevensc 22459
 
16825 efrain 22460
  .wd-xxl-95p {
22461
    width: 95%;
22462
  }
16848 stevensc 22463
 
16825 efrain 22464
  .mx-wd-xxl-95p {
22465
    max-width: 95%;
22466
  }
16848 stevensc 22467
 
16825 efrain 22468
  .mn-wd-xxl-95p {
22469
    min-width: 95%;
22470
  }
16848 stevensc 22471
 
16825 efrain 22472
  .wd-xxl-95-f {
22473
    width: 95px !important;
22474
  }
16848 stevensc 22475
 
16825 efrain 22476
  .wd-xxl-95p-f {
22477
    width: 95% !important;
22478
  }
16848 stevensc 22479
 
16825 efrain 22480
  .mx-wd-xxl-95p-f {
22481
    max-width: 95% !important;
22482
  }
16848 stevensc 22483
 
16825 efrain 22484
  .mn-wd-xxl-95p-f {
22485
    min-width: 95% !important;
22486
  }
16848 stevensc 22487
 
16825 efrain 22488
  .wd-xxl-100 {
22489
    width: 100px;
22490
  }
16848 stevensc 22491
 
16825 efrain 22492
  .wd-xxl-100p {
22493
    width: 100%;
22494
  }
16848 stevensc 22495
 
16825 efrain 22496
  .mx-wd-xxl-100p {
22497
    max-width: 100%;
22498
  }
16848 stevensc 22499
 
16825 efrain 22500
  .mn-wd-xxl-100p {
22501
    min-width: 100%;
22502
  }
16848 stevensc 22503
 
16825 efrain 22504
  .wd-xxl-100-f {
22505
    width: 100px !important;
22506
  }
16848 stevensc 22507
 
16825 efrain 22508
  .wd-xxl-100p-f {
22509
    width: 100% !important;
22510
  }
16848 stevensc 22511
 
16825 efrain 22512
  .mx-wd-xxl-100p-f {
22513
    max-width: 100% !important;
22514
  }
16848 stevensc 22515
 
16825 efrain 22516
  .mn-wd-xxl-100p-f {
22517
    min-width: 100% !important;
22518
  }
16848 stevensc 22519
 
16825 efrain 22520
  .wd-xxl-150 {
22521
    width: 150px;
22522
  }
16848 stevensc 22523
 
16825 efrain 22524
  .wd-xxl-150p {
22525
    width: 150%;
22526
  }
16848 stevensc 22527
 
16825 efrain 22528
  .mx-wd-xxl-150p {
22529
    max-width: 150%;
22530
  }
16848 stevensc 22531
 
16825 efrain 22532
  .mn-wd-xxl-150p {
22533
    min-width: 150%;
22534
  }
16848 stevensc 22535
 
16825 efrain 22536
  .wd-xxl-150-f {
22537
    width: 150px !important;
22538
  }
16848 stevensc 22539
 
16825 efrain 22540
  .wd-xxl-150p-f {
22541
    width: 150% !important;
22542
  }
16848 stevensc 22543
 
16825 efrain 22544
  .mx-wd-xxl-150p-f {
22545
    max-width: 150% !important;
22546
  }
16848 stevensc 22547
 
16825 efrain 22548
  .mn-wd-xxl-150p-f {
22549
    min-width: 150% !important;
22550
  }
16848 stevensc 22551
 
16825 efrain 22552
  .wd-xxl-200 {
22553
    width: 200px;
22554
  }
16848 stevensc 22555
 
16825 efrain 22556
  .wd-xxl-200p {
22557
    width: 200%;
22558
  }
16848 stevensc 22559
 
16825 efrain 22560
  .mx-wd-xxl-200p {
22561
    max-width: 200%;
22562
  }
16848 stevensc 22563
 
16825 efrain 22564
  .mn-wd-xxl-200p {
22565
    min-width: 200%;
22566
  }
16848 stevensc 22567
 
16825 efrain 22568
  .wd-xxl-200-f {
22569
    width: 200px !important;
22570
  }
16848 stevensc 22571
 
16825 efrain 22572
  .wd-xxl-200p-f {
22573
    width: 200% !important;
22574
  }
16848 stevensc 22575
 
16825 efrain 22576
  .mx-wd-xxl-200p-f {
22577
    max-width: 200% !important;
22578
  }
16848 stevensc 22579
 
16825 efrain 22580
  .mn-wd-xxl-200p-f {
22581
    min-width: 200% !important;
22582
  }
16848 stevensc 22583
 
16825 efrain 22584
  .wd-xxl-250 {
22585
    width: 250px;
22586
  }
16848 stevensc 22587
 
16825 efrain 22588
  .wd-xxl-250p {
22589
    width: 250%;
22590
  }
16848 stevensc 22591
 
16825 efrain 22592
  .mx-wd-xxl-250p {
22593
    max-width: 250%;
22594
  }
16848 stevensc 22595
 
16825 efrain 22596
  .mn-wd-xxl-250p {
22597
    min-width: 250%;
22598
  }
16848 stevensc 22599
 
16825 efrain 22600
  .wd-xxl-250-f {
22601
    width: 250px !important;
22602
  }
16848 stevensc 22603
 
16825 efrain 22604
  .wd-xxl-250p-f {
22605
    width: 250% !important;
22606
  }
16848 stevensc 22607
 
16825 efrain 22608
  .mx-wd-xxl-250p-f {
22609
    max-width: 250% !important;
22610
  }
16848 stevensc 22611
 
16825 efrain 22612
  .mn-wd-xxl-250p-f {
22613
    min-width: 250% !important;
22614
  }
16848 stevensc 22615
 
16825 efrain 22616
  .wd-xxl-300 {
22617
    width: 300px;
22618
  }
16848 stevensc 22619
 
16825 efrain 22620
  .wd-xxl-300p {
22621
    width: 300%;
22622
  }
16848 stevensc 22623
 
16825 efrain 22624
  .mx-wd-xxl-300p {
22625
    max-width: 300%;
22626
  }
16848 stevensc 22627
 
16825 efrain 22628
  .mn-wd-xxl-300p {
22629
    min-width: 300%;
22630
  }
16848 stevensc 22631
 
16825 efrain 22632
  .wd-xxl-300-f {
22633
    width: 300px !important;
22634
  }
16848 stevensc 22635
 
16825 efrain 22636
  .wd-xxl-300p-f {
22637
    width: 300% !important;
22638
  }
16848 stevensc 22639
 
16825 efrain 22640
  .mx-wd-xxl-300p-f {
22641
    max-width: 300% !important;
22642
  }
16848 stevensc 22643
 
16825 efrain 22644
  .mn-wd-xxl-300p-f {
22645
    min-width: 300% !important;
22646
  }
16848 stevensc 22647
 
16825 efrain 22648
  .wd-xxl-350 {
22649
    width: 350px;
22650
  }
16848 stevensc 22651
 
16825 efrain 22652
  .wd-xxl-350p {
22653
    width: 350%;
22654
  }
16848 stevensc 22655
 
16825 efrain 22656
  .mx-wd-xxl-350p {
22657
    max-width: 350%;
22658
  }
16848 stevensc 22659
 
16825 efrain 22660
  .mn-wd-xxl-350p {
22661
    min-width: 350%;
22662
  }
16848 stevensc 22663
 
16825 efrain 22664
  .wd-xxl-350-f {
22665
    width: 350px !important;
22666
  }
16848 stevensc 22667
 
16825 efrain 22668
  .wd-xxl-350p-f {
22669
    width: 350% !important;
22670
  }
16848 stevensc 22671
 
16825 efrain 22672
  .mx-wd-xxl-350p-f {
22673
    max-width: 350% !important;
22674
  }
16848 stevensc 22675
 
16825 efrain 22676
  .mn-wd-xxl-350p-f {
22677
    min-width: 350% !important;
22678
  }
16848 stevensc 22679
 
16825 efrain 22680
  .wd-xxl-400 {
22681
    width: 400px;
22682
  }
16848 stevensc 22683
 
16825 efrain 22684
  .wd-xxl-400p {
22685
    width: 400%;
22686
  }
16848 stevensc 22687
 
16825 efrain 22688
  .mx-wd-xxl-400p {
22689
    max-width: 400%;
22690
  }
16848 stevensc 22691
 
16825 efrain 22692
  .mn-wd-xxl-400p {
22693
    min-width: 400%;
22694
  }
16848 stevensc 22695
 
16825 efrain 22696
  .wd-xxl-400-f {
22697
    width: 400px !important;
22698
  }
16848 stevensc 22699
 
16825 efrain 22700
  .wd-xxl-400p-f {
22701
    width: 400% !important;
22702
  }
16848 stevensc 22703
 
16825 efrain 22704
  .mx-wd-xxl-400p-f {
22705
    max-width: 400% !important;
22706
  }
16848 stevensc 22707
 
16825 efrain 22708
  .mn-wd-xxl-400p-f {
22709
    min-width: 400% !important;
22710
  }
16848 stevensc 22711
 
16825 efrain 22712
  .wd-xxl-450 {
22713
    width: 450px;
22714
  }
16848 stevensc 22715
 
16825 efrain 22716
  .wd-xxl-450p {
22717
    width: 450%;
22718
  }
16848 stevensc 22719
 
16825 efrain 22720
  .mx-wd-xxl-450p {
22721
    max-width: 450%;
22722
  }
16848 stevensc 22723
 
16825 efrain 22724
  .mn-wd-xxl-450p {
22725
    min-width: 450%;
22726
  }
16848 stevensc 22727
 
16825 efrain 22728
  .wd-xxl-450-f {
22729
    width: 450px !important;
22730
  }
16848 stevensc 22731
 
16825 efrain 22732
  .wd-xxl-450p-f {
22733
    width: 450% !important;
22734
  }
16848 stevensc 22735
 
16825 efrain 22736
  .mx-wd-xxl-450p-f {
22737
    max-width: 450% !important;
22738
  }
16848 stevensc 22739
 
16825 efrain 22740
  .mn-wd-xxl-450p-f {
22741
    min-width: 450% !important;
22742
  }
16848 stevensc 22743
 
16825 efrain 22744
  .wd-xxl-500 {
22745
    width: 500px;
22746
  }
16848 stevensc 22747
 
16825 efrain 22748
  .wd-xxl-500p {
22749
    width: 500%;
22750
  }
16848 stevensc 22751
 
16825 efrain 22752
  .mx-wd-xxl-500p {
22753
    max-width: 500%;
22754
  }
16848 stevensc 22755
 
16825 efrain 22756
  .mn-wd-xxl-500p {
22757
    min-width: 500%;
22758
  }
16848 stevensc 22759
 
16825 efrain 22760
  .wd-xxl-500-f {
22761
    width: 500px !important;
22762
  }
16848 stevensc 22763
 
16825 efrain 22764
  .wd-xxl-500p-f {
22765
    width: 500% !important;
22766
  }
16848 stevensc 22767
 
16825 efrain 22768
  .mx-wd-xxl-500p-f {
22769
    max-width: 500% !important;
22770
  }
16848 stevensc 22771
 
16825 efrain 22772
  .mn-wd-xxl-500p-f {
22773
    min-width: 500% !important;
22774
  }
16848 stevensc 22775
 
16825 efrain 22776
  .wd-xxl-550 {
22777
    width: 550px;
22778
  }
16848 stevensc 22779
 
16825 efrain 22780
  .wd-xxl-550p {
22781
    width: 550%;
22782
  }
16848 stevensc 22783
 
16825 efrain 22784
  .mx-wd-xxl-550p {
22785
    max-width: 550%;
22786
  }
16848 stevensc 22787
 
16825 efrain 22788
  .mn-wd-xxl-550p {
22789
    min-width: 550%;
22790
  }
16848 stevensc 22791
 
16825 efrain 22792
  .wd-xxl-550-f {
22793
    width: 550px !important;
22794
  }
16848 stevensc 22795
 
16825 efrain 22796
  .wd-xxl-550p-f {
22797
    width: 550% !important;
22798
  }
16848 stevensc 22799
 
16825 efrain 22800
  .mx-wd-xxl-550p-f {
22801
    max-width: 550% !important;
22802
  }
16848 stevensc 22803
 
16825 efrain 22804
  .mn-wd-xxl-550p-f {
22805
    min-width: 550% !important;
22806
  }
16848 stevensc 22807
 
16825 efrain 22808
  .wd-xxl-600 {
22809
    width: 600px;
22810
  }
16848 stevensc 22811
 
16825 efrain 22812
  .wd-xxl-600p {
22813
    width: 600%;
22814
  }
16848 stevensc 22815
 
16825 efrain 22816
  .mx-wd-xxl-600p {
22817
    max-width: 600%;
22818
  }
16848 stevensc 22819
 
16825 efrain 22820
  .mn-wd-xxl-600p {
22821
    min-width: 600%;
22822
  }
16848 stevensc 22823
 
16825 efrain 22824
  .wd-xxl-600-f {
22825
    width: 600px !important;
22826
  }
16848 stevensc 22827
 
16825 efrain 22828
  .wd-xxl-600p-f {
22829
    width: 600% !important;
22830
  }
16848 stevensc 22831
 
16825 efrain 22832
  .mx-wd-xxl-600p-f {
22833
    max-width: 600% !important;
22834
  }
16848 stevensc 22835
 
16825 efrain 22836
  .mn-wd-xxl-600p-f {
22837
    min-width: 600% !important;
22838
  }
16848 stevensc 22839
 
16825 efrain 22840
  .wd-xxl-650 {
22841
    width: 650px;
22842
  }
16848 stevensc 22843
 
16825 efrain 22844
  .wd-xxl-650p {
22845
    width: 650%;
22846
  }
16848 stevensc 22847
 
16825 efrain 22848
  .mx-wd-xxl-650p {
22849
    max-width: 650%;
22850
  }
16848 stevensc 22851
 
16825 efrain 22852
  .mn-wd-xxl-650p {
22853
    min-width: 650%;
22854
  }
16848 stevensc 22855
 
16825 efrain 22856
  .wd-xxl-650-f {
22857
    width: 650px !important;
22858
  }
16848 stevensc 22859
 
16825 efrain 22860
  .wd-xxl-650p-f {
22861
    width: 650% !important;
22862
  }
16848 stevensc 22863
 
16825 efrain 22864
  .mx-wd-xxl-650p-f {
22865
    max-width: 650% !important;
22866
  }
16848 stevensc 22867
 
16825 efrain 22868
  .mn-wd-xxl-650p-f {
22869
    min-width: 650% !important;
22870
  }
16848 stevensc 22871
 
16825 efrain 22872
  .wd-xxl-700 {
22873
    width: 700px;
22874
  }
16848 stevensc 22875
 
16825 efrain 22876
  .wd-xxl-700p {
22877
    width: 700%;
22878
  }
16848 stevensc 22879
 
16825 efrain 22880
  .mx-wd-xxl-700p {
22881
    max-width: 700%;
22882
  }
16848 stevensc 22883
 
16825 efrain 22884
  .mn-wd-xxl-700p {
22885
    min-width: 700%;
22886
  }
16848 stevensc 22887
 
16825 efrain 22888
  .wd-xxl-700-f {
22889
    width: 700px !important;
22890
  }
16848 stevensc 22891
 
16825 efrain 22892
  .wd-xxl-700p-f {
22893
    width: 700% !important;
22894
  }
16848 stevensc 22895
 
16825 efrain 22896
  .mx-wd-xxl-700p-f {
22897
    max-width: 700% !important;
22898
  }
16848 stevensc 22899
 
16825 efrain 22900
  .mn-wd-xxl-700p-f {
22901
    min-width: 700% !important;
22902
  }
16848 stevensc 22903
 
16825 efrain 22904
  .wd-xxl-750 {
22905
    width: 750px;
22906
  }
16848 stevensc 22907
 
16825 efrain 22908
  .wd-xxl-750p {
22909
    width: 750%;
22910
  }
16848 stevensc 22911
 
16825 efrain 22912
  .mx-wd-xxl-750p {
22913
    max-width: 750%;
22914
  }
16848 stevensc 22915
 
16825 efrain 22916
  .mn-wd-xxl-750p {
22917
    min-width: 750%;
22918
  }
16848 stevensc 22919
 
16825 efrain 22920
  .wd-xxl-750-f {
22921
    width: 750px !important;
22922
  }
16848 stevensc 22923
 
16825 efrain 22924
  .wd-xxl-750p-f {
22925
    width: 750% !important;
22926
  }
16848 stevensc 22927
 
16825 efrain 22928
  .mx-wd-xxl-750p-f {
22929
    max-width: 750% !important;
22930
  }
16848 stevensc 22931
 
16825 efrain 22932
  .mn-wd-xxl-750p-f {
22933
    min-width: 750% !important;
22934
  }
16848 stevensc 22935
 
16825 efrain 22936
  .wd-xxl-800 {
22937
    width: 800px;
22938
  }
16848 stevensc 22939
 
16825 efrain 22940
  .wd-xxl-800p {
22941
    width: 800%;
22942
  }
16848 stevensc 22943
 
16825 efrain 22944
  .mx-wd-xxl-800p {
22945
    max-width: 800%;
22946
  }
16848 stevensc 22947
 
16825 efrain 22948
  .mn-wd-xxl-800p {
22949
    min-width: 800%;
22950
  }
16848 stevensc 22951
 
16825 efrain 22952
  .wd-xxl-800-f {
22953
    width: 800px !important;
22954
  }
16848 stevensc 22955
 
16825 efrain 22956
  .wd-xxl-800p-f {
22957
    width: 800% !important;
22958
  }
16848 stevensc 22959
 
16825 efrain 22960
  .mx-wd-xxl-800p-f {
22961
    max-width: 800% !important;
22962
  }
16848 stevensc 22963
 
16825 efrain 22964
  .mn-wd-xxl-800p-f {
22965
    min-width: 800% !important;
22966
  }
16848 stevensc 22967
 
16825 efrain 22968
  .wd-xxl-850 {
22969
    width: 850px;
22970
  }
16848 stevensc 22971
 
16825 efrain 22972
  .wd-xxl-850p {
22973
    width: 850%;
22974
  }
16848 stevensc 22975
 
16825 efrain 22976
  .mx-wd-xxl-850p {
22977
    max-width: 850%;
22978
  }
16848 stevensc 22979
 
16825 efrain 22980
  .mn-wd-xxl-850p {
22981
    min-width: 850%;
22982
  }
16848 stevensc 22983
 
16825 efrain 22984
  .wd-xxl-850-f {
22985
    width: 850px !important;
22986
  }
16848 stevensc 22987
 
16825 efrain 22988
  .wd-xxl-850p-f {
22989
    width: 850% !important;
22990
  }
16848 stevensc 22991
 
16825 efrain 22992
  .mx-wd-xxl-850p-f {
22993
    max-width: 850% !important;
22994
  }
16848 stevensc 22995
 
16825 efrain 22996
  .mn-wd-xxl-850p-f {
22997
    min-width: 850% !important;
22998
  }
16848 stevensc 22999
 
16825 efrain 23000
  .wd-xxl-900 {
23001
    width: 900px;
23002
  }
16848 stevensc 23003
 
16825 efrain 23004
  .wd-xxl-900p {
23005
    width: 900%;
23006
  }
16848 stevensc 23007
 
16825 efrain 23008
  .mx-wd-xxl-900p {
23009
    max-width: 900%;
23010
  }
16848 stevensc 23011
 
16825 efrain 23012
  .mn-wd-xxl-900p {
23013
    min-width: 900%;
23014
  }
16848 stevensc 23015
 
16825 efrain 23016
  .wd-xxl-900-f {
23017
    width: 900px !important;
23018
  }
16848 stevensc 23019
 
16825 efrain 23020
  .wd-xxl-900p-f {
23021
    width: 900% !important;
23022
  }
16848 stevensc 23023
 
16825 efrain 23024
  .mx-wd-xxl-900p-f {
23025
    max-width: 900% !important;
23026
  }
16848 stevensc 23027
 
16825 efrain 23028
  .mn-wd-xxl-900p-f {
23029
    min-width: 900% !important;
23030
  }
16848 stevensc 23031
 
16825 efrain 23032
  .wd-xxl-950 {
23033
    width: 950px;
23034
  }
16848 stevensc 23035
 
16825 efrain 23036
  .wd-xxl-950p {
23037
    width: 950%;
23038
  }
16848 stevensc 23039
 
16825 efrain 23040
  .mx-wd-xxl-950p {
23041
    max-width: 950%;
23042
  }
16848 stevensc 23043
 
16825 efrain 23044
  .mn-wd-xxl-950p {
23045
    min-width: 950%;
23046
  }
16848 stevensc 23047
 
16825 efrain 23048
  .wd-xxl-950-f {
23049
    width: 950px !important;
23050
  }
16848 stevensc 23051
 
16825 efrain 23052
  .wd-xxl-950p-f {
23053
    width: 950% !important;
23054
  }
16848 stevensc 23055
 
16825 efrain 23056
  .mx-wd-xxl-950p-f {
23057
    max-width: 950% !important;
23058
  }
16848 stevensc 23059
 
16825 efrain 23060
  .mn-wd-xxl-950p-f {
23061
    min-width: 950% !important;
23062
  }
16848 stevensc 23063
 
16825 efrain 23064
  .wd-xxl-1000 {
23065
    width: 1000px;
23066
  }
16848 stevensc 23067
 
16825 efrain 23068
  .wd-xxl-1000p {
23069
    width: 1000%;
23070
  }
16848 stevensc 23071
 
16825 efrain 23072
  .mx-wd-xxl-1000p {
23073
    max-width: 1000%;
23074
  }
16848 stevensc 23075
 
16825 efrain 23076
  .mn-wd-xxl-1000p {
23077
    min-width: 1000%;
23078
  }
16848 stevensc 23079
 
16825 efrain 23080
  .wd-xxl-1000-f {
23081
    width: 1000px !important;
23082
  }
16848 stevensc 23083
 
16825 efrain 23084
  .wd-xxl-1000p-f {
23085
    width: 1000% !important;
23086
  }
16848 stevensc 23087
 
16825 efrain 23088
  .mx-wd-xxl-1000p-f {
23089
    max-width: 1000% !important;
23090
  }
16848 stevensc 23091
 
16825 efrain 23092
  .mn-wd-xxl-1000p-f {
23093
    min-width: 1000% !important;
23094
  }
16848 stevensc 23095
 
16825 efrain 23096
  .wd-xxl-auto {
23097
    width: auto;
23098
  }
16848 stevensc 23099
 
16825 efrain 23100
  .wd-xxl-auto {
23101
    width: auto !important;
23102
  }
23103
}
16848 stevensc 23104
 
16825 efrain 23105
.bg-facebook {
23106
  background: social-color("facebook");
23107
}
23108
 
23109
.bg-twitter {
23110
  background: social-color("twitter");
23111
}
23112
 
23113
.bg-google {
23114
  background: social-color("google");
23115
}
23116
 
23117
.bg-youtube {
23118
  background: social-color("youtube");
23119
}
23120
 
23121
.bg-vimeo {
23122
  background: social-color("vimeo");
23123
}
23124
 
23125
.bg-dribbble {
23126
  background: social-color("dribbble");
23127
}
23128
 
23129
.bg-github {
23130
  background: social-color("github");
23131
}
23132
 
23133
.bg-instagram {
23134
  background: social-color("instagram");
23135
}
23136
 
23137
.bg-pinterest {
23138
  background: social-color("pinterest");
23139
}
23140
 
23141
.bg-flickr {
23142
  background: social-color("flickr");
23143
}
23144
 
23145
.bg-bitbucket {
23146
  background: social-color("bitbucket");
23147
}
23148
 
23149
.bg-linkedin {
23150
  background: social-color("linkedin");
23151
}
23152
 
23153
body {
23154
  margin: 0;
23155
  padding: 0;
23156
}
23157
 
16848 stevensc 23158
.btn,
23159
.wizard>.actions a,
23160
.wizard>.actions a:active,
23161
.wizard>.actions a:hover,
23162
div.tox .tox-button,
23163
.swal2-popup .swal2-actions button,
23164
.fc .fc-button-primary,
16825 efrain 23165
.btn-group.open .dropdown-toggle,
23166
.btn:active,
23167
.btn:focus,
23168
.btn:hover,
23169
.btn:visited,
23170
a,
23171
a:active,
23172
a:checked,
23173
a:focus,
23174
a:hover,
23175
a:visited,
23176
body,
23177
button,
23178
button:active,
23179
button:hover,
23180
button:visited,
23181
div,
23182
input,
23183
input:active,
23184
input:hover,
23185
input:focus,
23186
input:visited,
23187
select,
23188
select:active,
23189
select:focus,
23190
select:visited,
23191
textarea,
23192
textarea:active,
23193
textarea:focus,
23194
textarea:visited {
23195
  -webkit-box-shadow: none;
23196
  -moz-box-shadow: none;
23197
  box-shadow: none;
23198
}
23199
 
23200
select,
23201
.form-check-input {
16848 stevensc 23202
  appearance: none;
16825 efrain 23203
  -moz-appearance: none;
23204
}
23205
 
23206
input:-webkit-autofill,
23207
input:-webkit-autofill:hover,
23208
input:-webkit-autofill:focus,
23209
input:-webkit-autofill:active {
23210
  -webkit-box-shadow: 0 0 0 30px #fff inset;
23211
  -webkit-text-fill-color: #000;
23212
}
23213
 
23214
*:-moz-full-screen,
23215
*:-webkit-full-screen,
23216
*:fullscreen *:-ms-full-screen {
23217
  overflow: auto;
23218
}
23219
 
23220
pre {
23221
  background-color: color(gray-lighter);
23222
  padding: 15px;
23223
  font-size: 14px;
23224
}
23225
 
23226
code {
23227
  padding: 5px;
23228
  font-family: "Roboto", Helvetica, sans-serif;
23229
  font-weight: 400;
23230
  font-size: 0.875rem;
23231
  border-radius: 4px;
23232
}
23233
 
23234
.grid-margin {
23235
  margin-bottom: 1.5rem;
23236
}
23237
 
23238
@media (min-width: 576px) {
23239
  .grid-margin-sm-0 {
23240
    margin-bottom: 0;
23241
  }
23242
}
23243
 
23244
@media (min-width: 768px) {
23245
  .grid-margin-md-0 {
23246
    margin-bottom: 0;
23247
  }
23248
}
23249
 
23250
@media (min-width: 992px) {
23251
  .grid-margin-lg-0 {
23252
    margin-bottom: 0;
23253
  }
23254
}
23255
 
23256
@media (min-width: 1200px) {
23257
  .grid-margin-xl-0 {
23258
    margin-bottom: 0;
23259
  }
23260
}
23261
 
23262
.stretch-card {
23263
  display: flex;
23264
  align-items: stretch;
23265
  justify-content: stretch;
23266
}
16848 stevensc 23267
 
23268
.stretch-card>.card {
16825 efrain 23269
  width: 100%;
23270
  min-width: 100%;
23271
}
23272
 
23273
.img-lg {
23274
  width: 92px;
23275
  height: 92px;
23276
}
23277
 
23278
.img-md {
23279
  width: 75px;
23280
  height: 92px;
23281
}
23282
 
23283
.img-sm {
23284
  width: 43px;
23285
  height: 43px;
23286
}
23287
 
23288
.img-xs {
23289
  width: 36px;
23290
  height: 36px;
23291
}
23292
 
23293
.img-ss {
23294
  width: 26px;
23295
  height: 26px;
23296
}
23297
 
23298
.fw-boldest {
23299
  font-weight: 900;
23300
}
23301
 
23302
.tx-10 {
23303
  font-size: 10px;
23304
}
23305
 
23306
.tx-11 {
23307
  font-size: 11px;
23308
}
23309
 
23310
.tx-12 {
23311
  font-size: 12px;
23312
}
23313
 
23314
.tx-13 {
23315
  font-size: 13px;
23316
}
23317
 
23318
.tx-14 {
23319
  font-size: 14px;
23320
}
23321
 
23322
.tx-16 {
23323
  font-size: 16px;
23324
}
23325
 
23326
.tx-80 {
23327
  font-size: 80px;
23328
}
23329
 
23330
svg.icon-xs {
23331
  width: 12px;
23332
  height: 12px;
23333
}
23334
 
23335
svg.icon-sm {
23336
  width: 14px;
23337
  height: 14px;
23338
}
23339
 
23340
svg.icon-md {
23341
  width: 16px;
23342
  height: 16px;
23343
}
23344
 
23345
svg.icon-lg {
23346
  width: 20px;
23347
  height: 20px;
23348
}
23349
 
23350
svg.icon-xl {
23351
  width: 26px;
23352
  height: 26px;
23353
}
23354
 
23355
svg.icon-xxl {
23356
  width: 40px;
23357
  height: 40px;
23358
}
23359
 
23360
.icon-xs {
23361
  font-size: 14px;
23362
}
23363
 
23364
.icon-sm {
23365
  font-size: 16px;
23366
}
23367
 
23368
.icon-md {
23369
  font-size: 18px;
23370
}
23371
 
23372
.icon-lg {
23373
  font-size: 20px;
23374
}
23375
 
23376
.icon-xl {
23377
  font-size: 24px;
23378
}
23379
 
23380
.icon-xxl {
23381
  font-size: 30px;
23382
}
23383
 
23384
.cursor-pointer {
23385
  cursor: pointer;
23386
}
23387
 
23388
.cursor-default {
23389
  cursor: default;
23390
}
23391
 
23392
.pt-1px {
23393
  padding-top: 1px;
23394
}
23395
 
23396
.pt-2px {
23397
  padding-top: 2px;
23398
}
23399
 
23400
.pt-3px {
23401
  padding-top: 3px;
23402
}
23403
 
23404
.pb-1px {
23405
  padding-bottom: 1px;
23406
}
23407
 
23408
.pb-2px {
23409
  padding-bottom: 2px;
23410
}
23411
 
23412
.pb-3px {
23413
  padding-bottom: 3px;
23414
}
23415
 
23416
.mt-1px {
23417
  margin-top: 1px;
23418
}
23419
 
23420
.mt-2px {
23421
  margin-top: 2px;
23422
}
23423
 
23424
.mt-3px {
23425
  margin-top: 3px;
23426
}
23427
 
23428
.mb-1px {
23429
  margin-bottom: 1px;
23430
}
23431
 
23432
.mb-2px {
23433
  margin-bottom: 2px;
23434
}
23435
 
23436
.mb-3px {
23437
  margin-bottom: 3px;
23438
}
23439
 
23440
.ht-5 {
23441
  height: 5px;
23442
}
23443
 
23444
.ht-10 {
23445
  height: 10px;
23446
}
23447
 
23448
.ht-15 {
23449
  height: 15px;
23450
}
23451
 
23452
.ht-20 {
23453
  height: 20px;
23454
}
23455
 
23456
.ht-30 {
23457
  height: 30px;
23458
}
23459
 
23460
.ht-40 {
23461
  height: 40px;
23462
}
23463
 
23464
.ht-50 {
23465
  height: 50px;
23466
}
23467
 
23468
.ht-60 {
23469
  height: 60px;
23470
}
23471
 
23472
.ht-70 {
23473
  height: 70px;
23474
}
23475
 
23476
.ht-80 {
23477
  height: 80px;
23478
}
23479
 
23480
.ht-90 {
23481
  height: 90px;
23482
}
23483
 
23484
.ht-100 {
23485
  height: 100px;
23486
}
23487
 
23488
body {
23489
  -webkit-font-smoothing: antialiased;
23490
  -moz-osx-font-smoothing: grayscale;
23491
}
23492
 
23493
.text-facebook {
23494
  color: #3b5998;
23495
}
23496
 
23497
.text-twitter {
23498
  color: #1da1f2;
23499
}
23500
 
23501
.text-google {
23502
  color: #dc4e41;
23503
}
23504
 
23505
.text-youtube {
23506
  color: #f00;
23507
}
23508
 
23509
.text-vimeo {
23510
  color: #1ab7ea;
23511
}
23512
 
23513
.text-dribbble {
23514
  color: #ea4c89;
23515
}
23516
 
23517
.text-github {
23518
  color: #181717;
23519
}
23520
 
23521
.text-instagram {
23522
  color: #e4405f;
23523
}
23524
 
23525
.text-pinterest {
23526
  color: #bd081c;
23527
}
23528
 
23529
.text-flickr {
23530
  color: #0063dc;
23531
}
23532
 
23533
.text-bitbucket {
23534
  color: #0052cc;
23535
}
23536
 
23537
.text-linkedin {
23538
  color: #0077b5;
23539
}
23540
 
23541
.main-content {
23542
  color: #000;
23543
  font-size: 16px;
23544
}
16848 stevensc 23545
 
23546
.main-content>.page-title {
16825 efrain 23547
  margin-bottom: 1rem;
23548
  font-weight: 400;
23549
}
16848 stevensc 23550
 
23551
.main-content>h4,
23552
.main-content>.h4 {
16825 efrain 23553
  margin-top: 1.5rem;
23554
  margin-bottom: 0.875rem;
23555
}
16848 stevensc 23556
 
23557
.main-content>h4::before,
23558
.main-content>.h4::before {
16825 efrain 23559
  display: block;
23560
  height: 5.4rem;
23561
  margin-top: -6rem;
23562
  content: "";
23563
}
16848 stevensc 23564
 
23565
.main-content>hr {
16825 efrain 23566
  margin-top: 40px;
23567
  margin-bottom: 40px;
23568
}
16848 stevensc 23569
 
16825 efrain 23570
.main-content .example {
23571
  font-size: 0.875rem;
23572
  letter-spacing: normal;
23573
  padding: 10px;
23574
  background-color: #fff;
23575
  border: 4px solid #e9ecef;
23576
  position: relative;
23577
}
16848 stevensc 23578
 
16825 efrain 23579
@media (min-width: 576px) {
23580
  .main-content .example {
23581
    padding: 25px;
23582
  }
23583
}
16848 stevensc 23584
 
16825 efrain 23585
.main-content .highlight {
23586
  position: relative;
23587
  background-color: #fff;
23588
  padding: 15px;
23589
}
16848 stevensc 23590
 
16825 efrain 23591
.main-content .highlight pre {
23592
  padding: 15px;
23593
  font-size: 0.875rem;
23594
  font-family: "Roboto", Helvetica, sans-serif;
23595
  background: transparent;
23596
  line-height: 1.4;
23597
  margin: 0;
23598
}
16848 stevensc 23599
 
16825 efrain 23600
.main-content .highlight pre code {
23601
  font-family: "Roboto", Helvetica, sans-serif;
23602
  padding: 0;
23603
  tab-size: 8;
23604
  color: #000;
23605
  text-shadow: none;
23606
}
16848 stevensc 23607
 
23608
.main-content .highlight pre code .token.url,
23609
.main-content .highlight pre code .token.string,
23610
.main-content .highlight pre code .token.entity,
23611
.main-content .highlight pre code .token.operator {
16825 efrain 23612
  background: none;
23613
}
16848 stevensc 23614
 
16825 efrain 23615
.main-content .highlight .btn-clipboard {
23616
  position: absolute;
23617
  top: 6px;
23618
  right: 6px;
23619
  font-size: 12px;
23620
  padding: 1px 6px;
23621
  background: rgba(101, 113, 255, 0.2);
23622
}
16848 stevensc 23623
 
23624
.main-content .highlight .btn-clipboard:hover,
23625
.main-content .highlight .btn-clipboard:focus {
16825 efrain 23626
  background: rgba(101, 113, 255, 0.3);
23627
  border-color: transparent;
23628
  transition: background 0.3s ease-in-out;
23629
}
23630
 
16848 stevensc 23631
.example .btn-toolbar+.btn-toolbar {
16825 efrain 23632
  margin-top: 0.5rem;
23633
}
16848 stevensc 23634
 
16825 efrain 23635
.example .modal.static {
23636
  position: static;
23637
  display: block;
23638
}
16848 stevensc 23639
 
16825 efrain 23640
.example .navbar {
23641
  position: relative;
23642
  padding: 0.5rem 1rem;
23643
  left: auto;
23644
  width: 100%;
23645
  height: auto;
23646
  z-index: 9;
23647
  border-bottom: 0;
23648
  box-shadow: none;
23649
}
16848 stevensc 23650
 
16825 efrain 23651
.example .navbar .navbar-brand {
23652
  font-size: 1.25rem;
23653
}
16848 stevensc 23654
 
23655
.example .progress+.progress {
16825 efrain 23656
  margin-top: 10px;
23657
}
16848 stevensc 23658
 
16825 efrain 23659
.example .perfect-scrollbar-example {
23660
  position: relative;
23661
  max-height: 250px;
23662
  background: #fff;
23663
}
16848 stevensc 23664
 
16825 efrain 23665
.example .scrollspy-example {
23666
  position: relative;
23667
  height: 200px;
23668
  margin-top: 0.5rem;
23669
  overflow: auto;
23670
}
16848 stevensc 23671
 
16825 efrain 23672
.example .scrollspy-example-2 {
23673
  position: relative;
23674
  height: 350px;
23675
  overflow: auto;
23676
}
16848 stevensc 23677
 
16825 efrain 23678
.example nav .breadcrumb {
23679
  margin-bottom: 0.75rem;
23680
}
16848 stevensc 23681
 
16825 efrain 23682
.example nav:last-child .breadcrumb {
23683
  margin-bottom: 0;
23684
}
23685
 
23686
.page-breadcrumb {
23687
  margin-bottom: 15px;
23688
}
16848 stevensc 23689
 
16825 efrain 23690
.page-breadcrumb .breadcrumb {
23691
  padding: 0;
23692
  background: #f9fafb;
23693
}
23694
 
23695
.noble-ui-logo {
23696
  font-weight: 700;
23697
  font-size: 25px;
23698
  color: #000865;
23699
}
16848 stevensc 23700
 
16825 efrain 23701
.noble-ui-logo span {
23702
  color: #6571ff;
23703
  font-weight: 300;
23704
}
16848 stevensc 23705
 
16825 efrain 23706
.noble-ui-logo:hover {
23707
  color: #000865;
23708
}
16848 stevensc 23709
 
16825 efrain 23710
.noble-ui-logo.logo-light {
23711
  color: #000;
23712
}
23713
 
23714
.buy-now-wrapper {
23715
  position: fixed;
23716
  bottom: 30px;
23717
  right: 35px;
23718
  z-index: 99999;
23719
}
16848 stevensc 23720
 
16825 efrain 23721
.rtl .buy-now-wrapper {
23722
  right: auto;
23723
  left: 35px;
23724
}
16848 stevensc 23725
 
23726
.buy-now-wrapper .btn svg,
23727
.buy-now-wrapper .wizard>.actions a svg,
23728
.wizard>.actions .buy-now-wrapper a svg,
23729
.buy-now-wrapper div.tox .tox-button svg,
23730
div.tox .buy-now-wrapper .tox-button svg,
23731
.buy-now-wrapper .swal2-popup .swal2-actions button svg,
23732
.swal2-popup .swal2-actions .buy-now-wrapper button svg,
23733
.buy-now-wrapper .fc .fc-button-primary svg,
23734
.fc .buy-now-wrapper .fc-button-primary svg {
16825 efrain 23735
  width: 19px !important;
23736
  height: 19px !important;
23737
}
23738
 
23739
.main-wrapper {
23740
  display: flex;
23741
}
16848 stevensc 23742
 
16825 efrain 23743
.main-wrapper .page-wrapper {
23744
  min-height: 100vh;
23745
  background: #f9fafb;
23746
  width: calc(100% - 240px);
23747
  margin-left: 240px;
23748
  display: flex;
23749
  flex-direction: column;
23750
  -webkit-transition: margin 0.1s ease, width 0.1s ease;
23751
  transition: margin 0.1s ease, width 0.1s ease;
23752
}
16848 stevensc 23753
 
16825 efrain 23754
.main-wrapper .page-wrapper .page-content {
23755
  flex-grow: 1;
23756
  padding: 25px;
23757
  margin-top: 60px;
23758
}
16848 stevensc 23759
 
16825 efrain 23760
@media (max-width: 767px) {
23761
  .main-wrapper .page-wrapper .page-content {
23762
    padding: 25px 15px;
23763
  }
23764
}
16848 stevensc 23765
 
16825 efrain 23766
.main-wrapper .page-wrapper.full-page {
23767
  width: 100%;
23768
  margin-left: 0;
23769
}
16848 stevensc 23770
 
16825 efrain 23771
.main-wrapper .page-wrapper.full-page .page-content {
23772
  margin-top: 0;
23773
}
16848 stevensc 23774
 
16825 efrain 23775
@media (max-width: 991px) {
23776
  .main-wrapper .page-wrapper {
23777
    margin-left: 0;
23778
    width: 100%;
23779
  }
23780
}
23781
 
23782
.page-content .content-nav-wrapper {
23783
  padding: 0;
23784
  position: sticky;
23785
  top: 80px;
23786
  height: calc(100vh - 6rem);
23787
  overflow-y: auto;
23788
  border-left: 1px solid #e9ecef;
23789
  display: none;
23790
}
16848 stevensc 23791
 
16825 efrain 23792
@media (min-width: 1200px) {
23793
  .page-content .content-nav-wrapper {
23794
    display: block;
23795
  }
23796
}
16848 stevensc 23797
 
16825 efrain 23798
.page-content .content-nav-wrapper .content-nav {
23799
  padding: 0px 25px;
23800
}
16848 stevensc 23801
 
16825 efrain 23802
.page-content .content-nav-wrapper .content-nav .nav-item .nav-link {
23803
  padding: 0;
23804
  height: 30px;
23805
  white-space: nowrap;
23806
  color: #7987a1;
23807
  display: flex;
23808
  align-items: center;
23809
}
23810
 
23811
.navbar {
23812
  width: calc(100% - 240px);
23813
  height: 60px;
23814
  background: #fff;
23815
  border-bottom: 1px solid #e9ecef;
23816
  display: flex;
23817
  align-items: center;
23818
  padding: 0;
23819
  position: fixed;
23820
  right: 0;
23821
  left: 240px;
23822
  z-index: 978;
23823
  box-shadow: 3px 0 10px 0 rgba(183, 192, 206, 0.2);
23824
  transition: width 0.1s ease, left 0.1s ease;
23825
}
16848 stevensc 23826
 
16825 efrain 23827
@media (max-width: 991px) {
23828
  .navbar {
23829
    width: 100%;
23830
    left: 0;
23831
  }
16848 stevensc 23832
 
16825 efrain 23833
  .navbar .navbar-content {
23834
    width: calc(100% - 70px - 1px);
23835
  }
23836
}
16848 stevensc 23837
 
16825 efrain 23838
.navbar .sidebar-toggler {
23839
  height: 100%;
23840
  border-right: 1px solid #e9ecef;
23841
  align-items: center;
23842
  padding: 0 25px;
23843
  display: none;
23844
}
16848 stevensc 23845
 
16825 efrain 23846
.navbar .sidebar-toggler svg {
23847
  width: 20px;
23848
  height: 20px;
23849
  color: #7987a1;
23850
}
16848 stevensc 23851
 
16825 efrain 23852
@media (max-width: 991px) {
23853
  .navbar .sidebar-toggler {
23854
    display: flex;
23855
  }
23856
}
16848 stevensc 23857
 
16825 efrain 23858
.navbar .search-form {
23859
  width: 100%;
23860
  margin-right: 60px;
23861
}
16848 stevensc 23862
 
16825 efrain 23863
.navbar .search-form .input-group .input-group-text {
23864
  padding: 0;
23865
  border: 0;
23866
  color: #7987a1;
23867
  background: #fff;
23868
}
16848 stevensc 23869
 
16825 efrain 23870
.navbar .search-form .input-group .input-group-text svg {
23871
  width: 20px;
23872
  height: 20px;
23873
  cursor: pointer;
23874
}
16848 stevensc 23875
 
23876
.navbar .search-form .input-group .form-control,
23877
.navbar .search-form .input-group .typeahead.tt-input,
23878
.navbar .search-form .input-group .typeahead.tt-hint,
23879
.navbar .search-form .input-group .select2-container--default .select2-search--dropdown .select2-search__field,
23880
.select2-container--default .select2-search--dropdown .navbar .search-form .input-group .select2-search__field {
16825 efrain 23881
  border: 0;
23882
  margin-top: 3px;
23883
}
16848 stevensc 23884
 
16825 efrain 23885
.navbar .navbar-content {
23886
  display: flex;
23887
  width: 100%;
23888
  height: 100%;
23889
  padding-left: 25px;
23890
  padding-right: 25px;
23891
}
16848 stevensc 23892
 
16825 efrain 23893
@media (max-width: 991px) {
23894
  .navbar .navbar-content {
23895
    width: calc(100% - 70px - 1px);
23896
  }
23897
}
16848 stevensc 23898
 
16825 efrain 23899
.navbar .navbar-content .navbar-nav {
23900
  display: flex;
23901
  flex-direction: row;
23902
  margin-left: auto;
23903
}
16848 stevensc 23904
 
16825 efrain 23905
.navbar .navbar-content .navbar-nav .nav-item {
23906
  position: relative;
23907
  margin-left: 5px;
23908
  margin-right: 5px;
23909
  min-width: 30px;
23910
  display: flex;
23911
  align-items: center;
23912
}
16848 stevensc 23913
 
16825 efrain 23914
.navbar .navbar-content .navbar-nav .nav-item .nav-link {
23915
  color: #000;
23916
  padding: 0;
23917
  position: relative;
23918
  margin-left: auto;
23919
  margin-right: auto;
23920
}
16848 stevensc 23921
 
23922
.navbar .navbar-content .navbar-nav .nav-item .nav-link:hover,
23923
.navbar .navbar-content .navbar-nav .nav-item .nav-link[aria-expanded=true] {
16825 efrain 23924
  color: #6571ff;
23925
}
16848 stevensc 23926
 
16825 efrain 23927
.navbar .navbar-content .navbar-nav .nav-item .nav-link::after {
23928
  display: none;
23929
}
16848 stevensc 23930
 
16825 efrain 23931
.navbar .navbar-content .navbar-nav .nav-item .nav-link svg {
23932
  width: 20px;
23933
  height: 20px;
23934
}
16848 stevensc 23935
 
16825 efrain 23936
.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator {
23937
  position: absolute;
23938
  top: 0px;
23939
  right: 2px;
23940
}
16848 stevensc 23941
 
16825 efrain 23942
.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator .circle {
23943
  background: #6571ff;
23944
  width: 7px;
23945
  height: 7px;
23946
  border-radius: 50%;
23947
}
16848 stevensc 23948
 
16825 efrain 23949
.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator .circle::before {
23950
  background-color: #6571ff;
23951
  content: "";
23952
  display: table;
23953
  border-radius: 50%;
23954
  position: absolute;
23955
}
16848 stevensc 23956
 
16825 efrain 23957
@media (max-width: 767px) {
23958
  .navbar .navbar-content .navbar-nav .nav-item.dropdown {
23959
    position: static;
23960
  }
23961
}
16848 stevensc 23962
 
23963
.navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu,
23964
.navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu {
16825 efrain 23965
  width: max-content;
23966
  position: absolute;
23967
  right: -20px;
23968
  left: auto;
23969
}
16848 stevensc 23970
 
23971
.navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu::before,
23972
.navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu::before {
16825 efrain 23973
  content: "";
23974
  width: 13px;
23975
  height: 13px;
23976
  background: #fff;
23977
  position: absolute;
23978
  top: -7px;
23979
  right: 28px;
23980
  transform: rotate(45deg);
23981
  border-top: 1px solid #f2f4f9;
23982
  border-left: 1px solid #f2f4f9;
23983
}
16848 stevensc 23984
 
16825 efrain 23985
@media (max-width: 767px) {
16848 stevensc 23986
 
23987
  .navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu,
23988
  .navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu {
16825 efrain 23989
    right: 20px;
23990
    width: calc(100% - 40px);
23991
  }
16848 stevensc 23992
 
23993
  .navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu::before,
23994
  .navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu::before {
16825 efrain 23995
    display: none;
23996
  }
23997
}
23998
 
23999
.sidebar {
24000
  width: 240px;
24001
  height: 100%;
24002
  position: fixed;
24003
  left: 0;
24004
  top: 0;
24005
  -webkit-transition: width 0.1s ease, margin 0.1s ease-in-out;
24006
  transition: width 0.1s ease, margin 0.1s ease-in-out;
24007
  z-index: 999;
24008
}
16848 stevensc 24009
 
16825 efrain 24010
.sidebar .sidebar-header {
24011
  background: #fff;
24012
  height: 60px;
24013
  border-bottom: 1px solid #e9ecef;
24014
  display: flex;
24015
  justify-content: space-between;
24016
  align-items: center;
24017
  padding: 0 25px;
24018
  border-right: 1px solid #e9ecef;
24019
  z-index: 999;
24020
  width: 240px;
24021
  -webkit-transition: width 0.1s ease;
24022
  transition: width 0.1s ease;
24023
}
16848 stevensc 24024
 
16825 efrain 24025
.sidebar-open .sidebar .sidebar-header {
24026
  border-bottom: 1px solid #e9ecef;
24027
}
16848 stevensc 24028
 
16825 efrain 24029
.sidebar .sidebar-header .sidebar-brand {
24030
  opacity: 1;
24031
  visibility: visible;
24032
  -webkit-transition: opacity 0.5s ease;
24033
  transition: opacity 0.5s ease;
24034
  font-weight: 700;
24035
  font-size: 25px;
24036
  color: #000865;
16848 stevensc 24037
  direction: ltr
24038
    /*rtl:ignore*/
24039
  ;
16825 efrain 24040
}
16848 stevensc 24041
 
16825 efrain 24042
.sidebar .sidebar-header .sidebar-brand span {
24043
  color: #6571ff;
24044
  font-weight: 300;
24045
}
16848 stevensc 24046
 
16825 efrain 24047
.sidebar .sidebar-header .sidebar-toggler {
24048
  cursor: pointer;
24049
  width: 18px;
24050
}
16848 stevensc 24051
 
16825 efrain 24052
.sidebar .sidebar-header .sidebar-toggler span {
24053
  display: block;
24054
  width: 100%;
24055
  border-radius: 3px;
24056
  height: 2px;
24057
  background: #7987a1;
24058
  -webkit-transition: all 0.3s;
24059
  transition: all 0.3s;
24060
  position: relative;
24061
}
16848 stevensc 24062
 
24063
.sidebar .sidebar-header .sidebar-toggler span+span {
16825 efrain 24064
  margin-top: 4px;
24065
}
16848 stevensc 24066
 
16825 efrain 24067
.sidebar .sidebar-header .sidebar-toggler.active span:nth-child(1) {
24068
  -webkit-animation: ease 0.6s top forwards;
24069
  animation: ease 0.6s top forwards;
24070
}
16848 stevensc 24071
 
16825 efrain 24072
.sidebar .sidebar-header .sidebar-toggler.not-active span:nth-child(1) {
24073
  -webkit-animation: ease 0.6s top-2 forwards;
24074
  animation: ease 0.6s top-2 forwards;
24075
}
16848 stevensc 24076
 
16825 efrain 24077
.sidebar .sidebar-header .sidebar-toggler.active span:nth-child(2) {
24078
  -webkit-animation: ease 0.6s scaled forwards;
24079
  animation: ease 0.6s scaled forwards;
24080
}
16848 stevensc 24081
 
16825 efrain 24082
.sidebar .sidebar-header .sidebar-toggler.not-active span:nth-child(2) {
24083
  -webkit-animation: ease 0.6s scaled-2 forwards;
24084
  animation: ease 0.6s scaled-2 forwards;
24085
}
16848 stevensc 24086
 
16825 efrain 24087
.sidebar .sidebar-header .sidebar-toggler.active span:nth-child(3) {
24088
  -webkit-animation: ease 0.6s bottom forwards;
24089
  animation: ease 0.6s bottom forwards;
24090
}
16848 stevensc 24091
 
16825 efrain 24092
.sidebar .sidebar-header .sidebar-toggler.not-active span:nth-child(3) {
24093
  -webkit-animation: ease 0.6s bottom-2 forwards;
24094
  animation: ease 0.6s bottom-2 forwards;
24095
}
16848 stevensc 24096
 
16825 efrain 24097
@-webkit-keyframes top {
24098
  0% {
24099
    top: 0;
24100
    -webkit-transform: rotate(0);
24101
    transform: rotate(0);
24102
  }
16848 stevensc 24103
 
16825 efrain 24104
  50% {
24105
    top: 6px;
24106
    -webkit-transform: rotate(0);
24107
    transform: rotate(0);
24108
  }
16848 stevensc 24109
 
16825 efrain 24110
  100% {
24111
    top: 6px;
24112
    -webkit-transform: rotate(45deg);
24113
    transform: rotate(45deg);
24114
  }
24115
}
16848 stevensc 24116
 
16825 efrain 24117
@keyframes top {
24118
  0% {
24119
    top: 0;
24120
    -webkit-transform: rotate(0);
24121
    transform: rotate(0);
24122
  }
16848 stevensc 24123
 
16825 efrain 24124
  50% {
24125
    top: 6px;
24126
    -webkit-transform: rotate(0);
24127
    transform: rotate(0);
24128
  }
16848 stevensc 24129
 
16825 efrain 24130
  100% {
24131
    top: 6px;
24132
    -webkit-transform: rotate(45deg);
24133
    transform: rotate(45deg);
24134
  }
24135
}
16848 stevensc 24136
 
16825 efrain 24137
@-webkit-keyframes top-2 {
24138
  0% {
24139
    top: 6px;
24140
    -webkit-transform: rotate(45deg);
24141
    transform: rotate(45deg);
24142
  }
16848 stevensc 24143
 
16825 efrain 24144
  50% {
24145
    top: 6px;
24146
    -webkit-transform: rotate(0deg);
24147
    transform: rotate(0deg);
24148
  }
16848 stevensc 24149
 
16825 efrain 24150
  100% {
24151
    top: 0;
24152
    -webkit-transform: rotate(0deg);
24153
    transform: rotate(0deg);
24154
  }
24155
}
16848 stevensc 24156
 
16825 efrain 24157
@keyframes top-2 {
24158
  0% {
24159
    top: 6px;
24160
    -webkit-transform: rotate(45deg);
24161
    transform: rotate(45deg);
24162
  }
16848 stevensc 24163
 
16825 efrain 24164
  50% {
24165
    top: 6px;
24166
    -webkit-transform: rotate(0deg);
24167
    transform: rotate(0deg);
24168
  }
16848 stevensc 24169
 
16825 efrain 24170
  100% {
24171
    top: 0;
24172
    -webkit-transform: rotate(0deg);
24173
    transform: rotate(0deg);
24174
  }
24175
}
16848 stevensc 24176
 
16825 efrain 24177
@-webkit-keyframes bottom {
24178
  0% {
24179
    bottom: 0;
24180
    -webkit-transform: rotate(0);
24181
    transform: rotate(0);
24182
  }
16848 stevensc 24183
 
16825 efrain 24184
  50% {
24185
    bottom: 6px;
24186
    -webkit-transform: rotate(0);
24187
    transform: rotate(0);
24188
  }
16848 stevensc 24189
 
16825 efrain 24190
  100% {
24191
    bottom: 6px;
24192
    -webkit-transform: rotate(135deg);
24193
    transform: rotate(135deg);
24194
  }
24195
}
16848 stevensc 24196
 
16825 efrain 24197
@keyframes bottom {
24198
  0% {
24199
    bottom: 0;
24200
    -webkit-transform: rotate(0);
24201
    transform: rotate(0);
24202
  }
16848 stevensc 24203
 
16825 efrain 24204
  50% {
24205
    bottom: 6px;
24206
    -webkit-transform: rotate(0);
24207
    transform: rotate(0);
24208
  }
16848 stevensc 24209
 
16825 efrain 24210
  100% {
24211
    bottom: 6px;
24212
    -webkit-transform: rotate(135deg);
24213
    transform: rotate(135deg);
24214
  }
24215
}
16848 stevensc 24216
 
16825 efrain 24217
@-webkit-keyframes bottom-2 {
24218
  0% {
24219
    bottom: 6px;
24220
    -webkit-transform: rotate(135deg);
24221
    transform: rotate(135deg);
24222
  }
16848 stevensc 24223
 
16825 efrain 24224
  50% {
24225
    bottom: 6px;
24226
    -webkit-transform: rotate(0);
24227
    transform: rotate(0);
24228
  }
16848 stevensc 24229
 
16825 efrain 24230
  100% {
24231
    bottom: 0;
24232
    -webkit-transform: rotate(0);
24233
    transform: rotate(0);
24234
  }
24235
}
16848 stevensc 24236
 
16825 efrain 24237
@keyframes bottom-2 {
24238
  0% {
24239
    bottom: 6px;
24240
    -webkit-transform: rotate(135deg);
24241
    transform: rotate(135deg);
24242
  }
16848 stevensc 24243
 
16825 efrain 24244
  50% {
24245
    bottom: 6px;
24246
    -webkit-transform: rotate(0);
24247
    transform: rotate(0);
24248
  }
16848 stevensc 24249
 
16825 efrain 24250
  100% {
24251
    bottom: 0;
24252
    -webkit-transform: rotate(0);
24253
    transform: rotate(0);
24254
  }
24255
}
16848 stevensc 24256
 
16825 efrain 24257
@-webkit-keyframes scaled {
24258
  50% {
24259
    -webkit-transform: scale(0);
24260
    transform: scale(0);
24261
  }
16848 stevensc 24262
 
16825 efrain 24263
  100% {
24264
    -webkit-transform: scale(0);
24265
    transform: scale(0);
24266
  }
24267
}
16848 stevensc 24268
 
16825 efrain 24269
@keyframes scaled {
24270
  50% {
24271
    -webkit-transform: scale(0);
24272
    transform: scale(0);
24273
  }
16848 stevensc 24274
 
16825 efrain 24275
  100% {
24276
    -webkit-transform: scale(0);
24277
    transform: scale(0);
24278
  }
24279
}
16848 stevensc 24280
 
16825 efrain 24281
@-webkit-keyframes scaled-2 {
24282
  0% {
24283
    -webkit-transform: scale(0);
24284
    transform: scale(0);
24285
  }
16848 stevensc 24286
 
16825 efrain 24287
  50% {
24288
    -webkit-transform: scale(0);
24289
    transform: scale(0);
24290
  }
16848 stevensc 24291
 
16825 efrain 24292
  100% {
24293
    -webkit-transform: scale(1);
24294
    transform: scale(1);
24295
  }
24296
}
16848 stevensc 24297
 
16825 efrain 24298
@keyframes scaled-2 {
24299
  0% {
24300
    -webkit-transform: scale(0);
24301
    transform: scale(0);
24302
  }
16848 stevensc 24303
 
16825 efrain 24304
  50% {
24305
    -webkit-transform: scale(0);
24306
    transform: scale(0);
24307
  }
16848 stevensc 24308
 
16825 efrain 24309
  100% {
24310
    -webkit-transform: scale(1);
24311
    transform: scale(1);
24312
  }
24313
}
16848 stevensc 24314
 
16825 efrain 24315
.sidebar .sidebar-body {
24316
  max-height: calc(100% - 60px);
24317
  position: relative;
24318
  border-right: 1px solid #e9ecef;
24319
  height: 100%;
24320
  -webkit-box-shadow: 0 8px 10px 0 rgba(183, 192, 206, 0.2);
24321
  box-shadow: 0 8px 10px 0 rgba(183, 192, 206, 0.2);
24322
  background: #fff;
24323
}
16848 stevensc 24324
 
16825 efrain 24325
.sidebar .sidebar-body .nav {
24326
  display: flex;
24327
  flex-direction: column;
24328
  padding: 25px 25px 50px 25px;
24329
}
16848 stevensc 24330
 
16825 efrain 24331
.sidebar .sidebar-body .nav .nav-item {
24332
  position: relative;
24333
}
16848 stevensc 24334
 
16825 efrain 24335
.sidebar .sidebar-body .nav .nav-item .nav-link {
24336
  display: flex;
24337
  align-items: center;
24338
  padding: 0;
24339
  height: 32px;
24340
  white-space: nowrap;
24341
  color: #000;
24342
}
16848 stevensc 24343
 
16825 efrain 24344
.sidebar .sidebar-body .nav .nav-item .nav-link .link-icon {
24345
  width: 16px;
24346
  height: 16px;
24347
  fill: rgba(233, 236, 239, 0.21);
24348
  position: absolute;
24349
  color: inherit;
24350
}
16848 stevensc 24351
 
16825 efrain 24352
.sidebar .sidebar-body .nav .nav-item .nav-link .link-title {
24353
  margin-left: 30px;
24354
  font-size: 14px;
24355
  -webkit-transition: all 0.2s ease-in-out;
24356
  transition: all 0.2s ease-in-out;
24357
}
16848 stevensc 24358
 
16825 efrain 24359
.sidebar .sidebar-body .nav .nav-item .nav-link .link-arrow {
24360
  width: 14px;
24361
  height: 14px;
24362
  margin-left: auto;
24363
  -webkit-transition: all 0.3s ease;
24364
  -webkit-transition: all 0.3s ease-in-out;
24365
  transition: all 0.3s ease-in-out;
24366
  color: inherit;
24367
}
16848 stevensc 24368
 
16825 efrain 24369
.sidebar .sidebar-body .nav .nav-item .nav-link .link-icon,
24370
.sidebar .sidebar-body .nav .nav-item .nav-link .link-title,
24371
.sidebar .sidebar-body .nav .nav-item .nav-link .link-arrow {
24372
  -webkit-transition: all 0.3s ease;
24373
  transition: all 0.3s ease;
24374
}
16848 stevensc 24375
 
16825 efrain 24376
.sidebar .sidebar-body .nav .nav-item .nav-link[aria-expanded=true] {
24377
  color: #6571ff;
24378
}
16848 stevensc 24379
 
16825 efrain 24380
.sidebar .sidebar-body .nav .nav-item .nav-link[aria-expanded=true] .link-arrow {
24381
  -webkit-transform: rotate(90deg);
24382
  transform: rotate(180deg);
24383
}
16848 stevensc 24384
 
16825 efrain 24385
.sidebar .sidebar-body .nav .nav-item.nav-category {
24386
  color: #7987a1;
24387
  font-size: 11px;
24388
  text-transform: uppercase;
24389
  font-weight: 500;
24390
  letter-spacing: 0.5px;
24391
  margin-bottom: 5px;
24392
  height: 15px;
24393
}
16848 stevensc 24394
 
16825 efrain 24395
.sidebar .sidebar-body .nav .nav-item.nav-category:not(:first-child) {
24396
  margin-top: 20px;
24397
}
16848 stevensc 24398
 
16825 efrain 24399
.sidebar .sidebar-body .nav .nav-item:hover .nav-link {
24400
  color: #6571ff;
24401
}
16848 stevensc 24402
 
16825 efrain 24403
.sidebar .sidebar-body .nav .nav-item:hover .nav-link .link-title {
24404
  margin-left: 31px;
24405
}
16848 stevensc 24406
 
16825 efrain 24407
.sidebar .sidebar-body .nav .nav-item:hover .nav-link .link-icon {
24408
  color: #6571ff;
24409
  fill: rgba(239, 243, 255, 0.5);
24410
}
16848 stevensc 24411
 
16825 efrain 24412
.sidebar .sidebar-body .nav .nav-item.active .nav-link {
24413
  color: #6571ff;
24414
}
16848 stevensc 24415
 
16825 efrain 24416
.sidebar .sidebar-body .nav .nav-item.active .nav-link::before {
24417
  content: "";
24418
  width: 3px;
24419
  height: 26px;
24420
  background: #6571ff;
24421
  position: absolute;
24422
  left: -25px;
24423
}
16848 stevensc 24424
 
16825 efrain 24425
.sidebar .sidebar-body .nav .nav-item.active .nav-link .link-icon {
24426
  fill: rgba(239, 243, 255, 0.5);
24427
  color: #6571ff;
24428
}
16848 stevensc 24429
 
16825 efrain 24430
.sidebar .sidebar-body .nav.sub-menu {
24431
  padding: 0 0 15px 33px;
24432
}
16848 stevensc 24433
 
16825 efrain 24434
.sidebar .sidebar-body .nav.sub-menu .nav-item {
24435
  position: relative;
24436
}
16848 stevensc 24437
 
16825 efrain 24438
.sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link {
24439
  height: 25px;
24440
  color: #000;
24441
  font-size: 13px;
24442
  -webkit-transition: all 0.3s ease-in-out;
24443
  transition: all 0.3s ease-in-out;
24444
}
16848 stevensc 24445
 
16825 efrain 24446
.sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link::before {
24447
  content: "";
24448
  width: 6px;
24449
  height: 6px;
24450
  border-radius: 50%;
24451
  background: transparent;
24452
  border: 1px solid #aeb9c4;
24453
  position: absolute;
24454
  left: -29px;
24455
  top: 10px;
24456
  -webkit-transition: all 0.7s ease-in-out;
24457
  -webkit-transition: all 0.4s ease-in-out;
24458
  transition: all 0.4s ease-in-out;
24459
}
16848 stevensc 24460
 
16825 efrain 24461
.sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link.active {
24462
  color: #6571ff;
24463
}
16848 stevensc 24464
 
16825 efrain 24465
.sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link.active::before {
24466
  border: 1px solid #6571ff;
24467
  background: #6571ff;
24468
}
16848 stevensc 24469
 
16825 efrain 24470
.sidebar .sidebar-body .nav.sub-menu .nav-item:hover .nav-link {
24471
  color: #6571ff;
24472
  margin-left: 3px;
24473
}
16848 stevensc 24474
 
16825 efrain 24475
.sidebar .sidebar-body .nav.sub-menu .nav-item:hover .nav-link::before {
24476
  border: 1px solid #6571ff;
24477
  background: #6571ff;
24478
}
16848 stevensc 24479
 
16825 efrain 24480
@media (max-width: 991px) {
24481
  .sidebar {
24482
    z-index: 999;
24483
    margin-left: -240px;
24484
    visibility: hidden;
24485
  }
16848 stevensc 24486
 
16825 efrain 24487
  .sidebar-open .sidebar {
24488
    margin-left: 0;
24489
    visibility: visible;
24490
  }
16848 stevensc 24491
 
16825 efrain 24492
  .sidebar .sidebar-body .nav .nav-item {
24493
    width: auto;
24494
  }
16848 stevensc 24495
 
16825 efrain 24496
  .sidebar .sidebar-body .nav .nav-item .nav-link .link-icon {
24497
    -webkit-transition: none;
24498
    transition: none;
24499
    margin: 0;
24500
  }
24501
}
24502
 
24503
.sidebar-dark .sidebar .sidebar-header {
24504
  background: #0c1427;
24505
  border-bottom: 1px solid rgba(233, 236, 239, 0.1);
24506
  border-right: 1px solid rgba(233, 236, 239, 0.1);
24507
}
16848 stevensc 24508
 
16825 efrain 24509
.sidebar-dark .sidebar .sidebar-header .sidebar-brand {
24510
  color: #e9ecef;
24511
}
16848 stevensc 24512
 
16825 efrain 24513
.sidebar-dark .sidebar .sidebar-header .sidebar-toggler span {
24514
  background: #7987a1;
24515
}
16848 stevensc 24516
 
16825 efrain 24517
.sidebar-dark .sidebar .sidebar-body {
24518
  background: #0c1427;
24519
  border-right: 1px solid rgba(233, 236, 239, 0.1);
24520
}
16848 stevensc 24521
 
16825 efrain 24522
.sidebar-dark .sidebar .sidebar-body .nav .nav-item.nav-category {
24523
  color: #fff;
24524
}
16848 stevensc 24525
 
16825 efrain 24526
.sidebar-dark .sidebar .sidebar-body .nav .nav-item .nav-link {
24527
  color: #7987a1;
24528
}
16848 stevensc 24529
 
16825 efrain 24530
.sidebar-dark .sidebar .sidebar-body .nav .nav-item .nav-link svg {
24531
  fill: none;
24532
}
16848 stevensc 24533
 
16825 efrain 24534
.sidebar-dark .sidebar .sidebar-body .nav .nav-item .nav-link[aria-expanded=true] {
24535
  color: #6571ff;
24536
}
16848 stevensc 24537
 
24538
.sidebar-dark .sidebar .sidebar-body .nav .nav-item:hover .nav-link svg,
24539
.sidebar-dark .sidebar .sidebar-body .nav .nav-item.active .nav-link svg {
16825 efrain 24540
  fill: rgba(101, 113, 255, 0.2);
24541
}
16848 stevensc 24542
 
24543
.sidebar-dark .sidebar .sidebar-body .nav .nav-item:hover .nav-link .link-title,
24544
.sidebar-dark .sidebar .sidebar-body .nav .nav-item.active .nav-link .link-title {
16825 efrain 24545
  color: #6571ff;
24546
}
24547
 
24548
.settings-sidebar {
24549
  position: fixed;
24550
  right: -232px;
24551
  top: 130px;
24552
  width: 232px;
24553
  background: #fff;
24554
  -webkit-box-shadow: -3px 0 10px 0 rgba(183, 192, 206, 0.2);
24555
  box-shadow: -3px 0 10px 0 rgba(183, 192, 206, 0.2);
24556
  z-index: 999;
24557
  border-radius: 0 0 0 4px;
24558
  -webkit-transition: all 0.2s ease-in-out;
24559
  transition: all 0.2s ease-in-out;
24560
}
16848 stevensc 24561
 
16825 efrain 24562
.settings-open .settings-sidebar {
24563
  right: 0;
24564
}
16848 stevensc 24565
 
16825 efrain 24566
.settings-sidebar .sidebar-body {
24567
  position: relative;
24568
  padding: 18px;
24569
}
16848 stevensc 24570
 
16825 efrain 24571
.settings-sidebar .sidebar-body .settings-sidebar-toggler {
24572
  position: absolute;
24573
  left: -44px;
24574
  top: 0;
24575
  padding: 12px;
24576
  border-radius: 4px 0 0 4px;
24577
  background: #fff;
24578
  -webkit-box-shadow: -3px 0 10px 0 rgba(183, 192, 206, 0.2);
24579
  box-shadow: -3px 0 10px 0 rgba(183, 192, 206, 0.2);
24580
}
16848 stevensc 24581
 
16825 efrain 24582
.settings-sidebar .sidebar-body .settings-sidebar-toggler svg {
24583
  width: 20px;
24584
  height: 20px;
24585
  color: #7987a1;
24586
}
16848 stevensc 24587
 
16825 efrain 24588
.settings-sidebar .sidebar-body .theme-wrapper .theme-item {
24589
  position: relative;
24590
  display: block;
24591
  margin-bottom: 19px;
24592
  border-radius: 6px;
24593
  border: 3px solid #e9ecef;
24594
}
16848 stevensc 24595
 
16825 efrain 24596
.settings-sidebar .sidebar-body .theme-wrapper .theme-item::after {
24597
  content: "";
24598
  position: absolute;
24599
  top: 0;
24600
  left: 0;
24601
  width: 100%;
24602
  height: 100%;
24603
  background: rgba(101, 113, 255, 0);
24604
}
16848 stevensc 24605
 
16825 efrain 24606
.settings-sidebar .sidebar-body .theme-wrapper .theme-item:last-child {
24607
  margin-bottom: 0;
24608
}
16848 stevensc 24609
 
16825 efrain 24610
.settings-sidebar .sidebar-body .theme-wrapper .theme-item.active {
24611
  border: 3px solid #b2b8ff;
24612
}
16848 stevensc 24613
 
16825 efrain 24614
.settings-sidebar .sidebar-body .theme-wrapper .theme-item img {
24615
  width: 100%;
24616
  border-radius: 3px;
24617
}
16848 stevensc 24618
 
16825 efrain 24619
.settings-sidebar .sidebar-body .theme-wrapper .theme-item:hover::after {
24620
  background: rgba(101, 113, 255, 0.2);
24621
  -webkit-transition: all 0.3s ease-in-out;
24622
  transition: all 0.3s ease-in-out;
24623
}
24624
 
24625
.sidebar-folded .sidebar .sidebar-header {
24626
  width: 70px;
24627
}
16848 stevensc 24628
 
16825 efrain 24629
.sidebar-folded .sidebar .sidebar-header .sidebar-brand {
24630
  display: none;
24631
}
16848 stevensc 24632
 
16825 efrain 24633
.sidebar-folded .page-wrapper {
24634
  width: calc(100% - 70px);
24635
  margin-left: 70px;
24636
}
16848 stevensc 24637
 
16825 efrain 24638
.sidebar-folded .page-wrapper .navbar {
24639
  width: calc(100% - 70px);
24640
  left: 70px;
24641
  right: 0;
24642
}
16848 stevensc 24643
 
16825 efrain 24644
.sidebar-folded:not(.open-sidebar-folded) .sidebar {
24645
  width: 70px;
24646
}
16848 stevensc 24647
 
16825 efrain 24648
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-header {
24649
  width: 70px;
24650
}
16848 stevensc 24651
 
16825 efrain 24652
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-header .sidebar-brand {
24653
  opacity: 0;
24654
  visibility: hidden;
24655
  width: 0;
24656
}
16848 stevensc 24657
 
16825 efrain 24658
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav .nav-item .nav-link .link-title,
24659
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav .nav-item .nav-link .link-arrow {
24660
  visibility: hidden;
24661
  opacity: 0;
24662
}
16848 stevensc 24663
 
16825 efrain 24664
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav .nav-item.nav-category {
24665
  visibility: hidden;
24666
}
16848 stevensc 24667
 
16825 efrain 24668
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav .nav-item.nav-category::before {
24669
  content: "";
24670
  width: 5px;
24671
  height: 5px;
24672
  border-radius: 50%;
24673
  background: #7987a1;
24674
  position: absolute;
24675
  top: 5px;
24676
  left: 6px;
24677
  visibility: visible;
24678
}
16848 stevensc 24679
 
16825 efrain 24680
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav.sub-menu {
24681
  display: none;
24682
}
24683
 
24684
@media (max-width: 991px) {
16848 stevensc 24685
 
24686
  .sidebar-open .main-wrapper::before,
24687
  .settings-open .main-wrapper::before {
16825 efrain 24688
    content: "";
24689
    width: 100vw;
24690
    background: rgba(0, 0, 0, 0.3);
24691
    position: fixed;
24692
    top: 0;
24693
    bottom: 0;
24694
    right: 0;
24695
    z-index: 99;
24696
    -webkit-transition: all 3s ease;
24697
    transition: all 3s ease;
24698
    z-index: 980;
24699
  }
24700
}
24701
 
24702
a.badge:hover {
24703
  color: #fff;
24704
}
24705
 
24706
.alert-primary {
24707
  background-color: rgba(101, 113, 255, 0.1);
24708
  color: #4c59ff;
24709
  border-color: rgba(101, 113, 255, 0.2);
24710
}
16848 stevensc 24711
 
16825 efrain 24712
.alert-primary .alert-link {
24713
  color: #4c59ff;
24714
}
16848 stevensc 24715
 
16825 efrain 24716
.alert-primary svg {
24717
  width: 19px;
24718
  height: 19px;
24719
  margin-right: 0.5rem;
24720
}
16848 stevensc 24721
 
16825 efrain 24722
.alert-primary i {
24723
  font-size: 19px;
24724
  margin-right: 0.5rem;
24725
}
24726
 
24727
.alert-fill-primary {
24728
  --bs-alert-color: #fff;
24729
  --bs-alert-bg: #6571ff;
24730
  --bs-alert-border-color: #6571ff;
24731
}
16848 stevensc 24732
 
16825 efrain 24733
.alert-fill-primary .alert-link {
24734
  color: #cccccc;
24735
}
16848 stevensc 24736
 
16825 efrain 24737
.alert-fill-primary.alert-fill-light {
24738
  color: #7987a1;
24739
}
24740
 
24741
.alert-secondary {
24742
  background-color: rgba(121, 135, 161, 0.1);
24743
  color: #6a7a96;
24744
  border-color: rgba(121, 135, 161, 0.2);
24745
}
16848 stevensc 24746
 
16825 efrain 24747
.alert-secondary .alert-link {
24748
  color: #6a7a96;
24749
}
16848 stevensc 24750
 
16825 efrain 24751
.alert-secondary svg {
24752
  width: 19px;
24753
  height: 19px;
24754
  margin-right: 0.5rem;
24755
}
16848 stevensc 24756
 
16825 efrain 24757
.alert-secondary i {
24758
  font-size: 19px;
24759
  margin-right: 0.5rem;
24760
}
24761
 
24762
.alert-fill-secondary {
24763
  --bs-alert-color: #fff;
24764
  --bs-alert-bg: #7987a1;
24765
  --bs-alert-border-color: #7987a1;
24766
}
16848 stevensc 24767
 
16825 efrain 24768
.alert-fill-secondary .alert-link {
24769
  color: #cccccc;
24770
}
16848 stevensc 24771
 
16825 efrain 24772
.alert-fill-secondary.alert-fill-light {
24773
  color: #7987a1;
24774
}
24775
 
24776
.alert-success {
24777
  background-color: rgba(5, 163, 74, 0.1);
24778
  color: #048a3f;
24779
  border-color: rgba(5, 163, 74, 0.2);
24780
}
16848 stevensc 24781
 
16825 efrain 24782
.alert-success .alert-link {
24783
  color: #048a3f;
24784
}
16848 stevensc 24785
 
16825 efrain 24786
.alert-success svg {
24787
  width: 19px;
24788
  height: 19px;
24789
  margin-right: 0.5rem;
24790
}
16848 stevensc 24791
 
16825 efrain 24792
.alert-success i {
24793
  font-size: 19px;
24794
  margin-right: 0.5rem;
24795
}
24796
 
24797
.alert-fill-success {
24798
  --bs-alert-color: #fff;
24799
  --bs-alert-bg: #05a34a;
24800
  --bs-alert-border-color: #05a34a;
24801
}
16848 stevensc 24802
 
16825 efrain 24803
.alert-fill-success .alert-link {
24804
  color: #cccccc;
24805
}
16848 stevensc 24806
 
16825 efrain 24807
.alert-fill-success.alert-fill-light {
24808
  color: #7987a1;
24809
}
24810
 
24811
.alert-info {
24812
  background-color: rgba(102, 209, 209, 0.1);
24813
  color: #52cbcb;
24814
  border-color: rgba(102, 209, 209, 0.2);
24815
}
16848 stevensc 24816
 
16825 efrain 24817
.alert-info .alert-link {
24818
  color: #52cbcb;
24819
}
16848 stevensc 24820
 
16825 efrain 24821
.alert-info svg {
24822
  width: 19px;
24823
  height: 19px;
24824
  margin-right: 0.5rem;
24825
}
16848 stevensc 24826
 
16825 efrain 24827
.alert-info i {
24828
  font-size: 19px;
24829
  margin-right: 0.5rem;
24830
}
24831
 
24832
.alert-fill-info {
24833
  --bs-alert-color: #fff;
24834
  --bs-alert-bg: #66d1d1;
24835
  --bs-alert-border-color: #66d1d1;
24836
}
16848 stevensc 24837
 
16825 efrain 24838
.alert-fill-info .alert-link {
24839
  color: #cccccc;
24840
}
16848 stevensc 24841
 
16825 efrain 24842
.alert-fill-info.alert-fill-light {
24843
  color: #7987a1;
24844
}
24845
 
24846
.alert-warning {
24847
  background-color: rgba(251, 188, 6, 0.1);
24848
  color: #e4aa04;
24849
  border-color: rgba(251, 188, 6, 0.2);
24850
}
16848 stevensc 24851
 
16825 efrain 24852
.alert-warning .alert-link {
24853
  color: #e4aa04;
24854
}
16848 stevensc 24855
 
16825 efrain 24856
.alert-warning svg {
24857
  width: 19px;
24858
  height: 19px;
24859
  margin-right: 0.5rem;
24860
}
16848 stevensc 24861
 
16825 efrain 24862
.alert-warning i {
24863
  font-size: 19px;
24864
  margin-right: 0.5rem;
24865
}
24866
 
24867
.alert-fill-warning {
24868
  --bs-alert-color: #fff;
24869
  --bs-alert-bg: #fbbc06;
24870
  --bs-alert-border-color: #fbbc06;
24871
}
16848 stevensc 24872
 
16825 efrain 24873
.alert-fill-warning .alert-link {
24874
  color: #cccccc;
24875
}
16848 stevensc 24876
 
16825 efrain 24877
.alert-fill-warning.alert-fill-light {
24878
  color: #7987a1;
24879
}
24880
 
24881
.alert-danger {
24882
  background-color: rgba(255, 51, 102, 0.1);
24883
  color: #ff1a53;
24884
  border-color: rgba(255, 51, 102, 0.2);
24885
}
16848 stevensc 24886
 
16825 efrain 24887
.alert-danger .alert-link {
24888
  color: #ff1a53;
24889
}
16848 stevensc 24890
 
16825 efrain 24891
.alert-danger svg {
24892
  width: 19px;
24893
  height: 19px;
24894
  margin-right: 0.5rem;
24895
}
16848 stevensc 24896
 
16825 efrain 24897
.alert-danger i {
24898
  font-size: 19px;
24899
  margin-right: 0.5rem;
24900
}
24901
 
24902
.alert-fill-danger {
24903
  --bs-alert-color: #fff;
24904
  --bs-alert-bg: #ff3366;
24905
  --bs-alert-border-color: #ff3366;
24906
}
16848 stevensc 24907
 
16825 efrain 24908
.alert-fill-danger .alert-link {
24909
  color: #cccccc;
24910
}
16848 stevensc 24911
 
16825 efrain 24912
.alert-fill-danger.alert-fill-light {
24913
  color: #7987a1;
24914
}
24915
 
24916
.alert-light {
24917
  background-color: rgba(233, 236, 239, 0.1);
24918
  color: #dadfe4;
24919
  border-color: rgba(233, 236, 239, 0.2);
24920
}
16848 stevensc 24921
 
16825 efrain 24922
.alert-light .alert-link {
24923
  color: #dadfe4;
24924
}
16848 stevensc 24925
 
16825 efrain 24926
.alert-light svg {
24927
  width: 19px;
24928
  height: 19px;
24929
  margin-right: 0.5rem;
24930
}
16848 stevensc 24931
 
16825 efrain 24932
.alert-light i {
24933
  font-size: 19px;
24934
  margin-right: 0.5rem;
24935
}
24936
 
24937
.alert-fill-light {
24938
  --bs-alert-color: #fff;
24939
  --bs-alert-bg: #e9ecef;
24940
  --bs-alert-border-color: #e9ecef;
24941
}
16848 stevensc 24942
 
16825 efrain 24943
.alert-fill-light .alert-link {
24944
  color: #cccccc;
24945
}
16848 stevensc 24946
 
16825 efrain 24947
.alert-fill-light.alert-fill-light {
24948
  color: #7987a1;
24949
}
24950
 
24951
.alert-dark {
24952
  background-color: rgba(6, 12, 23, 0.1);
24953
  color: #010103;
24954
  border-color: rgba(6, 12, 23, 0.2);
24955
}
16848 stevensc 24956
 
16825 efrain 24957
.alert-dark .alert-link {
24958
  color: #010103;
24959
}
16848 stevensc 24960
 
16825 efrain 24961
.alert-dark svg {
24962
  width: 19px;
24963
  height: 19px;
24964
  margin-right: 0.5rem;
24965
}
16848 stevensc 24966
 
16825 efrain 24967
.alert-dark i {
24968
  font-size: 19px;
24969
  margin-right: 0.5rem;
24970
}
24971
 
24972
.alert-fill-dark {
24973
  --bs-alert-color: #fff;
24974
  --bs-alert-bg: #060c17;
24975
  --bs-alert-border-color: #060c17;
24976
}
16848 stevensc 24977
 
16825 efrain 24978
.alert-fill-dark .alert-link {
24979
  color: #cccccc;
24980
}
16848 stevensc 24981
 
16825 efrain 24982
.alert-fill-dark.alert-fill-light {
24983
  color: #7987a1;
24984
}
24985
 
16848 stevensc 24986
.breadcrumb.breadcrumb-line .breadcrumb-item+.breadcrumb-item::before {
16825 efrain 24987
  content: "-" !important;
24988
}
16848 stevensc 24989
 
24990
.breadcrumb.breadcrumb-dot .breadcrumb-item+.breadcrumb-item::before {
16825 efrain 24991
  content: "•" !important;
24992
}
16848 stevensc 24993
 
24994
.breadcrumb.breadcrumb-arrow .breadcrumb-item+.breadcrumb-item::before {
16825 efrain 24995
  content: ">" !important;
24996
}
24997
 
24998
/* Buttons */
16848 stevensc 24999
.btn i,
25000
.wizard>.actions a i,
25001
.wizard>.actions a:active i,
25002
.wizard>.actions a:hover i,
25003
div.tox .tox-button i,
25004
.swal2-popup .swal2-actions button i,
25005
.fc .fc-button-primary i {
16825 efrain 25006
  font-size: 1rem;
25007
}
16848 stevensc 25008
 
25009
.btn.btn-rounded,
25010
.wizard>.actions a.btn-rounded,
25011
div.tox .btn-rounded.tox-button,
25012
.swal2-popup .swal2-actions button.btn-rounded,
25013
.fc .btn-rounded.fc-button-primary {
16825 efrain 25014
  border-radius: 50px;
25015
}
16848 stevensc 25016
 
25017
.btn.btn-xs,
25018
.wizard>.actions a.btn-xs,
25019
div.tox .btn-xs.tox-button,
25020
.swal2-popup .swal2-actions button.btn-xs,
25021
.fc .btn-xs.fc-button-primary {
16825 efrain 25022
  padding: 0.313rem 0.8rem;
25023
  font-size: 0.75rem;
25024
}
16848 stevensc 25025
 
25026
.btn.btn-icon,
25027
.wizard>.actions a.btn-icon,
25028
div.tox .btn-icon.tox-button,
25029
.swal2-popup .swal2-actions button.btn-icon,
25030
.fc .btn-icon.fc-button-primary {
16825 efrain 25031
  width: 38px;
25032
  height: 38px;
25033
  padding: 0;
25034
  display: inline-flex;
25035
  align-items: center;
25036
  justify-content: center;
25037
}
16848 stevensc 25038
 
25039
.btn.btn-icon svg,
25040
.wizard>.actions a.btn-icon svg,
25041
div.tox .btn-icon.tox-button svg,
25042
.swal2-popup .swal2-actions button.btn-icon svg,
25043
.fc .btn-icon.fc-button-primary svg {
16825 efrain 25044
  height: 18px;
25045
}
16848 stevensc 25046
 
25047
.btn.btn-icon.btn-xs,
25048
.wizard>.actions a.btn-icon.btn-xs,
25049
div.tox .btn-icon.btn-xs.tox-button,
25050
.swal2-popup .swal2-actions button.btn-icon.btn-xs,
25051
.fc .btn-icon.btn-xs.fc-button-primary {
16825 efrain 25052
  width: 30px;
25053
  height: 30px;
25054
}
16848 stevensc 25055
 
25056
.btn.btn-icon.btn-xs svg,
25057
.wizard>.actions a.btn-icon.btn-xs svg,
25058
div.tox .btn-icon.btn-xs.tox-button svg,
25059
.swal2-popup .swal2-actions button.btn-icon.btn-xs svg,
25060
.fc .btn-icon.btn-xs.fc-button-primary svg {
16825 efrain 25061
  height: 14px;
25062
}
16848 stevensc 25063
 
25064
.btn.btn-icon.btn-sm,
25065
.wizard>.actions a.btn-icon.btn-sm,
25066
div.tox .btn-icon.btn-sm.tox-button,
25067
.swal2-popup .swal2-actions button.btn-icon.btn-sm,
25068
.fc .btn-icon.fc-button-primary,
25069
.btn-group-sm>.btn.btn-icon,
25070
.wizard>.actions .btn-group-sm>a.btn-icon,
25071
div.tox .btn-group-sm>.btn-icon.tox-button,
25072
.swal2-popup .swal2-actions .btn-group-sm>button.btn-icon {
16825 efrain 25073
  width: 36px;
25074
  height: 36px;
25075
}
16848 stevensc 25076
 
25077
.btn.btn-icon.btn-sm svg,
25078
.wizard>.actions a.btn-icon.btn-sm svg,
25079
div.tox .btn-icon.btn-sm.tox-button svg,
25080
.swal2-popup .swal2-actions button.btn-icon.btn-sm svg,
25081
.fc .btn-icon.fc-button-primary svg,
25082
.btn-group-sm>.btn.btn-icon svg,
25083
.wizard>.actions .btn-group-sm>a.btn-icon svg,
25084
div.tox .btn-group-sm>.btn-icon.tox-button svg,
25085
.swal2-popup .swal2-actions .btn-group-sm>button.btn-icon svg {
16825 efrain 25086
  height: 15px;
25087
}
16848 stevensc 25088
 
25089
.btn.btn-icon.btn-lg,
25090
.wizard>.actions a.btn-icon.btn-lg,
25091
div.tox .btn-icon.btn-lg.tox-button,
25092
.swal2-popup .swal2-actions button.btn-icon.btn-lg,
25093
.fc .btn-icon.btn-lg.fc-button-primary,
25094
.btn-group-lg>.btn.btn-icon,
25095
.wizard>.actions .btn-group-lg>a.btn-icon,
25096
div.tox .btn-group-lg>.btn-icon.tox-button,
25097
.swal2-popup .swal2-actions .btn-group-lg>button.btn-icon,
25098
.fc .btn-group-lg>.btn-icon.fc-button-primary {
16825 efrain 25099
  width: 42px;
25100
  height: 42px;
25101
}
16848 stevensc 25102
 
25103
.btn.btn-icon.btn-lg svg,
25104
.wizard>.actions a.btn-icon.btn-lg svg,
25105
div.tox .btn-icon.btn-lg.tox-button svg,
25106
.swal2-popup .swal2-actions button.btn-icon.btn-lg svg,
25107
.fc .btn-icon.btn-lg.fc-button-primary svg,
25108
.btn-group-lg>.btn.btn-icon svg,
25109
.wizard>.actions .btn-group-lg>a.btn-icon svg,
25110
div.tox .btn-group-lg>.btn-icon.tox-button svg,
25111
.swal2-popup .swal2-actions .btn-group-lg>button.btn-icon svg,
25112
.fc .btn-group-lg>.btn-icon.fc-button-primary svg {
16825 efrain 25113
  height: 18px;
25114
}
16848 stevensc 25115
 
25116
.btn.btn-icon-text .btn-icon-prepend,
25117
.wizard>.actions a.btn-icon-text .btn-icon-prepend,
25118
div.tox .btn-icon-text.tox-button .btn-icon-prepend,
25119
.swal2-popup .swal2-actions button.btn-icon-text .btn-icon-prepend,
25120
.fc .btn-icon-text.fc-button-primary .btn-icon-prepend {
16825 efrain 25121
  margin-right: 0.5rem;
25122
}
16848 stevensc 25123
 
25124
.btn.btn-icon-text .btn-icon-append,
25125
.wizard>.actions a.btn-icon-text .btn-icon-append,
25126
div.tox .btn-icon-text.tox-button .btn-icon-append,
25127
.swal2-popup .swal2-actions button.btn-icon-text .btn-icon-append,
25128
.fc .btn-icon-text.fc-button-primary .btn-icon-append {
16825 efrain 25129
  margin-left: 0.5rem;
25130
}
16848 stevensc 25131
 
25132
.btn.btn-icon-text .btn-icon-prepend,
25133
.wizard>.actions a.btn-icon-text .btn-icon-prepend,
25134
div.tox .btn-icon-text.tox-button .btn-icon-prepend,
25135
.swal2-popup .swal2-actions button.btn-icon-text .btn-icon-prepend,
25136
.fc .btn-icon-text.fc-button-primary .btn-icon-prepend,
16825 efrain 25137
.btn.btn-icon-text .btn-icon-append,
16848 stevensc 25138
.wizard>.actions a.btn-icon-text .btn-icon-append,
16825 efrain 25139
div.tox .btn-icon-text.tox-button .btn-icon-append,
25140
.swal2-popup .swal2-actions button.btn-icon-text .btn-icon-append,
25141
.fc .btn-icon-text.fc-button-primary .btn-icon-append {
25142
  width: 18px;
25143
  height: 18px;
25144
}
16848 stevensc 25145
 
25146
.btn.btn-icon-text.btn-xs .btn-icon-prepend,
25147
.wizard>.actions a.btn-icon-text.btn-xs .btn-icon-prepend,
25148
div.tox .btn-icon-text.btn-xs.tox-button .btn-icon-prepend,
25149
.swal2-popup .swal2-actions button.btn-icon-text.btn-xs .btn-icon-prepend,
25150
.fc .btn-icon-text.btn-xs.fc-button-primary .btn-icon-prepend,
16825 efrain 25151
.btn.btn-icon-text.btn-xs .btn-icon-append,
16848 stevensc 25152
.wizard>.actions a.btn-icon-text.btn-xs .btn-icon-append,
16825 efrain 25153
div.tox .btn-icon-text.btn-xs.tox-button .btn-icon-append,
25154
.swal2-popup .swal2-actions button.btn-icon-text.btn-xs .btn-icon-append,
25155
.fc .btn-icon-text.btn-xs.fc-button-primary .btn-icon-append {
25156
  width: 14px;
25157
  height: 14px;
25158
}
16848 stevensc 25159
 
25160
.btn.btn-icon-text.btn-sm .btn-icon-prepend,
25161
.wizard>.actions a.btn-icon-text.btn-sm .btn-icon-prepend,
25162
div.tox .btn-icon-text.btn-sm.tox-button .btn-icon-prepend,
25163
.swal2-popup .swal2-actions button.btn-icon-text.btn-sm .btn-icon-prepend,
25164
.fc .btn-icon-text.fc-button-primary .btn-icon-prepend,
25165
.btn-group-sm>.btn.btn-icon-text .btn-icon-prepend,
25166
.wizard>.actions .btn-group-sm>a.btn-icon-text .btn-icon-prepend,
25167
div.tox .btn-group-sm>.btn-icon-text.tox-button .btn-icon-prepend,
25168
.swal2-popup .swal2-actions .btn-group-sm>button.btn-icon-text .btn-icon-prepend,
16825 efrain 25169
.btn.btn-icon-text.btn-sm .btn-icon-append,
16848 stevensc 25170
.wizard>.actions a.btn-icon-text.btn-sm .btn-icon-append,
16825 efrain 25171
div.tox .btn-icon-text.btn-sm.tox-button .btn-icon-append,
25172
.swal2-popup .swal2-actions button.btn-icon-text.btn-sm .btn-icon-append,
25173
.fc .btn-icon-text.fc-button-primary .btn-icon-append,
16848 stevensc 25174
.btn-group-sm>.btn.btn-icon-text .btn-icon-append,
25175
.wizard>.actions .btn-group-sm>a.btn-icon-text .btn-icon-append,
25176
div.tox .btn-group-sm>.btn-icon-text.tox-button .btn-icon-append,
25177
.swal2-popup .swal2-actions .btn-group-sm>button.btn-icon-text .btn-icon-append {
16825 efrain 25178
  width: 15px;
25179
  height: 15px;
25180
}
16848 stevensc 25181
 
25182
.btn.btn-icon-text.btn-lg .btn-icon-prepend,
25183
.wizard>.actions a.btn-icon-text.btn-lg .btn-icon-prepend,
25184
div.tox .btn-icon-text.btn-lg.tox-button .btn-icon-prepend,
25185
.swal2-popup .swal2-actions button.btn-icon-text.btn-lg .btn-icon-prepend,
25186
.fc .btn-icon-text.btn-lg.fc-button-primary .btn-icon-prepend,
25187
.btn-group-lg>.btn.btn-icon-text .btn-icon-prepend,
25188
.wizard>.actions .btn-group-lg>a.btn-icon-text .btn-icon-prepend,
25189
div.tox .btn-group-lg>.btn-icon-text.tox-button .btn-icon-prepend,
25190
.swal2-popup .swal2-actions .btn-group-lg>button.btn-icon-text .btn-icon-prepend,
25191
.fc .btn-group-lg>.btn-icon-text.fc-button-primary .btn-icon-prepend,
16825 efrain 25192
.btn.btn-icon-text.btn-lg .btn-icon-append,
16848 stevensc 25193
.wizard>.actions a.btn-icon-text.btn-lg .btn-icon-append,
16825 efrain 25194
div.tox .btn-icon-text.btn-lg.tox-button .btn-icon-append,
25195
.swal2-popup .swal2-actions button.btn-icon-text.btn-lg .btn-icon-append,
25196
.fc .btn-icon-text.btn-lg.fc-button-primary .btn-icon-append,
16848 stevensc 25197
.btn-group-lg>.btn.btn-icon-text .btn-icon-append,
25198
.wizard>.actions .btn-group-lg>a.btn-icon-text .btn-icon-append,
25199
div.tox .btn-group-lg>.btn-icon-text.tox-button .btn-icon-append,
25200
.swal2-popup .swal2-actions .btn-group-lg>button.btn-icon-text .btn-icon-append,
25201
.fc .btn-group-lg>.btn-icon-text.fc-button-primary .btn-icon-append {
16825 efrain 25202
  width: 18px;
25203
  height: 18px;
25204
}
25205
 
25206
.btn-facebook {
25207
  background: #3b5998;
25208
  color: #fff;
25209
}
16848 stevensc 25210
 
25211
.btn-facebook:hover,
25212
.btn-facebook:focus {
16825 efrain 25213
  background: #2d4373;
25214
  color: #fff;
25215
}
16848 stevensc 25216
 
16825 efrain 25217
.btn-facebook.btn-social-icon-text {
25218
  padding: 0 1.5rem 0 0;
25219
  background: #4c70ba;
25220
}
16848 stevensc 25221
 
16825 efrain 25222
.btn-facebook.btn-social-icon-text i {
25223
  background: #3b5998;
25224
  padding: 0.75rem;
25225
  display: inline-block;
25226
  margin-right: 1.5rem;
25227
}
25228
 
25229
.btn-outline-facebook {
25230
  border: 1px solid #3b5998;
25231
  color: #3b5998;
25232
}
16848 stevensc 25233
 
16825 efrain 25234
.btn-outline-facebook:hover {
25235
  background: #3b5998;
25236
  color: #fff;
25237
}
25238
 
25239
.btn-twitter {
25240
  background: #1da1f2;
25241
  color: #fff;
25242
}
16848 stevensc 25243
 
25244
.btn-twitter:hover,
25245
.btn-twitter:focus {
16825 efrain 25246
  background: #0c85d0;
25247
  color: #fff;
25248
}
16848 stevensc 25249
 
16825 efrain 25250
.btn-twitter.btn-social-icon-text {
25251
  padding: 0 1.5rem 0 0;
25252
  background: #4db5f5;
25253
}
16848 stevensc 25254
 
16825 efrain 25255
.btn-twitter.btn-social-icon-text i {
25256
  background: #1da1f2;
25257
  padding: 0.75rem;
25258
  display: inline-block;
25259
  margin-right: 1.5rem;
25260
}
25261
 
25262
.btn-outline-twitter {
25263
  border: 1px solid #1da1f2;
25264
  color: #1da1f2;
25265
}
16848 stevensc 25266
 
16825 efrain 25267
.btn-outline-twitter:hover {
25268
  background: #1da1f2;
25269
  color: #fff;
25270
}
25271
 
25272
.btn-google {
25273
  background: #dc4e41;
25274
  color: #fff;
25275
}
16848 stevensc 25276
 
25277
.btn-google:hover,
25278
.btn-google:focus {
16825 efrain 25279
  background: #c63224;
25280
  color: #fff;
25281
}
16848 stevensc 25282
 
16825 efrain 25283
.btn-google.btn-social-icon-text {
25284
  padding: 0 1.5rem 0 0;
25285
  background: #e4766c;
25286
}
16848 stevensc 25287
 
16825 efrain 25288
.btn-google.btn-social-icon-text i {
25289
  background: #dc4e41;
25290
  padding: 0.75rem;
25291
  display: inline-block;
25292
  margin-right: 1.5rem;
25293
}
25294
 
25295
.btn-outline-google {
25296
  border: 1px solid #dc4e41;
25297
  color: #dc4e41;
25298
}
16848 stevensc 25299
 
16825 efrain 25300
.btn-outline-google:hover {
25301
  background: #dc4e41;
25302
  color: #fff;
25303
}
25304
 
25305
.btn-youtube {
25306
  background: #f00;
25307
  color: #fff;
25308
}
16848 stevensc 25309
 
25310
.btn-youtube:hover,
25311
.btn-youtube:focus {
16825 efrain 25312
  background: #cc0000;
25313
  color: #fff;
25314
}
16848 stevensc 25315
 
16825 efrain 25316
.btn-youtube.btn-social-icon-text {
25317
  padding: 0 1.5rem 0 0;
25318
  background: #ff3333;
25319
}
16848 stevensc 25320
 
16825 efrain 25321
.btn-youtube.btn-social-icon-text i {
25322
  background: #f00;
25323
  padding: 0.75rem;
25324
  display: inline-block;
25325
  margin-right: 1.5rem;
25326
}
25327
 
25328
.btn-outline-youtube {
25329
  border: 1px solid #f00;
25330
  color: #f00;
25331
}
16848 stevensc 25332
 
16825 efrain 25333
.btn-outline-youtube:hover {
25334
  background: #f00;
25335
  color: #fff;
25336
}
25337
 
25338
.btn-vimeo {
25339
  background: #1ab7ea;
25340
  color: #fff;
25341
}
16848 stevensc 25342
 
25343
.btn-vimeo:hover,
25344
.btn-vimeo:focus {
16825 efrain 25345
  background: #1295bf;
25346
  color: #fff;
25347
}
16848 stevensc 25348
 
16825 efrain 25349
.btn-vimeo.btn-social-icon-text {
25350
  padding: 0 1.5rem 0 0;
25351
  background: #49c6ee;
25352
}
16848 stevensc 25353
 
16825 efrain 25354
.btn-vimeo.btn-social-icon-text i {
25355
  background: #1ab7ea;
25356
  padding: 0.75rem;
25357
  display: inline-block;
25358
  margin-right: 1.5rem;
25359
}
25360
 
25361
.btn-outline-vimeo {
25362
  border: 1px solid #1ab7ea;
25363
  color: #1ab7ea;
25364
}
16848 stevensc 25365
 
16825 efrain 25366
.btn-outline-vimeo:hover {
25367
  background: #1ab7ea;
25368
  color: #fff;
25369
}
25370
 
25371
.btn-dribbble {
25372
  background: #ea4c89;
25373
  color: #fff;
25374
}
16848 stevensc 25375
 
25376
.btn-dribbble:hover,
25377
.btn-dribbble:focus {
16825 efrain 25378
  background: #e51e6b;
25379
  color: #fff;
25380
}
16848 stevensc 25381
 
16825 efrain 25382
.btn-dribbble.btn-social-icon-text {
25383
  padding: 0 1.5rem 0 0;
25384
  background: #ef7aa7;
25385
}
16848 stevensc 25386
 
16825 efrain 25387
.btn-dribbble.btn-social-icon-text i {
25388
  background: #ea4c89;
25389
  padding: 0.75rem;
25390
  display: inline-block;
25391
  margin-right: 1.5rem;
25392
}
25393
 
25394
.btn-outline-dribbble {
25395
  border: 1px solid #ea4c89;
25396
  color: #ea4c89;
25397
}
16848 stevensc 25398
 
16825 efrain 25399
.btn-outline-dribbble:hover {
25400
  background: #ea4c89;
25401
  color: #fff;
25402
}
25403
 
25404
.btn-github {
25405
  background: #181717;
25406
  color: #fff;
25407
}
16848 stevensc 25408
 
25409
.btn-github:hover,
25410
.btn-github:focus {
16825 efrain 25411
  background: black;
25412
  color: #fff;
25413
}
16848 stevensc 25414
 
16825 efrain 25415
.btn-github.btn-social-icon-text {
25416
  padding: 0 1.5rem 0 0;
25417
  background: #323030;
25418
}
16848 stevensc 25419
 
16825 efrain 25420
.btn-github.btn-social-icon-text i {
25421
  background: #181717;
25422
  padding: 0.75rem;
25423
  display: inline-block;
25424
  margin-right: 1.5rem;
25425
}
25426
 
25427
.btn-outline-github {
25428
  border: 1px solid #181717;
25429
  color: #181717;
25430
}
16848 stevensc 25431
 
16825 efrain 25432
.btn-outline-github:hover {
25433
  background: #181717;
25434
  color: #fff;
25435
}
25436
 
25437
.btn-instagram {
25438
  background: #e4405f;
25439
  color: #fff;
25440
}
16848 stevensc 25441
 
25442
.btn-instagram:hover,
25443
.btn-instagram:focus {
16825 efrain 25444
  background: #d31e40;
25445
  color: #fff;
25446
}
16848 stevensc 25447
 
16825 efrain 25448
.btn-instagram.btn-social-icon-text {
25449
  padding: 0 1.5rem 0 0;
25450
  background: #ea6d84;
25451
}
16848 stevensc 25452
 
16825 efrain 25453
.btn-instagram.btn-social-icon-text i {
25454
  background: #e4405f;
25455
  padding: 0.75rem;
25456
  display: inline-block;
25457
  margin-right: 1.5rem;
25458
}
25459
 
25460
.btn-outline-instagram {
25461
  border: 1px solid #e4405f;
25462
  color: #e4405f;
25463
}
16848 stevensc 25464
 
16825 efrain 25465
.btn-outline-instagram:hover {
25466
  background: #e4405f;
25467
  color: #fff;
25468
}
25469
 
25470
.btn-pinterest {
25471
  background: #bd081c;
25472
  color: #fff;
25473
}
16848 stevensc 25474
 
25475
.btn-pinterest:hover,
25476
.btn-pinterest:focus {
16825 efrain 25477
  background: #8c0615;
25478
  color: #fff;
25479
}
16848 stevensc 25480
 
16825 efrain 25481
.btn-pinterest.btn-social-icon-text {
25482
  padding: 0 1.5rem 0 0;
25483
  background: #ee0a23;
25484
}
16848 stevensc 25485
 
16825 efrain 25486
.btn-pinterest.btn-social-icon-text i {
25487
  background: #bd081c;
25488
  padding: 0.75rem;
25489
  display: inline-block;
25490
  margin-right: 1.5rem;
25491
}
25492
 
25493
.btn-outline-pinterest {
25494
  border: 1px solid #bd081c;
25495
  color: #bd081c;
25496
}
16848 stevensc 25497
 
16825 efrain 25498
.btn-outline-pinterest:hover {
25499
  background: #bd081c;
25500
  color: #fff;
25501
}
25502
 
25503
.btn-flickr {
25504
  background: #0063dc;
25505
  color: #fff;
25506
}
16848 stevensc 25507
 
25508
.btn-flickr:hover,
25509
.btn-flickr:focus {
16825 efrain 25510
  background: #004ca9;
25511
  color: #fff;
25512
}
16848 stevensc 25513
 
16825 efrain 25514
.btn-flickr.btn-social-icon-text {
25515
  padding: 0 1.5rem 0 0;
25516
  background: #107cff;
25517
}
16848 stevensc 25518
 
16825 efrain 25519
.btn-flickr.btn-social-icon-text i {
25520
  background: #0063dc;
25521
  padding: 0.75rem;
25522
  display: inline-block;
25523
  margin-right: 1.5rem;
25524
}
25525
 
25526
.btn-outline-flickr {
25527
  border: 1px solid #0063dc;
25528
  color: #0063dc;
25529
}
16848 stevensc 25530
 
16825 efrain 25531
.btn-outline-flickr:hover {
25532
  background: #0063dc;
25533
  color: #fff;
25534
}
25535
 
25536
.btn-bitbucket {
25537
  background: #0052cc;
25538
  color: #fff;
25539
}
16848 stevensc 25540
 
25541
.btn-bitbucket:hover,
25542
.btn-bitbucket:focus {
16825 efrain 25543
  background: #003e99;
25544
  color: #fff;
25545
}
16848 stevensc 25546
 
16825 efrain 25547
.btn-bitbucket.btn-social-icon-text {
25548
  padding: 0 1.5rem 0 0;
25549
  background: #0067ff;
25550
}
16848 stevensc 25551
 
16825 efrain 25552
.btn-bitbucket.btn-social-icon-text i {
25553
  background: #0052cc;
25554
  padding: 0.75rem;
25555
  display: inline-block;
25556
  margin-right: 1.5rem;
25557
}
25558
 
25559
.btn-outline-bitbucket {
25560
  border: 1px solid #0052cc;
25561
  color: #0052cc;
25562
}
16848 stevensc 25563
 
16825 efrain 25564
.btn-outline-bitbucket:hover {
25565
  background: #0052cc;
25566
  color: #fff;
25567
}
25568
 
25569
.btn-linkedin {
25570
  background: #0077b5;
25571
  color: #fff;
25572
}
16848 stevensc 25573
 
25574
.btn-linkedin:hover,
25575
.btn-linkedin:focus {
16825 efrain 25576
  background: #005582;
25577
  color: #fff;
25578
}
16848 stevensc 25579
 
16825 efrain 25580
.btn-linkedin.btn-social-icon-text {
25581
  padding: 0 1.5rem 0 0;
25582
  background: #0099e8;
25583
}
16848 stevensc 25584
 
16825 efrain 25585
.btn-linkedin.btn-social-icon-text i {
25586
  background: #0077b5;
25587
  padding: 0.75rem;
25588
  display: inline-block;
25589
  margin-right: 1.5rem;
25590
}
25591
 
25592
.btn-outline-linkedin {
25593
  border: 1px solid #0077b5;
25594
  color: #0077b5;
25595
}
16848 stevensc 25596
 
16825 efrain 25597
.btn-outline-linkedin:hover {
25598
  background: #0077b5;
25599
  color: #fff;
25600
}
25601
 
25602
.btn-inverse-primary {
25603
  background-color: rgba(101, 113, 255, 0.2);
25604
  background-image: none;
25605
  border-color: rgba(101, 113, 255, 0);
25606
}
16848 stevensc 25607
 
16825 efrain 25608
.btn-inverse-primary:not(.btn-inverse-light) {
25609
  color: #6571ff;
25610
}
16848 stevensc 25611
 
25612
.btn-inverse-primary:hover,
25613
.btn-inverse-primary.active,
25614
.btn-inverse-primary:active,
25615
.show>.btn-inverse-primary.dropdown-toggle {
16825 efrain 25616
  background-color: rgba(101, 113, 255, 0.3);
25617
  border-color: rgba(101, 113, 255, 0);
25618
}
16848 stevensc 25619
 
25620
.btn-inverse-primary.focus,
25621
.btn-inverse-primary:focus {
16825 efrain 25622
  background-color: rgba(101, 113, 255, 0.3);
25623
  border-color: transparent;
25624
}
16848 stevensc 25625
 
25626
.btn-inverse-primary.disabled,
25627
.btn-inverse-primary:disabled {
16825 efrain 25628
  color: #6571ff;
25629
  background-color: transparent;
25630
}
25631
 
25632
.btn-inverse-secondary {
25633
  background-color: rgba(121, 135, 161, 0.2);
25634
  background-image: none;
25635
  border-color: rgba(121, 135, 161, 0);
25636
}
16848 stevensc 25637
 
16825 efrain 25638
.btn-inverse-secondary:not(.btn-inverse-light) {
25639
  color: #7987a1;
25640
}
16848 stevensc 25641
 
25642
.btn-inverse-secondary:hover,
25643
.btn-inverse-secondary.active,
25644
.btn-inverse-secondary:active,
25645
.show>.btn-inverse-secondary.dropdown-toggle {
16825 efrain 25646
  background-color: rgba(121, 135, 161, 0.3);
25647
  border-color: rgba(121, 135, 161, 0);
25648
}
16848 stevensc 25649
 
25650
.btn-inverse-secondary.focus,
25651
.btn-inverse-secondary:focus {
16825 efrain 25652
  background-color: rgba(121, 135, 161, 0.3);
25653
  border-color: transparent;
25654
}
16848 stevensc 25655
 
25656
.btn-inverse-secondary.disabled,
25657
.btn-inverse-secondary:disabled {
16825 efrain 25658
  color: #7987a1;
25659
  background-color: transparent;
25660
}
25661
 
25662
.btn-inverse-success {
25663
  background-color: rgba(5, 163, 74, 0.2);
25664
  background-image: none;
25665
  border-color: rgba(5, 163, 74, 0);
25666
}
16848 stevensc 25667
 
16825 efrain 25668
.btn-inverse-success:not(.btn-inverse-light) {
25669
  color: #05a34a;
25670
}
16848 stevensc 25671
 
25672
.btn-inverse-success:hover,
25673
.btn-inverse-success.active,
25674
.btn-inverse-success:active,
25675
.show>.btn-inverse-success.dropdown-toggle {
16825 efrain 25676
  background-color: rgba(5, 163, 74, 0.3);
25677
  border-color: rgba(5, 163, 74, 0);
25678
}
16848 stevensc 25679
 
25680
.btn-inverse-success.focus,
25681
.btn-inverse-success:focus {
16825 efrain 25682
  background-color: rgba(5, 163, 74, 0.3);
25683
  border-color: transparent;
25684
}
16848 stevensc 25685
 
25686
.btn-inverse-success.disabled,
25687
.btn-inverse-success:disabled {
16825 efrain 25688
  color: #05a34a;
25689
  background-color: transparent;
25690
}
25691
 
25692
.btn-inverse-info {
25693
  background-color: rgba(102, 209, 209, 0.2);
25694
  background-image: none;
25695
  border-color: rgba(102, 209, 209, 0);
25696
}
16848 stevensc 25697
 
16825 efrain 25698
.btn-inverse-info:not(.btn-inverse-light) {
25699
  color: #66d1d1;
25700
}
16848 stevensc 25701
 
25702
.btn-inverse-info:hover,
25703
.btn-inverse-info.active,
25704
.btn-inverse-info:active,
25705
.show>.btn-inverse-info.dropdown-toggle {
16825 efrain 25706
  background-color: rgba(102, 209, 209, 0.3);
25707
  border-color: rgba(102, 209, 209, 0);
25708
}
16848 stevensc 25709
 
25710
.btn-inverse-info.focus,
25711
.btn-inverse-info:focus {
16825 efrain 25712
  background-color: rgba(102, 209, 209, 0.3);
25713
  border-color: transparent;
25714
}
16848 stevensc 25715
 
25716
.btn-inverse-info.disabled,
25717
.btn-inverse-info:disabled {
16825 efrain 25718
  color: #66d1d1;
25719
  background-color: transparent;
25720
}
25721
 
25722
.btn-inverse-warning {
25723
  background-color: rgba(251, 188, 6, 0.2);
25724
  background-image: none;
25725
  border-color: rgba(251, 188, 6, 0);
25726
}
16848 stevensc 25727
 
16825 efrain 25728
.btn-inverse-warning:not(.btn-inverse-light) {
25729
  color: #fbbc06;
25730
}
16848 stevensc 25731
 
25732
.btn-inverse-warning:hover,
25733
.btn-inverse-warning.active,
25734
.btn-inverse-warning:active,
25735
.show>.btn-inverse-warning.dropdown-toggle {
16825 efrain 25736
  background-color: rgba(251, 188, 6, 0.3);
25737
  border-color: rgba(251, 188, 6, 0);
25738
}
16848 stevensc 25739
 
25740
.btn-inverse-warning.focus,
25741
.btn-inverse-warning:focus {
16825 efrain 25742
  background-color: rgba(251, 188, 6, 0.3);
25743
  border-color: transparent;
25744
}
16848 stevensc 25745
 
25746
.btn-inverse-warning.disabled,
25747
.btn-inverse-warning:disabled {
16825 efrain 25748
  color: #fbbc06;
25749
  background-color: transparent;
25750
}
25751
 
25752
.btn-inverse-danger {
25753
  background-color: rgba(255, 51, 102, 0.2);
25754
  background-image: none;
25755
  border-color: rgba(255, 51, 102, 0);
25756
}
16848 stevensc 25757
 
16825 efrain 25758
.btn-inverse-danger:not(.btn-inverse-light) {
25759
  color: #ff3366;
25760
}
16848 stevensc 25761
 
25762
.btn-inverse-danger:hover,
25763
.btn-inverse-danger.active,
25764
.btn-inverse-danger:active,
25765
.show>.btn-inverse-danger.dropdown-toggle {
16825 efrain 25766
  background-color: rgba(255, 51, 102, 0.3);
25767
  border-color: rgba(255, 51, 102, 0);
25768
}
16848 stevensc 25769
 
25770
.btn-inverse-danger.focus,
25771
.btn-inverse-danger:focus {
16825 efrain 25772
  background-color: rgba(255, 51, 102, 0.3);
25773
  border-color: transparent;
25774
}
16848 stevensc 25775
 
25776
.btn-inverse-danger.disabled,
25777
.btn-inverse-danger:disabled {
16825 efrain 25778
  color: #ff3366;
25779
  background-color: transparent;
25780
}
25781
 
25782
.btn-inverse-light {
25783
  background-color: rgba(233, 236, 239, 0.2);
25784
  background-image: none;
25785
  border-color: rgba(233, 236, 239, 0);
25786
}
16848 stevensc 25787
 
16825 efrain 25788
.btn-inverse-light:not(.btn-inverse-light) {
25789
  color: #e9ecef;
25790
}
16848 stevensc 25791
 
25792
.btn-inverse-light:hover,
25793
.btn-inverse-light.active,
25794
.btn-inverse-light:active,
25795
.show>.btn-inverse-light.dropdown-toggle {
16825 efrain 25796
  background-color: rgba(233, 236, 239, 0.3);
25797
  border-color: rgba(233, 236, 239, 0);
25798
}
16848 stevensc 25799
 
25800
.btn-inverse-light.focus,
25801
.btn-inverse-light:focus {
16825 efrain 25802
  background-color: rgba(233, 236, 239, 0.3);
25803
  border-color: transparent;
25804
}
16848 stevensc 25805
 
25806
.btn-inverse-light.disabled,
25807
.btn-inverse-light:disabled {
16825 efrain 25808
  color: #e9ecef;
25809
  background-color: transparent;
25810
}
25811
 
25812
.btn-inverse-dark {
25813
  background-color: rgba(6, 12, 23, 0.2);
25814
  background-image: none;
25815
  border-color: rgba(6, 12, 23, 0);
25816
}
16848 stevensc 25817
 
16825 efrain 25818
.btn-inverse-dark:not(.btn-inverse-light) {
25819
  color: #060c17;
25820
}
16848 stevensc 25821
 
25822
.btn-inverse-dark:hover,
25823
.btn-inverse-dark.active,
25824
.btn-inverse-dark:active,
25825
.show>.btn-inverse-dark.dropdown-toggle {
16825 efrain 25826
  background-color: rgba(6, 12, 23, 0.3);
25827
  border-color: rgba(6, 12, 23, 0);
25828
}
16848 stevensc 25829
 
25830
.btn-inverse-dark.focus,
25831
.btn-inverse-dark:focus {
16825 efrain 25832
  background-color: rgba(6, 12, 23, 0.3);
25833
  border-color: transparent;
25834
}
16848 stevensc 25835
 
25836
.btn-inverse-dark.disabled,
25837
.btn-inverse-dark:disabled {
16825 efrain 25838
  color: #060c17;
25839
  background-color: transparent;
25840
}
25841
 
25842
.card {
25843
  box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25844
  -webkit-box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25845
  -moz-box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25846
  -ms-box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25847
}
16848 stevensc 25848
 
25849
.card .card-body+.card-body {
16825 efrain 25850
  padding-top: 1rem;
25851
}
16848 stevensc 25852
 
16825 efrain 25853
.card .card-title {
25854
  text-transform: uppercase;
25855
  font-size: 0.875rem;
25856
  font-weight: 500;
25857
}
25858
 
25859
.card-group {
25860
  box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
25861
}
16848 stevensc 25862
 
16825 efrain 25863
.card-group .card {
25864
  box-shadow: none;
25865
}
25866
 
25867
.dropdown .dropdown-toggle:after,
25868
.btn-group .dropdown-toggle:after {
25869
  border-top: 0;
25870
  border-right: 0;
25871
  border-left: 0;
25872
  border-bottom: 0;
25873
  font: normal normal normal 24px/1 "feather";
25874
  content: "\e842";
25875
  width: auto;
25876
  height: auto;
25877
  vertical-align: middle;
25878
  line-height: 0.625rem;
25879
  font-size: 0.875rem;
25880
}
16848 stevensc 25881
 
16825 efrain 25882
.dropdown.dropup .dropdown-toggle::after,
25883
.btn-group.dropup .dropdown-toggle::after {
25884
  content: "\e845";
25885
}
16848 stevensc 25886
 
16825 efrain 25887
.dropdown.dropstart .dropdown-toggle::before,
25888
.btn-group.dropstart .dropdown-toggle::before {
25889
  border: 0;
25890
  font: normal normal normal 24px/1 "feather";
25891
  content: "\e843";
25892
  width: auto;
25893
  height: auto;
25894
  vertical-align: middle;
25895
  line-height: 0.625rem;
25896
  font-size: 0.875rem;
25897
}
16848 stevensc 25898
 
16825 efrain 25899
.dropdown.dropend .dropdown-toggle::after,
25900
.btn-group.dropend .dropdown-toggle::after {
25901
  content: "\e844";
25902
}
25903
 
16848 stevensc 25904
.dropdown-menu,
25905
.tt-menu {
16825 efrain 25906
  padding: 0.35rem;
25907
  margin-top: 0;
25908
  box-shadow: 0 5px 10px 0 rgba(183, 192, 206, 0.2);
25909
}
25910
 
16848 stevensc 25911
.dropdown-item,
25912
.tt-menu .tt-suggestion {
16825 efrain 25913
  font-size: 0.812rem;
25914
  padding: 0.25rem 0.875rem;
25915
  border-radius: 2px;
25916
}
16848 stevensc 25917
 
25918
.dropdown-item i,
25919
.tt-menu .tt-suggestion i,
25920
.dropdown-item svg,
25921
.tt-menu .tt-suggestion svg {
16825 efrain 25922
  color: #7987a1;
25923
}
16848 stevensc 25924
 
25925
.dropdown-item:not(.dropdown-item:active, .dropdown-item.active):hover,
25926
.tt-menu .tt-suggestion:not(.dropdown-item:active, .dropdown-item.active):hover {
16825 efrain 25927
  background-color: rgba(101, 113, 255, 0.1);
25928
}
16848 stevensc 25929
 
25930
.dropdown-item:not(.dropdown-item:active, .dropdown-item.active):hover,
25931
.tt-menu .tt-suggestion:not(.dropdown-item:active, .dropdown-item.active):hover,
25932
.dropdown-item:not(.dropdown-item:active, .dropdown-item.active):hover i,
25933
.tt-menu .tt-suggestion:not(.dropdown-item:active, .dropdown-item.active):hover i,
25934
.dropdown-item:not(.dropdown-item:active, .dropdown-item.active):hover svg,
25935
.tt-menu .tt-suggestion:not(.dropdown-item:active, .dropdown-item.active):hover svg {
16825 efrain 25936
  color: #6571ff;
25937
}
16848 stevensc 25938
 
25939
.dropdown-item:active i,
25940
.tt-menu .tt-suggestion:active i,
25941
.dropdown-item:active svg,
25942
.tt-menu .tt-suggestion:active svg,
25943
.dropdown-item.active i,
25944
.tt-menu .active.tt-suggestion i,
25945
.dropdown-item.active svg,
25946
.tt-menu .active.tt-suggestion svg {
16825 efrain 25947
  color: #fff;
25948
}
25949
 
25950
.form-control-xs,
25951
.form-select-xs {
25952
  padding: 0.313rem 0.8rem;
25953
  font-size: 0.75rem;
25954
}
25955
 
16848 stevensc 25956
.form-control-xs+.input-group-text {
16825 efrain 25957
  padding-top: 0.313rem;
25958
  padding-bottom: 0.313rem;
25959
}
25960
 
25961
.form-check-input {
25962
  margin-top: 0.13em;
25963
}
25964
 
25965
.input-group-text svg {
25966
  width: 18px;
25967
  height: 18px;
25968
}
25969
 
25970
[type=tel],
25971
[type=url],
25972
[type=email],
25973
[type=number] {
25974
  direction: ltr;
25975
}
25976
 
25977
.icons-list {
25978
  border-left: 1px solid #e9ecef;
25979
  border-top: 1px solid #e9ecef;
25980
}
16848 stevensc 25981
 
25982
.icons-list>div {
16825 efrain 25983
  border-bottom: 1px solid #e9ecef;
25984
  border-right: 1px solid #e9ecef;
25985
  background: #f9fafb;
25986
  display: flex;
25987
  align-items: center;
25988
  padding: 15px 20px;
25989
  font-weight: 400;
25990
  transition: all 0.3s ease-in-out;
25991
}
16848 stevensc 25992
 
25993
.icons-list>div i {
16825 efrain 25994
  display: inline-block;
25995
  font-size: 20px;
25996
  text-align: left;
25997
  margin-right: 12px;
25998
  color: #7987a1;
25999
  transition: all 0.3s ease-in-out;
26000
}
16848 stevensc 26001
 
26002
.icons-list>div svg {
16825 efrain 26003
  width: 20px;
26004
  margin-right: 12px;
26005
  color: #7987a1;
26006
  transition: all 0.3s ease-in-out;
26007
}
16848 stevensc 26008
 
26009
.icons-list>div:hover {
16825 efrain 26010
  cursor: text;
26011
}
16848 stevensc 26012
 
26013
.icons-list>div:hover i,
26014
.icons-list>div:hover svg {
16825 efrain 26015
  transform: scale(1.3);
26016
  color: #6571ff;
26017
}
26018
 
26019
.nav.nav-tabs .nav-item .nav-link {
26020
  border-color: #e9ecef #e9ecef #dee2e6;
26021
  color: #000;
26022
  background-color: #f8f9fa;
26023
  cursor: pointer;
26024
}
16848 stevensc 26025
 
16825 efrain 26026
.nav.nav-tabs .nav-item .nav-link.active {
26027
  border-color: #dee2e6 #dee2e6 #fff;
26028
  color: #6571ff;
26029
  background: #fff;
26030
}
16848 stevensc 26031
 
16825 efrain 26032
.nav.nav-tabs .nav-item .nav-link.disabled {
26033
  background-color: transparent;
26034
  color: #7987a1;
26035
  border-color: rgba(233, 236, 239, 0.7) rgba(233, 236, 239, 0.7) transparent;
26036
}
16848 stevensc 26037
 
16825 efrain 26038
.nav.nav-tabs.nav-tabs-vertical {
26039
  border-bottom: 0;
26040
}
16848 stevensc 26041
 
16825 efrain 26042
.nav.nav-tabs.nav-tabs-vertical .nav-link {
26043
  width: 100%;
26044
  border: 1px solid transparent;
26045
  border-radius: 0;
26046
  border-color: #e9ecef #e9ecef #dee2e6;
26047
  color: #000;
26048
  background-color: #f8f9fa;
26049
}
16848 stevensc 26050
 
16825 efrain 26051
.nav.nav-tabs.nav-tabs-vertical .nav-link:first-child {
26052
  border-radius: 0.25rem 0 0 0;
26053
}
16848 stevensc 26054
 
16825 efrain 26055
.nav.nav-tabs.nav-tabs-vertical .nav-link:last-child {
26056
  border-radius: 0 0 0 0.25rem;
26057
}
16848 stevensc 26058
 
16825 efrain 26059
.nav.nav-tabs.nav-tabs-vertical .nav-link.active {
26060
  background-color: #fff;
26061
  color: #6571ff;
26062
  border-right-color: transparent;
26063
}
16848 stevensc 26064
 
16825 efrain 26065
.nav.nav-tabs.nav-tabs-line .nav-link {
26066
  border: 0;
26067
  background-color: transparent;
26068
}
16848 stevensc 26069
 
16825 efrain 26070
.nav.nav-tabs.nav-tabs-line .nav-link.active {
26071
  border-bottom: 2px solid #6571ff;
26072
}
26073
 
26074
.tab-content.tab-content-vertical {
26075
  height: 100%;
26076
}
26077
 
26078
.pagination .page-item .page-link svg {
26079
  width: 18px;
26080
  height: 18px;
26081
}
16848 stevensc 26082
 
16825 efrain 26083
.pagination.pagination-separated .page-item {
26084
  margin-left: 2px;
26085
  margin-right: 2px;
26086
}
16848 stevensc 26087
 
16825 efrain 26088
.pagination.pagination-separated .page-item:first-child {
26089
  margin-left: 0;
26090
}
16848 stevensc 26091
 
16825 efrain 26092
.pagination.pagination-separated .page-item:last-child {
26093
  margin-right: 0;
26094
}
16848 stevensc 26095
 
16825 efrain 26096
.pagination.pagination-rounded .page-item {
26097
  margin-right: 2px;
26098
  margin-left: 2px;
26099
}
16848 stevensc 26100
 
16825 efrain 26101
.pagination.pagination-rounded .page-item .page-link {
26102
  border-radius: 50px;
26103
}
26104
 
26105
.table {
26106
  margin-bottom: 0;
26107
}
16848 stevensc 26108
 
26109
.table> :not(:last-child)> :last-child>* {
16825 efrain 26110
  border-bottom-color: inherit;
26111
}
16848 stevensc 26112
 
16825 efrain 26113
.table thead th {
26114
  border-top: 0;
26115
  font-weight: 500;
26116
  font-size: 12px;
26117
  text-transform: uppercase;
26118
  color: #7987a1;
26119
}
16848 stevensc 26120
 
16825 efrain 26121
.table thead th i {
26122
  margin-left: 0.325rem;
26123
}
16848 stevensc 26124
 
16825 efrain 26125
.table th,
26126
.table td {
26127
  white-space: nowrap;
26128
}
16848 stevensc 26129
 
16825 efrain 26130
.table td img {
26131
  width: 36px;
26132
  height: 36px;
26133
  border-radius: 100%;
26134
}
26135
 
26136
.timeline {
26137
  border-left: 3px solid #6571ff;
26138
  border-bottom-right-radius: 0.25rem;
26139
  border-top-right-radius: 0.25rem;
26140
  background: rgba(101, 113, 255, 0.2);
26141
  margin: 0 auto;
26142
  position: relative;
26143
  padding: 50px;
26144
  list-style: none;
26145
  max-width: 40%;
26146
}
16848 stevensc 26147
 
16825 efrain 26148
@media (max-width: 767px) {
26149
  .timeline {
26150
    max-width: 98%;
26151
    padding: 25px;
26152
  }
26153
}
16848 stevensc 26154
 
16825 efrain 26155
.timeline .event {
26156
  border-bottom: 1px dashed #e9ecef;
26157
  padding-bottom: 25px;
26158
  margin-bottom: 25px;
26159
  position: relative;
26160
}
16848 stevensc 26161
 
16825 efrain 26162
@media (max-width: 767px) {
26163
  .timeline .event {
26164
    padding-top: 30px;
26165
  }
26166
}
16848 stevensc 26167
 
16825 efrain 26168
.timeline .event .title {
26169
  font-weight: 500;
26170
  font-size: 1rem;
26171
  margin-bottom: 10px;
26172
}
16848 stevensc 26173
 
16825 efrain 26174
.timeline .event:last-of-type {
26175
  padding-bottom: 0;
26176
  margin-bottom: 0;
26177
  border: none;
26178
}
16848 stevensc 26179
 
26180
.timeline .event:before,
26181
.timeline .event:after {
16825 efrain 26182
  position: absolute;
26183
  display: block;
26184
  top: 0;
26185
}
16848 stevensc 26186
 
16825 efrain 26187
.timeline .event:before {
26188
  left: -207px;
26189
  content: attr(data-date);
26190
  text-align: right;
26191
  font-weight: 500;
26192
  font-size: 0.9em;
26193
  min-width: 120px;
26194
}
16848 stevensc 26195
 
16825 efrain 26196
@media (max-width: 767px) {
26197
  .timeline .event:before {
26198
    left: 0px;
26199
    text-align: left;
26200
  }
26201
}
16848 stevensc 26202
 
16825 efrain 26203
.timeline .event:after {
26204
  -webkit-box-shadow: 0 0 0 3px #6571ff;
26205
  box-shadow: 0 0 0 3px #6571ff;
26206
  left: -55.8px;
26207
  background: #fff;
26208
  border-radius: 50%;
26209
  height: 9px;
26210
  width: 9px;
26211
  content: "";
26212
  top: 5px;
26213
}
16848 stevensc 26214
 
16825 efrain 26215
@media (max-width: 767px) {
26216
  .timeline .event:after {
26217
    left: -31.8px;
26218
  }
26219
}
26220
 
26221
.chat-wrapper {
26222
  height: calc(100vh - 60px - 102px);
26223
}
16848 stevensc 26224
 
16825 efrain 26225
@media (max-width: 991px) {
26226
  .chat-wrapper {
26227
    min-height: 100%;
26228
  }
26229
}
16848 stevensc 26230
 
16825 efrain 26231
@media (max-width: 991px) {
26232
  .chat-wrapper {
26233
    height: 100%;
26234
  }
26235
}
16848 stevensc 26236
 
16825 efrain 26237
@media (min-width: 992px) {
26238
  .chat-wrapper .chat-aside {
26239
    padding-right: 23px;
26240
  }
26241
}
16848 stevensc 26242
 
16825 efrain 26243
.chat-wrapper .chat-aside .aside-body .tab-content .tab-pane {
26244
  position: relative;
26245
  max-height: calc(100vh - 385px);
26246
}
16848 stevensc 26247
 
26248
.chat-wrapper .chat-aside .aside-body .tab-content .tab-pane .chat-list .chat-item a>div {
16825 efrain 26249
  padding-top: 11px;
26250
  padding-bottom: 11px;
26251
}
16848 stevensc 26252
 
16825 efrain 26253
@media (max-width: 991px) {
26254
  .chat-wrapper .chat-content {
26255
    position: absolute;
26256
    background: #fff;
26257
    left: 0;
26258
    bottom: -1px;
26259
    top: 0;
26260
    right: 0;
26261
    display: none;
26262
  }
16848 stevensc 26263
 
16825 efrain 26264
  .chat-wrapper .chat-content.show {
26265
    display: block;
26266
  }
26267
}
16848 stevensc 26268
 
16825 efrain 26269
.chat-wrapper .chat-content .chat-header {
26270
  padding: 0 10px;
26271
}
16848 stevensc 26272
 
16825 efrain 26273
.chat-wrapper .chat-content .chat-body {
26274
  position: relative;
26275
  max-height: calc(100vh - 340px);
26276
  margin-top: 20px;
26277
  margin-bottom: 20px;
26278
}
16848 stevensc 26279
 
16825 efrain 26280
@media (max-width: 767px) {
26281
  .chat-wrapper .chat-content .chat-body {
26282
    max-height: calc(100vh - 315px);
26283
  }
26284
}
16848 stevensc 26285
 
16825 efrain 26286
@media (max-width: 991px) {
26287
  .chat-wrapper .chat-content .chat-body {
26288
    max-height: calc(100vh - 342px);
26289
  }
26290
}
16848 stevensc 26291
 
16825 efrain 26292
.chat-wrapper .chat-content .chat-body .messages {
26293
  padding: 0 10px;
26294
  list-style-type: none;
26295
}
16848 stevensc 26296
 
16825 efrain 26297
.chat-wrapper .chat-content .chat-body .messages .message-item {
26298
  display: flex;
26299
  max-width: 80%;
26300
  margin-bottom: 20px;
26301
}
16848 stevensc 26302
 
16825 efrain 26303
@media (max-width: 767px) {
26304
  .chat-wrapper .chat-content .chat-body .messages .message-item {
26305
    max-width: 95%;
26306
  }
26307
}
16848 stevensc 26308
 
16825 efrain 26309
.chat-wrapper .chat-content .chat-body .messages .message-item .content .bubble {
26310
  position: relative;
26311
  padding: 7px 15px;
26312
  margin-bottom: 4px;
26313
  width: -webkit-fit-content;
26314
  width: -moz-fit-content;
26315
  width: fit-content;
26316
}
16848 stevensc 26317
 
16825 efrain 26318
.chat-wrapper .chat-content .chat-body .messages .message-item .content span {
26319
  font-size: 12px;
26320
  color: #7987a1;
26321
}
16848 stevensc 26322
 
16825 efrain 26323
.chat-wrapper .chat-content .chat-body .messages .message-item.friend img {
26324
  order: 1;
26325
  margin-right: 15px;
26326
}
16848 stevensc 26327
 
16825 efrain 26328
.chat-wrapper .chat-content .chat-body .messages .message-item.friend .content {
26329
  order: 2;
26330
}
16848 stevensc 26331
 
16825 efrain 26332
.chat-wrapper .chat-content .chat-body .messages .message-item.friend .content .bubble {
26333
  background: rgba(101, 113, 255, 0.1);
26334
  border-radius: 0 5px 5px;
26335
}
16848 stevensc 26336
 
16825 efrain 26337
.chat-wrapper .chat-content .chat-body .messages .message-item.friend .content .bubble::before {
26338
  content: "";
26339
  width: 0;
26340
  height: 0;
26341
  position: absolute;
26342
  left: -10px;
26343
  top: 0;
26344
  border-top: 5px solid rgba(101, 113, 255, 0.1);
26345
  border-bottom: 5px solid transparent;
26346
  border-left: 5px solid transparent;
26347
  border-right: 5px solid rgba(101, 113, 255, 0.1);
26348
}
16848 stevensc 26349
 
16825 efrain 26350
.chat-wrapper .chat-content .chat-body .messages .message-item.me {
26351
  margin-left: auto;
26352
}
16848 stevensc 26353
 
16825 efrain 26354
.chat-wrapper .chat-content .chat-body .messages .message-item.me img {
26355
  order: 2;
26356
  margin-left: 15px;
26357
}
16848 stevensc 26358
 
16825 efrain 26359
.chat-wrapper .chat-content .chat-body .messages .message-item.me .content {
26360
  order: 1;
26361
  margin-left: auto;
26362
}
16848 stevensc 26363
 
16825 efrain 26364
.chat-wrapper .chat-content .chat-body .messages .message-item.me .content .bubble {
26365
  background: rgba(102, 209, 209, 0.1);
26366
  border-radius: 5px 0 5px 5px;
26367
  margin-left: auto;
26368
}
16848 stevensc 26369
 
16825 efrain 26370
.chat-wrapper .chat-content .chat-body .messages .message-item.me .content .bubble::before {
26371
  content: "";
26372
  width: 0;
26373
  height: 0;
26374
  position: absolute;
26375
  right: -10px;
26376
  top: 0;
26377
  border-top: 5px solid rgba(102, 209, 209, 0.1);
26378
  border-bottom: 5px solid transparent;
26379
  border-left: 5px solid rgba(102, 209, 209, 0.1);
26380
  border-right: 5px solid transparent;
26381
}
16848 stevensc 26382
 
16825 efrain 26383
.chat-wrapper .chat-content .chat-body .messages .message-item.me .content span {
26384
  text-align: right;
26385
  display: block;
26386
}
16848 stevensc 26387
 
16825 efrain 26388
.chat-wrapper figure {
26389
  position: relative;
26390
}
16848 stevensc 26391
 
16825 efrain 26392
.chat-wrapper figure .status {
26393
  width: 11px;
26394
  height: 11px;
26395
  background: #7987a1;
26396
  position: absolute;
26397
  bottom: 0px;
26398
  right: -2px;
26399
  border-radius: 50%;
26400
  border: 2px solid #fff;
26401
}
16848 stevensc 26402
 
16825 efrain 26403
.chat-wrapper figure .status.online {
26404
  background: #05a34a;
26405
}
16848 stevensc 26406
 
16825 efrain 26407
.chat-wrapper figure .status.offline {
26408
  background: #7987a1;
26409
}
26410
 
26411
.auth-page .auth-side-wrapper {
26412
  width: 100%;
26413
  height: 100%;
26414
  background-image: url(https://via.placeholder.com/219x452);
26415
  background-size: cover;
26416
}
26417
 
26418
.email-aside-nav.collapse {
26419
  display: block;
26420
}
16848 stevensc 26421
 
16825 efrain 26422
@media (max-width: 991px) {
26423
  .email-aside-nav.collapse {
26424
    display: none;
26425
  }
26426
}
16848 stevensc 26427
 
16825 efrain 26428
@media (max-width: 991px) {
26429
  .email-aside-nav.collapse.show {
26430
    display: block;
26431
  }
26432
}
16848 stevensc 26433
 
16825 efrain 26434
.email-aside-nav .nav-item {
26435
  border-radius: 0.2rem;
26436
}
16848 stevensc 26437
 
16825 efrain 26438
.email-aside-nav .nav-item .nav-link {
26439
  color: #000;
26440
}
16848 stevensc 26441
 
16825 efrain 26442
.email-aside-nav .nav-item .nav-link svg {
26443
  color: #7987a1;
26444
}
16848 stevensc 26445
 
26446
.email-aside-nav .nav-item.active,
26447
.email-aside-nav .nav-item:hover {
16825 efrain 26448
  background: rgba(101, 113, 255, 0.1);
26449
}
16848 stevensc 26450
 
26451
.email-aside-nav .nav-item.active .nav-link,
26452
.email-aside-nav .nav-item.active .nav-link svg,
26453
.email-aside-nav .nav-item:hover .nav-link,
26454
.email-aside-nav .nav-item:hover .nav-link svg {
16825 efrain 26455
  color: #6571ff;
26456
}
26457
 
26458
.email-list-item {
26459
  display: flex;
26460
  align-items: center;
26461
  border-bottom: 1px solid #e9ecef;
26462
  padding: 10px 20px;
26463
  cursor: pointer;
26464
}
16848 stevensc 26465
 
16825 efrain 26466
.email-list-item:hover {
26467
  background: rgba(101, 113, 255, 0.08);
26468
}
16848 stevensc 26469
 
16825 efrain 26470
.email-list-item:last-child {
26471
  margin-bottom: 5px;
26472
}
16848 stevensc 26473
 
16825 efrain 26474
.email-list-item .email-list-actions {
26475
  width: 40px;
26476
  vertical-align: top;
26477
  display: table-cell;
26478
}
16848 stevensc 26479
 
16825 efrain 26480
.email-list-item .email-list-actions .form-check {
26481
  margin-bottom: 0;
26482
}
16848 stevensc 26483
 
16825 efrain 26484
.email-list-item .email-list-actions .favorite {
26485
  display: block;
26486
  padding-left: 1px;
26487
  line-height: 15px;
26488
}
16848 stevensc 26489
 
16825 efrain 26490
.email-list-item .email-list-actions .favorite span svg {
26491
  width: 14px;
26492
  color: #7987a1;
26493
}
16848 stevensc 26494
 
16825 efrain 26495
.email-list-item .email-list-actions .favorite:hover span {
26496
  color: #8d8d8d;
26497
}
16848 stevensc 26498
 
16825 efrain 26499
.email-list-item .email-list-actions .favorite.active span svg {
26500
  color: #fbbc06;
26501
}
16848 stevensc 26502
 
16825 efrain 26503
.email-list-item .email-list-detail {
26504
  width: calc(100% - 40px);
26505
  display: flex;
26506
  justify-content: space-between;
26507
  align-items: center;
26508
  flex-grow: 1;
26509
}
16848 stevensc 26510
 
16825 efrain 26511
.email-list-item .email-list-detail .content {
26512
  overflow: hidden;
26513
}
16848 stevensc 26514
 
16825 efrain 26515
.email-list-item .email-list-detail .content .from {
26516
  display: block;
26517
  margin: 0 0 1px 0;
26518
  color: #000;
26519
}
16848 stevensc 26520
 
16825 efrain 26521
.email-list-item .email-list-detail .content .msg {
26522
  width: 97%;
26523
  color: #7987a1;
26524
  font-size: 0.8rem;
26525
  overflow: hidden;
26526
  text-overflow: ellipsis;
26527
  white-space: nowrap;
26528
}
16848 stevensc 26529
 
16825 efrain 26530
.email-list-item .email-list-detail .date {
26531
  color: #000;
26532
  white-space: nowrap;
26533
}
16848 stevensc 26534
 
16825 efrain 26535
.email-list-item .email-list-detail .date .icon svg {
26536
  width: 14px;
26537
  margin-right: 7px;
26538
  color: #3d405c;
26539
}
16848 stevensc 26540
 
16825 efrain 26541
.email-list-item.email-list-item--unread {
26542
  background-color: rgba(101, 113, 255, 0.09);
26543
}
16848 stevensc 26544
 
16825 efrain 26545
.email-list-item.email-list-item--unread .content .from {
26546
  font-weight: 500;
26547
}
16848 stevensc 26548
 
16825 efrain 26549
.email-list-item.email-list-item--unread .content .msg {
26550
  font-weight: 700;
26551
}
26552
 
26553
.ace_editor {
26554
  border-radius: 0.25rem;
26555
  margin: auto;
26556
  height: 300px;
26557
  width: 100%;
26558
  font: 14px/normal SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
26559
}
16848 stevensc 26560
 
16825 efrain 26561
.ace_editor .ace_content {
26562
  font-size: 0.875rem;
26563
}
26564
 
26565
div.apexcharts-canvas .apexcharts-menu {
26566
  background: #fff !important;
26567
  color: #000;
26568
  border-color: #e9ecef;
26569
}
16848 stevensc 26570
 
16825 efrain 26571
div.apexcharts-canvas .apexcharts-zoom-icon svg,
26572
div.apexcharts-canvas .apexcharts-zoomin-icon svg,
26573
div.apexcharts-canvas .apexcharts-zoomout-icon svg,
26574
div.apexcharts-canvas .apexcharts-reset-icon svg,
26575
div.apexcharts-canvas .apexcharts-pan-icon svg,
26576
div.apexcharts-canvas .apexcharts-selection-icon svg,
26577
div.apexcharts-canvas .apexcharts-menu-icon svg,
26578
div.apexcharts-canvas .apexcharts-toolbar-custom-icon svg {
26579
  fill: #7987a1;
26580
}
16848 stevensc 26581
 
16825 efrain 26582
div.apexcharts-canvas .apexcharts-legend.apexcharts-align-right .apexcharts-legend-series,
26583
div.apexcharts-canvas .apexcharts-legend.apexcharts-align-left .apexcharts-legend-series {
26584
  display: flex;
26585
  align-items: center;
26586
}
16848 stevensc 26587
 
16825 efrain 26588
div.apexcharts-canvas .apexcharts-legend-marker {
26589
  margin-right: 3px;
26590
}
16848 stevensc 26591
 
16825 efrain 26592
div.apexcharts-canvas .apexcharts-tooltip {
26593
  background: rgba(255, 255, 255, 0.8);
26594
  color: #000;
26595
  box-shadow: 0 5px 10px 0 rgba(183, 192, 206, 0.2);
26596
  border-radius: 0.25rem;
26597
  border: 1px solid #f2f4f9;
26598
}
16848 stevensc 26599
 
16825 efrain 26600
div.apexcharts-canvas .apexcharts-tooltip .apexcharts-tooltip-title {
26601
  border-color: #e9ecef;
26602
  background-color: #fff;
26603
}
16848 stevensc 26604
 
16825 efrain 26605
div.apexcharts-canvas .apexcharts-tooltip * {
26606
  font-family: "Roboto", Helvetica, sans-serif !important;
26607
}
16848 stevensc 26608
 
16825 efrain 26609
div.apexcharts-canvas .apexcharts-tooltip-series-group.apexcharts-active,
26610
div.apexcharts-canvas .apexcharts-tooltip-series-group:last-child {
26611
  padding: 0 10px;
26612
}
16848 stevensc 26613
 
16825 efrain 26614
div.apexcharts-canvas .apexcharts-tooltip-text-y-value,
26615
div.apexcharts-canvas .apexcharts-tooltip-text-goals-value,
26616
div.apexcharts-canvas .apexcharts-tooltip-text-z-value {
26617
  margin-left: 0;
26618
}
16848 stevensc 26619
 
16825 efrain 26620
div.apexcharts-canvas .apexcharts-tooltip-title {
26621
  margin-bottom: 0;
26622
}
16848 stevensc 26623
 
16825 efrain 26624
div.apexcharts-canvas .apexcharts-xaxistooltip,
26625
div.apexcharts-canvas .apexcharts-yaxistooltip {
26626
  background: #fff;
26627
  color: #000;
26628
  border-color: #f2f4f9;
26629
}
16848 stevensc 26630
 
16825 efrain 26631
div.apexcharts-canvas .apexcharts-xaxistooltip-bottom::before {
26632
  border-bottom-color: #f2f4f9;
26633
}
16848 stevensc 26634
 
16825 efrain 26635
div.apexcharts-canvas .apexcharts-xaxistooltip-bottom::after {
26636
  border-bottom-color: rgba(255, 255, 255, 0.8);
26637
}
16848 stevensc 26638
 
16825 efrain 26639
div.apexcharts-canvas .apexcharts-yaxistooltip-left:before,
26640
div.apexcharts-canvas .apexcharts-yaxistooltip-right:before {
26641
  border-left-color: #f2f4f9;
26642
}
16848 stevensc 26643
 
16825 efrain 26644
div.apexcharts-canvas .apexcharts-yaxistooltip-left:after,
26645
div.apexcharts-canvas .apexcharts-yaxistooltip-right:after {
26646
  border-left-color: rgba(255, 255, 255, 0.8);
26647
}
26648
 
26649
@media (max-width: 767px) {
26650
  .dataTables_wrapper.dt-bootstrap5 .dataTables_length {
26651
    text-align: left;
26652
  }
26653
}
16848 stevensc 26654
 
16825 efrain 26655
.dataTables_wrapper.dt-bootstrap5 .dataTables_length select {
26656
  margin-left: 10px;
26657
  margin-right: 10px;
26658
}
16848 stevensc 26659
 
16825 efrain 26660
@media (max-width: 767px) {
26661
  .dataTables_wrapper.dt-bootstrap5 .dataTables_filter {
26662
    text-align: left;
26663
    margin-left: -19px;
26664
  }
26665
}
26666
 
26667
.dropify-wrapper {
26668
  border: 1px solid #e9ecef;
26669
  border-radius: 0.25rem;
26670
}
16848 stevensc 26671
 
16825 efrain 26672
.dropify-wrapper .dropify-message span.file-icon {
26673
  font-size: 0.875rem;
26674
  color: #7987a1;
26675
}
16848 stevensc 26676
 
16825 efrain 26677
.dropify-wrapper .dropify-message span.file-icon::before {
26678
  font-family: feather;
26679
  content: "\e8e3";
26680
  font-size: 24px;
26681
}
26682
 
26683
.dropzone {
26684
  overflow: auto;
26685
  border: 1px solid #e9ecef;
26686
  border-radius: 0.25rem;
26687
  max-height: 200px;
26688
  padding: 0;
26689
}
16848 stevensc 26690
 
16825 efrain 26691
@media (min-width: 1400px) {
26692
  .dropzone {
26693
    min-height: 200px;
26694
  }
26695
}
16848 stevensc 26696
 
16825 efrain 26697
.dropzone.dz-clickable .dz-message {
26698
  margin-top: 65px;
26699
}
16848 stevensc 26700
 
26701
.dropzone .dz-preview.dz-image-preview .dz-image,
26702
.dropzone .dz-preview.dz-file-preview .dz-image {
16825 efrain 26703
  border-radius: 0.25rem;
26704
}
26705
 
16848 stevensc 26706
.form-control.flatpickr-input,
26707
.flatpickr-input.typeahead.tt-input,
26708
.flatpickr-input.typeahead.tt-hint,
26709
.select2-container--default .select2-search--dropdown .flatpickr-input.select2-search__field {
16825 efrain 26710
  background-color: #fff;
26711
}
26712
 
26713
.flatpickr-day.selected,
26714
.flatpickr-day.startRange,
26715
.flatpickr-day.endRange,
26716
.flatpickr-day.selected.inRange,
26717
.flatpickr-day.startRange.inRange,
26718
.flatpickr-day.endRange.inRange,
26719
.flatpickr-day.selected:focus,
26720
.flatpickr-day.startRange:focus,
26721
.flatpickr-day.endRange:focus,
26722
.flatpickr-day.selected:hover,
26723
.flatpickr-day.startRange:hover,
26724
.flatpickr-day.endRange:hover,
26725
.flatpickr-day.selected.prevMonthDay,
26726
.flatpickr-day.startRange.prevMonthDay,
26727
.flatpickr-day.endRange.prevMonthDay,
26728
.flatpickr-day.selected.nextMonthDay,
26729
.flatpickr-day.startRange.nextMonthDay,
26730
.flatpickr-day.endRange.nextMonthDay {
26731
  background: #6571ff;
26732
  border-color: #6571ff;
26733
}
26734
 
26735
.flatpickr-months {
26736
  padding: 0 1rem;
26737
  padding-top: 0.5rem;
26738
}
26739
 
26740
.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
26741
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
26742
  left: 11px;
26743
  right: auto !important;
26744
  top: 8px;
26745
}
26746
 
26747
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
26748
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
26749
  right: 11px;
26750
  left: auto !important;
26751
  top: 8px;
26752
}
26753
 
26754
.flatpickr-months .flatpickr-prev-month:hover svg,
26755
.flatpickr-months .flatpickr-next-month:hover svg {
26756
  fill: #6571ff;
26757
}
26758
 
26759
.flatpickr-months .flatpickr-month {
26760
  height: 42px;
26761
}
26762
 
26763
.flatpickr-current-month .flatpickr-monthDropdown-months {
26764
  font-size: 1rem;
26765
  border-radius: 0.25rem;
26766
  padding: 0.3rem 0.5rem;
26767
}
26768
 
26769
.flatpickr-weekdays {
26770
  padding: 0 10px;
26771
}
26772
 
26773
.dayContainer {
26774
  padding: 0 10px 10px;
26775
}
26776
 
26777
.fc {
26778
  --fc-button-active-bg-color: #6571ff;
26779
  --fc-button-active-border-color: #6571ff;
26780
}
16848 stevensc 26781
 
16825 efrain 26782
.fc .fc-button .fc-icon {
26783
  font-size: 1.2 em;
26784
}
16848 stevensc 26785
 
16825 efrain 26786
.fc .fc-button-primary:focus,
26787
.fc .fc-button-primary:not(:disabled).fc-button-active:focus,
26788
.fc .fc-button-primary:not(:disabled):active:focus {
26789
  box-shadow: none;
26790
}
16848 stevensc 26791
 
16825 efrain 26792
.fc .fc-button-primary:disabled {
26793
  border-color: #6571ff;
26794
}
16848 stevensc 26795
 
16825 efrain 26796
@media (max-width: 767px) {
26797
  .fc .fc-toolbar {
26798
    flex-direction: column;
26799
  }
16848 stevensc 26800
 
16825 efrain 26801
  .fc .fc-toolbar .fc-toolbar-chunk {
26802
    margin-bottom: 12px;
26803
  }
26804
}
16848 stevensc 26805
 
16825 efrain 26806
.fc .fc-daygrid-day-number,
26807
.fc .fc-col-header-cell-cushion {
26808
  color: #000;
26809
}
16848 stevensc 26810
 
16825 efrain 26811
.fc .fc-daygrid-event {
26812
  padding: 4px;
26813
}
16848 stevensc 26814
 
16825 efrain 26815
.fc .fc-daygrid-day.fc-day-today {
26816
  background-color: rgba(101, 113, 255, 0.2);
26817
}
16848 stevensc 26818
 
16825 efrain 26819
.fc .fc-list-event:hover td {
26820
  background-color: rgba(101, 113, 255, 0.2);
26821
}
16848 stevensc 26822
 
16825 efrain 26823
.fc .fc-list-day-text,
26824
.fc .fc-list-day-side-text {
26825
  color: #000;
26826
}
26827
 
26828
.fc-theme-standard td,
26829
.fc-theme-standard th,
26830
.fc-theme-standard .fc-scrollgrid {
26831
  border-color: #e9ecef;
26832
}
26833
 
26834
.fc-timegrid-event-harness-inset .fc-timegrid-event,
26835
.fc-timegrid-event.fc-event-mirror,
26836
.fc-timegrid-more-link {
26837
  box-shadow: none;
26838
}
26839
 
26840
.fc-theme-standard .fc-popover {
26841
  background-color: #fff;
26842
  border-color: #f2f4f9;
26843
  box-shadow: 0 5px 10px 0 rgba(183, 192, 206, 0.2);
26844
}
16848 stevensc 26845
 
16825 efrain 26846
.fc-theme-standard .fc-popover .fc-popover-header {
26847
  background-color: #7987a1;
26848
}
26849
 
26850
.fc-theme-standard .fc-list-day-cushion {
26851
  background-color: #fff;
26852
}
26853
 
26854
.fc-theme-standard .fc-list {
26855
  border-color: #e9ecef;
26856
}
26857
 
26858
.fc-event {
26859
  margin-bottom: 10px;
26860
  padding: 8px;
26861
  border-radius: 2px;
26862
  background: rgba(101, 113, 255, 0.2);
26863
  border: 0;
26864
  border-left: 3px solid #6571ff;
26865
  color: #000;
26866
  font-weight: 500;
26867
}
26868
 
26869
.fc-h-event .fc-event-main {
26870
  color: #000;
26871
}
26872
 
26873
.flot-chart-wrapper .flot-chart {
26874
  width: 100%;
26875
  position: relative;
26876
  max-width: none;
26877
  height: 400px;
26878
}
16848 stevensc 26879
 
16825 efrain 26880
@media (max-width: 767px) {
26881
  .flot-chart-wrapper {
26882
    height: 200px;
26883
    min-height: 200px;
26884
  }
16848 stevensc 26885
 
16825 efrain 26886
  .flot-chart-wrapper .flot-chart {
26887
    height: 100%;
26888
  }
26889
}
26890
 
16848 stevensc 26891
.flot-text .flot-x-axis>div,
16825 efrain 26892
.flot-text .flot-x-axis .flot-tick-label,
16848 stevensc 26893
.flot-text .flot-y-axis>div,
16825 efrain 26894
.flot-text .flot-y-axis .flot-tick-label {
26895
  color: #000;
26896
}
26897
 
26898
.peity-custom svg {
26899
  margin-right: 10px;
26900
}
26901
 
26902
.ps__thumb-x {
26903
  background-color: #d9d9d9;
26904
  height: 4px;
26905
}
26906
 
26907
.ps__rail-x.ps--clicking .ps__thumb-x,
16848 stevensc 26908
.ps__rail-x:focus>.ps__thumb-x,
26909
.ps__rail-x:hover>.ps__thumb-x {
16825 efrain 26910
  background-color: #b3b3b3;
26911
  height: 6px;
26912
}
26913
 
26914
.ps__rail-x {
26915
  height: 10px;
26916
}
26917
 
26918
.ps__thumb-y {
26919
  background-color: #d9d9d9;
26920
  width: 4px;
26921
  /*rtl:raw:
26922
   left: 2px !important;
26923
  right: auto !important;
26924
   */
26925
}
26926
 
26927
.ps__rail-y.ps--clicking .ps__thumb-y,
16848 stevensc 26928
.ps__rail-y:focus>.ps__thumb-y,
26929
.ps__rail-y:hover>.ps__thumb-y {
16825 efrain 26930
  background-color: #b3b3b3;
26931
  width: 6px;
26932
}
26933
 
26934
.ps__rail-y {
26935
  width: 10px;
26936
  /*rtl:raw:
26937
   left: 0 !important;
26938
  right: auto !important;
26939
   */
26940
}
26941
 
26942
.ps .ps__rail-x.ps--clicking,
26943
.ps .ps__rail-x:focus,
26944
.ps .ps__rail-x:hover,
26945
.ps .ps__rail-y.ps--clicking,
26946
.ps .ps__rail-y:focus,
26947
.ps .ps__rail-y:hover {
26948
  background-color: #e9ecef;
26949
}
26950
 
26951
.swal2-popup {
26952
  font-size: 0.875rem;
26953
}
16848 stevensc 26954
 
16825 efrain 26955
.swal2-popup .swal2-title {
26956
  font-size: 25px;
26957
  line-height: 1;
26958
  font-weight: 500;
26959
  color: #000;
26960
  margin-bottom: 0;
26961
}
16848 stevensc 26962
 
16825 efrain 26963
.swal2-popup .swal2-html-container {
26964
  font-size: 0.875rem;
26965
  color: #7987a1;
26966
  font-weight: initial;
26967
  margin-top: 11px;
26968
  text-decoration: none;
26969
}
16848 stevensc 26970
 
16825 efrain 26971
.swal2-popup .swal2-actions button svg {
26972
  width: 16px;
26973
  height: 16px;
26974
}
16848 stevensc 26975
 
16825 efrain 26976
.swal2-popup .swal2-close {
26977
  font-size: 22px;
26978
}
16848 stevensc 26979
 
16825 efrain 26980
.swal2-popup .swal2-close:focus {
26981
  box-shadow: none;
26982
}
16848 stevensc 26983
 
16825 efrain 26984
.swal2-popup .swal2-timer-progress-bar {
26985
  background: #7987a1;
26986
}
26987
 
26988
.select2-container--default .select2-selection--single,
26989
.select2-container--default .select2-selection--multiple {
26990
  border: 1px solid #e9ecef;
26991
  border-radius: 0.25rem;
26992
}
16848 stevensc 26993
 
26994
.select2-container--focus.select2-container--default .select2-selection--single,
26995
.select2-container--focus.select2-container--default .select2-selection--multiple {
16825 efrain 26996
  border: 1px solid #cbd1db;
26997
}
26998
 
26999
.select2-dropdown {
27000
  border: 1px solid #cbd1db;
27001
  border-radius: 0.25rem;
27002
}
27003
 
27004
.select2-container--default .select2-results__option--highlighted[aria-selected] {
27005
  background-color: #6571ff;
27006
}
27007
 
27008
.select2-container .select2-selection--single,
27009
.select2-container .select2-selection--multiple {
27010
  height: auto;
27011
}
27012
 
27013
.select2-container--default .select2-selection--single .select2-selection__rendered {
27014
  line-height: 1.5;
27015
  padding: 0.469rem 0.8rem;
27016
}
16848 stevensc 27017
 
16825 efrain 27018
.select2-container--default .select2-selection--single .select2-selection__arrow {
27019
  height: 100%;
27020
}
16848 stevensc 27021
 
16825 efrain 27022
.select2-container--default .select2-selection--single .select2-selection__arrow b {
27023
  left: 0;
27024
}
27025
 
27026
.select2-container--default .select2-selection--multiple {
27027
  min-height: 38px;
27028
}
16848 stevensc 27029
 
16825 efrain 27030
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
27031
  padding: 0 6px;
27032
}
16848 stevensc 27033
 
16825 efrain 27034
.select2-container--default .select2-selection--multiple .select2-selection__choice {
27035
  background-color: #6571ff;
27036
  color: #fff;
27037
  border-color: #6571ff;
27038
  padding: 1px 8px;
27039
  border-radius: 0.15rem;
27040
  margin-top: 5px;
27041
}
16848 stevensc 27042
 
16825 efrain 27043
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
27044
  color: #fff;
27045
  opacity: 0.5;
27046
}
27047
 
27048
.select2-container .select2-search--inline {
27049
  margin-top: 3px;
27050
}
27051
 
27052
.EasyMDEContainer .CodeMirror {
27053
  background: #fff;
27054
  border: 1px solid #e9ecef;
27055
  color: #000;
27056
  border-bottom-left-radius: 0;
27057
  border-bottom-right-radius: 0;
27058
}
27059
 
27060
.editor-toolbar {
27061
  border: 1px solid #e9ecef;
27062
  border-bottom: 0;
27063
  border-radius: 0.25rem 0.25rem 0 0;
27064
}
16848 stevensc 27065
 
27066
.editor-toolbar,
27067
.editor-toolbar:hover {
16825 efrain 27068
  opacity: 1;
27069
}
16848 stevensc 27070
 
16825 efrain 27071
.editor-toolbar button {
27072
  color: rgba(0, 0, 0, 0.7) !important;
27073
}
16848 stevensc 27074
 
16825 efrain 27075
.editor-toolbar button:hover {
27076
  background: #e9ecef;
27077
  border: none;
27078
}
16848 stevensc 27079
 
16825 efrain 27080
.editor-toolbar i.separator {
27081
  border-left: 1px solid #e9ecef;
27082
  border-right: 1px solid #e9ecef;
27083
}
27084
 
27085
.CodeMirror-fullscreen,
27086
.editor-toolbar.fullscreen,
27087
.editor-preview-side {
27088
  z-index: 999;
27089
}
27090
 
27091
.editor-preview-side {
27092
  border-color: #e9ecef;
27093
}
27094
 
16848 stevensc 27095
.editor-toolbar button.active,
27096
.editor-toolbar button:hover {
16825 efrain 27097
  background: #e9ecef;
27098
  border-color: transparent;
27099
}
27100
 
27101
.editor-statusbar {
27102
  padding: 0 10px;
27103
  border: 1px solid #e9ecef;
27104
  border-top-color: transparent;
27105
  border-bottom-left-radius: 0.25rem;
27106
  border-bottom-right-radius: 0.25rem;
27107
}
27108
 
27109
div.tagsinput {
27110
  padding: 6px 6px 1px;
27111
  border-color: #e9ecef;
27112
  border-radius: 0.25rem;
27113
}
16848 stevensc 27114
 
16825 efrain 27115
div.tagsinput span.tag {
27116
  background: #6571ff;
27117
  color: #fff;
27118
  border: 0;
27119
  padding: 3px 7px;
27120
  font-family: inherit;
27121
  border-radius: 0.15rem;
27122
  margin-bottom: 4px;
27123
  float: left;
27124
  /*rtl:raw:
27125
  margin-left: 0;
27126
  margin-right: 5px;
27127
  */
27128
}
16848 stevensc 27129
 
16825 efrain 27130
div.tagsinput span.tag a {
27131
  font-size: 13px;
27132
  font-weight: 500;
27133
  color: #fff;
27134
  opacity: 0.5;
27135
}
16848 stevensc 27136
 
16825 efrain 27137
div.tagsinput #tags_addTag {
27138
  float: left;
27139
  /*rtl:raw:
27140
  margin-right: 5px;
27141
  */
27142
}
16848 stevensc 27143
 
16825 efrain 27144
div.tagsinput input {
27145
  margin: 0;
27146
  padding: 1px;
27147
  border-radius: 0.25rem;
27148
}
27149
 
27150
.tox.tox-tinymce {
27151
  border: 1px solid #e9ecef;
27152
  border-radius: 0.25rem;
27153
}
16848 stevensc 27154
 
16825 efrain 27155
.tox.tox-tinymce .tox-menubar,
27156
.tox.tox-tinymce .tox-toolbar-overlord,
27157
.tox.tox-tinymce .tox-toolbar,
27158
.tox.tox-tinymce .tox-toolbar__overflow,
27159
.tox.tox-tinymce .tox-toolbar__primary {
27160
  background-color: #fff;
27161
  background-image: none;
27162
  border-bottom: 1px solid #e9ecef;
27163
}
16848 stevensc 27164
 
16825 efrain 27165
.tox.tox-tinymce .tox-toolbar-overlord {
27166
  border-bottom: none;
27167
}
16848 stevensc 27168
 
16825 efrain 27169
.tox.tox-tinymce:not(.tox-tinymce-inline) .tox-editor-header {
27170
  padding: 0;
27171
  box-shadow: none;
27172
}
16848 stevensc 27173
 
16825 efrain 27174
.tox.tox-tinymce .tox-edit-area__iframe {
27175
  background-color: #fff;
27176
}
16848 stevensc 27177
 
16825 efrain 27178
.tox.tox-tinymce.tox:not([dir=rtl]) .tox-toolbar__group:not(:last-of-type) {
27179
  border-right-color: #e9ecef;
27180
  border-left-color: #e9ecef;
27181
}
16848 stevensc 27182
 
16825 efrain 27183
.tox.tox-tinymce .tox-statusbar {
27184
  background-color: #fff;
27185
  border-color: #e9ecef;
27186
  color: #7987a1;
27187
}
16848 stevensc 27188
 
16825 efrain 27189
.tox.tox-tinymce .tox-statusbar a,
27190
.tox.tox-tinymce .tox-statusbar__path-item,
27191
.tox.tox-tinymce .tox-statusbar__wordcount {
27192
  color: #7987a1;
27193
}
16848 stevensc 27194
 
16825 efrain 27195
.tox.tox-tinymce .tox-mbtn {
27196
  color: #000;
27197
}
16848 stevensc 27198
 
16825 efrain 27199
.tox.tox-tinymce .tox-tbtn {
27200
  color: rgba(0, 0, 0, 0.7);
27201
}
16848 stevensc 27202
 
16825 efrain 27203
.tox.tox-tinymce .tox-tbtn:hover {
27204
  background: #e9ecef;
27205
  color: #000;
27206
}
16848 stevensc 27207
 
16825 efrain 27208
.tox.tox-tinymce .tox-tbtn:hover svg {
27209
  fill: #000;
27210
}
16848 stevensc 27211
 
16825 efrain 27212
.tox.tox-tinymce .tox-tbtn:focus:not(.tox-tbtn--disabled) {
27213
  color: #000;
27214
}
16848 stevensc 27215
 
16825 efrain 27216
.tox.tox-tinymce .tox-mbtn:hover:not(:disabled):not(.tox-mbtn--active) {
27217
  background: #e9ecef;
27218
  color: #000;
27219
}
16848 stevensc 27220
 
16825 efrain 27221
.tox.tox-tinymce .tox-mbtn:focus:not(:disabled),
27222
.tox.tox-tinymce .tox-mbtn--active {
27223
  background: #e9ecef;
27224
  color: #000;
27225
}
16848 stevensc 27226
 
16825 efrain 27227
.tox.tox-tinymce .tox-tbtn svg {
27228
  fill: rgba(0, 0, 0, 0.7);
27229
}
16848 stevensc 27230
 
16825 efrain 27231
.tox.tox-tinymce .tox-tbtn--disabled svg,
27232
.tox.tox-tinymce .tox-tbtn--disabled:hover svg,
27233
.tox.tox-tinymce .tox-tbtn:disabled svg,
27234
.tox.tox-tinymce .tox-tbtn:disabled:hover svg {
27235
  fill: #e9ecef;
27236
}
16848 stevensc 27237
 
16825 efrain 27238
.tox.tox-tinymce .tox-split-button:hover {
27239
  box-shadow: 0 0 0 1px #e9ecef inset;
27240
}
16848 stevensc 27241
 
16825 efrain 27242
.tox.tox-tinymce .tox-split-button:focus {
27243
  background: #e9ecef;
27244
}
16848 stevensc 27245
 
16825 efrain 27246
.tox.tox-tinymce .tox-tbtn--enabled,
27247
.tox.tox-tinymce .tox-tbtn--enabled:hover,
27248
.tox.tox-tinymce .tox-tbtn:focus {
27249
  background: #e9ecef;
27250
}
27251
 
27252
div.tox .tox-menu {
27253
  background-color: #fff;
27254
  border-color: #f2f4f9;
27255
}
16848 stevensc 27256
 
16825 efrain 27257
div.tox .tox-collection__item {
27258
  color: #000;
27259
}
16848 stevensc 27260
 
16825 efrain 27261
div.tox .tox-collection--list .tox-collection__item--enabled {
27262
  background-color: #6571ff;
27263
  color: #fff;
27264
}
16848 stevensc 27265
 
16825 efrain 27266
div.tox .tox-collection--list .tox-collection__group {
27267
  border-color: #e9ecef;
27268
}
16848 stevensc 27269
 
16825 efrain 27270
div.tox .tox-collection--toolbar .tox-collection__item--active {
27271
  background-color: #e9ecef;
27272
}
16848 stevensc 27273
 
16825 efrain 27274
div.tox .tox-collection--list .tox-collection__item--active {
27275
  background-color: #e9ecef;
27276
}
16848 stevensc 27277
 
16825 efrain 27278
div.tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
27279
  color: #000;
27280
}
16848 stevensc 27281
 
16825 efrain 27282
div.tox .tox-collection--list .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
27283
  color: #000;
27284
}
16848 stevensc 27285
 
16825 efrain 27286
div.tox .tox-dialog-wrap__backdrop {
27287
  background-color: rgba(0, 0, 0, 0.75);
27288
}
16848 stevensc 27289
 
16825 efrain 27290
div.tox .tox-dialog,
27291
div.tox .tox-dialog__header,
27292
div.tox .tox-dialog__footer {
27293
  background-color: #fff;
27294
  border-color: #e9ecef;
27295
  color: #000;
27296
}
16848 stevensc 27297
 
16825 efrain 27298
div.tox .tox-button--secondary:hover:not(:disabled) {
27299
  background-color: #7987a1;
27300
  border-color: #7987a1;
27301
  color: #fff;
27302
}
16848 stevensc 27303
 
16825 efrain 27304
div.tox .tox-button--naked:hover:not(:disabled) {
27305
  background-color: transparent;
27306
  border-color: transparent;
27307
}
16848 stevensc 27308
 
16825 efrain 27309
div.tox .tox-button--naked.tox-button--icon:hover:not(:disabled) {
27310
  color: #333333;
27311
}
16848 stevensc 27312
 
16825 efrain 27313
div.tox .tox-listboxfield .tox-listbox--select,
27314
div.tox .tox-textarea,
27315
div.tox .tox-textfield,
27316
div.tox .tox-toolbar-textfield {
27317
  background-color: #fff;
27318
  border-color: #e9ecef;
27319
  color: #000;
27320
}
16848 stevensc 27321
 
16825 efrain 27322
div.tox .tox-listboxfield .tox-listbox--select:focus,
27323
div.tox .tox-textarea:focus,
27324
div.tox .tox-textfield:focus {
27325
  background-color: #fff;
27326
  border-color: #cbd1db;
27327
}
16848 stevensc 27328
 
16825 efrain 27329
div.tox .tox-dialog__table tbody tr {
27330
  border-color: #e9ecef;
27331
}
16848 stevensc 27332
 
16825 efrain 27333
div.tox .tox-dialog__body {
27334
  color: #000;
27335
}
27336
 
27337
.typeahead.tt-input,
27338
.typeahead.tt-hint {
27339
  background-color: #fff !important;
27340
  /*rtl:raw:
27341
  direction: rtl;
27342
  */
27343
}
27344
 
27345
.tt-menu .tt-suggestion {
27346
  cursor: pointer;
27347
}
27348
 
16848 stevensc 27349
.tabcontrol ul,
27350
.wizard ul {
16825 efrain 27351
  display: flex;
27352
}
16848 stevensc 27353
 
16825 efrain 27354
@media (max-width: 676px) {
16848 stevensc 27355
 
27356
  .tabcontrol ul,
27357
  .wizard ul {
16825 efrain 27358
    flex-wrap: wrap;
27359
  }
27360
}
27361
 
16848 stevensc 27362
.wizard>.steps>ul>li {
16825 efrain 27363
  width: auto;
27364
  display: flex;
27365
  flex-grow: 1;
27366
}
27367
 
16848 stevensc 27368
.wizard>.steps .disabled a,
27369
.wizard>.steps .disabled a:active,
27370
.wizard>.steps .disabled a:hover {
16825 efrain 27371
  background-color: #e9ecef;
27372
  color: #000;
27373
  border: 1px solid transparent;
27374
}
27375
 
16848 stevensc 27376
.wizard>.steps .current a,
27377
.wizard>.steps .current a:active,
27378
.wizard>.steps .current a:hover {
16825 efrain 27379
  background-color: #6571ff;
27380
  border: 1px solid transparent;
27381
}
27382
 
16848 stevensc 27383
.wizard>.steps a,
27384
.wizard>.steps a:active,
27385
.wizard>.steps a:hover {
16825 efrain 27386
  padding: 0.469rem 0.8rem;
27387
  border-radius: 0.25rem;
27388
  width: 100%;
27389
}
27390
 
16848 stevensc 27391
.wizard>.steps .done a,
27392
.wizard>.steps .done a:active,
27393
.wizard>.steps .done a:hover {
16825 efrain 27394
  background-color: rgba(101, 113, 255, 0.2);
27395
  color: #6571ff;
27396
  border: 1px solid #6571ff;
27397
}
27398
 
16848 stevensc 27399
.wizard>.steps ul li a,
27400
.wizard>.steps ul li a:active,
27401
.wizard>.steps ul li a:hover {
16825 efrain 27402
  margin: 0 0.5em 0.5em 0;
27403
}
16848 stevensc 27404
 
27405
.wizard>.steps ul li:last-child a,
27406
.wizard>.steps ul li:last-child a:active,
27407
.wizard>.steps ul li:last-child a:hover {
16825 efrain 27408
  margin: 0 0 0.5em 0;
27409
}
27410
 
16848 stevensc 27411
.wizard>.steps .number {
16825 efrain 27412
  font-size: inherit;
27413
}
27414
 
16848 stevensc 27415
.wizard>.content {
16825 efrain 27416
  background: #fff;
27417
  border: 1px solid #e9ecef;
27418
  min-height: 23em;
27419
  overflow: auto;
27420
  margin: 0.5em 0;
27421
}
27422
 
27423
@media (max-width: 767px) {
16848 stevensc 27424
  .wizard>.content>.body {
16825 efrain 27425
    width: 90%;
27426
    height: 90%;
27427
    padding: 5%;
27428
  }
27429
}
27430
 
16848 stevensc 27431
.wizard>.actions .disabled a,
27432
.wizard>.actions .disabled a:active,
27433
.wizard>.actions .disabled a:hover {
16825 efrain 27434
  background: #e9ecef;
27435
  border-color: #e9ecef;
27436
  cursor: not-allowed;
27437
  color: #aeb7c5;
27438
}
27439
 
16848 stevensc 27440
.wizard>.actions .disabled a:focus {
16825 efrain 27441
  box-shadow: none;
27442
  color: #aeb7c5;
27443
}
27444
 
16848 stevensc 27445
.wizard>.actions>ul li {
16825 efrain 27446
  margin-right: 0;
27447
  margin-left: 0.7em;
27448
}
27449
 
16848 stevensc 27450
.wizard.vertical>.steps ul {
16825 efrain 27451
  flex-direction: column;
27452
}
27453
 
16848 stevensc 27454
.wizard.vertical>.content {
16825 efrain 27455
  margin: 0 0 0.5em 2%;
27456
  width: 68%;
27457
}
27458
 
16848 stevensc 27459
.wizard.vertical>.steps a,
27460
.wizard.vertical>.steps a:active,
27461
.wizard.vertical>.steps a:hover {
16825 efrain 27462
  margin: 0 0 0.5em 0;
27463
}
27464
 
16848 stevensc 27465
.wizard.vertical>.actions {
16825 efrain 27466
  margin: 0;
27467
  width: 100%;
27468
}
27469
 
16848 stevensc 27470
.wizard.vertical>.actions>ul>li {
16825 efrain 27471
  margin: 0 0 0 0.7em;
27472
}
16848 stevensc 27473
 
27474
.pac-container {
27475
  z-index: 1200;
27476
}
27477
 
16849 stevensc 27478
.feed-container {
27479
  background-color: var(--bg-color);
27480
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.08);
27481
  height: fit-content;
27482
  width: -moz-available;
27483
  width: -webkit-fill-available;
27484
  width: fill-available;
27485
  overflow: hidden;
27486
  position: relative;
27487
}
27488
 
27489
.feed-container span {
27490
  font-size: 0.9rem;
27491
}
27492
 
27493
.feed-container p {
27494
  color: var(--font-color);
27495
  font-size: 14px;
27496
  text-align: justify;
27497
  margin-bottom: 0.5rem;
27498
}
27499
 
27500
.feed-container h2 {
27501
  font-size: 1rem;
27502
}
27503
 
27504
.feed-header {
27505
  display: flex;
27506
  gap: 0.5rem;
27507
  padding: 10px 1rem;
27508
  align-items: center;
27509
  justify-content: space-between;
27510
  position: relative;
27511
}
27512
 
27513
.feed_body {
27514
  padding: 10px 1rem;
27515
  display: flex;
27516
  flex-direction: column;
27517
}
27518
 
27519
.feed-actions {
27520
  display: flex;
27521
  justify-content: space-around;
27522
  border-top: 1px solid rgb(211, 211, 211);
27523
  padding: 5px;
27524
}
27525
 
27526
.feed-actions>button {
27527
  align-items: center;
27528
  border-radius: var(--border-radius);
27529
  cursor: pointer;
27530
  display: inline-flex;
27531
  flex-direction: column;
27532
  font-size: 0.9rem;
27533
  padding: 5px;
27534
  position: relative;
27535
}
27536
 
27537
.feed-actions>button:hover {
27538
  background-color: whitesmoke;
27539
}
27540
 
27541
@media (max-width: 768px) {
27542
  .feed-container {
27543
    border-radius: var(--border-radius);
27544
  }
27545
 
27546
  .feed-actions {
27547
    flex-direction: row;
27548
    gap: 0.5rem;
27549
    font-size: 1rem;
27550
  }
27551
}
27552
 
16848 stevensc 27553
/*# sourceMappingURL=../maps/demo1/style.css.map */