bootstrap-grid.css 69.1 KB
Newer Older
Mark Otto's avatar
dist    
Mark Otto committed
1
/*!
XhmikosR's avatar
XhmikosR committed
2
 * Bootstrap Grid v5.0.0-alpha3 (https://getbootstrap.com/)
XhmikosR's avatar
XhmikosR committed
3
4
 * Copyright 2011-2020 The Bootstrap Authors
 * Copyright 2011-2020 Twitter, Inc.
XhmikosR's avatar
XhmikosR committed
5
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
Mark Otto's avatar
dist    
Mark Otto committed
6
 */
Mark Otto's avatar
Mark Otto committed
7
8
.container,
.container-fluid,
XhmikosR's avatar
XhmikosR committed
9
.container-xxl,
Mark Otto's avatar
Mark Otto committed
10
.container-xl,
XhmikosR's avatar
XhmikosR committed
11
12
13
.container-lg,
.container-md,
.container-sm {
Mark Otto's avatar
grunt    
Mark Otto committed
14
  width: 100%;
XhmikosR's avatar
XhmikosR committed
15
16
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
Mark Otto's avatar
dist    
Mark Otto committed
17
18
  margin-right: auto;
  margin-left: auto;
19
20
}

21
@media (min-width: 576px) {
XhmikosR's avatar
XhmikosR committed
22
  .container-sm, .container {
23
24
25
26
    max-width: 540px;
  }
}
@media (min-width: 768px) {
XhmikosR's avatar
XhmikosR committed
27
  .container-md, .container-sm, .container {
28
29
30
31
    max-width: 720px;
  }
}
@media (min-width: 992px) {
XhmikosR's avatar
XhmikosR committed
32
  .container-lg, .container-md, .container-sm, .container {
33
34
35
36
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
XhmikosR's avatar
XhmikosR committed
37
  .container-xl, .container-lg, .container-md, .container-sm, .container {
38
39
40
    max-width: 1140px;
  }
}
XhmikosR's avatar
XhmikosR committed
41
@media (min-width: 1400px) {
XhmikosR's avatar
XhmikosR committed
42
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
XhmikosR's avatar
XhmikosR committed
43
44
45
    max-width: 1320px;
  }
}
46
.row {
XhmikosR's avatar
XhmikosR committed
47
48
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
Mark Otto's avatar
grunt    
Mark Otto committed
49
  display: flex;
Mark Otto's avatar
dist    
Mark Otto committed
50
  flex-wrap: wrap;
XhmikosR's avatar
XhmikosR committed
51
52
53
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
XhmikosR's avatar
XhmikosR committed
54
55
56
57
58
59
}
.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
XhmikosR's avatar
XhmikosR committed
60
61
62
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
63
64
}

XhmikosR's avatar
XhmikosR committed
65
66
.col {
  flex: 1 0 0%;
Mark Otto's avatar
grunt    
Mark Otto committed
67
68
}

XhmikosR's avatar
XhmikosR committed
69
70
71
.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
Mark Otto's avatar
grunt    
Mark Otto committed
72
73
}

XhmikosR's avatar
XhmikosR committed
74
75
76
.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
XhmikosR's avatar
XhmikosR committed
77
78
}

XhmikosR's avatar
XhmikosR committed
79
80
81
.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
XhmikosR's avatar
XhmikosR committed
82
83
}

XhmikosR's avatar
XhmikosR committed
84
85
.row-cols-3 > * {
  flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
86
  width: 33.3333333333%;
XhmikosR's avatar
XhmikosR committed
87
88
}

XhmikosR's avatar
XhmikosR committed
89
90
91
.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
XhmikosR's avatar
XhmikosR committed
92
93
}

XhmikosR's avatar
XhmikosR committed
94
95
96
.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
XhmikosR's avatar
XhmikosR committed
97
98
}

XhmikosR's avatar
XhmikosR committed
99
100
.row-cols-6 > * {
  flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
101
  width: 16.6666666667%;
XhmikosR's avatar
XhmikosR committed
102
103
}

XhmikosR's avatar
XhmikosR committed
104
105
106
.col-auto {
  flex: 0 0 auto;
  width: auto;
XhmikosR's avatar
XhmikosR committed
107
108
}

XhmikosR's avatar
XhmikosR committed
109
110
.col-1 {
  flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
111
  width: 8.3333333333%;
XhmikosR's avatar
XhmikosR committed
112
113
}

XhmikosR's avatar
XhmikosR committed
114
115
.col-2 {
  flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
116
  width: 16.6666666667%;
XhmikosR's avatar
XhmikosR committed
117
118
}

XhmikosR's avatar
XhmikosR committed
119
120
121
.col-3 {
  flex: 0 0 auto;
  width: 25%;
XhmikosR's avatar
XhmikosR committed
122
123
}

XhmikosR's avatar
XhmikosR committed
124
125
.col-4 {
  flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
126
  width: 33.3333333333%;
XhmikosR's avatar
XhmikosR committed
127
128
}

XhmikosR's avatar
XhmikosR committed
129
130
.col-5 {
  flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
131
  width: 41.6666666667%;
XhmikosR's avatar
XhmikosR committed
132
133
}

XhmikosR's avatar
XhmikosR committed
134
135
136
.col-6 {
  flex: 0 0 auto;
  width: 50%;
XhmikosR's avatar
XhmikosR committed
137
138
}

XhmikosR's avatar
XhmikosR committed
139
140
.col-7 {
  flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
141
  width: 58.3333333333%;
XhmikosR's avatar
XhmikosR committed
142
143
}

XhmikosR's avatar
XhmikosR committed
144
145
.col-8 {
  flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
146
  width: 66.6666666667%;
XhmikosR's avatar
XhmikosR committed
147
148
}

XhmikosR's avatar
XhmikosR committed
149
150
151
.col-9 {
  flex: 0 0 auto;
  width: 75%;
XhmikosR's avatar
XhmikosR committed
152
153
}

XhmikosR's avatar
XhmikosR committed
154
155
.col-10 {
  flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
156
  width: 83.3333333333%;
XhmikosR's avatar
XhmikosR committed
157
158
}

XhmikosR's avatar
XhmikosR committed
159
160
.col-11 {
  flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
161
  width: 91.6666666667%;
XhmikosR's avatar
XhmikosR committed
162
163
}

XhmikosR's avatar
XhmikosR committed
164
165
166
167
168
169
.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
XhmikosR's avatar
XhmikosR committed
170
  margin-left: 8.3333333333%;
XhmikosR's avatar
XhmikosR committed
171
172
173
}

.offset-2 {
XhmikosR's avatar
XhmikosR committed
174
  margin-left: 16.6666666667%;
XhmikosR's avatar
XhmikosR committed
175
176
177
178
179
180
181
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
XhmikosR's avatar
XhmikosR committed
182
  margin-left: 33.3333333333%;
XhmikosR's avatar
XhmikosR committed
183
184
185
}

.offset-5 {
XhmikosR's avatar
XhmikosR committed
186
  margin-left: 41.6666666667%;
XhmikosR's avatar
XhmikosR committed
187
188
189
190
191
192
193
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
XhmikosR's avatar
XhmikosR committed
194
  margin-left: 58.3333333333%;
XhmikosR's avatar
XhmikosR committed
195
196
197
}

.offset-8 {
XhmikosR's avatar
XhmikosR committed
198
  margin-left: 66.6666666667%;
XhmikosR's avatar
XhmikosR committed
199
200
201
202
}

.offset-9 {
  margin-left: 75%;
XhmikosR's avatar
XhmikosR committed
203
204
}

XhmikosR's avatar
XhmikosR committed
205
.offset-10 {
XhmikosR's avatar
XhmikosR committed
206
  margin-left: 83.3333333333%;
XhmikosR's avatar
XhmikosR committed
207
208
209
}

.offset-11 {
XhmikosR's avatar
XhmikosR committed
210
  margin-left: 91.6666666667%;
XhmikosR's avatar
XhmikosR committed
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
XhmikosR's avatar
XhmikosR committed
261
262
263
}

.g-5,
XhmikosR's avatar
XhmikosR committed
264
265
.gx-5 {
  --bs-gutter-x: 3rem;
XhmikosR's avatar
XhmikosR committed
266
267
}

XhmikosR's avatar
XhmikosR committed
268
269
270
.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
XhmikosR's avatar
XhmikosR committed
271
272
273
}

@media (min-width: 576px) {
XhmikosR's avatar
XhmikosR committed
274
275
  .col-sm {
    flex: 1 0 0%;
XhmikosR's avatar
XhmikosR committed
276
  }
XhmikosR's avatar
XhmikosR committed
277

XhmikosR's avatar
XhmikosR committed
278
279
280
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
XhmikosR's avatar
XhmikosR committed
281
  }
XhmikosR's avatar
XhmikosR committed
282

XhmikosR's avatar
XhmikosR committed
283
284
285
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
XhmikosR's avatar
XhmikosR committed
286
  }
XhmikosR's avatar
XhmikosR committed
287

XhmikosR's avatar
XhmikosR committed
288
289
290
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
XhmikosR's avatar
XhmikosR committed
291
  }
XhmikosR's avatar
XhmikosR committed
292

XhmikosR's avatar
XhmikosR committed
293
294
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
295
    width: 33.3333333333%;
XhmikosR's avatar
XhmikosR committed
296
  }
XhmikosR's avatar
XhmikosR committed
297

XhmikosR's avatar
XhmikosR committed
298
299
300
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
XhmikosR's avatar
XhmikosR committed
301
  }
XhmikosR's avatar
XhmikosR committed
302

XhmikosR's avatar
XhmikosR committed
303
304
305
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
XhmikosR's avatar
XhmikosR committed
306
  }
XhmikosR's avatar
XhmikosR committed
307

XhmikosR's avatar
XhmikosR committed
308
309
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
310
    width: 16.6666666667%;
XhmikosR's avatar
XhmikosR committed
311
  }
XhmikosR's avatar
XhmikosR committed
312

XhmikosR's avatar
XhmikosR committed
313
314
315
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
XhmikosR's avatar
XhmikosR committed
316
  }
XhmikosR's avatar
XhmikosR committed
317

XhmikosR's avatar
XhmikosR committed
318
319
  .col-sm-1 {
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
320
    width: 8.3333333333%;
XhmikosR's avatar
XhmikosR committed
321
  }
XhmikosR's avatar
XhmikosR committed
322

XhmikosR's avatar
XhmikosR committed
323
324
  .col-sm-2 {
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
325
    width: 16.6666666667%;
XhmikosR's avatar
XhmikosR committed
326
  }
XhmikosR's avatar
XhmikosR committed
327

XhmikosR's avatar
XhmikosR committed
328
329
330
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
XhmikosR's avatar
XhmikosR committed
331
  }
XhmikosR's avatar
XhmikosR committed
332

XhmikosR's avatar
XhmikosR committed
333
334
  .col-sm-4 {
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
335
    width: 33.3333333333%;
XhmikosR's avatar
XhmikosR committed
336
  }
XhmikosR's avatar
XhmikosR committed
337

XhmikosR's avatar
XhmikosR committed
338
339
  .col-sm-5 {
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
340
    width: 41.6666666667%;
XhmikosR's avatar
XhmikosR committed
341
  }
XhmikosR's avatar
XhmikosR committed
342

XhmikosR's avatar
XhmikosR committed
343
344
345
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
XhmikosR's avatar
XhmikosR committed
346
  }
XhmikosR's avatar
XhmikosR committed
347

XhmikosR's avatar
XhmikosR committed
348
349
  .col-sm-7 {
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
350
    width: 58.3333333333%;
XhmikosR's avatar
XhmikosR committed
351
  }
XhmikosR's avatar
XhmikosR committed
352

XhmikosR's avatar
XhmikosR committed
353
354
  .col-sm-8 {
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
355
    width: 66.6666666667%;
XhmikosR's avatar
XhmikosR committed
356
  }
XhmikosR's avatar
XhmikosR committed
357

XhmikosR's avatar
XhmikosR committed
358
359
360
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
XhmikosR's avatar
XhmikosR committed
361
  }
XhmikosR's avatar
XhmikosR committed
362

XhmikosR's avatar
XhmikosR committed
363
364
  .col-sm-10 {
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
365
    width: 83.3333333333%;
XhmikosR's avatar
XhmikosR committed
366
  }
XhmikosR's avatar
XhmikosR committed
367

XhmikosR's avatar
XhmikosR committed
368
369
  .col-sm-11 {
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
370
    width: 91.6666666667%;
XhmikosR's avatar
XhmikosR committed
371
  }
XhmikosR's avatar
XhmikosR committed
372

XhmikosR's avatar
XhmikosR committed
373
374
375
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
XhmikosR's avatar
XhmikosR committed
376
  }
XhmikosR's avatar
XhmikosR committed
377

XhmikosR's avatar
XhmikosR committed
378
  .offset-sm-0 {
XhmikosR's avatar
XhmikosR committed
379
380
    margin-left: 0;
  }
XhmikosR's avatar
XhmikosR committed
381

XhmikosR's avatar
XhmikosR committed
382
  .offset-sm-1 {
XhmikosR's avatar
XhmikosR committed
383
    margin-left: 8.3333333333%;
XhmikosR's avatar
XhmikosR committed
384
  }
XhmikosR's avatar
XhmikosR committed
385

XhmikosR's avatar
XhmikosR committed
386
  .offset-sm-2 {
XhmikosR's avatar
XhmikosR committed
387
    margin-left: 16.6666666667%;
XhmikosR's avatar
XhmikosR committed
388
  }
XhmikosR's avatar
XhmikosR committed
389

XhmikosR's avatar
XhmikosR committed
390
391
  .offset-sm-3 {
    margin-left: 25%;
XhmikosR's avatar
XhmikosR committed
392
  }
XhmikosR's avatar
XhmikosR committed
393

XhmikosR's avatar
XhmikosR committed
394
  .offset-sm-4 {
XhmikosR's avatar
XhmikosR committed
395
    margin-left: 33.3333333333%;
XhmikosR's avatar
XhmikosR committed
396
  }
XhmikosR's avatar
XhmikosR committed
397

XhmikosR's avatar
XhmikosR committed
398
  .offset-sm-5 {
XhmikosR's avatar
XhmikosR committed
399
    margin-left: 41.6666666667%;
XhmikosR's avatar
XhmikosR committed
400
  }
XhmikosR's avatar
XhmikosR committed
401

XhmikosR's avatar
XhmikosR committed
402
403
  .offset-sm-6 {
    margin-left: 50%;
XhmikosR's avatar
XhmikosR committed
404
  }
XhmikosR's avatar
XhmikosR committed
405

XhmikosR's avatar
XhmikosR committed
406
  .offset-sm-7 {
XhmikosR's avatar
XhmikosR committed
407
    margin-left: 58.3333333333%;
XhmikosR's avatar
XhmikosR committed
408
  }
XhmikosR's avatar
XhmikosR committed
409

XhmikosR's avatar
XhmikosR committed
410
  .offset-sm-8 {
XhmikosR's avatar
XhmikosR committed
411
    margin-left: 66.6666666667%;
XhmikosR's avatar
XhmikosR committed
412
  }
XhmikosR's avatar
XhmikosR committed
413

XhmikosR's avatar
XhmikosR committed
414
415
  .offset-sm-9 {
    margin-left: 75%;
XhmikosR's avatar
XhmikosR committed
416
  }
XhmikosR's avatar
XhmikosR committed
417

XhmikosR's avatar
XhmikosR committed
418
  .offset-sm-10 {
XhmikosR's avatar
XhmikosR committed
419
    margin-left: 83.3333333333%;
XhmikosR's avatar
XhmikosR committed
420
  }
XhmikosR's avatar
XhmikosR committed
421

XhmikosR's avatar
XhmikosR committed
422
  .offset-sm-11 {
XhmikosR's avatar
XhmikosR committed
423
    margin-left: 91.6666666667%;
XhmikosR's avatar
XhmikosR committed
424
  }
XhmikosR's avatar
XhmikosR committed
425

XhmikosR's avatar
XhmikosR committed
426
  .g-sm-0,
XhmikosR's avatar
XhmikosR committed
427
.gx-sm-0 {
XhmikosR's avatar
XhmikosR committed
428
    --bs-gutter-x: 0;
XhmikosR's avatar
XhmikosR committed
429
  }
XhmikosR's avatar
XhmikosR committed
430

XhmikosR's avatar
XhmikosR committed
431
  .g-sm-0,
XhmikosR's avatar
XhmikosR committed
432
.gy-sm-0 {
XhmikosR's avatar
XhmikosR committed
433
    --bs-gutter-y: 0;
XhmikosR's avatar
XhmikosR committed
434
  }
XhmikosR's avatar
XhmikosR committed
435

XhmikosR's avatar
XhmikosR committed
436
  .g-sm-1,
XhmikosR's avatar
XhmikosR committed
437
.gx-sm-1 {
XhmikosR's avatar
XhmikosR committed
438
    --bs-gutter-x: 0.25rem;
XhmikosR's avatar
XhmikosR committed
439
  }
XhmikosR's avatar
XhmikosR committed
440

XhmikosR's avatar
XhmikosR committed
441
  .g-sm-1,
XhmikosR's avatar
XhmikosR committed
442
.gy-sm-1 {
XhmikosR's avatar
XhmikosR committed
443
    --bs-gutter-y: 0.25rem;
XhmikosR's avatar
XhmikosR committed
444
  }
XhmikosR's avatar
XhmikosR committed
445

XhmikosR's avatar
XhmikosR committed
446
  .g-sm-2,
XhmikosR's avatar
XhmikosR committed
447
.gx-sm-2 {
XhmikosR's avatar
XhmikosR committed
448
    --bs-gutter-x: 0.5rem;
XhmikosR's avatar
XhmikosR committed
449
  }
XhmikosR's avatar
XhmikosR committed
450

XhmikosR's avatar
XhmikosR committed
451
  .g-sm-2,
XhmikosR's avatar
XhmikosR committed
452
.gy-sm-2 {
XhmikosR's avatar
XhmikosR committed
453
    --bs-gutter-y: 0.5rem;
XhmikosR's avatar
XhmikosR committed
454
  }
XhmikosR's avatar
XhmikosR committed
455

XhmikosR's avatar
XhmikosR committed
456
  .g-sm-3,
XhmikosR's avatar
XhmikosR committed
457
.gx-sm-3 {
XhmikosR's avatar
XhmikosR committed
458
    --bs-gutter-x: 1rem;
XhmikosR's avatar
XhmikosR committed
459
  }
XhmikosR's avatar
XhmikosR committed
460

XhmikosR's avatar
XhmikosR committed
461
  .g-sm-3,
XhmikosR's avatar
XhmikosR committed
462
.gy-sm-3 {
XhmikosR's avatar
XhmikosR committed
463
    --bs-gutter-y: 1rem;
XhmikosR's avatar
XhmikosR committed
464
  }
XhmikosR's avatar
XhmikosR committed
465

XhmikosR's avatar
XhmikosR committed
466
  .g-sm-4,
XhmikosR's avatar
XhmikosR committed
467
.gx-sm-4 {
XhmikosR's avatar
XhmikosR committed
468
    --bs-gutter-x: 1.5rem;
XhmikosR's avatar
XhmikosR committed
469
  }
XhmikosR's avatar
XhmikosR committed
470

XhmikosR's avatar
XhmikosR committed
471
  .g-sm-4,
XhmikosR's avatar
XhmikosR committed
472
.gy-sm-4 {
XhmikosR's avatar
XhmikosR committed
473
    --bs-gutter-y: 1.5rem;
XhmikosR's avatar
XhmikosR committed
474
  }
XhmikosR's avatar
XhmikosR committed
475

XhmikosR's avatar
XhmikosR committed
476
  .g-sm-5,
XhmikosR's avatar
XhmikosR committed
477
.gx-sm-5 {
XhmikosR's avatar
XhmikosR committed
478
    --bs-gutter-x: 3rem;
XhmikosR's avatar
XhmikosR committed
479
  }
XhmikosR's avatar
XhmikosR committed
480

XhmikosR's avatar
XhmikosR committed
481
  .g-sm-5,
XhmikosR's avatar
XhmikosR committed
482
.gy-sm-5 {
XhmikosR's avatar
XhmikosR committed
483
    --bs-gutter-y: 3rem;
XhmikosR's avatar
XhmikosR committed
484
485
  }
}
XhmikosR's avatar
XhmikosR committed
486
487
488
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
XhmikosR's avatar
XhmikosR committed
489
  }
XhmikosR's avatar
XhmikosR committed
490

XhmikosR's avatar
XhmikosR committed
491
492
493
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
XhmikosR's avatar
XhmikosR committed
494
  }
XhmikosR's avatar
XhmikosR committed
495

XhmikosR's avatar
XhmikosR committed
496
497
498
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
XhmikosR's avatar
XhmikosR committed
499
  }
XhmikosR's avatar
XhmikosR committed
500

XhmikosR's avatar
XhmikosR committed
501
502
503
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
XhmikosR's avatar
XhmikosR committed
504
  }
XhmikosR's avatar
XhmikosR committed
505

XhmikosR's avatar
XhmikosR committed
506
507
  .row-cols-md-3 > * {
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
508
    width: 33.3333333333%;
XhmikosR's avatar
XhmikosR committed
509
  }
XhmikosR's avatar
XhmikosR committed
510

XhmikosR's avatar
XhmikosR committed
511
512
513
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
XhmikosR's avatar
XhmikosR committed
514
  }
XhmikosR's avatar
XhmikosR committed
515

XhmikosR's avatar
XhmikosR committed
516
517
518
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
XhmikosR's avatar
XhmikosR committed
519
  }
XhmikosR's avatar
XhmikosR committed
520

XhmikosR's avatar
XhmikosR committed
521
522
  .row-cols-md-6 > * {
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
523
    width: 16.6666666667%;
XhmikosR's avatar
XhmikosR committed
524
  }
XhmikosR's avatar
XhmikosR committed
525

XhmikosR's avatar
XhmikosR committed
526
527
528
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
XhmikosR's avatar
XhmikosR committed
529
  }
XhmikosR's avatar
XhmikosR committed
530

XhmikosR's avatar
XhmikosR committed
531
532
  .col-md-1 {
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
533
    width: 8.3333333333%;
XhmikosR's avatar
XhmikosR committed
534
  }
XhmikosR's avatar
XhmikosR committed
535

XhmikosR's avatar
XhmikosR committed
536
537
  .col-md-2 {
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
538
    width: 16.6666666667%;
XhmikosR's avatar
XhmikosR committed
539
  }
XhmikosR's avatar
XhmikosR committed
540

XhmikosR's avatar
XhmikosR committed
541
542
543
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
XhmikosR's avatar
XhmikosR committed
544
  }
XhmikosR's avatar
XhmikosR committed
545

XhmikosR's avatar
XhmikosR committed
546
547
  .col-md-4 {
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
548
    width: 33.3333333333%;
XhmikosR's avatar
XhmikosR committed
549
  }
XhmikosR's avatar
XhmikosR committed
550

XhmikosR's avatar
XhmikosR committed
551
552
  .col-md-5 {
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
553
    width: 41.6666666667%;
XhmikosR's avatar
XhmikosR committed
554
  }
XhmikosR's avatar
XhmikosR committed
555

XhmikosR's avatar
XhmikosR committed
556
557
558
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
XhmikosR's avatar
XhmikosR committed
559
  }
XhmikosR's avatar
XhmikosR committed
560

XhmikosR's avatar
XhmikosR committed
561
562
  .col-md-7 {
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
563
    width: 58.3333333333%;
XhmikosR's avatar
XhmikosR committed
564
  }
XhmikosR's avatar
XhmikosR committed
565

XhmikosR's avatar
XhmikosR committed
566
567
  .col-md-8 {
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
568
    width: 66.6666666667%;
XhmikosR's avatar
XhmikosR committed
569
  }
XhmikosR's avatar
XhmikosR committed
570

XhmikosR's avatar
XhmikosR committed
571
572
573
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
XhmikosR's avatar
XhmikosR committed
574
  }
XhmikosR's avatar
XhmikosR committed
575

XhmikosR's avatar
XhmikosR committed
576
577
  .col-md-10 {
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
578
    width: 83.3333333333%;
XhmikosR's avatar
XhmikosR committed
579
  }
XhmikosR's avatar
XhmikosR committed
580

XhmikosR's avatar
XhmikosR committed
581
582
  .col-md-11 {
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
583
    width: 91.6666666667%;
XhmikosR's avatar
XhmikosR committed
584
  }
XhmikosR's avatar
XhmikosR committed
585

XhmikosR's avatar
XhmikosR committed
586
587
588
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
XhmikosR's avatar
XhmikosR committed
589
  }
XhmikosR's avatar
XhmikosR committed
590

XhmikosR's avatar
XhmikosR committed
591
  .offset-md-0 {
XhmikosR's avatar
XhmikosR committed
592
593
    margin-left: 0;
  }
XhmikosR's avatar
XhmikosR committed
594

XhmikosR's avatar
XhmikosR committed
595
  .offset-md-1 {
XhmikosR's avatar
XhmikosR committed
596
    margin-left: 8.3333333333%;
XhmikosR's avatar
XhmikosR committed
597
  }
XhmikosR's avatar
XhmikosR committed
598

XhmikosR's avatar
XhmikosR committed
599
  .offset-md-2 {
XhmikosR's avatar
XhmikosR committed
600
    margin-left: 16.6666666667%;
XhmikosR's avatar
XhmikosR committed
601
  }
XhmikosR's avatar
XhmikosR committed
602

XhmikosR's avatar
XhmikosR committed
603
604
  .offset-md-3 {
    margin-left: 25%;
XhmikosR's avatar
XhmikosR committed
605
  }
XhmikosR's avatar
XhmikosR committed
606

XhmikosR's avatar
XhmikosR committed
607
  .offset-md-4 {
XhmikosR's avatar
XhmikosR committed
608
    margin-left: 33.3333333333%;
XhmikosR's avatar
XhmikosR committed
609
  }
XhmikosR's avatar
XhmikosR committed
610

XhmikosR's avatar
XhmikosR committed
611
  .offset-md-5 {
XhmikosR's avatar
XhmikosR committed
612
    margin-left: 41.6666666667%;
XhmikosR's avatar
XhmikosR committed
613
  }
XhmikosR's avatar
XhmikosR committed
614

XhmikosR's avatar
XhmikosR committed
615
616
  .offset-md-6 {
    margin-left: 50%;
XhmikosR's avatar
XhmikosR committed
617
  }
XhmikosR's avatar
XhmikosR committed
618

XhmikosR's avatar
XhmikosR committed
619
  .offset-md-7 {
XhmikosR's avatar
XhmikosR committed
620
    margin-left: 58.3333333333%;
XhmikosR's avatar
XhmikosR committed
621
  }
XhmikosR's avatar
XhmikosR committed
622

XhmikosR's avatar
XhmikosR committed
623
  .offset-md-8 {
XhmikosR's avatar
XhmikosR committed
624
    margin-left: 66.6666666667%;
XhmikosR's avatar
XhmikosR committed
625
  }
XhmikosR's avatar
XhmikosR committed
626

XhmikosR's avatar
XhmikosR committed
627
628
  .offset-md-9 {
    margin-left: 75%;
XhmikosR's avatar
XhmikosR committed
629
  }
XhmikosR's avatar
XhmikosR committed
630

XhmikosR's avatar
XhmikosR committed
631
  .offset-md-10 {
XhmikosR's avatar
XhmikosR committed
632
    margin-left: 83.3333333333%;
XhmikosR's avatar
XhmikosR committed
633
  }
XhmikosR's avatar
XhmikosR committed
634

XhmikosR's avatar
XhmikosR committed
635
  .offset-md-11 {
XhmikosR's avatar
XhmikosR committed
636
    margin-left: 91.6666666667%;
XhmikosR's avatar
XhmikosR committed
637
  }
XhmikosR's avatar
XhmikosR committed
638

XhmikosR's avatar
XhmikosR committed
639
  .g-md-0,
XhmikosR's avatar
XhmikosR committed
640
.gx-md-0 {
XhmikosR's avatar
XhmikosR committed
641
    --bs-gutter-x: 0;
XhmikosR's avatar
XhmikosR committed
642
  }
XhmikosR's avatar
XhmikosR committed
643

XhmikosR's avatar
XhmikosR committed
644
  .g-md-0,
XhmikosR's avatar
XhmikosR committed
645
.gy-md-0 {
XhmikosR's avatar
XhmikosR committed
646
    --bs-gutter-y: 0;
XhmikosR's avatar
XhmikosR committed
647
  }
XhmikosR's avatar
XhmikosR committed
648

XhmikosR's avatar
XhmikosR committed
649
  .g-md-1,
XhmikosR's avatar
XhmikosR committed
650
.gx-md-1 {
XhmikosR's avatar
XhmikosR committed
651
    --bs-gutter-x: 0.25rem;
XhmikosR's avatar
XhmikosR committed
652
  }
XhmikosR's avatar
XhmikosR committed
653

XhmikosR's avatar
XhmikosR committed
654
  .g-md-1,
XhmikosR's avatar
XhmikosR committed
655
.gy-md-1 {
XhmikosR's avatar
XhmikosR committed
656
    --bs-gutter-y: 0.25rem;
XhmikosR's avatar
XhmikosR committed
657
  }
XhmikosR's avatar
XhmikosR committed
658

XhmikosR's avatar
XhmikosR committed
659
  .g-md-2,
XhmikosR's avatar
XhmikosR committed
660
.gx-md-2 {
XhmikosR's avatar
XhmikosR committed
661
    --bs-gutter-x: 0.5rem;
XhmikosR's avatar
XhmikosR committed
662
  }
XhmikosR's avatar
XhmikosR committed
663

XhmikosR's avatar
XhmikosR committed
664
  .g-md-2,
XhmikosR's avatar
XhmikosR committed
665
.gy-md-2 {
XhmikosR's avatar
XhmikosR committed
666
    --bs-gutter-y: 0.5rem;
XhmikosR's avatar
XhmikosR committed
667
  }
XhmikosR's avatar
XhmikosR committed
668

XhmikosR's avatar
XhmikosR committed
669
  .g-md-3,
XhmikosR's avatar
XhmikosR committed
670
.gx-md-3 {
XhmikosR's avatar
XhmikosR committed
671
    --bs-gutter-x: 1rem;
XhmikosR's avatar
XhmikosR committed
672
  }
XhmikosR's avatar
XhmikosR committed
673

XhmikosR's avatar
XhmikosR committed
674
  .g-md-3,
XhmikosR's avatar
XhmikosR committed
675
.gy-md-3 {
XhmikosR's avatar
XhmikosR committed
676
    --bs-gutter-y: 1rem;
XhmikosR's avatar
XhmikosR committed
677
  }
XhmikosR's avatar
XhmikosR committed
678

XhmikosR's avatar
XhmikosR committed
679
  .g-md-4,
XhmikosR's avatar
XhmikosR committed
680
.gx-md-4 {
XhmikosR's avatar
XhmikosR committed
681
    --bs-gutter-x: 1.5rem;
XhmikosR's avatar
XhmikosR committed
682
  }
XhmikosR's avatar
XhmikosR committed
683

XhmikosR's avatar
XhmikosR committed
684
  .g-md-4,
XhmikosR's avatar
XhmikosR committed
685
.gy-md-4 {
XhmikosR's avatar
XhmikosR committed
686
    --bs-gutter-y: 1.5rem;
XhmikosR's avatar
XhmikosR committed
687
  }
XhmikosR's avatar
XhmikosR committed
688

XhmikosR's avatar
XhmikosR committed
689
  .g-md-5,
XhmikosR's avatar
XhmikosR committed
690
.gx-md-5 {
XhmikosR's avatar
XhmikosR committed
691
    --bs-gutter-x: 3rem;
XhmikosR's avatar
XhmikosR committed
692
  }
XhmikosR's avatar
XhmikosR committed
693

XhmikosR's avatar
XhmikosR committed
694
  .g-md-5,
XhmikosR's avatar
XhmikosR committed
695
.gy-md-5 {
XhmikosR's avatar
XhmikosR committed
696
    --bs-gutter-y: 3rem;
XhmikosR's avatar
XhmikosR committed
697
  }
698
}
XhmikosR's avatar
XhmikosR committed
699
700
@media (min-width: 992px) {
  .col-lg {
XhmikosR's avatar
XhmikosR committed
701
702
    flex: 1 0 0%;
  }
XhmikosR's avatar
XhmikosR committed
703

XhmikosR's avatar
XhmikosR committed
704
  .row-cols-lg-auto > * {
XhmikosR's avatar
XhmikosR committed
705
706
    flex: 0 0 auto;
    width: auto;
Mark Otto's avatar
grunt    
Mark Otto committed
707
  }
XhmikosR's avatar
XhmikosR committed
708

XhmikosR's avatar
XhmikosR committed
709
  .row-cols-lg-1 > * {
XhmikosR's avatar
XhmikosR committed
710
711
    flex: 0 0 auto;
    width: 100%;
XhmikosR's avatar
XhmikosR committed
712
  }
XhmikosR's avatar
XhmikosR committed
713

XhmikosR's avatar
XhmikosR committed
714
  .row-cols-lg-2 > * {
XhmikosR's avatar
XhmikosR committed
715
716
    flex: 0 0 auto;
    width: 50%;
XhmikosR's avatar
XhmikosR committed
717
  }
XhmikosR's avatar
XhmikosR committed
718

XhmikosR's avatar
XhmikosR committed
719
  .row-cols-lg-3 > * {
XhmikosR's avatar
XhmikosR committed
720
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
721
    width: 33.3333333333%;
XhmikosR's avatar
XhmikosR committed
722
  }
XhmikosR's avatar
XhmikosR committed
723

XhmikosR's avatar
XhmikosR committed
724
  .row-cols-lg-4 > * {
XhmikosR's avatar
XhmikosR committed
725
726
    flex: 0 0 auto;
    width: 25%;
XhmikosR's avatar
XhmikosR committed
727
  }
XhmikosR's avatar
XhmikosR committed
728

XhmikosR's avatar
XhmikosR committed
729
  .row-cols-lg-5 > * {
XhmikosR's avatar
XhmikosR committed
730
731
    flex: 0 0 auto;
    width: 20%;
XhmikosR's avatar
XhmikosR committed
732
  }
XhmikosR's avatar
XhmikosR committed
733

XhmikosR's avatar
XhmikosR committed
734
  .row-cols-lg-6 > * {
XhmikosR's avatar
XhmikosR committed
735
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
736
    width: 16.6666666667%;
XhmikosR's avatar
XhmikosR committed
737
  }
XhmikosR's avatar
XhmikosR committed
738

XhmikosR's avatar
XhmikosR committed
739
  .col-lg-auto {
Mark Otto's avatar
dist    
Mark Otto committed
740
    flex: 0 0 auto;
Mark Otto's avatar
grunt    
Mark Otto committed
741
742
    width: auto;
  }
XhmikosR's avatar
XhmikosR committed
743

XhmikosR's avatar
XhmikosR committed
744
  .col-lg-1 {
XhmikosR's avatar
XhmikosR committed
745
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
746
    width: 8.3333333333%;
747
  }
XhmikosR's avatar
XhmikosR committed
748

XhmikosR's avatar
XhmikosR committed
749
  .col-lg-2 {
XhmikosR's avatar
XhmikosR committed
750
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
751
    width: 16.6666666667%;
752
  }
XhmikosR's avatar
XhmikosR committed
753

XhmikosR's avatar
XhmikosR committed
754
  .col-lg-3 {
XhmikosR's avatar
XhmikosR committed
755
756
    flex: 0 0 auto;
    width: 25%;
757
  }
XhmikosR's avatar
XhmikosR committed
758

XhmikosR's avatar
XhmikosR committed
759
  .col-lg-4 {
XhmikosR's avatar
XhmikosR committed
760
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
761
    width: 33.3333333333%;
762
  }
XhmikosR's avatar
XhmikosR committed
763

XhmikosR's avatar
XhmikosR committed
764
  .col-lg-5 {
XhmikosR's avatar
XhmikosR committed
765
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
766
    width: 41.6666666667%;
767
  }
XhmikosR's avatar
XhmikosR committed
768

XhmikosR's avatar
XhmikosR committed
769
  .col-lg-6 {
XhmikosR's avatar
XhmikosR committed
770
771
    flex: 0 0 auto;
    width: 50%;
772
  }
XhmikosR's avatar
XhmikosR committed
773

XhmikosR's avatar
XhmikosR committed
774
  .col-lg-7 {
XhmikosR's avatar
XhmikosR committed
775
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
776
    width: 58.3333333333%;
777
  }
XhmikosR's avatar
XhmikosR committed
778

XhmikosR's avatar
XhmikosR committed
779
  .col-lg-8 {
XhmikosR's avatar
XhmikosR committed
780
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
781
    width: 66.6666666667%;
782
  }
XhmikosR's avatar
XhmikosR committed
783

XhmikosR's avatar
XhmikosR committed
784
  .col-lg-9 {
XhmikosR's avatar
XhmikosR committed
785
786
    flex: 0 0 auto;
    width: 75%;
787
  }
XhmikosR's avatar
XhmikosR committed
788

XhmikosR's avatar
XhmikosR committed
789
  .col-lg-10 {
XhmikosR's avatar
XhmikosR committed
790
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
791
    width: 83.3333333333%;
792
  }
XhmikosR's avatar
XhmikosR committed
793

XhmikosR's avatar
XhmikosR committed
794
  .col-lg-11 {
XhmikosR's avatar
XhmikosR committed
795
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
796
    width: 91.6666666667%;
797
  }
XhmikosR's avatar
XhmikosR committed
798

XhmikosR's avatar
XhmikosR committed
799
  .col-lg-12 {
XhmikosR's avatar
XhmikosR committed
800
801
    flex: 0 0 auto;
    width: 100%;
802
  }
XhmikosR's avatar
XhmikosR committed
803

XhmikosR's avatar
XhmikosR committed
804
  .offset-lg-0 {
Mark Otto's avatar
dist    
Mark Otto committed
805
    margin-left: 0;
Mark Otto's avatar
dist    
Mark Otto committed
806
  }
XhmikosR's avatar
XhmikosR committed
807

XhmikosR's avatar
XhmikosR committed
808
  .offset-lg-1 {
XhmikosR's avatar
XhmikosR committed
809
    margin-left: 8.3333333333%;
Mark Otto's avatar
dist    
Mark Otto committed
810
  }
XhmikosR's avatar
XhmikosR committed
811

XhmikosR's avatar
XhmikosR committed
812
  .offset-lg-2 {
XhmikosR's avatar
XhmikosR committed
813
    margin-left: 16.6666666667%;
Mark Otto's avatar
dist    
Mark Otto committed
814
  }
XhmikosR's avatar
XhmikosR committed
815

XhmikosR's avatar
XhmikosR committed
816
  .offset-lg-3 {
Mark Otto's avatar
dist    
Mark Otto committed
817
818
    margin-left: 25%;
  }
XhmikosR's avatar
XhmikosR committed
819

XhmikosR's avatar
XhmikosR committed
820
  .offset-lg-4 {
XhmikosR's avatar
XhmikosR committed
821
    margin-left: 33.3333333333%;
Mark Otto's avatar
dist    
Mark Otto committed
822
  }
XhmikosR's avatar
XhmikosR committed
823

XhmikosR's avatar
XhmikosR committed
824
  .offset-lg-5 {
XhmikosR's avatar
XhmikosR committed
825
    margin-left: 41.6666666667%;
Mark Otto's avatar
dist    
Mark Otto committed
826
  }
XhmikosR's avatar
XhmikosR committed
827

XhmikosR's avatar
XhmikosR committed
828
  .offset-lg-6 {
Mark Otto's avatar
dist    
Mark Otto committed
829
830
    margin-left: 50%;
  }
XhmikosR's avatar
XhmikosR committed
831

XhmikosR's avatar
XhmikosR committed
832
  .offset-lg-7 {
XhmikosR's avatar
XhmikosR committed
833
    margin-left: 58.3333333333%;
Mark Otto's avatar
dist    
Mark Otto committed
834
  }
XhmikosR's avatar
XhmikosR committed
835

XhmikosR's avatar
XhmikosR committed
836
  .offset-lg-8 {
XhmikosR's avatar
XhmikosR committed
837
    margin-left: 66.6666666667%;
Mark Otto's avatar
dist    
Mark Otto committed
838
  }
XhmikosR's avatar
XhmikosR committed
839

XhmikosR's avatar
XhmikosR committed
840
  .offset-lg-9 {
Mark Otto's avatar
dist    
Mark Otto committed
841
842
    margin-left: 75%;
  }
XhmikosR's avatar
XhmikosR committed
843

XhmikosR's avatar
XhmikosR committed
844
  .offset-lg-10 {
XhmikosR's avatar
XhmikosR committed
845
    margin-left: 83.3333333333%;
Mark Otto's avatar
dist    
Mark Otto committed
846
  }
XhmikosR's avatar
XhmikosR committed
847

XhmikosR's avatar
XhmikosR committed
848
  .offset-lg-11 {
XhmikosR's avatar
XhmikosR committed
849
    margin-left: 91.6666666667%;
Mark Otto's avatar
dist    
Mark Otto committed
850
  }
XhmikosR's avatar
XhmikosR committed
851

XhmikosR's avatar
XhmikosR committed
852
  .g-lg-0,
XhmikosR's avatar
XhmikosR committed
853
.gx-lg-0 {
XhmikosR's avatar
XhmikosR committed
854
    --bs-gutter-x: 0;
XhmikosR's avatar
XhmikosR committed
855
  }
XhmikosR's avatar
XhmikosR committed
856

XhmikosR's avatar
XhmikosR committed
857
  .g-lg-0,
XhmikosR's avatar
XhmikosR committed
858
.gy-lg-0 {
XhmikosR's avatar
XhmikosR committed
859
    --bs-gutter-y: 0;
Mark Otto's avatar
grunt    
Mark Otto committed
860
  }
XhmikosR's avatar
XhmikosR committed
861

XhmikosR's avatar
XhmikosR committed
862
  .g-lg-1,
XhmikosR's avatar
XhmikosR committed
863
.gx-lg-1 {
XhmikosR's avatar
XhmikosR committed
864
    --bs-gutter-x: 0.25rem;
XhmikosR's avatar
XhmikosR committed
865
  }
XhmikosR's avatar
XhmikosR committed
866

XhmikosR's avatar
XhmikosR committed
867
  .g-lg-1,
XhmikosR's avatar
XhmikosR committed
868
.gy-lg-1 {
XhmikosR's avatar
XhmikosR committed
869
    --bs-gutter-y: 0.25rem;
XhmikosR's avatar
XhmikosR committed
870
  }
XhmikosR's avatar
XhmikosR committed
871

XhmikosR's avatar
XhmikosR committed
872
  .g-lg-2,
XhmikosR's avatar
XhmikosR committed
873
.gx-lg-2 {
XhmikosR's avatar
XhmikosR committed
874
    --bs-gutter-x: 0.5rem;
XhmikosR's avatar
XhmikosR committed
875
  }
XhmikosR's avatar
XhmikosR committed
876

XhmikosR's avatar
XhmikosR committed
877
  .g-lg-2,
XhmikosR's avatar
XhmikosR committed
878
.gy-lg-2 {
XhmikosR's avatar
XhmikosR committed
879
    --bs-gutter-y: 0.5rem;
XhmikosR's avatar
XhmikosR committed
880
  }
XhmikosR's avatar
XhmikosR committed
881

XhmikosR's avatar
XhmikosR committed
882
  .g-lg-3,
XhmikosR's avatar
XhmikosR committed
883
.gx-lg-3 {
XhmikosR's avatar
XhmikosR committed
884
    --bs-gutter-x: 1rem;
XhmikosR's avatar
XhmikosR committed
885
  }
XhmikosR's avatar
XhmikosR committed
886

XhmikosR's avatar
XhmikosR committed
887
  .g-lg-3,
XhmikosR's avatar
XhmikosR committed
888
.gy-lg-3 {
XhmikosR's avatar
XhmikosR committed
889
    --bs-gutter-y: 1rem;
Mark Otto's avatar
dist    
Mark Otto committed
890
  }
XhmikosR's avatar
XhmikosR committed
891

XhmikosR's avatar
XhmikosR committed
892
  .g-lg-4,
XhmikosR's avatar
XhmikosR committed
893
.gx-lg-4 {
XhmikosR's avatar
XhmikosR committed
894
    --bs-gutter-x: 1.5rem;
Mark Otto's avatar
dist    
Mark Otto committed
895
  }
XhmikosR's avatar
XhmikosR committed
896

XhmikosR's avatar
XhmikosR committed
897
  .g-lg-4,
XhmikosR's avatar
XhmikosR committed
898
.gy-lg-4 {
XhmikosR's avatar
XhmikosR committed
899
    --bs-gutter-y: 1.5rem;
Mark Otto's avatar
dist    
Mark Otto committed
900
  }
XhmikosR's avatar
XhmikosR committed
901

XhmikosR's avatar
XhmikosR committed
902
  .g-lg-5,
XhmikosR's avatar
XhmikosR committed
903
.gx-lg-5 {
XhmikosR's avatar
XhmikosR committed
904
    --bs-gutter-x: 3rem;
Mark Otto's avatar
dist    
Mark Otto committed
905
  }
XhmikosR's avatar
XhmikosR committed
906

XhmikosR's avatar
XhmikosR committed
907
  .g-lg-5,
XhmikosR's avatar
XhmikosR committed
908
.gy-lg-5 {
XhmikosR's avatar
XhmikosR committed
909
    --bs-gutter-y: 3rem;
Mark Otto's avatar
dist    
Mark Otto committed
910
  }
911
}
XhmikosR's avatar
XhmikosR committed
912
913
@media (min-width: 1200px) {
  .col-xl {
XhmikosR's avatar
XhmikosR committed
914
915
    flex: 1 0 0%;
  }
XhmikosR's avatar
XhmikosR committed
916

XhmikosR's avatar
XhmikosR committed
917
  .row-cols-xl-auto > * {
XhmikosR's avatar
XhmikosR committed
918
919
    flex: 0 0 auto;
    width: auto;
Mark Otto's avatar
grunt    
Mark Otto committed
920
  }
XhmikosR's avatar
XhmikosR committed
921

XhmikosR's avatar
XhmikosR committed
922
  .row-cols-xl-1 > * {
XhmikosR's avatar
XhmikosR committed
923
924
    flex: 0 0 auto;
    width: 100%;
XhmikosR's avatar
XhmikosR committed
925
  }
XhmikosR's avatar
XhmikosR committed
926

XhmikosR's avatar
XhmikosR committed
927
  .row-cols-xl-2 > * {
XhmikosR's avatar
XhmikosR committed
928
929
    flex: 0 0 auto;
    width: 50%;
XhmikosR's avatar
XhmikosR committed
930
  }
XhmikosR's avatar
XhmikosR committed
931

XhmikosR's avatar
XhmikosR committed
932
  .row-cols-xl-3 > * {
XhmikosR's avatar
XhmikosR committed
933
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
934
    width: 33.3333333333%;
XhmikosR's avatar
XhmikosR committed
935
  }
XhmikosR's avatar
XhmikosR committed
936

XhmikosR's avatar
XhmikosR committed
937
  .row-cols-xl-4 > * {
XhmikosR's avatar
XhmikosR committed
938
939
    flex: 0 0 auto;
    width: 25%;
XhmikosR's avatar
XhmikosR committed
940
  }
XhmikosR's avatar
XhmikosR committed
941

XhmikosR's avatar
XhmikosR committed
942
  .row-cols-xl-5 > * {
XhmikosR's avatar
XhmikosR committed
943
944
    flex: 0 0 auto;
    width: 20%;
XhmikosR's avatar
XhmikosR committed
945
  }
XhmikosR's avatar
XhmikosR committed
946

XhmikosR's avatar
XhmikosR committed
947
  .row-cols-xl-6 > * {
XhmikosR's avatar
XhmikosR committed
948
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
949
    width: 16.6666666667%;
XhmikosR's avatar
XhmikosR committed
950
  }
XhmikosR's avatar
XhmikosR committed
951

XhmikosR's avatar
XhmikosR committed
952
  .col-xl-auto {
Mark Otto's avatar
dist    
Mark Otto committed
953
    flex: 0 0 auto;
Mark Otto's avatar
grunt    
Mark Otto committed
954
955
    width: auto;
  }
XhmikosR's avatar
XhmikosR committed
956

XhmikosR's avatar
XhmikosR committed
957
  .col-xl-1 {
XhmikosR's avatar
XhmikosR committed
958
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
959
    width: 8.3333333333%;
960
  }
XhmikosR's avatar
XhmikosR committed
961

XhmikosR's avatar
XhmikosR committed
962
  .col-xl-2 {
XhmikosR's avatar
XhmikosR committed
963
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
964
    width: 16.6666666667%;
965
  }
XhmikosR's avatar
XhmikosR committed
966

XhmikosR's avatar
XhmikosR committed
967
  .col-xl-3 {
XhmikosR's avatar
XhmikosR committed
968
969
    flex: 0 0 auto;
    width: 25%;
970
  }
XhmikosR's avatar
XhmikosR committed
971

XhmikosR's avatar
XhmikosR committed
972
  .col-xl-4 {
XhmikosR's avatar
XhmikosR committed
973
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
974
    width: 33.3333333333%;
975
  }
XhmikosR's avatar
XhmikosR committed
976

XhmikosR's avatar
XhmikosR committed
977
  .col-xl-5 {
XhmikosR's avatar
XhmikosR committed
978
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
979
    width: 41.6666666667%;
980
  }
XhmikosR's avatar
XhmikosR committed
981

XhmikosR's avatar
XhmikosR committed
982
  .col-xl-6 {
XhmikosR's avatar
XhmikosR committed
983
984
    flex: 0 0 auto;
    width: 50%;
985
  }
XhmikosR's avatar
XhmikosR committed
986

XhmikosR's avatar
XhmikosR committed
987
  .col-xl-7 {
XhmikosR's avatar
XhmikosR committed
988
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
989
    width: 58.3333333333%;
990
  }
XhmikosR's avatar
XhmikosR committed
991

XhmikosR's avatar
XhmikosR committed
992
  .col-xl-8 {
XhmikosR's avatar
XhmikosR committed
993
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
994
    width: 66.6666666667%;
995
  }
XhmikosR's avatar
XhmikosR committed
996

XhmikosR's avatar
XhmikosR committed
997
  .col-xl-9 {
XhmikosR's avatar
XhmikosR committed
998
999
    flex: 0 0 auto;
    width: 75%;
1000
  }
XhmikosR's avatar
XhmikosR committed
1001

XhmikosR's avatar
XhmikosR committed
1002
  .col-xl-10 {
XhmikosR's avatar
XhmikosR committed
1003
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
1004
    width: 83.3333333333%;
1005
  }
XhmikosR's avatar
XhmikosR committed
1006

XhmikosR's avatar
XhmikosR committed
1007
  .col-xl-11 {
XhmikosR's avatar
XhmikosR committed
1008
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
1009
    width: 91.6666666667%;
1010
  }
XhmikosR's avatar
XhmikosR committed
1011

XhmikosR's avatar
XhmikosR committed
1012
  .col-xl-12 {
XhmikosR's avatar
XhmikosR committed
1013
1014
    flex: 0 0 auto;
    width: 100%;
1015
  }
XhmikosR's avatar
XhmikosR committed
1016

XhmikosR's avatar
XhmikosR committed
1017
  .offset-xl-0 {
Mark Otto's avatar
dist    
Mark Otto committed
1018
    margin-left: 0;
Mark Otto's avatar
dist    
Mark Otto committed
1019
  }
XhmikosR's avatar
XhmikosR committed
1020

XhmikosR's avatar
XhmikosR committed
1021
  .offset-xl-1 {
XhmikosR's avatar
XhmikosR committed
1022
    margin-left: 8.3333333333%;
Mark Otto's avatar
dist    
Mark Otto committed
1023
  }
XhmikosR's avatar
XhmikosR committed
1024

XhmikosR's avatar
XhmikosR committed
1025
  .offset-xl-2 {
XhmikosR's avatar
XhmikosR committed
1026
    margin-left: 16.6666666667%;
Mark Otto's avatar
dist    
Mark Otto committed
1027
  }
XhmikosR's avatar
XhmikosR committed
1028

XhmikosR's avatar
XhmikosR committed
1029
  .offset-xl-3 {
Mark Otto's avatar
dist    
Mark Otto committed
1030
1031
    margin-left: 25%;
  }
XhmikosR's avatar
XhmikosR committed
1032

XhmikosR's avatar
XhmikosR committed
1033
  .offset-xl-4 {
XhmikosR's avatar
XhmikosR committed
1034
    margin-left: 33.3333333333%;
Mark Otto's avatar
dist    
Mark Otto committed
1035
  }
XhmikosR's avatar
XhmikosR committed
1036

XhmikosR's avatar
XhmikosR committed
1037
  .offset-xl-5 {
XhmikosR's avatar
XhmikosR committed
1038
    margin-left: 41.6666666667%;
Mark Otto's avatar
dist    
Mark Otto committed
1039
  }
XhmikosR's avatar
XhmikosR committed
1040

XhmikosR's avatar
XhmikosR committed
1041
  .offset-xl-6 {
Mark Otto's avatar
dist    
Mark Otto committed
1042
1043
    margin-left: 50%;
  }
XhmikosR's avatar
XhmikosR committed
1044

XhmikosR's avatar
XhmikosR committed
1045
  .offset-xl-7 {
XhmikosR's avatar
XhmikosR committed
1046
    margin-left: 58.3333333333%;
Mark Otto's avatar
dist    
Mark Otto committed
1047
  }
XhmikosR's avatar
XhmikosR committed
1048

XhmikosR's avatar
XhmikosR committed
1049
  .offset-xl-8 {
XhmikosR's avatar
XhmikosR committed
1050
    margin-left: 66.6666666667%;
Mark Otto's avatar
dist    
Mark Otto committed
1051
  }
XhmikosR's avatar
XhmikosR committed
1052

XhmikosR's avatar
XhmikosR committed
1053
  .offset-xl-9 {
Mark Otto's avatar
dist    
Mark Otto committed
1054
1055
    margin-left: 75%;
  }
XhmikosR's avatar
XhmikosR committed
1056

XhmikosR's avatar
XhmikosR committed
1057
  .offset-xl-10 {
XhmikosR's avatar
XhmikosR committed
1058
    margin-left: 83.3333333333%;
Mark Otto's avatar
dist    
Mark Otto committed
1059
  }
XhmikosR's avatar
XhmikosR committed
1060

XhmikosR's avatar
XhmikosR committed
1061
  .offset-xl-11 {
XhmikosR's avatar
XhmikosR committed
1062
    margin-left: 91.6666666667%;
Mark Otto's avatar
dist    
Mark Otto committed
1063
  }
XhmikosR's avatar
XhmikosR committed
1064

XhmikosR's avatar
XhmikosR committed
1065
  .g-xl-0,
XhmikosR's avatar
XhmikosR committed
1066
.gx-xl-0 {
XhmikosR's avatar
XhmikosR committed
1067
1068
    --bs-gutter-x: 0;
  }
XhmikosR's avatar
XhmikosR committed
1069

XhmikosR's avatar
XhmikosR committed
1070
  .g-xl-0,
XhmikosR's avatar
XhmikosR committed
1071
.gy-xl-0 {
XhmikosR's avatar
XhmikosR committed
1072
1073
    --bs-gutter-y: 0;
  }
XhmikosR's avatar
XhmikosR committed
1074

XhmikosR's avatar
XhmikosR committed
1075
  .g-xl-1,
XhmikosR's avatar
XhmikosR committed
1076
.gx-xl-1 {
XhmikosR's avatar
XhmikosR committed
1077
1078
    --bs-gutter-x: 0.25rem;
  }
XhmikosR's avatar
XhmikosR committed
1079

XhmikosR's avatar
XhmikosR committed
1080
  .g-xl-1,
XhmikosR's avatar
XhmikosR committed
1081
.gy-xl-1 {
XhmikosR's avatar
XhmikosR committed
1082
1083
    --bs-gutter-y: 0.25rem;
  }
XhmikosR's avatar
XhmikosR committed
1084

XhmikosR's avatar
XhmikosR committed
1085
  .g-xl-2,
XhmikosR's avatar
XhmikosR committed
1086
.gx-xl-2 {
XhmikosR's avatar
XhmikosR committed
1087
1088
    --bs-gutter-x: 0.5rem;
  }
XhmikosR's avatar
XhmikosR committed
1089

XhmikosR's avatar
XhmikosR committed
1090
  .g-xl-2,
XhmikosR's avatar
XhmikosR committed
1091
.gy-xl-2 {
XhmikosR's avatar
XhmikosR committed
1092
1093
    --bs-gutter-y: 0.5rem;
  }
XhmikosR's avatar
XhmikosR committed
1094

XhmikosR's avatar
XhmikosR committed
1095
  .g-xl-3,
XhmikosR's avatar
XhmikosR committed
1096
.gx-xl-3 {
XhmikosR's avatar
XhmikosR committed
1097
1098
    --bs-gutter-x: 1rem;
  }
XhmikosR's avatar
XhmikosR committed
1099

XhmikosR's avatar
XhmikosR committed
1100
  .g-xl-3,
XhmikosR's avatar
XhmikosR committed
1101
.gy-xl-3 {
XhmikosR's avatar
XhmikosR committed
1102
1103
    --bs-gutter-y: 1rem;
  }
XhmikosR's avatar
XhmikosR committed
1104

XhmikosR's avatar
XhmikosR committed
1105
  .g-xl-4,
XhmikosR's avatar
XhmikosR committed
1106
.gx-xl-4 {
XhmikosR's avatar
XhmikosR committed
1107
1108
    --bs-gutter-x: 1.5rem;
  }
XhmikosR's avatar
XhmikosR committed
1109

XhmikosR's avatar
XhmikosR committed
1110
  .g-xl-4,
XhmikosR's avatar
XhmikosR committed
1111
.gy-xl-4 {
XhmikosR's avatar
XhmikosR committed
1112
1113
    --bs-gutter-y: 1.5rem;
  }
XhmikosR's avatar
XhmikosR committed
1114

XhmikosR's avatar
XhmikosR committed
1115
  .g-xl-5,
XhmikosR's avatar
XhmikosR committed
1116
.gx-xl-5 {
XhmikosR's avatar
XhmikosR committed
1117
1118
    --bs-gutter-x: 3rem;
  }
XhmikosR's avatar
XhmikosR committed
1119

XhmikosR's avatar
XhmikosR committed
1120
  .g-xl-5,
XhmikosR's avatar
XhmikosR committed
1121
.gy-xl-5 {
XhmikosR's avatar
XhmikosR committed
1122
1123
    --bs-gutter-y: 3rem;
  }
1124
}
XhmikosR's avatar
XhmikosR committed
1125
1126
@media (min-width: 1400px) {
  .col-xxl {
XhmikosR's avatar
XhmikosR committed
1127
1128
    flex: 1 0 0%;
  }
XhmikosR's avatar
XhmikosR committed
1129

XhmikosR's avatar
XhmikosR committed
1130
  .row-cols-xxl-auto > * {
XhmikosR's avatar
XhmikosR committed
1131
1132
    flex: 0 0 auto;
    width: auto;
Mark Otto's avatar
grunt    
Mark Otto committed
1133
  }
XhmikosR's avatar
XhmikosR committed
1134

XhmikosR's avatar
XhmikosR committed
1135
  .row-cols-xxl-1 > * {
XhmikosR's avatar
XhmikosR committed
1136
1137
    flex: 0 0 auto;
    width: 100%;
XhmikosR's avatar
XhmikosR committed
1138
  }
XhmikosR's avatar
XhmikosR committed
1139

XhmikosR's avatar
XhmikosR committed
1140
  .row-cols-xxl-2 > * {
XhmikosR's avatar
XhmikosR committed
1141
1142
    flex: 0 0 auto;
    width: 50%;
XhmikosR's avatar
XhmikosR committed
1143
  }
XhmikosR's avatar
XhmikosR committed
1144

XhmikosR's avatar
XhmikosR committed
1145
  .row-cols-xxl-3 > * {
XhmikosR's avatar
XhmikosR committed
1146
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
1147
    width: 33.3333333333%;
XhmikosR's avatar
XhmikosR committed
1148
  }
XhmikosR's avatar
XhmikosR committed
1149

XhmikosR's avatar
XhmikosR committed
1150
  .row-cols-xxl-4 > * {
XhmikosR's avatar
XhmikosR committed
1151
1152
    flex: 0 0 auto;
    width: 25%;
XhmikosR's avatar
XhmikosR committed
1153
  }
XhmikosR's avatar
XhmikosR committed
1154

XhmikosR's avatar
XhmikosR committed
1155
  .row-cols-xxl-5 > * {
XhmikosR's avatar
XhmikosR committed
1156
1157
    flex: 0 0 auto;
    width: 20%;
XhmikosR's avatar
XhmikosR committed
1158
  }
XhmikosR's avatar
XhmikosR committed
1159

XhmikosR's avatar
XhmikosR committed
1160
  .row-cols-xxl-6 > * {
XhmikosR's avatar
XhmikosR committed
1161
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
1162
    width: 16.6666666667%;
XhmikosR's avatar
XhmikosR committed
1163
  }
XhmikosR's avatar
XhmikosR committed
1164

XhmikosR's avatar
XhmikosR committed
1165
  .col-xxl-auto {
Mark Otto's avatar
dist    
Mark Otto committed
1166
    flex: 0 0 auto;
Mark Otto's avatar
grunt    
Mark Otto committed
1167
1168
    width: auto;
  }
XhmikosR's avatar
XhmikosR committed
1169

XhmikosR's avatar
XhmikosR committed
1170
  .col-xxl-1 {
XhmikosR's avatar
XhmikosR committed
1171
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
1172
    width: 8.3333333333%;
1173
  }
XhmikosR's avatar
XhmikosR committed
1174

XhmikosR's avatar
XhmikosR committed
1175
  .col-xxl-2 {
XhmikosR's avatar
XhmikosR committed
1176
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
1177
    width: 16.6666666667%;
1178
  }
XhmikosR's avatar
XhmikosR committed
1179

XhmikosR's avatar
XhmikosR committed
1180
  .col-xxl-3 {
XhmikosR's avatar
XhmikosR committed
1181
1182
    flex: 0 0 auto;
    width: 25%;
1183
  }
XhmikosR's avatar
XhmikosR committed
1184

XhmikosR's avatar
XhmikosR committed
1185
  .col-xxl-4 {
XhmikosR's avatar
XhmikosR committed
1186
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
1187
    width: 33.3333333333%;
1188
  }
XhmikosR's avatar
XhmikosR committed
1189

XhmikosR's avatar
XhmikosR committed
1190
  .col-xxl-5 {
XhmikosR's avatar
XhmikosR committed
1191
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
1192
    width: 41.6666666667%;
1193
  }
XhmikosR's avatar
XhmikosR committed
1194

XhmikosR's avatar
XhmikosR committed
1195
  .col-xxl-6 {
XhmikosR's avatar
XhmikosR committed
1196
1197
    flex: 0 0 auto;
    width: 50%;
1198
  }
XhmikosR's avatar
XhmikosR committed
1199

XhmikosR's avatar
XhmikosR committed
1200
  .col-xxl-7 {
XhmikosR's avatar
XhmikosR committed
1201
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
1202
    width: 58.3333333333%;
1203
  }
XhmikosR's avatar
XhmikosR committed
1204

XhmikosR's avatar
XhmikosR committed
1205
  .col-xxl-8 {
XhmikosR's avatar
XhmikosR committed
1206
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
1207
    width: 66.6666666667%;
1208
  }
XhmikosR's avatar
XhmikosR committed
1209

XhmikosR's avatar
XhmikosR committed
1210
  .col-xxl-9 {
XhmikosR's avatar
XhmikosR committed
1211
1212
    flex: 0 0 auto;
    width: 75%;
1213
  }
XhmikosR's avatar
XhmikosR committed
1214

XhmikosR's avatar
XhmikosR committed
1215
  .col-xxl-10 {
XhmikosR's avatar
XhmikosR committed
1216
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
1217
    width: 83.3333333333%;
1218
  }
XhmikosR's avatar
XhmikosR committed
1219

XhmikosR's avatar
XhmikosR committed
1220
  .col-xxl-11 {
XhmikosR's avatar
XhmikosR committed
1221
    flex: 0 0 auto;
XhmikosR's avatar
XhmikosR committed
1222
    width: 91.6666666667%;
1223
  }
XhmikosR's avatar
XhmikosR committed
1224

XhmikosR's avatar
XhmikosR committed
1225
  .col-xxl-12 {
XhmikosR's avatar
XhmikosR committed
1226
1227
    flex: 0 0 auto;
    width: 100%;
1228
  }
XhmikosR's avatar
XhmikosR committed
1229

XhmikosR's avatar
XhmikosR committed
1230
  .offset-xxl-0 {
Mark Otto's avatar
dist    
Mark Otto committed
1231
    margin-left: 0;
Mark Otto's avatar
dist    
Mark Otto committed
1232
  }
XhmikosR's avatar
XhmikosR committed
1233

XhmikosR's avatar
XhmikosR committed
1234
  .offset-xxl-1 {
XhmikosR's avatar
XhmikosR committed
1235
    margin-left: 8.3333333333%;
Mark Otto's avatar
dist    
Mark Otto committed
1236
  }
XhmikosR's avatar
XhmikosR committed
1237

XhmikosR's avatar
XhmikosR committed
1238
  .offset-xxl-2 {
XhmikosR's avatar
XhmikosR committed
1239
    margin-left: 16.6666666667%;
Mark Otto's avatar
dist    
Mark Otto committed
1240
  }
XhmikosR's avatar
XhmikosR committed
1241

XhmikosR's avatar
XhmikosR committed
1242
  .offset-xxl-3 {
Mark Otto's avatar
dist    
Mark Otto committed
1243
1244
    margin-left: 25%;
  }
XhmikosR's avatar
XhmikosR committed
1245

XhmikosR's avatar
XhmikosR committed
1246
  .offset-xxl-4 {
XhmikosR's avatar
XhmikosR committed
1247
    margin-left: 33.3333333333%;
Mark Otto's avatar
dist    
Mark Otto committed
1248
  }
XhmikosR's avatar
XhmikosR committed
1249

XhmikosR's avatar
XhmikosR committed
1250
  .offset-xxl-5 {
XhmikosR's avatar
XhmikosR committed
1251
    margin-left: 41.6666666667%;
Mark Otto's avatar
dist    
Mark Otto committed
1252
  }
XhmikosR's avatar
XhmikosR committed
1253

XhmikosR's avatar
XhmikosR committed
1254
  .offset-xxl-6 {
Mark Otto's avatar
dist    
Mark Otto committed
1255
1256
    margin-left: 50%;
  }
XhmikosR's avatar
XhmikosR committed
1257

XhmikosR's avatar
XhmikosR committed
1258
  .offset-xxl-7 {
XhmikosR's avatar
XhmikosR committed
1259
    margin-left: 58.3333333333%;
Mark Otto's avatar
dist    
Mark Otto committed
1260
  }
XhmikosR's avatar
XhmikosR committed
1261

XhmikosR's avatar
XhmikosR committed
1262
  .offset-xxl-8 {
XhmikosR's avatar
XhmikosR committed
1263
    margin-left: 66.6666666667%;
Mark Otto's avatar
dist    
Mark Otto committed
1264
  }
XhmikosR's avatar
XhmikosR committed
1265

XhmikosR's avatar
XhmikosR committed
1266
  .offset-xxl-9 {
Mark Otto's avatar
dist    
Mark Otto committed
1267
1268
    margin-left: 75%;
  }
XhmikosR's avatar
XhmikosR committed
1269

XhmikosR's avatar
XhmikosR committed
1270
  .offset-xxl-10 {
XhmikosR's avatar
XhmikosR committed
1271
    margin-left: 83.3333333333%;
Mark Otto's avatar
dist    
Mark Otto committed
1272
  }
XhmikosR's avatar
XhmikosR committed
1273

XhmikosR's avatar
XhmikosR committed
1274
  .offset-xxl-11 {
XhmikosR's avatar
XhmikosR committed
1275
    margin-left: 91.6666666667%;
Mark Otto's avatar
dist    
Mark Otto committed
1276
  }
XhmikosR's avatar
XhmikosR committed
1277

XhmikosR's avatar
XhmikosR committed
1278
  .g-xxl-0,
XhmikosR's avatar
XhmikosR committed
1279
.gx-xxl-0 {
XhmikosR's avatar
XhmikosR committed
1280
1281
    --bs-gutter-x: 0;
  }
XhmikosR's avatar
XhmikosR committed
1282

XhmikosR's avatar
XhmikosR committed
1283
  .g-xxl-0,
XhmikosR's avatar
XhmikosR committed
1284
.gy-xxl-0 {
XhmikosR's avatar
XhmikosR committed
1285
1286
    --bs-gutter-y: 0;
  }
XhmikosR's avatar
XhmikosR committed
1287

XhmikosR's avatar
XhmikosR committed
1288
  .g-xxl-1,
XhmikosR's avatar
XhmikosR committed
1289
.gx-xxl-1 {
XhmikosR's avatar
XhmikosR committed
1290
1291
    --bs-gutter-x: 0.25rem;
  }
XhmikosR's avatar
XhmikosR committed
1292

XhmikosR's avatar
XhmikosR committed
1293
  .g-xxl-1,
XhmikosR's avatar
XhmikosR committed
1294
.gy-xxl-1 {
XhmikosR's avatar
XhmikosR committed
1295
1296
    --bs-gutter-y: 0.25rem;
  }
XhmikosR's avatar
XhmikosR committed
1297

XhmikosR's avatar
XhmikosR committed
1298
  .g-xxl-2,
XhmikosR's avatar
XhmikosR committed
1299
.gx-xxl-2 {
XhmikosR's avatar
XhmikosR committed
1300
1301
    --bs-gutter-x: 0.5rem;
  }
XhmikosR's avatar
XhmikosR committed
1302

XhmikosR's avatar
XhmikosR committed
1303
  .g-xxl-2,
XhmikosR's avatar
XhmikosR committed
1304
.gy-xxl-2 {
XhmikosR's avatar
XhmikosR committed
1305
1306
    --bs-gutter-y: 0.5rem;
  }
XhmikosR's avatar
XhmikosR committed
1307

XhmikosR's avatar
XhmikosR committed
1308
  .g-xxl-3,
XhmikosR's avatar
XhmikosR committed
1309
.gx-xxl-3 {
XhmikosR's avatar
XhmikosR committed
1310
1311
    --bs-gutter-x: 1rem;
  }
XhmikosR's avatar
XhmikosR committed
1312

XhmikosR's avatar
XhmikosR committed
1313
  .g-xxl-3,
XhmikosR's avatar
XhmikosR committed
1314
.gy-xxl-3 {
XhmikosR's avatar
XhmikosR committed
1315
1316
    --bs-gutter-y: 1rem;
  }
XhmikosR's avatar
XhmikosR committed
1317

XhmikosR's avatar
XhmikosR committed
1318
  .g-xxl-4,
XhmikosR's avatar
XhmikosR committed
1319
.gx-xxl-4 {
XhmikosR's avatar
XhmikosR committed
1320
1321
    --bs-gutter-x: 1.5rem;
  }
XhmikosR's avatar
XhmikosR committed
1322

XhmikosR's avatar
XhmikosR committed
1323
  .g-xxl-4,
XhmikosR's avatar
XhmikosR committed
1324
.gy-xxl-4 {
XhmikosR's avatar
XhmikosR committed
1325
1326
    --bs-gutter-y: 1.5rem;
  }
XhmikosR's avatar
XhmikosR committed
1327

XhmikosR's avatar
XhmikosR committed
1328
  .g-xxl-5,
XhmikosR's avatar
XhmikosR committed
1329
.gx-xxl-5 {
XhmikosR's avatar
XhmikosR committed
1330
1331
    --bs-gutter-x: 3rem;
  }
XhmikosR's avatar
XhmikosR committed
1332

XhmikosR's avatar
XhmikosR committed
1333
  .g-xxl-5,
XhmikosR's avatar
XhmikosR committed
1334
.gy-xxl-5 {
XhmikosR's avatar
XhmikosR committed
1335
1336
    --bs-gutter-y: 3rem;
  }
1337
}
Mark Otto's avatar
dist    
Mark Otto committed
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

XhmikosR's avatar
XhmikosR committed
1350
1351
1352
1353
.d-grid {
  display: grid !important;
}

Mark Otto's avatar
dist    
Mark Otto committed
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

XhmikosR's avatar
XhmikosR committed
1374
1375
1376
1377
.d-none {
  display: none !important;
}

Mark Otto's avatar
dist    
Mark Otto committed
1378
1379
1380
1381
.flex-fill {
  flex: 1 1 auto !important;
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

Mark Otto's avatar
dist    
Mark Otto committed
1398
1399
1400
1401
1402
1403
1404
1405
.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

XhmikosR's avatar
XhmikosR committed
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

Mark Otto's avatar
grunt    
Mark Otto committed
1426
.justify-content-start {
Mark Otto's avatar
dist    
Mark Otto committed
1427
  justify-content: flex-start !important;
Mark Otto's avatar
grunt    
Mark Otto committed
1428
1429
1430
}

.justify-content-end {
Mark Otto's avatar
dist    
Mark Otto committed
1431
  justify-content: flex-end !important;
Mark Otto's avatar
grunt    
Mark Otto committed
1432
1433
1434
}

.justify-content-center {
Mark Otto's avatar
dist    
Mark Otto committed
1435
  justify-content: center !important;
Mark Otto's avatar
grunt    
Mark Otto committed
1436
1437
1438
}

.justify-content-between {
Mark Otto's avatar
dist    
Mark Otto committed
1439
  justify-content: space-between !important;
Mark Otto's avatar
grunt    
Mark Otto committed
1440
1441
1442
}

.justify-content-around {
Mark Otto's avatar
dist    
Mark Otto committed
1443
  justify-content: space-around !important;
Mark Otto's avatar
grunt    
Mark Otto committed
1444
1445
}

Mark Otto's avatar
Mark Otto committed
1446
1447
1448
1449
.justify-content-evenly {
  justify-content: space-evenly !important;
}

Mark Otto's avatar
grunt    
Mark Otto committed
1450
.align-items-start {
Mark Otto's avatar
dist    
Mark Otto committed
1451
  align-items: flex-start !important;
Mark Otto's avatar
grunt    
Mark Otto committed
1452
1453
1454
}

.align-items-end {
Mark Otto's avatar
dist    
Mark Otto committed
1455
  align-items: flex-end !important;
Mark Otto's avatar
grunt    
Mark Otto committed
1456
1457
1458
}

.align-items-center {
Mark Otto's avatar
dist    
Mark Otto committed
1459
  align-items: center !important;
Mark Otto's avatar
grunt    
Mark Otto committed
1460
1461
1462
}

.align-items-baseline {
Mark Otto's avatar
dist    
Mark Otto committed
1463
  align-items: baseline !important;
Mark Otto's avatar
grunt    
Mark Otto committed
1464
1465
1466
}

.align-items-stretch {
Mark Otto's avatar
dist    
Mark Otto committed
1467
  align-items: stretch !important;
Mark Otto's avatar
grunt    
Mark Otto committed
1468
1469
1470
}

.align-content-start {
Mark Otto's avatar
dist    
Mark Otto committed
1471
  align-content: flex-start !important;
Mark Otto's avatar
grunt    
Mark Otto committed
1472
1473
1474
}

.align-content-end {
Mark Otto's avatar
dist    
Mark Otto committed
1475
  align-content: flex-end !important;
Mark Otto's avatar
grunt    
Mark Otto committed
1476
1477
1478
}

.align-content-center {
Mark Otto's avatar
dist    
Mark Otto committed
1479
  align-content: center !important;
Mark Otto's avatar
grunt    
Mark Otto committed
1480
1481
1482
}

.align-content-between {
Mark Otto's avatar
dist    
Mark Otto committed
1483
  align-content: space-between !important;
Mark Otto's avatar
grunt    
Mark Otto committed
1484
1485
1486
}

.align-content-around {
Mark Otto's avatar
dist    
Mark Otto committed
1487
  align-content: space-around !important;
Mark Otto's avatar
grunt    
Mark Otto committed
1488
1489
1490
}

.align-content-stretch {
Mark Otto's avatar
dist    
Mark Otto committed
1491
  align-content: stretch !important;
Mark Otto's avatar
grunt    
Mark Otto committed
1492
1493
1494
}

.align-self-auto {
Mark Otto's avatar
dist    
Mark Otto committed
1495
  align-self: auto !important;
Mark Otto's avatar
grunt    
Mark Otto committed
1496
1497
1498
}

.align-self-start {
Mark Otto's avatar
dist    
Mark Otto committed
1499
  align-self: flex-start !important;
Mark Otto's avatar
grunt    
Mark Otto committed
1500
1501
1502
}

.align-self-end {
Mark Otto's avatar
dist    
Mark Otto committed
1503
  align-self: flex-end !important;
Mark Otto's avatar
grunt    
Mark Otto committed
1504
1505
1506
}

.align-self-center {
Mark Otto's avatar
dist    
Mark Otto committed
1507
  align-self: center !important;
Mark Otto's avatar
grunt    
Mark Otto committed
1508
1509
1510
}

.align-self-baseline {
Mark Otto's avatar
dist    
Mark Otto committed
1511
  align-self: baseline !important;
Mark Otto's avatar
grunt    
Mark Otto committed
1512
1513
1514
}

.align-self-stretch {
Mark Otto's avatar
dist    
Mark Otto committed
1515
  align-self: stretch !important;
Mark Otto's avatar
grunt    
Mark Otto committed
1516
1517
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1518
1519
.order-first {
  order: -1 !important;
Mark Otto's avatar
grunt    
Mark Otto committed
1520
1521
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1522
1523
.order-0 {
  order: 0 !important;
Mark Otto's avatar
grunt    
Mark Otto committed
1524
1525
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1526
1527
.order-1 {
  order: 1 !important;
Mark Otto's avatar
grunt    
Mark Otto committed
1528
1529
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1530
1531
.order-2 {
  order: 2 !important;
Mark Otto's avatar
grunt    
Mark Otto committed
1532
}
Mark Otto's avatar
dist    
Mark Otto committed
1533

Mark Otto's avatar
dist v5    
Mark Otto committed
1534
1535
.order-3 {
  order: 3 !important;
Mark Otto's avatar
dist    
Mark Otto committed
1536
1537
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1538
1539
.order-4 {
  order: 4 !important;
Mark Otto's avatar
dist    
Mark Otto committed
1540
1541
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1542
1543
.order-5 {
  order: 5 !important;
Mark Otto's avatar
dist    
Mark Otto committed
1544
1545
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1546
1547
.order-last {
  order: 6 !important;
Mark Otto's avatar
dist    
Mark Otto committed
1548
1549
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1550
1551
.m-0 {
  margin: 0 !important;
Mark Otto's avatar
dist    
Mark Otto committed
1552
1553
1554
1555
1556
1557
}

.m-1 {
  margin: 0.25rem !important;
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1558
1559
.m-2 {
  margin: 0.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
1560
1561
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1562
1563
.m-3 {
  margin: 1rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
1564
1565
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1566
1567
.m-4 {
  margin: 1.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
1568
1569
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1570
1571
.m-5 {
  margin: 3rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
1572
1573
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1574
1575
.m-auto {
  margin: auto !important;
Mark Otto's avatar
dist    
Mark Otto committed
1576
1577
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1578
1579
1580
.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
Mark Otto's avatar
dist    
Mark Otto committed
1581
1582
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1583
1584
1585
.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
1586
1587
1588
}

.mx-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
1589
  margin-right: 0.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
1590
1591
1592
1593
1594
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
Mark Otto's avatar
dist v5    
Mark Otto committed
1595
  margin-left: 1rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
1596
1597
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1598
1599
1600
.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
1601
1602
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1603
1604
1605
.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
1606
1607
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1608
1609
1610
.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
Mark Otto's avatar
dist    
Mark Otto committed
1611
1612
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1613
1614
1615
.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
Mark Otto's avatar
dist    
Mark Otto committed
1616
1617
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1618
1619
1620
.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
1621
1622
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1623
1624
1625
.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
1626
1627
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1628
1629
1630
.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
1631
1632
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1633
1634
1635
.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
1636
1637
1638
1639
}

.my-5 {
  margin-top: 3rem !important;
Mark Otto's avatar
dist v5    
Mark Otto committed
1640
  margin-bottom: 3rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
1641
1642
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1643
1644
1645
.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
Mark Otto's avatar
dist    
Mark Otto committed
1646
1647
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1648
1649
.mt-0 {
  margin-top: 0 !important;
Mark Otto's avatar
dist    
Mark Otto committed
1650
1651
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1652
1653
.mt-1 {
  margin-top: 0.25rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
1654
1655
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1656
1657
.mt-2 {
  margin-top: 0.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
1658
1659
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1660
1661
.mt-3 {
  margin-top: 1rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
1662
1663
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1664
1665
.mt-4 {
  margin-top: 1.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
1666
1667
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1668
1669
.mt-5 {
  margin-top: 3rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
1670
1671
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1672
1673
.mt-auto {
  margin-top: auto !important;
Mark Otto's avatar
dist    
Mark Otto committed
1674
1675
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1676
1677
.mr-0 {
  margin-right: 0 !important;
Mark Otto's avatar
dist    
Mark Otto committed
1678
1679
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1680
1681
.mr-1 {
  margin-right: 0.25rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
1682
1683
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1684
1685
.mr-2 {
  margin-right: 0.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
1686
1687
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1688
1689
.mr-3 {
  margin-right: 1rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
1690
1691
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1692
1693
.mr-4 {
  margin-right: 1.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
1694
1695
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1696
1697
.mr-5 {
  margin-right: 3rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
1698
1699
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1700
1701
.mr-auto {
  margin-right: auto !important;
Mark Otto's avatar
dist    
Mark Otto committed
1702
1703
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1704
1705
.mb-0 {
  margin-bottom: 0 !important;
Mark Otto's avatar
dist    
Mark Otto committed
1706
1707
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1708
1709
.mb-1 {
  margin-bottom: 0.25rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
1710
1711
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1712
1713
.mb-2 {
  margin-bottom: 0.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
1714
1715
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1716
1717
.mb-3 {
  margin-bottom: 1rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
1718
1719
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1720
1721
.mb-4 {
  margin-bottom: 1.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
1722
1723
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1724
1725
.mb-5 {
  margin-bottom: 3rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
1726
1727
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1728
1729
.mb-auto {
  margin-bottom: auto !important;
Mark Otto's avatar
dist    
Mark Otto committed
1730
1731
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1732
1733
.ml-0 {
  margin-left: 0 !important;
Mark Otto's avatar
dist    
Mark Otto committed
1734
1735
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1736
1737
.ml-1 {
  margin-left: 0.25rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
1738
1739
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1740
1741
.ml-2 {
  margin-left: 0.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
1742
1743
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1744
1745
.ml-3 {
  margin-left: 1rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
1746
1747
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1748
1749
.ml-4 {
  margin-left: 1.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
1750
1751
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1752
1753
.ml-5 {
  margin-left: 3rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
1754
1755
}

Mark Otto's avatar
dist v5    
Mark Otto committed
1756
1757
.ml-auto {
  margin-left: auto !important;
Mark Otto's avatar
dist    
Mark Otto committed
1758
1759
}

XhmikosR's avatar
XhmikosR committed
1760
1761
.p-0 {
  padding: 0 !important;
Mark Otto's avatar
dist    
Mark Otto committed
1762
1763
}

XhmikosR's avatar
XhmikosR committed
1764
1765
.p-1 {
  padding: 0.25rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
1766
1767
}

XhmikosR's avatar
XhmikosR committed
1768
1769
.p-2 {
  padding: 0.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
1770
1771
}

XhmikosR's avatar
XhmikosR committed
1772
1773
.p-3 {
  padding: 1rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
1774
1775
}

XhmikosR's avatar
XhmikosR committed
1776
1777
.p-4 {
  padding: 1.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
1778
1779
}

XhmikosR's avatar
XhmikosR committed
1780
1781
.p-5 {
  padding: 3rem !important;
Mark Otto's avatar
dist v5    
Mark Otto committed
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pr-1 {
  padding-right: 0.25rem !important;
}

.pr-2 {
  padding-right: 0.5rem !important;
}

.pr-3 {
  padding-right: 1rem !important;
}

.pr-4 {
  padding-right: 1.5rem !important;
}

.pr-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pl-1 {
  padding-left: 0.25rem !important;
}

.pl-2 {
  padding-left: 0.5rem !important;
}

.pl-3 {
  padding-left: 1rem !important;
}

.pl-4 {
  padding-left: 1.5rem !important;
}

.pl-5 {
  padding-left: 3rem !important;
}

XhmikosR's avatar
XhmikosR committed
1940
1941
1942
1943
@media (min-width: 576px) {
  .d-sm-inline {
    display: inline !important;
  }
XhmikosR's avatar
XhmikosR committed
1944

XhmikosR's avatar
XhmikosR committed
1945
1946
1947
  .d-sm-inline-block {
    display: inline-block !important;
  }
XhmikosR's avatar
XhmikosR committed
1948

XhmikosR's avatar
XhmikosR committed
1949
1950
1951
  .d-sm-block {
    display: block !important;
  }
XhmikosR's avatar
XhmikosR committed
1952
1953
1954
1955
1956

  .d-sm-grid {
    display: grid !important;
  }

XhmikosR's avatar
XhmikosR committed
1957
1958
1959
  .d-sm-table {
    display: table !important;
  }
XhmikosR's avatar
XhmikosR committed
1960

XhmikosR's avatar
XhmikosR committed
1961
1962
1963
  .d-sm-table-row {
    display: table-row !important;
  }
XhmikosR's avatar
XhmikosR committed
1964

XhmikosR's avatar
XhmikosR committed
1965
1966
1967
  .d-sm-table-cell {
    display: table-cell !important;
  }
XhmikosR's avatar
XhmikosR committed
1968

XhmikosR's avatar
XhmikosR committed
1969
1970
1971
  .d-sm-flex {
    display: flex !important;
  }
XhmikosR's avatar
XhmikosR committed
1972

XhmikosR's avatar
XhmikosR committed
1973
1974
1975
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
XhmikosR's avatar
XhmikosR committed
1976

XhmikosR's avatar
XhmikosR committed
1977
1978
1979
  .d-sm-none {
    display: none !important;
  }
XhmikosR's avatar
XhmikosR committed
1980

XhmikosR's avatar
XhmikosR committed
1981
1982
1983
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
XhmikosR's avatar
XhmikosR committed
1984

XhmikosR's avatar
XhmikosR committed
1985
1986
1987
  .flex-sm-row {
    flex-direction: row !important;
  }
XhmikosR's avatar
XhmikosR committed
1988

XhmikosR's avatar
XhmikosR committed
1989
1990
1991
  .flex-sm-column {
    flex-direction: column !important;
  }
XhmikosR's avatar
XhmikosR committed
1992

XhmikosR's avatar
XhmikosR committed
1993
1994
1995
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
XhmikosR's avatar
XhmikosR committed
1996

XhmikosR's avatar
XhmikosR committed
1997
1998
1999
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
XhmikosR's avatar
XhmikosR committed
2000

XhmikosR's avatar
XhmikosR committed
2001
2002
2003
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
2004

XhmikosR's avatar
XhmikosR committed
2005
2006
2007
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
XhmikosR's avatar
XhmikosR committed
2008

XhmikosR's avatar
XhmikosR committed
2009
2010
2011
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
2012

XhmikosR's avatar
XhmikosR committed
2013
2014
2015
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
XhmikosR's avatar
XhmikosR committed
2016

XhmikosR's avatar
XhmikosR committed
2017
2018
2019
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
XhmikosR's avatar
XhmikosR committed
2020

XhmikosR's avatar
XhmikosR committed
2021
2022
2023
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
XhmikosR's avatar
XhmikosR committed
2024

XhmikosR's avatar
XhmikosR committed
2025
2026
2027
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
XhmikosR's avatar
XhmikosR committed
2028

XhmikosR's avatar
XhmikosR committed
2029
2030
2031
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
XhmikosR's avatar
XhmikosR committed
2032

XhmikosR's avatar
XhmikosR committed
2033
2034
2035
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
XhmikosR's avatar
XhmikosR committed
2036

XhmikosR's avatar
XhmikosR committed
2037
2038
2039
  .justify-content-sm-center {
    justify-content: center !important;
  }
XhmikosR's avatar
XhmikosR committed
2040

XhmikosR's avatar
XhmikosR committed
2041
2042
2043
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
XhmikosR's avatar
XhmikosR committed
2044

XhmikosR's avatar
XhmikosR committed
2045
2046
2047
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
XhmikosR's avatar
XhmikosR committed
2048

Mark Otto's avatar
Mark Otto committed
2049
2050
2051
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
XhmikosR's avatar
XhmikosR committed
2052

XhmikosR's avatar
XhmikosR committed
2053
2054
2055
  .align-items-sm-start {
    align-items: flex-start !important;
  }
XhmikosR's avatar
XhmikosR committed
2056

XhmikosR's avatar
XhmikosR committed
2057
2058
2059
  .align-items-sm-end {
    align-items: flex-end !important;
  }
XhmikosR's avatar
XhmikosR committed
2060

XhmikosR's avatar
XhmikosR committed
2061
2062
2063
  .align-items-sm-center {
    align-items: center !important;
  }
XhmikosR's avatar
XhmikosR committed
2064

XhmikosR's avatar
XhmikosR committed
2065
2066
2067
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
XhmikosR's avatar
XhmikosR committed
2068

XhmikosR's avatar
XhmikosR committed
2069
2070
2071
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
XhmikosR's avatar
XhmikosR committed
2072

XhmikosR's avatar
XhmikosR committed
2073
2074
2075
  .align-content-sm-start {
    align-content: flex-start !important;
  }
XhmikosR's avatar
XhmikosR committed
2076

XhmikosR's avatar
XhmikosR committed
2077
2078
2079
  .align-content-sm-end {
    align-content: flex-end !important;
  }
XhmikosR's avatar
XhmikosR committed
2080

XhmikosR's avatar
XhmikosR committed
2081
2082
2083
  .align-content-sm-center {
    align-content: center !important;
  }
XhmikosR's avatar
XhmikosR committed
2084

XhmikosR's avatar
XhmikosR committed
2085
2086
2087
  .align-content-sm-between {
    align-content: space-between !important;
  }
XhmikosR's avatar
XhmikosR committed
2088

XhmikosR's avatar
XhmikosR committed
2089
2090
2091
  .align-content-sm-around {
    align-content: space-around !important;
  }
XhmikosR's avatar
XhmikosR committed
2092

XhmikosR's avatar
XhmikosR committed
2093
2094
2095
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
XhmikosR's avatar
XhmikosR committed
2096

XhmikosR's avatar
XhmikosR committed
2097
2098
2099
  .align-self-sm-auto {
    align-self: auto !important;
  }
XhmikosR's avatar
XhmikosR committed
2100

XhmikosR's avatar
XhmikosR committed
2101
2102
2103
  .align-self-sm-start {
    align-self: flex-start !important;
  }
XhmikosR's avatar
XhmikosR committed
2104

XhmikosR's avatar
XhmikosR committed
2105
2106
2107
  .align-self-sm-end {
    align-self: flex-end !important;
  }
XhmikosR's avatar
XhmikosR committed
2108

XhmikosR's avatar
XhmikosR committed
2109
2110
2111
  .align-self-sm-center {
    align-self: center !important;
  }
XhmikosR's avatar
XhmikosR committed
2112

XhmikosR's avatar
XhmikosR committed
2113
2114
2115
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
XhmikosR's avatar
XhmikosR committed
2116

XhmikosR's avatar
XhmikosR committed
2117
2118
2119
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
XhmikosR's avatar
XhmikosR committed
2120

XhmikosR's avatar
XhmikosR committed
2121
2122
2123
  .order-sm-first {
    order: -1 !important;
  }
XhmikosR's avatar
XhmikosR committed
2124

XhmikosR's avatar
XhmikosR committed
2125
2126
2127
  .order-sm-0 {
    order: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
2128

XhmikosR's avatar
XhmikosR committed
2129
2130
2131
  .order-sm-1 {
    order: 1 !important;
  }
XhmikosR's avatar
XhmikosR committed
2132

XhmikosR's avatar
XhmikosR committed
2133
2134
2135
  .order-sm-2 {
    order: 2 !important;
  }
XhmikosR's avatar
XhmikosR committed
2136

XhmikosR's avatar
XhmikosR committed
2137
2138
2139
  .order-sm-3 {
    order: 3 !important;
  }
XhmikosR's avatar
XhmikosR committed
2140

XhmikosR's avatar
XhmikosR committed
2141
2142
2143
  .order-sm-4 {
    order: 4 !important;
  }
XhmikosR's avatar
XhmikosR committed
2144

XhmikosR's avatar
XhmikosR committed
2145
2146
2147
  .order-sm-5 {
    order: 5 !important;
  }
XhmikosR's avatar
XhmikosR committed
2148

XhmikosR's avatar
XhmikosR committed
2149
2150
2151
  .order-sm-last {
    order: 6 !important;
  }
XhmikosR's avatar
XhmikosR committed
2152

XhmikosR's avatar
XhmikosR committed
2153
2154
2155
  .m-sm-0 {
    margin: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
2156

XhmikosR's avatar
XhmikosR committed
2157
2158
2159
  .m-sm-1 {
    margin: 0.25rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2160

XhmikosR's avatar
XhmikosR committed
2161
2162
2163
  .m-sm-2 {
    margin: 0.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2164

XhmikosR's avatar
XhmikosR committed
2165
2166
2167
  .m-sm-3 {
    margin: 1rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2168

XhmikosR's avatar
XhmikosR committed
2169
2170
2171
  .m-sm-4 {
    margin: 1.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2172

XhmikosR's avatar
XhmikosR committed
2173
2174
2175
  .m-sm-5 {
    margin: 3rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2176

XhmikosR's avatar
XhmikosR committed
2177
2178
2179
  .m-sm-auto {
    margin: auto !important;
  }
XhmikosR's avatar
XhmikosR committed
2180

XhmikosR's avatar
XhmikosR committed
2181
2182
2183
2184
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
2185

XhmikosR's avatar
XhmikosR committed
2186
2187
2188
2189
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2190

XhmikosR's avatar
XhmikosR committed
2191
2192
2193
2194
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2195

XhmikosR's avatar
XhmikosR committed
2196
2197
2198
2199
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2200

XhmikosR's avatar
XhmikosR committed
2201
2202
2203
2204
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2205

XhmikosR's avatar
XhmikosR committed
2206
2207
2208
2209
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2210

XhmikosR's avatar
XhmikosR committed
2211
2212
2213
2214
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
XhmikosR's avatar
XhmikosR committed
2215

XhmikosR's avatar
XhmikosR committed
2216
2217
2218
2219
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
2220

XhmikosR's avatar
XhmikosR committed
2221
2222
2223
2224
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2225

XhmikosR's avatar
XhmikosR committed
2226
2227
2228
2229
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2230

XhmikosR's avatar
XhmikosR committed
2231
2232
2233
2234
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2235

XhmikosR's avatar
XhmikosR committed
2236
2237
2238
2239
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2240

XhmikosR's avatar
XhmikosR committed
2241
2242
2243
2244
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2245

XhmikosR's avatar
XhmikosR committed
2246
2247
2248
2249
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
XhmikosR's avatar
XhmikosR committed
2250

XhmikosR's avatar
XhmikosR committed
2251
2252
2253
  .mt-sm-0 {
    margin-top: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
2254

XhmikosR's avatar
XhmikosR committed
2255
2256
2257
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2258

XhmikosR's avatar
XhmikosR committed
2259
2260
2261
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2262

XhmikosR's avatar
XhmikosR committed
2263
2264
2265
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2266

XhmikosR's avatar
XhmikosR committed
2267
2268
2269
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2270

XhmikosR's avatar
XhmikosR committed
2271
2272
2273
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2274

XhmikosR's avatar
XhmikosR committed
2275
2276
2277
  .mt-sm-auto {
    margin-top: auto !important;
  }
XhmikosR's avatar
XhmikosR committed
2278

XhmikosR's avatar
XhmikosR committed
2279
2280
2281
  .mr-sm-0 {
    margin-right: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
2282

XhmikosR's avatar
XhmikosR committed
2283
2284
2285
  .mr-sm-1 {
    margin-right: 0.25rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2286

XhmikosR's avatar
XhmikosR committed
2287
2288
2289
  .mr-sm-2 {
    margin-right: 0.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2290

XhmikosR's avatar
XhmikosR committed
2291
2292
2293
  .mr-sm-3 {
    margin-right: 1rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2294

XhmikosR's avatar
XhmikosR committed
2295
2296
2297
  .mr-sm-4 {
    margin-right: 1.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2298

XhmikosR's avatar
XhmikosR committed
2299
2300
2301
  .mr-sm-5 {
    margin-right: 3rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2302

XhmikosR's avatar
XhmikosR committed
2303
2304
2305
  .mr-sm-auto {
    margin-right: auto !important;
  }
XhmikosR's avatar
XhmikosR committed
2306

XhmikosR's avatar
XhmikosR committed
2307
2308
2309
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
2310

XhmikosR's avatar
XhmikosR committed
2311
2312
2313
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2314

XhmikosR's avatar
XhmikosR committed
2315
2316
2317
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2318

XhmikosR's avatar
XhmikosR committed
2319
2320
2321
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2322

XhmikosR's avatar
XhmikosR committed
2323
2324
2325
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2326

XhmikosR's avatar
XhmikosR committed
2327
2328
2329
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2330

XhmikosR's avatar
XhmikosR committed
2331
2332
2333
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
XhmikosR's avatar
XhmikosR committed
2334

XhmikosR's avatar
XhmikosR committed
2335
2336
2337
  .ml-sm-0 {
    margin-left: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
2338

XhmikosR's avatar
XhmikosR committed
2339
2340
2341
  .ml-sm-1 {
    margin-left: 0.25rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2342

XhmikosR's avatar
XhmikosR committed
2343
2344
2345
  .ml-sm-2 {
    margin-left: 0.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2346

XhmikosR's avatar
XhmikosR committed
2347
2348
2349
  .ml-sm-3 {
    margin-left: 1rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2350

XhmikosR's avatar
XhmikosR committed
2351
2352
2353
  .ml-sm-4 {
    margin-left: 1.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2354

XhmikosR's avatar
XhmikosR committed
2355
2356
2357
  .ml-sm-5 {
    margin-left: 3rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2358

XhmikosR's avatar
XhmikosR committed
2359
2360
2361
  .ml-sm-auto {
    margin-left: auto !important;
  }
XhmikosR's avatar
XhmikosR committed
2362

XhmikosR's avatar
XhmikosR committed
2363
2364
2365
  .p-sm-0 {
    padding: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
2366

XhmikosR's avatar
XhmikosR committed
2367
2368
2369
  .p-sm-1 {
    padding: 0.25rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2370

XhmikosR's avatar
XhmikosR committed
2371
2372
2373
  .p-sm-2 {
    padding: 0.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2374

XhmikosR's avatar
XhmikosR committed
2375
2376
2377
  .p-sm-3 {
    padding: 1rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2378

XhmikosR's avatar
XhmikosR committed
2379
2380
2381
  .p-sm-4 {
    padding: 1.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2382

XhmikosR's avatar
XhmikosR committed
2383
2384
2385
  .p-sm-5 {
    padding: 3rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2386

XhmikosR's avatar
XhmikosR committed
2387
2388
2389
2390
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
2391

XhmikosR's avatar
XhmikosR committed
2392
2393
2394
2395
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2396

XhmikosR's avatar
XhmikosR committed
2397
2398
2399
2400
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2401

XhmikosR's avatar
XhmikosR committed
2402
2403
2404
2405
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2406

XhmikosR's avatar
XhmikosR committed
2407
2408
2409
2410
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2411

XhmikosR's avatar
XhmikosR committed
2412
2413
2414
2415
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2416

XhmikosR's avatar
XhmikosR committed
2417
2418
2419
2420
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
2421

XhmikosR's avatar
XhmikosR committed
2422
2423
2424
2425
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2426

XhmikosR's avatar
XhmikosR committed
2427
2428
2429
2430
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2431

XhmikosR's avatar
XhmikosR committed
2432
2433
2434
2435
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2436

XhmikosR's avatar
XhmikosR committed
2437
2438
2439
2440
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2441

XhmikosR's avatar
XhmikosR committed
2442
2443
2444
2445
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2446

XhmikosR's avatar
XhmikosR committed
2447
2448
2449
  .pt-sm-0 {
    padding-top: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
2450

XhmikosR's avatar
XhmikosR committed
2451
2452
2453
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2454

XhmikosR's avatar
XhmikosR committed
2455
2456
2457
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2458

XhmikosR's avatar
XhmikosR committed
2459
2460
2461
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2462

XhmikosR's avatar
XhmikosR committed
2463
2464
2465
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2466

XhmikosR's avatar
XhmikosR committed
2467
2468
2469
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2470

XhmikosR's avatar
XhmikosR committed
2471
2472
2473
  .pr-sm-0 {
    padding-right: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
2474

XhmikosR's avatar
XhmikosR committed
2475
2476
2477
  .pr-sm-1 {
    padding-right: 0.25rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2478

XhmikosR's avatar
XhmikosR committed
2479
2480
2481
  .pr-sm-2 {
    padding-right: 0.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2482

XhmikosR's avatar
XhmikosR committed
2483
2484
2485
  .pr-sm-3 {
    padding-right: 1rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2486

XhmikosR's avatar
XhmikosR committed
2487
2488
2489
  .pr-sm-4 {
    padding-right: 1.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2490

XhmikosR's avatar
XhmikosR committed
2491
2492
2493
  .pr-sm-5 {
    padding-right: 3rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2494

XhmikosR's avatar
XhmikosR committed
2495
2496
2497
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
2498

XhmikosR's avatar
XhmikosR committed
2499
2500
2501
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2502

XhmikosR's avatar
XhmikosR committed
2503
2504
2505
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2506

XhmikosR's avatar
XhmikosR committed
2507
2508
2509
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2510

XhmikosR's avatar
XhmikosR committed
2511
2512
2513
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2514

XhmikosR's avatar
XhmikosR committed
2515
2516
2517
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2518

XhmikosR's avatar
XhmikosR committed
2519
2520
2521
  .pl-sm-0 {
    padding-left: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
2522

XhmikosR's avatar
XhmikosR committed
2523
2524
2525
  .pl-sm-1 {
    padding-left: 0.25rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2526

XhmikosR's avatar
XhmikosR committed
2527
2528
2529
  .pl-sm-2 {
    padding-left: 0.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2530

XhmikosR's avatar
XhmikosR committed
2531
2532
2533
  .pl-sm-3 {
    padding-left: 1rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2534

XhmikosR's avatar
XhmikosR committed
2535
2536
2537
  .pl-sm-4 {
    padding-left: 1.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2538

XhmikosR's avatar
XhmikosR committed
2539
2540
2541
2542
2543
2544
  .pl-sm-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 768px) {
  .d-md-inline {
Mark Otto's avatar
dist v5    
Mark Otto committed
2545
2546
    display: inline !important;
  }
XhmikosR's avatar
XhmikosR committed
2547

XhmikosR's avatar
XhmikosR committed
2548
  .d-md-inline-block {
Mark Otto's avatar
dist v5    
Mark Otto committed
2549
2550
    display: inline-block !important;
  }
XhmikosR's avatar
XhmikosR committed
2551

XhmikosR's avatar
XhmikosR committed
2552
  .d-md-block {
Mark Otto's avatar
dist v5    
Mark Otto committed
2553
2554
    display: block !important;
  }
XhmikosR's avatar
XhmikosR committed
2555
2556
2557
2558
2559

  .d-md-grid {
    display: grid !important;
  }

XhmikosR's avatar
XhmikosR committed
2560
  .d-md-table {
Mark Otto's avatar
dist v5    
Mark Otto committed
2561
2562
    display: table !important;
  }
XhmikosR's avatar
XhmikosR committed
2563

XhmikosR's avatar
XhmikosR committed
2564
  .d-md-table-row {
Mark Otto's avatar
dist v5    
Mark Otto committed
2565
2566
    display: table-row !important;
  }
XhmikosR's avatar
XhmikosR committed
2567

XhmikosR's avatar
XhmikosR committed
2568
  .d-md-table-cell {
Mark Otto's avatar
dist v5    
Mark Otto committed
2569
2570
    display: table-cell !important;
  }
XhmikosR's avatar
XhmikosR committed
2571

XhmikosR's avatar
XhmikosR committed
2572
  .d-md-flex {
Mark Otto's avatar
dist v5    
Mark Otto committed
2573
2574
    display: flex !important;
  }
XhmikosR's avatar
XhmikosR committed
2575

XhmikosR's avatar
XhmikosR committed
2576
  .d-md-inline-flex {
Mark Otto's avatar
dist v5    
Mark Otto committed
2577
2578
    display: inline-flex !important;
  }
XhmikosR's avatar
XhmikosR committed
2579

XhmikosR's avatar
XhmikosR committed
2580
2581
2582
  .d-md-none {
    display: none !important;
  }
XhmikosR's avatar
XhmikosR committed
2583

XhmikosR's avatar
XhmikosR committed
2584
  .flex-md-fill {
Mark Otto's avatar
dist v5    
Mark Otto committed
2585
2586
    flex: 1 1 auto !important;
  }
XhmikosR's avatar
XhmikosR committed
2587

XhmikosR's avatar
XhmikosR committed
2588
  .flex-md-row {
Mark Otto's avatar
dist v5    
Mark Otto committed
2589
2590
    flex-direction: row !important;
  }
XhmikosR's avatar
XhmikosR committed
2591

XhmikosR's avatar
XhmikosR committed
2592
  .flex-md-column {
Mark Otto's avatar
dist v5    
Mark Otto committed
2593
2594
    flex-direction: column !important;
  }
XhmikosR's avatar
XhmikosR committed
2595

XhmikosR's avatar
XhmikosR committed
2596
  .flex-md-row-reverse {
Mark Otto's avatar
dist v5    
Mark Otto committed
2597
2598
    flex-direction: row-reverse !important;
  }
XhmikosR's avatar
XhmikosR committed
2599

XhmikosR's avatar
XhmikosR committed
2600
  .flex-md-column-reverse {
Mark Otto's avatar
dist v5    
Mark Otto committed
2601
2602
    flex-direction: column-reverse !important;
  }
XhmikosR's avatar
XhmikosR committed
2603

XhmikosR's avatar
XhmikosR committed
2604
  .flex-md-grow-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2605
2606
    flex-grow: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
2607

XhmikosR's avatar
XhmikosR committed
2608
  .flex-md-grow-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2609
2610
    flex-grow: 1 !important;
  }
XhmikosR's avatar
XhmikosR committed
2611

XhmikosR's avatar
XhmikosR committed
2612
2613
2614
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
2615

XhmikosR's avatar
XhmikosR committed
2616
2617
2618
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
XhmikosR's avatar
XhmikosR committed
2619

XhmikosR's avatar
XhmikosR committed
2620
2621
2622
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
XhmikosR's avatar
XhmikosR committed
2623

XhmikosR's avatar
XhmikosR committed
2624
2625
2626
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
XhmikosR's avatar
XhmikosR committed
2627

XhmikosR's avatar
XhmikosR committed
2628
2629
2630
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
XhmikosR's avatar
XhmikosR committed
2631

XhmikosR's avatar
XhmikosR committed
2632
  .justify-content-md-start {
Mark Otto's avatar
dist v5    
Mark Otto committed
2633
2634
    justify-content: flex-start !important;
  }
XhmikosR's avatar
XhmikosR committed
2635

XhmikosR's avatar
XhmikosR committed
2636
  .justify-content-md-end {
Mark Otto's avatar
dist v5    
Mark Otto committed
2637
2638
    justify-content: flex-end !important;
  }
XhmikosR's avatar
XhmikosR committed
2639

XhmikosR's avatar
XhmikosR committed
2640
  .justify-content-md-center {
Mark Otto's avatar
dist v5    
Mark Otto committed
2641
2642
    justify-content: center !important;
  }
XhmikosR's avatar
XhmikosR committed
2643

XhmikosR's avatar
XhmikosR committed
2644
  .justify-content-md-between {
Mark Otto's avatar
dist v5    
Mark Otto committed
2645
2646
    justify-content: space-between !important;
  }
XhmikosR's avatar
XhmikosR committed
2647

XhmikosR's avatar
XhmikosR committed
2648
  .justify-content-md-around {
Mark Otto's avatar
dist v5    
Mark Otto committed
2649
2650
    justify-content: space-around !important;
  }
XhmikosR's avatar
XhmikosR committed
2651

Mark Otto's avatar
Mark Otto committed
2652
2653
2654
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
XhmikosR's avatar
XhmikosR committed
2655

XhmikosR's avatar
XhmikosR committed
2656
  .align-items-md-start {
Mark Otto's avatar
dist v5    
Mark Otto committed
2657
2658
    align-items: flex-start !important;
  }
XhmikosR's avatar
XhmikosR committed
2659

XhmikosR's avatar
XhmikosR committed
2660
  .align-items-md-end {
Mark Otto's avatar
dist v5    
Mark Otto committed
2661
2662
    align-items: flex-end !important;
  }
XhmikosR's avatar
XhmikosR committed
2663

XhmikosR's avatar
XhmikosR committed
2664
  .align-items-md-center {
Mark Otto's avatar
dist v5    
Mark Otto committed
2665
2666
    align-items: center !important;
  }
XhmikosR's avatar
XhmikosR committed
2667

XhmikosR's avatar
XhmikosR committed
2668
  .align-items-md-baseline {
Mark Otto's avatar
dist v5    
Mark Otto committed
2669
2670
    align-items: baseline !important;
  }
XhmikosR's avatar
XhmikosR committed
2671

XhmikosR's avatar
XhmikosR committed
2672
  .align-items-md-stretch {
Mark Otto's avatar
dist v5    
Mark Otto committed
2673
2674
    align-items: stretch !important;
  }
XhmikosR's avatar
XhmikosR committed
2675

XhmikosR's avatar
XhmikosR committed
2676
  .align-content-md-start {
Mark Otto's avatar
dist v5    
Mark Otto committed
2677
2678
    align-content: flex-start !important;
  }
XhmikosR's avatar
XhmikosR committed
2679

XhmikosR's avatar
XhmikosR committed
2680
  .align-content-md-end {
Mark Otto's avatar
dist v5    
Mark Otto committed
2681
2682
    align-content: flex-end !important;
  }
XhmikosR's avatar
XhmikosR committed
2683

XhmikosR's avatar
XhmikosR committed
2684
  .align-content-md-center {
Mark Otto's avatar
dist v5    
Mark Otto committed
2685
2686
    align-content: center !important;
  }
XhmikosR's avatar
XhmikosR committed
2687

XhmikosR's avatar
XhmikosR committed
2688
  .align-content-md-between {
Mark Otto's avatar
dist v5    
Mark Otto committed
2689
2690
    align-content: space-between !important;
  }
XhmikosR's avatar
XhmikosR committed
2691

XhmikosR's avatar
XhmikosR committed
2692
  .align-content-md-around {
Mark Otto's avatar
dist v5    
Mark Otto committed
2693
2694
    align-content: space-around !important;
  }
XhmikosR's avatar
XhmikosR committed
2695

XhmikosR's avatar
XhmikosR committed
2696
  .align-content-md-stretch {
Mark Otto's avatar
dist v5    
Mark Otto committed
2697
2698
    align-content: stretch !important;
  }
XhmikosR's avatar
XhmikosR committed
2699

XhmikosR's avatar
XhmikosR committed
2700
  .align-self-md-auto {
Mark Otto's avatar
dist v5    
Mark Otto committed
2701
2702
    align-self: auto !important;
  }
XhmikosR's avatar
XhmikosR committed
2703

XhmikosR's avatar
XhmikosR committed
2704
  .align-self-md-start {
Mark Otto's avatar
dist v5    
Mark Otto committed
2705
2706
    align-self: flex-start !important;
  }
XhmikosR's avatar
XhmikosR committed
2707

XhmikosR's avatar
XhmikosR committed
2708
  .align-self-md-end {
Mark Otto's avatar
dist v5    
Mark Otto committed
2709
2710
    align-self: flex-end !important;
  }
XhmikosR's avatar
XhmikosR committed
2711

XhmikosR's avatar
XhmikosR committed
2712
  .align-self-md-center {
Mark Otto's avatar
dist v5    
Mark Otto committed
2713
2714
    align-self: center !important;
  }
XhmikosR's avatar
XhmikosR committed
2715

XhmikosR's avatar
XhmikosR committed
2716
  .align-self-md-baseline {
Mark Otto's avatar
dist v5    
Mark Otto committed
2717
2718
    align-self: baseline !important;
  }
XhmikosR's avatar
XhmikosR committed
2719

XhmikosR's avatar
XhmikosR committed
2720
  .align-self-md-stretch {
Mark Otto's avatar
dist v5    
Mark Otto committed
2721
2722
    align-self: stretch !important;
  }
XhmikosR's avatar
XhmikosR committed
2723

XhmikosR's avatar
XhmikosR committed
2724
  .order-md-first {
Mark Otto's avatar
dist v5    
Mark Otto committed
2725
2726
    order: -1 !important;
  }
XhmikosR's avatar
XhmikosR committed
2727

XhmikosR's avatar
XhmikosR committed
2728
  .order-md-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2729
2730
    order: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
2731

XhmikosR's avatar
XhmikosR committed
2732
  .order-md-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2733
2734
    order: 1 !important;
  }
XhmikosR's avatar
XhmikosR committed
2735

XhmikosR's avatar
XhmikosR committed
2736
  .order-md-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2737
2738
    order: 2 !important;
  }
XhmikosR's avatar
XhmikosR committed
2739

XhmikosR's avatar
XhmikosR committed
2740
  .order-md-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2741
2742
    order: 3 !important;
  }
XhmikosR's avatar
XhmikosR committed
2743

XhmikosR's avatar
XhmikosR committed
2744
  .order-md-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2745
2746
    order: 4 !important;
  }
XhmikosR's avatar
XhmikosR committed
2747

XhmikosR's avatar
XhmikosR committed
2748
  .order-md-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2749
2750
    order: 5 !important;
  }
XhmikosR's avatar
XhmikosR committed
2751

XhmikosR's avatar
XhmikosR committed
2752
  .order-md-last {
Mark Otto's avatar
dist v5    
Mark Otto committed
2753
2754
    order: 6 !important;
  }
XhmikosR's avatar
XhmikosR committed
2755

XhmikosR's avatar
XhmikosR committed
2756
  .m-md-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2757
2758
    margin: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
2759

XhmikosR's avatar
XhmikosR committed
2760
  .m-md-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2761
2762
    margin: 0.25rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2763

XhmikosR's avatar
XhmikosR committed
2764
  .m-md-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2765
2766
    margin: 0.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2767

XhmikosR's avatar
XhmikosR committed
2768
  .m-md-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2769
2770
    margin: 1rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2771

XhmikosR's avatar
XhmikosR committed
2772
  .m-md-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2773
2774
    margin: 1.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2775

XhmikosR's avatar
XhmikosR committed
2776
  .m-md-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2777
2778
    margin: 3rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2779

XhmikosR's avatar
XhmikosR committed
2780
  .m-md-auto {
Mark Otto's avatar
dist v5    
Mark Otto committed
2781
2782
    margin: auto !important;
  }
XhmikosR's avatar
XhmikosR committed
2783

XhmikosR's avatar
XhmikosR committed
2784
  .mx-md-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2785
2786
2787
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
2788

XhmikosR's avatar
XhmikosR committed
2789
  .mx-md-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2790
2791
2792
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2793

XhmikosR's avatar
XhmikosR committed
2794
  .mx-md-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2795
2796
2797
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2798

XhmikosR's avatar
XhmikosR committed
2799
  .mx-md-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2800
2801
2802
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2803

XhmikosR's avatar
XhmikosR committed
2804
  .mx-md-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2805
2806
2807
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2808

XhmikosR's avatar
XhmikosR committed
2809
  .mx-md-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2810
2811
2812
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2813

XhmikosR's avatar
XhmikosR committed
2814
  .mx-md-auto {
Mark Otto's avatar
dist v5    
Mark Otto committed
2815
2816
2817
    margin-right: auto !important;
    margin-left: auto !important;
  }
XhmikosR's avatar
XhmikosR committed
2818

XhmikosR's avatar
XhmikosR committed
2819
  .my-md-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2820
2821
2822
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
2823

XhmikosR's avatar
XhmikosR committed
2824
  .my-md-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2825
2826
2827
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2828

XhmikosR's avatar
XhmikosR committed
2829
  .my-md-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2830
2831
2832
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2833

XhmikosR's avatar
XhmikosR committed
2834
  .my-md-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2835
2836
2837
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2838

XhmikosR's avatar
XhmikosR committed
2839
  .my-md-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2840
2841
2842
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2843

XhmikosR's avatar
XhmikosR committed
2844
  .my-md-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2845
2846
2847
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2848

XhmikosR's avatar
XhmikosR committed
2849
  .my-md-auto {
Mark Otto's avatar
dist v5    
Mark Otto committed
2850
2851
2852
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
XhmikosR's avatar
XhmikosR committed
2853

XhmikosR's avatar
XhmikosR committed
2854
  .mt-md-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2855
2856
    margin-top: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
2857

XhmikosR's avatar
XhmikosR committed
2858
  .mt-md-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2859
2860
    margin-top: 0.25rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2861

XhmikosR's avatar
XhmikosR committed
2862
  .mt-md-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2863
2864
    margin-top: 0.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2865

XhmikosR's avatar
XhmikosR committed
2866
  .mt-md-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2867
2868
    margin-top: 1rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2869

XhmikosR's avatar
XhmikosR committed
2870
  .mt-md-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2871
2872
    margin-top: 1.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2873

XhmikosR's avatar
XhmikosR committed
2874
  .mt-md-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2875
2876
    margin-top: 3rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2877

XhmikosR's avatar
XhmikosR committed
2878
  .mt-md-auto {
Mark Otto's avatar
dist v5    
Mark Otto committed
2879
2880
    margin-top: auto !important;
  }
XhmikosR's avatar
XhmikosR committed
2881

XhmikosR's avatar
XhmikosR committed
2882
  .mr-md-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2883
2884
    margin-right: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
2885

XhmikosR's avatar
XhmikosR committed
2886
  .mr-md-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2887
2888
    margin-right: 0.25rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2889

XhmikosR's avatar
XhmikosR committed
2890
  .mr-md-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2891
2892
    margin-right: 0.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2893

XhmikosR's avatar
XhmikosR committed
2894
  .mr-md-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2895
2896
    margin-right: 1rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2897

XhmikosR's avatar
XhmikosR committed
2898
  .mr-md-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2899
2900
    margin-right: 1.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2901

XhmikosR's avatar
XhmikosR committed
2902
  .mr-md-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2903
2904
    margin-right: 3rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2905

XhmikosR's avatar
XhmikosR committed
2906
  .mr-md-auto {
Mark Otto's avatar
dist v5    
Mark Otto committed
2907
2908
    margin-right: auto !important;
  }
XhmikosR's avatar
XhmikosR committed
2909

XhmikosR's avatar
XhmikosR committed
2910
  .mb-md-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2911
2912
    margin-bottom: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
2913

XhmikosR's avatar
XhmikosR committed
2914
  .mb-md-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2915
2916
    margin-bottom: 0.25rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2917

XhmikosR's avatar
XhmikosR committed
2918
  .mb-md-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2919
2920
    margin-bottom: 0.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2921

XhmikosR's avatar
XhmikosR committed
2922
  .mb-md-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2923
2924
    margin-bottom: 1rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2925

XhmikosR's avatar
XhmikosR committed
2926
  .mb-md-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2927
2928
    margin-bottom: 1.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2929

XhmikosR's avatar
XhmikosR committed
2930
  .mb-md-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2931
2932
    margin-bottom: 3rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2933

XhmikosR's avatar
XhmikosR committed
2934
  .mb-md-auto {
Mark Otto's avatar
dist v5    
Mark Otto committed
2935
2936
    margin-bottom: auto !important;
  }
XhmikosR's avatar
XhmikosR committed
2937

XhmikosR's avatar
XhmikosR committed
2938
  .ml-md-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2939
2940
    margin-left: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
2941

XhmikosR's avatar
XhmikosR committed
2942
  .ml-md-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2943
2944
    margin-left: 0.25rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2945

XhmikosR's avatar
XhmikosR committed
2946
  .ml-md-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2947
2948
    margin-left: 0.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2949

XhmikosR's avatar
XhmikosR committed
2950
  .ml-md-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2951
2952
    margin-left: 1rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2953

XhmikosR's avatar
XhmikosR committed
2954
  .ml-md-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2955
2956
    margin-left: 1.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2957

XhmikosR's avatar
XhmikosR committed
2958
  .ml-md-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2959
2960
    margin-left: 3rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2961

XhmikosR's avatar
XhmikosR committed
2962
  .ml-md-auto {
Mark Otto's avatar
dist v5    
Mark Otto committed
2963
2964
    margin-left: auto !important;
  }
XhmikosR's avatar
XhmikosR committed
2965

XhmikosR's avatar
XhmikosR committed
2966
  .p-md-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2967
2968
    padding: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
2969

XhmikosR's avatar
XhmikosR committed
2970
  .p-md-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2971
2972
    padding: 0.25rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2973

XhmikosR's avatar
XhmikosR committed
2974
  .p-md-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2975
2976
    padding: 0.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2977

XhmikosR's avatar
XhmikosR committed
2978
  .p-md-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2979
2980
    padding: 1rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2981

XhmikosR's avatar
XhmikosR committed
2982
  .p-md-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2983
2984
    padding: 1.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2985

XhmikosR's avatar
XhmikosR committed
2986
  .p-md-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2987
2988
    padding: 3rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2989

XhmikosR's avatar
XhmikosR committed
2990
  .px-md-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2991
2992
2993
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
2994

XhmikosR's avatar
XhmikosR committed
2995
  .px-md-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
2996
2997
2998
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
XhmikosR's avatar
XhmikosR committed
2999

XhmikosR's avatar
XhmikosR committed
3000
  .px-md-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3001
3002
3003
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3004

XhmikosR's avatar
XhmikosR committed
3005
  .px-md-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3006
3007
3008
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3009

XhmikosR's avatar
XhmikosR committed
3010
  .px-md-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3011
3012
3013
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3014

XhmikosR's avatar
XhmikosR committed
3015
  .px-md-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3016
3017
3018
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3019

XhmikosR's avatar
XhmikosR committed
3020
  .py-md-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3021
3022
3023
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
3024

XhmikosR's avatar
XhmikosR committed
3025
  .py-md-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3026
3027
3028
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3029

XhmikosR's avatar
XhmikosR committed
3030
  .py-md-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3031
3032
3033
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3034

XhmikosR's avatar
XhmikosR committed
3035
  .py-md-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3036
3037
3038
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3039

XhmikosR's avatar
XhmikosR committed
3040
  .py-md-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3041
3042
3043
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3044

XhmikosR's avatar
XhmikosR committed
3045
  .py-md-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3046
3047
3048
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3049

XhmikosR's avatar
XhmikosR committed
3050
  .pt-md-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3051
3052
    padding-top: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
3053

XhmikosR's avatar
XhmikosR committed
3054
  .pt-md-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3055
3056
    padding-top: 0.25rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3057

XhmikosR's avatar
XhmikosR committed
3058
  .pt-md-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3059
3060
    padding-top: 0.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3061

XhmikosR's avatar
XhmikosR committed
3062
  .pt-md-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3063
3064
    padding-top: 1rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3065

XhmikosR's avatar
XhmikosR committed
3066
  .pt-md-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3067
3068
    padding-top: 1.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3069

XhmikosR's avatar
XhmikosR committed
3070
  .pt-md-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3071
3072
    padding-top: 3rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3073

XhmikosR's avatar
XhmikosR committed
3074
  .pr-md-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3075
3076
    padding-right: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
3077

XhmikosR's avatar
XhmikosR committed
3078
  .pr-md-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3079
3080
    padding-right: 0.25rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3081

XhmikosR's avatar
XhmikosR committed
3082
  .pr-md-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3083
3084
    padding-right: 0.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3085

XhmikosR's avatar
XhmikosR committed
3086
  .pr-md-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3087
3088
    padding-right: 1rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3089

XhmikosR's avatar
XhmikosR committed
3090
  .pr-md-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3091
3092
    padding-right: 1.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3093

XhmikosR's avatar
XhmikosR committed
3094
  .pr-md-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3095
3096
    padding-right: 3rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3097

XhmikosR's avatar
XhmikosR committed
3098
  .pb-md-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3099
3100
    padding-bottom: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
3101

XhmikosR's avatar
XhmikosR committed
3102
  .pb-md-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3103
3104
    padding-bottom: 0.25rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3105

XhmikosR's avatar
XhmikosR committed
3106
  .pb-md-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3107
3108
    padding-bottom: 0.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3109

XhmikosR's avatar
XhmikosR committed
3110
  .pb-md-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3111
3112
    padding-bottom: 1rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3113

XhmikosR's avatar
XhmikosR committed
3114
  .pb-md-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3115
3116
    padding-bottom: 1.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3117

XhmikosR's avatar
XhmikosR committed
3118
  .pb-md-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3119
3120
    padding-bottom: 3rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3121

XhmikosR's avatar
XhmikosR committed
3122
  .pl-md-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3123
3124
    padding-left: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
3125

XhmikosR's avatar
XhmikosR committed
3126
  .pl-md-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3127
3128
    padding-left: 0.25rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3129

XhmikosR's avatar
XhmikosR committed
3130
  .pl-md-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3131
3132
    padding-left: 0.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3133

XhmikosR's avatar
XhmikosR committed
3134
  .pl-md-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3135
3136
    padding-left: 1rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3137

XhmikosR's avatar
XhmikosR committed
3138
  .pl-md-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3139
3140
    padding-left: 1.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3141

XhmikosR's avatar
XhmikosR committed
3142
  .pl-md-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3143
3144
3145
    padding-left: 3rem !important;
  }
}
XhmikosR's avatar
XhmikosR committed
3146
3147
@media (min-width: 992px) {
  .d-lg-inline {
Mark Otto's avatar
dist v5    
Mark Otto committed
3148
3149
    display: inline !important;
  }
XhmikosR's avatar
XhmikosR committed
3150

XhmikosR's avatar
XhmikosR committed
3151
  .d-lg-inline-block {
Mark Otto's avatar
dist v5    
Mark Otto committed
3152
3153
    display: inline-block !important;
  }
XhmikosR's avatar
XhmikosR committed
3154

XhmikosR's avatar
XhmikosR committed
3155
  .d-lg-block {
Mark Otto's avatar
dist v5    
Mark Otto committed
3156
3157
    display: block !important;
  }
XhmikosR's avatar
XhmikosR committed
3158
3159
3160
3161
3162

  .d-lg-grid {
    display: grid !important;
  }

XhmikosR's avatar
XhmikosR committed
3163
  .d-lg-table {
Mark Otto's avatar
dist v5    
Mark Otto committed
3164
3165
    display: table !important;
  }
XhmikosR's avatar
XhmikosR committed
3166

XhmikosR's avatar
XhmikosR committed
3167
  .d-lg-table-row {
Mark Otto's avatar
dist v5    
Mark Otto committed
3168
3169
    display: table-row !important;
  }
XhmikosR's avatar
XhmikosR committed
3170

XhmikosR's avatar
XhmikosR committed
3171
  .d-lg-table-cell {
Mark Otto's avatar
dist v5    
Mark Otto committed
3172
3173
    display: table-cell !important;
  }
XhmikosR's avatar
XhmikosR committed
3174

XhmikosR's avatar
XhmikosR committed
3175
  .d-lg-flex {
Mark Otto's avatar
dist v5    
Mark Otto committed
3176
3177
    display: flex !important;
  }
XhmikosR's avatar
XhmikosR committed
3178

XhmikosR's avatar
XhmikosR committed
3179
  .d-lg-inline-flex {
Mark Otto's avatar
dist v5    
Mark Otto committed
3180
3181
    display: inline-flex !important;
  }
XhmikosR's avatar
XhmikosR committed
3182

XhmikosR's avatar
XhmikosR committed
3183
3184
3185
  .d-lg-none {
    display: none !important;
  }
XhmikosR's avatar
XhmikosR committed
3186

XhmikosR's avatar
XhmikosR committed
3187
  .flex-lg-fill {
Mark Otto's avatar
dist v5    
Mark Otto committed
3188
3189
    flex: 1 1 auto !important;
  }
XhmikosR's avatar
XhmikosR committed
3190

XhmikosR's avatar
XhmikosR committed
3191
  .flex-lg-row {
Mark Otto's avatar
dist v5    
Mark Otto committed
3192
3193
    flex-direction: row !important;
  }
XhmikosR's avatar
XhmikosR committed
3194

XhmikosR's avatar
XhmikosR committed
3195
  .flex-lg-column {
Mark Otto's avatar
dist v5    
Mark Otto committed
3196
3197
    flex-direction: column !important;
  }
XhmikosR's avatar
XhmikosR committed
3198

XhmikosR's avatar
XhmikosR committed
3199
  .flex-lg-row-reverse {
Mark Otto's avatar
dist v5    
Mark Otto committed
3200
3201
    flex-direction: row-reverse !important;
  }
XhmikosR's avatar
XhmikosR committed
3202

XhmikosR's avatar
XhmikosR committed
3203
  .flex-lg-column-reverse {
Mark Otto's avatar
dist v5    
Mark Otto committed
3204
3205
    flex-direction: column-reverse !important;
  }
XhmikosR's avatar
XhmikosR committed
3206

XhmikosR's avatar
XhmikosR committed
3207
  .flex-lg-grow-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3208
3209
    flex-grow: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
3210

XhmikosR's avatar
XhmikosR committed
3211
  .flex-lg-grow-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3212
3213
    flex-grow: 1 !important;
  }
XhmikosR's avatar
XhmikosR committed
3214

XhmikosR's avatar
XhmikosR committed
3215
3216
3217
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
3218

XhmikosR's avatar
XhmikosR committed
3219
3220
3221
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
XhmikosR's avatar
XhmikosR committed
3222

XhmikosR's avatar
XhmikosR committed
3223
3224
3225
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
XhmikosR's avatar
XhmikosR committed
3226

XhmikosR's avatar
XhmikosR committed
3227
3228
3229
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
XhmikosR's avatar
XhmikosR committed
3230

XhmikosR's avatar
XhmikosR committed
3231
3232
3233
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
XhmikosR's avatar
XhmikosR committed
3234

XhmikosR's avatar
XhmikosR committed
3235
  .justify-content-lg-start {
Mark Otto's avatar
dist v5    
Mark Otto committed
3236
3237
    justify-content: flex-start !important;
  }
XhmikosR's avatar
XhmikosR committed
3238

XhmikosR's avatar
XhmikosR committed
3239
  .justify-content-lg-end {
Mark Otto's avatar
dist v5    
Mark Otto committed
3240
3241
    justify-content: flex-end !important;
  }
XhmikosR's avatar
XhmikosR committed
3242

XhmikosR's avatar
XhmikosR committed
3243
  .justify-content-lg-center {
Mark Otto's avatar
dist v5    
Mark Otto committed
3244
3245
    justify-content: center !important;
  }
XhmikosR's avatar
XhmikosR committed
3246

XhmikosR's avatar
XhmikosR committed
3247
  .justify-content-lg-between {
Mark Otto's avatar
dist v5    
Mark Otto committed
3248
3249
    justify-content: space-between !important;
  }
XhmikosR's avatar
XhmikosR committed
3250

XhmikosR's avatar
XhmikosR committed
3251
  .justify-content-lg-around {
Mark Otto's avatar
dist v5    
Mark Otto committed
3252
3253
    justify-content: space-around !important;
  }
XhmikosR's avatar
XhmikosR committed
3254

Mark Otto's avatar
Mark Otto committed
3255
3256
3257
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
XhmikosR's avatar
XhmikosR committed
3258

XhmikosR's avatar
XhmikosR committed
3259
  .align-items-lg-start {
Mark Otto's avatar
dist v5    
Mark Otto committed
3260
3261
    align-items: flex-start !important;
  }
XhmikosR's avatar
XhmikosR committed
3262

XhmikosR's avatar
XhmikosR committed
3263
  .align-items-lg-end {
Mark Otto's avatar
dist v5    
Mark Otto committed
3264
3265
    align-items: flex-end !important;
  }
XhmikosR's avatar
XhmikosR committed
3266

XhmikosR's avatar
XhmikosR committed
3267
  .align-items-lg-center {
Mark Otto's avatar
dist v5    
Mark Otto committed
3268
3269
    align-items: center !important;
  }
XhmikosR's avatar
XhmikosR committed
3270

XhmikosR's avatar
XhmikosR committed
3271
  .align-items-lg-baseline {
Mark Otto's avatar
dist v5    
Mark Otto committed
3272
3273
    align-items: baseline !important;
  }
XhmikosR's avatar
XhmikosR committed
3274

XhmikosR's avatar
XhmikosR committed
3275
  .align-items-lg-stretch {
Mark Otto's avatar
dist v5    
Mark Otto committed
3276
3277
    align-items: stretch !important;
  }
XhmikosR's avatar
XhmikosR committed
3278

XhmikosR's avatar
XhmikosR committed
3279
  .align-content-lg-start {
Mark Otto's avatar
dist v5    
Mark Otto committed
3280
3281
    align-content: flex-start !important;
  }
XhmikosR's avatar
XhmikosR committed
3282

XhmikosR's avatar
XhmikosR committed
3283
  .align-content-lg-end {
Mark Otto's avatar
dist v5    
Mark Otto committed
3284
3285
    align-content: flex-end !important;
  }
XhmikosR's avatar
XhmikosR committed
3286

XhmikosR's avatar
XhmikosR committed
3287
  .align-content-lg-center {
Mark Otto's avatar
dist v5    
Mark Otto committed
3288
3289
    align-content: center !important;
  }
XhmikosR's avatar
XhmikosR committed
3290

XhmikosR's avatar
XhmikosR committed
3291
  .align-content-lg-between {
Mark Otto's avatar
dist v5    
Mark Otto committed
3292
3293
    align-content: space-between !important;
  }
XhmikosR's avatar
XhmikosR committed
3294

XhmikosR's avatar
XhmikosR committed
3295
  .align-content-lg-around {
Mark Otto's avatar
dist v5    
Mark Otto committed
3296
3297
    align-content: space-around !important;
  }
XhmikosR's avatar
XhmikosR committed
3298

XhmikosR's avatar
XhmikosR committed
3299
  .align-content-lg-stretch {
Mark Otto's avatar
dist v5    
Mark Otto committed
3300
3301
    align-content: stretch !important;
  }
XhmikosR's avatar
XhmikosR committed
3302

XhmikosR's avatar
XhmikosR committed
3303
  .align-self-lg-auto {
Mark Otto's avatar
dist v5    
Mark Otto committed
3304
3305
    align-self: auto !important;
  }
XhmikosR's avatar
XhmikosR committed
3306

XhmikosR's avatar
XhmikosR committed
3307
  .align-self-lg-start {
Mark Otto's avatar
dist v5    
Mark Otto committed
3308
3309
    align-self: flex-start !important;
  }
XhmikosR's avatar
XhmikosR committed
3310

XhmikosR's avatar
XhmikosR committed
3311
  .align-self-lg-end {
Mark Otto's avatar
dist v5    
Mark Otto committed
3312
3313
    align-self: flex-end !important;
  }
XhmikosR's avatar
XhmikosR committed
3314

XhmikosR's avatar
XhmikosR committed
3315
  .align-self-lg-center {
Mark Otto's avatar
dist v5    
Mark Otto committed
3316
3317
    align-self: center !important;
  }
XhmikosR's avatar
XhmikosR committed
3318

XhmikosR's avatar
XhmikosR committed
3319
  .align-self-lg-baseline {
Mark Otto's avatar
dist v5    
Mark Otto committed
3320
3321
    align-self: baseline !important;
  }
XhmikosR's avatar
XhmikosR committed
3322

XhmikosR's avatar
XhmikosR committed
3323
  .align-self-lg-stretch {
Mark Otto's avatar
dist v5    
Mark Otto committed
3324
3325
    align-self: stretch !important;
  }
XhmikosR's avatar
XhmikosR committed
3326

XhmikosR's avatar
XhmikosR committed
3327
  .order-lg-first {
Mark Otto's avatar
dist v5    
Mark Otto committed
3328
3329
    order: -1 !important;
  }
XhmikosR's avatar
XhmikosR committed
3330

XhmikosR's avatar
XhmikosR committed
3331
  .order-lg-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3332
3333
    order: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
3334

XhmikosR's avatar
XhmikosR committed
3335
  .order-lg-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3336
3337
    order: 1 !important;
  }
XhmikosR's avatar
XhmikosR committed
3338

XhmikosR's avatar
XhmikosR committed
3339
  .order-lg-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3340
3341
    order: 2 !important;
  }
XhmikosR's avatar
XhmikosR committed
3342

XhmikosR's avatar
XhmikosR committed
3343
  .order-lg-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3344
3345
    order: 3 !important;
  }
XhmikosR's avatar
XhmikosR committed
3346

XhmikosR's avatar
XhmikosR committed
3347
  .order-lg-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3348
3349
    order: 4 !important;
  }
XhmikosR's avatar
XhmikosR committed
3350

XhmikosR's avatar
XhmikosR committed
3351
  .order-lg-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3352
3353
    order: 5 !important;
  }
XhmikosR's avatar
XhmikosR committed
3354

XhmikosR's avatar
XhmikosR committed
3355
  .order-lg-last {
Mark Otto's avatar
dist v5    
Mark Otto committed
3356
3357
    order: 6 !important;
  }
XhmikosR's avatar
XhmikosR committed
3358

XhmikosR's avatar
XhmikosR committed
3359
  .m-lg-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3360
3361
    margin: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
3362

XhmikosR's avatar
XhmikosR committed
3363
  .m-lg-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3364
3365
    margin: 0.25rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3366

XhmikosR's avatar
XhmikosR committed
3367
  .m-lg-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3368
3369
    margin: 0.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3370

XhmikosR's avatar
XhmikosR committed
3371
  .m-lg-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3372
3373
    margin: 1rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3374

XhmikosR's avatar
XhmikosR committed
3375
  .m-lg-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3376
3377
    margin: 1.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3378

XhmikosR's avatar
XhmikosR committed
3379
  .m-lg-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3380
3381
    margin: 3rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3382

XhmikosR's avatar
XhmikosR committed
3383
  .m-lg-auto {
Mark Otto's avatar
dist v5    
Mark Otto committed
3384
3385
    margin: auto !important;
  }
XhmikosR's avatar
XhmikosR committed
3386

XhmikosR's avatar
XhmikosR committed
3387
  .mx-lg-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3388
3389
3390
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
3391

XhmikosR's avatar
XhmikosR committed
3392
  .mx-lg-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3393
3394
3395
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3396

XhmikosR's avatar
XhmikosR committed
3397
  .mx-lg-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3398
3399
3400
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3401

XhmikosR's avatar
XhmikosR committed
3402
  .mx-lg-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3403
3404
3405
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3406

XhmikosR's avatar
XhmikosR committed
3407
  .mx-lg-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3408
3409
3410
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3411

XhmikosR's avatar
XhmikosR committed
3412
  .mx-lg-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3413
3414
3415
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3416

XhmikosR's avatar
XhmikosR committed
3417
  .mx-lg-auto {
Mark Otto's avatar
dist v5    
Mark Otto committed
3418
3419
3420
    margin-right: auto !important;
    margin-left: auto !important;
  }
XhmikosR's avatar
XhmikosR committed
3421

XhmikosR's avatar
XhmikosR committed
3422
  .my-lg-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3423
3424
3425
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
3426

XhmikosR's avatar
XhmikosR committed
3427
  .my-lg-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3428
3429
3430
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3431

XhmikosR's avatar
XhmikosR committed
3432
  .my-lg-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3433
3434
3435
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3436

XhmikosR's avatar
XhmikosR committed
3437
  .my-lg-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3438
3439
3440
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3441

XhmikosR's avatar
XhmikosR committed
3442
  .my-lg-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3443
3444
3445
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3446

XhmikosR's avatar
XhmikosR committed
3447
  .my-lg-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3448
3449
3450
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3451

XhmikosR's avatar
XhmikosR committed
3452
  .my-lg-auto {
Mark Otto's avatar
dist v5    
Mark Otto committed
3453
3454
3455
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
XhmikosR's avatar
XhmikosR committed
3456

XhmikosR's avatar
XhmikosR committed
3457
  .mt-lg-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3458
3459
    margin-top: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
3460

XhmikosR's avatar
XhmikosR committed
3461
  .mt-lg-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3462
3463
    margin-top: 0.25rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3464

XhmikosR's avatar
XhmikosR committed
3465
  .mt-lg-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3466
3467
    margin-top: 0.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3468

XhmikosR's avatar
XhmikosR committed
3469
  .mt-lg-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3470
3471
    margin-top: 1rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3472

XhmikosR's avatar
XhmikosR committed
3473
  .mt-lg-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3474
3475
    margin-top: 1.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3476

XhmikosR's avatar
XhmikosR committed
3477
  .mt-lg-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3478
3479
    margin-top: 3rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3480

XhmikosR's avatar
XhmikosR committed
3481
  .mt-lg-auto {
Mark Otto's avatar
dist v5    
Mark Otto committed
3482
3483
    margin-top: auto !important;
  }
XhmikosR's avatar
XhmikosR committed
3484

XhmikosR's avatar
XhmikosR committed
3485
  .mr-lg-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3486
3487
    margin-right: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
3488

XhmikosR's avatar
XhmikosR committed
3489
  .mr-lg-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3490
3491
    margin-right: 0.25rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3492

XhmikosR's avatar
XhmikosR committed
3493
  .mr-lg-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3494
3495
    margin-right: 0.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3496

XhmikosR's avatar
XhmikosR committed
3497
  .mr-lg-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3498
3499
    margin-right: 1rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3500

XhmikosR's avatar
XhmikosR committed
3501
  .mr-lg-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3502
3503
    margin-right: 1.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3504

XhmikosR's avatar
XhmikosR committed
3505
  .mr-lg-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3506
3507
    margin-right: 3rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3508

XhmikosR's avatar
XhmikosR committed
3509
  .mr-lg-auto {
Mark Otto's avatar
dist v5    
Mark Otto committed
3510
3511
    margin-right: auto !important;
  }
XhmikosR's avatar
XhmikosR committed
3512

XhmikosR's avatar
XhmikosR committed
3513
  .mb-lg-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3514
3515
    margin-bottom: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
3516

XhmikosR's avatar
XhmikosR committed
3517
  .mb-lg-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3518
3519
    margin-bottom: 0.25rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3520

XhmikosR's avatar
XhmikosR committed
3521
  .mb-lg-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3522
3523
    margin-bottom: 0.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3524

XhmikosR's avatar
XhmikosR committed
3525
  .mb-lg-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3526
3527
    margin-bottom: 1rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3528

XhmikosR's avatar
XhmikosR committed
3529
  .mb-lg-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3530
3531
    margin-bottom: 1.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3532

XhmikosR's avatar
XhmikosR committed
3533
  .mb-lg-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3534
3535
    margin-bottom: 3rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3536

XhmikosR's avatar
XhmikosR committed
3537
  .mb-lg-auto {
Mark Otto's avatar
dist v5    
Mark Otto committed
3538
3539
    margin-bottom: auto !important;
  }
XhmikosR's avatar
XhmikosR committed
3540

XhmikosR's avatar
XhmikosR committed
3541
  .ml-lg-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3542
3543
    margin-left: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
3544

XhmikosR's avatar
XhmikosR committed
3545
  .ml-lg-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3546
3547
    margin-left: 0.25rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3548

XhmikosR's avatar
XhmikosR committed
3549
  .ml-lg-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3550
3551
    margin-left: 0.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3552

XhmikosR's avatar
XhmikosR committed
3553
  .ml-lg-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3554
3555
    margin-left: 1rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3556

XhmikosR's avatar
XhmikosR committed
3557
  .ml-lg-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3558
3559
    margin-left: 1.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3560

XhmikosR's avatar
XhmikosR committed
3561
  .ml-lg-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3562
3563
    margin-left: 3rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3564

XhmikosR's avatar
XhmikosR committed
3565
  .ml-lg-auto {
Mark Otto's avatar
dist v5    
Mark Otto committed
3566
3567
    margin-left: auto !important;
  }
XhmikosR's avatar
XhmikosR committed
3568

XhmikosR's avatar
XhmikosR committed
3569
  .p-lg-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3570
3571
    padding: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
3572

XhmikosR's avatar
XhmikosR committed
3573
  .p-lg-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3574
3575
    padding: 0.25rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3576

XhmikosR's avatar
XhmikosR committed
3577
  .p-lg-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3578
3579
    padding: 0.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3580

XhmikosR's avatar
XhmikosR committed
3581
  .p-lg-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3582
3583
    padding: 1rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3584

XhmikosR's avatar
XhmikosR committed
3585
  .p-lg-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3586
3587
    padding: 1.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3588

XhmikosR's avatar
XhmikosR committed
3589
  .p-lg-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3590
3591
    padding: 3rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3592

XhmikosR's avatar
XhmikosR committed
3593
  .px-lg-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3594
3595
3596
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
3597

XhmikosR's avatar
XhmikosR committed
3598
  .px-lg-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3599
3600
3601
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3602

XhmikosR's avatar
XhmikosR committed
3603
  .px-lg-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3604
3605
3606
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3607

XhmikosR's avatar
XhmikosR committed
3608
  .px-lg-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3609
3610
3611
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3612

XhmikosR's avatar
XhmikosR committed
3613
  .px-lg-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3614
3615
3616
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3617

XhmikosR's avatar
XhmikosR committed
3618
  .px-lg-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3619
3620
3621
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3622

XhmikosR's avatar
XhmikosR committed
3623
  .py-lg-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3624
3625
3626
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
3627

XhmikosR's avatar
XhmikosR committed
3628
  .py-lg-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3629
3630
3631
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3632

XhmikosR's avatar
XhmikosR committed
3633
  .py-lg-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3634
3635
3636
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3637

XhmikosR's avatar
XhmikosR committed
3638
  .py-lg-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3639
3640
3641
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3642

XhmikosR's avatar
XhmikosR committed
3643
  .py-lg-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3644
3645
3646
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3647

XhmikosR's avatar
XhmikosR committed
3648
  .py-lg-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3649
3650
3651
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3652

XhmikosR's avatar
XhmikosR committed
3653
  .pt-lg-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3654
3655
    padding-top: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
3656

XhmikosR's avatar
XhmikosR committed
3657
  .pt-lg-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3658
3659
    padding-top: 0.25rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3660

XhmikosR's avatar
XhmikosR committed
3661
  .pt-lg-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3662
3663
    padding-top: 0.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3664

XhmikosR's avatar
XhmikosR committed
3665
  .pt-lg-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3666
3667
    padding-top: 1rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3668

XhmikosR's avatar
XhmikosR committed
3669
  .pt-lg-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3670
3671
    padding-top: 1.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3672

XhmikosR's avatar
XhmikosR committed
3673
  .pt-lg-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3674
3675
    padding-top: 3rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3676

XhmikosR's avatar
XhmikosR committed
3677
  .pr-lg-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3678
3679
    padding-right: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
3680

XhmikosR's avatar
XhmikosR committed
3681
  .pr-lg-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3682
3683
    padding-right: 0.25rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3684

XhmikosR's avatar
XhmikosR committed
3685
  .pr-lg-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3686
3687
    padding-right: 0.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3688

XhmikosR's avatar
XhmikosR committed
3689
  .pr-lg-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3690
3691
    padding-right: 1rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3692

XhmikosR's avatar
XhmikosR committed
3693
  .pr-lg-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3694
3695
    padding-right: 1.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3696

XhmikosR's avatar
XhmikosR committed
3697
  .pr-lg-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3698
3699
    padding-right: 3rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3700

XhmikosR's avatar
XhmikosR committed
3701
  .pb-lg-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3702
3703
    padding-bottom: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
3704

XhmikosR's avatar
XhmikosR committed
3705
  .pb-lg-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3706
3707
    padding-bottom: 0.25rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3708

XhmikosR's avatar
XhmikosR committed
3709
  .pb-lg-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3710
3711
    padding-bottom: 0.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3712

XhmikosR's avatar
XhmikosR committed
3713
  .pb-lg-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3714
3715
    padding-bottom: 1rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3716

XhmikosR's avatar
XhmikosR committed
3717
  .pb-lg-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3718
3719
    padding-bottom: 1.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3720

XhmikosR's avatar
XhmikosR committed
3721
  .pb-lg-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3722
3723
    padding-bottom: 3rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3724

XhmikosR's avatar
XhmikosR committed
3725
  .pl-lg-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3726
3727
    padding-left: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
3728

XhmikosR's avatar
XhmikosR committed
3729
  .pl-lg-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3730
3731
    padding-left: 0.25rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3732

XhmikosR's avatar
XhmikosR committed
3733
  .pl-lg-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3734
3735
    padding-left: 0.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3736

XhmikosR's avatar
XhmikosR committed
3737
  .pl-lg-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3738
3739
    padding-left: 1rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3740

XhmikosR's avatar
XhmikosR committed
3741
  .pl-lg-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3742
3743
    padding-left: 1.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
3744

XhmikosR's avatar
XhmikosR committed
3745
  .pl-lg-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3746
3747
    padding-left: 3rem !important;
  }
Mark Otto's avatar
dist    
Mark Otto committed
3748
}
XhmikosR's avatar
XhmikosR committed
3749
3750
@media (min-width: 1200px) {
  .d-xl-inline {
Mark Otto's avatar
dist v5    
Mark Otto committed
3751
    display: inline !important;
Mark Otto's avatar
dist    
Mark Otto committed
3752
  }
XhmikosR's avatar
XhmikosR committed
3753

XhmikosR's avatar
XhmikosR committed
3754
  .d-xl-inline-block {
Mark Otto's avatar
dist v5    
Mark Otto committed
3755
    display: inline-block !important;
Mark Otto's avatar
dist    
Mark Otto committed
3756
  }
XhmikosR's avatar
XhmikosR committed
3757

XhmikosR's avatar
XhmikosR committed
3758
  .d-xl-block {
Mark Otto's avatar
dist v5    
Mark Otto committed
3759
    display: block !important;
Mark Otto's avatar
dist    
Mark Otto committed
3760
  }
XhmikosR's avatar
XhmikosR committed
3761
3762
3763
3764
3765

  .d-xl-grid {
    display: grid !important;
  }

XhmikosR's avatar
XhmikosR committed
3766
  .d-xl-table {
Mark Otto's avatar
dist v5    
Mark Otto committed
3767
    display: table !important;
Mark Otto's avatar
dist    
Mark Otto committed
3768
  }
XhmikosR's avatar
XhmikosR committed
3769

XhmikosR's avatar
XhmikosR committed
3770
  .d-xl-table-row {
Mark Otto's avatar
dist v5    
Mark Otto committed
3771
    display: table-row !important;
Mark Otto's avatar
dist    
Mark Otto committed
3772
  }
XhmikosR's avatar
XhmikosR committed
3773

XhmikosR's avatar
XhmikosR committed
3774
  .d-xl-table-cell {
Mark Otto's avatar
dist v5    
Mark Otto committed
3775
    display: table-cell !important;
Mark Otto's avatar
dist    
Mark Otto committed
3776
  }
XhmikosR's avatar
XhmikosR committed
3777

XhmikosR's avatar
XhmikosR committed
3778
  .d-xl-flex {
Mark Otto's avatar
dist v5    
Mark Otto committed
3779
    display: flex !important;
Mark Otto's avatar
dist    
Mark Otto committed
3780
  }
XhmikosR's avatar
XhmikosR committed
3781

XhmikosR's avatar
XhmikosR committed
3782
  .d-xl-inline-flex {
Mark Otto's avatar
dist v5    
Mark Otto committed
3783
3784
    display: inline-flex !important;
  }
XhmikosR's avatar
XhmikosR committed
3785

XhmikosR's avatar
XhmikosR committed
3786
3787
3788
  .d-xl-none {
    display: none !important;
  }
XhmikosR's avatar
XhmikosR committed
3789

XhmikosR's avatar
XhmikosR committed
3790
  .flex-xl-fill {
Mark Otto's avatar
dist v5    
Mark Otto committed
3791
3792
    flex: 1 1 auto !important;
  }
XhmikosR's avatar
XhmikosR committed
3793

XhmikosR's avatar
XhmikosR committed
3794
  .flex-xl-row {
Mark Otto's avatar
dist v5    
Mark Otto committed
3795
3796
    flex-direction: row !important;
  }
XhmikosR's avatar
XhmikosR committed
3797

XhmikosR's avatar
XhmikosR committed
3798
  .flex-xl-column {
Mark Otto's avatar
dist v5    
Mark Otto committed
3799
3800
    flex-direction: column !important;
  }
XhmikosR's avatar
XhmikosR committed
3801

XhmikosR's avatar
XhmikosR committed
3802
  .flex-xl-row-reverse {
Mark Otto's avatar
dist v5    
Mark Otto committed
3803
3804
    flex-direction: row-reverse !important;
  }
XhmikosR's avatar
XhmikosR committed
3805

XhmikosR's avatar
XhmikosR committed
3806
  .flex-xl-column-reverse {
Mark Otto's avatar
dist v5    
Mark Otto committed
3807
3808
    flex-direction: column-reverse !important;
  }
XhmikosR's avatar
XhmikosR committed
3809

XhmikosR's avatar
XhmikosR committed
3810
  .flex-xl-grow-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3811
3812
    flex-grow: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
3813

XhmikosR's avatar
XhmikosR committed
3814
  .flex-xl-grow-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3815
3816
    flex-grow: 1 !important;
  }
XhmikosR's avatar
XhmikosR committed
3817

XhmikosR's avatar
XhmikosR committed
3818
3819
3820
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
3821

XhmikosR's avatar
XhmikosR committed
3822
3823
3824
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
XhmikosR's avatar
XhmikosR committed
3825

XhmikosR's avatar
XhmikosR committed
3826
3827
3828
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
XhmikosR's avatar
XhmikosR committed
3829

XhmikosR's avatar
XhmikosR committed
3830
3831
3832
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
XhmikosR's avatar
XhmikosR committed
3833

XhmikosR's avatar
XhmikosR committed
3834
3835
3836
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
XhmikosR's avatar
XhmikosR committed
3837

XhmikosR's avatar
XhmikosR committed
3838
  .justify-content-xl-start {
Mark Otto's avatar
dist v5    
Mark Otto committed
3839
3840
    justify-content: flex-start !important;
  }
XhmikosR's avatar
XhmikosR committed
3841

XhmikosR's avatar
XhmikosR committed
3842
  .justify-content-xl-end {
Mark Otto's avatar
dist v5    
Mark Otto committed
3843
3844
    justify-content: flex-end !important;
  }
XhmikosR's avatar
XhmikosR committed
3845

XhmikosR's avatar
XhmikosR committed
3846
  .justify-content-xl-center {
Mark Otto's avatar
dist v5    
Mark Otto committed
3847
3848
    justify-content: center !important;
  }
XhmikosR's avatar
XhmikosR committed
3849

XhmikosR's avatar
XhmikosR committed
3850
  .justify-content-xl-between {
Mark Otto's avatar
dist v5    
Mark Otto committed
3851
    justify-content: space-between !important;
Mark Otto's avatar
dist    
Mark Otto committed
3852
  }
XhmikosR's avatar
XhmikosR committed
3853

XhmikosR's avatar
XhmikosR committed
3854
  .justify-content-xl-around {
Mark Otto's avatar
dist v5    
Mark Otto committed
3855
    justify-content: space-around !important;
Mark Otto's avatar
dist    
Mark Otto committed
3856
  }
XhmikosR's avatar
XhmikosR committed
3857

Mark Otto's avatar
Mark Otto committed
3858
3859
3860
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
XhmikosR's avatar
XhmikosR committed
3861

XhmikosR's avatar
XhmikosR committed
3862
  .align-items-xl-start {
Mark Otto's avatar
dist v5    
Mark Otto committed
3863
    align-items: flex-start !important;
Mark Otto's avatar
dist    
Mark Otto committed
3864
  }
XhmikosR's avatar
XhmikosR committed
3865

XhmikosR's avatar
XhmikosR committed
3866
  .align-items-xl-end {
Mark Otto's avatar
dist v5    
Mark Otto committed
3867
    align-items: flex-end !important;
Mark Otto's avatar
dist    
Mark Otto committed
3868
  }
XhmikosR's avatar
XhmikosR committed
3869

XhmikosR's avatar
XhmikosR committed
3870
  .align-items-xl-center {
Mark Otto's avatar
dist v5    
Mark Otto committed
3871
    align-items: center !important;
Mark Otto's avatar
dist    
Mark Otto committed
3872
  }
XhmikosR's avatar
XhmikosR committed
3873

XhmikosR's avatar
XhmikosR committed
3874
  .align-items-xl-baseline {
Mark Otto's avatar
dist v5    
Mark Otto committed
3875
    align-items: baseline !important;
Mark Otto's avatar
dist    
Mark Otto committed
3876
  }
XhmikosR's avatar
XhmikosR committed
3877

XhmikosR's avatar
XhmikosR committed
3878
  .align-items-xl-stretch {
Mark Otto's avatar
dist v5    
Mark Otto committed
3879
    align-items: stretch !important;
Mark Otto's avatar
dist    
Mark Otto committed
3880
  }
XhmikosR's avatar
XhmikosR committed
3881

XhmikosR's avatar
XhmikosR committed
3882
  .align-content-xl-start {
Mark Otto's avatar
dist v5    
Mark Otto committed
3883
    align-content: flex-start !important;
Mark Otto's avatar
dist    
Mark Otto committed
3884
  }
XhmikosR's avatar
XhmikosR committed
3885

XhmikosR's avatar
XhmikosR committed
3886
  .align-content-xl-end {
Mark Otto's avatar
dist v5    
Mark Otto committed
3887
    align-content: flex-end !important;
Mark Otto's avatar
dist    
Mark Otto committed
3888
  }
XhmikosR's avatar
XhmikosR committed
3889

XhmikosR's avatar
XhmikosR committed
3890
  .align-content-xl-center {
Mark Otto's avatar
dist v5    
Mark Otto committed
3891
    align-content: center !important;
Mark Otto's avatar
dist    
Mark Otto committed
3892
  }
XhmikosR's avatar
XhmikosR committed
3893

XhmikosR's avatar
XhmikosR committed
3894
  .align-content-xl-between {
Mark Otto's avatar
dist v5    
Mark Otto committed
3895
    align-content: space-between !important;
Mark Otto's avatar
dist    
Mark Otto committed
3896
  }
XhmikosR's avatar
XhmikosR committed
3897

XhmikosR's avatar
XhmikosR committed
3898
  .align-content-xl-around {
Mark Otto's avatar
dist v5    
Mark Otto committed
3899
    align-content: space-around !important;
Mark Otto's avatar
dist    
Mark Otto committed
3900
  }
XhmikosR's avatar
XhmikosR committed
3901

XhmikosR's avatar
XhmikosR committed
3902
  .align-content-xl-stretch {
Mark Otto's avatar
dist v5    
Mark Otto committed
3903
    align-content: stretch !important;
Mark Otto's avatar
dist    
Mark Otto committed
3904
  }
XhmikosR's avatar
XhmikosR committed
3905

XhmikosR's avatar
XhmikosR committed
3906
  .align-self-xl-auto {
Mark Otto's avatar
dist v5    
Mark Otto committed
3907
    align-self: auto !important;
Mark Otto's avatar
dist    
Mark Otto committed
3908
  }
XhmikosR's avatar
XhmikosR committed
3909

XhmikosR's avatar
XhmikosR committed
3910
  .align-self-xl-start {
Mark Otto's avatar
dist v5    
Mark Otto committed
3911
    align-self: flex-start !important;
Mark Otto's avatar
dist    
Mark Otto committed
3912
  }
XhmikosR's avatar
XhmikosR committed
3913

XhmikosR's avatar
XhmikosR committed
3914
  .align-self-xl-end {
Mark Otto's avatar
dist v5    
Mark Otto committed
3915
    align-self: flex-end !important;
Mark Otto's avatar
dist    
Mark Otto committed
3916
  }
XhmikosR's avatar
XhmikosR committed
3917

XhmikosR's avatar
XhmikosR committed
3918
  .align-self-xl-center {
Mark Otto's avatar
dist v5    
Mark Otto committed
3919
    align-self: center !important;
Mark Otto's avatar
dist    
Mark Otto committed
3920
  }
XhmikosR's avatar
XhmikosR committed
3921

XhmikosR's avatar
XhmikosR committed
3922
  .align-self-xl-baseline {
Mark Otto's avatar
dist v5    
Mark Otto committed
3923
    align-self: baseline !important;
Mark Otto's avatar
dist    
Mark Otto committed
3924
  }
XhmikosR's avatar
XhmikosR committed
3925

XhmikosR's avatar
XhmikosR committed
3926
  .align-self-xl-stretch {
Mark Otto's avatar
dist v5    
Mark Otto committed
3927
    align-self: stretch !important;
Mark Otto's avatar
dist    
Mark Otto committed
3928
  }
XhmikosR's avatar
XhmikosR committed
3929

XhmikosR's avatar
XhmikosR committed
3930
  .order-xl-first {
Mark Otto's avatar
dist v5    
Mark Otto committed
3931
    order: -1 !important;
Mark Otto's avatar
dist    
Mark Otto committed
3932
  }
XhmikosR's avatar
XhmikosR committed
3933

XhmikosR's avatar
XhmikosR committed
3934
  .order-xl-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3935
    order: 0 !important;
Mark Otto's avatar
dist    
Mark Otto committed
3936
  }
XhmikosR's avatar
XhmikosR committed
3937

XhmikosR's avatar
XhmikosR committed
3938
  .order-xl-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3939
    order: 1 !important;
Mark Otto's avatar
dist    
Mark Otto committed
3940
  }
XhmikosR's avatar
XhmikosR committed
3941

XhmikosR's avatar
XhmikosR committed
3942
  .order-xl-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3943
    order: 2 !important;
Mark Otto's avatar
dist    
Mark Otto committed
3944
  }
XhmikosR's avatar
XhmikosR committed
3945

XhmikosR's avatar
XhmikosR committed
3946
  .order-xl-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3947
    order: 3 !important;
Mark Otto's avatar
dist    
Mark Otto committed
3948
  }
XhmikosR's avatar
XhmikosR committed
3949

XhmikosR's avatar
XhmikosR committed
3950
  .order-xl-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3951
    order: 4 !important;
Mark Otto's avatar
dist    
Mark Otto committed
3952
  }
XhmikosR's avatar
XhmikosR committed
3953

XhmikosR's avatar
XhmikosR committed
3954
  .order-xl-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3955
    order: 5 !important;
Mark Otto's avatar
dist    
Mark Otto committed
3956
  }
XhmikosR's avatar
XhmikosR committed
3957

XhmikosR's avatar
XhmikosR committed
3958
  .order-xl-last {
Mark Otto's avatar
dist v5    
Mark Otto committed
3959
    order: 6 !important;
Mark Otto's avatar
dist    
Mark Otto committed
3960
  }
XhmikosR's avatar
XhmikosR committed
3961

XhmikosR's avatar
XhmikosR committed
3962
  .m-xl-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3963
    margin: 0 !important;
Mark Otto's avatar
dist    
Mark Otto committed
3964
  }
XhmikosR's avatar
XhmikosR committed
3965

XhmikosR's avatar
XhmikosR committed
3966
  .m-xl-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3967
    margin: 0.25rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
3968
  }
XhmikosR's avatar
XhmikosR committed
3969

XhmikosR's avatar
XhmikosR committed
3970
  .m-xl-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3971
    margin: 0.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
3972
  }
XhmikosR's avatar
XhmikosR committed
3973

XhmikosR's avatar
XhmikosR committed
3974
  .m-xl-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3975
    margin: 1rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
3976
  }
XhmikosR's avatar
XhmikosR committed
3977

XhmikosR's avatar
XhmikosR committed
3978
  .m-xl-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3979
    margin: 1.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
3980
  }
XhmikosR's avatar
XhmikosR committed
3981

XhmikosR's avatar
XhmikosR committed
3982
  .m-xl-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3983
    margin: 3rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
3984
  }
XhmikosR's avatar
XhmikosR committed
3985

XhmikosR's avatar
XhmikosR committed
3986
  .m-xl-auto {
Mark Otto's avatar
dist v5    
Mark Otto committed
3987
    margin: auto !important;
Mark Otto's avatar
dist    
Mark Otto committed
3988
  }
XhmikosR's avatar
XhmikosR committed
3989

XhmikosR's avatar
XhmikosR committed
3990
  .mx-xl-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3991
3992
    margin-right: 0 !important;
    margin-left: 0 !important;
Mark Otto's avatar
dist    
Mark Otto committed
3993
  }
XhmikosR's avatar
XhmikosR committed
3994

XhmikosR's avatar
XhmikosR committed
3995
  .mx-xl-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
3996
3997
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
3998
  }
XhmikosR's avatar
XhmikosR committed
3999

XhmikosR's avatar
XhmikosR committed
4000
  .mx-xl-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4001
4002
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4003
  }
XhmikosR's avatar
XhmikosR committed
4004

XhmikosR's avatar
XhmikosR committed
4005
  .mx-xl-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4006
4007
    margin-right: 1rem !important;
    margin-left: 1rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4008
  }
XhmikosR's avatar
XhmikosR committed
4009

XhmikosR's avatar
XhmikosR committed
4010
  .mx-xl-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4011
4012
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4013
  }
XhmikosR's avatar
XhmikosR committed
4014

XhmikosR's avatar
XhmikosR committed
4015
  .mx-xl-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4016
4017
    margin-right: 3rem !important;
    margin-left: 3rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4018
  }
XhmikosR's avatar
XhmikosR committed
4019

XhmikosR's avatar
XhmikosR committed
4020
  .mx-xl-auto {
Mark Otto's avatar
dist v5    
Mark Otto committed
4021
4022
    margin-right: auto !important;
    margin-left: auto !important;
Mark Otto's avatar
dist    
Mark Otto committed
4023
  }
XhmikosR's avatar
XhmikosR committed
4024

XhmikosR's avatar
XhmikosR committed
4025
  .my-xl-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4026
4027
    margin-top: 0 !important;
    margin-bottom: 0 !important;
Mark Otto's avatar
dist    
Mark Otto committed
4028
  }
XhmikosR's avatar
XhmikosR committed
4029

XhmikosR's avatar
XhmikosR committed
4030
  .my-xl-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4031
4032
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4033
  }
XhmikosR's avatar
XhmikosR committed
4034

XhmikosR's avatar
XhmikosR committed
4035
  .my-xl-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4036
4037
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4038
  }
XhmikosR's avatar
XhmikosR committed
4039

XhmikosR's avatar
XhmikosR committed
4040
  .my-xl-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4041
4042
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4043
  }
XhmikosR's avatar
XhmikosR committed
4044

XhmikosR's avatar
XhmikosR committed
4045
  .my-xl-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4046
4047
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4048
  }
XhmikosR's avatar
XhmikosR committed
4049

XhmikosR's avatar
XhmikosR committed
4050
  .my-xl-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4051
4052
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4053
  }
XhmikosR's avatar
XhmikosR committed
4054

XhmikosR's avatar
XhmikosR committed
4055
  .my-xl-auto {
Mark Otto's avatar
dist v5    
Mark Otto committed
4056
4057
    margin-top: auto !important;
    margin-bottom: auto !important;
Mark Otto's avatar
dist    
Mark Otto committed
4058
  }
XhmikosR's avatar
XhmikosR committed
4059

XhmikosR's avatar
XhmikosR committed
4060
  .mt-xl-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4061
    margin-top: 0 !important;
Mark Otto's avatar
dist    
Mark Otto committed
4062
  }
XhmikosR's avatar
XhmikosR committed
4063

XhmikosR's avatar
XhmikosR committed
4064
  .mt-xl-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4065
    margin-top: 0.25rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4066
  }
XhmikosR's avatar
XhmikosR committed
4067

XhmikosR's avatar
XhmikosR committed
4068
  .mt-xl-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4069
    margin-top: 0.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4070
  }
XhmikosR's avatar
XhmikosR committed
4071

XhmikosR's avatar
XhmikosR committed
4072
  .mt-xl-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4073
    margin-top: 1rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4074
  }
XhmikosR's avatar
XhmikosR committed
4075

XhmikosR's avatar
XhmikosR committed
4076
  .mt-xl-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4077
    margin-top: 1.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4078
  }
XhmikosR's avatar
XhmikosR committed
4079

XhmikosR's avatar
XhmikosR committed
4080
  .mt-xl-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4081
    margin-top: 3rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4082
  }
XhmikosR's avatar
XhmikosR committed
4083

XhmikosR's avatar
XhmikosR committed
4084
  .mt-xl-auto {
Mark Otto's avatar
dist v5    
Mark Otto committed
4085
    margin-top: auto !important;
Mark Otto's avatar
dist    
Mark Otto committed
4086
  }
XhmikosR's avatar
XhmikosR committed
4087

XhmikosR's avatar
XhmikosR committed
4088
  .mr-xl-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4089
    margin-right: 0 !important;
Mark Otto's avatar
dist    
Mark Otto committed
4090
  }
XhmikosR's avatar
XhmikosR committed
4091

XhmikosR's avatar
XhmikosR committed
4092
  .mr-xl-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4093
    margin-right: 0.25rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4094
  }
XhmikosR's avatar
XhmikosR committed
4095

XhmikosR's avatar
XhmikosR committed
4096
  .mr-xl-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4097
    margin-right: 0.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4098
  }
XhmikosR's avatar
XhmikosR committed
4099

XhmikosR's avatar
XhmikosR committed
4100
  .mr-xl-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4101
    margin-right: 1rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4102
  }
XhmikosR's avatar
XhmikosR committed
4103

XhmikosR's avatar
XhmikosR committed
4104
  .mr-xl-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4105
    margin-right: 1.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4106
  }
XhmikosR's avatar
XhmikosR committed
4107

XhmikosR's avatar
XhmikosR committed
4108
  .mr-xl-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4109
    margin-right: 3rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4110
  }
XhmikosR's avatar
XhmikosR committed
4111

XhmikosR's avatar
XhmikosR committed
4112
  .mr-xl-auto {
Mark Otto's avatar
dist v5    
Mark Otto committed
4113
    margin-right: auto !important;
Mark Otto's avatar
dist    
Mark Otto committed
4114
  }
XhmikosR's avatar
XhmikosR committed
4115

XhmikosR's avatar
XhmikosR committed
4116
  .mb-xl-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4117
    margin-bottom: 0 !important;
Mark Otto's avatar
dist    
Mark Otto committed
4118
  }
XhmikosR's avatar
XhmikosR committed
4119

XhmikosR's avatar
XhmikosR committed
4120
  .mb-xl-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4121
    margin-bottom: 0.25rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4122
  }
XhmikosR's avatar
XhmikosR committed
4123

XhmikosR's avatar
XhmikosR committed
4124
  .mb-xl-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4125
    margin-bottom: 0.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4126
  }
XhmikosR's avatar
XhmikosR committed
4127

XhmikosR's avatar
XhmikosR committed
4128
  .mb-xl-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4129
    margin-bottom: 1rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4130
  }
XhmikosR's avatar
XhmikosR committed
4131

XhmikosR's avatar
XhmikosR committed
4132
  .mb-xl-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4133
    margin-bottom: 1.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4134
  }
XhmikosR's avatar
XhmikosR committed
4135

XhmikosR's avatar
XhmikosR committed
4136
  .mb-xl-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4137
4138
    margin-bottom: 3rem !important;
  }
XhmikosR's avatar
XhmikosR committed
4139

XhmikosR's avatar
XhmikosR committed
4140
  .mb-xl-auto {
Mark Otto's avatar
dist v5    
Mark Otto committed
4141
    margin-bottom: auto !important;
Mark Otto's avatar
dist    
Mark Otto committed
4142
  }
XhmikosR's avatar
XhmikosR committed
4143

XhmikosR's avatar
XhmikosR committed
4144
  .ml-xl-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4145
    margin-left: 0 !important;
Mark Otto's avatar
dist    
Mark Otto committed
4146
  }
XhmikosR's avatar
XhmikosR committed
4147

XhmikosR's avatar
XhmikosR committed
4148
  .ml-xl-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4149
    margin-left: 0.25rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4150
  }
XhmikosR's avatar
XhmikosR committed
4151

XhmikosR's avatar
XhmikosR committed
4152
  .ml-xl-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4153
    margin-left: 0.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4154
  }
XhmikosR's avatar
XhmikosR committed
4155

XhmikosR's avatar
XhmikosR committed
4156
  .ml-xl-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4157
    margin-left: 1rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4158
  }
XhmikosR's avatar
XhmikosR committed
4159

XhmikosR's avatar
XhmikosR committed
4160
  .ml-xl-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4161
    margin-left: 1.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4162
  }
XhmikosR's avatar
XhmikosR committed
4163

XhmikosR's avatar
XhmikosR committed
4164
  .ml-xl-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4165
    margin-left: 3rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4166
  }
XhmikosR's avatar
XhmikosR committed
4167

XhmikosR's avatar
XhmikosR committed
4168
  .ml-xl-auto {
Mark Otto's avatar
dist v5    
Mark Otto committed
4169
    margin-left: auto !important;
Mark Otto's avatar
dist    
Mark Otto committed
4170
  }
XhmikosR's avatar
XhmikosR committed
4171

XhmikosR's avatar
XhmikosR committed
4172
  .p-xl-0 {
Mark Otto's avatar
dist    
Mark Otto committed
4173
4174
    padding: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
4175

XhmikosR's avatar
XhmikosR committed
4176
  .p-xl-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4177
    padding: 0.25rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4178
  }
XhmikosR's avatar
XhmikosR committed
4179

XhmikosR's avatar
XhmikosR committed
4180
  .p-xl-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4181
    padding: 0.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4182
  }
XhmikosR's avatar
XhmikosR committed
4183

XhmikosR's avatar
XhmikosR committed
4184
  .p-xl-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4185
    padding: 1rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4186
  }
XhmikosR's avatar
XhmikosR committed
4187

XhmikosR's avatar
XhmikosR committed
4188
  .p-xl-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4189
    padding: 1.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4190
  }
XhmikosR's avatar
XhmikosR committed
4191

XhmikosR's avatar
XhmikosR committed
4192
  .p-xl-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4193
    padding: 3rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4194
  }
XhmikosR's avatar
XhmikosR committed
4195

XhmikosR's avatar
XhmikosR committed
4196
  .px-xl-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4197
4198
    padding-right: 0 !important;
    padding-left: 0 !important;
Mark Otto's avatar
dist    
Mark Otto committed
4199
  }
XhmikosR's avatar
XhmikosR committed
4200

XhmikosR's avatar
XhmikosR committed
4201
  .px-xl-1 {
Mark Otto's avatar
dist    
Mark Otto committed
4202
    padding-right: 0.25rem !important;
Mark Otto's avatar
dist v5    
Mark Otto committed
4203
    padding-left: 0.25rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4204
  }
XhmikosR's avatar
XhmikosR committed
4205

XhmikosR's avatar
XhmikosR committed
4206
  .px-xl-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4207
4208
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4209
  }
XhmikosR's avatar
XhmikosR committed
4210

XhmikosR's avatar
XhmikosR committed
4211
  .px-xl-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4212
4213
    padding-right: 1rem !important;
    padding-left: 1rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4214
  }
XhmikosR's avatar
XhmikosR committed
4215

XhmikosR's avatar
XhmikosR committed
4216
  .px-xl-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4217
4218
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4219
  }
XhmikosR's avatar
XhmikosR committed
4220

XhmikosR's avatar
XhmikosR committed
4221
  .px-xl-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4222
4223
    padding-right: 3rem !important;
    padding-left: 3rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4224
  }
XhmikosR's avatar
XhmikosR committed
4225

XhmikosR's avatar
XhmikosR committed
4226
  .py-xl-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4227
4228
    padding-top: 0 !important;
    padding-bottom: 0 !important;
Mark Otto's avatar
dist    
Mark Otto committed
4229
  }
XhmikosR's avatar
XhmikosR committed
4230

XhmikosR's avatar
XhmikosR committed
4231
  .py-xl-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4232
4233
4234
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
XhmikosR's avatar
XhmikosR committed
4235

XhmikosR's avatar
XhmikosR committed
4236
  .py-xl-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4237
    padding-top: 0.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4238
4239
    padding-bottom: 0.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
4240

XhmikosR's avatar
XhmikosR committed
4241
  .py-xl-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4242
4243
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4244
  }
XhmikosR's avatar
XhmikosR committed
4245

XhmikosR's avatar
XhmikosR committed
4246
  .py-xl-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4247
4248
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4249
  }
XhmikosR's avatar
XhmikosR committed
4250

XhmikosR's avatar
XhmikosR committed
4251
  .py-xl-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4252
4253
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4254
  }
XhmikosR's avatar
XhmikosR committed
4255

XhmikosR's avatar
XhmikosR committed
4256
  .pt-xl-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4257
    padding-top: 0 !important;
Mark Otto's avatar
dist    
Mark Otto committed
4258
  }
XhmikosR's avatar
XhmikosR committed
4259

XhmikosR's avatar
XhmikosR committed
4260
  .pt-xl-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4261
    padding-top: 0.25rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4262
  }
XhmikosR's avatar
XhmikosR committed
4263

XhmikosR's avatar
XhmikosR committed
4264
  .pt-xl-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4265
    padding-top: 0.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4266
  }
XhmikosR's avatar
XhmikosR committed
4267

XhmikosR's avatar
XhmikosR committed
4268
  .pt-xl-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4269
    padding-top: 1rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4270
  }
XhmikosR's avatar
XhmikosR committed
4271

XhmikosR's avatar
XhmikosR committed
4272
  .pt-xl-4 {
Mark Otto's avatar
dist    
Mark Otto committed
4273
4274
    padding-top: 1.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
4275

XhmikosR's avatar
XhmikosR committed
4276
  .pt-xl-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4277
    padding-top: 3rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4278
  }
XhmikosR's avatar
XhmikosR committed
4279

XhmikosR's avatar
XhmikosR committed
4280
  .pr-xl-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4281
    padding-right: 0 !important;
Mark Otto's avatar
dist    
Mark Otto committed
4282
  }
XhmikosR's avatar
XhmikosR committed
4283

XhmikosR's avatar
XhmikosR committed
4284
  .pr-xl-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4285
    padding-right: 0.25rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4286
  }
XhmikosR's avatar
XhmikosR committed
4287

XhmikosR's avatar
XhmikosR committed
4288
  .pr-xl-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4289
4290
    padding-right: 0.5rem !important;
  }
XhmikosR's avatar
XhmikosR committed
4291

XhmikosR's avatar
XhmikosR committed
4292
  .pr-xl-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4293
    padding-right: 1rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4294
  }
XhmikosR's avatar
XhmikosR committed
4295

XhmikosR's avatar
XhmikosR committed
4296
  .pr-xl-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4297
    padding-right: 1.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4298
  }
XhmikosR's avatar
XhmikosR committed
4299

XhmikosR's avatar
XhmikosR committed
4300
  .pr-xl-5 {
Mark Otto's avatar
dist    
Mark Otto committed
4301
4302
    padding-right: 3rem !important;
  }
XhmikosR's avatar
XhmikosR committed
4303

XhmikosR's avatar
XhmikosR committed
4304
  .pb-xl-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4305
    padding-bottom: 0 !important;
Mark Otto's avatar
dist    
Mark Otto committed
4306
  }
XhmikosR's avatar
XhmikosR committed
4307

XhmikosR's avatar
XhmikosR committed
4308
  .pb-xl-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4309
    padding-bottom: 0.25rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4310
  }
XhmikosR's avatar
XhmikosR committed
4311

XhmikosR's avatar
XhmikosR committed
4312
  .pb-xl-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4313
    padding-bottom: 0.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4314
  }
XhmikosR's avatar
XhmikosR committed
4315

XhmikosR's avatar
XhmikosR committed
4316
  .pb-xl-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4317
    padding-bottom: 1rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4318
  }
XhmikosR's avatar
XhmikosR committed
4319

XhmikosR's avatar
XhmikosR committed
4320
  .pb-xl-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4321
    padding-bottom: 1.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4322
  }
XhmikosR's avatar
XhmikosR committed
4323

XhmikosR's avatar
XhmikosR committed
4324
  .pb-xl-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4325
    padding-bottom: 3rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4326
  }
XhmikosR's avatar
XhmikosR committed
4327

XhmikosR's avatar
XhmikosR committed
4328
  .pl-xl-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4329
    padding-left: 0 !important;
Mark Otto's avatar
dist    
Mark Otto committed
4330
  }
XhmikosR's avatar
XhmikosR committed
4331

XhmikosR's avatar
XhmikosR committed
4332
  .pl-xl-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4333
    padding-left: 0.25rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4334
  }
XhmikosR's avatar
XhmikosR committed
4335

XhmikosR's avatar
XhmikosR committed
4336
  .pl-xl-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4337
    padding-left: 0.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4338
  }
XhmikosR's avatar
XhmikosR committed
4339

XhmikosR's avatar
XhmikosR committed
4340
  .pl-xl-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4341
    padding-left: 1rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4342
  }
XhmikosR's avatar
XhmikosR committed
4343

XhmikosR's avatar
XhmikosR committed
4344
  .pl-xl-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4345
    padding-left: 1.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4346
  }
XhmikosR's avatar
XhmikosR committed
4347

XhmikosR's avatar
XhmikosR committed
4348
  .pl-xl-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4349
    padding-left: 3rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4350
  }
Mark Otto's avatar
dist v5    
Mark Otto committed
4351
}
XhmikosR's avatar
XhmikosR committed
4352
4353
@media (min-width: 1400px) {
  .d-xxl-inline {
Mark Otto's avatar
dist v5    
Mark Otto committed
4354
    display: inline !important;
Mark Otto's avatar
dist    
Mark Otto committed
4355
  }
XhmikosR's avatar
XhmikosR committed
4356

XhmikosR's avatar
XhmikosR committed
4357
  .d-xxl-inline-block {
Mark Otto's avatar
dist v5    
Mark Otto committed
4358
    display: inline-block !important;
Mark Otto's avatar
dist    
Mark Otto committed
4359
  }
XhmikosR's avatar
XhmikosR committed
4360

XhmikosR's avatar
XhmikosR committed
4361
  .d-xxl-block {
Mark Otto's avatar
dist v5    
Mark Otto committed
4362
    display: block !important;
Mark Otto's avatar
dist    
Mark Otto committed
4363
  }
XhmikosR's avatar
XhmikosR committed
4364
4365
4366
4367
4368

  .d-xxl-grid {
    display: grid !important;
  }

XhmikosR's avatar
XhmikosR committed
4369
  .d-xxl-table {
Mark Otto's avatar
dist v5    
Mark Otto committed
4370
    display: table !important;
Mark Otto's avatar
dist    
Mark Otto committed
4371
  }
XhmikosR's avatar
XhmikosR committed
4372

XhmikosR's avatar
XhmikosR committed
4373
  .d-xxl-table-row {
Mark Otto's avatar
dist v5    
Mark Otto committed
4374
    display: table-row !important;
Mark Otto's avatar
dist    
Mark Otto committed
4375
  }
XhmikosR's avatar
XhmikosR committed
4376

XhmikosR's avatar
XhmikosR committed
4377
  .d-xxl-table-cell {
Mark Otto's avatar
dist v5    
Mark Otto committed
4378
    display: table-cell !important;
Mark Otto's avatar
dist    
Mark Otto committed
4379
  }
XhmikosR's avatar
XhmikosR committed
4380

XhmikosR's avatar
XhmikosR committed
4381
  .d-xxl-flex {
Mark Otto's avatar
dist v5    
Mark Otto committed
4382
    display: flex !important;
Mark Otto's avatar
dist    
Mark Otto committed
4383
  }
XhmikosR's avatar
XhmikosR committed
4384

XhmikosR's avatar
XhmikosR committed
4385
  .d-xxl-inline-flex {
Mark Otto's avatar
dist v5    
Mark Otto committed
4386
    display: inline-flex !important;
Mark Otto's avatar
dist    
Mark Otto committed
4387
  }
XhmikosR's avatar
XhmikosR committed
4388

XhmikosR's avatar
XhmikosR committed
4389
4390
4391
  .d-xxl-none {
    display: none !important;
  }
XhmikosR's avatar
XhmikosR committed
4392

XhmikosR's avatar
XhmikosR committed
4393
  .flex-xxl-fill {
Mark Otto's avatar
dist v5    
Mark Otto committed
4394
    flex: 1 1 auto !important;
Mark Otto's avatar
dist    
Mark Otto committed
4395
  }
XhmikosR's avatar
XhmikosR committed
4396

XhmikosR's avatar
XhmikosR committed
4397
  .flex-xxl-row {
Mark Otto's avatar
dist v5    
Mark Otto committed
4398
    flex-direction: row !important;
Mark Otto's avatar
dist    
Mark Otto committed
4399
  }
XhmikosR's avatar
XhmikosR committed
4400

XhmikosR's avatar
XhmikosR committed
4401
  .flex-xxl-column {
Mark Otto's avatar
dist v5    
Mark Otto committed
4402
    flex-direction: column !important;
Mark Otto's avatar
dist    
Mark Otto committed
4403
  }
XhmikosR's avatar
XhmikosR committed
4404

XhmikosR's avatar
XhmikosR committed
4405
  .flex-xxl-row-reverse {
Mark Otto's avatar
dist v5    
Mark Otto committed
4406
    flex-direction: row-reverse !important;
Mark Otto's avatar
dist    
Mark Otto committed
4407
  }
XhmikosR's avatar
XhmikosR committed
4408

XhmikosR's avatar
XhmikosR committed
4409
  .flex-xxl-column-reverse {
Mark Otto's avatar
dist v5    
Mark Otto committed
4410
    flex-direction: column-reverse !important;
Mark Otto's avatar
dist    
Mark Otto committed
4411
  }
XhmikosR's avatar
XhmikosR committed
4412

XhmikosR's avatar
XhmikosR committed
4413
  .flex-xxl-grow-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4414
    flex-grow: 0 !important;
Mark Otto's avatar
dist    
Mark Otto committed
4415
  }
