Created
August 7, 2020 03:21
-
-
Save uzielweb/132a85573aa55c204ed6449844566778 to your computer and use it in GitHub Desktop.
Custom Bootstrap 4 grid Example to avoid Bootstrap conflicts (vistoboot prefixed)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*! | |
* Bootstrap Grid v4.3.1 (https://getbootstrap.com/) | |
* Copyright 2011-2019 The Bootstrap Authors | |
* Copyright 2011-2019 Twitter, Inc. | |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) | |
*/ | |
html { | |
-webkit-box-sizing: border-box; | |
box-sizing: border-box; | |
-ms-overflow-style: scrollbar; | |
} | |
*, | |
*::before, | |
*::after { | |
-webkit-box-sizing: inherit; | |
box-sizing: inherit; | |
} | |
.vistoboot .container { | |
width: 100%; | |
padding-right: 15px; | |
padding-left: 15px; | |
margin-right: auto; | |
margin-left: auto; | |
} | |
@media (min-width: 576px) { | |
.vistoboot .container { | |
max-width: 540px; | |
} | |
} | |
@media (min-width: 768px) { | |
.vistoboot .container { | |
max-width: 720px; | |
} | |
} | |
@media (min-width: 992px) { | |
.vistoboot .container { | |
max-width: 960px; | |
} | |
} | |
@media (min-width: 1200px) { | |
.vistoboot .container { | |
max-width: 1140px; | |
} | |
} | |
.vistoboot .container-fluid { | |
width: 100%; | |
padding-right: 15px; | |
padding-left: 15px; | |
margin-right: auto; | |
margin-left: auto; | |
} | |
.vistoboot .row { | |
display: -webkit-box; | |
display: -ms-flexbox; | |
display: flex; | |
-ms-flex-wrap: wrap; | |
flex-wrap: wrap; | |
margin-right: -15px; | |
margin-left: -15px; | |
} | |
.vistoboot .no-gutters { | |
margin-right: 0; | |
margin-left: 0; | |
} | |
.vistoboot .no-gutters > .col,.vistoboot .no-gutters > [class*="col-"] { | |
padding-right: 0; | |
padding-left: 0; | |
} | |
.vistoboot .col-1,.vistoboot .col-2,.vistoboot .col-3,.vistoboot .col-4,.vistoboot .col-5,.vistoboot .col-6,.vistoboot .col-7,.vistoboot .col-8,.vistoboot .col-9,.vistoboot .col-10,.vistoboot .col-11,.vistoboot .col-12,.vistoboot .col,.vistoboot .col-auto,.vistoboot .col-sm-1,.vistoboot .col-sm-2,.vistoboot .col-sm-3,.vistoboot .col-sm-4,.vistoboot .col-sm-5,.vistoboot .col-sm-6,.vistoboot .col-sm-7,.vistoboot .col-sm-8,.vistoboot .col-sm-9,.vistoboot .col-sm-10,.vistoboot .col-sm-11,.vistoboot .col-sm-12,.vistoboot .col-sm,.vistoboot .col-sm-auto,.vistoboot .col-md-1,.vistoboot .col-md-2,.vistoboot .col-md-3,.vistoboot .col-md-4,.vistoboot .col-md-5,.vistoboot .col-md-6,.vistoboot .col-md-7,.vistoboot .col-md-8,.vistoboot .col-md-9,.vistoboot .col-md-10,.vistoboot .col-md-11,.vistoboot .col-md-12,.vistoboot .col-md,.vistoboot .col-md-auto,.vistoboot .col-lg-1,.vistoboot .col-lg-2,.vistoboot .col-lg-3,.vistoboot .col-lg-4,.vistoboot .col-lg-5,.vistoboot .col-lg-6,.vistoboot .col-lg-7,.vistoboot .col-lg-8,.vistoboot .col-lg-9,.vistoboot .col-lg-10,.vistoboot .col-lg-11,.vistoboot .col-lg-12,.vistoboot .col-lg,.vistoboot .col-lg-auto,.vistoboot .col-xl-1,.vistoboot .col-xl-2,.vistoboot .col-xl-3,.vistoboot .col-xl-4,.vistoboot .col-xl-5,.vistoboot .col-xl-6,.vistoboot .col-xl-7,.vistoboot .col-xl-8,.vistoboot .col-xl-9,.vistoboot .col-xl-10,.vistoboot .col-xl-11,.vistoboot .col-xl-12,.vistoboot .col-xl,.vistoboot .col-xl-auto { | |
position: relative; | |
width: 100%; | |
padding-right: 15px; | |
padding-left: 15px; | |
} | |
.vistoboot .col { | |
-ms-flex-preferred-size: 0; | |
flex-basis: 0; | |
-webkit-box-flex: 1; | |
-ms-flex-positive: 1; | |
flex-grow: 1; | |
max-width: 100%; | |
} | |
.vistoboot .col-auto { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 auto; | |
flex: 0 0 auto; | |
width: auto; | |
max-width: 100%; | |
} | |
.vistoboot .col-1 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 8.3333333333%; | |
flex: 0 0 8.3333333333%; | |
max-width: 8.3333333333%; | |
} | |
.vistoboot .col-2 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 16.6666666667%; | |
flex: 0 0 16.6666666667%; | |
max-width: 16.6666666667%; | |
} | |
.vistoboot .col-3 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 25%; | |
flex: 0 0 25%; | |
max-width: 25%; | |
} | |
.vistoboot .col-4 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 33.3333333333%; | |
flex: 0 0 33.3333333333%; | |
max-width: 33.3333333333%; | |
} | |
.vistoboot .col-5 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 41.6666666667%; | |
flex: 0 0 41.6666666667%; | |
max-width: 41.6666666667%; | |
} | |
.vistoboot .col-6 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 50%; | |
flex: 0 0 50%; | |
max-width: 50%; | |
} | |
.vistoboot .col-7 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 58.3333333333%; | |
flex: 0 0 58.3333333333%; | |
max-width: 58.3333333333%; | |
} | |
.vistoboot .col-8 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 66.6666666667%; | |
flex: 0 0 66.6666666667%; | |
max-width: 66.6666666667%; | |
} | |
.vistoboot .col-9 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 75%; | |
flex: 0 0 75%; | |
max-width: 75%; | |
} | |
.vistoboot .col-10 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 83.3333333333%; | |
flex: 0 0 83.3333333333%; | |
max-width: 83.3333333333%; | |
} | |
.vistoboot .col-11 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 91.6666666667%; | |
flex: 0 0 91.6666666667%; | |
max-width: 91.6666666667%; | |
} | |
.vistoboot .col-12 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 100%; | |
flex: 0 0 100%; | |
max-width: 100%; | |
} | |
.vistoboot .order-first { | |
-webkit-box-ordinal-group: 0; | |
-ms-flex-order: -1; | |
order: -1; | |
} | |
.vistoboot .order-last { | |
-webkit-box-ordinal-group: 14; | |
-ms-flex-order: 13; | |
order: 13; | |
} | |
.vistoboot .order-0 { | |
-webkit-box-ordinal-group: 1; | |
-ms-flex-order: 0; | |
order: 0; | |
} | |
.vistoboot .order-1 { | |
-webkit-box-ordinal-group: 2; | |
-ms-flex-order: 1; | |
order: 1; | |
} | |
.vistoboot .order-2 { | |
-webkit-box-ordinal-group: 3; | |
-ms-flex-order: 2; | |
order: 2; | |
} | |
.vistoboot .order-3 { | |
-webkit-box-ordinal-group: 4; | |
-ms-flex-order: 3; | |
order: 3; | |
} | |
.vistoboot .order-4 { | |
-webkit-box-ordinal-group: 5; | |
-ms-flex-order: 4; | |
order: 4; | |
} | |
.vistoboot .order-5 { | |
-webkit-box-ordinal-group: 6; | |
-ms-flex-order: 5; | |
order: 5; | |
} | |
.vistoboot .order-6 { | |
-webkit-box-ordinal-group: 7; | |
-ms-flex-order: 6; | |
order: 6; | |
} | |
.vistoboot .order-7 { | |
-webkit-box-ordinal-group: 8; | |
-ms-flex-order: 7; | |
order: 7; | |
} | |
.vistoboot .order-8 { | |
-webkit-box-ordinal-group: 9; | |
-ms-flex-order: 8; | |
order: 8; | |
} | |
.vistoboot .order-9 { | |
-webkit-box-ordinal-group: 10; | |
-ms-flex-order: 9; | |
order: 9; | |
} | |
.vistoboot .order-10 { | |
-webkit-box-ordinal-group: 11; | |
-ms-flex-order: 10; | |
order: 10; | |
} | |
.vistoboot .order-11 { | |
-webkit-box-ordinal-group: 12; | |
-ms-flex-order: 11; | |
order: 11; | |
} | |
.vistoboot .order-12 { | |
-webkit-box-ordinal-group: 13; | |
-ms-flex-order: 12; | |
order: 12; | |
} | |
.vistoboot .offset-1 { | |
margin-left: 8.3333333333%; | |
} | |
.vistoboot .offset-2 { | |
margin-left: 16.6666666667%; | |
} | |
.vistoboot .offset-3 { | |
margin-left: 25%; | |
} | |
.vistoboot .offset-4 { | |
margin-left: 33.3333333333%; | |
} | |
.vistoboot .offset-5 { | |
margin-left: 41.6666666667%; | |
} | |
.vistoboot .offset-6 { | |
margin-left: 50%; | |
} | |
.vistoboot .offset-7 { | |
margin-left: 58.3333333333%; | |
} | |
.vistoboot .offset-8 { | |
margin-left: 66.6666666667%; | |
} | |
.vistoboot .offset-9 { | |
margin-left: 75%; | |
} | |
.vistoboot .offset-10 { | |
margin-left: 83.3333333333%; | |
} | |
.vistoboot .offset-11 { | |
margin-left: 91.6666666667%; | |
} | |
@media (min-width: 576px) { | |
.vistoboot .col-sm { | |
-ms-flex-preferred-size: 0; | |
flex-basis: 0; | |
-webkit-box-flex: 1; | |
-ms-flex-positive: 1; | |
flex-grow: 1; | |
max-width: 100%; | |
} | |
.vistoboot .col-sm-auto { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 auto; | |
flex: 0 0 auto; | |
width: auto; | |
max-width: 100%; | |
} | |
.vistoboot .col-sm-1 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 8.3333333333%; | |
flex: 0 0 8.3333333333%; | |
max-width: 8.3333333333%; | |
} | |
.vistoboot .col-sm-2 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 16.6666666667%; | |
flex: 0 0 16.6666666667%; | |
max-width: 16.6666666667%; | |
} | |
.vistoboot .col-sm-3 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 25%; | |
flex: 0 0 25%; | |
max-width: 25%; | |
} | |
.vistoboot .col-sm-4 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 33.3333333333%; | |
flex: 0 0 33.3333333333%; | |
max-width: 33.3333333333%; | |
} | |
.vistoboot .col-sm-5 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 41.6666666667%; | |
flex: 0 0 41.6666666667%; | |
max-width: 41.6666666667%; | |
} | |
.vistoboot .col-sm-6 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 50%; | |
flex: 0 0 50%; | |
max-width: 50%; | |
} | |
.vistoboot .col-sm-7 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 58.3333333333%; | |
flex: 0 0 58.3333333333%; | |
max-width: 58.3333333333%; | |
} | |
.vistoboot .col-sm-8 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 66.6666666667%; | |
flex: 0 0 66.6666666667%; | |
max-width: 66.6666666667%; | |
} | |
.vistoboot .col-sm-9 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 75%; | |
flex: 0 0 75%; | |
max-width: 75%; | |
} | |
.vistoboot .col-sm-10 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 83.3333333333%; | |
flex: 0 0 83.3333333333%; | |
max-width: 83.3333333333%; | |
} | |
.vistoboot .col-sm-11 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 91.6666666667%; | |
flex: 0 0 91.6666666667%; | |
max-width: 91.6666666667%; | |
} | |
.vistoboot .col-sm-12 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 100%; | |
flex: 0 0 100%; | |
max-width: 100%; | |
} | |
.vistoboot .order-sm-first { | |
-webkit-box-ordinal-group: 0; | |
-ms-flex-order: -1; | |
order: -1; | |
} | |
.vistoboot .order-sm-last { | |
-webkit-box-ordinal-group: 14; | |
-ms-flex-order: 13; | |
order: 13; | |
} | |
.vistoboot .order-sm-0 { | |
-webkit-box-ordinal-group: 1; | |
-ms-flex-order: 0; | |
order: 0; | |
} | |
.vistoboot .order-sm-1 { | |
-webkit-box-ordinal-group: 2; | |
-ms-flex-order: 1; | |
order: 1; | |
} | |
.vistoboot .order-sm-2 { | |
-webkit-box-ordinal-group: 3; | |
-ms-flex-order: 2; | |
order: 2; | |
} | |
.vistoboot .order-sm-3 { | |
-webkit-box-ordinal-group: 4; | |
-ms-flex-order: 3; | |
order: 3; | |
} | |
.vistoboot .order-sm-4 { | |
-webkit-box-ordinal-group: 5; | |
-ms-flex-order: 4; | |
order: 4; | |
} | |
.vistoboot .order-sm-5 { | |
-webkit-box-ordinal-group: 6; | |
-ms-flex-order: 5; | |
order: 5; | |
} | |
.vistoboot .order-sm-6 { | |
-webkit-box-ordinal-group: 7; | |
-ms-flex-order: 6; | |
order: 6; | |
} | |
.vistoboot .order-sm-7 { | |
-webkit-box-ordinal-group: 8; | |
-ms-flex-order: 7; | |
order: 7; | |
} | |
.vistoboot .order-sm-8 { | |
-webkit-box-ordinal-group: 9; | |
-ms-flex-order: 8; | |
order: 8; | |
} | |
.vistoboot .order-sm-9 { | |
-webkit-box-ordinal-group: 10; | |
-ms-flex-order: 9; | |
order: 9; | |
} | |
.vistoboot .order-sm-10 { | |
-webkit-box-ordinal-group: 11; | |
-ms-flex-order: 10; | |
order: 10; | |
} | |
.vistoboot .order-sm-11 { | |
-webkit-box-ordinal-group: 12; | |
-ms-flex-order: 11; | |
order: 11; | |
} | |
.vistoboot .order-sm-12 { | |
-webkit-box-ordinal-group: 13; | |
-ms-flex-order: 12; | |
order: 12; | |
} | |
.vistoboot .offset-sm-0 { | |
margin-left: 0; | |
} | |
.vistoboot .offset-sm-1 { | |
margin-left: 8.3333333333%; | |
} | |
.vistoboot .offset-sm-2 { | |
margin-left: 16.6666666667%; | |
} | |
.vistoboot .offset-sm-3 { | |
margin-left: 25%; | |
} | |
.vistoboot .offset-sm-4 { | |
margin-left: 33.3333333333%; | |
} | |
.vistoboot .offset-sm-5 { | |
margin-left: 41.6666666667%; | |
} | |
.vistoboot .offset-sm-6 { | |
margin-left: 50%; | |
} | |
.vistoboot .offset-sm-7 { | |
margin-left: 58.3333333333%; | |
} | |
.vistoboot .offset-sm-8 { | |
margin-left: 66.6666666667%; | |
} | |
.vistoboot .offset-sm-9 { | |
margin-left: 75%; | |
} | |
.vistoboot .offset-sm-10 { | |
margin-left: 83.3333333333%; | |
} | |
.vistoboot .offset-sm-11 { | |
margin-left: 91.6666666667%; | |
} | |
} | |
@media (min-width: 768px) { | |
.vistoboot .col-md { | |
-ms-flex-preferred-size: 0; | |
flex-basis: 0; | |
-webkit-box-flex: 1; | |
-ms-flex-positive: 1; | |
flex-grow: 1; | |
max-width: 100%; | |
} | |
.vistoboot .col-md-auto { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 auto; | |
flex: 0 0 auto; | |
width: auto; | |
max-width: 100%; | |
} | |
.vistoboot .col-md-1 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 8.3333333333%; | |
flex: 0 0 8.3333333333%; | |
max-width: 8.3333333333%; | |
} | |
.vistoboot .col-md-2 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 16.6666666667%; | |
flex: 0 0 16.6666666667%; | |
max-width: 16.6666666667%; | |
} | |
.vistoboot .col-md-3 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 25%; | |
flex: 0 0 25%; | |
max-width: 25%; | |
} | |
.vistoboot .col-md-4 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 33.3333333333%; | |
flex: 0 0 33.3333333333%; | |
max-width: 33.3333333333%; | |
} | |
.vistoboot .col-md-5 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 41.6666666667%; | |
flex: 0 0 41.6666666667%; | |
max-width: 41.6666666667%; | |
} | |
.vistoboot .col-md-6 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 50%; | |
flex: 0 0 50%; | |
max-width: 50%; | |
} | |
.vistoboot .col-md-7 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 58.3333333333%; | |
flex: 0 0 58.3333333333%; | |
max-width: 58.3333333333%; | |
} | |
.vistoboot .col-md-8 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 66.6666666667%; | |
flex: 0 0 66.6666666667%; | |
max-width: 66.6666666667%; | |
} | |
.vistoboot .col-md-9 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 75%; | |
flex: 0 0 75%; | |
max-width: 75%; | |
} | |
.vistoboot .col-md-10 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 83.3333333333%; | |
flex: 0 0 83.3333333333%; | |
max-width: 83.3333333333%; | |
} | |
.vistoboot .col-md-11 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 91.6666666667%; | |
flex: 0 0 91.6666666667%; | |
max-width: 91.6666666667%; | |
} | |
.vistoboot .col-md-12 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 100%; | |
flex: 0 0 100%; | |
max-width: 100%; | |
} | |
.vistoboot .order-md-first { | |
-webkit-box-ordinal-group: 0; | |
-ms-flex-order: -1; | |
order: -1; | |
} | |
.vistoboot .order-md-last { | |
-webkit-box-ordinal-group: 14; | |
-ms-flex-order: 13; | |
order: 13; | |
} | |
.vistoboot .order-md-0 { | |
-webkit-box-ordinal-group: 1; | |
-ms-flex-order: 0; | |
order: 0; | |
} | |
.vistoboot .order-md-1 { | |
-webkit-box-ordinal-group: 2; | |
-ms-flex-order: 1; | |
order: 1; | |
} | |
.vistoboot .order-md-2 { | |
-webkit-box-ordinal-group: 3; | |
-ms-flex-order: 2; | |
order: 2; | |
} | |
.vistoboot .order-md-3 { | |
-webkit-box-ordinal-group: 4; | |
-ms-flex-order: 3; | |
order: 3; | |
} | |
.vistoboot .order-md-4 { | |
-webkit-box-ordinal-group: 5; | |
-ms-flex-order: 4; | |
order: 4; | |
} | |
.vistoboot .order-md-5 { | |
-webkit-box-ordinal-group: 6; | |
-ms-flex-order: 5; | |
order: 5; | |
} | |
.vistoboot .order-md-6 { | |
-webkit-box-ordinal-group: 7; | |
-ms-flex-order: 6; | |
order: 6; | |
} | |
.vistoboot .order-md-7 { | |
-webkit-box-ordinal-group: 8; | |
-ms-flex-order: 7; | |
order: 7; | |
} | |
.vistoboot .order-md-8 { | |
-webkit-box-ordinal-group: 9; | |
-ms-flex-order: 8; | |
order: 8; | |
} | |
.vistoboot .order-md-9 { | |
-webkit-box-ordinal-group: 10; | |
-ms-flex-order: 9; | |
order: 9; | |
} | |
.vistoboot .order-md-10 { | |
-webkit-box-ordinal-group: 11; | |
-ms-flex-order: 10; | |
order: 10; | |
} | |
.vistoboot .order-md-11 { | |
-webkit-box-ordinal-group: 12; | |
-ms-flex-order: 11; | |
order: 11; | |
} | |
.vistoboot .order-md-12 { | |
-webkit-box-ordinal-group: 13; | |
-ms-flex-order: 12; | |
order: 12; | |
} | |
.vistoboot .offset-md-0 { | |
margin-left: 0; | |
} | |
.vistoboot .offset-md-1 { | |
margin-left: 8.3333333333%; | |
} | |
.vistoboot .offset-md-2 { | |
margin-left: 16.6666666667%; | |
} | |
.vistoboot .offset-md-3 { | |
margin-left: 25%; | |
} | |
.vistoboot .offset-md-4 { | |
margin-left: 33.3333333333%; | |
} | |
.vistoboot .offset-md-5 { | |
margin-left: 41.6666666667%; | |
} | |
.vistoboot .offset-md-6 { | |
margin-left: 50%; | |
} | |
.vistoboot .offset-md-7 { | |
margin-left: 58.3333333333%; | |
} | |
.vistoboot .offset-md-8 { | |
margin-left: 66.6666666667%; | |
} | |
.vistoboot .offset-md-9 { | |
margin-left: 75%; | |
} | |
.vistoboot .offset-md-10 { | |
margin-left: 83.3333333333%; | |
} | |
.vistoboot .offset-md-11 { | |
margin-left: 91.6666666667%; | |
} | |
} | |
@media (min-width: 992px) { | |
.vistoboot .col-lg { | |
-ms-flex-preferred-size: 0; | |
flex-basis: 0; | |
-webkit-box-flex: 1; | |
-ms-flex-positive: 1; | |
flex-grow: 1; | |
max-width: 100%; | |
} | |
.vistoboot .col-lg-auto { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 auto; | |
flex: 0 0 auto; | |
width: auto; | |
max-width: 100%; | |
} | |
.vistoboot .col-lg-1 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 8.3333333333%; | |
flex: 0 0 8.3333333333%; | |
max-width: 8.3333333333%; | |
} | |
.vistoboot .col-lg-2 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 16.6666666667%; | |
flex: 0 0 16.6666666667%; | |
max-width: 16.6666666667%; | |
} | |
.vistoboot .col-lg-3 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 25%; | |
flex: 0 0 25%; | |
max-width: 25%; | |
} | |
.vistoboot .col-lg-4 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 33.3333333333%; | |
flex: 0 0 33.3333333333%; | |
max-width: 33.3333333333%; | |
} | |
.vistoboot .col-lg-5 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 41.6666666667%; | |
flex: 0 0 41.6666666667%; | |
max-width: 41.6666666667%; | |
} | |
.vistoboot .col-lg-6 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 50%; | |
flex: 0 0 50%; | |
max-width: 50%; | |
} | |
.vistoboot .col-lg-7 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 58.3333333333%; | |
flex: 0 0 58.3333333333%; | |
max-width: 58.3333333333%; | |
} | |
.vistoboot .col-lg-8 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 66.6666666667%; | |
flex: 0 0 66.6666666667%; | |
max-width: 66.6666666667%; | |
} | |
.vistoboot .col-lg-9 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 75%; | |
flex: 0 0 75%; | |
max-width: 75%; | |
} | |
.vistoboot .col-lg-10 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 83.3333333333%; | |
flex: 0 0 83.3333333333%; | |
max-width: 83.3333333333%; | |
} | |
.vistoboot .col-lg-11 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 91.6666666667%; | |
flex: 0 0 91.6666666667%; | |
max-width: 91.6666666667%; | |
} | |
.vistoboot .col-lg-12 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 100%; | |
flex: 0 0 100%; | |
max-width: 100%; | |
} | |
.vistoboot .order-lg-first { | |
-webkit-box-ordinal-group: 0; | |
-ms-flex-order: -1; | |
order: -1; | |
} | |
.vistoboot .order-lg-last { | |
-webkit-box-ordinal-group: 14; | |
-ms-flex-order: 13; | |
order: 13; | |
} | |
.vistoboot .order-lg-0 { | |
-webkit-box-ordinal-group: 1; | |
-ms-flex-order: 0; | |
order: 0; | |
} | |
.vistoboot .order-lg-1 { | |
-webkit-box-ordinal-group: 2; | |
-ms-flex-order: 1; | |
order: 1; | |
} | |
.vistoboot .order-lg-2 { | |
-webkit-box-ordinal-group: 3; | |
-ms-flex-order: 2; | |
order: 2; | |
} | |
.vistoboot .order-lg-3 { | |
-webkit-box-ordinal-group: 4; | |
-ms-flex-order: 3; | |
order: 3; | |
} | |
.vistoboot .order-lg-4 { | |
-webkit-box-ordinal-group: 5; | |
-ms-flex-order: 4; | |
order: 4; | |
} | |
.vistoboot .order-lg-5 { | |
-webkit-box-ordinal-group: 6; | |
-ms-flex-order: 5; | |
order: 5; | |
} | |
.vistoboot .order-lg-6 { | |
-webkit-box-ordinal-group: 7; | |
-ms-flex-order: 6; | |
order: 6; | |
} | |
.vistoboot .order-lg-7 { | |
-webkit-box-ordinal-group: 8; | |
-ms-flex-order: 7; | |
order: 7; | |
} | |
.vistoboot .order-lg-8 { | |
-webkit-box-ordinal-group: 9; | |
-ms-flex-order: 8; | |
order: 8; | |
} | |
.vistoboot .order-lg-9 { | |
-webkit-box-ordinal-group: 10; | |
-ms-flex-order: 9; | |
order: 9; | |
} | |
.vistoboot .order-lg-10 { | |
-webkit-box-ordinal-group: 11; | |
-ms-flex-order: 10; | |
order: 10; | |
} | |
.vistoboot .order-lg-11 { | |
-webkit-box-ordinal-group: 12; | |
-ms-flex-order: 11; | |
order: 11; | |
} | |
.vistoboot .order-lg-12 { | |
-webkit-box-ordinal-group: 13; | |
-ms-flex-order: 12; | |
order: 12; | |
} | |
.vistoboot .offset-lg-0 { | |
margin-left: 0; | |
} | |
.vistoboot .offset-lg-1 { | |
margin-left: 8.3333333333%; | |
} | |
.vistoboot .offset-lg-2 { | |
margin-left: 16.6666666667%; | |
} | |
.vistoboot .offset-lg-3 { | |
margin-left: 25%; | |
} | |
.vistoboot .offset-lg-4 { | |
margin-left: 33.3333333333%; | |
} | |
.vistoboot .offset-lg-5 { | |
margin-left: 41.6666666667%; | |
} | |
.vistoboot .offset-lg-6 { | |
margin-left: 50%; | |
} | |
.vistoboot .offset-lg-7 { | |
margin-left: 58.3333333333%; | |
} | |
.vistoboot .offset-lg-8 { | |
margin-left: 66.6666666667%; | |
} | |
.vistoboot .offset-lg-9 { | |
margin-left: 75%; | |
} | |
.vistoboot .offset-lg-10 { | |
margin-left: 83.3333333333%; | |
} | |
.vistoboot .offset-lg-11 { | |
margin-left: 91.6666666667%; | |
} | |
} | |
@media (min-width: 1200px) { | |
.vistoboot .col-xl { | |
-ms-flex-preferred-size: 0; | |
flex-basis: 0; | |
-webkit-box-flex: 1; | |
-ms-flex-positive: 1; | |
flex-grow: 1; | |
max-width: 100%; | |
} | |
.vistoboot .col-xl-auto { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 auto; | |
flex: 0 0 auto; | |
width: auto; | |
max-width: 100%; | |
} | |
.vistoboot .col-xl-1 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 8.3333333333%; | |
flex: 0 0 8.3333333333%; | |
max-width: 8.3333333333%; | |
} | |
.vistoboot .col-xl-2 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 16.6666666667%; | |
flex: 0 0 16.6666666667%; | |
max-width: 16.6666666667%; | |
} | |
.vistoboot .col-xl-3 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 25%; | |
flex: 0 0 25%; | |
max-width: 25%; | |
} | |
.vistoboot .col-xl-4 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 33.3333333333%; | |
flex: 0 0 33.3333333333%; | |
max-width: 33.3333333333%; | |
} | |
.vistoboot .col-xl-5 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 41.6666666667%; | |
flex: 0 0 41.6666666667%; | |
max-width: 41.6666666667%; | |
} | |
.vistoboot .col-xl-6 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 50%; | |
flex: 0 0 50%; | |
max-width: 50%; | |
} | |
.vistoboot .col-xl-7 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 58.3333333333%; | |
flex: 0 0 58.3333333333%; | |
max-width: 58.3333333333%; | |
} | |
.vistoboot .col-xl-8 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 66.6666666667%; | |
flex: 0 0 66.6666666667%; | |
max-width: 66.6666666667%; | |
} | |
.vistoboot .col-xl-9 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 75%; | |
flex: 0 0 75%; | |
max-width: 75%; | |
} | |
.vistoboot .col-xl-10 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 83.3333333333%; | |
flex: 0 0 83.3333333333%; | |
max-width: 83.3333333333%; | |
} | |
.vistoboot .col-xl-11 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 91.6666666667%; | |
flex: 0 0 91.6666666667%; | |
max-width: 91.6666666667%; | |
} | |
.vistoboot .col-xl-12 { | |
-webkit-box-flex: 0; | |
-ms-flex: 0 0 100%; | |
flex: 0 0 100%; | |
max-width: 100%; | |
} | |
.vistoboot .order-xl-first { | |
-webkit-box-ordinal-group: 0; | |
-ms-flex-order: -1; | |
order: -1; | |
} | |
.vistoboot .order-xl-last { | |
-webkit-box-ordinal-group: 14; | |
-ms-flex-order: 13; | |
order: 13; | |
} | |
.vistoboot .order-xl-0 { | |
-webkit-box-ordinal-group: 1; | |
-ms-flex-order: 0; | |
order: 0; | |
} | |
.vistoboot .order-xl-1 { | |
-webkit-box-ordinal-group: 2; | |
-ms-flex-order: 1; | |
order: 1; | |
} | |
.vistoboot .order-xl-2 { | |
-webkit-box-ordinal-group: 3; | |
-ms-flex-order: 2; | |
order: 2; | |
} | |
.vistoboot .order-xl-3 { | |
-webkit-box-ordinal-group: 4; | |
-ms-flex-order: 3; | |
order: 3; | |
} | |
.vistoboot .order-xl-4 { | |
-webkit-box-ordinal-group: 5; | |
-ms-flex-order: 4; | |
order: 4; | |
} | |
.vistoboot .order-xl-5 { | |
-webkit-box-ordinal-group: 6; | |
-ms-flex-order: 5; | |
order: 5; | |
} | |
.vistoboot .order-xl-6 { | |
-webkit-box-ordinal-group: 7; | |
-ms-flex-order: 6; | |
order: 6; | |
} | |
.vistoboot .order-xl-7 { | |
-webkit-box-ordinal-group: 8; | |
-ms-flex-order: 7; | |
order: 7; | |
} | |
.vistoboot .order-xl-8 { | |
-webkit-box-ordinal-group: 9; | |
-ms-flex-order: 8; | |
order: 8; | |
} | |
.vistoboot .order-xl-9 { | |
-webkit-box-ordinal-group: 10; | |
-ms-flex-order: 9; | |
order: 9; | |
} | |
.vistoboot .order-xl-10 { | |
-webkit-box-ordinal-group: 11; | |
-ms-flex-order: 10; | |
order: 10; | |
} | |
.vistoboot .order-xl-11 { | |
-webkit-box-ordinal-group: 12; | |
-ms-flex-order: 11; | |
order: 11; | |
} | |
.vistoboot .order-xl-12 { | |
-webkit-box-ordinal-group: 13; | |
-ms-flex-order: 12; | |
order: 12; | |
} | |
.vistoboot .offset-xl-0 { | |
margin-left: 0; | |
} | |
.vistoboot .offset-xl-1 { | |
margin-left: 8.3333333333%; | |
} | |
.vistoboot .offset-xl-2 { | |
margin-left: 16.6666666667%; | |
} | |
.vistoboot .offset-xl-3 { | |
margin-left: 25%; | |
} | |
.vistoboot .offset-xl-4 { | |
margin-left: 33.3333333333%; | |
} | |
.vistoboot .offset-xl-5 { | |
margin-left: 41.6666666667%; | |
} | |
.vistoboot .offset-xl-6 { | |
margin-left: 50%; | |
} | |
.vistoboot .offset-xl-7 { | |
margin-left: 58.3333333333%; | |
} | |
.vistoboot .offset-xl-8 { | |
margin-left: 66.6666666667%; | |
} | |
.vistoboot .offset-xl-9 { | |
margin-left: 75%; | |
} | |
.vistoboot .offset-xl-10 { | |
margin-left: 83.3333333333%; | |
} | |
.vistoboot .offset-xl-11 { | |
margin-left: 91.6666666667%; | |
} | |
} | |
.vistoboot .d-none { | |
display: none !important; | |
} | |
.vistoboot .d-inline { | |
display: inline !important; | |
} | |
.vistoboot .d-inline-block { | |
display: inline-block !important; | |
} | |
.vistoboot .d-block { | |
display: block !important; | |
} | |
.vistoboot .d-table { | |
display: table !important; | |
} | |
.vistoboot .d-table-row { | |
display: table-row !important; | |
} | |
.vistoboot .d-table-cell { | |
display: table-cell !important; | |
} | |
.vistoboot .d-flex { | |
display: -webkit-box !important; | |
display: -ms-flexbox !important; | |
display: flex !important; | |
} | |
.vistoboot .d-inline-flex { | |
display: -webkit-inline-box !important; | |
display: -ms-inline-flexbox !important; | |
display: inline-flex !important; | |
} | |
@media (min-width: 576px) { | |
.vistoboot .d-sm-none { | |
display: none !important; | |
} | |
.vistoboot .d-sm-inline { | |
display: inline !important; | |
} | |
.vistoboot .d-sm-inline-block { | |
display: inline-block !important; | |
} | |
.vistoboot .d-sm-block { | |
display: block !important; | |
} | |
.vistoboot .d-sm-table { | |
display: table !important; | |
} | |
.vistoboot .d-sm-table-row { | |
display: table-row !important; | |
} | |
.vistoboot .d-sm-table-cell { | |
display: table-cell !important; | |
} | |
.vistoboot .d-sm-flex { | |
display: -webkit-box !important; | |
display: -ms-flexbox !important; | |
display: flex !important; | |
} | |
.vistoboot .d-sm-inline-flex { | |
display: -webkit-inline-box !important; | |
display: -ms-inline-flexbox !important; | |
display: inline-flex !important; | |
} | |
} | |
@media (min-width: 768px) { | |
.vistoboot .d-md-none { | |
display: none !important; | |
} | |
.vistoboot .d-md-inline { | |
display: inline !important; | |
} | |
.vistoboot .d-md-inline-block { | |
display: inline-block !important; | |
} | |
.vistoboot .d-md-block { | |
display: block !important; | |
} | |
.vistoboot .d-md-table { | |
display: table !important; | |
} | |
.vistoboot .d-md-table-row { | |
display: table-row !important; | |
} | |
.vistoboot .d-md-table-cell { | |
display: table-cell !important; | |
} | |
.vistoboot .d-md-flex { | |
display: -webkit-box !important; | |
display: -ms-flexbox !important; | |
display: flex !important; | |
} | |
.vistoboot .d-md-inline-flex { | |
display: -webkit-inline-box !important; | |
display: -ms-inline-flexbox !important; | |
display: inline-flex !important; | |
} | |
} | |
@media (min-width: 992px) { | |
.vistoboot .d-lg-none { | |
display: none !important; | |
} | |
.vistoboot .d-lg-inline { | |
display: inline !important; | |
} | |
.vistoboot .d-lg-inline-block { | |
display: inline-block !important; | |
} | |
.vistoboot .d-lg-block { | |
display: block !important; | |
} | |
.vistoboot .d-lg-table { | |
display: table !important; | |
} | |
.vistoboot .d-lg-table-row { | |
display: table-row !important; | |
} | |
.vistoboot .d-lg-table-cell { | |
display: table-cell !important; | |
} | |
.vistoboot .d-lg-flex { | |
display: -webkit-box !important; | |
display: -ms-flexbox !important; | |
display: flex !important; | |
} | |
.vistoboot .d-lg-inline-flex { | |
display: -webkit-inline-box !important; | |
display: -ms-inline-flexbox !important; | |
display: inline-flex !important; | |
} | |
} | |
@media (min-width: 1200px) { | |
.vistoboot .d-xl-none { | |
display: none !important; | |
} | |
.vistoboot .d-xl-inline { | |
display: inline !important; | |
} | |
.vistoboot .d-xl-inline-block { | |
display: inline-block !important; | |
} | |
.vistoboot .d-xl-block { | |
display: block !important; | |
} | |
.vistoboot .d-xl-table { | |
display: table !important; | |
} | |
.vistoboot .d-xl-table-row { | |
display: table-row !important; | |
} | |
.vistoboot .d-xl-table-cell { | |
display: table-cell !important; | |
} | |
.vistoboot .d-xl-flex { | |
display: -webkit-box !important; | |
display: -ms-flexbox !important; | |
display: flex !important; | |
} | |
.vistoboot .d-xl-inline-flex { | |
display: -webkit-inline-box !important; | |
display: -ms-inline-flexbox !important; | |
display: inline-flex !important; | |
} | |
} | |
@media print { | |
.vistoboot .d-print-none { | |
display: none !important; | |
} | |
.vistoboot .d-print-inline { | |
display: inline !important; | |
} | |
.vistoboot .d-print-inline-block { | |
display: inline-block !important; | |
} | |
.vistoboot .d-print-block { | |
display: block !important; | |
} | |
.vistoboot .d-print-table { | |
display: table !important; | |
} | |
.vistoboot .d-print-table-row { | |
display: table-row !important; | |
} | |
.vistoboot .d-print-table-cell { | |
display: table-cell !important; | |
} | |
.vistoboot .d-print-flex { | |
display: -webkit-box !important; | |
display: -ms-flexbox !important; | |
display: flex !important; | |
} | |
.vistoboot .d-print-inline-flex { | |
display: -webkit-inline-box !important; | |
display: -ms-inline-flexbox !important; | |
display: inline-flex !important; | |
} | |
} | |
.vistoboot .flex-row { | |
-webkit-box-orient: horizontal !important; | |
-webkit-box-direction: normal !important; | |
-ms-flex-direction: row !important; | |
flex-direction: row !important; | |
} | |
.vistoboot .flex-column { | |
-webkit-box-orient: vertical !important; | |
-webkit-box-direction: normal !important; | |
-ms-flex-direction: column !important; | |
flex-direction: column !important; | |
} | |
.vistoboot .flex-row-reverse { | |
-webkit-box-orient: horizontal !important; | |
-webkit-box-direction: reverse !important; | |
-ms-flex-direction: row-reverse !important; | |
flex-direction: row-reverse !important; | |
} | |
.vistoboot .flex-column-reverse { | |
-webkit-box-orient: vertical !important; | |
-webkit-box-direction: reverse !important; | |
-ms-flex-direction: column-reverse !important; | |
flex-direction: column-reverse !important; | |
} | |
.vistoboot .flex-wrap { | |
-ms-flex-wrap: wrap !important; | |
flex-wrap: wrap !important; | |
} | |
.vistoboot .flex-nowrap { | |
-ms-flex-wrap: nowrap !important; | |
flex-wrap: nowrap !important; | |
} | |
.vistoboot .flex-wrap-reverse { | |
-ms-flex-wrap: wrap-reverse !important; | |
flex-wrap: wrap-reverse !important; | |
} | |
.vistoboot .flex-fill { | |
-webkit-box-flex: 1 !important; | |
-ms-flex: 1 1 auto !important; | |
flex: 1 1 auto !important; | |
} | |
.vistoboot .flex-grow-0 { | |
-webkit-box-flex: 0 !important; | |
-ms-flex-positive: 0 !important; | |
flex-grow: 0 !important; | |
} | |
.vistoboot .flex-grow-1 { | |
-webkit-box-flex: 1 !important; | |
-ms-flex-positive: 1 !important; | |
flex-grow: 1 !important; | |
} | |
.vistoboot .flex-shrink-0 { | |
-ms-flex-negative: 0 !important; | |
flex-shrink: 0 !important; | |
} | |
.vistoboot .flex-shrink-1 { | |
-ms-flex-negative: 1 !important; | |
flex-shrink: 1 !important; | |
} | |
.vistoboot .justify-content-start { | |
-webkit-box-pack: start !important; | |
-ms-flex-pack: start !important; | |
justify-content: flex-start !important; | |
} | |
.vistoboot .justify-content-end { | |
-webkit-box-pack: end !important; | |
-ms-flex-pack: end !important; | |
justify-content: flex-end !important; | |
} | |
.vistoboot .justify-content-center { | |
-webkit-box-pack: center !important; | |
-ms-flex-pack: center !important; | |
justify-content: center !important; | |
} | |
.vistoboot .justify-content-between { | |
-webkit-box-pack: justify !important; | |
-ms-flex-pack: justify !important; | |
justify-content: space-between !important; | |
} | |
.vistoboot .justify-content-around { | |
-ms-flex-pack: distribute !important; | |
justify-content: space-around !important; | |
} | |
.vistoboot .align-items-start { | |
-webkit-box-align: start !important; | |
-ms-flex-align: start !important; | |
align-items: flex-start !important; | |
} | |
.vistoboot .align-items-end { | |
-webkit-box-align: end !important; | |
-ms-flex-align: end !important; | |
align-items: flex-end !important; | |
} | |
.vistoboot .align-items-center { | |
-webkit-box-align: center !important; | |
-ms-flex-align: center !important; | |
align-items: center !important; | |
} | |
.vistoboot .align-items-baseline { | |
-webkit-box-align: baseline !important; | |
-ms-flex-align: baseline !important; | |
align-items: baseline !important; | |
} | |
.vistoboot .align-items-stretch { | |
-webkit-box-align: stretch !important; | |
-ms-flex-align: stretch !important; | |
align-items: stretch !important; | |
} | |
.vistoboot .align-content-start { | |
-ms-flex-line-pack: start !important; | |
align-content: flex-start !important; | |
} | |
.vistoboot .align-content-end { | |
-ms-flex-line-pack: end !important; | |
align-content: flex-end !important; | |
} | |
.vistoboot .align-content-center { | |
-ms-flex-line-pack: center !important; | |
align-content: center !important; | |
} | |
.vistoboot .align-content-between { | |
-ms-flex-line-pack: justify !important; | |
align-content: space-between !important; | |
} | |
.vistoboot .align-content-around { | |
-ms-flex-line-pack: distribute !important; | |
align-content: space-around !important; | |
} | |
.vistoboot .align-content-stretch { | |
-ms-flex-line-pack: stretch !important; | |
align-content: stretch !important; | |
} | |
.vistoboot .align-self-auto { | |
-ms-flex-item-align: auto !important; | |
align-self: auto !important; | |
} | |
.vistoboot .align-self-start { | |
-ms-flex-item-align: start !important; | |
align-self: flex-start !important; | |
} | |
.vistoboot .align-self-end { | |
-ms-flex-item-align: end !important; | |
align-self: flex-end !important; | |
} | |
.vistoboot .align-self-center { | |
-ms-flex-item-align: center !important; | |
align-self: center !important; | |
} | |
.vistoboot .align-self-baseline { | |
-ms-flex-item-align: baseline !important; | |
align-self: baseline !important; | |
} | |
.vistoboot .align-self-stretch { | |
-ms-flex-item-align: stretch !important; | |
align-self: stretch !important; | |
} | |
@media (min-width: 576px) { | |
.vistoboot .flex-sm-row { | |
-webkit-box-orient: horizontal !important; | |
-webkit-box-direction: normal !important; | |
-ms-flex-direction: row !important; | |
flex-direction: row !important; | |
} | |
.vistoboot .flex-sm-column { | |
-webkit-box-orient: vertical !important; | |
-webkit-box-direction: normal !important; | |
-ms-flex-direction: column !important; | |
flex-direction: column !important; | |
} | |
.vistoboot .flex-sm-row-reverse { | |
-webkit-box-orient: horizontal !important; | |
-webkit-box-direction: reverse !important; | |
-ms-flex-direction: row-reverse !important; | |
flex-direction: row-reverse !important; | |
} | |
.vistoboot .flex-sm-column-reverse { | |
-webkit-box-orient: vertical !important; | |
-webkit-box-direction: reverse !important; | |
-ms-flex-direction: column-reverse !important; | |
flex-direction: column-reverse !important; | |
} | |
.vistoboot .flex-sm-wrap { | |
-ms-flex-wrap: wrap !important; | |
flex-wrap: wrap !important; | |
} | |
.vistoboot .flex-sm-nowrap { | |
-ms-flex-wrap: nowrap !important; | |
flex-wrap: nowrap !important; | |
} | |
.vistoboot .flex-sm-wrap-reverse { | |
-ms-flex-wrap: wrap-reverse !important; | |
flex-wrap: wrap-reverse !important; | |
} | |
.vistoboot .flex-sm-fill { | |
-webkit-box-flex: 1 !important; | |
-ms-flex: 1 1 auto !important; | |
flex: 1 1 auto !important; | |
} | |
.vistoboot .flex-sm-grow-0 { | |
-webkit-box-flex: 0 !important; | |
-ms-flex-positive: 0 !important; | |
flex-grow: 0 !important; | |
} | |
.vistoboot .flex-sm-grow-1 { | |
-webkit-box-flex: 1 !important; | |
-ms-flex-positive: 1 !important; | |
flex-grow: 1 !important; | |
} | |
.vistoboot .flex-sm-shrink-0 { | |
-ms-flex-negative: 0 !important; | |
flex-shrink: 0 !important; | |
} | |
.vistoboot .flex-sm-shrink-1 { | |
-ms-flex-negative: 1 !important; | |
flex-shrink: 1 !important; | |
} | |
.vistoboot .justify-content-sm-start { | |
-webkit-box-pack: start !important; | |
-ms-flex-pack: start !important; | |
justify-content: flex-start !important; | |
} | |
.vistoboot .justify-content-sm-end { | |
-webkit-box-pack: end !important; | |
-ms-flex-pack: end !important; | |
justify-content: flex-end !important; | |
} | |
.vistoboot .justify-content-sm-center { | |
-webkit-box-pack: center !important; | |
-ms-flex-pack: center !important; | |
justify-content: center !important; | |
} | |
.vistoboot .justify-content-sm-between { | |
-webkit-box-pack: justify !important; | |
-ms-flex-pack: justify !important; | |
justify-content: space-between !important; | |
} | |
.vistoboot .justify-content-sm-around { | |
-ms-flex-pack: distribute !important; | |
justify-content: space-around !important; | |
} | |
.vistoboot .align-items-sm-start { | |
-webkit-box-align: start !important; | |
-ms-flex-align: start !important; | |
align-items: flex-start !important; | |
} | |
.vistoboot .align-items-sm-end { | |
-webkit-box-align: end !important; | |
-ms-flex-align: end !important; | |
align-items: flex-end !important; | |
} | |
.vistoboot .align-items-sm-center { | |
-webkit-box-align: center !important; | |
-ms-flex-align: center !important; | |
align-items: center !important; | |
} | |
.vistoboot .align-items-sm-baseline { | |
-webkit-box-align: baseline !important; | |
-ms-flex-align: baseline !important; | |
align-items: baseline !important; | |
} | |
.vistoboot .align-items-sm-stretch { | |
-webkit-box-align: stretch !important; | |
-ms-flex-align: stretch !important; | |
align-items: stretch !important; | |
} | |
.vistoboot .align-content-sm-start { | |
-ms-flex-line-pack: start !important; | |
align-content: flex-start !important; | |
} | |
.vistoboot .align-content-sm-end { | |
-ms-flex-line-pack: end !important; | |
align-content: flex-end !important; | |
} | |
.vistoboot .align-content-sm-center { | |
-ms-flex-line-pack: center !important; | |
align-content: center !important; | |
} | |
.vistoboot .align-content-sm-between { | |
-ms-flex-line-pack: justify !important; | |
align-content: space-between !important; | |
} | |
.vistoboot .align-content-sm-around { | |
-ms-flex-line-pack: distribute !important; | |
align-content: space-around !important; | |
} | |
.vistoboot .align-content-sm-stretch { | |
-ms-flex-line-pack: stretch !important; | |
align-content: stretch !important; | |
} | |
.vistoboot .align-self-sm-auto { | |
-ms-flex-item-align: auto !important; | |
align-self: auto !important; | |
} | |
.vistoboot .align-self-sm-start { | |
-ms-flex-item-align: start !important; | |
align-self: flex-start !important; | |
} | |
.vistoboot .align-self-sm-end { | |
-ms-flex-item-align: end !important; | |
align-self: flex-end !important; | |
} | |
.vistoboot .align-self-sm-center { | |
-ms-flex-item-align: center !important; | |
align-self: center !important; | |
} | |
.vistoboot .align-self-sm-baseline { | |
-ms-flex-item-align: baseline !important; | |
align-self: baseline !important; | |
} | |
.vistoboot .align-self-sm-stretch { | |
-ms-flex-item-align: stretch !important; | |
align-self: stretch !important; | |
} | |
} | |
@media (min-width: 768px) { | |
.vistoboot .flex-md-row { | |
-webkit-box-orient: horizontal !important; | |
-webkit-box-direction: normal !important; | |
-ms-flex-direction: row !important; | |
flex-direction: row !important; | |
} | |
.vistoboot .flex-md-column { | |
-webkit-box-orient: vertical !important; | |
-webkit-box-direction: normal !important; | |
-ms-flex-direction: column !important; | |
flex-direction: column !important; | |
} | |
.vistoboot .flex-md-row-reverse { | |
-webkit-box-orient: horizontal !important; | |
-webkit-box-direction: reverse !important; | |
-ms-flex-direction: row-reverse !important; | |
flex-direction: row-reverse !important; | |
} | |
.vistoboot .flex-md-column-reverse { | |
-webkit-box-orient: vertical !important; | |
-webkit-box-direction: reverse !important; | |
-ms-flex-direction: column-reverse !important; | |
flex-direction: column-reverse !important; | |
} | |
.vistoboot .flex-md-wrap { | |
-ms-flex-wrap: wrap !important; | |
flex-wrap: wrap !important; | |
} | |
.vistoboot .flex-md-nowrap { | |
-ms-flex-wrap: nowrap !important; | |
flex-wrap: nowrap !important; | |
} | |
.vistoboot .flex-md-wrap-reverse { | |
-ms-flex-wrap: wrap-reverse !important; | |
flex-wrap: wrap-reverse !important; | |
} | |
.vistoboot .flex-md-fill { | |
-webkit-box-flex: 1 !important; | |
-ms-flex: 1 1 auto !important; | |
flex: 1 1 auto !important; | |
} | |
.vistoboot .flex-md-grow-0 { | |
-webkit-box-flex: 0 !important; | |
-ms-flex-positive: 0 !important; | |
flex-grow: 0 !important; | |
} | |
.vistoboot .flex-md-grow-1 { | |
-webkit-box-flex: 1 !important; | |
-ms-flex-positive: 1 !important; | |
flex-grow: 1 !important; | |
} | |
.vistoboot .flex-md-shrink-0 { | |
-ms-flex-negative: 0 !important; | |
flex-shrink: 0 !important; | |
} | |
.vistoboot .flex-md-shrink-1 { | |
-ms-flex-negative: 1 !important; | |
flex-shrink: 1 !important; | |
} | |
.vistoboot .justify-content-md-start { | |
-webkit-box-pack: start !important; | |
-ms-flex-pack: start !important; | |
justify-content: flex-start !important; | |
} | |
.vistoboot .justify-content-md-end { | |
-webkit-box-pack: end !important; | |
-ms-flex-pack: end !important; | |
justify-content: flex-end !important; | |
} | |
.vistoboot .justify-content-md-center { | |
-webkit-box-pack: center !important; | |
-ms-flex-pack: center !important; | |
justify-content: center !important; | |
} | |
.vistoboot .justify-content-md-between { | |
-webkit-box-pack: justify !important; | |
-ms-flex-pack: justify !important; | |
justify-content: space-between !important; | |
} | |
.vistoboot .justify-content-md-around { | |
-ms-flex-pack: distribute !important; | |
justify-content: space-around !important; | |
} | |
.vistoboot .align-items-md-start { | |
-webkit-box-align: start !important; | |
-ms-flex-align: start !important; | |
align-items: flex-start !important; | |
} | |
.vistoboot .align-items-md-end { | |
-webkit-box-align: end !important; | |
-ms-flex-align: end !important; | |
align-items: flex-end !important; | |
} | |
.vistoboot .align-items-md-center { | |
-webkit-box-align: center !important; | |
-ms-flex-align: center !important; | |
align-items: center !important; | |
} | |
.vistoboot .align-items-md-baseline { | |
-webkit-box-align: baseline !important; | |
-ms-flex-align: baseline !important; | |
align-items: baseline !important; | |
} | |
.vistoboot .align-items-md-stretch { | |
-webkit-box-align: stretch !important; | |
-ms-flex-align: stretch !important; | |
align-items: stretch !important; | |
} | |
.vistoboot .align-content-md-start { | |
-ms-flex-line-pack: start !important; | |
align-content: flex-start !important; | |
} | |
.vistoboot .align-content-md-end { | |
-ms-flex-line-pack: end !important; | |
align-content: flex-end !important; | |
} | |
.vistoboot .align-content-md-center { | |
-ms-flex-line-pack: center !important; | |
align-content: center !important; | |
} | |
.vistoboot .align-content-md-between { | |
-ms-flex-line-pack: justify !important; | |
align-content: space-between !important; | |
} | |
.vistoboot .align-content-md-around { | |
-ms-flex-line-pack: distribute !important; | |
align-content: space-around !important; | |
} | |
.vistoboot .align-content-md-stretch { | |
-ms-flex-line-pack: stretch !important; | |
align-content: stretch !important; | |
} | |
.vistoboot .align-self-md-auto { | |
-ms-flex-item-align: auto !important; | |
align-self: auto !important; | |
} | |
.vistoboot .align-self-md-start { | |
-ms-flex-item-align: start !important; | |
align-self: flex-start !important; | |
} | |
.vistoboot .align-self-md-end { | |
-ms-flex-item-align: end !important; | |
align-self: flex-end !important; | |
} | |
.vistoboot .align-self-md-center { | |
-ms-flex-item-align: center !important; | |
align-self: center !important; | |
} | |
.vistoboot .align-self-md-baseline { | |
-ms-flex-item-align: baseline !important; | |
align-self: baseline !important; | |
} | |
.vistoboot .align-self-md-stretch { | |
-ms-flex-item-align: stretch !important; | |
align-self: stretch !important; | |
} | |
} | |
@media (min-width: 992px) { | |
.vistoboot .flex-lg-row { | |
-webkit-box-orient: horizontal !important; | |
-webkit-box-direction: normal !important; | |
-ms-flex-direction: row !important; | |
flex-direction: row !important; | |
} | |
.vistoboot .flex-lg-column { | |
-webkit-box-orient: vertical !important; | |
-webkit-box-direction: normal !important; | |
-ms-flex-direction: column !important; | |
flex-direction: column !important; | |
} | |
.vistoboot .flex-lg-row-reverse { | |
-webkit-box-orient: horizontal !important; | |
-webkit-box-direction: reverse !important; | |
-ms-flex-direction: row-reverse !important; | |
flex-direction: row-reverse !important; | |
} | |
.vistoboot .flex-lg-column-reverse { | |
-webkit-box-orient: vertical !important; | |
-webkit-box-direction: reverse !important; | |
-ms-flex-direction: column-reverse !important; | |
flex-direction: column-reverse !important; | |
} | |
.vistoboot .flex-lg-wrap { | |
-ms-flex-wrap: wrap !important; | |
flex-wrap: wrap !important; | |
} | |
.vistoboot .flex-lg-nowrap { | |
-ms-flex-wrap: nowrap !important; | |
flex-wrap: nowrap !important; | |
} | |
.vistoboot .flex-lg-wrap-reverse { | |
-ms-flex-wrap: wrap-reverse !important; | |
flex-wrap: wrap-reverse !important; | |
} | |
.vistoboot .flex-lg-fill { | |
-webkit-box-flex: 1 !important; | |
-ms-flex: 1 1 auto !important; | |
flex: 1 1 auto !important; | |
} | |
.vistoboot .flex-lg-grow-0 { | |
-webkit-box-flex: 0 !important; | |
-ms-flex-positive: 0 !important; | |
flex-grow: 0 !important; | |
} | |
.vistoboot .flex-lg-grow-1 { | |
-webkit-box-flex: 1 !important; | |
-ms-flex-positive: 1 !important; | |
flex-grow: 1 !important; | |
} | |
.vistoboot .flex-lg-shrink-0 { | |
-ms-flex-negative: 0 !important; | |
flex-shrink: 0 !important; | |
} | |
.vistoboot .flex-lg-shrink-1 { | |
-ms-flex-negative: 1 !important; | |
flex-shrink: 1 !important; | |
} | |
.vistoboot .justify-content-lg-start { | |
-webkit-box-pack: start !important; | |
-ms-flex-pack: start !important; | |
justify-content: flex-start !important; | |
} | |
.vistoboot .justify-content-lg-end { | |
-webkit-box-pack: end !important; | |
-ms-flex-pack: end !important; | |
justify-content: flex-end !important; | |
} | |
.vistoboot .justify-content-lg-center { | |
-webkit-box-pack: center !important; | |
-ms-flex-pack: center !important; | |
justify-content: center !important; | |
} | |
.vistoboot .justify-content-lg-between { | |
-webkit-box-pack: justify !important; | |
-ms-flex-pack: justify !important; | |
justify-content: space-between !important; | |
} | |
.vistoboot .justify-content-lg-around { | |
-ms-flex-pack: distribute !important; | |
justify-content: space-around !important; | |
} | |
.vistoboot .align-items-lg-start { | |
-webkit-box-align: start !important; | |
-ms-flex-align: start !important; | |
align-items: flex-start !important; | |
} | |
.vistoboot .align-items-lg-end { | |
-webkit-box-align: end !important; | |
-ms-flex-align: end !important; | |
align-items: flex-end !important; | |
} | |
.vistoboot .align-items-lg-center { | |
-webkit-box-align: center !important; | |
-ms-flex-align: center !important; | |
align-items: center !important; | |
} | |
.vistoboot .align-items-lg-baseline { | |
-webkit-box-align: baseline !important; | |
-ms-flex-align: baseline !important; | |
align-items: baseline !important; | |
} | |
.vistoboot .align-items-lg-stretch { | |
-webkit-box-align: stretch !important; | |
-ms-flex-align: stretch !important; | |
align-items: stretch !important; | |
} | |
.vistoboot .align-content-lg-start { | |
-ms-flex-line-pack: start !important; | |
align-content: flex-start !important; | |
} | |
.vistoboot .align-content-lg-end { | |
-ms-flex-line-pack: end !important; | |
align-content: flex-end !important; | |
} | |
.vistoboot .align-content-lg-center { | |
-ms-flex-line-pack: center !important; | |
align-content: center !important; | |
} | |
.vistoboot .align-content-lg-between { | |
-ms-flex-line-pack: justify !important; | |
align-content: space-between !important; | |
} | |
.vistoboot .align-content-lg-around { | |
-ms-flex-line-pack: distribute !important; | |
align-content: space-around !important; | |
} | |
.vistoboot .align-content-lg-stretch { | |
-ms-flex-line-pack: stretch !important; | |
align-content: stretch !important; | |
} | |
.vistoboot .align-self-lg-auto { | |
-ms-flex-item-align: auto !important; | |
align-self: auto !important; | |
} | |
.vistoboot .align-self-lg-start { | |
-ms-flex-item-align: start !important; | |
align-self: flex-start !important; | |
} | |
.vistoboot .align-self-lg-end { | |
-ms-flex-item-align: end !important; | |
align-self: flex-end !important; | |
} | |
.vistoboot .align-self-lg-center { | |
-ms-flex-item-align: center !important; | |
align-self: center !important; | |
} | |
.vistoboot .align-self-lg-baseline { | |
-ms-flex-item-align: baseline !important; | |
align-self: baseline !important; | |
} | |
.vistoboot .align-self-lg-stretch { | |
-ms-flex-item-align: stretch !important; | |
align-self: stretch !important; | |
} | |
} | |
@media (min-width: 1200px) { | |
.vistoboot .flex-xl-row { | |
-webkit-box-orient: horizontal !important; | |
-webkit-box-direction: normal !important; | |
-ms-flex-direction: row !important; | |
flex-direction: row !important; | |
} | |
.vistoboot .flex-xl-column { | |
-webkit-box-orient: vertical !important; | |
-webkit-box-direction: normal !important; | |
-ms-flex-direction: column !important; | |
flex-direction: column !important; | |
} | |
.vistoboot .flex-xl-row-reverse { | |
-webkit-box-orient: horizontal !important; | |
-webkit-box-direction: reverse !important; | |
-ms-flex-direction: row-reverse !important; | |
flex-direction: row-reverse !important; | |
} | |
.vistoboot .flex-xl-column-reverse { | |
-webkit-box-orient: vertical !important; | |
-webkit-box-direction: reverse !important; | |
-ms-flex-direction: column-reverse !important; | |
flex-direction: column-reverse !important; | |
} | |
.vistoboot .flex-xl-wrap { | |
-ms-flex-wrap: wrap !important; | |
flex-wrap: wrap !important; | |
} | |
.vistoboot .flex-xl-nowrap { | |
-ms-flex-wrap: nowrap !important; | |
flex-wrap: nowrap !important; | |
} | |
.vistoboot .flex-xl-wrap-reverse { | |
-ms-flex-wrap: wrap-reverse !important; | |
flex-wrap: wrap-reverse !important; | |
} | |
.vistoboot .flex-xl-fill { | |
-webkit-box-flex: 1 !important; | |
-ms-flex: 1 1 auto !important; | |
flex: 1 1 auto !important; | |
} | |
.vistoboot .flex-xl-grow-0 { | |
-webkit-box-flex: 0 !important; | |
-ms-flex-positive: 0 !important; | |
flex-grow: 0 !important; | |
} | |
.vistoboot .flex-xl-grow-1 { | |
-webkit-box-flex: 1 !important; | |
-ms-flex-positive: 1 !important; | |
flex-grow: 1 !important; | |
} | |
.vistoboot .flex-xl-shrink-0 { | |
-ms-flex-negative: 0 !important; | |
flex-shrink: 0 !important; | |
} | |
.vistoboot .flex-xl-shrink-1 { | |
-ms-flex-negative: 1 !important; | |
flex-shrink: 1 !important; | |
} | |
.vistoboot .justify-content-xl-start { | |
-webkit-box-pack: start !important; | |
-ms-flex-pack: start !important; | |
justify-content: flex-start !important; | |
} | |
.vistoboot .justify-content-xl-end { | |
-webkit-box-pack: end !important; | |
-ms-flex-pack: end !important; | |
justify-content: flex-end !important; | |
} | |
.vistoboot .justify-content-xl-center { | |
-webkit-box-pack: center !important; | |
-ms-flex-pack: center !important; | |
justify-content: center !important; | |
} | |
.vistoboot .justify-content-xl-between { | |
-webkit-box-pack: justify !important; | |
-ms-flex-pack: justify !important; | |
justify-content: space-between !important; | |
} | |
.vistoboot .justify-content-xl-around { | |
-ms-flex-pack: distribute !important; | |
justify-content: space-around !important; | |
} | |
.vistoboot .align-items-xl-start { | |
-webkit-box-align: start !important; | |
-ms-flex-align: start !important; | |
align-items: flex-start !important; | |
} | |
.vistoboot .align-items-xl-end { | |
-webkit-box-align: end !important; | |
-ms-flex-align: end !important; | |
align-items: flex-end !important; | |
} | |
.vistoboot .align-items-xl-center { | |
-webkit-box-align: center !important; | |
-ms-flex-align: center !important; | |
align-items: center !important; | |
} | |
.vistoboot .align-items-xl-baseline { | |
-webkit-box-align: baseline !important; | |
-ms-flex-align: baseline !important; | |
align-items: baseline !important; | |
} | |
.vistoboot .align-items-xl-stretch { | |
-webkit-box-align: stretch !important; | |
-ms-flex-align: stretch !important; | |
align-items: stretch !important; | |
} | |
.vistoboot .align-content-xl-start { | |
-ms-flex-line-pack: start !important; | |
align-content: flex-start !important; | |
} | |
.vistoboot .align-content-xl-end { | |
-ms-flex-line-pack: end !important; | |
align-content: flex-end !important; | |
} | |
.vistoboot .align-content-xl-center { | |
-ms-flex-line-pack: center !important; | |
align-content: center !important; | |
} | |
.vistoboot .align-content-xl-between { | |
-ms-flex-line-pack: justify !important; | |
align-content: space-between !important; | |
} | |
.vistoboot .align-content-xl-around { | |
-ms-flex-line-pack: distribute !important; | |
align-content: space-around !important; | |
} | |
.vistoboot .align-content-xl-stretch { | |
-ms-flex-line-pack: stretch !important; | |
align-content: stretch !important; | |
} | |
.vistoboot .align-self-xl-auto { | |
-ms-flex-item-align: auto !important; | |
align-self: auto !important; | |
} | |
.vistoboot .align-self-xl-start { | |
-ms-flex-item-align: start !important; | |
align-self: flex-start !important; | |
} | |
.vistoboot .align-self-xl-end { | |
-ms-flex-item-align: end !important; | |
align-self: flex-end !important; | |
} | |
.vistoboot .align-self-xl-center { | |
-ms-flex-item-align: center !important; | |
align-self: center !important; | |
} | |
.vistoboot .align-self-xl-baseline { | |
-ms-flex-item-align: baseline !important; | |
align-self: baseline !important; | |
} | |
.vistoboot .align-self-xl-stretch { | |
-ms-flex-item-align: stretch !important; | |
align-self: stretch !important; | |
} | |
} | |
.vistoboot .m-0 { | |
margin: 0 !important; | |
} | |
.vistoboot .mt-0,.vistoboot .my-0 { | |
margin-top: 0 !important; | |
} | |
.vistoboot .mr-0,.vistoboot .mx-0 { | |
margin-right: 0 !important; | |
} | |
.vistoboot .mb-0,.vistoboot .my-0 { | |
margin-bottom: 0 !important; | |
} | |
.vistoboot .ml-0,.vistoboot .mx-0 { | |
margin-left: 0 !important; | |
} | |
.vistoboot .m-1 { | |
margin: 0.25rem !important; | |
} | |
.vistoboot .mt-1,.vistoboot .my-1 { | |
margin-top: 0.25rem !important; | |
} | |
.vistoboot .mr-1,.vistoboot .mx-1 { | |
margin-right: 0.25rem !important; | |
} | |
.vistoboot .mb-1,.vistoboot .my-1 { | |
margin-bottom: 0.25rem !important; | |
} | |
.vistoboot .ml-1,.vistoboot .mx-1 { | |
margin-left: 0.25rem !important; | |
} | |
.vistoboot .m-2 { | |
margin: 0.5rem !important; | |
} | |
.vistoboot .mt-2,.vistoboot .my-2 { | |
margin-top: 0.5rem !important; | |
} | |
.vistoboot .mr-2,.vistoboot .mx-2 { | |
margin-right: 0.5rem !important; | |
} | |
.vistoboot .mb-2,.vistoboot .my-2 { | |
margin-bottom: 0.5rem !important; | |
} | |
.vistoboot .ml-2,.vistoboot .mx-2 { | |
margin-left: 0.5rem !important; | |
} | |
.vistoboot .m-3 { | |
margin: 1rem !important; | |
} | |
.vistoboot .mt-3,.vistoboot .my-3 { | |
margin-top: 1rem !important; | |
} | |
.vistoboot .mr-3,.vistoboot .mx-3 { | |
margin-right: 1rem !important; | |
} | |
.vistoboot .mb-3,.vistoboot .my-3 { | |
margin-bottom: 1rem !important; | |
} | |
.vistoboot .ml-3,.vistoboot .mx-3 { | |
margin-left: 1rem !important; | |
} | |
.vistoboot .m-4 { | |
margin: 1.5rem !important; | |
} | |
.vistoboot .mt-4,.vistoboot .my-4 { | |
margin-top: 1.5rem !important; | |
} | |
.vistoboot .mr-4,.vistoboot .mx-4 { | |
margin-right: 1.5rem !important; | |
} | |
.vistoboot .mb-4,.vistoboot .my-4 { | |
margin-bottom: 1.5rem !important; | |
} | |
.vistoboot .ml-4,.vistoboot .mx-4 { | |
margin-left: 1.5rem !important; | |
} | |
.vistoboot .m-5 { | |
margin: 3rem !important; | |
} | |
.vistoboot .mt-5,.vistoboot .my-5 { | |
margin-top: 3rem !important; | |
} | |
.vistoboot .mr-5,.vistoboot .mx-5 { | |
margin-right: 3rem !important; | |
} | |
.vistoboot .mb-5,.vistoboot .my-5 { | |
margin-bottom: 3rem !important; | |
} | |
.vistoboot .ml-5,.vistoboot .mx-5 { | |
margin-left: 3rem !important; | |
} | |
.vistoboot .p-0 { | |
padding: 0 !important; | |
} | |
.vistoboot .pt-0,.vistoboot .py-0 { | |
padding-top: 0 !important; | |
} | |
.vistoboot .pr-0,.vistoboot .px-0 { | |
padding-right: 0 !important; | |
} | |
.vistoboot .pb-0,.vistoboot .py-0 { | |
padding-bottom: 0 !important; | |
} | |
.vistoboot .pl-0,.vistoboot .px-0 { | |
padding-left: 0 !important; | |
} | |
.vistoboot .p-1 { | |
padding: 0.25rem !important; | |
} | |
.vistoboot .pt-1,.vistoboot .py-1 { | |
padding-top: 0.25rem !important; | |
} | |
.vistoboot .pr-1,.vistoboot .px-1 { | |
padding-right: 0.25rem !important; | |
} | |
.vistoboot .pb-1,.vistoboot .py-1 { | |
padding-bottom: 0.25rem !important; | |
} | |
.vistoboot .pl-1,.vistoboot .px-1 { | |
padding-left: 0.25rem !important; | |
} | |
.vistoboot .p-2 { | |
padding: 0.5rem !important; | |
} | |
.vistoboot .pt-2,.vistoboot .py-2 { | |
padding-top: 0.5rem !important; | |
} | |
.vistoboot .pr-2,.vistoboot .px-2 { | |
padding-right: 0.5rem !important; | |
} | |
.vistoboot .pb-2,.vistoboot .py-2 { | |
padding-bottom: 0.5rem !important; | |
} | |
.vistoboot .pl-2,.vistoboot .px-2 { | |
padding-left: 0.5rem !important; | |
} | |
.vistoboot .p-3 { | |
padding: 1rem !important; | |
} | |
.vistoboot .pt-3,.vistoboot .py-3 { | |
padding-top: 1rem !important; | |
} | |
.vistoboot .pr-3,.vistoboot .px-3 { | |
padding-right: 1rem !important; | |
} | |
.vistoboot .pb-3,.vistoboot .py-3 { | |
padding-bottom: 1rem !important; | |
} | |
.vistoboot .pl-3,.vistoboot .px-3 { | |
padding-left: 1rem !important; | |
} | |
.vistoboot .p-4 { | |
padding: 1.5rem !important; | |
} | |
.vistoboot .pt-4,.vistoboot .py-4 { | |
padding-top: 1.5rem !important; | |
} | |
.vistoboot .pr-4,.vistoboot .px-4 { | |
padding-right: 1.5rem !important; | |
} | |
.vistoboot .pb-4,.vistoboot .py-4 { | |
padding-bottom: 1.5rem !important; | |
} | |
.vistoboot .pl-4,.vistoboot .px-4 { | |
padding-left: 1.5rem !important; | |
} | |
.vistoboot .p-5 { | |
padding: 3rem !important; | |
} | |
.vistoboot .pt-5,.vistoboot .py-5 { | |
padding-top: 3rem !important; | |
} | |
.vistoboot .pr-5,.vistoboot .px-5 { | |
padding-right: 3rem !important; | |
} | |
.vistoboot .pb-5,.vistoboot .py-5 { | |
padding-bottom: 3rem !important; | |
} | |
.vistoboot .pl-5,.vistoboot .px-5 { | |
padding-left: 3rem !important; | |
} | |
.vistoboot .m-n1 { | |
margin: -0.25rem !important; | |
} | |
.vistoboot .mt-n1,.vistoboot .my-n1 { | |
margin-top: -0.25rem !important; | |
} | |
.vistoboot .mr-n1,.vistoboot .mx-n1 { | |
margin-right: -0.25rem !important; | |
} | |
.vistoboot .mb-n1,.vistoboot .my-n1 { | |
margin-bottom: -0.25rem !important; | |
} | |
.vistoboot .ml-n1,.vistoboot .mx-n1 { | |
margin-left: -0.25rem !important; | |
} | |
.vistoboot .m-n2 { | |
margin: -0.5rem !important; | |
} | |
.vistoboot .mt-n2,.vistoboot .my-n2 { | |
margin-top: -0.5rem !important; | |
} | |
.vistoboot .mr-n2,.vistoboot .mx-n2 { | |
margin-right: -0.5rem !important; | |
} | |
.vistoboot .mb-n2,.vistoboot .my-n2 { | |
margin-bottom: -0.5rem !important; | |
} | |
.vistoboot .ml-n2,.vistoboot .mx-n2 { | |
margin-left: -0.5rem !important; | |
} | |
.vistoboot .m-n3 { | |
margin: -1rem !important; | |
} | |
.vistoboot .mt-n3,.vistoboot .my-n3 { | |
margin-top: -1rem !important; | |
} | |
.vistoboot .mr-n3,.vistoboot .mx-n3 { | |
margin-right: -1rem !important; | |
} | |
.vistoboot .mb-n3,.vistoboot .my-n3 { | |
margin-bottom: -1rem !important; | |
} | |
.vistoboot .ml-n3,.vistoboot .mx-n3 { | |
margin-left: -1rem !important; | |
} | |
.vistoboot .m-n4 { | |
margin: -1.5rem !important; | |
} | |
.vistoboot .mt-n4,.vistoboot .my-n4 { | |
margin-top: -1.5rem !important; | |
} | |
.vistoboot .mr-n4,.vistoboot .mx-n4 { | |
margin-right: -1.5rem !important; | |
} | |
.vistoboot .mb-n4,.vistoboot .my-n4 { | |
margin-bottom: -1.5rem !important; | |
} | |
.vistoboot .ml-n4,.vistoboot .mx-n4 { | |
margin-left: -1.5rem !important; | |
} | |
.vistoboot .m-n5 { | |
margin: -3rem !important; | |
} | |
.vistoboot .mt-n5,.vistoboot .my-n5 { | |
margin-top: -3rem !important; | |
} | |
.vistoboot .mr-n5,.vistoboot .mx-n5 { | |
margin-right: -3rem !important; | |
} | |
.vistoboot .mb-n5,.vistoboot .my-n5 { | |
margin-bottom: -3rem !important; | |
} | |
.vistoboot .ml-n5,.vistoboot .mx-n5 { | |
margin-left: -3rem !important; | |
} | |
.vistoboot .m-auto { | |
margin: auto !important; | |
} | |
.vistoboot .mt-auto,.vistoboot .my-auto { | |
margin-top: auto !important; | |
} | |
.vistoboot .mr-auto,.vistoboot .mx-auto { | |
margin-right: auto !important; | |
} | |
.vistoboot .mb-auto,.vistoboot .my-auto { | |
margin-bottom: auto !important; | |
} | |
.vistoboot .ml-auto,.vistoboot .mx-auto { | |
margin-left: auto !important; | |
} | |
@media (min-width: 576px) { | |
.vistoboot .m-sm-0 { | |
margin: 0 !important; | |
} | |
.vistoboot .mt-sm-0,.vistoboot .my-sm-0 { | |
margin-top: 0 !important; | |
} | |
.vistoboot .mr-sm-0,.vistoboot .mx-sm-0 { | |
margin-right: 0 !important; | |
} | |
.vistoboot .mb-sm-0,.vistoboot .my-sm-0 { | |
margin-bottom: 0 !important; | |
} | |
.vistoboot .ml-sm-0,.vistoboot .mx-sm-0 { | |
margin-left: 0 !important; | |
} | |
.vistoboot .m-sm-1 { | |
margin: 0.25rem !important; | |
} | |
.vistoboot .mt-sm-1,.vistoboot .my-sm-1 { | |
margin-top: 0.25rem !important; | |
} | |
.vistoboot .mr-sm-1,.vistoboot .mx-sm-1 { | |
margin-right: 0.25rem !important; | |
} | |
.vistoboot .mb-sm-1,.vistoboot .my-sm-1 { | |
margin-bottom: 0.25rem !important; | |
} | |
.vistoboot .ml-sm-1,.vistoboot .mx-sm-1 { | |
margin-left: 0.25rem !important; | |
} | |
.vistoboot .m-sm-2 { | |
margin: 0.5rem !important; | |
} | |
.vistoboot .mt-sm-2,.vistoboot .my-sm-2 { | |
margin-top: 0.5rem !important; | |
} | |
.vistoboot .mr-sm-2,.vistoboot .mx-sm-2 { | |
margin-right: 0.5rem !important; | |
} | |
.vistoboot .mb-sm-2,.vistoboot .my-sm-2 { | |
margin-bottom: 0.5rem !important; | |
} | |
.vistoboot .ml-sm-2,.vistoboot .mx-sm-2 { | |
margin-left: 0.5rem !important; | |
} | |
.vistoboot .m-sm-3 { | |
margin: 1rem !important; | |
} | |
.vistoboot .mt-sm-3,.vistoboot .my-sm-3 { | |
margin-top: 1rem !important; | |
} | |
.vistoboot .mr-sm-3,.vistoboot .mx-sm-3 { | |
margin-right: 1rem !important; | |
} | |
.vistoboot .mb-sm-3,.vistoboot .my-sm-3 { | |
margin-bottom: 1rem !important; | |
} | |
.vistoboot .ml-sm-3,.vistoboot .mx-sm-3 { | |
margin-left: 1rem !important; | |
} | |
.vistoboot .m-sm-4 { | |
margin: 1.5rem !important; | |
} | |
.vistoboot .mt-sm-4,.vistoboot .my-sm-4 { | |
margin-top: 1.5rem !important; | |
} | |
.vistoboot .mr-sm-4,.vistoboot .mx-sm-4 { | |
margin-right: 1.5rem !important; | |
} | |
.vistoboot .mb-sm-4,.vistoboot .my-sm-4 { | |
margin-bottom: 1.5rem !important; | |
} | |
.vistoboot .ml-sm-4,.vistoboot .mx-sm-4 { | |
margin-left: 1.5rem !important; | |
} | |
.vistoboot .m-sm-5 { | |
margin: 3rem !important; | |
} | |
.vistoboot .mt-sm-5,.vistoboot .my-sm-5 { | |
margin-top: 3rem !important; | |
} | |
.vistoboot .mr-sm-5,.vistoboot .mx-sm-5 { | |
margin-right: 3rem !important; | |
} | |
.vistoboot .mb-sm-5,.vistoboot .my-sm-5 { | |
margin-bottom: 3rem !important; | |
} | |
.vistoboot .ml-sm-5,.vistoboot .mx-sm-5 { | |
margin-left: 3rem !important; | |
} | |
.vistoboot .p-sm-0 { | |
padding: 0 !important; | |
} | |
.vistoboot .pt-sm-0,.vistoboot .py-sm-0 { | |
padding-top: 0 !important; | |
} | |
.vistoboot .pr-sm-0,.vistoboot .px-sm-0 { | |
padding-right: 0 !important; | |
} | |
.vistoboot .pb-sm-0,.vistoboot .py-sm-0 { | |
padding-bottom: 0 !important; | |
} | |
.vistoboot .pl-sm-0,.vistoboot .px-sm-0 { | |
padding-left: 0 !important; | |
} | |
.vistoboot .p-sm-1 { | |
padding: 0.25rem !important; | |
} | |
.vistoboot .pt-sm-1,.vistoboot .py-sm-1 { | |
padding-top: 0.25rem !important; | |
} | |
.vistoboot .pr-sm-1,.vistoboot .px-sm-1 { | |
padding-right: 0.25rem !important; | |
} | |
.vistoboot .pb-sm-1,.vistoboot .py-sm-1 { | |
padding-bottom: 0.25rem !important; | |
} | |
.vistoboot .pl-sm-1,.vistoboot .px-sm-1 { | |
padding-left: 0.25rem !important; | |
} | |
.vistoboot .p-sm-2 { | |
padding: 0.5rem !important; | |
} | |
.vistoboot .pt-sm-2,.vistoboot .py-sm-2 { | |
padding-top: 0.5rem !important; | |
} | |
.vistoboot .pr-sm-2,.vistoboot .px-sm-2 { | |
padding-right: 0.5rem !important; | |
} | |
.vistoboot .pb-sm-2,.vistoboot .py-sm-2 { | |
padding-bottom: 0.5rem !important; | |
} | |
.vistoboot .pl-sm-2,.vistoboot .px-sm-2 { | |
padding-left: 0.5rem !important; | |
} | |
.vistoboot .p-sm-3 { | |
padding: 1rem !important; | |
} | |
.vistoboot .pt-sm-3,.vistoboot .py-sm-3 { | |
padding-top: 1rem !important; | |
} | |
.vistoboot .pr-sm-3,.vistoboot .px-sm-3 { | |
padding-right: 1rem !important; | |
} | |
.vistoboot .pb-sm-3,.vistoboot .py-sm-3 { | |
padding-bottom: 1rem !important; | |
} | |
.vistoboot .pl-sm-3,.vistoboot .px-sm-3 { | |
padding-left: 1rem !important; | |
} | |
.vistoboot .p-sm-4 { | |
padding: 1.5rem !important; | |
} | |
.vistoboot .pt-sm-4,.vistoboot .py-sm-4 { | |
padding-top: 1.5rem !important; | |
} | |
.vistoboot .pr-sm-4,.vistoboot .px-sm-4 { | |
padding-right: 1.5rem !important; | |
} | |
.vistoboot .pb-sm-4,.vistoboot .py-sm-4 { | |
padding-bottom: 1.5rem !important; | |
} | |
.vistoboot .pl-sm-4,.vistoboot .px-sm-4 { | |
padding-left: 1.5rem !important; | |
} | |
.vistoboot .p-sm-5 { | |
padding: 3rem !important; | |
} | |
.vistoboot .pt-sm-5,.vistoboot .py-sm-5 { | |
padding-top: 3rem !important; | |
} | |
.vistoboot .pr-sm-5,.vistoboot .px-sm-5 { | |
padding-right: 3rem !important; | |
} | |
.vistoboot .pb-sm-5,.vistoboot .py-sm-5 { | |
padding-bottom: 3rem !important; | |
} | |
.vistoboot .pl-sm-5,.vistoboot .px-sm-5 { | |
padding-left: 3rem !important; | |
} | |
.vistoboot .m-sm-n1 { | |
margin: -0.25rem !important; | |
} | |
.vistoboot .mt-sm-n1,.vistoboot .my-sm-n1 { | |
margin-top: -0.25rem !important; | |
} | |
.vistoboot .mr-sm-n1,.vistoboot .mx-sm-n1 { | |
margin-right: -0.25rem !important; | |
} | |
.vistoboot .mb-sm-n1,.vistoboot .my-sm-n1 { | |
margin-bottom: -0.25rem !important; | |
} | |
.vistoboot .ml-sm-n1,.vistoboot .mx-sm-n1 { | |
margin-left: -0.25rem !important; | |
} | |
.vistoboot .m-sm-n2 { | |
margin: -0.5rem !important; | |
} | |
.vistoboot .mt-sm-n2,.vistoboot .my-sm-n2 { | |
margin-top: -0.5rem !important; | |
} | |
.vistoboot .mr-sm-n2,.vistoboot .mx-sm-n2 { | |
margin-right: -0.5rem !important; | |
} | |
.vistoboot .mb-sm-n2,.vistoboot .my-sm-n2 { | |
margin-bottom: -0.5rem !important; | |
} | |
.vistoboot .ml-sm-n2,.vistoboot .mx-sm-n2 { | |
margin-left: -0.5rem !important; | |
} | |
.vistoboot .m-sm-n3 { | |
margin: -1rem !important; | |
} | |
.vistoboot .mt-sm-n3,.vistoboot .my-sm-n3 { | |
margin-top: -1rem !important; | |
} | |
.vistoboot .mr-sm-n3,.vistoboot .mx-sm-n3 { | |
margin-right: -1rem !important; | |
} | |
.vistoboot .mb-sm-n3,.vistoboot .my-sm-n3 { | |
margin-bottom: -1rem !important; | |
} | |
.vistoboot .ml-sm-n3,.vistoboot .mx-sm-n3 { | |
margin-left: -1rem !important; | |
} | |
.vistoboot .m-sm-n4 { | |
margin: -1.5rem !important; | |
} | |
.vistoboot .mt-sm-n4,.vistoboot .my-sm-n4 { | |
margin-top: -1.5rem !important; | |
} | |
.vistoboot .mr-sm-n4,.vistoboot .mx-sm-n4 { | |
margin-right: -1.5rem !important; | |
} | |
.vistoboot .mb-sm-n4,.vistoboot .my-sm-n4 { | |
margin-bottom: -1.5rem !important; | |
} | |
.vistoboot .ml-sm-n4,.vistoboot .mx-sm-n4 { | |
margin-left: -1.5rem !important; | |
} | |
.vistoboot .m-sm-n5 { | |
margin: -3rem !important; | |
} | |
.vistoboot .mt-sm-n5,.vistoboot .my-sm-n5 { | |
margin-top: -3rem !important; | |
} | |
.vistoboot .mr-sm-n5,.vistoboot .mx-sm-n5 { | |
margin-right: -3rem !important; | |
} | |
.vistoboot .mb-sm-n5,.vistoboot .my-sm-n5 { | |
margin-bottom: -3rem !important; | |
} | |
.vistoboot .ml-sm-n5,.vistoboot .mx-sm-n5 { | |
margin-left: -3rem !important; | |
} | |
.vistoboot .m-sm-auto { | |
margin: auto !important; | |
} | |
.vistoboot .mt-sm-auto,.vistoboot .my-sm-auto { | |
margin-top: auto !important; | |
} | |
.vistoboot .mr-sm-auto,.vistoboot .mx-sm-auto { | |
margin-right: auto !important; | |
} | |
.vistoboot .mb-sm-auto,.vistoboot .my-sm-auto { | |
margin-bottom: auto !important; | |
} | |
.vistoboot .ml-sm-auto,.vistoboot .mx-sm-auto { | |
margin-left: auto !important; | |
} | |
} | |
@media (min-width: 768px) { | |
.vistoboot .m-md-0 { | |
margin: 0 !important; | |
} | |
.vistoboot .mt-md-0,.vistoboot .my-md-0 { | |
margin-top: 0 !important; | |
} | |
.vistoboot .mr-md-0,.vistoboot .mx-md-0 { | |
margin-right: 0 !important; | |
} | |
.vistoboot .mb-md-0,.vistoboot .my-md-0 { | |
margin-bottom: 0 !important; | |
} | |
.vistoboot .ml-md-0,.vistoboot .mx-md-0 { | |
margin-left: 0 !important; | |
} | |
.vistoboot .m-md-1 { | |
margin: 0.25rem !important; | |
} | |
.vistoboot .mt-md-1,.vistoboot .my-md-1 { | |
margin-top: 0.25rem !important; | |
} | |
.vistoboot .mr-md-1,.vistoboot .mx-md-1 { | |
margin-right: 0.25rem !important; | |
} | |
.vistoboot .mb-md-1,.vistoboot .my-md-1 { | |
margin-bottom: 0.25rem !important; | |
} | |
.vistoboot .ml-md-1,.vistoboot .mx-md-1 { | |
margin-left: 0.25rem !important; | |
} | |
.vistoboot .m-md-2 { | |
margin: 0.5rem !important; | |
} | |
.vistoboot .mt-md-2,.vistoboot .my-md-2 { | |
margin-top: 0.5rem !important; | |
} | |
.vistoboot .mr-md-2,.vistoboot .mx-md-2 { | |
margin-right: 0.5rem !important; | |
} | |
.vistoboot .mb-md-2,.vistoboot .my-md-2 { | |
margin-bottom: 0.5rem !important; | |
} | |
.vistoboot .ml-md-2,.vistoboot .mx-md-2 { | |
margin-left: 0.5rem !important; | |
} | |
.vistoboot .m-md-3 { | |
margin: 1rem !important; | |
} | |
.vistoboot .mt-md-3,.vistoboot .my-md-3 { | |
margin-top: 1rem !important; | |
} | |
.vistoboot .mr-md-3,.vistoboot .mx-md-3 { | |
margin-right: 1rem !important; | |
} | |
.vistoboot .mb-md-3,.vistoboot .my-md-3 { | |
margin-bottom: 1rem !important; | |
} | |
.vistoboot .ml-md-3,.vistoboot .mx-md-3 { | |
margin-left: 1rem !important; | |
} | |
.vistoboot .m-md-4 { | |
margin: 1.5rem !important; | |
} | |
.vistoboot .mt-md-4,.vistoboot .my-md-4 { | |
margin-top: 1.5rem !important; | |
} | |
.vistoboot .mr-md-4,.vistoboot .mx-md-4 { | |
margin-right: 1.5rem !important; | |
} | |
.vistoboot .mb-md-4,.vistoboot .my-md-4 { | |
margin-bottom: 1.5rem !important; | |
} | |
.vistoboot .ml-md-4,.vistoboot .mx-md-4 { | |
margin-left: 1.5rem !important; | |
} | |
.vistoboot .m-md-5 { | |
margin: 3rem !important; | |
} | |
.vistoboot .mt-md-5,.vistoboot .my-md-5 { | |
margin-top: 3rem !important; | |
} | |
.vistoboot .mr-md-5,.vistoboot .mx-md-5 { | |
margin-right: 3rem !important; | |
} | |
.vistoboot .mb-md-5,.vistoboot .my-md-5 { | |
margin-bottom: 3rem !important; | |
} | |
.vistoboot .ml-md-5,.vistoboot .mx-md-5 { | |
margin-left: 3rem !important; | |
} | |
.vistoboot .p-md-0 { | |
padding: 0 !important; | |
} | |
.vistoboot .pt-md-0,.vistoboot .py-md-0 { | |
padding-top: 0 !important; | |
} | |
.vistoboot .pr-md-0,.vistoboot .px-md-0 { | |
padding-right: 0 !important; | |
} | |
.vistoboot .pb-md-0,.vistoboot .py-md-0 { | |
padding-bottom: 0 !important; | |
} | |
.vistoboot .pl-md-0,.vistoboot .px-md-0 { | |
padding-left: 0 !important; | |
} | |
.vistoboot .p-md-1 { | |
padding: 0.25rem !important; | |
} | |
.vistoboot .pt-md-1,.vistoboot .py-md-1 { | |
padding-top: 0.25rem !important; | |
} | |
.vistoboot .pr-md-1,.vistoboot .px-md-1 { | |
padding-right: 0.25rem !important; | |
} | |
.vistoboot .pb-md-1,.vistoboot .py-md-1 { | |
padding-bottom: 0.25rem !important; | |
} | |
.vistoboot .pl-md-1,.vistoboot .px-md-1 { | |
padding-left: 0.25rem !important; | |
} | |
.vistoboot .p-md-2 { | |
padding: 0.5rem !important; | |
} | |
.vistoboot .pt-md-2,.vistoboot .py-md-2 { | |
padding-top: 0.5rem !important; | |
} | |
.vistoboot .pr-md-2,.vistoboot .px-md-2 { | |
padding-right: 0.5rem !important; | |
} | |
.vistoboot .pb-md-2,.vistoboot .py-md-2 { | |
padding-bottom: 0.5rem !important; | |
} | |
.vistoboot .pl-md-2,.vistoboot .px-md-2 { | |
padding-left: 0.5rem !important; | |
} | |
.vistoboot .p-md-3 { | |
padding: 1rem !important; | |
} | |
.vistoboot .pt-md-3,.vistoboot .py-md-3 { | |
padding-top: 1rem !important; | |
} | |
.vistoboot .pr-md-3,.vistoboot .px-md-3 { | |
padding-right: 1rem !important; | |
} | |
.vistoboot .pb-md-3,.vistoboot .py-md-3 { | |
padding-bottom: 1rem !important; | |
} | |
.vistoboot .pl-md-3,.vistoboot .px-md-3 { | |
padding-left: 1rem !important; | |
} | |
.vistoboot .p-md-4 { | |
padding: 1.5rem !important; | |
} | |
.vistoboot .pt-md-4,.vistoboot .py-md-4 { | |
padding-top: 1.5rem !important; | |
} | |
.vistoboot .pr-md-4,.vistoboot .px-md-4 { | |
padding-right: 1.5rem !important; | |
} | |
.vistoboot .pb-md-4,.vistoboot .py-md-4 { | |
padding-bottom: 1.5rem !important; | |
} | |
.vistoboot .pl-md-4,.vistoboot .px-md-4 { | |
padding-left: 1.5rem !important; | |
} | |
.vistoboot .p-md-5 { | |
padding: 3rem !important; | |
} | |
.vistoboot .pt-md-5,.vistoboot .py-md-5 { | |
padding-top: 3rem !important; | |
} | |
.vistoboot .pr-md-5,.vistoboot .px-md-5 { | |
padding-right: 3rem !important; | |
} | |
.vistoboot .pb-md-5,.vistoboot .py-md-5 { | |
padding-bottom: 3rem !important; | |
} | |
.vistoboot .pl-md-5,.vistoboot .px-md-5 { | |
padding-left: 3rem !important; | |
} | |
.vistoboot .m-md-n1 { | |
margin: -0.25rem !important; | |
} | |
.vistoboot .mt-md-n1,.vistoboot .my-md-n1 { | |
margin-top: -0.25rem !important; | |
} | |
.vistoboot .mr-md-n1,.vistoboot .mx-md-n1 { | |
margin-right: -0.25rem !important; | |
} | |
.vistoboot .mb-md-n1,.vistoboot .my-md-n1 { | |
margin-bottom: -0.25rem !important; | |
} | |
.vistoboot .ml-md-n1,.vistoboot .mx-md-n1 { | |
margin-left: -0.25rem !important; | |
} | |
.vistoboot .m-md-n2 { | |
margin: -0.5rem !important; | |
} | |
.vistoboot .mt-md-n2,.vistoboot .my-md-n2 { | |
margin-top: -0.5rem !important; | |
} | |
.vistoboot .mr-md-n2,.vistoboot .mx-md-n2 { | |
margin-right: -0.5rem !important; | |
} | |
.vistoboot .mb-md-n2,.vistoboot .my-md-n2 { | |
margin-bottom: -0.5rem !important; | |
} | |
.vistoboot .ml-md-n2,.vistoboot .mx-md-n2 { | |
margin-left: -0.5rem !important; | |
} | |
.vistoboot .m-md-n3 { | |
margin: -1rem !important; | |
} | |
.vistoboot .mt-md-n3,.vistoboot .my-md-n3 { | |
margin-top: -1rem !important; | |
} | |
.vistoboot .mr-md-n3,.vistoboot .mx-md-n3 { | |
margin-right: -1rem !important; | |
} | |
.vistoboot .mb-md-n3,.vistoboot .my-md-n3 { | |
margin-bottom: -1rem !important; | |
} | |
.vistoboot .ml-md-n3,.vistoboot .mx-md-n3 { | |
margin-left: -1rem !important; | |
} | |
.vistoboot .m-md-n4 { | |
margin: -1.5rem !important; | |
} | |
.vistoboot .mt-md-n4,.vistoboot .my-md-n4 { | |
margin-top: -1.5rem !important; | |
} | |
.vistoboot .mr-md-n4,.vistoboot .mx-md-n4 { | |
margin-right: -1.5rem !important; | |
} | |
.vistoboot .mb-md-n4,.vistoboot .my-md-n4 { | |
margin-bottom: -1.5rem !important; | |
} | |
.vistoboot .ml-md-n4,.vistoboot .mx-md-n4 { | |
margin-left: -1.5rem !important; | |
} | |
.vistoboot .m-md-n5 { | |
margin: -3rem !important; | |
} | |
.vistoboot .mt-md-n5,.vistoboot .my-md-n5 { | |
margin-top: -3rem !important; | |
} | |
.vistoboot .mr-md-n5,.vistoboot .mx-md-n5 { | |
margin-right: -3rem !important; | |
} | |
.vistoboot .mb-md-n5,.vistoboot .my-md-n5 { | |
margin-bottom: -3rem !important; | |
} | |
.vistoboot .ml-md-n5,.vistoboot .mx-md-n5 { | |
margin-left: -3rem !important; | |
} | |
.vistoboot .m-md-auto { | |
margin: auto !important; | |
} | |
.vistoboot .mt-md-auto,.vistoboot .my-md-auto { | |
margin-top: auto !important; | |
} | |
.vistoboot .mr-md-auto,.vistoboot .mx-md-auto { | |
margin-right: auto !important; | |
} | |
.vistoboot .mb-md-auto,.vistoboot .my-md-auto { | |
margin-bottom: auto !important; | |
} | |
.vistoboot .ml-md-auto,.vistoboot .mx-md-auto { | |
margin-left: auto !important; | |
} | |
} | |
@media (min-width: 992px) { | |
.vistoboot .m-lg-0 { | |
margin: 0 !important; | |
} | |
.vistoboot .mt-lg-0,.vistoboot .my-lg-0 { | |
margin-top: 0 !important; | |
} | |
.vistoboot .mr-lg-0,.vistoboot .mx-lg-0 { | |
margin-right: 0 !important; | |
} | |
.vistoboot .mb-lg-0,.vistoboot .my-lg-0 { | |
margin-bottom: 0 !important; | |
} | |
.vistoboot .ml-lg-0,.vistoboot .mx-lg-0 { | |
margin-left: 0 !important; | |
} | |
.vistoboot .m-lg-1 { | |
margin: 0.25rem !important; | |
} | |
.vistoboot .mt-lg-1,.vistoboot .my-lg-1 { | |
margin-top: 0.25rem !important; | |
} | |
.vistoboot .mr-lg-1,.vistoboot .mx-lg-1 { | |
margin-right: 0.25rem !important; | |
} | |
.vistoboot .mb-lg-1,.vistoboot .my-lg-1 { | |
margin-bottom: 0.25rem !important; | |
} | |
.vistoboot .ml-lg-1,.vistoboot .mx-lg-1 { | |
margin-left: 0.25rem !important; | |
} | |
.vistoboot .m-lg-2 { | |
margin: 0.5rem !important; | |
} | |
.vistoboot .mt-lg-2,.vistoboot .my-lg-2 { | |
margin-top: 0.5rem !important; | |
} | |
.vistoboot .mr-lg-2,.vistoboot .mx-lg-2 { | |
margin-right: 0.5rem !important; | |
} | |
.vistoboot .mb-lg-2,.vistoboot .my-lg-2 { | |
margin-bottom: 0.5rem !important; | |
} | |
.vistoboot .ml-lg-2,.vistoboot .mx-lg-2 { | |
margin-left: 0.5rem !important; | |
} | |
.vistoboot .m-lg-3 { | |
margin: 1rem !important; | |
} | |
.vistoboot .mt-lg-3,.vistoboot .my-lg-3 { | |
margin-top: 1rem !important; | |
} | |
.vistoboot .mr-lg-3,.vistoboot .mx-lg-3 { | |
margin-right: 1rem !important; | |
} | |
.vistoboot .mb-lg-3,.vistoboot .my-lg-3 { | |
margin-bottom: 1rem !important; | |
} | |
.vistoboot .ml-lg-3,.vistoboot .mx-lg-3 { | |
margin-left: 1rem !important; | |
} | |
.vistoboot .m-lg-4 { | |
margin: 1.5rem !important; | |
} | |
.vistoboot .mt-lg-4,.vistoboot .my-lg-4 { | |
margin-top: 1.5rem !important; | |
} | |
.vistoboot .mr-lg-4,.vistoboot .mx-lg-4 { | |
margin-right: 1.5rem !important; | |
} | |
.vistoboot .mb-lg-4,.vistoboot .my-lg-4 { | |
margin-bottom: 1.5rem !important; | |
} | |
.vistoboot .ml-lg-4,.vistoboot .mx-lg-4 { | |
margin-left: 1.5rem !important; | |
} | |
.vistoboot .m-lg-5 { | |
margin: 3rem !important; | |
} | |
.vistoboot .mt-lg-5,.vistoboot .my-lg-5 { | |
margin-top: 3rem !important; | |
} | |
.vistoboot .mr-lg-5,.vistoboot .mx-lg-5 { | |
margin-right: 3rem !important; | |
} | |
.vistoboot .mb-lg-5,.vistoboot .my-lg-5 { | |
margin-bottom: 3rem !important; | |
} | |
.vistoboot .ml-lg-5,.vistoboot .mx-lg-5 { | |
margin-left: 3rem !important; | |
} | |
.vistoboot .p-lg-0 { | |
padding: 0 !important; | |
} | |
.vistoboot .pt-lg-0,.vistoboot .py-lg-0 { | |
padding-top: 0 !important; | |
} | |
.vistoboot .pr-lg-0,.vistoboot .px-lg-0 { | |
padding-right: 0 !important; | |
} | |
.vistoboot .pb-lg-0,.vistoboot .py-lg-0 { | |
padding-bottom: 0 !important; | |
} | |
.vistoboot .pl-lg-0,.vistoboot .px-lg-0 { | |
padding-left: 0 !important; | |
} | |
.vistoboot .p-lg-1 { | |
padding: 0.25rem !important; | |
} | |
.vistoboot .pt-lg-1,.vistoboot .py-lg-1 { | |
padding-top: 0.25rem !important; | |
} | |
.vistoboot .pr-lg-1,.vistoboot .px-lg-1 { | |
padding-right: 0.25rem !important; | |
} | |
.vistoboot .pb-lg-1,.vistoboot .py-lg-1 { | |
padding-bottom: 0.25rem !important; | |
} | |
.vistoboot .pl-lg-1,.vistoboot .px-lg-1 { | |
padding-left: 0.25rem !important; | |
} | |
.vistoboot .p-lg-2 { | |
padding: 0.5rem !important; | |
} | |
.vistoboot .pt-lg-2,.vistoboot .py-lg-2 { | |
padding-top: 0.5rem !important; | |
} | |
.vistoboot .pr-lg-2,.vistoboot .px-lg-2 { | |
padding-right: 0.5rem !important; | |
} | |
.vistoboot .pb-lg-2,.vistoboot .py-lg-2 { | |
padding-bottom: 0.5rem !important; | |
} | |
.vistoboot .pl-lg-2,.vistoboot .px-lg-2 { | |
padding-left: 0.5rem !important; | |
} | |
.vistoboot .p-lg-3 { | |
padding: 1rem !important; | |
} | |
.vistoboot .pt-lg-3,.vistoboot .py-lg-3 { | |
padding-top: 1rem !important; | |
} | |
.vistoboot .pr-lg-3,.vistoboot .px-lg-3 { | |
padding-right: 1rem !important; | |
} | |
.vistoboot .pb-lg-3,.vistoboot .py-lg-3 { | |
padding-bottom: 1rem !important; | |
} | |
.vistoboot .pl-lg-3,.vistoboot .px-lg-3 { | |
padding-left: 1rem !important; | |
} | |
.vistoboot .p-lg-4 { | |
padding: 1.5rem !important; | |
} | |
.vistoboot .pt-lg-4,.vistoboot .py-lg-4 { | |
padding-top: 1.5rem !important; | |
} | |
.vistoboot .pr-lg-4,.vistoboot .px-lg-4 { | |
padding-right: 1.5rem !important; | |
} | |
.vistoboot .pb-lg-4,.vistoboot .py-lg-4 { | |
padding-bottom: 1.5rem !important; | |
} | |
.vistoboot .pl-lg-4,.vistoboot .px-lg-4 { | |
padding-left: 1.5rem !important; | |
} | |
.vistoboot .p-lg-5 { | |
padding: 3rem !important; | |
} | |
.vistoboot .pt-lg-5,.vistoboot .py-lg-5 { | |
padding-top: 3rem !important; | |
} | |
.vistoboot .pr-lg-5,.vistoboot .px-lg-5 { | |
padding-right: 3rem !important; | |
} | |
.vistoboot .pb-lg-5,.vistoboot .py-lg-5 { | |
padding-bottom: 3rem !important; | |
} | |
.vistoboot .pl-lg-5,.vistoboot .px-lg-5 { | |
padding-left: 3rem !important; | |
} | |
.vistoboot .m-lg-n1 { | |
margin: -0.25rem !important; | |
} | |
.vistoboot .mt-lg-n1,.vistoboot .my-lg-n1 { | |
margin-top: -0.25rem !important; | |
} | |
.vistoboot .mr-lg-n1,.vistoboot .mx-lg-n1 { | |
margin-right: -0.25rem !important; | |
} | |
.vistoboot .mb-lg-n1,.vistoboot .my-lg-n1 { | |
margin-bottom: -0.25rem !important; | |
} | |
.vistoboot .ml-lg-n1,.vistoboot .mx-lg-n1 { | |
margin-left: -0.25rem !important; | |
} | |
.vistoboot .m-lg-n2 { | |
margin: -0.5rem !important; | |
} | |
.vistoboot .mt-lg-n2,.vistoboot .my-lg-n2 { | |
margin-top: -0.5rem !important; | |
} | |
.vistoboot .mr-lg-n2,.vistoboot .mx-lg-n2 { | |
margin-right: -0.5rem !important; | |
} | |
.vistoboot .mb-lg-n2,.vistoboot .my-lg-n2 { | |
margin-bottom: -0.5rem !important; | |
} | |
.vistoboot .ml-lg-n2,.vistoboot .mx-lg-n2 { | |
margin-left: -0.5rem !important; | |
} | |
.vistoboot .m-lg-n3 { | |
margin: -1rem !important; | |
} | |
.vistoboot .mt-lg-n3,.vistoboot .my-lg-n3 { | |
margin-top: -1rem !important; | |
} | |
.vistoboot .mr-lg-n3,.vistoboot .mx-lg-n3 { | |
margin-right: -1rem !important; | |
} | |
.vistoboot .mb-lg-n3,.vistoboot .my-lg-n3 { | |
margin-bottom: -1rem !important; | |
} | |
.vistoboot .ml-lg-n3,.vistoboot .mx-lg-n3 { | |
margin-left: -1rem !important; | |
} | |
.vistoboot .m-lg-n4 { | |
margin: -1.5rem !important; | |
} | |
.vistoboot .mt-lg-n4,.vistoboot .my-lg-n4 { | |
margin-top: -1.5rem !important; | |
} | |
.vistoboot .mr-lg-n4,.vistoboot .mx-lg-n4 { | |
margin-right: -1.5rem !important; | |
} | |
.vistoboot .mb-lg-n4,.vistoboot .my-lg-n4 { | |
margin-bottom: -1.5rem !important; | |
} | |
.vistoboot .ml-lg-n4,.vistoboot .mx-lg-n4 { | |
margin-left: -1.5rem !important; | |
} | |
.vistoboot .m-lg-n5 { | |
margin: -3rem !important; | |
} | |
.vistoboot .mt-lg-n5,.vistoboot .my-lg-n5 { | |
margin-top: -3rem !important; | |
} | |
.vistoboot .mr-lg-n5,.vistoboot .mx-lg-n5 { | |
margin-right: -3rem !important; | |
} | |
.vistoboot .mb-lg-n5,.vistoboot .my-lg-n5 { | |
margin-bottom: -3rem !important; | |
} | |
.vistoboot .ml-lg-n5,.vistoboot .mx-lg-n5 { | |
margin-left: -3rem !important; | |
} | |
.vistoboot .m-lg-auto { | |
margin: auto !important; | |
} | |
.vistoboot .mt-lg-auto,.vistoboot .my-lg-auto { | |
margin-top: auto !important; | |
} | |
.vistoboot .mr-lg-auto,.vistoboot .mx-lg-auto { | |
margin-right: auto !important; | |
} | |
.vistoboot .mb-lg-auto,.vistoboot .my-lg-auto { | |
margin-bottom: auto !important; | |
} | |
.vistoboot .ml-lg-auto,.vistoboot .mx-lg-auto { | |
margin-left: auto !important; | |
} | |
} | |
@media (min-width: 1200px) { | |
.vistoboot .m-xl-0 { | |
margin: 0 !important; | |
} | |
.vistoboot .mt-xl-0,.vistoboot .my-xl-0 { | |
margin-top: 0 !important; | |
} | |
.vistoboot .mr-xl-0,.vistoboot .mx-xl-0 { | |
margin-right: 0 !important; | |
} | |
.vistoboot .mb-xl-0,.vistoboot .my-xl-0 { | |
margin-bottom: 0 !important; | |
} | |
.vistoboot .ml-xl-0,.vistoboot .mx-xl-0 { | |
margin-left: 0 !important; | |
} | |
.vistoboot .m-xl-1 { | |
margin: 0.25rem !important; | |
} | |
.vistoboot .mt-xl-1,.vistoboot .my-xl-1 { | |
margin-top: 0.25rem !important; | |
} | |
.vistoboot .mr-xl-1,.vistoboot .mx-xl-1 { | |
margin-right: 0.25rem !important; | |
} | |
.vistoboot .mb-xl-1,.vistoboot .my-xl-1 { | |
margin-bottom: 0.25rem !important; | |
} | |
.vistoboot .ml-xl-1,.vistoboot .mx-xl-1 { | |
margin-left: 0.25rem !important; | |
} | |
.vistoboot .m-xl-2 { | |
margin: 0.5rem !important; | |
} | |
.vistoboot .mt-xl-2,.vistoboot .my-xl-2 { | |
margin-top: 0.5rem !important; | |
} | |
.vistoboot .mr-xl-2,.vistoboot .mx-xl-2 { | |
margin-right: 0.5rem !important; | |
} | |
.vistoboot .mb-xl-2,.vistoboot .my-xl-2 { | |
margin-bottom: 0.5rem !important; | |
} | |
.vistoboot .ml-xl-2,.vistoboot .mx-xl-2 { | |
margin-left: 0.5rem !important; | |
} | |
.vistoboot .m-xl-3 { | |
margin: 1rem !important; | |
} | |
.vistoboot .mt-xl-3,.vistoboot .my-xl-3 { | |
margin-top: 1rem !important; | |
} | |
.vistoboot .mr-xl-3,.vistoboot .mx-xl-3 { | |
margin-right: 1rem !important; | |
} | |
.vistoboot .mb-xl-3,.vistoboot .my-xl-3 { | |
margin-bottom: 1rem !important; | |
} | |
.vistoboot .ml-xl-3,.vistoboot .mx-xl-3 { | |
margin-left: 1rem !important; | |
} | |
.vistoboot .m-xl-4 { | |
margin: 1.5rem !important; | |
} | |
.vistoboot .mt-xl-4,.vistoboot .my-xl-4 { | |
margin-top: 1.5rem !important; | |
} | |
.vistoboot .mr-xl-4,.vistoboot .mx-xl-4 { | |
margin-right: 1.5rem !important; | |
} | |
.vistoboot .mb-xl-4,.vistoboot .my-xl-4 { | |
margin-bottom: 1.5rem !important; | |
} | |
.vistoboot .ml-xl-4,.vistoboot .mx-xl-4 { | |
margin-left: 1.5rem !important; | |
} | |
.vistoboot .m-xl-5 { | |
margin: 3rem !important; | |
} | |
.vistoboot .mt-xl-5,.vistoboot .my-xl-5 { | |
margin-top: 3rem !important; | |
} | |
.vistoboot .mr-xl-5,.vistoboot .mx-xl-5 { | |
margin-right: 3rem !important; | |
} | |
.vistoboot .mb-xl-5,.vistoboot .my-xl-5 { | |
margin-bottom: 3rem !important; | |
} | |
.vistoboot .ml-xl-5,.vistoboot .mx-xl-5 { | |
margin-left: 3rem !important; | |
} | |
.vistoboot .p-xl-0 { | |
padding: 0 !important; | |
} | |
.vistoboot .pt-xl-0,.vistoboot .py-xl-0 { | |
padding-top: 0 !important; | |
} | |
.vistoboot .pr-xl-0,.vistoboot .px-xl-0 { | |
padding-right: 0 !important; | |
} | |
.vistoboot .pb-xl-0,.vistoboot .py-xl-0 { | |
padding-bottom: 0 !important; | |
} | |
.vistoboot .pl-xl-0,.vistoboot .px-xl-0 { | |
padding-left: 0 !important; | |
} | |
.vistoboot .p-xl-1 { | |
padding: 0.25rem !important; | |
} | |
.vistoboot .pt-xl-1,.vistoboot .py-xl-1 { | |
padding-top: 0.25rem !important; | |
} | |
.vistoboot .pr-xl-1,.vistoboot .px-xl-1 { | |
padding-right: 0.25rem !important; | |
} | |
.vistoboot .pb-xl-1,.vistoboot .py-xl-1 { | |
padding-bottom: 0.25rem !important; | |
} | |
.vistoboot .pl-xl-1,.vistoboot .px-xl-1 { | |
padding-left: 0.25rem !important; | |
} | |
.vistoboot .p-xl-2 { | |
padding: 0.5rem !important; | |
} | |
.vistoboot .pt-xl-2,.vistoboot .py-xl-2 { | |
padding-top: 0.5rem !important; | |
} | |
.vistoboot .pr-xl-2,.vistoboot .px-xl-2 { | |
padding-right: 0.5rem !important; | |
} | |
.vistoboot .pb-xl-2,.vistoboot .py-xl-2 { | |
padding-bottom: 0.5rem !important; | |
} | |
.vistoboot .pl-xl-2,.vistoboot .px-xl-2 { | |
padding-left: 0.5rem !important; | |
} | |
.vistoboot .p-xl-3 { | |
padding: 1rem !important; | |
} | |
.vistoboot .pt-xl-3,.vistoboot .py-xl-3 { | |
padding-top: 1rem !important; | |
} | |
.vistoboot .pr-xl-3,.vistoboot .px-xl-3 { | |
padding-right: 1rem !important; | |
} | |
.vistoboot .pb-xl-3,.vistoboot .py-xl-3 { | |
padding-bottom: 1rem !important; | |
} | |
.vistoboot .pl-xl-3,.vistoboot .px-xl-3 { | |
padding-left: 1rem !important; | |
} | |
.vistoboot .p-xl-4 { | |
padding: 1.5rem !important; | |
} | |
.vistoboot .pt-xl-4,.vistoboot .py-xl-4 { | |
padding-top: 1.5rem !important; | |
} | |
.vistoboot .pr-xl-4,.vistoboot .px-xl-4 { | |
padding-right: 1.5rem !important; | |
} | |
.vistoboot .pb-xl-4,.vistoboot .py-xl-4 { | |
padding-bottom: 1.5rem !important; | |
} | |
.vistoboot .pl-xl-4,.vistoboot .px-xl-4 { | |
padding-left: 1.5rem !important; | |
} | |
.vistoboot .p-xl-5 { | |
padding: 3rem !important; | |
} | |
.vistoboot .pt-xl-5,.vistoboot .py-xl-5 { | |
padding-top: 3rem !important; | |
} | |
.vistoboot .pr-xl-5,.vistoboot .px-xl-5 { | |
padding-right: 3rem !important; | |
} | |
.vistoboot .pb-xl-5,.vistoboot .py-xl-5 { | |
padding-bottom: 3rem !important; | |
} | |
.vistoboot .pl-xl-5,.vistoboot .px-xl-5 { | |
padding-left: 3rem !important; | |
} | |
.vistoboot .m-xl-n1 { | |
margin: -0.25rem !important; | |
} | |
.vistoboot .mt-xl-n1,.vistoboot .my-xl-n1 { | |
margin-top: -0.25rem !important; | |
} | |
.vistoboot .mr-xl-n1,.vistoboot .mx-xl-n1 { | |
margin-right: -0.25rem !important; | |
} | |
.vistoboot .mb-xl-n1,.vistoboot .my-xl-n1 { | |
margin-bottom: -0.25rem !important; | |
} | |
.vistoboot .ml-xl-n1,.vistoboot .mx-xl-n1 { | |
margin-left: -0.25rem !important; | |
} | |
.vistoboot .m-xl-n2 { | |
margin: -0.5rem !important; | |
} | |
.vistoboot .mt-xl-n2,.vistoboot .my-xl-n2 { | |
margin-top: -0.5rem !important; | |
} | |
.vistoboot .mr-xl-n2,.vistoboot .mx-xl-n2 { | |
margin-right: -0.5rem !important; | |
} | |
.vistoboot .mb-xl-n2,.vistoboot .my-xl-n2 { | |
margin-bottom: -0.5rem !important; | |
} | |
.vistoboot .ml-xl-n2,.vistoboot .mx-xl-n2 { | |
margin-left: -0.5rem !important; | |
} | |
.vistoboot .m-xl-n3 { | |
margin: -1rem !important; | |
} | |
.vistoboot .mt-xl-n3,.vistoboot .my-xl-n3 { | |
margin-top: -1rem !important; | |
} | |
.vistoboot .mr-xl-n3,.vistoboot .mx-xl-n3 { | |
margin-right: -1rem !important; | |
} | |
.vistoboot .mb-xl-n3,.vistoboot .my-xl-n3 { | |
margin-bottom: -1rem !important; | |
} | |
.vistoboot .ml-xl-n3,.vistoboot .mx-xl-n3 { | |
margin-left: -1rem !important; | |
} | |
.vistoboot .m-xl-n4 { | |
margin: -1.5rem !important; | |
} | |
.vistoboot .mt-xl-n4,.vistoboot .my-xl-n4 { | |
margin-top: -1.5rem !important; | |
} | |
.vistoboot .mr-xl-n4,.vistoboot .mx-xl-n4 { | |
margin-right: -1.5rem !important; | |
} | |
.vistoboot .mb-xl-n4,.vistoboot .my-xl-n4 { | |
margin-bottom: -1.5rem !important; | |
} | |
.vistoboot .ml-xl-n4,.vistoboot .mx-xl-n4 { | |
margin-left: -1.5rem !important; | |
} | |
.vistoboot .m-xl-n5 { | |
margin: -3rem !important; | |
} | |
.vistoboot .mt-xl-n5,.vistoboot .my-xl-n5 { | |
margin-top: -3rem !important; | |
} | |
.vistoboot .mr-xl-n5,.vistoboot .mx-xl-n5 { | |
margin-right: -3rem !important; | |
} | |
.vistoboot .mb-xl-n5,.vistoboot .my-xl-n5 { | |
margin-bottom: -3rem !important; | |
} | |
.vistoboot .ml-xl-n5,.vistoboot .mx-xl-n5 { | |
margin-left: -3rem !important; | |
} | |
.vistoboot .m-xl-auto { | |
margin: auto !important; | |
} | |
.vistoboot .mt-xl-auto,.vistoboot .my-xl-auto { | |
margin-top: auto !important; | |
} | |
.vistoboot .mr-xl-auto,.vistoboot .mx-xl-auto { | |
margin-right: auto !important; | |
} | |
.vistoboot .mb-xl-auto,.vistoboot .my-xl-auto { | |
margin-bottom: auto !important; | |
} | |
.vistoboot .ml-xl-auto,.vistoboot .mx-xl-auto { | |
margin-left: auto !important; | |
} | |
} | |
.vistoboot .text-monospace { | |
font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; | |
} | |
.vistoboot .text-justify { | |
text-align: justify !important; | |
} | |
.vistoboot .text-wrap { | |
white-space: normal !important; | |
} | |
.vistoboot .text-nowrap { | |
white-space: nowrap !important; | |
} | |
.vistoboot .text-truncate { | |
overflow: hidden; | |
text-overflow: ellipsis; | |
white-space: nowrap; | |
} | |
.vistoboot .text-left { | |
text-align: left !important; | |
} | |
.vistoboot .text-right { | |
text-align: right !important; | |
} | |
.vistoboot .text-center { | |
text-align: center !important; | |
} | |
@media (min-width: 576px) { | |
.vistoboot .text-sm-left { | |
text-align: left !important; | |
} | |
.vistoboot .text-sm-right { | |
text-align: right !important; | |
} | |
.vistoboot .text-sm-center { | |
text-align: center !important; | |
} | |
} | |
@media (min-width: 768px) { | |
.vistoboot .text-md-left { | |
text-align: left !important; | |
} | |
.vistoboot .text-md-right { | |
text-align: right !important; | |
} | |
.vistoboot .text-md-center { | |
text-align: center !important; | |
} | |
} | |
@media (min-width: 992px) { | |
.vistoboot .text-lg-left { | |
text-align: left !important; | |
} | |
.vistoboot .text-lg-right { | |
text-align: right !important; | |
} | |
.vistoboot .text-lg-center { | |
text-align: center !important; | |
} | |
} | |
@media (min-width: 1200px) { | |
.vistoboot .text-xl-left { | |
text-align: left !important; | |
} | |
.vistoboot .text-xl-right { | |
text-align: right !important; | |
} | |
.vistoboot .text-xl-center { | |
text-align: center !important; | |
} | |
} | |
.vistoboot .text-lowercase { | |
text-transform: lowercase !important; | |
} | |
.vistoboot .text-uppercase { | |
text-transform: uppercase !important; | |
} | |
.vistoboot .text-capitalize { | |
text-transform: capitalize !important; | |
} | |
.vistoboot .font-weight-light { | |
font-weight: 300 !important; | |
} | |
.vistoboot .font-weight-lighter { | |
font-weight: lighter !important; | |
} | |
.vistoboot .font-weight-normal { | |
font-weight: 400 !important; | |
} | |
.vistoboot .font-weight-bold { | |
font-weight: 700 !important; | |
} | |
.vistoboot .font-weight-bolder { | |
font-weight: bolder !important; | |
} | |
.vistoboot .font-italic { | |
font-style: italic !important; | |
} | |
.vistoboot .text-white { | |
color: #fff !important; | |
} | |
.vistoboot .text-primary { | |
color: #007bff !important; | |
} | |
.vistoboot a.text-primary:hover, .vistoboot a.text-primary:focus { | |
color: #0056b3 !important; | |
} | |
.vistoboot .text-secondary { | |
color: #6c757d !important; | |
} | |
.vistoboot a.text-secondary:hover, .vistoboot a.text-secondary:focus { | |
color: #494f54 !important; | |
} | |
.vistoboot .text-success { | |
color: #28a745 !important; | |
} | |
.vistoboot a.text-success:hover, .vistoboot a.text-success:focus { | |
color: #19692c !important; | |
} | |
.vistoboot .text-info { | |
color: #17a2b8 !important; | |
} | |
.vistoboot a.text-info:hover, .vistoboot a.text-info:focus { | |
color: #0f6674 !important; | |
} | |
.vistoboot .text-warning { | |
color: #ffc107 !important; | |
} | |
.vistoboot a.text-warning:hover, .vistoboot a.text-warning:focus { | |
color: #ba8b00 !important; | |
} | |
.vistoboot .text-danger { | |
color: #dc3545 !important; | |
} | |
.vistoboot a.text-danger:hover, .vistoboot a.text-danger:focus { | |
color: #a71d2a !important; | |
} | |
.vistoboot .text-light { | |
color: #f8f9fa !important; | |
} | |
.vistoboot a.text-light:hover, .vistoboot a.text-light:focus { | |
color: #cbd3da !important; | |
} | |
.vistoboot .text-dark { | |
color: #343a40 !important; | |
} | |
.vistoboot a.text-dark:hover, .vistoboot a.text-dark:focus { | |
color: #121416 !important; | |
} | |
.vistoboot .text-body { | |
color: #212529 !important; | |
} | |
.vistoboot .text-muted { | |
color: #6c757d !important; | |
} | |
.vistoboot .text-black-50 { | |
color: rgba(0, 0, 0, 0.5) !important; | |
} | |
.vistoboot .text-white-50 { | |
color: rgba(255, 255, 255, 0.5) !important; | |
} | |
.vistoboot .text-hide { | |
font: 0/0 a; | |
color: transparent; | |
text-shadow: none; | |
background-color: transparent; | |
border: 0; | |
} | |
.vistoboot .text-decoration-none { | |
text-decoration: none !important; | |
} | |
.vistoboot .text-break { | |
word-break: break-word !important; | |
overflow-wrap: break-word !important; | |
} | |
.vistoboot .text-reset { | |
color: inherit !important; | |
} | |
.vistoboot .w-25 { | |
width: 25% !important; | |
} | |
.vistoboot .w-50 { | |
width: 50% !important; | |
} | |
.vistoboot .w-75 { | |
width: 75% !important; | |
} | |
.vistoboot .w-100 { | |
width: 100% !important; | |
} | |
.vistoboot .w-auto { | |
width: auto !important; | |
} | |
.vistoboot .h-25 { | |
height: 25% !important; | |
} | |
.vistoboot .h-50 { | |
height: 50% !important; | |
} | |
.vistoboot .h-75 { | |
height: 75% !important; | |
} | |
.vistoboot .h-100 { | |
height: 100% !important; | |
} | |
.vistoboot .h-auto { | |
height: auto !important; | |
} | |
.vistoboot .mw-100 { | |
max-width: 100% !important; | |
} | |
.vistoboot .mh-100 { | |
max-height: 100% !important; | |
} | |
.vistoboot .min-vw-100 { | |
min-width: 100vw !important; | |
} | |
.vistoboot .min-vh-100 { | |
min-height: 100vh !important; | |
} | |
.vistoboot .vw-100 { | |
width: 100vw !important; | |
} | |
.vistoboot .vh-100 { | |
height: 100vh !important; | |
} | |
.vistoboot .position-static { | |
position: static !important; | |
} | |
.vistoboot .position-relative { | |
position: relative !important; | |
} | |
.vistoboot .position-absolute { | |
position: absolute !important; | |
} | |
.vistoboot .position-fixed { | |
position: fixed !important; | |
} | |
.vistoboot .position-sticky { | |
position: -webkit-sticky !important; | |
position: sticky !important; | |
} | |
.vistoboot .fixed-top { | |
position: fixed; | |
top: 0; | |
right: 0; | |
left: 0; | |
z-index: 1030; | |
} | |
.vistoboot .fixed-bottom { | |
position: fixed; | |
right: 0; | |
bottom: 0; | |
left: 0; | |
z-index: 1030; | |
} | |
@supports ((position: -webkit-sticky) or (position: sticky)) { | |
.vistoboot .sticky-top { | |
position: -webkit-sticky; | |
position: sticky; | |
top: 0; | |
z-index: 1020; | |
} | |
} | |
.vistoboot .visible { | |
visibility: visible !important; | |
} | |
.vistoboot .invisible { | |
visibility: hidden !important; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment