jekyll-theme-clean-blog 0.1.1 → 4.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c03dd0645a94547c225d5fca2dca4e926a221572a1006055c49da2db8441b5fc
4
- data.tar.gz: f237ba73383e1cc091407e3d79d477f119737f858da93a9f7fdd3649edaa10cc
3
+ metadata.gz: dcb3e4e80a84c04af526bd36fe7a7aabfc75a6e15448937208f3cbaa79ccd941
4
+ data.tar.gz: 4adbdc0d92b9cf6f7b96303301993e1ce7479be890e9698022baf0eae5dd4109
5
5
  SHA512:
6
- metadata.gz: 4e02531f54e535fa283ea9e2df43a6f0b8c4d1c61ebdfa34323cdd78bb6de60b495b522ac5c1f9dde7bf4757a30717b11ef6d13348bc8a223ab4e089757e2919
7
- data.tar.gz: ddf11ad27e22a2d9b7993cde18315bb9a63fa81effd94ab24c35c763da6bcd5d774672bb03a729a9621181546e995a4f917cdbcbff70e4e4e493ec3023759fc8
6
+ metadata.gz: 65f6522205a46f597146213a3b09bfff2633f60864b286630e254ca516b0bfef6c987b1be8fb921285f63ff5e0a40d7e7469c78793d5fcc618a175e2d3ffee2e
7
+ data.tar.gz: c97541ff471c43d04d3df61e76b3af77faa50dc4875d27dfe59a58caa2d41696bc48e7a53aa4085b8b186df32d6dd15d0aaf0fc74bfe69fbba7baac82e0bb8db
@@ -1,7 +1,7 @@
1
1
  /*!
2
- * Bootstrap Grid v4.0.0-beta.2 (https://getbootstrap.com)
3
- * Copyright 2011-2017 The Bootstrap Authors
4
- * Copyright 2011-2017 Twitter, Inc.
2
+ * Bootstrap Grid v4.0.0 (https://getbootstrap.com)
3
+ * Copyright 2011-2018 The Bootstrap Authors
4
+ * Copyright 2011-2018 Twitter, Inc.
5
5
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
6
6
  */
7
7
  @-ms-viewport {
@@ -60,10 +60,11 @@ html {
60
60
  }
61
61
 
62
62
  .row {
63
+ display: -webkit-box;
63
64
  display: -ms-flexbox;
64
65
  display: flex;
65
66
  -ms-flex-wrap: wrap;
66
- flex-wrap: wrap;
67
+ flex-wrap: wrap;
67
68
  margin-right: -15px;
68
69
  margin-left: -15px;
69
70
  }
@@ -94,154 +95,193 @@ html {
94
95
 
95
96
  .col {
96
97
  -ms-flex-preferred-size: 0;
97
- flex-basis: 0;
98
+ flex-basis: 0;
99
+ -webkit-box-flex: 1;
98
100
  -ms-flex-positive: 1;
99
- flex-grow: 1;
101
+ flex-grow: 1;
100
102
  max-width: 100%;
101
103
  }
102
104
 
103
105
  .col-auto {
106
+ -webkit-box-flex: 0;
104
107
  -ms-flex: 0 0 auto;
105
- flex: 0 0 auto;
108
+ flex: 0 0 auto;
106
109
  width: auto;
107
110
  max-width: none;
108
111
  }
109
112
 
110
113
  .col-1 {
114
+ -webkit-box-flex: 0;
111
115
  -ms-flex: 0 0 8.333333%;
112
- flex: 0 0 8.333333%;
116
+ flex: 0 0 8.333333%;
113
117
  max-width: 8.333333%;
114
118
  }
115
119
 
116
120
  .col-2 {
121
+ -webkit-box-flex: 0;
117
122
  -ms-flex: 0 0 16.666667%;
118
- flex: 0 0 16.666667%;
123
+ flex: 0 0 16.666667%;
119
124
  max-width: 16.666667%;
120
125
  }
121
126
 
122
127
  .col-3 {
128
+ -webkit-box-flex: 0;
123
129
  -ms-flex: 0 0 25%;
124
- flex: 0 0 25%;
130
+ flex: 0 0 25%;
125
131
  max-width: 25%;
126
132
  }
127
133
 
128
134
  .col-4 {
135
+ -webkit-box-flex: 0;
129
136
  -ms-flex: 0 0 33.333333%;
130
- flex: 0 0 33.333333%;
137
+ flex: 0 0 33.333333%;
131
138
  max-width: 33.333333%;
132
139
  }
133
140
 
134
141
  .col-5 {
142
+ -webkit-box-flex: 0;
135
143
  -ms-flex: 0 0 41.666667%;
136
- flex: 0 0 41.666667%;
144
+ flex: 0 0 41.666667%;
137
145
  max-width: 41.666667%;
138
146
  }
139
147
 
140
148
  .col-6 {
149
+ -webkit-box-flex: 0;
141
150
  -ms-flex: 0 0 50%;
142
- flex: 0 0 50%;
151
+ flex: 0 0 50%;
143
152
  max-width: 50%;
144
153
  }
145
154
 
146
155
  .col-7 {
156
+ -webkit-box-flex: 0;
147
157
  -ms-flex: 0 0 58.333333%;
148
- flex: 0 0 58.333333%;
158
+ flex: 0 0 58.333333%;
149
159
  max-width: 58.333333%;
150
160
  }
151
161
 
152
162
  .col-8 {
163
+ -webkit-box-flex: 0;
153
164
  -ms-flex: 0 0 66.666667%;
154
- flex: 0 0 66.666667%;
165
+ flex: 0 0 66.666667%;
155
166
  max-width: 66.666667%;
156
167
  }
157
168
 
158
169
  .col-9 {
170
+ -webkit-box-flex: 0;
159
171
  -ms-flex: 0 0 75%;
160
- flex: 0 0 75%;
172
+ flex: 0 0 75%;
161
173
  max-width: 75%;
162
174
  }
163
175
 
164
176
  .col-10 {
177
+ -webkit-box-flex: 0;
165
178
  -ms-flex: 0 0 83.333333%;
166
- flex: 0 0 83.333333%;
179
+ flex: 0 0 83.333333%;
167
180
  max-width: 83.333333%;
168
181
  }
169
182
 
170
183
  .col-11 {
184
+ -webkit-box-flex: 0;
171
185
  -ms-flex: 0 0 91.666667%;
172
- flex: 0 0 91.666667%;
186
+ flex: 0 0 91.666667%;
173
187
  max-width: 91.666667%;
174
188
  }
175
189
 
176
190
  .col-12 {
191
+ -webkit-box-flex: 0;
177
192
  -ms-flex: 0 0 100%;
178
- flex: 0 0 100%;
193
+ flex: 0 0 100%;
179
194
  max-width: 100%;
180
195
  }
181
196
 
182
197
  .order-first {
198
+ -webkit-box-ordinal-group: 0;
183
199
  -ms-flex-order: -1;
184
- order: -1;
200
+ order: -1;
201
+ }
202
+
203
+ .order-last {
204
+ -webkit-box-ordinal-group: 14;
205
+ -ms-flex-order: 13;
206
+ order: 13;
207
+ }
208
+
209
+ .order-0 {
210
+ -webkit-box-ordinal-group: 1;
211
+ -ms-flex-order: 0;
212
+ order: 0;
185
213
  }
186
214
 
187
215
  .order-1 {
216
+ -webkit-box-ordinal-group: 2;
188
217
  -ms-flex-order: 1;
189
- order: 1;
218
+ order: 1;
190
219
  }
191
220
 
192
221
  .order-2 {
222
+ -webkit-box-ordinal-group: 3;
193
223
  -ms-flex-order: 2;
194
- order: 2;
224
+ order: 2;
195
225
  }
196
226
 
197
227
  .order-3 {
228
+ -webkit-box-ordinal-group: 4;
198
229
  -ms-flex-order: 3;
199
- order: 3;
230
+ order: 3;
200
231
  }
201
232
 
202
233
  .order-4 {
234
+ -webkit-box-ordinal-group: 5;
203
235
  -ms-flex-order: 4;
204
- order: 4;
236
+ order: 4;
205
237
  }
206
238
 
207
239
  .order-5 {
240
+ -webkit-box-ordinal-group: 6;
208
241
  -ms-flex-order: 5;
209
- order: 5;
242
+ order: 5;
210
243
  }
211
244
 
212
245
  .order-6 {
246
+ -webkit-box-ordinal-group: 7;
213
247
  -ms-flex-order: 6;
214
- order: 6;
248
+ order: 6;
215
249
  }
216
250
 
217
251
  .order-7 {
252
+ -webkit-box-ordinal-group: 8;
218
253
  -ms-flex-order: 7;
219
- order: 7;
254
+ order: 7;
220
255
  }
221
256
 
222
257
  .order-8 {
258
+ -webkit-box-ordinal-group: 9;
223
259
  -ms-flex-order: 8;
224
- order: 8;
260
+ order: 8;
225
261
  }
226
262
 
227
263
  .order-9 {
264
+ -webkit-box-ordinal-group: 10;
228
265
  -ms-flex-order: 9;
229
- order: 9;
266
+ order: 9;
230
267
  }
231
268
 
232
269
  .order-10 {
270
+ -webkit-box-ordinal-group: 11;
233
271
  -ms-flex-order: 10;
234
- order: 10;
272
+ order: 10;
235
273
  }
236
274
 
237
275
  .order-11 {
276
+ -webkit-box-ordinal-group: 12;
238
277
  -ms-flex-order: 11;
239
- order: 11;
278
+ order: 11;
240
279
  }
241
280
 
242
281
  .order-12 {
282
+ -webkit-box-ordinal-group: 13;
243
283
  -ms-flex-order: 12;
244
- order: 12;
284
+ order: 12;
245
285
  }
246
286
 
247
287
  .offset-1 {
@@ -291,128 +331,165 @@ html {
291
331
  @media (min-width: 576px) {
292
332
  .col-sm {
293
333
  -ms-flex-preferred-size: 0;
294
- flex-basis: 0;
334
+ flex-basis: 0;
335
+ -webkit-box-flex: 1;
295
336
  -ms-flex-positive: 1;
296
- flex-grow: 1;
337
+ flex-grow: 1;
297
338
  max-width: 100%;
298
339
  }
299
340
  .col-sm-auto {
341
+ -webkit-box-flex: 0;
300
342
  -ms-flex: 0 0 auto;
301
- flex: 0 0 auto;
343
+ flex: 0 0 auto;
302
344
  width: auto;
303
345
  max-width: none;
304
346
  }
305
347
  .col-sm-1 {
348
+ -webkit-box-flex: 0;
306
349
  -ms-flex: 0 0 8.333333%;
307
- flex: 0 0 8.333333%;
350
+ flex: 0 0 8.333333%;
308
351
  max-width: 8.333333%;
309
352
  }
310
353
  .col-sm-2 {
354
+ -webkit-box-flex: 0;
311
355
  -ms-flex: 0 0 16.666667%;
312
- flex: 0 0 16.666667%;
356
+ flex: 0 0 16.666667%;
313
357
  max-width: 16.666667%;
314
358
  }
315
359
  .col-sm-3 {
360
+ -webkit-box-flex: 0;
316
361
  -ms-flex: 0 0 25%;
317
- flex: 0 0 25%;
362
+ flex: 0 0 25%;
318
363
  max-width: 25%;
319
364
  }
320
365
  .col-sm-4 {
366
+ -webkit-box-flex: 0;
321
367
  -ms-flex: 0 0 33.333333%;
322
- flex: 0 0 33.333333%;
368
+ flex: 0 0 33.333333%;
323
369
  max-width: 33.333333%;
324
370
  }
325
371
  .col-sm-5 {
372
+ -webkit-box-flex: 0;
326
373
  -ms-flex: 0 0 41.666667%;
327
- flex: 0 0 41.666667%;
374
+ flex: 0 0 41.666667%;
328
375
  max-width: 41.666667%;
329
376
  }
330
377
  .col-sm-6 {
378
+ -webkit-box-flex: 0;
331
379
  -ms-flex: 0 0 50%;
332
- flex: 0 0 50%;
380
+ flex: 0 0 50%;
333
381
  max-width: 50%;
334
382
  }
335
383
  .col-sm-7 {
384
+ -webkit-box-flex: 0;
336
385
  -ms-flex: 0 0 58.333333%;
337
- flex: 0 0 58.333333%;
386
+ flex: 0 0 58.333333%;
338
387
  max-width: 58.333333%;
339
388
  }
340
389
  .col-sm-8 {
390
+ -webkit-box-flex: 0;
341
391
  -ms-flex: 0 0 66.666667%;
342
- flex: 0 0 66.666667%;
392
+ flex: 0 0 66.666667%;
343
393
  max-width: 66.666667%;
344
394
  }
345
395
  .col-sm-9 {
396
+ -webkit-box-flex: 0;
346
397
  -ms-flex: 0 0 75%;
347
- flex: 0 0 75%;
398
+ flex: 0 0 75%;
348
399
  max-width: 75%;
349
400
  }
350
401
  .col-sm-10 {
402
+ -webkit-box-flex: 0;
351
403
  -ms-flex: 0 0 83.333333%;
352
- flex: 0 0 83.333333%;
404
+ flex: 0 0 83.333333%;
353
405
  max-width: 83.333333%;
354
406
  }
355
407
  .col-sm-11 {
408
+ -webkit-box-flex: 0;
356
409
  -ms-flex: 0 0 91.666667%;
357
- flex: 0 0 91.666667%;
410
+ flex: 0 0 91.666667%;
358
411
  max-width: 91.666667%;
359
412
  }
360
413
  .col-sm-12 {
414
+ -webkit-box-flex: 0;
361
415
  -ms-flex: 0 0 100%;
362
- flex: 0 0 100%;
416
+ flex: 0 0 100%;
363
417
  max-width: 100%;
364
418
  }
365
419
  .order-sm-first {
420
+ -webkit-box-ordinal-group: 0;
366
421
  -ms-flex-order: -1;
367
- order: -1;
422
+ order: -1;
423
+ }
424
+ .order-sm-last {
425
+ -webkit-box-ordinal-group: 14;
426
+ -ms-flex-order: 13;
427
+ order: 13;
428
+ }
429
+ .order-sm-0 {
430
+ -webkit-box-ordinal-group: 1;
431
+ -ms-flex-order: 0;
432
+ order: 0;
368
433
  }
369
434
  .order-sm-1 {
435
+ -webkit-box-ordinal-group: 2;
370
436
  -ms-flex-order: 1;
371
- order: 1;
437
+ order: 1;
372
438
  }
373
439
  .order-sm-2 {
440
+ -webkit-box-ordinal-group: 3;
374
441
  -ms-flex-order: 2;
375
- order: 2;
442
+ order: 2;
376
443
  }
377
444
  .order-sm-3 {
445
+ -webkit-box-ordinal-group: 4;
378
446
  -ms-flex-order: 3;
379
- order: 3;
447
+ order: 3;
380
448
  }
381
449
  .order-sm-4 {
450
+ -webkit-box-ordinal-group: 5;
382
451
  -ms-flex-order: 4;
383
- order: 4;
452
+ order: 4;
384
453
  }
385
454
  .order-sm-5 {
455
+ -webkit-box-ordinal-group: 6;
386
456
  -ms-flex-order: 5;
387
- order: 5;
457
+ order: 5;
388
458
  }
389
459
  .order-sm-6 {
460
+ -webkit-box-ordinal-group: 7;
390
461
  -ms-flex-order: 6;
391
- order: 6;
462
+ order: 6;
392
463
  }
393
464
  .order-sm-7 {
465
+ -webkit-box-ordinal-group: 8;
394
466
  -ms-flex-order: 7;
395
- order: 7;
467
+ order: 7;
396
468
  }
397
469
  .order-sm-8 {
470
+ -webkit-box-ordinal-group: 9;
398
471
  -ms-flex-order: 8;
399
- order: 8;
472
+ order: 8;
400
473
  }
401
474
  .order-sm-9 {
475
+ -webkit-box-ordinal-group: 10;
402
476
  -ms-flex-order: 9;
403
- order: 9;
477
+ order: 9;
404
478
  }
405
479
  .order-sm-10 {
480
+ -webkit-box-ordinal-group: 11;
406
481
  -ms-flex-order: 10;
407
- order: 10;
482
+ order: 10;
408
483
  }
409
484
  .order-sm-11 {
485
+ -webkit-box-ordinal-group: 12;
410
486
  -ms-flex-order: 11;
411
- order: 11;
487
+ order: 11;
412
488
  }
413
489
  .order-sm-12 {
490
+ -webkit-box-ordinal-group: 13;
414
491
  -ms-flex-order: 12;
415
- order: 12;
492
+ order: 12;
416
493
  }
417
494
  .offset-sm-0 {
418
495
  margin-left: 0;
@@ -455,128 +532,165 @@ html {
455
532
  @media (min-width: 768px) {
456
533
  .col-md {
457
534
  -ms-flex-preferred-size: 0;
458
- flex-basis: 0;
535
+ flex-basis: 0;
536
+ -webkit-box-flex: 1;
459
537
  -ms-flex-positive: 1;
460
- flex-grow: 1;
538
+ flex-grow: 1;
461
539
  max-width: 100%;
462
540
  }
463
541
  .col-md-auto {
542
+ -webkit-box-flex: 0;
464
543
  -ms-flex: 0 0 auto;
465
- flex: 0 0 auto;
544
+ flex: 0 0 auto;
466
545
  width: auto;
467
546
  max-width: none;
468
547
  }
469
548
  .col-md-1 {
549
+ -webkit-box-flex: 0;
470
550
  -ms-flex: 0 0 8.333333%;
471
- flex: 0 0 8.333333%;
551
+ flex: 0 0 8.333333%;
472
552
  max-width: 8.333333%;
473
553
  }
474
554
  .col-md-2 {
555
+ -webkit-box-flex: 0;
475
556
  -ms-flex: 0 0 16.666667%;
476
- flex: 0 0 16.666667%;
557
+ flex: 0 0 16.666667%;
477
558
  max-width: 16.666667%;
478
559
  }
479
560
  .col-md-3 {
561
+ -webkit-box-flex: 0;
480
562
  -ms-flex: 0 0 25%;
481
- flex: 0 0 25%;
563
+ flex: 0 0 25%;
482
564
  max-width: 25%;
483
565
  }
484
566
  .col-md-4 {
567
+ -webkit-box-flex: 0;
485
568
  -ms-flex: 0 0 33.333333%;
486
- flex: 0 0 33.333333%;
569
+ flex: 0 0 33.333333%;
487
570
  max-width: 33.333333%;
488
571
  }
489
572
  .col-md-5 {
573
+ -webkit-box-flex: 0;
490
574
  -ms-flex: 0 0 41.666667%;
491
- flex: 0 0 41.666667%;
575
+ flex: 0 0 41.666667%;
492
576
  max-width: 41.666667%;
493
577
  }
494
578
  .col-md-6 {
579
+ -webkit-box-flex: 0;
495
580
  -ms-flex: 0 0 50%;
496
- flex: 0 0 50%;
581
+ flex: 0 0 50%;
497
582
  max-width: 50%;
498
583
  }
499
584
  .col-md-7 {
585
+ -webkit-box-flex: 0;
500
586
  -ms-flex: 0 0 58.333333%;
501
- flex: 0 0 58.333333%;
587
+ flex: 0 0 58.333333%;
502
588
  max-width: 58.333333%;
503
589
  }
504
590
  .col-md-8 {
591
+ -webkit-box-flex: 0;
505
592
  -ms-flex: 0 0 66.666667%;
506
- flex: 0 0 66.666667%;
593
+ flex: 0 0 66.666667%;
507
594
  max-width: 66.666667%;
508
595
  }
509
596
  .col-md-9 {
597
+ -webkit-box-flex: 0;
510
598
  -ms-flex: 0 0 75%;
511
- flex: 0 0 75%;
599
+ flex: 0 0 75%;
512
600
  max-width: 75%;
513
601
  }
514
602
  .col-md-10 {
603
+ -webkit-box-flex: 0;
515
604
  -ms-flex: 0 0 83.333333%;
516
- flex: 0 0 83.333333%;
605
+ flex: 0 0 83.333333%;
517
606
  max-width: 83.333333%;
518
607
  }
519
608
  .col-md-11 {
609
+ -webkit-box-flex: 0;
520
610
  -ms-flex: 0 0 91.666667%;
521
- flex: 0 0 91.666667%;
611
+ flex: 0 0 91.666667%;
522
612
  max-width: 91.666667%;
523
613
  }
524
614
  .col-md-12 {
615
+ -webkit-box-flex: 0;
525
616
  -ms-flex: 0 0 100%;
526
- flex: 0 0 100%;
617
+ flex: 0 0 100%;
527
618
  max-width: 100%;
528
619
  }
529
620
  .order-md-first {
621
+ -webkit-box-ordinal-group: 0;
530
622
  -ms-flex-order: -1;
531
- order: -1;
623
+ order: -1;
624
+ }
625
+ .order-md-last {
626
+ -webkit-box-ordinal-group: 14;
627
+ -ms-flex-order: 13;
628
+ order: 13;
629
+ }
630
+ .order-md-0 {
631
+ -webkit-box-ordinal-group: 1;
632
+ -ms-flex-order: 0;
633
+ order: 0;
532
634
  }
533
635
  .order-md-1 {
636
+ -webkit-box-ordinal-group: 2;
534
637
  -ms-flex-order: 1;
535
- order: 1;
638
+ order: 1;
536
639
  }
537
640
  .order-md-2 {
641
+ -webkit-box-ordinal-group: 3;
538
642
  -ms-flex-order: 2;
539
- order: 2;
643
+ order: 2;
540
644
  }
541
645
  .order-md-3 {
646
+ -webkit-box-ordinal-group: 4;
542
647
  -ms-flex-order: 3;
543
- order: 3;
648
+ order: 3;
544
649
  }
545
650
  .order-md-4 {
651
+ -webkit-box-ordinal-group: 5;
546
652
  -ms-flex-order: 4;
547
- order: 4;
653
+ order: 4;
548
654
  }
549
655
  .order-md-5 {
656
+ -webkit-box-ordinal-group: 6;
550
657
  -ms-flex-order: 5;
551
- order: 5;
658
+ order: 5;
552
659
  }
553
660
  .order-md-6 {
661
+ -webkit-box-ordinal-group: 7;
554
662
  -ms-flex-order: 6;
555
- order: 6;
663
+ order: 6;
556
664
  }
557
665
  .order-md-7 {
666
+ -webkit-box-ordinal-group: 8;
558
667
  -ms-flex-order: 7;
559
- order: 7;
668
+ order: 7;
560
669
  }
561
670
  .order-md-8 {
671
+ -webkit-box-ordinal-group: 9;
562
672
  -ms-flex-order: 8;
563
- order: 8;
673
+ order: 8;
564
674
  }
565
675
  .order-md-9 {
676
+ -webkit-box-ordinal-group: 10;
566
677
  -ms-flex-order: 9;
567
- order: 9;
678
+ order: 9;
568
679
  }
569
680
  .order-md-10 {
681
+ -webkit-box-ordinal-group: 11;
570
682
  -ms-flex-order: 10;
571
- order: 10;
683
+ order: 10;
572
684
  }
573
685
  .order-md-11 {
686
+ -webkit-box-ordinal-group: 12;
574
687
  -ms-flex-order: 11;
575
- order: 11;
688
+ order: 11;
576
689
  }
577
690
  .order-md-12 {
691
+ -webkit-box-ordinal-group: 13;
578
692
  -ms-flex-order: 12;
579
- order: 12;
693
+ order: 12;
580
694
  }
581
695
  .offset-md-0 {
582
696
  margin-left: 0;
@@ -619,128 +733,165 @@ html {
619
733
  @media (min-width: 992px) {
620
734
  .col-lg {
621
735
  -ms-flex-preferred-size: 0;
622
- flex-basis: 0;
736
+ flex-basis: 0;
737
+ -webkit-box-flex: 1;
623
738
  -ms-flex-positive: 1;
624
- flex-grow: 1;
739
+ flex-grow: 1;
625
740
  max-width: 100%;
626
741
  }
627
742
  .col-lg-auto {
743
+ -webkit-box-flex: 0;
628
744
  -ms-flex: 0 0 auto;
629
- flex: 0 0 auto;
745
+ flex: 0 0 auto;
630
746
  width: auto;
631
747
  max-width: none;
632
748
  }
633
749
  .col-lg-1 {
750
+ -webkit-box-flex: 0;
634
751
  -ms-flex: 0 0 8.333333%;
635
- flex: 0 0 8.333333%;
752
+ flex: 0 0 8.333333%;
636
753
  max-width: 8.333333%;
637
754
  }
638
755
  .col-lg-2 {
756
+ -webkit-box-flex: 0;
639
757
  -ms-flex: 0 0 16.666667%;
640
- flex: 0 0 16.666667%;
758
+ flex: 0 0 16.666667%;
641
759
  max-width: 16.666667%;
642
760
  }
643
761
  .col-lg-3 {
762
+ -webkit-box-flex: 0;
644
763
  -ms-flex: 0 0 25%;
645
- flex: 0 0 25%;
764
+ flex: 0 0 25%;
646
765
  max-width: 25%;
647
766
  }
648
767
  .col-lg-4 {
768
+ -webkit-box-flex: 0;
649
769
  -ms-flex: 0 0 33.333333%;
650
- flex: 0 0 33.333333%;
770
+ flex: 0 0 33.333333%;
651
771
  max-width: 33.333333%;
652
772
  }
653
773
  .col-lg-5 {
774
+ -webkit-box-flex: 0;
654
775
  -ms-flex: 0 0 41.666667%;
655
- flex: 0 0 41.666667%;
776
+ flex: 0 0 41.666667%;
656
777
  max-width: 41.666667%;
657
778
  }
658
779
  .col-lg-6 {
780
+ -webkit-box-flex: 0;
659
781
  -ms-flex: 0 0 50%;
660
- flex: 0 0 50%;
782
+ flex: 0 0 50%;
661
783
  max-width: 50%;
662
784
  }
663
785
  .col-lg-7 {
786
+ -webkit-box-flex: 0;
664
787
  -ms-flex: 0 0 58.333333%;
665
- flex: 0 0 58.333333%;
788
+ flex: 0 0 58.333333%;
666
789
  max-width: 58.333333%;
667
790
  }
668
791
  .col-lg-8 {
792
+ -webkit-box-flex: 0;
669
793
  -ms-flex: 0 0 66.666667%;
670
- flex: 0 0 66.666667%;
794
+ flex: 0 0 66.666667%;
671
795
  max-width: 66.666667%;
672
796
  }
673
797
  .col-lg-9 {
798
+ -webkit-box-flex: 0;
674
799
  -ms-flex: 0 0 75%;
675
- flex: 0 0 75%;
800
+ flex: 0 0 75%;
676
801
  max-width: 75%;
677
802
  }
678
803
  .col-lg-10 {
804
+ -webkit-box-flex: 0;
679
805
  -ms-flex: 0 0 83.333333%;
680
- flex: 0 0 83.333333%;
806
+ flex: 0 0 83.333333%;
681
807
  max-width: 83.333333%;
682
808
  }
683
809
  .col-lg-11 {
810
+ -webkit-box-flex: 0;
684
811
  -ms-flex: 0 0 91.666667%;
685
- flex: 0 0 91.666667%;
812
+ flex: 0 0 91.666667%;
686
813
  max-width: 91.666667%;
687
814
  }
688
815
  .col-lg-12 {
816
+ -webkit-box-flex: 0;
689
817
  -ms-flex: 0 0 100%;
690
- flex: 0 0 100%;
818
+ flex: 0 0 100%;
691
819
  max-width: 100%;
692
820
  }
693
821
  .order-lg-first {
822
+ -webkit-box-ordinal-group: 0;
694
823
  -ms-flex-order: -1;
695
- order: -1;
824
+ order: -1;
825
+ }
826
+ .order-lg-last {
827
+ -webkit-box-ordinal-group: 14;
828
+ -ms-flex-order: 13;
829
+ order: 13;
830
+ }
831
+ .order-lg-0 {
832
+ -webkit-box-ordinal-group: 1;
833
+ -ms-flex-order: 0;
834
+ order: 0;
696
835
  }
697
836
  .order-lg-1 {
837
+ -webkit-box-ordinal-group: 2;
698
838
  -ms-flex-order: 1;
699
- order: 1;
839
+ order: 1;
700
840
  }
701
841
  .order-lg-2 {
842
+ -webkit-box-ordinal-group: 3;
702
843
  -ms-flex-order: 2;
703
- order: 2;
844
+ order: 2;
704
845
  }
705
846
  .order-lg-3 {
847
+ -webkit-box-ordinal-group: 4;
706
848
  -ms-flex-order: 3;
707
- order: 3;
849
+ order: 3;
708
850
  }
709
851
  .order-lg-4 {
852
+ -webkit-box-ordinal-group: 5;
710
853
  -ms-flex-order: 4;
711
- order: 4;
854
+ order: 4;
712
855
  }
713
856
  .order-lg-5 {
857
+ -webkit-box-ordinal-group: 6;
714
858
  -ms-flex-order: 5;
715
- order: 5;
859
+ order: 5;
716
860
  }
717
861
  .order-lg-6 {
862
+ -webkit-box-ordinal-group: 7;
718
863
  -ms-flex-order: 6;
719
- order: 6;
864
+ order: 6;
720
865
  }
721
866
  .order-lg-7 {
867
+ -webkit-box-ordinal-group: 8;
722
868
  -ms-flex-order: 7;
723
- order: 7;
869
+ order: 7;
724
870
  }
725
871
  .order-lg-8 {
872
+ -webkit-box-ordinal-group: 9;
726
873
  -ms-flex-order: 8;
727
- order: 8;
874
+ order: 8;
728
875
  }
729
876
  .order-lg-9 {
877
+ -webkit-box-ordinal-group: 10;
730
878
  -ms-flex-order: 9;
731
- order: 9;
879
+ order: 9;
732
880
  }
733
881
  .order-lg-10 {
882
+ -webkit-box-ordinal-group: 11;
734
883
  -ms-flex-order: 10;
735
- order: 10;
884
+ order: 10;
736
885
  }
737
886
  .order-lg-11 {
887
+ -webkit-box-ordinal-group: 12;
738
888
  -ms-flex-order: 11;
739
- order: 11;
889
+ order: 11;
740
890
  }
741
891
  .order-lg-12 {
892
+ -webkit-box-ordinal-group: 13;
742
893
  -ms-flex-order: 12;
743
- order: 12;
894
+ order: 12;
744
895
  }
745
896
  .offset-lg-0 {
746
897
  margin-left: 0;
@@ -783,128 +934,165 @@ html {
783
934
  @media (min-width: 1200px) {
784
935
  .col-xl {
785
936
  -ms-flex-preferred-size: 0;
786
- flex-basis: 0;
937
+ flex-basis: 0;
938
+ -webkit-box-flex: 1;
787
939
  -ms-flex-positive: 1;
788
- flex-grow: 1;
940
+ flex-grow: 1;
789
941
  max-width: 100%;
790
942
  }
791
943
  .col-xl-auto {
944
+ -webkit-box-flex: 0;
792
945
  -ms-flex: 0 0 auto;
793
- flex: 0 0 auto;
946
+ flex: 0 0 auto;
794
947
  width: auto;
795
948
  max-width: none;
796
949
  }
797
950
  .col-xl-1 {
951
+ -webkit-box-flex: 0;
798
952
  -ms-flex: 0 0 8.333333%;
799
- flex: 0 0 8.333333%;
953
+ flex: 0 0 8.333333%;
800
954
  max-width: 8.333333%;
801
955
  }
802
956
  .col-xl-2 {
957
+ -webkit-box-flex: 0;
803
958
  -ms-flex: 0 0 16.666667%;
804
- flex: 0 0 16.666667%;
959
+ flex: 0 0 16.666667%;
805
960
  max-width: 16.666667%;
806
961
  }
807
962
  .col-xl-3 {
963
+ -webkit-box-flex: 0;
808
964
  -ms-flex: 0 0 25%;
809
- flex: 0 0 25%;
965
+ flex: 0 0 25%;
810
966
  max-width: 25%;
811
967
  }
812
968
  .col-xl-4 {
969
+ -webkit-box-flex: 0;
813
970
  -ms-flex: 0 0 33.333333%;
814
- flex: 0 0 33.333333%;
971
+ flex: 0 0 33.333333%;
815
972
  max-width: 33.333333%;
816
973
  }
817
974
  .col-xl-5 {
975
+ -webkit-box-flex: 0;
818
976
  -ms-flex: 0 0 41.666667%;
819
- flex: 0 0 41.666667%;
977
+ flex: 0 0 41.666667%;
820
978
  max-width: 41.666667%;
821
979
  }
822
980
  .col-xl-6 {
981
+ -webkit-box-flex: 0;
823
982
  -ms-flex: 0 0 50%;
824
- flex: 0 0 50%;
983
+ flex: 0 0 50%;
825
984
  max-width: 50%;
826
985
  }
827
986
  .col-xl-7 {
987
+ -webkit-box-flex: 0;
828
988
  -ms-flex: 0 0 58.333333%;
829
- flex: 0 0 58.333333%;
989
+ flex: 0 0 58.333333%;
830
990
  max-width: 58.333333%;
831
991
  }
832
992
  .col-xl-8 {
993
+ -webkit-box-flex: 0;
833
994
  -ms-flex: 0 0 66.666667%;
834
- flex: 0 0 66.666667%;
995
+ flex: 0 0 66.666667%;
835
996
  max-width: 66.666667%;
836
997
  }
837
998
  .col-xl-9 {
999
+ -webkit-box-flex: 0;
838
1000
  -ms-flex: 0 0 75%;
839
- flex: 0 0 75%;
1001
+ flex: 0 0 75%;
840
1002
  max-width: 75%;
841
1003
  }
842
1004
  .col-xl-10 {
1005
+ -webkit-box-flex: 0;
843
1006
  -ms-flex: 0 0 83.333333%;
844
- flex: 0 0 83.333333%;
1007
+ flex: 0 0 83.333333%;
845
1008
  max-width: 83.333333%;
846
1009
  }
847
1010
  .col-xl-11 {
1011
+ -webkit-box-flex: 0;
848
1012
  -ms-flex: 0 0 91.666667%;
849
- flex: 0 0 91.666667%;
1013
+ flex: 0 0 91.666667%;
850
1014
  max-width: 91.666667%;
851
1015
  }
852
1016
  .col-xl-12 {
1017
+ -webkit-box-flex: 0;
853
1018
  -ms-flex: 0 0 100%;
854
- flex: 0 0 100%;
1019
+ flex: 0 0 100%;
855
1020
  max-width: 100%;
856
1021
  }
857
1022
  .order-xl-first {
1023
+ -webkit-box-ordinal-group: 0;
858
1024
  -ms-flex-order: -1;
859
- order: -1;
1025
+ order: -1;
1026
+ }
1027
+ .order-xl-last {
1028
+ -webkit-box-ordinal-group: 14;
1029
+ -ms-flex-order: 13;
1030
+ order: 13;
1031
+ }
1032
+ .order-xl-0 {
1033
+ -webkit-box-ordinal-group: 1;
1034
+ -ms-flex-order: 0;
1035
+ order: 0;
860
1036
  }
861
1037
  .order-xl-1 {
1038
+ -webkit-box-ordinal-group: 2;
862
1039
  -ms-flex-order: 1;
863
- order: 1;
1040
+ order: 1;
864
1041
  }
865
1042
  .order-xl-2 {
1043
+ -webkit-box-ordinal-group: 3;
866
1044
  -ms-flex-order: 2;
867
- order: 2;
1045
+ order: 2;
868
1046
  }
869
1047
  .order-xl-3 {
1048
+ -webkit-box-ordinal-group: 4;
870
1049
  -ms-flex-order: 3;
871
- order: 3;
1050
+ order: 3;
872
1051
  }
873
1052
  .order-xl-4 {
1053
+ -webkit-box-ordinal-group: 5;
874
1054
  -ms-flex-order: 4;
875
- order: 4;
1055
+ order: 4;
876
1056
  }
877
1057
  .order-xl-5 {
1058
+ -webkit-box-ordinal-group: 6;
878
1059
  -ms-flex-order: 5;
879
- order: 5;
1060
+ order: 5;
880
1061
  }
881
1062
  .order-xl-6 {
1063
+ -webkit-box-ordinal-group: 7;
882
1064
  -ms-flex-order: 6;
883
- order: 6;
1065
+ order: 6;
884
1066
  }
885
1067
  .order-xl-7 {
1068
+ -webkit-box-ordinal-group: 8;
886
1069
  -ms-flex-order: 7;
887
- order: 7;
1070
+ order: 7;
888
1071
  }
889
1072
  .order-xl-8 {
1073
+ -webkit-box-ordinal-group: 9;
890
1074
  -ms-flex-order: 8;
891
- order: 8;
1075
+ order: 8;
892
1076
  }
893
1077
  .order-xl-9 {
1078
+ -webkit-box-ordinal-group: 10;
894
1079
  -ms-flex-order: 9;
895
- order: 9;
1080
+ order: 9;
896
1081
  }
897
1082
  .order-xl-10 {
1083
+ -webkit-box-ordinal-group: 11;
898
1084
  -ms-flex-order: 10;
899
- order: 10;
1085
+ order: 10;
900
1086
  }
901
1087
  .order-xl-11 {
1088
+ -webkit-box-ordinal-group: 12;
902
1089
  -ms-flex-order: 11;
903
- order: 11;
1090
+ order: 11;
904
1091
  }
905
1092
  .order-xl-12 {
1093
+ -webkit-box-ordinal-group: 13;
906
1094
  -ms-flex-order: 12;
907
- order: 12;
1095
+ order: 12;
908
1096
  }
909
1097
  .offset-xl-0 {
910
1098
  margin-left: 0;
@@ -944,624 +1132,919 @@ html {
944
1132
  }
945
1133
  }
946
1134
 
1135
+ .d-none {
1136
+ display: none !important;
1137
+ }
1138
+
1139
+ .d-inline {
1140
+ display: inline !important;
1141
+ }
1142
+
1143
+ .d-inline-block {
1144
+ display: inline-block !important;
1145
+ }
1146
+
1147
+ .d-block {
1148
+ display: block !important;
1149
+ }
1150
+
1151
+ .d-table {
1152
+ display: table !important;
1153
+ }
1154
+
1155
+ .d-table-row {
1156
+ display: table-row !important;
1157
+ }
1158
+
1159
+ .d-table-cell {
1160
+ display: table-cell !important;
1161
+ }
1162
+
1163
+ .d-flex {
1164
+ display: -webkit-box !important;
1165
+ display: -ms-flexbox !important;
1166
+ display: flex !important;
1167
+ }
1168
+
1169
+ .d-inline-flex {
1170
+ display: -webkit-inline-box !important;
1171
+ display: -ms-inline-flexbox !important;
1172
+ display: inline-flex !important;
1173
+ }
1174
+
1175
+ @media (min-width: 576px) {
1176
+ .d-sm-none {
1177
+ display: none !important;
1178
+ }
1179
+ .d-sm-inline {
1180
+ display: inline !important;
1181
+ }
1182
+ .d-sm-inline-block {
1183
+ display: inline-block !important;
1184
+ }
1185
+ .d-sm-block {
1186
+ display: block !important;
1187
+ }
1188
+ .d-sm-table {
1189
+ display: table !important;
1190
+ }
1191
+ .d-sm-table-row {
1192
+ display: table-row !important;
1193
+ }
1194
+ .d-sm-table-cell {
1195
+ display: table-cell !important;
1196
+ }
1197
+ .d-sm-flex {
1198
+ display: -webkit-box !important;
1199
+ display: -ms-flexbox !important;
1200
+ display: flex !important;
1201
+ }
1202
+ .d-sm-inline-flex {
1203
+ display: -webkit-inline-box !important;
1204
+ display: -ms-inline-flexbox !important;
1205
+ display: inline-flex !important;
1206
+ }
1207
+ }
1208
+
1209
+ @media (min-width: 768px) {
1210
+ .d-md-none {
1211
+ display: none !important;
1212
+ }
1213
+ .d-md-inline {
1214
+ display: inline !important;
1215
+ }
1216
+ .d-md-inline-block {
1217
+ display: inline-block !important;
1218
+ }
1219
+ .d-md-block {
1220
+ display: block !important;
1221
+ }
1222
+ .d-md-table {
1223
+ display: table !important;
1224
+ }
1225
+ .d-md-table-row {
1226
+ display: table-row !important;
1227
+ }
1228
+ .d-md-table-cell {
1229
+ display: table-cell !important;
1230
+ }
1231
+ .d-md-flex {
1232
+ display: -webkit-box !important;
1233
+ display: -ms-flexbox !important;
1234
+ display: flex !important;
1235
+ }
1236
+ .d-md-inline-flex {
1237
+ display: -webkit-inline-box !important;
1238
+ display: -ms-inline-flexbox !important;
1239
+ display: inline-flex !important;
1240
+ }
1241
+ }
1242
+
1243
+ @media (min-width: 992px) {
1244
+ .d-lg-none {
1245
+ display: none !important;
1246
+ }
1247
+ .d-lg-inline {
1248
+ display: inline !important;
1249
+ }
1250
+ .d-lg-inline-block {
1251
+ display: inline-block !important;
1252
+ }
1253
+ .d-lg-block {
1254
+ display: block !important;
1255
+ }
1256
+ .d-lg-table {
1257
+ display: table !important;
1258
+ }
1259
+ .d-lg-table-row {
1260
+ display: table-row !important;
1261
+ }
1262
+ .d-lg-table-cell {
1263
+ display: table-cell !important;
1264
+ }
1265
+ .d-lg-flex {
1266
+ display: -webkit-box !important;
1267
+ display: -ms-flexbox !important;
1268
+ display: flex !important;
1269
+ }
1270
+ .d-lg-inline-flex {
1271
+ display: -webkit-inline-box !important;
1272
+ display: -ms-inline-flexbox !important;
1273
+ display: inline-flex !important;
1274
+ }
1275
+ }
1276
+
1277
+ @media (min-width: 1200px) {
1278
+ .d-xl-none {
1279
+ display: none !important;
1280
+ }
1281
+ .d-xl-inline {
1282
+ display: inline !important;
1283
+ }
1284
+ .d-xl-inline-block {
1285
+ display: inline-block !important;
1286
+ }
1287
+ .d-xl-block {
1288
+ display: block !important;
1289
+ }
1290
+ .d-xl-table {
1291
+ display: table !important;
1292
+ }
1293
+ .d-xl-table-row {
1294
+ display: table-row !important;
1295
+ }
1296
+ .d-xl-table-cell {
1297
+ display: table-cell !important;
1298
+ }
1299
+ .d-xl-flex {
1300
+ display: -webkit-box !important;
1301
+ display: -ms-flexbox !important;
1302
+ display: flex !important;
1303
+ }
1304
+ .d-xl-inline-flex {
1305
+ display: -webkit-inline-box !important;
1306
+ display: -ms-inline-flexbox !important;
1307
+ display: inline-flex !important;
1308
+ }
1309
+ }
1310
+
1311
+ @media print {
1312
+ .d-print-none {
1313
+ display: none !important;
1314
+ }
1315
+ .d-print-inline {
1316
+ display: inline !important;
1317
+ }
1318
+ .d-print-inline-block {
1319
+ display: inline-block !important;
1320
+ }
1321
+ .d-print-block {
1322
+ display: block !important;
1323
+ }
1324
+ .d-print-table {
1325
+ display: table !important;
1326
+ }
1327
+ .d-print-table-row {
1328
+ display: table-row !important;
1329
+ }
1330
+ .d-print-table-cell {
1331
+ display: table-cell !important;
1332
+ }
1333
+ .d-print-flex {
1334
+ display: -webkit-box !important;
1335
+ display: -ms-flexbox !important;
1336
+ display: flex !important;
1337
+ }
1338
+ .d-print-inline-flex {
1339
+ display: -webkit-inline-box !important;
1340
+ display: -ms-inline-flexbox !important;
1341
+ display: inline-flex !important;
1342
+ }
1343
+ }
1344
+
947
1345
  .flex-row {
1346
+ -webkit-box-orient: horizontal !important;
1347
+ -webkit-box-direction: normal !important;
948
1348
  -ms-flex-direction: row !important;
949
- flex-direction: row !important;
1349
+ flex-direction: row !important;
950
1350
  }
951
1351
 
952
1352
  .flex-column {
1353
+ -webkit-box-orient: vertical !important;
1354
+ -webkit-box-direction: normal !important;
953
1355
  -ms-flex-direction: column !important;
954
- flex-direction: column !important;
1356
+ flex-direction: column !important;
955
1357
  }
956
1358
 
957
1359
  .flex-row-reverse {
1360
+ -webkit-box-orient: horizontal !important;
1361
+ -webkit-box-direction: reverse !important;
958
1362
  -ms-flex-direction: row-reverse !important;
959
- flex-direction: row-reverse !important;
1363
+ flex-direction: row-reverse !important;
960
1364
  }
961
1365
 
962
1366
  .flex-column-reverse {
1367
+ -webkit-box-orient: vertical !important;
1368
+ -webkit-box-direction: reverse !important;
963
1369
  -ms-flex-direction: column-reverse !important;
964
- flex-direction: column-reverse !important;
1370
+ flex-direction: column-reverse !important;
965
1371
  }
966
1372
 
967
1373
  .flex-wrap {
968
1374
  -ms-flex-wrap: wrap !important;
969
- flex-wrap: wrap !important;
1375
+ flex-wrap: wrap !important;
970
1376
  }
971
1377
 
972
1378
  .flex-nowrap {
973
1379
  -ms-flex-wrap: nowrap !important;
974
- flex-wrap: nowrap !important;
1380
+ flex-wrap: nowrap !important;
975
1381
  }
976
1382
 
977
1383
  .flex-wrap-reverse {
978
1384
  -ms-flex-wrap: wrap-reverse !important;
979
- flex-wrap: wrap-reverse !important;
1385
+ flex-wrap: wrap-reverse !important;
980
1386
  }
981
1387
 
982
1388
  .justify-content-start {
1389
+ -webkit-box-pack: start !important;
983
1390
  -ms-flex-pack: start !important;
984
- justify-content: flex-start !important;
1391
+ justify-content: flex-start !important;
985
1392
  }
986
1393
 
987
1394
  .justify-content-end {
1395
+ -webkit-box-pack: end !important;
988
1396
  -ms-flex-pack: end !important;
989
- justify-content: flex-end !important;
1397
+ justify-content: flex-end !important;
990
1398
  }
991
1399
 
992
1400
  .justify-content-center {
1401
+ -webkit-box-pack: center !important;
993
1402
  -ms-flex-pack: center !important;
994
- justify-content: center !important;
1403
+ justify-content: center !important;
995
1404
  }
996
1405
 
997
1406
  .justify-content-between {
1407
+ -webkit-box-pack: justify !important;
998
1408
  -ms-flex-pack: justify !important;
999
- justify-content: space-between !important;
1409
+ justify-content: space-between !important;
1000
1410
  }
1001
1411
 
1002
1412
  .justify-content-around {
1003
1413
  -ms-flex-pack: distribute !important;
1004
- justify-content: space-around !important;
1414
+ justify-content: space-around !important;
1005
1415
  }
1006
1416
 
1007
1417
  .align-items-start {
1418
+ -webkit-box-align: start !important;
1008
1419
  -ms-flex-align: start !important;
1009
- align-items: flex-start !important;
1420
+ align-items: flex-start !important;
1010
1421
  }
1011
1422
 
1012
1423
  .align-items-end {
1424
+ -webkit-box-align: end !important;
1013
1425
  -ms-flex-align: end !important;
1014
- align-items: flex-end !important;
1426
+ align-items: flex-end !important;
1015
1427
  }
1016
1428
 
1017
1429
  .align-items-center {
1430
+ -webkit-box-align: center !important;
1018
1431
  -ms-flex-align: center !important;
1019
- align-items: center !important;
1432
+ align-items: center !important;
1020
1433
  }
1021
1434
 
1022
1435
  .align-items-baseline {
1436
+ -webkit-box-align: baseline !important;
1023
1437
  -ms-flex-align: baseline !important;
1024
- align-items: baseline !important;
1438
+ align-items: baseline !important;
1025
1439
  }
1026
1440
 
1027
1441
  .align-items-stretch {
1442
+ -webkit-box-align: stretch !important;
1028
1443
  -ms-flex-align: stretch !important;
1029
- align-items: stretch !important;
1444
+ align-items: stretch !important;
1030
1445
  }
1031
1446
 
1032
1447
  .align-content-start {
1033
1448
  -ms-flex-line-pack: start !important;
1034
- align-content: flex-start !important;
1449
+ align-content: flex-start !important;
1035
1450
  }
1036
1451
 
1037
1452
  .align-content-end {
1038
1453
  -ms-flex-line-pack: end !important;
1039
- align-content: flex-end !important;
1454
+ align-content: flex-end !important;
1040
1455
  }
1041
1456
 
1042
1457
  .align-content-center {
1043
1458
  -ms-flex-line-pack: center !important;
1044
- align-content: center !important;
1459
+ align-content: center !important;
1045
1460
  }
1046
1461
 
1047
1462
  .align-content-between {
1048
1463
  -ms-flex-line-pack: justify !important;
1049
- align-content: space-between !important;
1464
+ align-content: space-between !important;
1050
1465
  }
1051
1466
 
1052
1467
  .align-content-around {
1053
1468
  -ms-flex-line-pack: distribute !important;
1054
- align-content: space-around !important;
1469
+ align-content: space-around !important;
1055
1470
  }
1056
1471
 
1057
1472
  .align-content-stretch {
1058
1473
  -ms-flex-line-pack: stretch !important;
1059
- align-content: stretch !important;
1474
+ align-content: stretch !important;
1060
1475
  }
1061
1476
 
1062
1477
  .align-self-auto {
1063
1478
  -ms-flex-item-align: auto !important;
1064
- align-self: auto !important;
1479
+ align-self: auto !important;
1065
1480
  }
1066
1481
 
1067
1482
  .align-self-start {
1068
1483
  -ms-flex-item-align: start !important;
1069
- align-self: flex-start !important;
1484
+ align-self: flex-start !important;
1070
1485
  }
1071
1486
 
1072
1487
  .align-self-end {
1073
1488
  -ms-flex-item-align: end !important;
1074
- align-self: flex-end !important;
1489
+ align-self: flex-end !important;
1075
1490
  }
1076
1491
 
1077
1492
  .align-self-center {
1078
1493
  -ms-flex-item-align: center !important;
1079
- align-self: center !important;
1494
+ align-self: center !important;
1080
1495
  }
1081
1496
 
1082
1497
  .align-self-baseline {
1083
1498
  -ms-flex-item-align: baseline !important;
1084
- align-self: baseline !important;
1499
+ align-self: baseline !important;
1085
1500
  }
1086
1501
 
1087
1502
  .align-self-stretch {
1088
1503
  -ms-flex-item-align: stretch !important;
1089
- align-self: stretch !important;
1504
+ align-self: stretch !important;
1090
1505
  }
1091
1506
 
1092
1507
  @media (min-width: 576px) {
1093
1508
  .flex-sm-row {
1509
+ -webkit-box-orient: horizontal !important;
1510
+ -webkit-box-direction: normal !important;
1094
1511
  -ms-flex-direction: row !important;
1095
- flex-direction: row !important;
1512
+ flex-direction: row !important;
1096
1513
  }
1097
1514
  .flex-sm-column {
1515
+ -webkit-box-orient: vertical !important;
1516
+ -webkit-box-direction: normal !important;
1098
1517
  -ms-flex-direction: column !important;
1099
- flex-direction: column !important;
1518
+ flex-direction: column !important;
1100
1519
  }
1101
1520
  .flex-sm-row-reverse {
1521
+ -webkit-box-orient: horizontal !important;
1522
+ -webkit-box-direction: reverse !important;
1102
1523
  -ms-flex-direction: row-reverse !important;
1103
- flex-direction: row-reverse !important;
1524
+ flex-direction: row-reverse !important;
1104
1525
  }
1105
1526
  .flex-sm-column-reverse {
1527
+ -webkit-box-orient: vertical !important;
1528
+ -webkit-box-direction: reverse !important;
1106
1529
  -ms-flex-direction: column-reverse !important;
1107
- flex-direction: column-reverse !important;
1530
+ flex-direction: column-reverse !important;
1108
1531
  }
1109
1532
  .flex-sm-wrap {
1110
1533
  -ms-flex-wrap: wrap !important;
1111
- flex-wrap: wrap !important;
1534
+ flex-wrap: wrap !important;
1112
1535
  }
1113
1536
  .flex-sm-nowrap {
1114
1537
  -ms-flex-wrap: nowrap !important;
1115
- flex-wrap: nowrap !important;
1538
+ flex-wrap: nowrap !important;
1116
1539
  }
1117
1540
  .flex-sm-wrap-reverse {
1118
1541
  -ms-flex-wrap: wrap-reverse !important;
1119
- flex-wrap: wrap-reverse !important;
1542
+ flex-wrap: wrap-reverse !important;
1120
1543
  }
1121
1544
  .justify-content-sm-start {
1545
+ -webkit-box-pack: start !important;
1122
1546
  -ms-flex-pack: start !important;
1123
- justify-content: flex-start !important;
1547
+ justify-content: flex-start !important;
1124
1548
  }
1125
1549
  .justify-content-sm-end {
1550
+ -webkit-box-pack: end !important;
1126
1551
  -ms-flex-pack: end !important;
1127
- justify-content: flex-end !important;
1552
+ justify-content: flex-end !important;
1128
1553
  }
1129
1554
  .justify-content-sm-center {
1555
+ -webkit-box-pack: center !important;
1130
1556
  -ms-flex-pack: center !important;
1131
- justify-content: center !important;
1557
+ justify-content: center !important;
1132
1558
  }
1133
1559
  .justify-content-sm-between {
1560
+ -webkit-box-pack: justify !important;
1134
1561
  -ms-flex-pack: justify !important;
1135
- justify-content: space-between !important;
1562
+ justify-content: space-between !important;
1136
1563
  }
1137
1564
  .justify-content-sm-around {
1138
1565
  -ms-flex-pack: distribute !important;
1139
- justify-content: space-around !important;
1566
+ justify-content: space-around !important;
1140
1567
  }
1141
1568
  .align-items-sm-start {
1569
+ -webkit-box-align: start !important;
1142
1570
  -ms-flex-align: start !important;
1143
- align-items: flex-start !important;
1571
+ align-items: flex-start !important;
1144
1572
  }
1145
1573
  .align-items-sm-end {
1574
+ -webkit-box-align: end !important;
1146
1575
  -ms-flex-align: end !important;
1147
- align-items: flex-end !important;
1576
+ align-items: flex-end !important;
1148
1577
  }
1149
1578
  .align-items-sm-center {
1579
+ -webkit-box-align: center !important;
1150
1580
  -ms-flex-align: center !important;
1151
- align-items: center !important;
1581
+ align-items: center !important;
1152
1582
  }
1153
1583
  .align-items-sm-baseline {
1584
+ -webkit-box-align: baseline !important;
1154
1585
  -ms-flex-align: baseline !important;
1155
- align-items: baseline !important;
1586
+ align-items: baseline !important;
1156
1587
  }
1157
1588
  .align-items-sm-stretch {
1589
+ -webkit-box-align: stretch !important;
1158
1590
  -ms-flex-align: stretch !important;
1159
- align-items: stretch !important;
1591
+ align-items: stretch !important;
1160
1592
  }
1161
1593
  .align-content-sm-start {
1162
1594
  -ms-flex-line-pack: start !important;
1163
- align-content: flex-start !important;
1595
+ align-content: flex-start !important;
1164
1596
  }
1165
1597
  .align-content-sm-end {
1166
1598
  -ms-flex-line-pack: end !important;
1167
- align-content: flex-end !important;
1599
+ align-content: flex-end !important;
1168
1600
  }
1169
1601
  .align-content-sm-center {
1170
1602
  -ms-flex-line-pack: center !important;
1171
- align-content: center !important;
1603
+ align-content: center !important;
1172
1604
  }
1173
1605
  .align-content-sm-between {
1174
1606
  -ms-flex-line-pack: justify !important;
1175
- align-content: space-between !important;
1607
+ align-content: space-between !important;
1176
1608
  }
1177
1609
  .align-content-sm-around {
1178
1610
  -ms-flex-line-pack: distribute !important;
1179
- align-content: space-around !important;
1611
+ align-content: space-around !important;
1180
1612
  }
1181
1613
  .align-content-sm-stretch {
1182
1614
  -ms-flex-line-pack: stretch !important;
1183
- align-content: stretch !important;
1615
+ align-content: stretch !important;
1184
1616
  }
1185
1617
  .align-self-sm-auto {
1186
1618
  -ms-flex-item-align: auto !important;
1187
- align-self: auto !important;
1619
+ align-self: auto !important;
1188
1620
  }
1189
1621
  .align-self-sm-start {
1190
1622
  -ms-flex-item-align: start !important;
1191
- align-self: flex-start !important;
1623
+ align-self: flex-start !important;
1192
1624
  }
1193
1625
  .align-self-sm-end {
1194
1626
  -ms-flex-item-align: end !important;
1195
- align-self: flex-end !important;
1627
+ align-self: flex-end !important;
1196
1628
  }
1197
1629
  .align-self-sm-center {
1198
1630
  -ms-flex-item-align: center !important;
1199
- align-self: center !important;
1631
+ align-self: center !important;
1200
1632
  }
1201
1633
  .align-self-sm-baseline {
1202
1634
  -ms-flex-item-align: baseline !important;
1203
- align-self: baseline !important;
1635
+ align-self: baseline !important;
1204
1636
  }
1205
1637
  .align-self-sm-stretch {
1206
1638
  -ms-flex-item-align: stretch !important;
1207
- align-self: stretch !important;
1639
+ align-self: stretch !important;
1208
1640
  }
1209
1641
  }
1210
1642
 
1211
1643
  @media (min-width: 768px) {
1212
1644
  .flex-md-row {
1645
+ -webkit-box-orient: horizontal !important;
1646
+ -webkit-box-direction: normal !important;
1213
1647
  -ms-flex-direction: row !important;
1214
- flex-direction: row !important;
1648
+ flex-direction: row !important;
1215
1649
  }
1216
1650
  .flex-md-column {
1651
+ -webkit-box-orient: vertical !important;
1652
+ -webkit-box-direction: normal !important;
1217
1653
  -ms-flex-direction: column !important;
1218
- flex-direction: column !important;
1654
+ flex-direction: column !important;
1219
1655
  }
1220
1656
  .flex-md-row-reverse {
1657
+ -webkit-box-orient: horizontal !important;
1658
+ -webkit-box-direction: reverse !important;
1221
1659
  -ms-flex-direction: row-reverse !important;
1222
- flex-direction: row-reverse !important;
1660
+ flex-direction: row-reverse !important;
1223
1661
  }
1224
1662
  .flex-md-column-reverse {
1663
+ -webkit-box-orient: vertical !important;
1664
+ -webkit-box-direction: reverse !important;
1225
1665
  -ms-flex-direction: column-reverse !important;
1226
- flex-direction: column-reverse !important;
1666
+ flex-direction: column-reverse !important;
1227
1667
  }
1228
1668
  .flex-md-wrap {
1229
1669
  -ms-flex-wrap: wrap !important;
1230
- flex-wrap: wrap !important;
1670
+ flex-wrap: wrap !important;
1231
1671
  }
1232
1672
  .flex-md-nowrap {
1233
1673
  -ms-flex-wrap: nowrap !important;
1234
- flex-wrap: nowrap !important;
1674
+ flex-wrap: nowrap !important;
1235
1675
  }
1236
1676
  .flex-md-wrap-reverse {
1237
1677
  -ms-flex-wrap: wrap-reverse !important;
1238
- flex-wrap: wrap-reverse !important;
1678
+ flex-wrap: wrap-reverse !important;
1239
1679
  }
1240
1680
  .justify-content-md-start {
1681
+ -webkit-box-pack: start !important;
1241
1682
  -ms-flex-pack: start !important;
1242
- justify-content: flex-start !important;
1683
+ justify-content: flex-start !important;
1243
1684
  }
1244
1685
  .justify-content-md-end {
1686
+ -webkit-box-pack: end !important;
1245
1687
  -ms-flex-pack: end !important;
1246
- justify-content: flex-end !important;
1688
+ justify-content: flex-end !important;
1247
1689
  }
1248
1690
  .justify-content-md-center {
1691
+ -webkit-box-pack: center !important;
1249
1692
  -ms-flex-pack: center !important;
1250
- justify-content: center !important;
1693
+ justify-content: center !important;
1251
1694
  }
1252
1695
  .justify-content-md-between {
1696
+ -webkit-box-pack: justify !important;
1253
1697
  -ms-flex-pack: justify !important;
1254
- justify-content: space-between !important;
1698
+ justify-content: space-between !important;
1255
1699
  }
1256
1700
  .justify-content-md-around {
1257
1701
  -ms-flex-pack: distribute !important;
1258
- justify-content: space-around !important;
1702
+ justify-content: space-around !important;
1259
1703
  }
1260
1704
  .align-items-md-start {
1705
+ -webkit-box-align: start !important;
1261
1706
  -ms-flex-align: start !important;
1262
- align-items: flex-start !important;
1707
+ align-items: flex-start !important;
1263
1708
  }
1264
1709
  .align-items-md-end {
1710
+ -webkit-box-align: end !important;
1265
1711
  -ms-flex-align: end !important;
1266
- align-items: flex-end !important;
1712
+ align-items: flex-end !important;
1267
1713
  }
1268
1714
  .align-items-md-center {
1715
+ -webkit-box-align: center !important;
1269
1716
  -ms-flex-align: center !important;
1270
- align-items: center !important;
1717
+ align-items: center !important;
1271
1718
  }
1272
1719
  .align-items-md-baseline {
1720
+ -webkit-box-align: baseline !important;
1273
1721
  -ms-flex-align: baseline !important;
1274
- align-items: baseline !important;
1722
+ align-items: baseline !important;
1275
1723
  }
1276
1724
  .align-items-md-stretch {
1725
+ -webkit-box-align: stretch !important;
1277
1726
  -ms-flex-align: stretch !important;
1278
- align-items: stretch !important;
1727
+ align-items: stretch !important;
1279
1728
  }
1280
1729
  .align-content-md-start {
1281
1730
  -ms-flex-line-pack: start !important;
1282
- align-content: flex-start !important;
1731
+ align-content: flex-start !important;
1283
1732
  }
1284
1733
  .align-content-md-end {
1285
1734
  -ms-flex-line-pack: end !important;
1286
- align-content: flex-end !important;
1735
+ align-content: flex-end !important;
1287
1736
  }
1288
1737
  .align-content-md-center {
1289
1738
  -ms-flex-line-pack: center !important;
1290
- align-content: center !important;
1739
+ align-content: center !important;
1291
1740
  }
1292
1741
  .align-content-md-between {
1293
1742
  -ms-flex-line-pack: justify !important;
1294
- align-content: space-between !important;
1743
+ align-content: space-between !important;
1295
1744
  }
1296
1745
  .align-content-md-around {
1297
1746
  -ms-flex-line-pack: distribute !important;
1298
- align-content: space-around !important;
1747
+ align-content: space-around !important;
1299
1748
  }
1300
1749
  .align-content-md-stretch {
1301
1750
  -ms-flex-line-pack: stretch !important;
1302
- align-content: stretch !important;
1751
+ align-content: stretch !important;
1303
1752
  }
1304
1753
  .align-self-md-auto {
1305
1754
  -ms-flex-item-align: auto !important;
1306
- align-self: auto !important;
1755
+ align-self: auto !important;
1307
1756
  }
1308
1757
  .align-self-md-start {
1309
1758
  -ms-flex-item-align: start !important;
1310
- align-self: flex-start !important;
1759
+ align-self: flex-start !important;
1311
1760
  }
1312
1761
  .align-self-md-end {
1313
1762
  -ms-flex-item-align: end !important;
1314
- align-self: flex-end !important;
1763
+ align-self: flex-end !important;
1315
1764
  }
1316
1765
  .align-self-md-center {
1317
1766
  -ms-flex-item-align: center !important;
1318
- align-self: center !important;
1767
+ align-self: center !important;
1319
1768
  }
1320
1769
  .align-self-md-baseline {
1321
1770
  -ms-flex-item-align: baseline !important;
1322
- align-self: baseline !important;
1771
+ align-self: baseline !important;
1323
1772
  }
1324
1773
  .align-self-md-stretch {
1325
1774
  -ms-flex-item-align: stretch !important;
1326
- align-self: stretch !important;
1775
+ align-self: stretch !important;
1327
1776
  }
1328
1777
  }
1329
1778
 
1330
1779
  @media (min-width: 992px) {
1331
1780
  .flex-lg-row {
1781
+ -webkit-box-orient: horizontal !important;
1782
+ -webkit-box-direction: normal !important;
1332
1783
  -ms-flex-direction: row !important;
1333
- flex-direction: row !important;
1784
+ flex-direction: row !important;
1334
1785
  }
1335
1786
  .flex-lg-column {
1787
+ -webkit-box-orient: vertical !important;
1788
+ -webkit-box-direction: normal !important;
1336
1789
  -ms-flex-direction: column !important;
1337
- flex-direction: column !important;
1790
+ flex-direction: column !important;
1338
1791
  }
1339
1792
  .flex-lg-row-reverse {
1793
+ -webkit-box-orient: horizontal !important;
1794
+ -webkit-box-direction: reverse !important;
1340
1795
  -ms-flex-direction: row-reverse !important;
1341
- flex-direction: row-reverse !important;
1796
+ flex-direction: row-reverse !important;
1342
1797
  }
1343
1798
  .flex-lg-column-reverse {
1799
+ -webkit-box-orient: vertical !important;
1800
+ -webkit-box-direction: reverse !important;
1344
1801
  -ms-flex-direction: column-reverse !important;
1345
- flex-direction: column-reverse !important;
1802
+ flex-direction: column-reverse !important;
1346
1803
  }
1347
1804
  .flex-lg-wrap {
1348
1805
  -ms-flex-wrap: wrap !important;
1349
- flex-wrap: wrap !important;
1806
+ flex-wrap: wrap !important;
1350
1807
  }
1351
1808
  .flex-lg-nowrap {
1352
1809
  -ms-flex-wrap: nowrap !important;
1353
- flex-wrap: nowrap !important;
1810
+ flex-wrap: nowrap !important;
1354
1811
  }
1355
1812
  .flex-lg-wrap-reverse {
1356
1813
  -ms-flex-wrap: wrap-reverse !important;
1357
- flex-wrap: wrap-reverse !important;
1814
+ flex-wrap: wrap-reverse !important;
1358
1815
  }
1359
1816
  .justify-content-lg-start {
1817
+ -webkit-box-pack: start !important;
1360
1818
  -ms-flex-pack: start !important;
1361
- justify-content: flex-start !important;
1819
+ justify-content: flex-start !important;
1362
1820
  }
1363
1821
  .justify-content-lg-end {
1822
+ -webkit-box-pack: end !important;
1364
1823
  -ms-flex-pack: end !important;
1365
- justify-content: flex-end !important;
1824
+ justify-content: flex-end !important;
1366
1825
  }
1367
1826
  .justify-content-lg-center {
1827
+ -webkit-box-pack: center !important;
1368
1828
  -ms-flex-pack: center !important;
1369
- justify-content: center !important;
1829
+ justify-content: center !important;
1370
1830
  }
1371
1831
  .justify-content-lg-between {
1832
+ -webkit-box-pack: justify !important;
1372
1833
  -ms-flex-pack: justify !important;
1373
- justify-content: space-between !important;
1834
+ justify-content: space-between !important;
1374
1835
  }
1375
1836
  .justify-content-lg-around {
1376
1837
  -ms-flex-pack: distribute !important;
1377
- justify-content: space-around !important;
1838
+ justify-content: space-around !important;
1378
1839
  }
1379
1840
  .align-items-lg-start {
1841
+ -webkit-box-align: start !important;
1380
1842
  -ms-flex-align: start !important;
1381
- align-items: flex-start !important;
1843
+ align-items: flex-start !important;
1382
1844
  }
1383
1845
  .align-items-lg-end {
1846
+ -webkit-box-align: end !important;
1384
1847
  -ms-flex-align: end !important;
1385
- align-items: flex-end !important;
1848
+ align-items: flex-end !important;
1386
1849
  }
1387
1850
  .align-items-lg-center {
1851
+ -webkit-box-align: center !important;
1388
1852
  -ms-flex-align: center !important;
1389
- align-items: center !important;
1853
+ align-items: center !important;
1390
1854
  }
1391
1855
  .align-items-lg-baseline {
1856
+ -webkit-box-align: baseline !important;
1392
1857
  -ms-flex-align: baseline !important;
1393
- align-items: baseline !important;
1858
+ align-items: baseline !important;
1394
1859
  }
1395
1860
  .align-items-lg-stretch {
1861
+ -webkit-box-align: stretch !important;
1396
1862
  -ms-flex-align: stretch !important;
1397
- align-items: stretch !important;
1863
+ align-items: stretch !important;
1398
1864
  }
1399
1865
  .align-content-lg-start {
1400
1866
  -ms-flex-line-pack: start !important;
1401
- align-content: flex-start !important;
1867
+ align-content: flex-start !important;
1402
1868
  }
1403
1869
  .align-content-lg-end {
1404
1870
  -ms-flex-line-pack: end !important;
1405
- align-content: flex-end !important;
1871
+ align-content: flex-end !important;
1406
1872
  }
1407
1873
  .align-content-lg-center {
1408
1874
  -ms-flex-line-pack: center !important;
1409
- align-content: center !important;
1875
+ align-content: center !important;
1410
1876
  }
1411
1877
  .align-content-lg-between {
1412
1878
  -ms-flex-line-pack: justify !important;
1413
- align-content: space-between !important;
1879
+ align-content: space-between !important;
1414
1880
  }
1415
1881
  .align-content-lg-around {
1416
1882
  -ms-flex-line-pack: distribute !important;
1417
- align-content: space-around !important;
1883
+ align-content: space-around !important;
1418
1884
  }
1419
1885
  .align-content-lg-stretch {
1420
1886
  -ms-flex-line-pack: stretch !important;
1421
- align-content: stretch !important;
1887
+ align-content: stretch !important;
1422
1888
  }
1423
1889
  .align-self-lg-auto {
1424
1890
  -ms-flex-item-align: auto !important;
1425
- align-self: auto !important;
1891
+ align-self: auto !important;
1426
1892
  }
1427
1893
  .align-self-lg-start {
1428
1894
  -ms-flex-item-align: start !important;
1429
- align-self: flex-start !important;
1895
+ align-self: flex-start !important;
1430
1896
  }
1431
1897
  .align-self-lg-end {
1432
1898
  -ms-flex-item-align: end !important;
1433
- align-self: flex-end !important;
1899
+ align-self: flex-end !important;
1434
1900
  }
1435
1901
  .align-self-lg-center {
1436
1902
  -ms-flex-item-align: center !important;
1437
- align-self: center !important;
1903
+ align-self: center !important;
1438
1904
  }
1439
1905
  .align-self-lg-baseline {
1440
1906
  -ms-flex-item-align: baseline !important;
1441
- align-self: baseline !important;
1907
+ align-self: baseline !important;
1442
1908
  }
1443
1909
  .align-self-lg-stretch {
1444
1910
  -ms-flex-item-align: stretch !important;
1445
- align-self: stretch !important;
1911
+ align-self: stretch !important;
1446
1912
  }
1447
1913
  }
1448
1914
 
1449
1915
  @media (min-width: 1200px) {
1450
1916
  .flex-xl-row {
1917
+ -webkit-box-orient: horizontal !important;
1918
+ -webkit-box-direction: normal !important;
1451
1919
  -ms-flex-direction: row !important;
1452
- flex-direction: row !important;
1920
+ flex-direction: row !important;
1453
1921
  }
1454
1922
  .flex-xl-column {
1923
+ -webkit-box-orient: vertical !important;
1924
+ -webkit-box-direction: normal !important;
1455
1925
  -ms-flex-direction: column !important;
1456
- flex-direction: column !important;
1926
+ flex-direction: column !important;
1457
1927
  }
1458
1928
  .flex-xl-row-reverse {
1929
+ -webkit-box-orient: horizontal !important;
1930
+ -webkit-box-direction: reverse !important;
1459
1931
  -ms-flex-direction: row-reverse !important;
1460
- flex-direction: row-reverse !important;
1932
+ flex-direction: row-reverse !important;
1461
1933
  }
1462
1934
  .flex-xl-column-reverse {
1935
+ -webkit-box-orient: vertical !important;
1936
+ -webkit-box-direction: reverse !important;
1463
1937
  -ms-flex-direction: column-reverse !important;
1464
- flex-direction: column-reverse !important;
1938
+ flex-direction: column-reverse !important;
1465
1939
  }
1466
1940
  .flex-xl-wrap {
1467
1941
  -ms-flex-wrap: wrap !important;
1468
- flex-wrap: wrap !important;
1942
+ flex-wrap: wrap !important;
1469
1943
  }
1470
1944
  .flex-xl-nowrap {
1471
1945
  -ms-flex-wrap: nowrap !important;
1472
- flex-wrap: nowrap !important;
1946
+ flex-wrap: nowrap !important;
1473
1947
  }
1474
1948
  .flex-xl-wrap-reverse {
1475
1949
  -ms-flex-wrap: wrap-reverse !important;
1476
- flex-wrap: wrap-reverse !important;
1950
+ flex-wrap: wrap-reverse !important;
1477
1951
  }
1478
1952
  .justify-content-xl-start {
1953
+ -webkit-box-pack: start !important;
1479
1954
  -ms-flex-pack: start !important;
1480
- justify-content: flex-start !important;
1955
+ justify-content: flex-start !important;
1481
1956
  }
1482
1957
  .justify-content-xl-end {
1958
+ -webkit-box-pack: end !important;
1483
1959
  -ms-flex-pack: end !important;
1484
- justify-content: flex-end !important;
1960
+ justify-content: flex-end !important;
1485
1961
  }
1486
1962
  .justify-content-xl-center {
1963
+ -webkit-box-pack: center !important;
1487
1964
  -ms-flex-pack: center !important;
1488
- justify-content: center !important;
1965
+ justify-content: center !important;
1489
1966
  }
1490
1967
  .justify-content-xl-between {
1968
+ -webkit-box-pack: justify !important;
1491
1969
  -ms-flex-pack: justify !important;
1492
- justify-content: space-between !important;
1970
+ justify-content: space-between !important;
1493
1971
  }
1494
1972
  .justify-content-xl-around {
1495
1973
  -ms-flex-pack: distribute !important;
1496
- justify-content: space-around !important;
1974
+ justify-content: space-around !important;
1497
1975
  }
1498
1976
  .align-items-xl-start {
1977
+ -webkit-box-align: start !important;
1499
1978
  -ms-flex-align: start !important;
1500
- align-items: flex-start !important;
1979
+ align-items: flex-start !important;
1501
1980
  }
1502
1981
  .align-items-xl-end {
1982
+ -webkit-box-align: end !important;
1503
1983
  -ms-flex-align: end !important;
1504
- align-items: flex-end !important;
1984
+ align-items: flex-end !important;
1505
1985
  }
1506
1986
  .align-items-xl-center {
1987
+ -webkit-box-align: center !important;
1507
1988
  -ms-flex-align: center !important;
1508
- align-items: center !important;
1989
+ align-items: center !important;
1509
1990
  }
1510
1991
  .align-items-xl-baseline {
1992
+ -webkit-box-align: baseline !important;
1511
1993
  -ms-flex-align: baseline !important;
1512
- align-items: baseline !important;
1994
+ align-items: baseline !important;
1513
1995
  }
1514
1996
  .align-items-xl-stretch {
1997
+ -webkit-box-align: stretch !important;
1515
1998
  -ms-flex-align: stretch !important;
1516
- align-items: stretch !important;
1999
+ align-items: stretch !important;
1517
2000
  }
1518
2001
  .align-content-xl-start {
1519
2002
  -ms-flex-line-pack: start !important;
1520
- align-content: flex-start !important;
2003
+ align-content: flex-start !important;
1521
2004
  }
1522
2005
  .align-content-xl-end {
1523
2006
  -ms-flex-line-pack: end !important;
1524
- align-content: flex-end !important;
2007
+ align-content: flex-end !important;
1525
2008
  }
1526
2009
  .align-content-xl-center {
1527
2010
  -ms-flex-line-pack: center !important;
1528
- align-content: center !important;
2011
+ align-content: center !important;
1529
2012
  }
1530
2013
  .align-content-xl-between {
1531
2014
  -ms-flex-line-pack: justify !important;
1532
- align-content: space-between !important;
2015
+ align-content: space-between !important;
1533
2016
  }
1534
2017
  .align-content-xl-around {
1535
2018
  -ms-flex-line-pack: distribute !important;
1536
- align-content: space-around !important;
2019
+ align-content: space-around !important;
1537
2020
  }
1538
2021
  .align-content-xl-stretch {
1539
2022
  -ms-flex-line-pack: stretch !important;
1540
- align-content: stretch !important;
2023
+ align-content: stretch !important;
1541
2024
  }
1542
2025
  .align-self-xl-auto {
1543
2026
  -ms-flex-item-align: auto !important;
1544
- align-self: auto !important;
2027
+ align-self: auto !important;
1545
2028
  }
1546
2029
  .align-self-xl-start {
1547
2030
  -ms-flex-item-align: start !important;
1548
- align-self: flex-start !important;
2031
+ align-self: flex-start !important;
1549
2032
  }
1550
2033
  .align-self-xl-end {
1551
2034
  -ms-flex-item-align: end !important;
1552
- align-self: flex-end !important;
2035
+ align-self: flex-end !important;
1553
2036
  }
1554
2037
  .align-self-xl-center {
1555
2038
  -ms-flex-item-align: center !important;
1556
- align-self: center !important;
2039
+ align-self: center !important;
1557
2040
  }
1558
2041
  .align-self-xl-baseline {
1559
2042
  -ms-flex-item-align: baseline !important;
1560
- align-self: baseline !important;
2043
+ align-self: baseline !important;
1561
2044
  }
1562
2045
  .align-self-xl-stretch {
1563
2046
  -ms-flex-item-align: stretch !important;
1564
- align-self: stretch !important;
2047
+ align-self: stretch !important;
1565
2048
  }
1566
2049
  }
1567
2050
  /*# sourceMappingURL=bootstrap-grid.css.map */