XhmikosR's avatar
XhmikosR committed
4416

XhmikosR's avatar
XhmikosR committed
4417
  .flex-xxl-grow-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4418
    flex-grow: 1 !important;
Mark Otto's avatar
dist    
Mark Otto committed
4419
  }
XhmikosR's avatar
XhmikosR committed
4420

XhmikosR's avatar
XhmikosR committed
4421
4422
4423
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
4424

XhmikosR's avatar
XhmikosR committed
4425
4426
4427
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
XhmikosR's avatar
XhmikosR committed
4428

XhmikosR's avatar
XhmikosR committed
4429
4430
4431
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
XhmikosR's avatar
XhmikosR committed
4432

XhmikosR's avatar
XhmikosR committed
4433
4434
4435
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
XhmikosR's avatar
XhmikosR committed
4436

XhmikosR's avatar
XhmikosR committed
4437
4438
4439
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
XhmikosR's avatar
XhmikosR committed
4440

XhmikosR's avatar
XhmikosR committed
4441
  .justify-content-xxl-start {
Mark Otto's avatar
dist v5    
Mark Otto committed
4442
    justify-content: flex-start !important;
Mark Otto's avatar
dist    
Mark Otto committed
4443
  }
XhmikosR's avatar
XhmikosR committed
4444

XhmikosR's avatar
XhmikosR committed
4445
  .justify-content-xxl-end {
Mark Otto's avatar
dist v5    
Mark Otto committed
4446
    justify-content: flex-end !important;
Mark Otto's avatar
dist    
Mark Otto committed
4447
  }
XhmikosR's avatar
XhmikosR committed
4448

XhmikosR's avatar
XhmikosR committed
4449
  .justify-content-xxl-center {
Mark Otto's avatar
dist v5    
Mark Otto committed
4450
    justify-content: center !important;
Mark Otto's avatar
dist    
Mark Otto committed
4451
  }
XhmikosR's avatar
XhmikosR committed
4452

XhmikosR's avatar
XhmikosR committed
4453
  .justify-content-xxl-between {
Mark Otto's avatar
dist v5    
Mark Otto committed
4454
    justify-content: space-between !important;
Mark Otto's avatar
dist    
Mark Otto committed
4455
  }
XhmikosR's avatar
XhmikosR committed
4456

XhmikosR's avatar
XhmikosR committed
4457
  .justify-content-xxl-around {
Mark Otto's avatar
dist v5    
Mark Otto committed
4458
    justify-content: space-around !important;
Mark Otto's avatar
dist    
Mark Otto committed
4459
  }
XhmikosR's avatar
XhmikosR committed
4460

Mark Otto's avatar
Mark Otto committed
4461
4462
4463
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
XhmikosR's avatar
XhmikosR committed
4464

XhmikosR's avatar
XhmikosR committed
4465
  .align-items-xxl-start {
Mark Otto's avatar
dist v5    
Mark Otto committed
4466
    align-items: flex-start !important;
Mark Otto's avatar
dist    
Mark Otto committed
4467
  }
XhmikosR's avatar
XhmikosR committed
4468

XhmikosR's avatar
XhmikosR committed
4469
  .align-items-xxl-end {
Mark Otto's avatar
dist v5    
Mark Otto committed
4470
    align-items: flex-end !important;
Mark Otto's avatar
dist    
Mark Otto committed
4471
  }
XhmikosR's avatar
XhmikosR committed
4472

XhmikosR's avatar
XhmikosR committed
4473
  .align-items-xxl-center {
Mark Otto's avatar
dist v5    
Mark Otto committed
4474
    align-items: center !important;
Mark Otto's avatar
dist    
Mark Otto committed
4475
  }
XhmikosR's avatar
XhmikosR committed
4476

XhmikosR's avatar
XhmikosR committed
4477
  .align-items-xxl-baseline {
Mark Otto's avatar
dist v5    
Mark Otto committed
4478
    align-items: baseline !important;
Mark Otto's avatar
dist    
Mark Otto committed
4479
  }
XhmikosR's avatar
XhmikosR committed
4480

XhmikosR's avatar
XhmikosR committed
4481
  .align-items-xxl-stretch {
Mark Otto's avatar
dist v5    
Mark Otto committed
4482
    align-items: stretch !important;
Mark Otto's avatar
dist    
Mark Otto committed
4483
  }
XhmikosR's avatar
XhmikosR committed
4484

