Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 760 | blopes | 1 | /*! |
| 2 | * Bootstrap Grid v4.5.3 (https://getbootstrap.com/) |
||
| 3 | * Copyright 2011-2020 The Bootstrap Authors |
||
| 4 | * Copyright 2011-2020 Twitter, Inc. |
||
| 5 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) |
||
| 6 | */ |
||
| 7 | html { |
||
| 8 | box-sizing: border-box; |
||
| 9 | -ms-overflow-style: scrollbar; |
||
| 10 | } |
||
| 11 | |||
| 12 | *, |
||
| 13 | *::before, |
||
| 14 | *::after { |
||
| 15 | box-sizing: inherit; |
||
| 16 | } |
||
| 17 | |||
| 18 | .container, |
||
| 19 | .container-fluid, |
||
| 20 | .container-sm, |
||
| 21 | .container-md, |
||
| 22 | .container-lg, |
||
| 23 | .container-xl { |
||
| 24 | width: 100%; |
||
| 25 | padding-right: 15px; |
||
| 26 | padding-left: 15px; |
||
| 27 | margin-right: auto; |
||
| 28 | margin-left: auto; |
||
| 29 | } |
||
| 30 | |||
| 31 | @media (min-width: 576px) { |
||
| 32 | .container, .container-sm { |
||
| 33 | max-width: 540px; |
||
| 34 | } |
||
| 35 | } |
||
| 36 | |||
| 37 | @media (min-width: 768px) { |
||
| 38 | .container, .container-sm, .container-md { |
||
| 39 | max-width: 720px; |
||
| 40 | } |
||
| 41 | } |
||
| 42 | |||
| 43 | @media (min-width: 992px) { |
||
| 44 | .container, .container-sm, .container-md, .container-lg { |
||
| 45 | max-width: 960px; |
||
| 46 | } |
||
| 47 | } |
||
| 48 | |||
| 49 | @media (min-width: 1200px) { |
||
| 50 | .container, .container-sm, .container-md, .container-lg, .container-xl { |
||
| 51 | max-width: 1140px; |
||
| 52 | } |
||
| 53 | } |
||
| 54 | |||
| 55 | .row { |
||
| 56 | display: -ms-flexbox; |
||
| 57 | display: flex; |
||
| 58 | -ms-flex-wrap: wrap; |
||
| 59 | flex-wrap: wrap; |
||
| 60 | margin-right: -15px; |
||
| 61 | margin-left: -15px; |
||
| 62 | } |
||
| 63 | |||
| 64 | .no-gutters { |
||
| 65 | margin-right: 0; |
||
| 66 | margin-left: 0; |
||
| 67 | } |
||
| 68 | |||
| 69 | .no-gutters > .col, |
||
| 70 | .no-gutters > [class*="col-"] { |
||
| 71 | padding-right: 0; |
||
| 72 | padding-left: 0; |
||
| 73 | } |
||
| 74 | |||
| 75 | .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, |
||
| 76 | .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, |
||
| 77 | .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, |
||
| 78 | .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, |
||
| 79 | .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, |
||
| 80 | .col-xl-auto { |
||
| 81 | position: relative; |
||
| 82 | width: 100%; |
||
| 83 | padding-right: 15px; |
||
| 84 | padding-left: 15px; |
||
| 85 | } |
||
| 86 | |||
| 87 | .col { |
||
| 88 | -ms-flex-preferred-size: 0; |
||
| 89 | flex-basis: 0; |
||
| 90 | -ms-flex-positive: 1; |
||
| 91 | flex-grow: 1; |
||
| 92 | max-width: 100%; |
||
| 93 | } |
||
| 94 | |||
| 95 | .row-cols-1 > * { |
||
| 96 | -ms-flex: 0 0 100%; |
||
| 97 | flex: 0 0 100%; |
||
| 98 | max-width: 100%; |
||
| 99 | } |
||
| 100 | |||
| 101 | .row-cols-2 > * { |
||
| 102 | -ms-flex: 0 0 50%; |
||
| 103 | flex: 0 0 50%; |
||
| 104 | max-width: 50%; |
||
| 105 | } |
||
| 106 | |||
| 107 | .row-cols-3 > * { |
||
| 108 | -ms-flex: 0 0 33.333333%; |
||
| 109 | flex: 0 0 33.333333%; |
||
| 110 | max-width: 33.333333%; |
||
| 111 | } |
||
| 112 | |||
| 113 | .row-cols-4 > * { |
||
| 114 | -ms-flex: 0 0 25%; |
||
| 115 | flex: 0 0 25%; |
||
| 116 | max-width: 25%; |
||
| 117 | } |
||
| 118 | |||
| 119 | .row-cols-5 > * { |
||
| 120 | -ms-flex: 0 0 20%; |
||
| 121 | flex: 0 0 20%; |
||
| 122 | max-width: 20%; |
||
| 123 | } |
||
| 124 | |||
| 125 | .row-cols-6 > * { |
||
| 126 | -ms-flex: 0 0 16.666667%; |
||
| 127 | flex: 0 0 16.666667%; |
||
| 128 | max-width: 16.666667%; |
||
| 129 | } |
||
| 130 | |||
| 131 | .col-auto { |
||
| 132 | -ms-flex: 0 0 auto; |
||
| 133 | flex: 0 0 auto; |
||
| 134 | width: auto; |
||
| 135 | max-width: 100%; |
||
| 136 | } |
||
| 137 | |||
| 138 | .col-1 { |
||
| 139 | -ms-flex: 0 0 8.333333%; |
||
| 140 | flex: 0 0 8.333333%; |
||
| 141 | max-width: 8.333333%; |
||
| 142 | } |
||
| 143 | |||
| 144 | .col-2 { |
||
| 145 | -ms-flex: 0 0 16.666667%; |
||
| 146 | flex: 0 0 16.666667%; |
||
| 147 | max-width: 16.666667%; |
||
| 148 | } |
||
| 149 | |||
| 150 | .col-3 { |
||
| 151 | -ms-flex: 0 0 25%; |
||
| 152 | flex: 0 0 25%; |
||
| 153 | max-width: 25%; |
||
| 154 | } |
||
| 155 | |||
| 156 | .col-4 { |
||
| 157 | -ms-flex: 0 0 33.333333%; |
||
| 158 | flex: 0 0 33.333333%; |
||
| 159 | max-width: 33.333333%; |
||
| 160 | } |
||
| 161 | |||
| 162 | .col-5 { |
||
| 163 | -ms-flex: 0 0 41.666667%; |
||
| 164 | flex: 0 0 41.666667%; |
||
| 165 | max-width: 41.666667%; |
||
| 166 | } |
||
| 167 | |||
| 168 | .col-6 { |
||
| 169 | -ms-flex: 0 0 50%; |
||
| 170 | flex: 0 0 50%; |
||
| 171 | max-width: 50%; |
||
| 172 | } |
||
| 173 | |||
| 174 | .col-7 { |
||
| 175 | -ms-flex: 0 0 58.333333%; |
||
| 176 | flex: 0 0 58.333333%; |
||
| 177 | max-width: 58.333333%; |
||
| 178 | } |
||
| 179 | |||
| 180 | .col-8 { |
||
| 181 | -ms-flex: 0 0 66.666667%; |
||
| 182 | flex: 0 0 66.666667%; |
||
| 183 | max-width: 66.666667%; |
||
| 184 | } |
||
| 185 | |||
| 186 | .col-9 { |
||
| 187 | -ms-flex: 0 0 75%; |
||
| 188 | flex: 0 0 75%; |
||
| 189 | max-width: 75%; |
||
| 190 | } |
||
| 191 | |||
| 192 | .col-10 { |
||
| 193 | -ms-flex: 0 0 83.333333%; |
||
| 194 | flex: 0 0 83.333333%; |
||
| 195 | max-width: 83.333333%; |
||
| 196 | } |
||
| 197 | |||
| 198 | .col-11 { |
||
| 199 | -ms-flex: 0 0 91.666667%; |
||
| 200 | flex: 0 0 91.666667%; |
||
| 201 | max-width: 91.666667%; |
||
| 202 | } |
||
| 203 | |||
| 204 | .col-12 { |
||
| 205 | -ms-flex: 0 0 100%; |
||
| 206 | flex: 0 0 100%; |
||
| 207 | max-width: 100%; |
||
| 208 | } |
||
| 209 | |||
| 210 | .order-first { |
||
| 211 | -ms-flex-order: -1; |
||
| 212 | order: -1; |
||
| 213 | } |
||
| 214 | |||
| 215 | .order-last { |
||
| 216 | -ms-flex-order: 13; |
||
| 217 | order: 13; |
||
| 218 | } |
||
| 219 | |||
| 220 | .order-0 { |
||
| 221 | -ms-flex-order: 0; |
||
| 222 | order: 0; |
||
| 223 | } |
||
| 224 | |||
| 225 | .order-1 { |
||
| 226 | -ms-flex-order: 1; |
||
| 227 | order: 1; |
||
| 228 | } |
||
| 229 | |||
| 230 | .order-2 { |
||
| 231 | -ms-flex-order: 2; |
||
| 232 | order: 2; |
||
| 233 | } |
||
| 234 | |||
| 235 | .order-3 { |
||
| 236 | -ms-flex-order: 3; |
||
| 237 | order: 3; |
||
| 238 | } |
||
| 239 | |||
| 240 | .order-4 { |
||
| 241 | -ms-flex-order: 4; |
||
| 242 | order: 4; |
||
| 243 | } |
||
| 244 | |||
| 245 | .order-5 { |
||
| 246 | -ms-flex-order: 5; |
||
| 247 | order: 5; |
||
| 248 | } |
||
| 249 | |||
| 250 | .order-6 { |
||
| 251 | -ms-flex-order: 6; |
||
| 252 | order: 6; |
||
| 253 | } |
||
| 254 | |||
| 255 | .order-7 { |
||
| 256 | -ms-flex-order: 7; |
||
| 257 | order: 7; |
||
| 258 | } |
||
| 259 | |||
| 260 | .order-8 { |
||
| 261 | -ms-flex-order: 8; |
||
| 262 | order: 8; |
||
| 263 | } |
||
| 264 | |||
| 265 | .order-9 { |
||
| 266 | -ms-flex-order: 9; |
||
| 267 | order: 9; |
||
| 268 | } |
||
| 269 | |||
| 270 | .order-10 { |
||
| 271 | -ms-flex-order: 10; |
||
| 272 | order: 10; |
||
| 273 | } |
||
| 274 | |||
| 275 | .order-11 { |
||
| 276 | -ms-flex-order: 11; |
||
| 277 | order: 11; |
||
| 278 | } |
||
| 279 | |||
| 280 | .order-12 { |
||
| 281 | -ms-flex-order: 12; |
||
| 282 | order: 12; |
||
| 283 | } |
||
| 284 | |||
| 285 | .offset-1 { |
||
| 286 | margin-left: 8.333333%; |
||
| 287 | } |
||
| 288 | |||
| 289 | .offset-2 { |
||
| 290 | margin-left: 16.666667%; |
||
| 291 | } |
||
| 292 | |||
| 293 | .offset-3 { |
||
| 294 | margin-left: 25%; |
||
| 295 | } |
||
| 296 | |||
| 297 | .offset-4 { |
||
| 298 | margin-left: 33.333333%; |
||
| 299 | } |
||
| 300 | |||
| 301 | .offset-5 { |
||
| 302 | margin-left: 41.666667%; |
||
| 303 | } |
||
| 304 | |||
| 305 | .offset-6 { |
||
| 306 | margin-left: 50%; |
||
| 307 | } |
||
| 308 | |||
| 309 | .offset-7 { |
||
| 310 | margin-left: 58.333333%; |
||
| 311 | } |
||
| 312 | |||
| 313 | .offset-8 { |
||
| 314 | margin-left: 66.666667%; |
||
| 315 | } |
||
| 316 | |||
| 317 | .offset-9 { |
||
| 318 | margin-left: 75%; |
||
| 319 | } |
||
| 320 | |||
| 321 | .offset-10 { |
||
| 322 | margin-left: 83.333333%; |
||
| 323 | } |
||
| 324 | |||
| 325 | .offset-11 { |
||
| 326 | margin-left: 91.666667%; |
||
| 327 | } |
||
| 328 | |||
| 329 | @media (min-width: 576px) { |
||
| 330 | .col-sm { |
||
| 331 | -ms-flex-preferred-size: 0; |
||
| 332 | flex-basis: 0; |
||
| 333 | -ms-flex-positive: 1; |
||
| 334 | flex-grow: 1; |
||
| 335 | max-width: 100%; |
||
| 336 | } |
||
| 337 | .row-cols-sm-1 > * { |
||
| 338 | -ms-flex: 0 0 100%; |
||
| 339 | flex: 0 0 100%; |
||
| 340 | max-width: 100%; |
||
| 341 | } |
||
| 342 | .row-cols-sm-2 > * { |
||
| 343 | -ms-flex: 0 0 50%; |
||
| 344 | flex: 0 0 50%; |
||
| 345 | max-width: 50%; |
||
| 346 | } |
||
| 347 | .row-cols-sm-3 > * { |
||
| 348 | -ms-flex: 0 0 33.333333%; |
||
| 349 | flex: 0 0 33.333333%; |
||
| 350 | max-width: 33.333333%; |
||
| 351 | } |
||
| 352 | .row-cols-sm-4 > * { |
||
| 353 | -ms-flex: 0 0 25%; |
||
| 354 | flex: 0 0 25%; |
||
| 355 | max-width: 25%; |
||
| 356 | } |
||
| 357 | .row-cols-sm-5 > * { |
||
| 358 | -ms-flex: 0 0 20%; |
||
| 359 | flex: 0 0 20%; |
||
| 360 | max-width: 20%; |
||
| 361 | } |
||
| 362 | .row-cols-sm-6 > * { |
||
| 363 | -ms-flex: 0 0 16.666667%; |
||
| 364 | flex: 0 0 16.666667%; |
||
| 365 | max-width: 16.666667%; |
||
| 366 | } |
||
| 367 | .col-sm-auto { |
||
| 368 | -ms-flex: 0 0 auto; |
||
| 369 | flex: 0 0 auto; |
||
| 370 | width: auto; |
||
| 371 | max-width: 100%; |
||
| 372 | } |
||
| 373 | .col-sm-1 { |
||
| 374 | -ms-flex: 0 0 8.333333%; |
||
| 375 | flex: 0 0 8.333333%; |
||
| 376 | max-width: 8.333333%; |
||
| 377 | } |
||
| 378 | .col-sm-2 { |
||
| 379 | -ms-flex: 0 0 16.666667%; |
||
| 380 | flex: 0 0 16.666667%; |
||
| 381 | max-width: 16.666667%; |
||
| 382 | } |
||
| 383 | .col-sm-3 { |
||
| 384 | -ms-flex: 0 0 25%; |
||
| 385 | flex: 0 0 25%; |
||
| 386 | max-width: 25%; |
||
| 387 | } |
||
| 388 | .col-sm-4 { |
||
| 389 | -ms-flex: 0 0 33.333333%; |
||
| 390 | flex: 0 0 33.333333%; |
||
| 391 | max-width: 33.333333%; |
||
| 392 | } |
||
| 393 | .col-sm-5 { |
||
| 394 | -ms-flex: 0 0 41.666667%; |
||
| 395 | flex: 0 0 41.666667%; |
||
| 396 | max-width: 41.666667%; |
||
| 397 | } |
||
| 398 | .col-sm-6 { |
||
| 399 | -ms-flex: 0 0 50%; |
||
| 400 | flex: 0 0 50%; |
||
| 401 | max-width: 50%; |
||
| 402 | } |
||
| 403 | .col-sm-7 { |
||
| 404 | -ms-flex: 0 0 58.333333%; |
||
| 405 | flex: 0 0 58.333333%; |
||
| 406 | max-width: 58.333333%; |
||
| 407 | } |
||
| 408 | .col-sm-8 { |
||
| 409 | -ms-flex: 0 0 66.666667%; |
||
| 410 | flex: 0 0 66.666667%; |
||
| 411 | max-width: 66.666667%; |
||
| 412 | } |
||
| 413 | .col-sm-9 { |
||
| 414 | -ms-flex: 0 0 75%; |
||
| 415 | flex: 0 0 75%; |
||
| 416 | max-width: 75%; |
||
| 417 | } |
||
| 418 | .col-sm-10 { |
||
| 419 | -ms-flex: 0 0 83.333333%; |
||
| 420 | flex: 0 0 83.333333%; |
||
| 421 | max-width: 83.333333%; |
||
| 422 | } |
||
| 423 | .col-sm-11 { |
||
| 424 | -ms-flex: 0 0 91.666667%; |
||
| 425 | flex: 0 0 91.666667%; |
||
| 426 | max-width: 91.666667%; |
||
| 427 | } |
||
| 428 | .col-sm-12 { |
||
| 429 | -ms-flex: 0 0 100%; |
||
| 430 | flex: 0 0 100%; |
||
| 431 | max-width: 100%; |
||
| 432 | } |
||
| 433 | .order-sm-first { |
||
| 434 | -ms-flex-order: -1; |
||
| 435 | order: -1; |
||
| 436 | } |
||
| 437 | .order-sm-last { |
||
| 438 | -ms-flex-order: 13; |
||
| 439 | order: 13; |
||
| 440 | } |
||
| 441 | .order-sm-0 { |
||
| 442 | -ms-flex-order: 0; |
||
| 443 | order: 0; |
||
| 444 | } |
||
| 445 | .order-sm-1 { |
||
| 446 | -ms-flex-order: 1; |
||
| 447 | order: 1; |
||
| 448 | } |
||
| 449 | .order-sm-2 { |
||
| 450 | -ms-flex-order: 2; |
||
| 451 | order: 2; |
||
| 452 | } |
||
| 453 | .order-sm-3 { |
||
| 454 | -ms-flex-order: 3; |
||
| 455 | order: 3; |
||
| 456 | } |
||
| 457 | .order-sm-4 { |
||
| 458 | -ms-flex-order: 4; |
||
| 459 | order: 4; |
||
| 460 | } |
||
| 461 | .order-sm-5 { |
||
| 462 | -ms-flex-order: 5; |
||
| 463 | order: 5; |
||
| 464 | } |
||
| 465 | .order-sm-6 { |
||
| 466 | -ms-flex-order: 6; |
||
| 467 | order: 6; |
||
| 468 | } |
||
| 469 | .order-sm-7 { |
||
| 470 | -ms-flex-order: 7; |
||
| 471 | order: 7; |
||
| 472 | } |
||
| 473 | .order-sm-8 { |
||
| 474 | -ms-flex-order: 8; |
||
| 475 | order: 8; |
||
| 476 | } |
||
| 477 | .order-sm-9 { |
||
| 478 | -ms-flex-order: 9; |
||
| 479 | order: 9; |
||
| 480 | } |
||
| 481 | .order-sm-10 { |
||
| 482 | -ms-flex-order: 10; |
||
| 483 | order: 10; |
||
| 484 | } |
||
| 485 | .order-sm-11 { |
||
| 486 | -ms-flex-order: 11; |
||
| 487 | order: 11; |
||
| 488 | } |
||
| 489 | .order-sm-12 { |
||
| 490 | -ms-flex-order: 12; |
||
| 491 | order: 12; |
||
| 492 | } |
||
| 493 | .offset-sm-0 { |
||
| 494 | margin-left: 0; |
||
| 495 | } |
||
| 496 | .offset-sm-1 { |
||
| 497 | margin-left: 8.333333%; |
||
| 498 | } |
||
| 499 | .offset-sm-2 { |
||
| 500 | margin-left: 16.666667%; |
||
| 501 | } |
||
| 502 | .offset-sm-3 { |
||
| 503 | margin-left: 25%; |
||
| 504 | } |
||
| 505 | .offset-sm-4 { |
||
| 506 | margin-left: 33.333333%; |
||
| 507 | } |
||
| 508 | .offset-sm-5 { |
||
| 509 | margin-left: 41.666667%; |
||
| 510 | } |
||
| 511 | .offset-sm-6 { |
||
| 512 | margin-left: 50%; |
||
| 513 | } |
||
| 514 | .offset-sm-7 { |
||
| 515 | margin-left: 58.333333%; |
||
| 516 | } |
||
| 517 | .offset-sm-8 { |
||
| 518 | margin-left: 66.666667%; |
||
| 519 | } |
||
| 520 | .offset-sm-9 { |
||
| 521 | margin-left: 75%; |
||
| 522 | } |
||
| 523 | .offset-sm-10 { |
||
| 524 | margin-left: 83.333333%; |
||
| 525 | } |
||
| 526 | .offset-sm-11 { |
||
| 527 | margin-left: 91.666667%; |
||
| 528 | } |
||
| 529 | } |
||
| 530 | |||
| 531 | @media (min-width: 768px) { |
||
| 532 | .col-md { |
||
| 533 | -ms-flex-preferred-size: 0; |
||
| 534 | flex-basis: 0; |
||
| 535 | -ms-flex-positive: 1; |
||
| 536 | flex-grow: 1; |
||
| 537 | max-width: 100%; |
||
| 538 | } |
||
| 539 | .row-cols-md-1 > * { |
||
| 540 | -ms-flex: 0 0 100%; |
||
| 541 | flex: 0 0 100%; |
||
| 542 | max-width: 100%; |
||
| 543 | } |
||
| 544 | .row-cols-md-2 > * { |
||
| 545 | -ms-flex: 0 0 50%; |
||
| 546 | flex: 0 0 50%; |
||
| 547 | max-width: 50%; |
||
| 548 | } |
||
| 549 | .row-cols-md-3 > * { |
||
| 550 | -ms-flex: 0 0 33.333333%; |
||
| 551 | flex: 0 0 33.333333%; |
||
| 552 | max-width: 33.333333%; |
||
| 553 | } |
||
| 554 | .row-cols-md-4 > * { |
||
| 555 | -ms-flex: 0 0 25%; |
||
| 556 | flex: 0 0 25%; |
||
| 557 | max-width: 25%; |
||
| 558 | } |
||
| 559 | .row-cols-md-5 > * { |
||
| 560 | -ms-flex: 0 0 20%; |
||
| 561 | flex: 0 0 20%; |
||
| 562 | max-width: 20%; |
||
| 563 | } |
||
| 564 | .row-cols-md-6 > * { |
||
| 565 | -ms-flex: 0 0 16.666667%; |
||
| 566 | flex: 0 0 16.666667%; |
||
| 567 | max-width: 16.666667%; |
||
| 568 | } |
||
| 569 | .col-md-auto { |
||
| 570 | -ms-flex: 0 0 auto; |
||
| 571 | flex: 0 0 auto; |
||
| 572 | width: auto; |
||
| 573 | max-width: 100%; |
||
| 574 | } |
||
| 575 | .col-md-1 { |
||
| 576 | -ms-flex: 0 0 8.333333%; |
||
| 577 | flex: 0 0 8.333333%; |
||
| 578 | max-width: 8.333333%; |
||
| 579 | } |
||
| 580 | .col-md-2 { |
||
| 581 | -ms-flex: 0 0 16.666667%; |
||
| 582 | flex: 0 0 16.666667%; |
||
| 583 | max-width: 16.666667%; |
||
| 584 | } |
||
| 585 | .col-md-3 { |
||
| 586 | -ms-flex: 0 0 25%; |
||
| 587 | flex: 0 0 25%; |
||
| 588 | max-width: 25%; |
||
| 589 | } |
||
| 590 | .col-md-4 { |
||
| 591 | -ms-flex: 0 0 33.333333%; |
||
| 592 | flex: 0 0 33.333333%; |
||
| 593 | max-width: 33.333333%; |
||
| 594 | } |
||
| 595 | .col-md-5 { |
||
| 596 | -ms-flex: 0 0 41.666667%; |
||
| 597 | flex: 0 0 41.666667%; |
||
| 598 | max-width: 41.666667%; |
||
| 599 | } |
||
| 600 | .col-md-6 { |
||
| 601 | -ms-flex: 0 0 50%; |
||
| 602 | flex: 0 0 50%; |
||
| 603 | max-width: 50%; |
||
| 604 | } |
||
| 605 | .col-md-7 { |
||
| 606 | -ms-flex: 0 0 58.333333%; |
||
| 607 | flex: 0 0 58.333333%; |
||
| 608 | max-width: 58.333333%; |
||
| 609 | } |
||
| 610 | .col-md-8 { |
||
| 611 | -ms-flex: 0 0 66.666667%; |
||
| 612 | flex: 0 0 66.666667%; |
||
| 613 | max-width: 66.666667%; |
||
| 614 | } |
||
| 615 | .col-md-9 { |
||
| 616 | -ms-flex: 0 0 75%; |
||
| 617 | flex: 0 0 75%; |
||
| 618 | max-width: 75%; |
||
| 619 | } |
||
| 620 | .col-md-10 { |
||
| 621 | -ms-flex: 0 0 83.333333%; |
||
| 622 | flex: 0 0 83.333333%; |
||
| 623 | max-width: 83.333333%; |
||
| 624 | } |
||
| 625 | .col-md-11 { |
||
| 626 | -ms-flex: 0 0 91.666667%; |
||
| 627 | flex: 0 0 91.666667%; |
||
| 628 | max-width: 91.666667%; |
||
| 629 | } |
||
| 630 | .col-md-12 { |
||
| 631 | -ms-flex: 0 0 100%; |
||
| 632 | flex: 0 0 100%; |
||
| 633 | max-width: 100%; |
||
| 634 | } |
||
| 635 | .order-md-first { |
||
| 636 | -ms-flex-order: -1; |
||
| 637 | order: -1; |
||
| 638 | } |
||
| 639 | .order-md-last { |
||
| 640 | -ms-flex-order: 13; |
||
| 641 | order: 13; |
||
| 642 | } |
||
| 643 | .order-md-0 { |
||
| 644 | -ms-flex-order: 0; |
||
| 645 | order: 0; |
||
| 646 | } |
||
| 647 | .order-md-1 { |
||
| 648 | -ms-flex-order: 1; |
||
| 649 | order: 1; |
||
| 650 | } |
||
| 651 | .order-md-2 { |
||
| 652 | -ms-flex-order: 2; |
||
| 653 | order: 2; |
||
| 654 | } |
||
| 655 | .order-md-3 { |
||
| 656 | -ms-flex-order: 3; |
||
| 657 | order: 3; |
||
| 658 | } |
||
| 659 | .order-md-4 { |
||
| 660 | -ms-flex-order: 4; |
||
| 661 | order: 4; |
||
| 662 | } |
||
| 663 | .order-md-5 { |
||
| 664 | -ms-flex-order: 5; |
||
| 665 | order: 5; |
||
| 666 | } |
||
| 667 | .order-md-6 { |
||
| 668 | -ms-flex-order: 6; |
||
| 669 | order: 6; |
||
| 670 | } |
||
| 671 | .order-md-7 { |
||
| 672 | -ms-flex-order: 7; |
||
| 673 | order: 7; |
||
| 674 | } |
||
| 675 | .order-md-8 { |
||
| 676 | -ms-flex-order: 8; |
||
| 677 | order: 8; |
||
| 678 | } |
||
| 679 | .order-md-9 { |
||
| 680 | -ms-flex-order: 9; |
||
| 681 | order: 9; |
||
| 682 | } |
||
| 683 | .order-md-10 { |
||
| 684 | -ms-flex-order: 10; |
||
| 685 | order: 10; |
||
| 686 | } |
||
| 687 | .order-md-11 { |
||
| 688 | -ms-flex-order: 11; |
||
| 689 | order: 11; |
||
| 690 | } |
||
| 691 | .order-md-12 { |
||
| 692 | -ms-flex-order: 12; |
||
| 693 | order: 12; |
||
| 694 | } |
||
| 695 | .offset-md-0 { |
||
| 696 | margin-left: 0; |
||
| 697 | } |
||
| 698 | .offset-md-1 { |
||
| 699 | margin-left: 8.333333%; |
||
| 700 | } |
||
| 701 | .offset-md-2 { |
||
| 702 | margin-left: 16.666667%; |
||
| 703 | } |
||
| 704 | .offset-md-3 { |
||
| 705 | margin-left: 25%; |
||
| 706 | } |
||
| 707 | .offset-md-4 { |
||
| 708 | margin-left: 33.333333%; |
||
| 709 | } |
||
| 710 | .offset-md-5 { |
||
| 711 | margin-left: 41.666667%; |
||
| 712 | } |
||
| 713 | .offset-md-6 { |
||
| 714 | margin-left: 50%; |
||
| 715 | } |
||
| 716 | .offset-md-7 { |
||
| 717 | margin-left: 58.333333%; |
||
| 718 | } |
||
| 719 | .offset-md-8 { |
||
| 720 | margin-left: 66.666667%; |
||
| 721 | } |
||
| 722 | .offset-md-9 { |
||
| 723 | margin-left: 75%; |
||
| 724 | } |
||
| 725 | .offset-md-10 { |
||
| 726 | margin-left: 83.333333%; |
||
| 727 | } |
||
| 728 | .offset-md-11 { |
||
| 729 | margin-left: 91.666667%; |
||
| 730 | } |
||
| 731 | } |
||
| 732 | |||
| 733 | @media (min-width: 992px) { |
||
| 734 | .col-lg { |
||
| 735 | -ms-flex-preferred-size: 0; |
||
| 736 | flex-basis: 0; |
||
| 737 | -ms-flex-positive: 1; |
||
| 738 | flex-grow: 1; |
||
| 739 | max-width: 100%; |
||
| 740 | } |
||
| 741 | .row-cols-lg-1 > * { |
||
| 742 | -ms-flex: 0 0 100%; |
||
| 743 | flex: 0 0 100%; |
||
| 744 | max-width: 100%; |
||
| 745 | } |
||
| 746 | .row-cols-lg-2 > * { |
||
| 747 | -ms-flex: 0 0 50%; |
||
| 748 | flex: 0 0 50%; |
||
| 749 | max-width: 50%; |
||
| 750 | } |
||
| 751 | .row-cols-lg-3 > * { |
||
| 752 | -ms-flex: 0 0 33.333333%; |
||
| 753 | flex: 0 0 33.333333%; |
||
| 754 | max-width: 33.333333%; |
||
| 755 | } |
||
| 756 | .row-cols-lg-4 > * { |
||
| 757 | -ms-flex: 0 0 25%; |
||
| 758 | flex: 0 0 25%; |
||
| 759 | max-width: 25%; |
||
| 760 | } |
||
| 761 | .row-cols-lg-5 > * { |
||
| 762 | -ms-flex: 0 0 20%; |
||
| 763 | flex: 0 0 20%; |
||
| 764 | max-width: 20%; |
||
| 765 | } |
||
| 766 | .row-cols-lg-6 > * { |
||
| 767 | -ms-flex: 0 0 16.666667%; |
||
| 768 | flex: 0 0 16.666667%; |
||
| 769 | max-width: 16.666667%; |
||
| 770 | } |
||
| 771 | .col-lg-auto { |
||
| 772 | -ms-flex: 0 0 auto; |
||
| 773 | flex: 0 0 auto; |
||
| 774 | width: auto; |
||
| 775 | max-width: 100%; |
||
| 776 | } |
||
| 777 | .col-lg-1 { |
||
| 778 | -ms-flex: 0 0 8.333333%; |
||
| 779 | flex: 0 0 8.333333%; |
||
| 780 | max-width: 8.333333%; |
||
| 781 | } |
||
| 782 | .col-lg-2 { |
||
| 783 | -ms-flex: 0 0 16.666667%; |
||
| 784 | flex: 0 0 16.666667%; |
||
| 785 | max-width: 16.666667%; |
||
| 786 | } |
||
| 787 | .col-lg-3 { |
||
| 788 | -ms-flex: 0 0 25%; |
||
| 789 | flex: 0 0 25%; |
||
| 790 | max-width: 25%; |
||
| 791 | } |
||
| 792 | .col-lg-4 { |
||
| 793 | -ms-flex: 0 0 33.333333%; |
||
| 794 | flex: 0 0 33.333333%; |
||
| 795 | max-width: 33.333333%; |
||
| 796 | } |
||
| 797 | .col-lg-5 { |
||
| 798 | -ms-flex: 0 0 41.666667%; |
||
| 799 | flex: 0 0 41.666667%; |
||
| 800 | max-width: 41.666667%; |
||
| 801 | } |
||
| 802 | .col-lg-6 { |
||
| 803 | -ms-flex: 0 0 50%; |
||
| 804 | flex: 0 0 50%; |
||
| 805 | max-width: 50%; |
||
| 806 | } |
||
| 807 | .col-lg-7 { |
||
| 808 | -ms-flex: 0 0 58.333333%; |
||
| 809 | flex: 0 0 58.333333%; |
||
| 810 | max-width: 58.333333%; |
||
| 811 | } |
||
| 812 | .col-lg-8 { |
||
| 813 | -ms-flex: 0 0 66.666667%; |
||
| 814 | flex: 0 0 66.666667%; |
||
| 815 | max-width: 66.666667%; |
||
| 816 | } |
||
| 817 | .col-lg-9 { |
||
| 818 | -ms-flex: 0 0 75%; |
||
| 819 | flex: 0 0 75%; |
||
| 820 | max-width: 75%; |
||
| 821 | } |
||
| 822 | .col-lg-10 { |
||
| 823 | -ms-flex: 0 0 83.333333%; |
||
| 824 | flex: 0 0 83.333333%; |
||
| 825 | max-width: 83.333333%; |
||
| 826 | } |
||
| 827 | .col-lg-11 { |
||
| 828 | -ms-flex: 0 0 91.666667%; |
||
| 829 | flex: 0 0 91.666667%; |
||
| 830 | max-width: 91.666667%; |
||
| 831 | } |
||
| 832 | .col-lg-12 { |
||
| 833 | -ms-flex: 0 0 100%; |
||
| 834 | flex: 0 0 100%; |
||
| 835 | max-width: 100%; |
||
| 836 | } |
||
| 837 | .order-lg-first { |
||
| 838 | -ms-flex-order: -1; |
||
| 839 | order: -1; |
||
| 840 | } |
||
| 841 | .order-lg-last { |
||
| 842 | -ms-flex-order: 13; |
||
| 843 | order: 13; |
||
| 844 | } |
||
| 845 | .order-lg-0 { |
||
| 846 | -ms-flex-order: 0; |
||
| 847 | order: 0; |
||
| 848 | } |
||
| 849 | .order-lg-1 { |
||
| 850 | -ms-flex-order: 1; |
||
| 851 | order: 1; |
||
| 852 | } |
||
| 853 | .order-lg-2 { |
||
| 854 | -ms-flex-order: 2; |
||
| 855 | order: 2; |
||
| 856 | } |
||
| 857 | .order-lg-3 { |
||
| 858 | -ms-flex-order: 3; |
||
| 859 | order: 3; |
||
| 860 | } |
||
| 861 | .order-lg-4 { |
||
| 862 | -ms-flex-order: 4; |
||
| 863 | order: 4; |
||
| 864 | } |
||
| 865 | .order-lg-5 { |
||
| 866 | -ms-flex-order: 5; |
||
| 867 | order: 5; |
||
| 868 | } |
||
| 869 | .order-lg-6 { |
||
| 870 | -ms-flex-order: 6; |
||
| 871 | order: 6; |
||
| 872 | } |
||
| 873 | .order-lg-7 { |
||
| 874 | -ms-flex-order: 7; |
||
| 875 | order: 7; |
||
| 876 | } |
||
| 877 | .order-lg-8 { |
||
| 878 | -ms-flex-order: 8; |
||
| 879 | order: 8; |
||
| 880 | } |
||
| 881 | .order-lg-9 { |
||
| 882 | -ms-flex-order: 9; |
||
| 883 | order: 9; |
||
| 884 | } |
||
| 885 | .order-lg-10 { |
||
| 886 | -ms-flex-order: 10; |
||
| 887 | order: 10; |
||
| 888 | } |
||
| 889 | .order-lg-11 { |
||
| 890 | -ms-flex-order: 11; |
||
| 891 | order: 11; |
||
| 892 | } |
||
| 893 | .order-lg-12 { |
||
| 894 | -ms-flex-order: 12; |
||
| 895 | order: 12; |
||
| 896 | } |
||
| 897 | .offset-lg-0 { |
||
| 898 | margin-left: 0; |
||
| 899 | } |
||
| 900 | .offset-lg-1 { |
||
| 901 | margin-left: 8.333333%; |
||
| 902 | } |
||
| 903 | .offset-lg-2 { |
||
| 904 | margin-left: 16.666667%; |
||
| 905 | } |
||
| 906 | .offset-lg-3 { |
||
| 907 | margin-left: 25%; |
||
| 908 | } |
||
| 909 | .offset-lg-4 { |
||
| 910 | margin-left: 33.333333%; |
||
| 911 | } |
||
| 912 | .offset-lg-5 { |
||
| 913 | margin-left: 41.666667%; |
||
| 914 | } |
||
| 915 | .offset-lg-6 { |
||
| 916 | margin-left: 50%; |
||
| 917 | } |
||
| 918 | .offset-lg-7 { |
||
| 919 | margin-left: 58.333333%; |
||
| 920 | } |
||
| 921 | .offset-lg-8 { |
||
| 922 | margin-left: 66.666667%; |
||
| 923 | } |
||
| 924 | .offset-lg-9 { |
||
| 925 | margin-left: 75%; |
||
| 926 | } |
||
| 927 | .offset-lg-10 { |
||
| 928 | margin-left: 83.333333%; |
||
| 929 | } |
||
| 930 | .offset-lg-11 { |
||
| 931 | margin-left: 91.666667%; |
||
| 932 | } |
||
| 933 | } |
||
| 934 | |||
| 935 | @media (min-width: 1200px) { |
||
| 936 | .col-xl { |
||
| 937 | -ms-flex-preferred-size: 0; |
||
| 938 | flex-basis: 0; |
||
| 939 | -ms-flex-positive: 1; |
||
| 940 | flex-grow: 1; |
||
| 941 | max-width: 100%; |
||
| 942 | } |
||
| 943 | .row-cols-xl-1 > * { |
||
| 944 | -ms-flex: 0 0 100%; |
||
| 945 | flex: 0 0 100%; |
||
| 946 | max-width: 100%; |
||
| 947 | } |
||
| 948 | .row-cols-xl-2 > * { |
||
| 949 | -ms-flex: 0 0 50%; |
||
| 950 | flex: 0 0 50%; |
||
| 951 | max-width: 50%; |
||
| 952 | } |
||
| 953 | .row-cols-xl-3 > * { |
||
| 954 | -ms-flex: 0 0 33.333333%; |
||
| 955 | flex: 0 0 33.333333%; |
||
| 956 | max-width: 33.333333%; |
||
| 957 | } |
||
| 958 | .row-cols-xl-4 > * { |
||
| 959 | -ms-flex: 0 0 25%; |
||
| 960 | flex: 0 0 25%; |
||
| 961 | max-width: 25%; |
||
| 962 | } |
||
| 963 | .row-cols-xl-5 > * { |
||
| 964 | -ms-flex: 0 0 20%; |
||
| 965 | flex: 0 0 20%; |
||
| 966 | max-width: 20%; |
||
| 967 | } |
||
| 968 | .row-cols-xl-6 > * { |
||
| 969 | -ms-flex: 0 0 16.666667%; |
||
| 970 | flex: 0 0 16.666667%; |
||
| 971 | max-width: 16.666667%; |
||
| 972 | } |
||
| 973 | .col-xl-auto { |
||
| 974 | -ms-flex: 0 0 auto; |
||
| 975 | flex: 0 0 auto; |
||
| 976 | width: auto; |
||
| 977 | max-width: 100%; |
||
| 978 | } |
||
| 979 | .col-xl-1 { |
||
| 980 | -ms-flex: 0 0 8.333333%; |
||
| 981 | flex: 0 0 8.333333%; |
||
| 982 | max-width: 8.333333%; |
||
| 983 | } |
||
| 984 | .col-xl-2 { |
||
| 985 | -ms-flex: 0 0 16.666667%; |
||
| 986 | flex: 0 0 16.666667%; |
||
| 987 | max-width: 16.666667%; |
||
| 988 | } |
||
| 989 | .col-xl-3 { |
||
| 990 | -ms-flex: 0 0 25%; |
||
| 991 | flex: 0 0 25%; |
||
| 992 | max-width: 25%; |
||
| 993 | } |
||
| 994 | .col-xl-4 { |
||
| 995 | -ms-flex: 0 0 33.333333%; |
||
| 996 | flex: 0 0 33.333333%; |
||
| 997 | max-width: 33.333333%; |
||
| 998 | } |
||
| 999 | .col-xl-5 { |
||
| 1000 | -ms-flex: 0 0 41.666667%; |
||
| 1001 | flex: 0 0 41.666667%; |
||
| 1002 | max-width: 41.666667%; |
||
| 1003 | } |
||
| 1004 | .col-xl-6 { |
||
| 1005 | -ms-flex: 0 0 50%; |
||
| 1006 | flex: 0 0 50%; |
||
| 1007 | max-width: 50%; |
||
| 1008 | } |
||
| 1009 | .col-xl-7 { |
||
| 1010 | -ms-flex: 0 0 58.333333%; |
||
| 1011 | flex: 0 0 58.333333%; |
||
| 1012 | max-width: 58.333333%; |
||
| 1013 | } |
||
| 1014 | .col-xl-8 { |
||
| 1015 | -ms-flex: 0 0 66.666667%; |
||
| 1016 | flex: 0 0 66.666667%; |
||
| 1017 | max-width: 66.666667%; |
||
| 1018 | } |
||
| 1019 | .col-xl-9 { |
||
| 1020 | -ms-flex: 0 0 75%; |
||
| 1021 | flex: 0 0 75%; |
||
| 1022 | max-width: 75%; |
||
| 1023 | } |
||
| 1024 | .col-xl-10 { |
||
| 1025 | -ms-flex: 0 0 83.333333%; |
||
| 1026 | flex: 0 0 83.333333%; |
||
| 1027 | max-width: 83.333333%; |
||
| 1028 | } |
||
| 1029 | .col-xl-11 { |
||
| 1030 | -ms-flex: 0 0 91.666667%; |
||
| 1031 | flex: 0 0 91.666667%; |
||
| 1032 | max-width: 91.666667%; |
||
| 1033 | } |
||
| 1034 | .col-xl-12 { |
||
| 1035 | -ms-flex: 0 0 100%; |
||
| 1036 | flex: 0 0 100%; |
||
| 1037 | max-width: 100%; |
||
| 1038 | } |
||
| 1039 | .order-xl-first { |
||
| 1040 | -ms-flex-order: -1; |
||
| 1041 | order: -1; |
||
| 1042 | } |
||
| 1043 | .order-xl-last { |
||
| 1044 | -ms-flex-order: 13; |
||
| 1045 | order: 13; |
||
| 1046 | } |
||
| 1047 | .order-xl-0 { |
||
| 1048 | -ms-flex-order: 0; |
||
| 1049 | order: 0; |
||
| 1050 | } |
||
| 1051 | .order-xl-1 { |
||
| 1052 | -ms-flex-order: 1; |
||
| 1053 | order: 1; |
||
| 1054 | } |
||
| 1055 | .order-xl-2 { |
||
| 1056 | -ms-flex-order: 2; |
||
| 1057 | order: 2; |
||
| 1058 | } |
||
| 1059 | .order-xl-3 { |
||
| 1060 | -ms-flex-order: 3; |
||
| 1061 | order: 3; |
||
| 1062 | } |
||
| 1063 | .order-xl-4 { |
||
| 1064 | -ms-flex-order: 4; |
||
| 1065 | order: 4; |
||
| 1066 | } |
||
| 1067 | .order-xl-5 { |
||
| 1068 | -ms-flex-order: 5; |
||
| 1069 | order: 5; |
||
| 1070 | } |
||
| 1071 | .order-xl-6 { |
||
| 1072 | -ms-flex-order: 6; |
||
| 1073 | order: 6; |
||
| 1074 | } |
||
| 1075 | .order-xl-7 { |
||
| 1076 | -ms-flex-order: 7; |
||
| 1077 | order: 7; |
||
| 1078 | } |
||
| 1079 | .order-xl-8 { |
||
| 1080 | -ms-flex-order: 8; |
||
| 1081 | order: 8; |
||
| 1082 | } |
||
| 1083 | .order-xl-9 { |
||
| 1084 | -ms-flex-order: 9; |
||
| 1085 | order: 9; |
||
| 1086 | } |
||
| 1087 | .order-xl-10 { |
||
| 1088 | -ms-flex-order: 10; |
||
| 1089 | order: 10; |
||
| 1090 | } |
||
| 1091 | .order-xl-11 { |
||
| 1092 | -ms-flex-order: 11; |
||
| 1093 | order: 11; |
||
| 1094 | } |
||
| 1095 | .order-xl-12 { |
||
| 1096 | -ms-flex-order: 12; |
||
| 1097 | order: 12; |
||
| 1098 | } |
||
| 1099 | .offset-xl-0 { |
||
| 1100 | margin-left: 0; |
||
| 1101 | } |
||
| 1102 | .offset-xl-1 { |
||
| 1103 | margin-left: 8.333333%; |
||
| 1104 | } |
||
| 1105 | .offset-xl-2 { |
||
| 1106 | margin-left: 16.666667%; |
||
| 1107 | } |
||
| 1108 | .offset-xl-3 { |
||
| 1109 | margin-left: 25%; |
||
| 1110 | } |
||
| 1111 | .offset-xl-4 { |
||
| 1112 | margin-left: 33.333333%; |
||
| 1113 | } |
||
| 1114 | .offset-xl-5 { |
||
| 1115 | margin-left: 41.666667%; |
||
| 1116 | } |
||
| 1117 | .offset-xl-6 { |
||
| 1118 | margin-left: 50%; |
||
| 1119 | } |
||
| 1120 | .offset-xl-7 { |
||
| 1121 | margin-left: 58.333333%; |
||
| 1122 | } |
||
| 1123 | .offset-xl-8 { |
||
| 1124 | margin-left: 66.666667%; |
||
| 1125 | } |
||
| 1126 | .offset-xl-9 { |
||
| 1127 | margin-left: 75%; |
||
| 1128 | } |
||
| 1129 | .offset-xl-10 { |
||
| 1130 | margin-left: 83.333333%; |
||
| 1131 | } |
||
| 1132 | .offset-xl-11 { |
||
| 1133 | margin-left: 91.666667%; |
||
| 1134 | } |
||
| 1135 | } |
||
| 1136 | |||
| 1137 | .d-none { |
||
| 1138 | display: none !important; |
||
| 1139 | } |
||
| 1140 | |||
| 1141 | .d-inline { |
||
| 1142 | display: inline !important; |
||
| 1143 | } |
||
| 1144 | |||
| 1145 | .d-inline-block { |
||
| 1146 | display: inline-block !important; |
||
| 1147 | } |
||
| 1148 | |||
| 1149 | .d-block { |
||
| 1150 | display: block !important; |
||
| 1151 | } |
||
| 1152 | |||
| 1153 | .d-table { |
||
| 1154 | display: table !important; |
||
| 1155 | } |
||
| 1156 | |||
| 1157 | .d-table-row { |
||
| 1158 | display: table-row !important; |
||
| 1159 | } |
||
| 1160 | |||
| 1161 | .d-table-cell { |
||
| 1162 | display: table-cell !important; |
||
| 1163 | } |
||
| 1164 | |||
| 1165 | .d-flex { |
||
| 1166 | display: -ms-flexbox !important; |
||
| 1167 | display: flex !important; |
||
| 1168 | } |
||
| 1169 | |||
| 1170 | .d-inline-flex { |
||
| 1171 | display: -ms-inline-flexbox !important; |
||
| 1172 | display: inline-flex !important; |
||
| 1173 | } |
||
| 1174 | |||
| 1175 | @media (min-width: 576px) { |
||
| 1176 | .d-sm-none { |
||
| 1177 | display: none !important; |
||
| 1178 | } |
||
| 1179 | .d-sm-inline { |
||
| 1180 | display: inline !important; |
||
| 1181 | } |
||
| 1182 | .d-sm-inline-block { |
||
| 1183 | display: inline-block !important; |
||
| 1184 | } |
||
| 1185 | .d-sm-block { |
||
| 1186 | display: block !important; |
||
| 1187 | } |
||
| 1188 | .d-sm-table { |
||
| 1189 | display: table !important; |
||
| 1190 | } |
||
| 1191 | .d-sm-table-row { |
||
| 1192 | display: table-row !important; |
||
| 1193 | } |
||
| 1194 | .d-sm-table-cell { |
||
| 1195 | display: table-cell !important; |
||
| 1196 | } |
||
| 1197 | .d-sm-flex { |
||
| 1198 | display: -ms-flexbox !important; |
||
| 1199 | display: flex !important; |
||
| 1200 | } |
||
| 1201 | .d-sm-inline-flex { |
||
| 1202 | display: -ms-inline-flexbox !important; |
||
| 1203 | display: inline-flex !important; |
||
| 1204 | } |
||
| 1205 | } |
||
| 1206 | |||
| 1207 | @media (min-width: 768px) { |
||
| 1208 | .d-md-none { |
||
| 1209 | display: none !important; |
||
| 1210 | } |
||
| 1211 | .d-md-inline { |
||
| 1212 | display: inline !important; |
||
| 1213 | } |
||
| 1214 | .d-md-inline-block { |
||
| 1215 | display: inline-block !important; |
||
| 1216 | } |
||
| 1217 | .d-md-block { |
||
| 1218 | display: block !important; |
||
| 1219 | } |
||
| 1220 | .d-md-table { |
||
| 1221 | display: table !important; |
||
| 1222 | } |
||
| 1223 | .d-md-table-row { |
||
| 1224 | display: table-row !important; |
||
| 1225 | } |
||
| 1226 | .d-md-table-cell { |
||
| 1227 | display: table-cell !important; |
||
| 1228 | } |
||
| 1229 | .d-md-flex { |
||
| 1230 | display: -ms-flexbox !important; |
||
| 1231 | display: flex !important; |
||
| 1232 | } |
||
| 1233 | .d-md-inline-flex { |
||
| 1234 | display: -ms-inline-flexbox !important; |
||
| 1235 | display: inline-flex !important; |
||
| 1236 | } |
||
| 1237 | } |
||
| 1238 | |||
| 1239 | @media (min-width: 992px) { |
||
| 1240 | .d-lg-none { |
||
| 1241 | display: none !important; |
||
| 1242 | } |
||
| 1243 | .d-lg-inline { |
||
| 1244 | display: inline !important; |
||
| 1245 | } |
||
| 1246 | .d-lg-inline-block { |
||
| 1247 | display: inline-block !important; |
||
| 1248 | } |
||
| 1249 | .d-lg-block { |
||
| 1250 | display: block !important; |
||
| 1251 | } |
||
| 1252 | .d-lg-table { |
||
| 1253 | display: table !important; |
||
| 1254 | } |
||
| 1255 | .d-lg-table-row { |
||
| 1256 | display: table-row !important; |
||
| 1257 | } |
||
| 1258 | .d-lg-table-cell { |
||
| 1259 | display: table-cell !important; |
||
| 1260 | } |
||
| 1261 | .d-lg-flex { |
||
| 1262 | display: -ms-flexbox !important; |
||
| 1263 | display: flex !important; |
||
| 1264 | } |
||
| 1265 | .d-lg-inline-flex { |
||
| 1266 | display: -ms-inline-flexbox !important; |
||
| 1267 | display: inline-flex !important; |
||
| 1268 | } |
||
| 1269 | } |
||
| 1270 | |||
| 1271 | @media (min-width: 1200px) { |
||
| 1272 | .d-xl-none { |
||
| 1273 | display: none !important; |
||
| 1274 | } |
||
| 1275 | .d-xl-inline { |
||
| 1276 | display: inline !important; |
||
| 1277 | } |
||
| 1278 | .d-xl-inline-block { |
||
| 1279 | display: inline-block !important; |
||
| 1280 | } |
||
| 1281 | .d-xl-block { |
||
| 1282 | display: block !important; |
||
| 1283 | } |
||
| 1284 | .d-xl-table { |
||
| 1285 | display: table !important; |
||
| 1286 | } |
||
| 1287 | .d-xl-table-row { |
||
| 1288 | display: table-row !important; |
||
| 1289 | } |
||
| 1290 | .d-xl-table-cell { |
||
| 1291 | display: table-cell !important; |
||
| 1292 | } |
||
| 1293 | .d-xl-flex { |
||
| 1294 | display: -ms-flexbox !important; |
||
| 1295 | display: flex !important; |
||
| 1296 | } |
||
| 1297 | .d-xl-inline-flex { |
||
| 1298 | display: -ms-inline-flexbox !important; |
||
| 1299 | display: inline-flex !important; |
||
| 1300 | } |
||
| 1301 | } |
||
| 1302 | |||
| 1303 | @media print { |
||
| 1304 | .d-print-none { |
||
| 1305 | display: none !important; |
||
| 1306 | } |
||
| 1307 | .d-print-inline { |
||
| 1308 | display: inline !important; |
||
| 1309 | } |
||
| 1310 | .d-print-inline-block { |
||
| 1311 | display: inline-block !important; |
||
| 1312 | } |
||
| 1313 | .d-print-block { |
||
| 1314 | display: block !important; |
||
| 1315 | } |
||
| 1316 | .d-print-table { |
||
| 1317 | display: table !important; |
||
| 1318 | } |
||
| 1319 | .d-print-table-row { |
||
| 1320 | display: table-row !important; |
||
| 1321 | } |
||
| 1322 | .d-print-table-cell { |
||
| 1323 | display: table-cell !important; |
||
| 1324 | } |
||
| 1325 | .d-print-flex { |
||
| 1326 | display: -ms-flexbox !important; |
||
| 1327 | display: flex !important; |
||
| 1328 | } |
||
| 1329 | .d-print-inline-flex { |
||
| 1330 | display: -ms-inline-flexbox !important; |
||
| 1331 | display: inline-flex !important; |
||
| 1332 | } |
||
| 1333 | } |
||
| 1334 | |||
| 1335 | .flex-row { |
||
| 1336 | -ms-flex-direction: row !important; |
||
| 1337 | flex-direction: row !important; |
||
| 1338 | } |
||
| 1339 | |||
| 1340 | .flex-column { |
||
| 1341 | -ms-flex-direction: column !important; |
||
| 1342 | flex-direction: column !important; |
||
| 1343 | } |
||
| 1344 | |||
| 1345 | .flex-row-reverse { |
||
| 1346 | -ms-flex-direction: row-reverse !important; |
||
| 1347 | flex-direction: row-reverse !important; |
||
| 1348 | } |
||
| 1349 | |||
| 1350 | .flex-column-reverse { |
||
| 1351 | -ms-flex-direction: column-reverse !important; |
||
| 1352 | flex-direction: column-reverse !important; |
||
| 1353 | } |
||
| 1354 | |||
| 1355 | .flex-wrap { |
||
| 1356 | -ms-flex-wrap: wrap !important; |
||
| 1357 | flex-wrap: wrap !important; |
||
| 1358 | } |
||
| 1359 | |||
| 1360 | .flex-nowrap { |
||
| 1361 | -ms-flex-wrap: nowrap !important; |
||
| 1362 | flex-wrap: nowrap !important; |
||
| 1363 | } |
||
| 1364 | |||
| 1365 | .flex-wrap-reverse { |
||
| 1366 | -ms-flex-wrap: wrap-reverse !important; |
||
| 1367 | flex-wrap: wrap-reverse !important; |
||
| 1368 | } |
||
| 1369 | |||
| 1370 | .flex-fill { |
||
| 1371 | -ms-flex: 1 1 auto !important; |
||
| 1372 | flex: 1 1 auto !important; |
||
| 1373 | } |
||
| 1374 | |||
| 1375 | .flex-grow-0 { |
||
| 1376 | -ms-flex-positive: 0 !important; |
||
| 1377 | flex-grow: 0 !important; |
||
| 1378 | } |
||
| 1379 | |||
| 1380 | .flex-grow-1 { |
||
| 1381 | -ms-flex-positive: 1 !important; |
||
| 1382 | flex-grow: 1 !important; |
||
| 1383 | } |
||
| 1384 | |||
| 1385 | .flex-shrink-0 { |
||
| 1386 | -ms-flex-negative: 0 !important; |
||
| 1387 | flex-shrink: 0 !important; |
||
| 1388 | } |
||
| 1389 | |||
| 1390 | .flex-shrink-1 { |
||
| 1391 | -ms-flex-negative: 1 !important; |
||
| 1392 | flex-shrink: 1 !important; |
||
| 1393 | } |
||
| 1394 | |||
| 1395 | .justify-content-start { |
||
| 1396 | -ms-flex-pack: start !important; |
||
| 1397 | justify-content: flex-start !important; |
||
| 1398 | } |
||
| 1399 | |||
| 1400 | .justify-content-end { |
||
| 1401 | -ms-flex-pack: end !important; |
||
| 1402 | justify-content: flex-end !important; |
||
| 1403 | } |
||
| 1404 | |||
| 1405 | .justify-content-center { |
||
| 1406 | -ms-flex-pack: center !important; |
||
| 1407 | justify-content: center !important; |
||
| 1408 | } |
||
| 1409 | |||
| 1410 | .justify-content-between { |
||
| 1411 | -ms-flex-pack: justify !important; |
||
| 1412 | justify-content: space-between !important; |
||
| 1413 | } |
||
| 1414 | |||
| 1415 | .justify-content-around { |
||
| 1416 | -ms-flex-pack: distribute !important; |
||
| 1417 | justify-content: space-around !important; |
||
| 1418 | } |
||
| 1419 | |||
| 1420 | .align-items-start { |
||
| 1421 | -ms-flex-align: start !important; |
||
| 1422 | align-items: flex-start !important; |
||
| 1423 | } |
||
| 1424 | |||
| 1425 | .align-items-end { |
||
| 1426 | -ms-flex-align: end !important; |
||
| 1427 | align-items: flex-end !important; |
||
| 1428 | } |
||
| 1429 | |||
| 1430 | .align-items-center { |
||
| 1431 | -ms-flex-align: center !important; |
||
| 1432 | align-items: center !important; |
||
| 1433 | } |
||
| 1434 | |||
| 1435 | .align-items-baseline { |
||
| 1436 | -ms-flex-align: baseline !important; |
||
| 1437 | align-items: baseline !important; |
||
| 1438 | } |
||
| 1439 | |||
| 1440 | .align-items-stretch { |
||
| 1441 | -ms-flex-align: stretch !important; |
||
| 1442 | align-items: stretch !important; |
||
| 1443 | } |
||
| 1444 | |||
| 1445 | .align-content-start { |
||
| 1446 | -ms-flex-line-pack: start !important; |
||
| 1447 | align-content: flex-start !important; |
||
| 1448 | } |
||
| 1449 | |||
| 1450 | .align-content-end { |
||
| 1451 | -ms-flex-line-pack: end !important; |
||
| 1452 | align-content: flex-end !important; |
||
| 1453 | } |
||
| 1454 | |||
| 1455 | .align-content-center { |
||
| 1456 | -ms-flex-line-pack: center !important; |
||
| 1457 | align-content: center !important; |
||
| 1458 | } |
||
| 1459 | |||
| 1460 | .align-content-between { |
||
| 1461 | -ms-flex-line-pack: justify !important; |
||
| 1462 | align-content: space-between !important; |
||
| 1463 | } |
||
| 1464 | |||
| 1465 | .align-content-around { |
||
| 1466 | -ms-flex-line-pack: distribute !important; |
||
| 1467 | align-content: space-around !important; |
||
| 1468 | } |
||
| 1469 | |||
| 1470 | .align-content-stretch { |
||
| 1471 | -ms-flex-line-pack: stretch !important; |
||
| 1472 | align-content: stretch !important; |
||
| 1473 | } |
||
| 1474 | |||
| 1475 | .align-self-auto { |
||
| 1476 | -ms-flex-item-align: auto !important; |
||
| 1477 | align-self: auto !important; |
||
| 1478 | } |
||
| 1479 | |||
| 1480 | .align-self-start { |
||
| 1481 | -ms-flex-item-align: start !important; |
||
| 1482 | align-self: flex-start !important; |
||
| 1483 | } |
||
| 1484 | |||
| 1485 | .align-self-end { |
||
| 1486 | -ms-flex-item-align: end !important; |
||
| 1487 | align-self: flex-end !important; |
||
| 1488 | } |
||
| 1489 | |||
| 1490 | .align-self-center { |
||
| 1491 | -ms-flex-item-align: center !important; |
||
| 1492 | align-self: center !important; |
||
| 1493 | } |
||
| 1494 | |||
| 1495 | .align-self-baseline { |
||
| 1496 | -ms-flex-item-align: baseline !important; |
||
| 1497 | align-self: baseline !important; |
||
| 1498 | } |
||
| 1499 | |||
| 1500 | .align-self-stretch { |
||
| 1501 | -ms-flex-item-align: stretch !important; |
||
| 1502 | align-self: stretch !important; |
||
| 1503 | } |
||
| 1504 | |||
| 1505 | @media (min-width: 576px) { |
||
| 1506 | .flex-sm-row { |
||
| 1507 | -ms-flex-direction: row !important; |
||
| 1508 | flex-direction: row !important; |
||
| 1509 | } |
||
| 1510 | .flex-sm-column { |
||
| 1511 | -ms-flex-direction: column !important; |
||
| 1512 | flex-direction: column !important; |
||
| 1513 | } |
||
| 1514 | .flex-sm-row-reverse { |
||
| 1515 | -ms-flex-direction: row-reverse !important; |
||
| 1516 | flex-direction: row-reverse !important; |
||
| 1517 | } |
||
| 1518 | .flex-sm-column-reverse { |
||
| 1519 | -ms-flex-direction: column-reverse !important; |
||
| 1520 | flex-direction: column-reverse !important; |
||
| 1521 | } |
||
| 1522 | .flex-sm-wrap { |
||
| 1523 | -ms-flex-wrap: wrap !important; |
||
| 1524 | flex-wrap: wrap !important; |
||
| 1525 | } |
||
| 1526 | .flex-sm-nowrap { |
||
| 1527 | -ms-flex-wrap: nowrap !important; |
||
| 1528 | flex-wrap: nowrap !important; |
||
| 1529 | } |
||
| 1530 | .flex-sm-wrap-reverse { |
||
| 1531 | -ms-flex-wrap: wrap-reverse !important; |
||
| 1532 | flex-wrap: wrap-reverse !important; |
||
| 1533 | } |
||
| 1534 | .flex-sm-fill { |
||
| 1535 | -ms-flex: 1 1 auto !important; |
||
| 1536 | flex: 1 1 auto !important; |
||
| 1537 | } |
||
| 1538 | .flex-sm-grow-0 { |
||
| 1539 | -ms-flex-positive: 0 !important; |
||
| 1540 | flex-grow: 0 !important; |
||
| 1541 | } |
||
| 1542 | .flex-sm-grow-1 { |
||
| 1543 | -ms-flex-positive: 1 !important; |
||
| 1544 | flex-grow: 1 !important; |
||
| 1545 | } |
||
| 1546 | .flex-sm-shrink-0 { |
||
| 1547 | -ms-flex-negative: 0 !important; |
||
| 1548 | flex-shrink: 0 !important; |
||
| 1549 | } |
||
| 1550 | .flex-sm-shrink-1 { |
||
| 1551 | -ms-flex-negative: 1 !important; |
||
| 1552 | flex-shrink: 1 !important; |
||
| 1553 | } |
||
| 1554 | .justify-content-sm-start { |
||
| 1555 | -ms-flex-pack: start !important; |
||
| 1556 | justify-content: flex-start !important; |
||
| 1557 | } |
||
| 1558 | .justify-content-sm-end { |
||
| 1559 | -ms-flex-pack: end !important; |
||
| 1560 | justify-content: flex-end !important; |
||
| 1561 | } |
||
| 1562 | .justify-content-sm-center { |
||
| 1563 | -ms-flex-pack: center !important; |
||
| 1564 | justify-content: center !important; |
||
| 1565 | } |
||
| 1566 | .justify-content-sm-between { |
||
| 1567 | -ms-flex-pack: justify !important; |
||
| 1568 | justify-content: space-between !important; |
||
| 1569 | } |
||
| 1570 | .justify-content-sm-around { |
||
| 1571 | -ms-flex-pack: distribute !important; |
||
| 1572 | justify-content: space-around !important; |
||
| 1573 | } |
||
| 1574 | .align-items-sm-start { |
||
| 1575 | -ms-flex-align: start !important; |
||
| 1576 | align-items: flex-start !important; |
||
| 1577 | } |
||
| 1578 | .align-items-sm-end { |
||
| 1579 | -ms-flex-align: end !important; |
||
| 1580 | align-items: flex-end !important; |
||
| 1581 | } |
||
| 1582 | .align-items-sm-center { |
||
| 1583 | -ms-flex-align: center !important; |
||
| 1584 | align-items: center !important; |
||
| 1585 | } |
||
| 1586 | .align-items-sm-baseline { |
||
| 1587 | -ms-flex-align: baseline !important; |
||
| 1588 | align-items: baseline !important; |
||
| 1589 | } |
||
| 1590 | .align-items-sm-stretch { |
||
| 1591 | -ms-flex-align: stretch !important; |
||
| 1592 | align-items: stretch !important; |
||
| 1593 | } |
||
| 1594 | .align-content-sm-start { |
||
| 1595 | -ms-flex-line-pack: start !important; |
||
| 1596 | align-content: flex-start !important; |
||
| 1597 | } |
||
| 1598 | .align-content-sm-end { |
||
| 1599 | -ms-flex-line-pack: end !important; |
||
| 1600 | align-content: flex-end !important; |
||
| 1601 | } |
||
| 1602 | .align-content-sm-center { |
||
| 1603 | -ms-flex-line-pack: center !important; |
||
| 1604 | align-content: center !important; |
||
| 1605 | } |
||
| 1606 | .align-content-sm-between { |
||
| 1607 | -ms-flex-line-pack: justify !important; |
||
| 1608 | align-content: space-between !important; |
||
| 1609 | } |
||
| 1610 | .align-content-sm-around { |
||
| 1611 | -ms-flex-line-pack: distribute !important; |
||
| 1612 | align-content: space-around !important; |
||
| 1613 | } |
||
| 1614 | .align-content-sm-stretch { |
||
| 1615 | -ms-flex-line-pack: stretch !important; |
||
| 1616 | align-content: stretch !important; |
||
| 1617 | } |
||
| 1618 | .align-self-sm-auto { |
||
| 1619 | -ms-flex-item-align: auto !important; |
||
| 1620 | align-self: auto !important; |
||
| 1621 | } |
||
| 1622 | .align-self-sm-start { |
||
| 1623 | -ms-flex-item-align: start !important; |
||
| 1624 | align-self: flex-start !important; |
||
| 1625 | } |
||
| 1626 | .align-self-sm-end { |
||
| 1627 | -ms-flex-item-align: end !important; |
||
| 1628 | align-self: flex-end !important; |
||
| 1629 | } |
||
| 1630 | .align-self-sm-center { |
||
| 1631 | -ms-flex-item-align: center !important; |
||
| 1632 | align-self: center !important; |
||
| 1633 | } |
||
| 1634 | .align-self-sm-baseline { |
||
| 1635 | -ms-flex-item-align: baseline !important; |
||
| 1636 | align-self: baseline !important; |
||
| 1637 | } |
||
| 1638 | .align-self-sm-stretch { |
||
| 1639 | -ms-flex-item-align: stretch !important; |
||
| 1640 | align-self: stretch !important; |
||
| 1641 | } |
||
| 1642 | } |
||
| 1643 | |||
| 1644 | @media (min-width: 768px) { |
||
| 1645 | .flex-md-row { |
||
| 1646 | -ms-flex-direction: row !important; |
||
| 1647 | flex-direction: row !important; |
||
| 1648 | } |
||
| 1649 | .flex-md-column { |
||
| 1650 | -ms-flex-direction: column !important; |
||
| 1651 | flex-direction: column !important; |
||
| 1652 | } |
||
| 1653 | .flex-md-row-reverse { |
||
| 1654 | -ms-flex-direction: row-reverse !important; |
||
| 1655 | flex-direction: row-reverse !important; |
||
| 1656 | } |
||
| 1657 | .flex-md-column-reverse { |
||
| 1658 | -ms-flex-direction: column-reverse !important; |
||
| 1659 | flex-direction: column-reverse !important; |
||
| 1660 | } |
||
| 1661 | .flex-md-wrap { |
||
| 1662 | -ms-flex-wrap: wrap !important; |
||
| 1663 | flex-wrap: wrap !important; |
||
| 1664 | } |
||
| 1665 | .flex-md-nowrap { |
||
| 1666 | -ms-flex-wrap: nowrap !important; |
||
| 1667 | flex-wrap: nowrap !important; |
||
| 1668 | } |
||
| 1669 | .flex-md-wrap-reverse { |
||
| 1670 | -ms-flex-wrap: wrap-reverse !important; |
||
| 1671 | flex-wrap: wrap-reverse !important; |
||
| 1672 | } |
||
| 1673 | .flex-md-fill { |
||
| 1674 | -ms-flex: 1 1 auto !important; |
||
| 1675 | flex: 1 1 auto !important; |
||
| 1676 | } |
||
| 1677 | .flex-md-grow-0 { |
||
| 1678 | -ms-flex-positive: 0 !important; |
||
| 1679 | flex-grow: 0 !important; |
||
| 1680 | } |
||
| 1681 | .flex-md-grow-1 { |
||
| 1682 | -ms-flex-positive: 1 !important; |
||
| 1683 | flex-grow: 1 !important; |
||
| 1684 | } |
||
| 1685 | .flex-md-shrink-0 { |
||
| 1686 | -ms-flex-negative: 0 !important; |
||
| 1687 | flex-shrink: 0 !important; |
||
| 1688 | } |
||
| 1689 | .flex-md-shrink-1 { |
||
| 1690 | -ms-flex-negative: 1 !important; |
||
| 1691 | flex-shrink: 1 !important; |
||
| 1692 | } |
||
| 1693 | .justify-content-md-start { |
||
| 1694 | -ms-flex-pack: start !important; |
||
| 1695 | justify-content: flex-start !important; |
||
| 1696 | } |
||
| 1697 | .justify-content-md-end { |
||
| 1698 | -ms-flex-pack: end !important; |
||
| 1699 | justify-content: flex-end !important; |
||
| 1700 | } |
||
| 1701 | .justify-content-md-center { |
||
| 1702 | -ms-flex-pack: center !important; |
||
| 1703 | justify-content: center !important; |
||
| 1704 | } |
||
| 1705 | .justify-content-md-between { |
||
| 1706 | -ms-flex-pack: justify !important; |
||
| 1707 | justify-content: space-between !important; |
||
| 1708 | } |
||
| 1709 | .justify-content-md-around { |
||
| 1710 | -ms-flex-pack: distribute !important; |
||
| 1711 | justify-content: space-around !important; |
||
| 1712 | } |
||
| 1713 | .align-items-md-start { |
||
| 1714 | -ms-flex-align: start !important; |
||
| 1715 | align-items: flex-start !important; |
||
| 1716 | } |
||
| 1717 | .align-items-md-end { |
||
| 1718 | -ms-flex-align: end !important; |
||
| 1719 | align-items: flex-end !important; |
||
| 1720 | } |
||
| 1721 | .align-items-md-center { |
||
| 1722 | -ms-flex-align: center !important; |
||
| 1723 | align-items: center !important; |
||
| 1724 | } |
||
| 1725 | .align-items-md-baseline { |
||
| 1726 | -ms-flex-align: baseline !important; |
||
| 1727 | align-items: baseline !important; |
||
| 1728 | } |
||
| 1729 | .align-items-md-stretch { |
||
| 1730 | -ms-flex-align: stretch !important; |
||
| 1731 | align-items: stretch !important; |
||
| 1732 | } |
||
| 1733 | .align-content-md-start { |
||
| 1734 | -ms-flex-line-pack: start !important; |
||
| 1735 | align-content: flex-start !important; |
||
| 1736 | } |
||
| 1737 | .align-content-md-end { |
||
| 1738 | -ms-flex-line-pack: end !important; |
||
| 1739 | align-content: flex-end !important; |
||
| 1740 | } |
||
| 1741 | .align-content-md-center { |
||
| 1742 | -ms-flex-line-pack: center !important; |
||
| 1743 | align-content: center !important; |
||
| 1744 | } |
||
| 1745 | .align-content-md-between { |
||
| 1746 | -ms-flex-line-pack: justify !important; |
||
| 1747 | align-content: space-between !important; |
||
| 1748 | } |
||
| 1749 | .align-content-md-around { |
||
| 1750 | -ms-flex-line-pack: distribute !important; |
||
| 1751 | align-content: space-around !important; |
||
| 1752 | } |
||
| 1753 | .align-content-md-stretch { |
||
| 1754 | -ms-flex-line-pack: stretch !important; |
||
| 1755 | align-content: stretch !important; |
||
| 1756 | } |
||
| 1757 | .align-self-md-auto { |
||
| 1758 | -ms-flex-item-align: auto !important; |
||
| 1759 | align-self: auto !important; |
||
| 1760 | } |
||
| 1761 | .align-self-md-start { |
||
| 1762 | -ms-flex-item-align: start !important; |
||
| 1763 | align-self: flex-start !important; |
||
| 1764 | } |
||
| 1765 | .align-self-md-end { |
||
| 1766 | -ms-flex-item-align: end !important; |
||
| 1767 | align-self: flex-end !important; |
||
| 1768 | } |
||
| 1769 | .align-self-md-center { |
||
| 1770 | -ms-flex-item-align: center !important; |
||
| 1771 | align-self: center !important; |
||
| 1772 | } |
||
| 1773 | .align-self-md-baseline { |
||
| 1774 | -ms-flex-item-align: baseline !important; |
||
| 1775 | align-self: baseline !important; |
||
| 1776 | } |
||
| 1777 | .align-self-md-stretch { |
||
| 1778 | -ms-flex-item-align: stretch !important; |
||
| 1779 | align-self: stretch !important; |
||
| 1780 | } |
||
| 1781 | } |
||
| 1782 | |||
| 1783 | @media (min-width: 992px) { |
||
| 1784 | .flex-lg-row { |
||
| 1785 | -ms-flex-direction: row !important; |
||
| 1786 | flex-direction: row !important; |
||
| 1787 | } |
||
| 1788 | .flex-lg-column { |
||
| 1789 | -ms-flex-direction: column !important; |
||
| 1790 | flex-direction: column !important; |
||
| 1791 | } |
||
| 1792 | .flex-lg-row-reverse { |
||
| 1793 | -ms-flex-direction: row-reverse !important; |
||
| 1794 | flex-direction: row-reverse !important; |
||
| 1795 | } |
||
| 1796 | .flex-lg-column-reverse { |
||
| 1797 | -ms-flex-direction: column-reverse !important; |
||
| 1798 | flex-direction: column-reverse !important; |
||
| 1799 | } |
||
| 1800 | .flex-lg-wrap { |
||
| 1801 | -ms-flex-wrap: wrap !important; |
||
| 1802 | flex-wrap: wrap !important; |
||
| 1803 | } |
||
| 1804 | .flex-lg-nowrap { |
||
| 1805 | -ms-flex-wrap: nowrap !important; |
||
| 1806 | flex-wrap: nowrap !important; |
||
| 1807 | } |
||
| 1808 | .flex-lg-wrap-reverse { |
||
| 1809 | -ms-flex-wrap: wrap-reverse !important; |
||
| 1810 | flex-wrap: wrap-reverse !important; |
||
| 1811 | } |
||
| 1812 | .flex-lg-fill { |
||
| 1813 | -ms-flex: 1 1 auto !important; |
||
| 1814 | flex: 1 1 auto !important; |
||
| 1815 | } |
||
| 1816 | .flex-lg-grow-0 { |
||
| 1817 | -ms-flex-positive: 0 !important; |
||
| 1818 | flex-grow: 0 !important; |
||
| 1819 | } |
||
| 1820 | .flex-lg-grow-1 { |
||
| 1821 | -ms-flex-positive: 1 !important; |
||
| 1822 | flex-grow: 1 !important; |
||
| 1823 | } |
||
| 1824 | .flex-lg-shrink-0 { |
||
| 1825 | -ms-flex-negative: 0 !important; |
||
| 1826 | flex-shrink: 0 !important; |
||
| 1827 | } |
||
| 1828 | .flex-lg-shrink-1 { |
||
| 1829 | -ms-flex-negative: 1 !important; |
||
| 1830 | flex-shrink: 1 !important; |
||
| 1831 | } |
||
| 1832 | .justify-content-lg-start { |
||
| 1833 | -ms-flex-pack: start !important; |
||
| 1834 | justify-content: flex-start !important; |
||
| 1835 | } |
||
| 1836 | .justify-content-lg-end { |
||
| 1837 | -ms-flex-pack: end !important; |
||
| 1838 | justify-content: flex-end !important; |
||
| 1839 | } |
||
| 1840 | .justify-content-lg-center { |
||
| 1841 | -ms-flex-pack: center !important; |
||
| 1842 | justify-content: center !important; |
||
| 1843 | } |
||
| 1844 | .justify-content-lg-between { |
||
| 1845 | -ms-flex-pack: justify !important; |
||
| 1846 | justify-content: space-between !important; |
||
| 1847 | } |
||
| 1848 | .justify-content-lg-around { |
||
| 1849 | -ms-flex-pack: distribute !important; |
||
| 1850 | justify-content: space-around !important; |
||
| 1851 | } |
||
| 1852 | .align-items-lg-start { |
||
| 1853 | -ms-flex-align: start !important; |
||
| 1854 | align-items: flex-start !important; |
||
| 1855 | } |
||
| 1856 | .align-items-lg-end { |
||
| 1857 | -ms-flex-align: end !important; |
||
| 1858 | align-items: flex-end !important; |
||
| 1859 | } |
||
| 1860 | .align-items-lg-center { |
||
| 1861 | -ms-flex-align: center !important; |
||
| 1862 | align-items: center !important; |
||
| 1863 | } |
||
| 1864 | .align-items-lg-baseline { |
||
| 1865 | -ms-flex-align: baseline !important; |
||
| 1866 | align-items: baseline !important; |
||
| 1867 | } |
||
| 1868 | .align-items-lg-stretch { |
||
| 1869 | -ms-flex-align: stretch !important; |
||
| 1870 | align-items: stretch !important; |
||
| 1871 | } |
||
| 1872 | .align-content-lg-start { |
||
| 1873 | -ms-flex-line-pack: start !important; |
||
| 1874 | align-content: flex-start !important; |
||
| 1875 | } |
||
| 1876 | .align-content-lg-end { |
||
| 1877 | -ms-flex-line-pack: end !important; |
||
| 1878 | align-content: flex-end !important; |
||
| 1879 | } |
||
| 1880 | .align-content-lg-center { |
||
| 1881 | -ms-flex-line-pack: center !important; |
||
| 1882 | align-content: center !important; |
||
| 1883 | } |
||
| 1884 | .align-content-lg-between { |
||
| 1885 | -ms-flex-line-pack: justify !important; |
||
| 1886 | align-content: space-between !important; |
||
| 1887 | } |
||
| 1888 | .align-content-lg-around { |
||
| 1889 | -ms-flex-line-pack: distribute !important; |
||
| 1890 | align-content: space-around !important; |
||
| 1891 | } |
||
| 1892 | .align-content-lg-stretch { |
||
| 1893 | -ms-flex-line-pack: stretch !important; |
||
| 1894 | align-content: stretch !important; |
||
| 1895 | } |
||
| 1896 | .align-self-lg-auto { |
||
| 1897 | -ms-flex-item-align: auto !important; |
||
| 1898 | align-self: auto !important; |
||
| 1899 | } |
||
| 1900 | .align-self-lg-start { |
||
| 1901 | -ms-flex-item-align: start !important; |
||
| 1902 | align-self: flex-start !important; |
||
| 1903 | } |
||
| 1904 | .align-self-lg-end { |
||
| 1905 | -ms-flex-item-align: end !important; |
||
| 1906 | align-self: flex-end !important; |
||
| 1907 | } |
||
| 1908 | .align-self-lg-center { |
||
| 1909 | -ms-flex-item-align: center !important; |
||
| 1910 | align-self: center !important; |
||
| 1911 | } |
||
| 1912 | .align-self-lg-baseline { |
||
| 1913 | -ms-flex-item-align: baseline !important; |
||
| 1914 | align-self: baseline !important; |
||
| 1915 | } |
||
| 1916 | .align-self-lg-stretch { |
||
| 1917 | -ms-flex-item-align: stretch !important; |
||
| 1918 | align-self: stretch !important; |
||
| 1919 | } |
||
| 1920 | } |
||
| 1921 | |||
| 1922 | @media (min-width: 1200px) { |
||
| 1923 | .flex-xl-row { |
||
| 1924 | -ms-flex-direction: row !important; |
||
| 1925 | flex-direction: row !important; |
||
| 1926 | } |
||
| 1927 | .flex-xl-column { |
||
| 1928 | -ms-flex-direction: column !important; |
||
| 1929 | flex-direction: column !important; |
||
| 1930 | } |
||
| 1931 | .flex-xl-row-reverse { |
||
| 1932 | -ms-flex-direction: row-reverse !important; |
||
| 1933 | flex-direction: row-reverse !important; |
||
| 1934 | } |
||
| 1935 | .flex-xl-column-reverse { |
||
| 1936 | -ms-flex-direction: column-reverse !important; |
||
| 1937 | flex-direction: column-reverse !important; |
||
| 1938 | } |
||
| 1939 | .flex-xl-wrap { |
||
| 1940 | -ms-flex-wrap: wrap !important; |
||
| 1941 | flex-wrap: wrap !important; |
||
| 1942 | } |
||
| 1943 | .flex-xl-nowrap { |
||
| 1944 | -ms-flex-wrap: nowrap !important; |
||
| 1945 | flex-wrap: nowrap !important; |
||
| 1946 | } |
||
| 1947 | .flex-xl-wrap-reverse { |
||
| 1948 | -ms-flex-wrap: wrap-reverse !important; |
||
| 1949 | flex-wrap: wrap-reverse !important; |
||
| 1950 | } |
||
| 1951 | .flex-xl-fill { |
||
| 1952 | -ms-flex: 1 1 auto !important; |
||
| 1953 | flex: 1 1 auto !important; |
||
| 1954 | } |
||
| 1955 | .flex-xl-grow-0 { |
||
| 1956 | -ms-flex-positive: 0 !important; |
||
| 1957 | flex-grow: 0 !important; |
||
| 1958 | } |
||
| 1959 | .flex-xl-grow-1 { |
||
| 1960 | -ms-flex-positive: 1 !important; |
||
| 1961 | flex-grow: 1 !important; |
||
| 1962 | } |
||
| 1963 | .flex-xl-shrink-0 { |
||
| 1964 | -ms-flex-negative: 0 !important; |
||
| 1965 | flex-shrink: 0 !important; |
||
| 1966 | } |
||
| 1967 | .flex-xl-shrink-1 { |
||
| 1968 | -ms-flex-negative: 1 !important; |
||
| 1969 | flex-shrink: 1 !important; |
||
| 1970 | } |
||
| 1971 | .justify-content-xl-start { |
||
| 1972 | -ms-flex-pack: start !important; |
||
| 1973 | justify-content: flex-start !important; |
||
| 1974 | } |
||
| 1975 | .justify-content-xl-end { |
||
| 1976 | -ms-flex-pack: end !important; |
||
| 1977 | justify-content: flex-end !important; |
||
| 1978 | } |
||
| 1979 | .justify-content-xl-center { |
||
| 1980 | -ms-flex-pack: center !important; |
||
| 1981 | justify-content: center !important; |
||
| 1982 | } |
||
| 1983 | .justify-content-xl-between { |
||
| 1984 | -ms-flex-pack: justify !important; |
||
| 1985 | justify-content: space-between !important; |
||
| 1986 | } |
||
| 1987 | .justify-content-xl-around { |
||
| 1988 | -ms-flex-pack: distribute !important; |
||
| 1989 | justify-content: space-around !important; |
||
| 1990 | } |
||
| 1991 | .align-items-xl-start { |
||
| 1992 | -ms-flex-align: start !important; |
||
| 1993 | align-items: flex-start !important; |
||
| 1994 | } |
||
| 1995 | .align-items-xl-end { |
||
| 1996 | -ms-flex-align: end !important; |
||
| 1997 | align-items: flex-end !important; |
||
| 1998 | } |
||
| 1999 | .align-items-xl-center { |
||
| 2000 | -ms-flex-align: center !important; |
||
| 2001 | align-items: center !important; |
||
| 2002 | } |
||
| 2003 | .align-items-xl-baseline { |
||
| 2004 | -ms-flex-align: baseline !important; |
||
| 2005 | align-items: baseline !important; |
||
| 2006 | } |
||
| 2007 | .align-items-xl-stretch { |
||
| 2008 | -ms-flex-align: stretch !important; |
||
| 2009 | align-items: stretch !important; |
||
| 2010 | } |
||
| 2011 | .align-content-xl-start { |
||
| 2012 | -ms-flex-line-pack: start !important; |
||
| 2013 | align-content: flex-start !important; |
||
| 2014 | } |
||
| 2015 | .align-content-xl-end { |
||
| 2016 | -ms-flex-line-pack: end !important; |
||
| 2017 | align-content: flex-end !important; |
||
| 2018 | } |
||
| 2019 | .align-content-xl-center { |
||
| 2020 | -ms-flex-line-pack: center !important; |
||
| 2021 | align-content: center !important; |
||
| 2022 | } |
||
| 2023 | .align-content-xl-between { |
||
| 2024 | -ms-flex-line-pack: justify !important; |
||
| 2025 | align-content: space-between !important; |
||
| 2026 | } |
||
| 2027 | .align-content-xl-around { |
||
| 2028 | -ms-flex-line-pack: distribute !important; |
||
| 2029 | align-content: space-around !important; |
||
| 2030 | } |
||
| 2031 | .align-content-xl-stretch { |
||
| 2032 | -ms-flex-line-pack: stretch !important; |
||
| 2033 | align-content: stretch !important; |
||
| 2034 | } |
||
| 2035 | .align-self-xl-auto { |
||
| 2036 | -ms-flex-item-align: auto !important; |
||
| 2037 | align-self: auto !important; |
||
| 2038 | } |
||
| 2039 | .align-self-xl-start { |
||
| 2040 | -ms-flex-item-align: start !important; |
||
| 2041 | align-self: flex-start !important; |
||
| 2042 | } |
||
| 2043 | .align-self-xl-end { |
||
| 2044 | -ms-flex-item-align: end !important; |
||
| 2045 | align-self: flex-end !important; |
||
| 2046 | } |
||
| 2047 | .align-self-xl-center { |
||
| 2048 | -ms-flex-item-align: center !important; |
||
| 2049 | align-self: center !important; |
||
| 2050 | } |
||
| 2051 | .align-self-xl-baseline { |
||
| 2052 | -ms-flex-item-align: baseline !important; |
||
| 2053 | align-self: baseline !important; |
||
| 2054 | } |
||
| 2055 | .align-self-xl-stretch { |
||
| 2056 | -ms-flex-item-align: stretch !important; |
||
| 2057 | align-self: stretch !important; |
||
| 2058 | } |
||
| 2059 | } |
||
| 2060 | |||
| 2061 | .m-0 { |
||
| 2062 | margin: 0 !important; |
||
| 2063 | } |
||
| 2064 | |||
| 2065 | .mt-0, |
||
| 2066 | .my-0 { |
||
| 2067 | margin-top: 0 !important; |
||
| 2068 | } |
||
| 2069 | |||
| 2070 | .mr-0, |
||
| 2071 | .mx-0 { |
||
| 2072 | margin-right: 0 !important; |
||
| 2073 | } |
||
| 2074 | |||
| 2075 | .mb-0, |
||
| 2076 | .my-0 { |
||
| 2077 | margin-bottom: 0 !important; |
||
| 2078 | } |
||
| 2079 | |||
| 2080 | .ml-0, |
||
| 2081 | .mx-0 { |
||
| 2082 | margin-left: 0 !important; |
||
| 2083 | } |
||
| 2084 | |||
| 2085 | .m-1 { |
||
| 2086 | margin: 0.25rem !important; |
||
| 2087 | } |
||
| 2088 | |||
| 2089 | .mt-1, |
||
| 2090 | .my-1 { |
||
| 2091 | margin-top: 0.25rem !important; |
||
| 2092 | } |
||
| 2093 | |||
| 2094 | .mr-1, |
||
| 2095 | .mx-1 { |
||
| 2096 | margin-right: 0.25rem !important; |
||
| 2097 | } |
||
| 2098 | |||
| 2099 | .mb-1, |
||
| 2100 | .my-1 { |
||
| 2101 | margin-bottom: 0.25rem !important; |
||
| 2102 | } |
||
| 2103 | |||
| 2104 | .ml-1, |
||
| 2105 | .mx-1 { |
||
| 2106 | margin-left: 0.25rem !important; |
||
| 2107 | } |
||
| 2108 | |||
| 2109 | .m-2 { |
||
| 2110 | margin: 0.5rem !important; |
||
| 2111 | } |
||
| 2112 | |||
| 2113 | .mt-2, |
||
| 2114 | .my-2 { |
||
| 2115 | margin-top: 0.5rem !important; |
||
| 2116 | } |
||
| 2117 | |||
| 2118 | .mr-2, |
||
| 2119 | .mx-2 { |
||
| 2120 | margin-right: 0.5rem !important; |
||
| 2121 | } |
||
| 2122 | |||
| 2123 | .mb-2, |
||
| 2124 | .my-2 { |
||
| 2125 | margin-bottom: 0.5rem !important; |
||
| 2126 | } |
||
| 2127 | |||
| 2128 | .ml-2, |
||
| 2129 | .mx-2 { |
||
| 2130 | margin-left: 0.5rem !important; |
||
| 2131 | } |
||
| 2132 | |||
| 2133 | .m-3 { |
||
| 2134 | margin: 1rem !important; |
||
| 2135 | } |
||
| 2136 | |||
| 2137 | .mt-3, |
||
| 2138 | .my-3 { |
||
| 2139 | margin-top: 1rem !important; |
||
| 2140 | } |
||
| 2141 | |||
| 2142 | .mr-3, |
||
| 2143 | .mx-3 { |
||
| 2144 | margin-right: 1rem !important; |
||
| 2145 | } |
||
| 2146 | |||
| 2147 | .mb-3, |
||
| 2148 | .my-3 { |
||
| 2149 | margin-bottom: 1rem !important; |
||
| 2150 | } |
||
| 2151 | |||
| 2152 | .ml-3, |
||
| 2153 | .mx-3 { |
||
| 2154 | margin-left: 1rem !important; |
||
| 2155 | } |
||
| 2156 | |||
| 2157 | .m-4 { |
||
| 2158 | margin: 1.5rem !important; |
||
| 2159 | } |
||
| 2160 | |||
| 2161 | .mt-4, |
||
| 2162 | .my-4 { |
||
| 2163 | margin-top: 1.5rem !important; |
||
| 2164 | } |
||
| 2165 | |||
| 2166 | .mr-4, |
||
| 2167 | .mx-4 { |
||
| 2168 | margin-right: 1.5rem !important; |
||
| 2169 | } |
||
| 2170 | |||
| 2171 | .mb-4, |
||
| 2172 | .my-4 { |
||
| 2173 | margin-bottom: 1.5rem !important; |
||
| 2174 | } |
||
| 2175 | |||
| 2176 | .ml-4, |
||
| 2177 | .mx-4 { |
||
| 2178 | margin-left: 1.5rem !important; |
||
| 2179 | } |
||
| 2180 | |||
| 2181 | .m-5 { |
||
| 2182 | margin: 3rem !important; |
||
| 2183 | } |
||
| 2184 | |||
| 2185 | .mt-5, |
||
| 2186 | .my-5 { |
||
| 2187 | margin-top: 3rem !important; |
||
| 2188 | } |
||
| 2189 | |||
| 2190 | .mr-5, |
||
| 2191 | .mx-5 { |
||
| 2192 | margin-right: 3rem !important; |
||
| 2193 | } |
||
| 2194 | |||
| 2195 | .mb-5, |
||
| 2196 | .my-5 { |
||
| 2197 | margin-bottom: 3rem !important; |
||
| 2198 | } |
||
| 2199 | |||
| 2200 | .ml-5, |
||
| 2201 | .mx-5 { |
||
| 2202 | margin-left: 3rem !important; |
||
| 2203 | } |
||
| 2204 | |||
| 2205 | .p-0 { |
||
| 2206 | padding: 0 !important; |
||
| 2207 | } |
||
| 2208 | |||
| 2209 | .pt-0, |
||
| 2210 | .py-0 { |
||
| 2211 | padding-top: 0 !important; |
||
| 2212 | } |
||
| 2213 | |||
| 2214 | .pr-0, |
||
| 2215 | .px-0 { |
||
| 2216 | padding-right: 0 !important; |
||
| 2217 | } |
||
| 2218 | |||
| 2219 | .pb-0, |
||
| 2220 | .py-0 { |
||
| 2221 | padding-bottom: 0 !important; |
||
| 2222 | } |
||
| 2223 | |||
| 2224 | .pl-0, |
||
| 2225 | .px-0 { |
||
| 2226 | padding-left: 0 !important; |
||
| 2227 | } |
||
| 2228 | |||
| 2229 | .p-1 { |
||
| 2230 | padding: 0.25rem !important; |
||
| 2231 | } |
||
| 2232 | |||
| 2233 | .pt-1, |
||
| 2234 | .py-1 { |
||
| 2235 | padding-top: 0.25rem !important; |
||
| 2236 | } |
||
| 2237 | |||
| 2238 | .pr-1, |
||
| 2239 | .px-1 { |
||
| 2240 | padding-right: 0.25rem !important; |
||
| 2241 | } |
||
| 2242 | |||
| 2243 | .pb-1, |
||
| 2244 | .py-1 { |
||
| 2245 | padding-bottom: 0.25rem !important; |
||
| 2246 | } |
||
| 2247 | |||
| 2248 | .pl-1, |
||
| 2249 | .px-1 { |
||
| 2250 | padding-left: 0.25rem !important; |
||
| 2251 | } |
||
| 2252 | |||
| 2253 | .p-2 { |
||
| 2254 | padding: 0.5rem !important; |
||
| 2255 | } |
||
| 2256 | |||
| 2257 | .pt-2, |
||
| 2258 | .py-2 { |
||
| 2259 | padding-top: 0.5rem !important; |
||
| 2260 | } |
||
| 2261 | |||
| 2262 | .pr-2, |
||
| 2263 | .px-2 { |
||
| 2264 | padding-right: 0.5rem !important; |
||
| 2265 | } |
||
| 2266 | |||
| 2267 | .pb-2, |
||
| 2268 | .py-2 { |
||
| 2269 | padding-bottom: 0.5rem !important; |
||
| 2270 | } |
||
| 2271 | |||
| 2272 | .pl-2, |
||
| 2273 | .px-2 { |
||
| 2274 | padding-left: 0.5rem !important; |
||
| 2275 | } |
||
| 2276 | |||
| 2277 | .p-3 { |
||
| 2278 | padding: 1rem !important; |
||
| 2279 | } |
||
| 2280 | |||
| 2281 | .pt-3, |
||
| 2282 | .py-3 { |
||
| 2283 | padding-top: 1rem !important; |
||
| 2284 | } |
||
| 2285 | |||
| 2286 | .pr-3, |
||
| 2287 | .px-3 { |
||
| 2288 | padding-right: 1rem !important; |
||
| 2289 | } |
||
| 2290 | |||
| 2291 | .pb-3, |
||
| 2292 | .py-3 { |
||
| 2293 | padding-bottom: 1rem !important; |
||
| 2294 | } |
||
| 2295 | |||
| 2296 | .pl-3, |
||
| 2297 | .px-3 { |
||
| 2298 | padding-left: 1rem !important; |
||
| 2299 | } |
||
| 2300 | |||
| 2301 | .p-4 { |
||
| 2302 | padding: 1.5rem !important; |
||
| 2303 | } |
||
| 2304 | |||
| 2305 | .pt-4, |
||
| 2306 | .py-4 { |
||
| 2307 | padding-top: 1.5rem !important; |
||
| 2308 | } |
||
| 2309 | |||
| 2310 | .pr-4, |
||
| 2311 | .px-4 { |
||
| 2312 | padding-right: 1.5rem !important; |
||
| 2313 | } |
||
| 2314 | |||
| 2315 | .pb-4, |
||
| 2316 | .py-4 { |
||
| 2317 | padding-bottom: 1.5rem !important; |
||
| 2318 | } |
||
| 2319 | |||
| 2320 | .pl-4, |
||
| 2321 | .px-4 { |
||
| 2322 | padding-left: 1.5rem !important; |
||
| 2323 | } |
||
| 2324 | |||
| 2325 | .p-5 { |
||
| 2326 | padding: 3rem !important; |
||
| 2327 | } |
||
| 2328 | |||
| 2329 | .pt-5, |
||
| 2330 | .py-5 { |
||
| 2331 | padding-top: 3rem !important; |
||
| 2332 | } |
||
| 2333 | |||
| 2334 | .pr-5, |
||
| 2335 | .px-5 { |
||
| 2336 | padding-right: 3rem !important; |
||
| 2337 | } |
||
| 2338 | |||
| 2339 | .pb-5, |
||
| 2340 | .py-5 { |
||
| 2341 | padding-bottom: 3rem !important; |
||
| 2342 | } |
||
| 2343 | |||
| 2344 | .pl-5, |
||
| 2345 | .px-5 { |
||
| 2346 | padding-left: 3rem !important; |
||
| 2347 | } |
||
| 2348 | |||
| 2349 | .m-n1 { |
||
| 2350 | margin: -0.25rem !important; |
||
| 2351 | } |
||
| 2352 | |||
| 2353 | .mt-n1, |
||
| 2354 | .my-n1 { |
||
| 2355 | margin-top: -0.25rem !important; |
||
| 2356 | } |
||
| 2357 | |||
| 2358 | .mr-n1, |
||
| 2359 | .mx-n1 { |
||
| 2360 | margin-right: -0.25rem !important; |
||
| 2361 | } |
||
| 2362 | |||
| 2363 | .mb-n1, |
||
| 2364 | .my-n1 { |
||
| 2365 | margin-bottom: -0.25rem !important; |
||
| 2366 | } |
||
| 2367 | |||
| 2368 | .ml-n1, |
||
| 2369 | .mx-n1 { |
||
| 2370 | margin-left: -0.25rem !important; |
||
| 2371 | } |
||
| 2372 | |||
| 2373 | .m-n2 { |
||
| 2374 | margin: -0.5rem !important; |
||
| 2375 | } |
||
| 2376 | |||
| 2377 | .mt-n2, |
||
| 2378 | .my-n2 { |
||
| 2379 | margin-top: -0.5rem !important; |
||
| 2380 | } |
||
| 2381 | |||
| 2382 | .mr-n2, |
||
| 2383 | .mx-n2 { |
||
| 2384 | margin-right: -0.5rem !important; |
||
| 2385 | } |
||
| 2386 | |||
| 2387 | .mb-n2, |
||
| 2388 | .my-n2 { |
||
| 2389 | margin-bottom: -0.5rem !important; |
||
| 2390 | } |
||
| 2391 | |||
| 2392 | .ml-n2, |
||
| 2393 | .mx-n2 { |
||
| 2394 | margin-left: -0.5rem !important; |
||
| 2395 | } |
||
| 2396 | |||
| 2397 | .m-n3 { |
||
| 2398 | margin: -1rem !important; |
||
| 2399 | } |
||
| 2400 | |||
| 2401 | .mt-n3, |
||
| 2402 | .my-n3 { |
||
| 2403 | margin-top: -1rem !important; |
||
| 2404 | } |
||
| 2405 | |||
| 2406 | .mr-n3, |
||
| 2407 | .mx-n3 { |
||
| 2408 | margin-right: -1rem !important; |
||
| 2409 | } |
||
| 2410 | |||
| 2411 | .mb-n3, |
||
| 2412 | .my-n3 { |
||
| 2413 | margin-bottom: -1rem !important; |
||
| 2414 | } |
||
| 2415 | |||
| 2416 | .ml-n3, |
||
| 2417 | .mx-n3 { |
||
| 2418 | margin-left: -1rem !important; |
||
| 2419 | } |
||
| 2420 | |||
| 2421 | .m-n4 { |
||
| 2422 | margin: -1.5rem !important; |
||
| 2423 | } |
||
| 2424 | |||
| 2425 | .mt-n4, |
||
| 2426 | .my-n4 { |
||
| 2427 | margin-top: -1.5rem !important; |
||
| 2428 | } |
||
| 2429 | |||
| 2430 | .mr-n4, |
||
| 2431 | .mx-n4 { |
||
| 2432 | margin-right: -1.5rem !important; |
||
| 2433 | } |
||
| 2434 | |||
| 2435 | .mb-n4, |
||
| 2436 | .my-n4 { |
||
| 2437 | margin-bottom: -1.5rem !important; |
||
| 2438 | } |
||
| 2439 | |||
| 2440 | .ml-n4, |
||
| 2441 | .mx-n4 { |
||
| 2442 | margin-left: -1.5rem !important; |
||
| 2443 | } |
||
| 2444 | |||
| 2445 | .m-n5 { |
||
| 2446 | margin: -3rem !important; |
||
| 2447 | } |
||
| 2448 | |||
| 2449 | .mt-n5, |
||
| 2450 | .my-n5 { |
||
| 2451 | margin-top: -3rem !important; |
||
| 2452 | } |
||
| 2453 | |||
| 2454 | .mr-n5, |
||
| 2455 | .mx-n5 { |
||
| 2456 | margin-right: -3rem !important; |
||
| 2457 | } |
||
| 2458 | |||
| 2459 | .mb-n5, |
||
| 2460 | .my-n5 { |
||
| 2461 | margin-bottom: -3rem !important; |
||
| 2462 | } |
||
| 2463 | |||
| 2464 | .ml-n5, |
||
| 2465 | .mx-n5 { |
||
| 2466 | margin-left: -3rem !important; |
||
| 2467 | } |
||
| 2468 | |||
| 2469 | .m-auto { |
||
| 2470 | margin: auto !important; |
||
| 2471 | } |
||
| 2472 | |||
| 2473 | .mt-auto, |
||
| 2474 | .my-auto { |
||
| 2475 | margin-top: auto !important; |
||
| 2476 | } |
||
| 2477 | |||
| 2478 | .mr-auto, |
||
| 2479 | .mx-auto { |
||
| 2480 | margin-right: auto !important; |
||
| 2481 | } |
||
| 2482 | |||
| 2483 | .mb-auto, |
||
| 2484 | .my-auto { |
||
| 2485 | margin-bottom: auto !important; |
||
| 2486 | } |
||
| 2487 | |||
| 2488 | .ml-auto, |
||
| 2489 | .mx-auto { |
||
| 2490 | margin-left: auto !important; |
||
| 2491 | } |
||
| 2492 | |||
| 2493 | @media (min-width: 576px) { |
||
| 2494 | .m-sm-0 { |
||
| 2495 | margin: 0 !important; |
||
| 2496 | } |
||
| 2497 | .mt-sm-0, |
||
| 2498 | .my-sm-0 { |
||
| 2499 | margin-top: 0 !important; |
||
| 2500 | } |
||
| 2501 | .mr-sm-0, |
||
| 2502 | .mx-sm-0 { |
||
| 2503 | margin-right: 0 !important; |
||
| 2504 | } |
||
| 2505 | .mb-sm-0, |
||
| 2506 | .my-sm-0 { |
||
| 2507 | margin-bottom: 0 !important; |
||
| 2508 | } |
||
| 2509 | .ml-sm-0, |
||
| 2510 | .mx-sm-0 { |
||
| 2511 | margin-left: 0 !important; |
||
| 2512 | } |
||
| 2513 | .m-sm-1 { |
||
| 2514 | margin: 0.25rem !important; |
||
| 2515 | } |
||
| 2516 | .mt-sm-1, |
||
| 2517 | .my-sm-1 { |
||
| 2518 | margin-top: 0.25rem !important; |
||
| 2519 | } |
||
| 2520 | .mr-sm-1, |
||
| 2521 | .mx-sm-1 { |
||
| 2522 | margin-right: 0.25rem !important; |
||
| 2523 | } |
||
| 2524 | .mb-sm-1, |
||
| 2525 | .my-sm-1 { |
||
| 2526 | margin-bottom: 0.25rem !important; |
||
| 2527 | } |
||
| 2528 | .ml-sm-1, |
||
| 2529 | .mx-sm-1 { |
||
| 2530 | margin-left: 0.25rem !important; |
||
| 2531 | } |
||
| 2532 | .m-sm-2 { |
||
| 2533 | margin: 0.5rem !important; |
||
| 2534 | } |
||
| 2535 | .mt-sm-2, |
||
| 2536 | .my-sm-2 { |
||
| 2537 | margin-top: 0.5rem !important; |
||
| 2538 | } |
||
| 2539 | .mr-sm-2, |
||
| 2540 | .mx-sm-2 { |
||
| 2541 | margin-right: 0.5rem !important; |
||
| 2542 | } |
||
| 2543 | .mb-sm-2, |
||
| 2544 | .my-sm-2 { |
||
| 2545 | margin-bottom: 0.5rem !important; |
||
| 2546 | } |
||
| 2547 | .ml-sm-2, |
||
| 2548 | .mx-sm-2 { |
||
| 2549 | margin-left: 0.5rem !important; |
||
| 2550 | } |
||
| 2551 | .m-sm-3 { |
||
| 2552 | margin: 1rem !important; |
||
| 2553 | } |
||
| 2554 | .mt-sm-3, |
||
| 2555 | .my-sm-3 { |
||
| 2556 | margin-top: 1rem !important; |
||
| 2557 | } |
||
| 2558 | .mr-sm-3, |
||
| 2559 | .mx-sm-3 { |
||
| 2560 | margin-right: 1rem !important; |
||
| 2561 | } |
||
| 2562 | .mb-sm-3, |
||
| 2563 | .my-sm-3 { |
||
| 2564 | margin-bottom: 1rem !important; |
||
| 2565 | } |
||
| 2566 | .ml-sm-3, |
||
| 2567 | .mx-sm-3 { |
||
| 2568 | margin-left: 1rem !important; |
||
| 2569 | } |
||
| 2570 | .m-sm-4 { |
||
| 2571 | margin: 1.5rem !important; |
||
| 2572 | } |
||
| 2573 | .mt-sm-4, |
||
| 2574 | .my-sm-4 { |
||
| 2575 | margin-top: 1.5rem !important; |
||
| 2576 | } |
||
| 2577 | .mr-sm-4, |
||
| 2578 | .mx-sm-4 { |
||
| 2579 | margin-right: 1.5rem !important; |
||
| 2580 | } |
||
| 2581 | .mb-sm-4, |
||
| 2582 | .my-sm-4 { |
||
| 2583 | margin-bottom: 1.5rem !important; |
||
| 2584 | } |
||
| 2585 | .ml-sm-4, |
||
| 2586 | .mx-sm-4 { |
||
| 2587 | margin-left: 1.5rem !important; |
||
| 2588 | } |
||
| 2589 | .m-sm-5 { |
||
| 2590 | margin: 3rem !important; |
||
| 2591 | } |
||
| 2592 | .mt-sm-5, |
||
| 2593 | .my-sm-5 { |
||
| 2594 | margin-top: 3rem !important; |
||
| 2595 | } |
||
| 2596 | .mr-sm-5, |
||
| 2597 | .mx-sm-5 { |
||
| 2598 | margin-right: 3rem !important; |
||
| 2599 | } |
||
| 2600 | .mb-sm-5, |
||
| 2601 | .my-sm-5 { |
||
| 2602 | margin-bottom: 3rem !important; |
||
| 2603 | } |
||
| 2604 | .ml-sm-5, |
||
| 2605 | .mx-sm-5 { |
||
| 2606 | margin-left: 3rem !important; |
||
| 2607 | } |
||
| 2608 | .p-sm-0 { |
||
| 2609 | padding: 0 !important; |
||
| 2610 | } |
||
| 2611 | .pt-sm-0, |
||
| 2612 | .py-sm-0 { |
||
| 2613 | padding-top: 0 !important; |
||
| 2614 | } |
||
| 2615 | .pr-sm-0, |
||
| 2616 | .px-sm-0 { |
||
| 2617 | padding-right: 0 !important; |
||
| 2618 | } |
||
| 2619 | .pb-sm-0, |
||
| 2620 | .py-sm-0 { |
||
| 2621 | padding-bottom: 0 !important; |
||
| 2622 | } |
||
| 2623 | .pl-sm-0, |
||
| 2624 | .px-sm-0 { |
||
| 2625 | padding-left: 0 !important; |
||
| 2626 | } |
||
| 2627 | .p-sm-1 { |
||
| 2628 | padding: 0.25rem !important; |
||
| 2629 | } |
||
| 2630 | .pt-sm-1, |
||
| 2631 | .py-sm-1 { |
||
| 2632 | padding-top: 0.25rem !important; |
||
| 2633 | } |
||
| 2634 | .pr-sm-1, |
||
| 2635 | .px-sm-1 { |
||
| 2636 | padding-right: 0.25rem !important; |
||
| 2637 | } |
||
| 2638 | .pb-sm-1, |
||
| 2639 | .py-sm-1 { |
||
| 2640 | padding-bottom: 0.25rem !important; |
||
| 2641 | } |
||
| 2642 | .pl-sm-1, |
||
| 2643 | .px-sm-1 { |
||
| 2644 | padding-left: 0.25rem !important; |
||
| 2645 | } |
||
| 2646 | .p-sm-2 { |
||
| 2647 | padding: 0.5rem !important; |
||
| 2648 | } |
||
| 2649 | .pt-sm-2, |
||
| 2650 | .py-sm-2 { |
||
| 2651 | padding-top: 0.5rem !important; |
||
| 2652 | } |
||
| 2653 | .pr-sm-2, |
||
| 2654 | .px-sm-2 { |
||
| 2655 | padding-right: 0.5rem !important; |
||
| 2656 | } |
||
| 2657 | .pb-sm-2, |
||
| 2658 | .py-sm-2 { |
||
| 2659 | padding-bottom: 0.5rem !important; |
||
| 2660 | } |
||
| 2661 | .pl-sm-2, |
||
| 2662 | .px-sm-2 { |
||
| 2663 | padding-left: 0.5rem !important; |
||
| 2664 | } |
||
| 2665 | .p-sm-3 { |
||
| 2666 | padding: 1rem !important; |
||
| 2667 | } |
||
| 2668 | .pt-sm-3, |
||
| 2669 | .py-sm-3 { |
||
| 2670 | padding-top: 1rem !important; |
||
| 2671 | } |
||
| 2672 | .pr-sm-3, |
||
| 2673 | .px-sm-3 { |
||
| 2674 | padding-right: 1rem !important; |
||
| 2675 | } |
||
| 2676 | .pb-sm-3, |
||
| 2677 | .py-sm-3 { |
||
| 2678 | padding-bottom: 1rem !important; |
||
| 2679 | } |
||
| 2680 | .pl-sm-3, |
||
| 2681 | .px-sm-3 { |
||
| 2682 | padding-left: 1rem !important; |
||
| 2683 | } |
||
| 2684 | .p-sm-4 { |
||
| 2685 | padding: 1.5rem !important; |
||
| 2686 | } |
||
| 2687 | .pt-sm-4, |
||
| 2688 | .py-sm-4 { |
||
| 2689 | padding-top: 1.5rem !important; |
||
| 2690 | } |
||
| 2691 | .pr-sm-4, |
||
| 2692 | .px-sm-4 { |
||
| 2693 | padding-right: 1.5rem !important; |
||
| 2694 | } |
||
| 2695 | .pb-sm-4, |
||
| 2696 | .py-sm-4 { |
||
| 2697 | padding-bottom: 1.5rem !important; |
||
| 2698 | } |
||
| 2699 | .pl-sm-4, |
||
| 2700 | .px-sm-4 { |
||
| 2701 | padding-left: 1.5rem !important; |
||
| 2702 | } |
||
| 2703 | .p-sm-5 { |
||
| 2704 | padding: 3rem !important; |
||
| 2705 | } |
||
| 2706 | .pt-sm-5, |
||
| 2707 | .py-sm-5 { |
||
| 2708 | padding-top: 3rem !important; |
||
| 2709 | } |
||
| 2710 | .pr-sm-5, |
||
| 2711 | .px-sm-5 { |
||
| 2712 | padding-right: 3rem !important; |
||
| 2713 | } |
||
| 2714 | .pb-sm-5, |
||
| 2715 | .py-sm-5 { |
||
| 2716 | padding-bottom: 3rem !important; |
||
| 2717 | } |
||
| 2718 | .pl-sm-5, |
||
| 2719 | .px-sm-5 { |
||
| 2720 | padding-left: 3rem !important; |
||
| 2721 | } |
||
| 2722 | .m-sm-n1 { |
||
| 2723 | margin: -0.25rem !important; |
||
| 2724 | } |
||
| 2725 | .mt-sm-n1, |
||
| 2726 | .my-sm-n1 { |
||
| 2727 | margin-top: -0.25rem !important; |
||
| 2728 | } |
||
| 2729 | .mr-sm-n1, |
||
| 2730 | .mx-sm-n1 { |
||
| 2731 | margin-right: -0.25rem !important; |
||
| 2732 | } |
||
| 2733 | .mb-sm-n1, |
||
| 2734 | .my-sm-n1 { |
||
| 2735 | margin-bottom: -0.25rem !important; |
||
| 2736 | } |
||
| 2737 | .ml-sm-n1, |
||
| 2738 | .mx-sm-n1 { |
||
| 2739 | margin-left: -0.25rem !important; |
||
| 2740 | } |
||
| 2741 | .m-sm-n2 { |
||
| 2742 | margin: -0.5rem !important; |
||
| 2743 | } |
||
| 2744 | .mt-sm-n2, |
||
| 2745 | .my-sm-n2 { |
||
| 2746 | margin-top: -0.5rem !important; |
||
| 2747 | } |
||
| 2748 | .mr-sm-n2, |
||
| 2749 | .mx-sm-n2 { |
||
| 2750 | margin-right: -0.5rem !important; |
||
| 2751 | } |
||
| 2752 | .mb-sm-n2, |
||
| 2753 | .my-sm-n2 { |
||
| 2754 | margin-bottom: -0.5rem !important; |
||
| 2755 | } |
||
| 2756 | .ml-sm-n2, |
||
| 2757 | .mx-sm-n2 { |
||
| 2758 | margin-left: -0.5rem !important; |
||
| 2759 | } |
||
| 2760 | .m-sm-n3 { |
||
| 2761 | margin: -1rem !important; |
||
| 2762 | } |
||
| 2763 | .mt-sm-n3, |
||
| 2764 | .my-sm-n3 { |
||
| 2765 | margin-top: -1rem !important; |
||
| 2766 | } |
||
| 2767 | .mr-sm-n3, |
||
| 2768 | .mx-sm-n3 { |
||
| 2769 | margin-right: -1rem !important; |
||
| 2770 | } |
||
| 2771 | .mb-sm-n3, |
||
| 2772 | .my-sm-n3 { |
||
| 2773 | margin-bottom: -1rem !important; |
||
| 2774 | } |
||
| 2775 | .ml-sm-n3, |
||
| 2776 | .mx-sm-n3 { |
||
| 2777 | margin-left: -1rem !important; |
||
| 2778 | } |
||
| 2779 | .m-sm-n4 { |
||
| 2780 | margin: -1.5rem !important; |
||
| 2781 | } |
||
| 2782 | .mt-sm-n4, |
||
| 2783 | .my-sm-n4 { |
||
| 2784 | margin-top: -1.5rem !important; |
||
| 2785 | } |
||
| 2786 | .mr-sm-n4, |
||
| 2787 | .mx-sm-n4 { |
||
| 2788 | margin-right: -1.5rem !important; |
||
| 2789 | } |
||
| 2790 | .mb-sm-n4, |
||
| 2791 | .my-sm-n4 { |
||
| 2792 | margin-bottom: -1.5rem !important; |
||
| 2793 | } |
||
| 2794 | .ml-sm-n4, |
||
| 2795 | .mx-sm-n4 { |
||
| 2796 | margin-left: -1.5rem !important; |
||
| 2797 | } |
||
| 2798 | .m-sm-n5 { |
||
| 2799 | margin: -3rem !important; |
||
| 2800 | } |
||
| 2801 | .mt-sm-n5, |
||
| 2802 | .my-sm-n5 { |
||
| 2803 | margin-top: -3rem !important; |
||
| 2804 | } |
||
| 2805 | .mr-sm-n5, |
||
| 2806 | .mx-sm-n5 { |
||
| 2807 | margin-right: -3rem !important; |
||
| 2808 | } |
||
| 2809 | .mb-sm-n5, |
||
| 2810 | .my-sm-n5 { |
||
| 2811 | margin-bottom: -3rem !important; |
||
| 2812 | } |
||
| 2813 | .ml-sm-n5, |
||
| 2814 | .mx-sm-n5 { |
||
| 2815 | margin-left: -3rem !important; |
||
| 2816 | } |
||
| 2817 | .m-sm-auto { |
||
| 2818 | margin: auto !important; |
||
| 2819 | } |
||
| 2820 | .mt-sm-auto, |
||
| 2821 | .my-sm-auto { |
||
| 2822 | margin-top: auto !important; |
||
| 2823 | } |
||
| 2824 | .mr-sm-auto, |
||
| 2825 | .mx-sm-auto { |
||
| 2826 | margin-right: auto !important; |
||
| 2827 | } |
||
| 2828 | .mb-sm-auto, |
||
| 2829 | .my-sm-auto { |
||
| 2830 | margin-bottom: auto !important; |
||
| 2831 | } |
||
| 2832 | .ml-sm-auto, |
||
| 2833 | .mx-sm-auto { |
||
| 2834 | margin-left: auto !important; |
||
| 2835 | } |
||
| 2836 | } |
||
| 2837 | |||
| 2838 | @media (min-width: 768px) { |
||
| 2839 | .m-md-0 { |
||
| 2840 | margin: 0 !important; |
||
| 2841 | } |
||
| 2842 | .mt-md-0, |
||
| 2843 | .my-md-0 { |
||
| 2844 | margin-top: 0 !important; |
||
| 2845 | } |
||
| 2846 | .mr-md-0, |
||
| 2847 | .mx-md-0 { |
||
| 2848 | margin-right: 0 !important; |
||
| 2849 | } |
||
| 2850 | .mb-md-0, |
||
| 2851 | .my-md-0 { |
||
| 2852 | margin-bottom: 0 !important; |
||
| 2853 | } |
||
| 2854 | .ml-md-0, |
||
| 2855 | .mx-md-0 { |
||
| 2856 | margin-left: 0 !important; |
||
| 2857 | } |
||
| 2858 | .m-md-1 { |
||
| 2859 | margin: 0.25rem !important; |
||
| 2860 | } |
||
| 2861 | .mt-md-1, |
||
| 2862 | .my-md-1 { |
||
| 2863 | margin-top: 0.25rem !important; |
||
| 2864 | } |
||
| 2865 | .mr-md-1, |
||
| 2866 | .mx-md-1 { |
||
| 2867 | margin-right: 0.25rem !important; |
||
| 2868 | } |
||
| 2869 | .mb-md-1, |
||
| 2870 | .my-md-1 { |
||
| 2871 | margin-bottom: 0.25rem !important; |
||
| 2872 | } |
||
| 2873 | .ml-md-1, |
||
| 2874 | .mx-md-1 { |
||
| 2875 | margin-left: 0.25rem !important; |
||
| 2876 | } |
||
| 2877 | .m-md-2 { |
||
| 2878 | margin: 0.5rem !important; |
||
| 2879 | } |
||
| 2880 | .mt-md-2, |
||
| 2881 | .my-md-2 { |
||
| 2882 | margin-top: 0.5rem !important; |
||
| 2883 | } |
||
| 2884 | .mr-md-2, |
||
| 2885 | .mx-md-2 { |
||
| 2886 | margin-right: 0.5rem !important; |
||
| 2887 | } |
||
| 2888 | .mb-md-2, |
||
| 2889 | .my-md-2 { |
||
| 2890 | margin-bottom: 0.5rem !important; |
||
| 2891 | } |
||
| 2892 | .ml-md-2, |
||
| 2893 | .mx-md-2 { |
||
| 2894 | margin-left: 0.5rem !important; |
||
| 2895 | } |
||
| 2896 | .m-md-3 { |
||
| 2897 | margin: 1rem !important; |
||
| 2898 | } |
||
| 2899 | .mt-md-3, |
||
| 2900 | .my-md-3 { |
||
| 2901 | margin-top: 1rem !important; |
||
| 2902 | } |
||
| 2903 | .mr-md-3, |
||
| 2904 | .mx-md-3 { |
||
| 2905 | margin-right: 1rem !important; |
||
| 2906 | } |
||
| 2907 | .mb-md-3, |
||
| 2908 | .my-md-3 { |
||
| 2909 | margin-bottom: 1rem !important; |
||
| 2910 | } |
||
| 2911 | .ml-md-3, |
||
| 2912 | .mx-md-3 { |
||
| 2913 | margin-left: 1rem !important; |
||
| 2914 | } |
||
| 2915 | .m-md-4 { |
||
| 2916 | margin: 1.5rem !important; |
||
| 2917 | } |
||
| 2918 | .mt-md-4, |
||
| 2919 | .my-md-4 { |
||
| 2920 | margin-top: 1.5rem !important; |
||
| 2921 | } |
||
| 2922 | .mr-md-4, |
||
| 2923 | .mx-md-4 { |
||
| 2924 | margin-right: 1.5rem !important; |
||
| 2925 | } |
||
| 2926 | .mb-md-4, |
||
| 2927 | .my-md-4 { |
||
| 2928 | margin-bottom: 1.5rem !important; |
||
| 2929 | } |
||
| 2930 | .ml-md-4, |
||
| 2931 | .mx-md-4 { |
||
| 2932 | margin-left: 1.5rem !important; |
||
| 2933 | } |
||
| 2934 | .m-md-5 { |
||
| 2935 | margin: 3rem !important; |
||
| 2936 | } |
||
| 2937 | .mt-md-5, |
||
| 2938 | .my-md-5 { |
||
| 2939 | margin-top: 3rem !important; |
||
| 2940 | } |
||
| 2941 | .mr-md-5, |
||
| 2942 | .mx-md-5 { |
||
| 2943 | margin-right: 3rem !important; |
||
| 2944 | } |
||
| 2945 | .mb-md-5, |
||
| 2946 | .my-md-5 { |
||
| 2947 | margin-bottom: 3rem !important; |
||
| 2948 | } |
||
| 2949 | .ml-md-5, |
||
| 2950 | .mx-md-5 { |
||
| 2951 | margin-left: 3rem !important; |
||
| 2952 | } |
||
| 2953 | .p-md-0 { |
||
| 2954 | padding: 0 !important; |
||
| 2955 | } |
||
| 2956 | .pt-md-0, |
||
| 2957 | .py-md-0 { |
||
| 2958 | padding-top: 0 !important; |
||
| 2959 | } |
||
| 2960 | .pr-md-0, |
||
| 2961 | .px-md-0 { |
||
| 2962 | padding-right: 0 !important; |
||
| 2963 | } |
||
| 2964 | .pb-md-0, |
||
| 2965 | .py-md-0 { |
||
| 2966 | padding-bottom: 0 !important; |
||
| 2967 | } |
||
| 2968 | .pl-md-0, |
||
| 2969 | .px-md-0 { |
||
| 2970 | padding-left: 0 !important; |
||
| 2971 | } |
||
| 2972 | .p-md-1 { |
||
| 2973 | padding: 0.25rem !important; |
||
| 2974 | } |
||
| 2975 | .pt-md-1, |
||
| 2976 | .py-md-1 { |
||
| 2977 | padding-top: 0.25rem !important; |
||
| 2978 | } |
||
| 2979 | .pr-md-1, |
||
| 2980 | .px-md-1 { |
||
| 2981 | padding-right: 0.25rem !important; |
||
| 2982 | } |
||
| 2983 | .pb-md-1, |
||
| 2984 | .py-md-1 { |
||
| 2985 | padding-bottom: 0.25rem !important; |
||
| 2986 | } |
||
| 2987 | .pl-md-1, |
||
| 2988 | .px-md-1 { |
||
| 2989 | padding-left: 0.25rem !important; |
||
| 2990 | } |
||
| 2991 | .p-md-2 { |
||
| 2992 | padding: 0.5rem !important; |
||
| 2993 | } |
||
| 2994 | .pt-md-2, |
||
| 2995 | .py-md-2 { |
||
| 2996 | padding-top: 0.5rem !important; |
||
| 2997 | } |
||
| 2998 | .pr-md-2, |
||
| 2999 | .px-md-2 { |
||
| 3000 | padding-right: 0.5rem !important; |
||
| 3001 | } |
||
| 3002 | .pb-md-2, |
||
| 3003 | .py-md-2 { |
||
| 3004 | padding-bottom: 0.5rem !important; |
||
| 3005 | } |
||
| 3006 | .pl-md-2, |
||
| 3007 | .px-md-2 { |
||
| 3008 | padding-left: 0.5rem !important; |
||
| 3009 | } |
||
| 3010 | .p-md-3 { |
||
| 3011 | padding: 1rem !important; |
||
| 3012 | } |
||
| 3013 | .pt-md-3, |
||
| 3014 | .py-md-3 { |
||
| 3015 | padding-top: 1rem !important; |
||
| 3016 | } |
||
| 3017 | .pr-md-3, |
||
| 3018 | .px-md-3 { |
||
| 3019 | padding-right: 1rem !important; |
||
| 3020 | } |
||
| 3021 | .pb-md-3, |
||
| 3022 | .py-md-3 { |
||
| 3023 | padding-bottom: 1rem !important; |
||
| 3024 | } |
||
| 3025 | .pl-md-3, |
||
| 3026 | .px-md-3 { |
||
| 3027 | padding-left: 1rem !important; |
||
| 3028 | } |
||
| 3029 | .p-md-4 { |
||
| 3030 | padding: 1.5rem !important; |
||
| 3031 | } |
||
| 3032 | .pt-md-4, |
||
| 3033 | .py-md-4 { |
||
| 3034 | padding-top: 1.5rem !important; |
||
| 3035 | } |
||
| 3036 | .pr-md-4, |
||
| 3037 | .px-md-4 { |
||
| 3038 | padding-right: 1.5rem !important; |
||
| 3039 | } |
||
| 3040 | .pb-md-4, |
||
| 3041 | .py-md-4 { |
||
| 3042 | padding-bottom: 1.5rem !important; |
||
| 3043 | } |
||
| 3044 | .pl-md-4, |
||
| 3045 | .px-md-4 { |
||
| 3046 | padding-left: 1.5rem !important; |
||
| 3047 | } |
||
| 3048 | .p-md-5 { |
||
| 3049 | padding: 3rem !important; |
||
| 3050 | } |
||
| 3051 | .pt-md-5, |
||
| 3052 | .py-md-5 { |
||
| 3053 | padding-top: 3rem !important; |
||
| 3054 | } |
||
| 3055 | .pr-md-5, |
||
| 3056 | .px-md-5 { |
||
| 3057 | padding-right: 3rem !important; |
||
| 3058 | } |
||
| 3059 | .pb-md-5, |
||
| 3060 | .py-md-5 { |
||
| 3061 | padding-bottom: 3rem !important; |
||
| 3062 | } |
||
| 3063 | .pl-md-5, |
||
| 3064 | .px-md-5 { |
||
| 3065 | padding-left: 3rem !important; |
||
| 3066 | } |
||
| 3067 | .m-md-n1 { |
||
| 3068 | margin: -0.25rem !important; |
||
| 3069 | } |
||
| 3070 | .mt-md-n1, |
||
| 3071 | .my-md-n1 { |
||
| 3072 | margin-top: -0.25rem !important; |
||
| 3073 | } |
||
| 3074 | .mr-md-n1, |
||
| 3075 | .mx-md-n1 { |
||
| 3076 | margin-right: -0.25rem !important; |
||
| 3077 | } |
||
| 3078 | .mb-md-n1, |
||
| 3079 | .my-md-n1 { |
||
| 3080 | margin-bottom: -0.25rem !important; |
||
| 3081 | } |
||
| 3082 | .ml-md-n1, |
||
| 3083 | .mx-md-n1 { |
||
| 3084 | margin-left: -0.25rem !important; |
||
| 3085 | } |
||
| 3086 | .m-md-n2 { |
||
| 3087 | margin: -0.5rem !important; |
||
| 3088 | } |
||
| 3089 | .mt-md-n2, |
||
| 3090 | .my-md-n2 { |
||
| 3091 | margin-top: -0.5rem !important; |
||
| 3092 | } |
||
| 3093 | .mr-md-n2, |
||
| 3094 | .mx-md-n2 { |
||
| 3095 | margin-right: -0.5rem !important; |
||
| 3096 | } |
||
| 3097 | .mb-md-n2, |
||
| 3098 | .my-md-n2 { |
||
| 3099 | margin-bottom: -0.5rem !important; |
||
| 3100 | } |
||
| 3101 | .ml-md-n2, |
||
| 3102 | .mx-md-n2 { |
||
| 3103 | margin-left: -0.5rem !important; |
||
| 3104 | } |
||
| 3105 | .m-md-n3 { |
||
| 3106 | margin: -1rem !important; |
||
| 3107 | } |
||
| 3108 | .mt-md-n3, |
||
| 3109 | .my-md-n3 { |
||
| 3110 | margin-top: -1rem !important; |
||
| 3111 | } |
||
| 3112 | .mr-md-n3, |
||
| 3113 | .mx-md-n3 { |
||
| 3114 | margin-right: -1rem !important; |
||
| 3115 | } |
||
| 3116 | .mb-md-n3, |
||
| 3117 | .my-md-n3 { |
||
| 3118 | margin-bottom: -1rem !important; |
||
| 3119 | } |
||
| 3120 | .ml-md-n3, |
||
| 3121 | .mx-md-n3 { |
||
| 3122 | margin-left: -1rem !important; |
||
| 3123 | } |
||
| 3124 | .m-md-n4 { |
||
| 3125 | margin: -1.5rem !important; |
||
| 3126 | } |
||
| 3127 | .mt-md-n4, |
||
| 3128 | .my-md-n4 { |
||
| 3129 | margin-top: -1.5rem !important; |
||
| 3130 | } |
||
| 3131 | .mr-md-n4, |
||
| 3132 | .mx-md-n4 { |
||
| 3133 | margin-right: -1.5rem !important; |
||
| 3134 | } |
||
| 3135 | .mb-md-n4, |
||
| 3136 | .my-md-n4 { |
||
| 3137 | margin-bottom: -1.5rem !important; |
||
| 3138 | } |
||
| 3139 | .ml-md-n4, |
||
| 3140 | .mx-md-n4 { |
||
| 3141 | margin-left: -1.5rem !important; |
||
| 3142 | } |
||
| 3143 | .m-md-n5 { |
||
| 3144 | margin: -3rem !important; |
||
| 3145 | } |
||
| 3146 | .mt-md-n5, |
||
| 3147 | .my-md-n5 { |
||
| 3148 | margin-top: -3rem !important; |
||
| 3149 | } |
||
| 3150 | .mr-md-n5, |
||
| 3151 | .mx-md-n5 { |
||
| 3152 | margin-right: -3rem !important; |
||
| 3153 | } |
||
| 3154 | .mb-md-n5, |
||
| 3155 | .my-md-n5 { |
||
| 3156 | margin-bottom: -3rem !important; |
||
| 3157 | } |
||
| 3158 | .ml-md-n5, |
||
| 3159 | .mx-md-n5 { |
||
| 3160 | margin-left: -3rem !important; |
||
| 3161 | } |
||
| 3162 | .m-md-auto { |
||
| 3163 | margin: auto !important; |
||
| 3164 | } |
||
| 3165 | .mt-md-auto, |
||
| 3166 | .my-md-auto { |
||
| 3167 | margin-top: auto !important; |
||
| 3168 | } |
||
| 3169 | .mr-md-auto, |
||
| 3170 | .mx-md-auto { |
||
| 3171 | margin-right: auto !important; |
||
| 3172 | } |
||
| 3173 | .mb-md-auto, |
||
| 3174 | .my-md-auto { |
||
| 3175 | margin-bottom: auto !important; |
||
| 3176 | } |
||
| 3177 | .ml-md-auto, |
||
| 3178 | .mx-md-auto { |
||
| 3179 | margin-left: auto !important; |
||
| 3180 | } |
||
| 3181 | } |
||
| 3182 | |||
| 3183 | @media (min-width: 992px) { |
||
| 3184 | .m-lg-0 { |
||
| 3185 | margin: 0 !important; |
||
| 3186 | } |
||
| 3187 | .mt-lg-0, |
||
| 3188 | .my-lg-0 { |
||
| 3189 | margin-top: 0 !important; |
||
| 3190 | } |
||
| 3191 | .mr-lg-0, |
||
| 3192 | .mx-lg-0 { |
||
| 3193 | margin-right: 0 !important; |
||
| 3194 | } |
||
| 3195 | .mb-lg-0, |
||
| 3196 | .my-lg-0 { |
||
| 3197 | margin-bottom: 0 !important; |
||
| 3198 | } |
||
| 3199 | .ml-lg-0, |
||
| 3200 | .mx-lg-0 { |
||
| 3201 | margin-left: 0 !important; |
||
| 3202 | } |
||
| 3203 | .m-lg-1 { |
||
| 3204 | margin: 0.25rem !important; |
||
| 3205 | } |
||
| 3206 | .mt-lg-1, |
||
| 3207 | .my-lg-1 { |
||
| 3208 | margin-top: 0.25rem !important; |
||
| 3209 | } |
||
| 3210 | .mr-lg-1, |
||
| 3211 | .mx-lg-1 { |
||
| 3212 | margin-right: 0.25rem !important; |
||
| 3213 | } |
||
| 3214 | .mb-lg-1, |
||
| 3215 | .my-lg-1 { |
||
| 3216 | margin-bottom: 0.25rem !important; |
||
| 3217 | } |
||
| 3218 | .ml-lg-1, |
||
| 3219 | .mx-lg-1 { |
||
| 3220 | margin-left: 0.25rem !important; |
||
| 3221 | } |
||
| 3222 | .m-lg-2 { |
||
| 3223 | margin: 0.5rem !important; |
||
| 3224 | } |
||
| 3225 | .mt-lg-2, |
||
| 3226 | .my-lg-2 { |
||
| 3227 | margin-top: 0.5rem !important; |
||
| 3228 | } |
||
| 3229 | .mr-lg-2, |
||
| 3230 | .mx-lg-2 { |
||
| 3231 | margin-right: 0.5rem !important; |
||
| 3232 | } |
||
| 3233 | .mb-lg-2, |
||
| 3234 | .my-lg-2 { |
||
| 3235 | margin-bottom: 0.5rem !important; |
||
| 3236 | } |
||
| 3237 | .ml-lg-2, |
||
| 3238 | .mx-lg-2 { |
||
| 3239 | margin-left: 0.5rem !important; |
||
| 3240 | } |
||
| 3241 | .m-lg-3 { |
||
| 3242 | margin: 1rem !important; |
||
| 3243 | } |
||
| 3244 | .mt-lg-3, |
||
| 3245 | .my-lg-3 { |
||
| 3246 | margin-top: 1rem !important; |
||
| 3247 | } |
||
| 3248 | .mr-lg-3, |
||
| 3249 | .mx-lg-3 { |
||
| 3250 | margin-right: 1rem !important; |
||
| 3251 | } |
||
| 3252 | .mb-lg-3, |
||
| 3253 | .my-lg-3 { |
||
| 3254 | margin-bottom: 1rem !important; |
||
| 3255 | } |
||
| 3256 | .ml-lg-3, |
||
| 3257 | .mx-lg-3 { |
||
| 3258 | margin-left: 1rem !important; |
||
| 3259 | } |
||
| 3260 | .m-lg-4 { |
||
| 3261 | margin: 1.5rem !important; |
||
| 3262 | } |
||
| 3263 | .mt-lg-4, |
||
| 3264 | .my-lg-4 { |
||
| 3265 | margin-top: 1.5rem !important; |
||
| 3266 | } |
||
| 3267 | .mr-lg-4, |
||
| 3268 | .mx-lg-4 { |
||
| 3269 | margin-right: 1.5rem !important; |
||
| 3270 | } |
||
| 3271 | .mb-lg-4, |
||
| 3272 | .my-lg-4 { |
||
| 3273 | margin-bottom: 1.5rem !important; |
||
| 3274 | } |
||
| 3275 | .ml-lg-4, |
||
| 3276 | .mx-lg-4 { |
||
| 3277 | margin-left: 1.5rem !important; |
||
| 3278 | } |
||
| 3279 | .m-lg-5 { |
||
| 3280 | margin: 3rem !important; |
||
| 3281 | } |
||
| 3282 | .mt-lg-5, |
||
| 3283 | .my-lg-5 { |
||
| 3284 | margin-top: 3rem !important; |
||
| 3285 | } |
||
| 3286 | .mr-lg-5, |
||
| 3287 | .mx-lg-5 { |
||
| 3288 | margin-right: 3rem !important; |
||
| 3289 | } |
||
| 3290 | .mb-lg-5, |
||
| 3291 | .my-lg-5 { |
||
| 3292 | margin-bottom: 3rem !important; |
||
| 3293 | } |
||
| 3294 | .ml-lg-5, |
||
| 3295 | .mx-lg-5 { |
||
| 3296 | margin-left: 3rem !important; |
||
| 3297 | } |
||
| 3298 | .p-lg-0 { |
||
| 3299 | padding: 0 !important; |
||
| 3300 | } |
||
| 3301 | .pt-lg-0, |
||
| 3302 | .py-lg-0 { |
||
| 3303 | padding-top: 0 !important; |
||
| 3304 | } |
||
| 3305 | .pr-lg-0, |
||
| 3306 | .px-lg-0 { |
||
| 3307 | padding-right: 0 !important; |
||
| 3308 | } |
||
| 3309 | .pb-lg-0, |
||
| 3310 | .py-lg-0 { |
||
| 3311 | padding-bottom: 0 !important; |
||
| 3312 | } |
||
| 3313 | .pl-lg-0, |
||
| 3314 | .px-lg-0 { |
||
| 3315 | padding-left: 0 !important; |
||
| 3316 | } |
||
| 3317 | .p-lg-1 { |
||
| 3318 | padding: 0.25rem !important; |
||
| 3319 | } |
||
| 3320 | .pt-lg-1, |
||
| 3321 | .py-lg-1 { |
||
| 3322 | padding-top: 0.25rem !important; |
||
| 3323 | } |
||
| 3324 | .pr-lg-1, |
||
| 3325 | .px-lg-1 { |
||
| 3326 | padding-right: 0.25rem !important; |
||
| 3327 | } |
||
| 3328 | .pb-lg-1, |
||
| 3329 | .py-lg-1 { |
||
| 3330 | padding-bottom: 0.25rem !important; |
||
| 3331 | } |
||
| 3332 | .pl-lg-1, |
||
| 3333 | .px-lg-1 { |
||
| 3334 | padding-left: 0.25rem !important; |
||
| 3335 | } |
||
| 3336 | .p-lg-2 { |
||
| 3337 | padding: 0.5rem !important; |
||
| 3338 | } |
||
| 3339 | .pt-lg-2, |
||
| 3340 | .py-lg-2 { |
||
| 3341 | padding-top: 0.5rem !important; |
||
| 3342 | } |
||
| 3343 | .pr-lg-2, |
||
| 3344 | .px-lg-2 { |
||
| 3345 | padding-right: 0.5rem !important; |
||
| 3346 | } |
||
| 3347 | .pb-lg-2, |
||
| 3348 | .py-lg-2 { |
||
| 3349 | padding-bottom: 0.5rem !important; |
||
| 3350 | } |
||
| 3351 | .pl-lg-2, |
||
| 3352 | .px-lg-2 { |
||
| 3353 | padding-left: 0.5rem !important; |
||
| 3354 | } |
||
| 3355 | .p-lg-3 { |
||
| 3356 | padding: 1rem !important; |
||
| 3357 | } |
||
| 3358 | .pt-lg-3, |
||
| 3359 | .py-lg-3 { |
||
| 3360 | padding-top: 1rem !important; |
||
| 3361 | } |
||
| 3362 | .pr-lg-3, |
||
| 3363 | .px-lg-3 { |
||
| 3364 | padding-right: 1rem !important; |
||
| 3365 | } |
||
| 3366 | .pb-lg-3, |
||
| 3367 | .py-lg-3 { |
||
| 3368 | padding-bottom: 1rem !important; |
||
| 3369 | } |
||
| 3370 | .pl-lg-3, |
||
| 3371 | .px-lg-3 { |
||
| 3372 | padding-left: 1rem !important; |
||
| 3373 | } |
||
| 3374 | .p-lg-4 { |
||
| 3375 | padding: 1.5rem !important; |
||
| 3376 | } |
||
| 3377 | .pt-lg-4, |
||
| 3378 | .py-lg-4 { |
||
| 3379 | padding-top: 1.5rem !important; |
||
| 3380 | } |
||
| 3381 | .pr-lg-4, |
||
| 3382 | .px-lg-4 { |
||
| 3383 | padding-right: 1.5rem !important; |
||
| 3384 | } |
||
| 3385 | .pb-lg-4, |
||
| 3386 | .py-lg-4 { |
||
| 3387 | padding-bottom: 1.5rem !important; |
||
| 3388 | } |
||
| 3389 | .pl-lg-4, |
||
| 3390 | .px-lg-4 { |
||
| 3391 | padding-left: 1.5rem !important; |
||
| 3392 | } |
||
| 3393 | .p-lg-5 { |
||
| 3394 | padding: 3rem !important; |
||
| 3395 | } |
||
| 3396 | .pt-lg-5, |
||
| 3397 | .py-lg-5 { |
||
| 3398 | padding-top: 3rem !important; |
||
| 3399 | } |
||
| 3400 | .pr-lg-5, |
||
| 3401 | .px-lg-5 { |
||
| 3402 | padding-right: 3rem !important; |
||
| 3403 | } |
||
| 3404 | .pb-lg-5, |
||
| 3405 | .py-lg-5 { |
||
| 3406 | padding-bottom: 3rem !important; |
||
| 3407 | } |
||
| 3408 | .pl-lg-5, |
||
| 3409 | .px-lg-5 { |
||
| 3410 | padding-left: 3rem !important; |
||
| 3411 | } |
||
| 3412 | .m-lg-n1 { |
||
| 3413 | margin: -0.25rem !important; |
||
| 3414 | } |
||
| 3415 | .mt-lg-n1, |
||
| 3416 | .my-lg-n1 { |
||
| 3417 | margin-top: -0.25rem !important; |
||
| 3418 | } |
||
| 3419 | .mr-lg-n1, |
||
| 3420 | .mx-lg-n1 { |
||
| 3421 | margin-right: -0.25rem !important; |
||
| 3422 | } |
||
| 3423 | .mb-lg-n1, |
||
| 3424 | .my-lg-n1 { |
||
| 3425 | margin-bottom: -0.25rem !important; |
||
| 3426 | } |
||
| 3427 | .ml-lg-n1, |
||
| 3428 | .mx-lg-n1 { |
||
| 3429 | margin-left: -0.25rem !important; |
||
| 3430 | } |
||
| 3431 | .m-lg-n2 { |
||
| 3432 | margin: -0.5rem !important; |
||
| 3433 | } |
||
| 3434 | .mt-lg-n2, |
||
| 3435 | .my-lg-n2 { |
||
| 3436 | margin-top: -0.5rem !important; |
||
| 3437 | } |
||
| 3438 | .mr-lg-n2, |
||
| 3439 | .mx-lg-n2 { |
||
| 3440 | margin-right: -0.5rem !important; |
||
| 3441 | } |
||
| 3442 | .mb-lg-n2, |
||
| 3443 | .my-lg-n2 { |
||
| 3444 | margin-bottom: -0.5rem !important; |
||
| 3445 | } |
||
| 3446 | .ml-lg-n2, |
||
| 3447 | .mx-lg-n2 { |
||
| 3448 | margin-left: -0.5rem !important; |
||
| 3449 | } |
||
| 3450 | .m-lg-n3 { |
||
| 3451 | margin: -1rem !important; |
||
| 3452 | } |
||
| 3453 | .mt-lg-n3, |
||
| 3454 | .my-lg-n3 { |
||
| 3455 | margin-top: -1rem !important; |
||
| 3456 | } |
||
| 3457 | .mr-lg-n3, |
||
| 3458 | .mx-lg-n3 { |
||
| 3459 | margin-right: -1rem !important; |
||
| 3460 | } |
||
| 3461 | .mb-lg-n3, |
||
| 3462 | .my-lg-n3 { |
||
| 3463 | margin-bottom: -1rem !important; |
||
| 3464 | } |
||
| 3465 | .ml-lg-n3, |
||
| 3466 | .mx-lg-n3 { |
||
| 3467 | margin-left: -1rem !important; |
||
| 3468 | } |
||
| 3469 | .m-lg-n4 { |
||
| 3470 | margin: -1.5rem !important; |
||
| 3471 | } |
||
| 3472 | .mt-lg-n4, |
||
| 3473 | .my-lg-n4 { |
||
| 3474 | margin-top: -1.5rem !important; |
||
| 3475 | } |
||
| 3476 | .mr-lg-n4, |
||
| 3477 | .mx-lg-n4 { |
||
| 3478 | margin-right: -1.5rem !important; |
||
| 3479 | } |
||
| 3480 | .mb-lg-n4, |
||
| 3481 | .my-lg-n4 { |
||
| 3482 | margin-bottom: -1.5rem !important; |
||
| 3483 | } |
||
| 3484 | .ml-lg-n4, |
||
| 3485 | .mx-lg-n4 { |
||
| 3486 | margin-left: -1.5rem !important; |
||
| 3487 | } |
||
| 3488 | .m-lg-n5 { |
||
| 3489 | margin: -3rem !important; |
||
| 3490 | } |
||
| 3491 | .mt-lg-n5, |
||
| 3492 | .my-lg-n5 { |
||
| 3493 | margin-top: -3rem !important; |
||
| 3494 | } |
||
| 3495 | .mr-lg-n5, |
||
| 3496 | .mx-lg-n5 { |
||
| 3497 | margin-right: -3rem !important; |
||
| 3498 | } |
||
| 3499 | .mb-lg-n5, |
||
| 3500 | .my-lg-n5 { |
||
| 3501 | margin-bottom: -3rem !important; |
||
| 3502 | } |
||
| 3503 | .ml-lg-n5, |
||
| 3504 | .mx-lg-n5 { |
||
| 3505 | margin-left: -3rem !important; |
||
| 3506 | } |
||
| 3507 | .m-lg-auto { |
||
| 3508 | margin: auto !important; |
||
| 3509 | } |
||
| 3510 | .mt-lg-auto, |
||
| 3511 | .my-lg-auto { |
||
| 3512 | margin-top: auto !important; |
||
| 3513 | } |
||
| 3514 | .mr-lg-auto, |
||
| 3515 | .mx-lg-auto { |
||
| 3516 | margin-right: auto !important; |
||
| 3517 | } |
||
| 3518 | .mb-lg-auto, |
||
| 3519 | .my-lg-auto { |
||
| 3520 | margin-bottom: auto !important; |
||
| 3521 | } |
||
| 3522 | .ml-lg-auto, |
||
| 3523 | .mx-lg-auto { |
||
| 3524 | margin-left: auto !important; |
||
| 3525 | } |
||
| 3526 | } |
||
| 3527 | |||
| 3528 | @media (min-width: 1200px) { |
||
| 3529 | .m-xl-0 { |
||
| 3530 | margin: 0 !important; |
||
| 3531 | } |
||
| 3532 | .mt-xl-0, |
||
| 3533 | .my-xl-0 { |
||
| 3534 | margin-top: 0 !important; |
||
| 3535 | } |
||
| 3536 | .mr-xl-0, |
||
| 3537 | .mx-xl-0 { |
||
| 3538 | margin-right: 0 !important; |
||
| 3539 | } |
||
| 3540 | .mb-xl-0, |
||
| 3541 | .my-xl-0 { |
||
| 3542 | margin-bottom: 0 !important; |
||
| 3543 | } |
||
| 3544 | .ml-xl-0, |
||
| 3545 | .mx-xl-0 { |
||
| 3546 | margin-left: 0 !important; |
||
| 3547 | } |
||
| 3548 | .m-xl-1 { |
||
| 3549 | margin: 0.25rem !important; |
||
| 3550 | } |
||
| 3551 | .mt-xl-1, |
||
| 3552 | .my-xl-1 { |
||
| 3553 | margin-top: 0.25rem !important; |
||
| 3554 | } |
||
| 3555 | .mr-xl-1, |
||
| 3556 | .mx-xl-1 { |
||
| 3557 | margin-right: 0.25rem !important; |
||
| 3558 | } |
||
| 3559 | .mb-xl-1, |
||
| 3560 | .my-xl-1 { |
||
| 3561 | margin-bottom: 0.25rem !important; |
||
| 3562 | } |
||
| 3563 | .ml-xl-1, |
||
| 3564 | .mx-xl-1 { |
||
| 3565 | margin-left: 0.25rem !important; |
||
| 3566 | } |
||
| 3567 | .m-xl-2 { |
||
| 3568 | margin: 0.5rem !important; |
||
| 3569 | } |
||
| 3570 | .mt-xl-2, |
||
| 3571 | .my-xl-2 { |
||
| 3572 | margin-top: 0.5rem !important; |
||
| 3573 | } |
||
| 3574 | .mr-xl-2, |
||
| 3575 | .mx-xl-2 { |
||
| 3576 | margin-right: 0.5rem !important; |
||
| 3577 | } |
||
| 3578 | .mb-xl-2, |
||
| 3579 | .my-xl-2 { |
||
| 3580 | margin-bottom: 0.5rem !important; |
||
| 3581 | } |
||
| 3582 | .ml-xl-2, |
||
| 3583 | .mx-xl-2 { |
||
| 3584 | margin-left: 0.5rem !important; |
||
| 3585 | } |
||
| 3586 | .m-xl-3 { |
||
| 3587 | margin: 1rem !important; |
||
| 3588 | } |
||
| 3589 | .mt-xl-3, |
||
| 3590 | .my-xl-3 { |
||
| 3591 | margin-top: 1rem !important; |
||
| 3592 | } |
||
| 3593 | .mr-xl-3, |
||
| 3594 | .mx-xl-3 { |
||
| 3595 | margin-right: 1rem !important; |
||
| 3596 | } |
||
| 3597 | .mb-xl-3, |
||
| 3598 | .my-xl-3 { |
||
| 3599 | margin-bottom: 1rem !important; |
||
| 3600 | } |
||
| 3601 | .ml-xl-3, |
||
| 3602 | .mx-xl-3 { |
||
| 3603 | margin-left: 1rem !important; |
||
| 3604 | } |
||
| 3605 | .m-xl-4 { |
||
| 3606 | margin: 1.5rem !important; |
||
| 3607 | } |
||
| 3608 | .mt-xl-4, |
||
| 3609 | .my-xl-4 { |
||
| 3610 | margin-top: 1.5rem !important; |
||
| 3611 | } |
||
| 3612 | .mr-xl-4, |
||
| 3613 | .mx-xl-4 { |
||
| 3614 | margin-right: 1.5rem !important; |
||
| 3615 | } |
||
| 3616 | .mb-xl-4, |
||
| 3617 | .my-xl-4 { |
||
| 3618 | margin-bottom: 1.5rem !important; |
||
| 3619 | } |
||
| 3620 | .ml-xl-4, |
||
| 3621 | .mx-xl-4 { |
||
| 3622 | margin-left: 1.5rem !important; |
||
| 3623 | } |
||
| 3624 | .m-xl-5 { |
||
| 3625 | margin: 3rem !important; |
||
| 3626 | } |
||
| 3627 | .mt-xl-5, |
||
| 3628 | .my-xl-5 { |
||
| 3629 | margin-top: 3rem !important; |
||
| 3630 | } |
||
| 3631 | .mr-xl-5, |
||
| 3632 | .mx-xl-5 { |
||
| 3633 | margin-right: 3rem !important; |
||
| 3634 | } |
||
| 3635 | .mb-xl-5, |
||
| 3636 | .my-xl-5 { |
||
| 3637 | margin-bottom: 3rem !important; |
||
| 3638 | } |
||
| 3639 | .ml-xl-5, |
||
| 3640 | .mx-xl-5 { |
||
| 3641 | margin-left: 3rem !important; |
||
| 3642 | } |
||
| 3643 | .p-xl-0 { |
||
| 3644 | padding: 0 !important; |
||
| 3645 | } |
||
| 3646 | .pt-xl-0, |
||
| 3647 | .py-xl-0 { |
||
| 3648 | padding-top: 0 !important; |
||
| 3649 | } |
||
| 3650 | .pr-xl-0, |
||
| 3651 | .px-xl-0 { |
||
| 3652 | padding-right: 0 !important; |
||
| 3653 | } |
||
| 3654 | .pb-xl-0, |
||
| 3655 | .py-xl-0 { |
||
| 3656 | padding-bottom: 0 !important; |
||
| 3657 | } |
||
| 3658 | .pl-xl-0, |
||
| 3659 | .px-xl-0 { |
||
| 3660 | padding-left: 0 !important; |
||
| 3661 | } |
||
| 3662 | .p-xl-1 { |
||
| 3663 | padding: 0.25rem !important; |
||
| 3664 | } |
||
| 3665 | .pt-xl-1, |
||
| 3666 | .py-xl-1 { |
||
| 3667 | padding-top: 0.25rem !important; |
||
| 3668 | } |
||
| 3669 | .pr-xl-1, |
||
| 3670 | .px-xl-1 { |
||
| 3671 | padding-right: 0.25rem !important; |
||
| 3672 | } |
||
| 3673 | .pb-xl-1, |
||
| 3674 | .py-xl-1 { |
||
| 3675 | padding-bottom: 0.25rem !important; |
||
| 3676 | } |
||
| 3677 | .pl-xl-1, |
||
| 3678 | .px-xl-1 { |
||
| 3679 | padding-left: 0.25rem !important; |
||
| 3680 | } |
||
| 3681 | .p-xl-2 { |
||
| 3682 | padding: 0.5rem !important; |
||
| 3683 | } |
||
| 3684 | .pt-xl-2, |
||
| 3685 | .py-xl-2 { |
||
| 3686 | padding-top: 0.5rem !important; |
||
| 3687 | } |
||
| 3688 | .pr-xl-2, |
||
| 3689 | .px-xl-2 { |
||
| 3690 | padding-right: 0.5rem !important; |
||
| 3691 | } |
||
| 3692 | .pb-xl-2, |
||
| 3693 | .py-xl-2 { |
||
| 3694 | padding-bottom: 0.5rem !important; |
||
| 3695 | } |
||
| 3696 | .pl-xl-2, |
||
| 3697 | .px-xl-2 { |
||
| 3698 | padding-left: 0.5rem !important; |
||
| 3699 | } |
||
| 3700 | .p-xl-3 { |
||
| 3701 | padding: 1rem !important; |
||
| 3702 | } |
||
| 3703 | .pt-xl-3, |
||
| 3704 | .py-xl-3 { |
||
| 3705 | padding-top: 1rem !important; |
||
| 3706 | } |
||
| 3707 | .pr-xl-3, |
||
| 3708 | .px-xl-3 { |
||
| 3709 | padding-right: 1rem !important; |
||
| 3710 | } |
||
| 3711 | .pb-xl-3, |
||
| 3712 | .py-xl-3 { |
||
| 3713 | padding-bottom: 1rem !important; |
||
| 3714 | } |
||
| 3715 | .pl-xl-3, |
||
| 3716 | .px-xl-3 { |
||
| 3717 | padding-left: 1rem !important; |
||
| 3718 | } |
||
| 3719 | .p-xl-4 { |
||
| 3720 | padding: 1.5rem !important; |
||
| 3721 | } |
||
| 3722 | .pt-xl-4, |
||
| 3723 | .py-xl-4 { |
||
| 3724 | padding-top: 1.5rem !important; |
||
| 3725 | } |
||
| 3726 | .pr-xl-4, |
||
| 3727 | .px-xl-4 { |
||
| 3728 | padding-right: 1.5rem !important; |
||
| 3729 | } |
||
| 3730 | .pb-xl-4, |
||
| 3731 | .py-xl-4 { |
||
| 3732 | padding-bottom: 1.5rem !important; |
||
| 3733 | } |
||
| 3734 | .pl-xl-4, |
||
| 3735 | .px-xl-4 { |
||
| 3736 | padding-left: 1.5rem !important; |
||
| 3737 | } |
||
| 3738 | .p-xl-5 { |
||
| 3739 | padding: 3rem !important; |
||
| 3740 | } |
||
| 3741 | .pt-xl-5, |
||
| 3742 | .py-xl-5 { |
||
| 3743 | padding-top: 3rem !important; |
||
| 3744 | } |
||
| 3745 | .pr-xl-5, |
||
| 3746 | .px-xl-5 { |
||
| 3747 | padding-right: 3rem !important; |
||
| 3748 | } |
||
| 3749 | .pb-xl-5, |
||
| 3750 | .py-xl-5 { |
||
| 3751 | padding-bottom: 3rem !important; |
||
| 3752 | } |
||
| 3753 | .pl-xl-5, |
||
| 3754 | .px-xl-5 { |
||
| 3755 | padding-left: 3rem !important; |
||
| 3756 | } |
||
| 3757 | .m-xl-n1 { |
||
| 3758 | margin: -0.25rem !important; |
||
| 3759 | } |
||
| 3760 | .mt-xl-n1, |
||
| 3761 | .my-xl-n1 { |
||
| 3762 | margin-top: -0.25rem !important; |
||
| 3763 | } |
||
| 3764 | .mr-xl-n1, |
||
| 3765 | .mx-xl-n1 { |
||
| 3766 | margin-right: -0.25rem !important; |
||
| 3767 | } |
||
| 3768 | .mb-xl-n1, |
||
| 3769 | .my-xl-n1 { |
||
| 3770 | margin-bottom: -0.25rem !important; |
||
| 3771 | } |
||
| 3772 | .ml-xl-n1, |
||
| 3773 | .mx-xl-n1 { |
||
| 3774 | margin-left: -0.25rem !important; |
||
| 3775 | } |
||
| 3776 | .m-xl-n2 { |
||
| 3777 | margin: -0.5rem !important; |
||
| 3778 | } |
||
| 3779 | .mt-xl-n2, |
||
| 3780 | .my-xl-n2 { |
||
| 3781 | margin-top: -0.5rem !important; |
||
| 3782 | } |
||
| 3783 | .mr-xl-n2, |
||
| 3784 | .mx-xl-n2 { |
||
| 3785 | margin-right: -0.5rem !important; |
||
| 3786 | } |
||
| 3787 | .mb-xl-n2, |
||
| 3788 | .my-xl-n2 { |
||
| 3789 | margin-bottom: -0.5rem !important; |
||
| 3790 | } |
||
| 3791 | .ml-xl-n2, |
||
| 3792 | .mx-xl-n2 { |
||
| 3793 | margin-left: -0.5rem !important; |
||
| 3794 | } |
||
| 3795 | .m-xl-n3 { |
||
| 3796 | margin: -1rem !important; |
||
| 3797 | } |
||
| 3798 | .mt-xl-n3, |
||
| 3799 | .my-xl-n3 { |
||
| 3800 | margin-top: -1rem !important; |
||
| 3801 | } |
||
| 3802 | .mr-xl-n3, |
||
| 3803 | .mx-xl-n3 { |
||
| 3804 | margin-right: -1rem !important; |
||
| 3805 | } |
||
| 3806 | .mb-xl-n3, |
||
| 3807 | .my-xl-n3 { |
||
| 3808 | margin-bottom: -1rem !important; |
||
| 3809 | } |
||
| 3810 | .ml-xl-n3, |
||
| 3811 | .mx-xl-n3 { |
||
| 3812 | margin-left: -1rem !important; |
||
| 3813 | } |
||
| 3814 | .m-xl-n4 { |
||
| 3815 | margin: -1.5rem !important; |
||
| 3816 | } |
||
| 3817 | .mt-xl-n4, |
||
| 3818 | .my-xl-n4 { |
||
| 3819 | margin-top: -1.5rem !important; |
||
| 3820 | } |
||
| 3821 | .mr-xl-n4, |
||
| 3822 | .mx-xl-n4 { |
||
| 3823 | margin-right: -1.5rem !important; |
||
| 3824 | } |
||
| 3825 | .mb-xl-n4, |
||
| 3826 | .my-xl-n4 { |
||
| 3827 | margin-bottom: -1.5rem !important; |
||
| 3828 | } |
||
| 3829 | .ml-xl-n4, |
||
| 3830 | .mx-xl-n4 { |
||
| 3831 | margin-left: -1.5rem !important; |
||
| 3832 | } |
||
| 3833 | .m-xl-n5 { |
||
| 3834 | margin: -3rem !important; |
||
| 3835 | } |
||
| 3836 | .mt-xl-n5, |
||
| 3837 | .my-xl-n5 { |
||
| 3838 | margin-top: -3rem !important; |
||
| 3839 | } |
||
| 3840 | .mr-xl-n5, |
||
| 3841 | .mx-xl-n5 { |
||
| 3842 | margin-right: -3rem !important; |
||
| 3843 | } |
||
| 3844 | .mb-xl-n5, |
||
| 3845 | .my-xl-n5 { |
||
| 3846 | margin-bottom: -3rem !important; |
||
| 3847 | } |
||
| 3848 | .ml-xl-n5, |
||
| 3849 | .mx-xl-n5 { |
||
| 3850 | margin-left: -3rem !important; |
||
| 3851 | } |
||
| 3852 | .m-xl-auto { |
||
| 3853 | margin: auto !important; |
||
| 3854 | } |
||
| 3855 | .mt-xl-auto, |
||
| 3856 | .my-xl-auto { |
||
| 3857 | margin-top: auto !important; |
||
| 3858 | } |
||
| 3859 | .mr-xl-auto, |
||
| 3860 | .mx-xl-auto { |
||
| 3861 | margin-right: auto !important; |
||
| 3862 | } |
||
| 3863 | .mb-xl-auto, |
||
| 3864 | .my-xl-auto { |
||
| 3865 | margin-bottom: auto !important; |
||
| 3866 | } |
||
| 3867 | .ml-xl-auto, |
||
| 3868 | .mx-xl-auto { |
||
| 3869 | margin-left: auto !important; |
||
| 3870 | } |
||
| 3871 | } |
||
| 3872 | /*# sourceMappingURL=bootstrap-grid.css.map */ |