XhmikosR's avatar
XhmikosR committed
4485
  .align-content-xxl-start {
Mark Otto's avatar
dist v5    
Mark Otto committed
4486
    align-content: flex-start !important;
Mark Otto's avatar
dist    
Mark Otto committed
4487
  }
XhmikosR's avatar
XhmikosR committed
4488

XhmikosR's avatar
XhmikosR committed
4489
  .align-content-xxl-end {
Mark Otto's avatar
dist v5    
Mark Otto committed
4490
    align-content: flex-end !important;
Mark Otto's avatar
dist    
Mark Otto committed
4491
  }
XhmikosR's avatar
XhmikosR committed
4492

XhmikosR's avatar
XhmikosR committed
4493
  .align-content-xxl-center {
Mark Otto's avatar
dist v5    
Mark Otto committed
4494
    align-content: center !important;
Mark Otto's avatar
dist    
Mark Otto committed
4495
  }
XhmikosR's avatar
XhmikosR committed
4496

XhmikosR's avatar
XhmikosR committed
4497
  .align-content-xxl-between {
Mark Otto's avatar
dist v5    
Mark Otto committed
4498
    align-content: space-between !important;
Mark Otto's avatar
dist    
Mark Otto committed
4499
  }
XhmikosR's avatar
XhmikosR committed
4500

XhmikosR's avatar
XhmikosR committed
4501
  .align-content-xxl-around {
Mark Otto's avatar
dist v5    
Mark Otto committed
4502
    align-content: space-around !important;
Mark Otto's avatar
dist    
Mark Otto committed
4503
  }
XhmikosR's avatar
XhmikosR committed
4504

XhmikosR's avatar
XhmikosR committed
4505
  .align-content-xxl-stretch {
Mark Otto's avatar
dist v5    
Mark Otto committed
4506
    align-content: stretch !important;
Mark Otto's avatar
dist    
Mark Otto committed
4507
  }
XhmikosR's avatar
XhmikosR committed
4508

XhmikosR's avatar
XhmikosR committed
4509
  .align-self-xxl-auto {
Mark Otto's avatar
dist v5    
Mark Otto committed
4510
    align-self: auto !important;
Mark Otto's avatar
dist    
Mark Otto committed
4511
  }
XhmikosR's avatar
XhmikosR committed
4512

XhmikosR's avatar
XhmikosR committed
4513
  .align-self-xxl-start {
Mark Otto's avatar
dist v5    
Mark Otto committed
4514
    align-self: flex-start !important;
Mark Otto's avatar
dist    
Mark Otto committed
4515
  }
XhmikosR's avatar
XhmikosR committed
4516

XhmikosR's avatar
XhmikosR committed
4517
  .align-self-xxl-end {
Mark Otto's avatar
dist v5    
Mark Otto committed
4518
    align-self: flex-end !important;
Mark Otto's avatar
dist    
Mark Otto committed
4519
  }
XhmikosR's avatar
XhmikosR committed
4520

XhmikosR's avatar
XhmikosR committed
4521
  .align-self-xxl-center {
Mark Otto's avatar
dist v5    
Mark Otto committed
4522
    align-self: center !important;
Mark Otto's avatar
dist    
Mark Otto committed
4523
  }
XhmikosR's avatar
XhmikosR committed
4524

XhmikosR's avatar
XhmikosR committed
4525
  .align-self-xxl-baseline {
Mark Otto's avatar
dist v5    
Mark Otto committed
4526
    align-self: baseline !important;
Mark Otto's avatar
dist    
Mark Otto committed
4527
  }
XhmikosR's avatar
XhmikosR committed
4528

XhmikosR's avatar
XhmikosR committed
4529
  .align-self-xxl-stretch {
Mark Otto's avatar
dist v5    
Mark Otto committed
4530
    align-self: stretch !important;
Mark Otto's avatar
dist    
Mark Otto committed
4531
  }
XhmikosR's avatar
XhmikosR committed
4532

XhmikosR's avatar
XhmikosR committed
4533
  .order-xxl-first {
Mark Otto's avatar
dist v5    
Mark Otto committed
4534
    order: -1 !important;
Mark Otto's avatar
dist    
Mark Otto committed
4535
  }
XhmikosR's avatar
XhmikosR committed
4536

XhmikosR's avatar
XhmikosR committed
4537
  .order-xxl-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4538
    order: 0 !important;
Mark Otto's avatar
dist    
Mark Otto committed
4539
  }
XhmikosR's avatar
XhmikosR committed
4540

XhmikosR's avatar
XhmikosR committed
4541
  .order-xxl-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4542
    order: 1 !important;
Mark Otto's avatar
dist    
Mark Otto committed
4543
  }
XhmikosR's avatar
XhmikosR committed
4544

XhmikosR's avatar
XhmikosR committed
4545
  .order-xxl-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4546
    order: 2 !important;
Mark Otto's avatar
dist    
Mark Otto committed
4547
  }
XhmikosR's avatar
XhmikosR committed
4548

XhmikosR's avatar
XhmikosR committed
4549
  .order-xxl-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4550
    order: 3 !important;
Mark Otto's avatar
dist    
Mark Otto committed
4551
  }
XhmikosR's avatar
XhmikosR committed
4552

XhmikosR's avatar
XhmikosR committed
4553
  .order-xxl-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4554
    order: 4 !important;
Mark Otto's avatar
dist    
Mark Otto committed
4555
  }
XhmikosR's avatar
XhmikosR committed
4556

XhmikosR's avatar
XhmikosR committed
4557
  .order-xxl-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4558
4559
    order: 5 !important;
  }
XhmikosR's avatar
XhmikosR committed
4560

XhmikosR's avatar
XhmikosR committed
4561
  .order-xxl-last {
Mark Otto's avatar
dist v5    
Mark Otto committed
4562
    order: 6 !important;
Mark Otto's avatar
dist    
Mark Otto committed
4563
  }
XhmikosR's avatar
XhmikosR committed
4564

XhmikosR's avatar
XhmikosR committed
4565
  .m-xxl-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4566
    margin: 0 !important;
Mark Otto's avatar
dist    
Mark Otto committed
4567
  }
XhmikosR's avatar
XhmikosR committed
4568

XhmikosR's avatar
XhmikosR committed
4569
  .m-xxl-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4570
    margin: 0.25rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4571
  }
XhmikosR's avatar
XhmikosR committed
4572

XhmikosR's avatar
XhmikosR committed
4573
  .m-xxl-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4574
    margin: 0.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4575
  }
XhmikosR's avatar
XhmikosR committed
4576

XhmikosR's avatar
XhmikosR committed
4577
  .m-xxl-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4578
    margin: 1rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4579
  }
XhmikosR's avatar
XhmikosR committed
4580

XhmikosR's avatar
XhmikosR committed
4581
  .m-xxl-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4582
    margin: 1.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4583
  }
XhmikosR's avatar
XhmikosR committed
4584

XhmikosR's avatar
XhmikosR committed
4585
  .m-xxl-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4586
    margin: 3rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4587
  }
XhmikosR's avatar
XhmikosR committed
4588

XhmikosR's avatar
XhmikosR committed
4589
  .m-xxl-auto {
Mark Otto's avatar
dist v5    
Mark Otto committed
4590
    margin: auto !important;
Mark Otto's avatar
dist    
Mark Otto committed
4591
  }
XhmikosR's avatar
XhmikosR committed
4592

XhmikosR's avatar
XhmikosR committed
4593
  .mx-xxl-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4594
4595
    margin-right: 0 !important;
    margin-left: 0 !important;
Mark Otto's avatar
dist    
Mark Otto committed
4596
  }
XhmikosR's avatar
XhmikosR committed
4597

XhmikosR's avatar
XhmikosR committed
4598
  .mx-xxl-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4599
4600
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4601
  }
XhmikosR's avatar
XhmikosR committed
4602

XhmikosR's avatar
XhmikosR committed
4603
  .mx-xxl-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4604
4605
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4606
  }
XhmikosR's avatar
XhmikosR committed
4607

XhmikosR's avatar
XhmikosR committed
4608
  .mx-xxl-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4609
4610
    margin-right: 1rem !important;
    margin-left: 1rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4611
  }
XhmikosR's avatar
XhmikosR committed
4612

XhmikosR's avatar
XhmikosR committed
4613
  .mx-xxl-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4614
4615
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4616
  }
XhmikosR's avatar
XhmikosR committed
4617

XhmikosR's avatar
XhmikosR committed
4618
  .mx-xxl-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4619
4620
    margin-right: 3rem !important;
    margin-left: 3rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4621
  }
XhmikosR's avatar
XhmikosR committed
4622

XhmikosR's avatar
XhmikosR committed
4623
  .mx-xxl-auto {
Mark Otto's avatar
dist v5    
Mark Otto committed
4624
4625
    margin-right: auto !important;
    margin-left: auto !important;
Mark Otto's avatar
dist    
Mark Otto committed
4626
  }
XhmikosR's avatar
XhmikosR committed
4627

XhmikosR's avatar
XhmikosR committed
4628
  .my-xxl-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4629
4630
    margin-top: 0 !important;
    margin-bottom: 0 !important;
Mark Otto's avatar
dist    
Mark Otto committed
4631
  }
XhmikosR's avatar
XhmikosR committed
4632

XhmikosR's avatar
XhmikosR committed
4633
  .my-xxl-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4634
4635
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4636
  }
XhmikosR's avatar
XhmikosR committed
4637

XhmikosR's avatar
XhmikosR committed
4638
  .my-xxl-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4639
4640
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4641
  }
XhmikosR's avatar
XhmikosR committed
4642

XhmikosR's avatar
XhmikosR committed
4643
  .my-xxl-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4644
4645
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4646
  }
XhmikosR's avatar
XhmikosR committed
4647

XhmikosR's avatar
XhmikosR committed
4648
  .my-xxl-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4649
4650
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4651
  }
XhmikosR's avatar
XhmikosR committed
4652

XhmikosR's avatar
XhmikosR committed
4653
  .my-xxl-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4654
4655
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4656
  }
XhmikosR's avatar
XhmikosR committed
4657

XhmikosR's avatar
XhmikosR committed
4658
  .my-xxl-auto {
Mark Otto's avatar
dist v5    
Mark Otto committed
4659
4660
    margin-top: auto !important;
    margin-bottom: auto !important;
Mark Otto's avatar
dist    
Mark Otto committed
4661
  }
XhmikosR's avatar
XhmikosR committed
4662

XhmikosR's avatar
XhmikosR committed
4663
  .mt-xxl-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4664
    margin-top: 0 !important;
Mark Otto's avatar
dist    
Mark Otto committed
4665
  }
XhmikosR's avatar
XhmikosR committed
4666

XhmikosR's avatar
XhmikosR committed
4667
  .mt-xxl-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4668
    margin-top: 0.25rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4669
  }
XhmikosR's avatar
XhmikosR committed
4670

XhmikosR's avatar
XhmikosR committed
4671
  .mt-xxl-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4672
    margin-top: 0.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4673
  }
XhmikosR's avatar
XhmikosR committed
4674

XhmikosR's avatar
XhmikosR committed
4675
  .mt-xxl-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4676
    margin-top: 1rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4677
  }
XhmikosR's avatar
XhmikosR committed
4678

XhmikosR's avatar
XhmikosR committed
4679
  .mt-xxl-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4680
    margin-top: 1.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4681
  }
XhmikosR's avatar
XhmikosR committed
4682

XhmikosR's avatar
XhmikosR committed
4683
  .mt-xxl-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4684
    margin-top: 3rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4685
  }
XhmikosR's avatar
XhmikosR committed
4686

XhmikosR's avatar
XhmikosR committed
4687
  .mt-xxl-auto {
Mark Otto's avatar
dist v5    
Mark Otto committed
4688
    margin-top: auto !important;
Mark Otto's avatar
dist    
Mark Otto committed
4689
  }
XhmikosR's avatar
XhmikosR committed
4690

XhmikosR's avatar
XhmikosR committed
4691
  .mr-xxl-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4692
    margin-right: 0 !important;
Mark Otto's avatar
dist    
Mark Otto committed
4693
  }
XhmikosR's avatar
XhmikosR committed
4694

XhmikosR's avatar
XhmikosR committed
4695
  .mr-xxl-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4696
    margin-right: 0.25rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4697
  }
XhmikosR's avatar
XhmikosR committed
4698

XhmikosR's avatar
XhmikosR committed
4699
  .mr-xxl-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4700
    margin-right: 0.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4701
  }
XhmikosR's avatar
XhmikosR committed
4702

XhmikosR's avatar
XhmikosR committed
4703
  .mr-xxl-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4704
    margin-right: 1rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4705
  }
XhmikosR's avatar
XhmikosR committed
4706

XhmikosR's avatar
XhmikosR committed
4707
  .mr-xxl-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4708
    margin-right: 1.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4709
  }
XhmikosR's avatar
XhmikosR committed
4710

XhmikosR's avatar
XhmikosR committed
4711
  .mr-xxl-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4712
    margin-right: 3rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4713
  }
XhmikosR's avatar
XhmikosR committed
4714

XhmikosR's avatar
XhmikosR committed
4715
  .mr-xxl-auto {
Mark Otto's avatar
dist v5    
Mark Otto committed
4716
    margin-right: auto !important;
Mark Otto's avatar
dist    
Mark Otto committed
4717
  }
XhmikosR's avatar
XhmikosR committed
4718

XhmikosR's avatar
XhmikosR committed
4719
  .mb-xxl-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4720
    margin-bottom: 0 !important;
Mark Otto's avatar
dist    
Mark Otto committed
4721
  }
XhmikosR's avatar
XhmikosR committed
4722

XhmikosR's avatar
XhmikosR committed
4723
  .mb-xxl-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4724
    margin-bottom: 0.25rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4725
  }
XhmikosR's avatar
XhmikosR committed
4726

XhmikosR's avatar
XhmikosR committed
4727
  .mb-xxl-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4728
    margin-bottom: 0.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4729
  }
XhmikosR's avatar
XhmikosR committed
4730

XhmikosR's avatar
XhmikosR committed
4731
  .mb-xxl-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4732
    margin-bottom: 1rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4733
  }
XhmikosR's avatar
XhmikosR committed
4734

XhmikosR's avatar
XhmikosR committed
4735
  .mb-xxl-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4736
    margin-bottom: 1.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4737
  }
XhmikosR's avatar
XhmikosR committed
4738

XhmikosR's avatar
XhmikosR committed
4739
  .mb-xxl-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4740
    margin-bottom: 3rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4741
  }
XhmikosR's avatar
XhmikosR committed
4742

XhmikosR's avatar
XhmikosR committed
4743
  .mb-xxl-auto {
Mark Otto's avatar
dist v5    
Mark Otto committed
4744
    margin-bottom: auto !important;
Mark Otto's avatar
dist    
Mark Otto committed
4745
  }
XhmikosR's avatar
XhmikosR committed
4746

XhmikosR's avatar
XhmikosR committed
4747
  .ml-xxl-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4748
    margin-left: 0 !important;
Mark Otto's avatar
dist    
Mark Otto committed
4749
  }
XhmikosR's avatar
XhmikosR committed
4750

XhmikosR's avatar
XhmikosR committed
4751
  .ml-xxl-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4752
    margin-left: 0.25rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4753
  }
XhmikosR's avatar
XhmikosR committed
4754

XhmikosR's avatar
XhmikosR committed
4755
  .ml-xxl-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4756
    margin-left: 0.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4757
  }
XhmikosR's avatar
XhmikosR committed
4758

XhmikosR's avatar
XhmikosR committed
4759
  .ml-xxl-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4760
    margin-left: 1rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4761
  }
XhmikosR's avatar
XhmikosR committed
4762

XhmikosR's avatar
XhmikosR committed
4763
  .ml-xxl-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4764
    margin-left: 1.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4765
  }
XhmikosR's avatar
XhmikosR committed
4766

XhmikosR's avatar
XhmikosR committed
4767
  .ml-xxl-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4768
    margin-left: 3rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4769
  }
XhmikosR's avatar
XhmikosR committed
4770

XhmikosR's avatar
XhmikosR committed
4771
  .ml-xxl-auto {
Mark Otto's avatar
dist v5    
Mark Otto committed
4772
    margin-left: auto !important;
Mark Otto's avatar
dist    
Mark Otto committed
4773
  }
XhmikosR's avatar
XhmikosR committed
4774

XhmikosR's avatar
XhmikosR committed
4775
  .p-xxl-0 {
Mark Otto's avatar
dist    
Mark Otto committed
4776
4777
    padding: 0 !important;
  }
XhmikosR's avatar
XhmikosR committed
4778

XhmikosR's avatar
XhmikosR committed
4779
  .p-xxl-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4780
    padding: 0.25rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4781
  }
XhmikosR's avatar
XhmikosR committed
4782

XhmikosR's avatar
XhmikosR committed
4783
  .p-xxl-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4784
    padding: 0.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4785
  }
XhmikosR's avatar
XhmikosR committed
4786

XhmikosR's avatar
XhmikosR committed
4787
  .p-xxl-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4788
    padding: 1rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4789
  }
XhmikosR's avatar
XhmikosR committed
4790

XhmikosR's avatar
XhmikosR committed
4791
  .p-xxl-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4792
    padding: 1.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4793
  }
XhmikosR's avatar
XhmikosR committed
4794

XhmikosR's avatar
XhmikosR committed
4795
  .p-xxl-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4796
    padding: 3rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4797
  }
XhmikosR's avatar
XhmikosR committed
4798

XhmikosR's avatar
XhmikosR committed
4799
  .px-xxl-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4800
4801
    padding-right: 0 !important;
    padding-left: 0 !important;
Mark Otto's avatar
dist    
Mark Otto committed
4802
  }
XhmikosR's avatar
XhmikosR committed
4803

XhmikosR's avatar
XhmikosR committed
4804
  .px-xxl-1 {
Mark Otto's avatar
dist    
Mark Otto committed
4805
4806
4807
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
XhmikosR's avatar
XhmikosR committed
4808

XhmikosR's avatar
XhmikosR committed
4809
  .px-xxl-2 {
Mark Otto's avatar
dist    
Mark Otto committed
4810
    padding-right: 0.5rem !important;
Mark Otto's avatar
dist v5    
Mark Otto committed
4811
    padding-left: 0.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4812
  }
XhmikosR's avatar
XhmikosR committed
4813

XhmikosR's avatar
XhmikosR committed
4814
  .px-xxl-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4815
4816
    padding-right: 1rem !important;
    padding-left: 1rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4817
  }
XhmikosR's avatar
XhmikosR committed
4818

XhmikosR's avatar
XhmikosR committed
4819
  .px-xxl-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4820
4821
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4822
  }
XhmikosR's avatar
XhmikosR committed
4823

XhmikosR's avatar
XhmikosR committed
4824
  .px-xxl-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4825
4826
    padding-right: 3rem !important;
    padding-left: 3rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4827
  }
XhmikosR's avatar
XhmikosR committed
4828

XhmikosR's avatar
XhmikosR committed
4829
  .py-xxl-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4830
4831
    padding-top: 0 !important;
    padding-bottom: 0 !important;
Mark Otto's avatar
dist    
Mark Otto committed
4832
  }
XhmikosR's avatar
XhmikosR committed
4833

XhmikosR's avatar
XhmikosR committed
4834
  .py-xxl-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4835
4836
4837
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
XhmikosR's avatar
XhmikosR committed
4838

XhmikosR's avatar
XhmikosR committed
4839
  .py-xxl-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4840
4841
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4842
  }
XhmikosR's avatar
XhmikosR committed
4843

XhmikosR's avatar
XhmikosR committed
4844
  .py-xxl-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4845
    padding-top: 1rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4846
4847
    padding-bottom: 1rem !important;
  }
XhmikosR's avatar
XhmikosR committed
4848

XhmikosR's avatar
XhmikosR committed
4849
  .py-xxl-4 {
Mark Otto's avatar
dist    
Mark Otto committed
4850
    padding-top: 1.5rem !important;
Mark Otto's avatar
dist v5    
Mark Otto committed
4851
    padding-bottom: 1.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4852
  }
XhmikosR's avatar
XhmikosR committed
4853

XhmikosR's avatar
XhmikosR committed
4854
  .py-xxl-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4855
4856
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4857
  }
XhmikosR's avatar
XhmikosR committed
4858

XhmikosR's avatar
XhmikosR committed
4859
  .pt-xxl-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4860
    padding-top: 0 !important;
Mark Otto's avatar
dist    
Mark Otto committed
4861
  }
XhmikosR's avatar
XhmikosR committed
4862

XhmikosR's avatar
XhmikosR committed
4863
  .pt-xxl-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4864
    padding-top: 0.25rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4865
  }
XhmikosR's avatar
XhmikosR committed
4866

XhmikosR's avatar
XhmikosR committed
4867
  .pt-xxl-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4868
    padding-top: 0.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4869
  }
XhmikosR's avatar
XhmikosR committed
4870

XhmikosR's avatar
XhmikosR committed
4871
  .pt-xxl-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4872
    padding-top: 1rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4873
  }
XhmikosR's avatar
XhmikosR committed
4874

XhmikosR's avatar
XhmikosR committed
4875
  .pt-xxl-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4876
    padding-top: 1.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4877
  }
XhmikosR's avatar
XhmikosR committed
4878

XhmikosR's avatar
XhmikosR committed
4879
  .pt-xxl-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4880
    padding-top: 3rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4881
  }
XhmikosR's avatar
XhmikosR committed
4882

XhmikosR's avatar
XhmikosR committed
4883
  .pr-xxl-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4884
    padding-right: 0 !important;
Mark Otto's avatar
dist    
Mark Otto committed
4885
  }
XhmikosR's avatar
XhmikosR committed
4886

XhmikosR's avatar
XhmikosR committed
4887
  .pr-xxl-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4888
    padding-right: 0.25rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4889
  }
XhmikosR's avatar
XhmikosR committed
4890

XhmikosR's avatar
XhmikosR committed
4891
  .pr-xxl-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4892
    padding-right: 0.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4893
  }
XhmikosR's avatar
XhmikosR committed
4894

XhmikosR's avatar
XhmikosR committed
4895
  .pr-xxl-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4896
    padding-right: 1rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4897
  }
XhmikosR's avatar
XhmikosR committed
4898

XhmikosR's avatar
XhmikosR committed
4899
  .pr-xxl-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4900
    padding-right: 1.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4901
  }
XhmikosR's avatar
XhmikosR committed
4902

XhmikosR's avatar
XhmikosR committed
4903
  .pr-xxl-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4904
    padding-right: 3rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4905
  }
XhmikosR's avatar
XhmikosR committed
4906

XhmikosR's avatar
XhmikosR committed
4907
  .pb-xxl-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4908
    padding-bottom: 0 !important;
Mark Otto's avatar
dist    
Mark Otto committed
4909
  }
XhmikosR's avatar
XhmikosR committed
4910

XhmikosR's avatar
XhmikosR committed
4911
  .pb-xxl-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4912
    padding-bottom: 0.25rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4913
  }
XhmikosR's avatar
XhmikosR committed
4914

XhmikosR's avatar
XhmikosR committed
4915
  .pb-xxl-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4916
    padding-bottom: 0.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4917
  }
XhmikosR's avatar
XhmikosR committed
4918

XhmikosR's avatar
XhmikosR committed
4919
  .pb-xxl-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4920
    padding-bottom: 1rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4921
  }
XhmikosR's avatar
XhmikosR committed
4922

XhmikosR's avatar
XhmikosR committed
4923
  .pb-xxl-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4924
    padding-bottom: 1.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4925
  }
XhmikosR's avatar
XhmikosR committed
4926

XhmikosR's avatar
XhmikosR committed
4927
  .pb-xxl-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4928
    padding-bottom: 3rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4929
  }
XhmikosR's avatar
XhmikosR committed
4930

XhmikosR's avatar
XhmikosR committed
4931
  .pl-xxl-0 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4932
    padding-left: 0 !important;
Mark Otto's avatar
dist    
Mark Otto committed
4933
  }
XhmikosR's avatar
XhmikosR committed
4934

XhmikosR's avatar
XhmikosR committed
4935
  .pl-xxl-1 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4936
    padding-left: 0.25rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4937
  }
XhmikosR's avatar
XhmikosR committed
4938

XhmikosR's avatar
XhmikosR committed
4939
  .pl-xxl-2 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4940
    padding-left: 0.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4941
  }
XhmikosR's avatar
XhmikosR committed
4942

XhmikosR's avatar
XhmikosR committed
4943
  .pl-xxl-3 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4944
    padding-left: 1rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4945
  }
XhmikosR's avatar
XhmikosR committed
4946

XhmikosR's avatar
XhmikosR committed
4947
  .pl-xxl-4 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4948
    padding-left: 1.5rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4949
  }
XhmikosR's avatar
XhmikosR committed
4950

XhmikosR's avatar
XhmikosR committed
4951
  .pl-xxl-5 {
Mark Otto's avatar
dist v5    
Mark Otto committed
4952
    padding-left: 3rem !important;
Mark Otto's avatar
dist    
Mark Otto committed
4953
  }
Mark Otto's avatar
dist v5    
Mark Otto committed
4954
4955
4956
4957
}
@media print {
  .d-print-inline {
    display: inline !important;
Mark Otto's avatar
dist    
Mark Otto committed
4958
  }
XhmikosR's avatar
XhmikosR committed
4959

Mark Otto's avatar
dist v5    
Mark Otto committed
4960
4961
  .d-print-inline-block {
    display: inline-block !important;
Mark Otto's avatar
dist    
Mark Otto committed
4962
  }
XhmikosR's avatar
XhmikosR committed
4963

Mark Otto's avatar
dist v5    
Mark Otto committed
4964
4965
  .d-print-block {
    display: block !important;
Mark Otto's avatar
dist    
Mark Otto committed
4966
  }
XhmikosR's avatar
XhmikosR committed
4967
4968
4969
4970
4971

  .d-print-grid {
    display: grid !important;
  }

Mark Otto's avatar
dist v5    
Mark Otto committed
4972
4973
  .d-print-table {
    display: table !important;
Mark Otto's avatar
dist    
Mark Otto committed
4974
  }
XhmikosR's avatar
XhmikosR committed
4975

Mark Otto's avatar
dist v5    
Mark Otto committed
4976
4977
  .d-print-table-row {
    display: table-row !important;
Mark Otto's avatar
dist    
Mark Otto committed
4978
  }
XhmikosR's avatar
XhmikosR committed
4979

Mark Otto's avatar
dist v5    
Mark Otto committed
4980
4981
  .d-print-table-cell {
    display: table-cell !important;
Mark Otto's avatar
dist    
Mark Otto committed
4982
  }
XhmikosR's avatar
XhmikosR committed
4983

Mark Otto's avatar
dist v5    
Mark Otto committed
4984
4985
  .d-print-flex {
    display: flex !important;
Mark Otto's avatar
dist    
Mark Otto committed
4986
  }
XhmikosR's avatar
XhmikosR committed
4987

Mark Otto's avatar
dist v5    
Mark Otto committed
4988
4989
  .d-print-inline-flex {
    display: inline-flex !important;
Mark Otto's avatar
dist    
Mark Otto committed
4990
  }
XhmikosR's avatar
XhmikosR committed
4991

XhmikosR's avatar
XhmikosR committed
4992
4993
4994
  .d-print-none {
    display: none !important;
  }
Mark Otto's avatar
dist    
Mark Otto committed
4995
}
XhmikosR's avatar
XhmikosR committed
4996

4997
/*# sourceMappingURL=bootstrap-grid.css.map */