<div class="is-grid has-no-col-gap has-no-row-gap">
<div class="is-col-6 is-col-3-lg is-centered atlanta">
<img src="https://dummyimage.com/50x50/000/fff">
</div>
<div class="is-col-6 is-col-2-lg is-centered austin">
<img src="https://dummyimage.com/50x50/000/fff">
</div>
<div class="is-col-6 is-col-5-lg is-row-2-lg is-centered cincinnati">
<img src="https://dummyimage.com/50x50/000/fff">
</div>
<div class="is-col-6 is-col-2-lg is-centered chicago">
<img src="https://dummyimage.com/50x50/000/fff">
</div>
<div class="is-col-6 is-col-2-lg is-centered colorado">
<img src="https://dummyimage.com/50x50/000/fff">
</div>
<div class="is-col-6 is-col-3-lg is-row-3-lg is-centered columbus">
<img src="https://dummyimage.com/50x50/000/fff">
</div>
<div class="is-col-6 is-col-1-lg is-centered lafc">
<img src="https://dummyimage.com/50x50/000/fff">
</div>
<div class="is-col-6 is-col-1-lg is-row-2-lg is-centered nashville">
<img src="https://dummyimage.com/50x50/000/fff">
</div>
<div class="is-col-6 is-col-2-lg is-row-2-lg is-centered dc">
<img src="https://dummyimage.com/50x50/000/fff">
</div>
<div class="is-col-6 is-col-2-lg is-centered la-galaxy">
<img src="https://dummyimage.com/50x50/000/fff">
</div>
<div class="is-col-6 is-col-4-lg is-centered dallas">
<img src="https://dummyimage.com/50x50/000/fff">
</div>
<div class="is-col-6 is-col-2-lg is-centered houston">
<img src="https://dummyimage.com/50x50/000/fff">
</div>
<div class="is-col-6 is-col-5-lg is-row-2-lg is-centered seattle">
<img src="https://dummyimage.com/50x50/000/fff">
</div>
<div class="is-col-6 is-col-3-lg is-row-2-lg is-centered miami">
<img src="https://dummyimage.com/50x50/000/fff">
</div>
<div class="is-col-6 is-col-4-lg is-centered minnesota">
<img src="https://dummyimage.com/50x50/000/fff">
</div>
<div class="is-col-6 is-col-3-lg is-centered montreal">
<img src="https://dummyimage.com/50x50/000/fff">
</div>
<div class="is-col-6 is-col-1-lg is-centered new-england">
<img src="https://dummyimage.com/50x50/000/fff">
</div>
<div class="is-col-6 is-col-4-lg is-centered nyfc">
<img src="https://dummyimage.com/50x50/000/fff">
</div>
<div class="is-col-6 is-col-1-lg is-centered ny-redbulls">
<img src="https://dummyimage.com/50x50/000/fff">
</div>
<div class="is-col-6 is-col-2-lg is-row-2-lg is-centered orlando">
<img src="https://dummyimage.com/50x50/000/fff">
</div>
<div class="is-col-6 is-col-3-lg is-col-3-lg is-centered portland">
<img src="https://dummyimage.com/50x50/000/fff">
</div>
<div class="is-col-6 is-col-3-lg is-centered philadelphia">
<img src="https://dummyimage.com/50x50/000/fff">
</div>
<div class="is-col-6 is-col-3-lg is-row-2-lg is-centered salt-lake">
<img src="https://dummyimage.com/50x50/000/fff">
</div>
<div class="is-col-6 is-col-1-lg is-centered san-jose">
<img src="https://dummyimage.com/50x50/000/fff">
</div>
<div class="is-col-6 is-col-4-lg is-centered sporting-kc">
<img src="https://dummyimage.com/50x50/000/fff">
</div>
<div class="is-col-6 is-col-2-lg is-centered vancouver">
<img src="https://dummyimage.com/50x50/000/fff">
</div>
<div class="is-col-6 is-col-1-lg is-centered toronto">
<img src="https://dummyimage.com/50x50/000/fff">
</div>
</div>
.is-grid,
.is-grid-inline {
display: grid;
display: grid;
grid-rows: auto;
grid-template-rows: auto;
grid-columns: (1fr) [12];
grid-template-columns: repeat(12, 1fr);
direction: ltr;
grid-column-gap: var(--col-gap);
grid-row-gap: var(--row-gap);
}
.is-grid > *,
.is-grid-inline > * {
grid-column-span: 12;
grid-column: span 12;
}
@media screen and (min-width: 992px) {
.is-grid > *,
.is-grid-inline > * {
grid-column-span: 1;
grid-column: span 1;
}
}
.is-grid.is-dense,
.is-grid-inline.is-dense {
grid-auto-flow: dense;
grid-rows: auto;
grid-template-rows: auto;
grid-columns: (1fr) [12];
grid-template-columns: repeat(12, 1fr);
}
.is-grid.has-wrapped-row,
.is-grid-inline.has-wrapped-row {
grid-auto-flow: row;
grid-rows: auto;
grid-template-rows: auto;
grid-columns: (1fr) [12];
grid-template-columns: repeat(12, 1fr);
}
.is-grid.has-wrapped-row.is-dense,
.is-grid-inline.has-wrapped-row.is-dense {
grid-auto-flow: row dense;
grid-rows: auto;
grid-template-rows: auto;
grid-columns: (1fr) [12];
grid-template-columns: repeat(12, 1fr);
}
.is-grid.has-wrapped-col,
.is-grid-inline.has-wrapped-col {
grid-auto-flow: column;
}
.is-grid.has-wrapped-col.is-dense,
.is-grid-inline.has-wrapped-col.is-dense {
grid-auto-flow: column dense;
grid-rows: auto;
grid-template-rows: auto;
grid-columns: (1fr) [12];
grid-template-columns: repeat(12, 1fr);
}
.is-grid-inline {
display: inline-grid !important;
display: inline-grid !important;
}
.has-row-1 {
grid-rows: (1fr) [1];
grid-template-rows: repeat(1, 1fr);
}
.has-row-1 > * {
grid-column-span: 1;
grid-column: span 1;
}
@media screen and (min-width: 992px) {
.has-row-1 > * {
grid-column-span: 1;
grid-column: span 1;
}
}
.has-row-1-xs > * {
grid-column-span: 1;
grid-column: span 1;
}
@media screen and (min-width: 992px) {
.has-row-1-xs > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 575.5px) {
.has-row-1-xs {
grid-rows: (1fr) [1] !important;
grid-template-rows: repeat(1, 1fr) !important;
}
}
.has-row-1-sm > * {
grid-column-span: 1;
grid-column: span 1;
}
@media screen and (min-width: 992px) {
.has-row-1-sm > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 576px) {
.has-row-1-sm {
grid-rows: (1fr) [1] !important;
grid-template-rows: repeat(1, 1fr) !important;
}
}
.has-row-1-md > * {
grid-column-span: 1;
grid-column: span 1;
}
@media screen and (min-width: 992px) {
.has-row-1-md > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 768px) {
.has-row-1-md {
grid-rows: (1fr) [1] !important;
grid-template-rows: repeat(1, 1fr) !important;
}
}
.has-row-1-lg > * {
grid-column-span: 1;
grid-column: span 1;
}
@media screen and (min-width: 992px) {
.has-row-1-lg > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 992px) {
.has-row-1-lg {
grid-rows: (1fr) [1] !important;
grid-template-rows: repeat(1, 1fr) !important;
}
}
.has-row-1-xl > * {
grid-column-span: 1;
grid-column: span 1;
}
@media screen and (min-width: 992px) {
.has-row-1-xl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1200px) {
.has-row-1-xl {
grid-rows: (1fr) [1] !important;
grid-template-rows: repeat(1, 1fr) !important;
}
}
.has-row-1-xxl > * {
grid-column-span: 1;
grid-column: span 1;
}
@media screen and (min-width: 992px) {
.has-row-1-xxl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1400px) {
.has-row-1-xxl {
grid-rows: (1fr) [1] !important;
grid-template-rows: repeat(1, 1fr) !important;
}
}
.has-row-2 {
grid-rows: (1fr) [2];
grid-template-rows: repeat(2, 1fr);
}
.has-row-2 > * {
grid-column-span: 2;
grid-column: span 2;
}
@media screen and (min-width: 992px) {
.has-row-2 > * {
grid-column-span: 1;
grid-column: span 1;
}
}
.has-row-2-xs > * {
grid-column-span: 2;
grid-column: span 2;
}
@media screen and (min-width: 992px) {
.has-row-2-xs > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 575.5px) {
.has-row-2-xs {
grid-rows: (1fr) [2] !important;
grid-template-rows: repeat(2, 1fr) !important;
}
}
.has-row-2-sm > * {
grid-column-span: 2;
grid-column: span 2;
}
@media screen and (min-width: 992px) {
.has-row-2-sm > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 576px) {
.has-row-2-sm {
grid-rows: (1fr) [2] !important;
grid-template-rows: repeat(2, 1fr) !important;
}
}
.has-row-2-md > * {
grid-column-span: 2;
grid-column: span 2;
}
@media screen and (min-width: 992px) {
.has-row-2-md > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 768px) {
.has-row-2-md {
grid-rows: (1fr) [2] !important;
grid-template-rows: repeat(2, 1fr) !important;
}
}
.has-row-2-lg > * {
grid-column-span: 2;
grid-column: span 2;
}
@media screen and (min-width: 992px) {
.has-row-2-lg > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 992px) {
.has-row-2-lg {
grid-rows: (1fr) [2] !important;
grid-template-rows: repeat(2, 1fr) !important;
}
}
.has-row-2-xl > * {
grid-column-span: 2;
grid-column: span 2;
}
@media screen and (min-width: 992px) {
.has-row-2-xl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1200px) {
.has-row-2-xl {
grid-rows: (1fr) [2] !important;
grid-template-rows: repeat(2, 1fr) !important;
}
}
.has-row-2-xxl > * {
grid-column-span: 2;
grid-column: span 2;
}
@media screen and (min-width: 992px) {
.has-row-2-xxl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1400px) {
.has-row-2-xxl {
grid-rows: (1fr) [2] !important;
grid-template-rows: repeat(2, 1fr) !important;
}
}
.has-row-3 {
grid-rows: (1fr) [3];
grid-template-rows: repeat(3, 1fr);
}
.has-row-3 > * {
grid-column-span: 3;
grid-column: span 3;
}
@media screen and (min-width: 992px) {
.has-row-3 > * {
grid-column-span: 1;
grid-column: span 1;
}
}
.has-row-3-xs > * {
grid-column-span: 3;
grid-column: span 3;
}
@media screen and (min-width: 992px) {
.has-row-3-xs > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 575.5px) {
.has-row-3-xs {
grid-rows: (1fr) [3] !important;
grid-template-rows: repeat(3, 1fr) !important;
}
}
.has-row-3-sm > * {
grid-column-span: 3;
grid-column: span 3;
}
@media screen and (min-width: 992px) {
.has-row-3-sm > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 576px) {
.has-row-3-sm {
grid-rows: (1fr) [3] !important;
grid-template-rows: repeat(3, 1fr) !important;
}
}
.has-row-3-md > * {
grid-column-span: 3;
grid-column: span 3;
}
@media screen and (min-width: 992px) {
.has-row-3-md > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 768px) {
.has-row-3-md {
grid-rows: (1fr) [3] !important;
grid-template-rows: repeat(3, 1fr) !important;
}
}
.has-row-3-lg > * {
grid-column-span: 3;
grid-column: span 3;
}
@media screen and (min-width: 992px) {
.has-row-3-lg > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 992px) {
.has-row-3-lg {
grid-rows: (1fr) [3] !important;
grid-template-rows: repeat(3, 1fr) !important;
}
}
.has-row-3-xl > * {
grid-column-span: 3;
grid-column: span 3;
}
@media screen and (min-width: 992px) {
.has-row-3-xl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1200px) {
.has-row-3-xl {
grid-rows: (1fr) [3] !important;
grid-template-rows: repeat(3, 1fr) !important;
}
}
.has-row-3-xxl > * {
grid-column-span: 3;
grid-column: span 3;
}
@media screen and (min-width: 992px) {
.has-row-3-xxl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1400px) {
.has-row-3-xxl {
grid-rows: (1fr) [3] !important;
grid-template-rows: repeat(3, 1fr) !important;
}
}
.has-row-4 {
grid-rows: (1fr) [4];
grid-template-rows: repeat(4, 1fr);
}
.has-row-4 > * {
grid-column-span: 4;
grid-column: span 4;
}
@media screen and (min-width: 992px) {
.has-row-4 > * {
grid-column-span: 1;
grid-column: span 1;
}
}
.has-row-4-xs > * {
grid-column-span: 4;
grid-column: span 4;
}
@media screen and (min-width: 992px) {
.has-row-4-xs > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 575.5px) {
.has-row-4-xs {
grid-rows: (1fr) [4] !important;
grid-template-rows: repeat(4, 1fr) !important;
}
}
.has-row-4-sm > * {
grid-column-span: 4;
grid-column: span 4;
}
@media screen and (min-width: 992px) {
.has-row-4-sm > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 576px) {
.has-row-4-sm {
grid-rows: (1fr) [4] !important;
grid-template-rows: repeat(4, 1fr) !important;
}
}
.has-row-4-md > * {
grid-column-span: 4;
grid-column: span 4;
}
@media screen and (min-width: 992px) {
.has-row-4-md > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 768px) {
.has-row-4-md {
grid-rows: (1fr) [4] !important;
grid-template-rows: repeat(4, 1fr) !important;
}
}
.has-row-4-lg > * {
grid-column-span: 4;
grid-column: span 4;
}
@media screen and (min-width: 992px) {
.has-row-4-lg > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 992px) {
.has-row-4-lg {
grid-rows: (1fr) [4] !important;
grid-template-rows: repeat(4, 1fr) !important;
}
}
.has-row-4-xl > * {
grid-column-span: 4;
grid-column: span 4;
}
@media screen and (min-width: 992px) {
.has-row-4-xl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1200px) {
.has-row-4-xl {
grid-rows: (1fr) [4] !important;
grid-template-rows: repeat(4, 1fr) !important;
}
}
.has-row-4-xxl > * {
grid-column-span: 4;
grid-column: span 4;
}
@media screen and (min-width: 992px) {
.has-row-4-xxl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1400px) {
.has-row-4-xxl {
grid-rows: (1fr) [4] !important;
grid-template-rows: repeat(4, 1fr) !important;
}
}
.has-row-5 {
grid-rows: (1fr) [5];
grid-template-rows: repeat(5, 1fr);
}
.has-row-5 > * {
grid-column-span: 5;
grid-column: span 5;
}
@media screen and (min-width: 992px) {
.has-row-5 > * {
grid-column-span: 1;
grid-column: span 1;
}
}
.has-row-5-xs > * {
grid-column-span: 5;
grid-column: span 5;
}
@media screen and (min-width: 992px) {
.has-row-5-xs > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 575.5px) {
.has-row-5-xs {
grid-rows: (1fr) [5] !important;
grid-template-rows: repeat(5, 1fr) !important;
}
}
.has-row-5-sm > * {
grid-column-span: 5;
grid-column: span 5;
}
@media screen and (min-width: 992px) {
.has-row-5-sm > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 576px) {
.has-row-5-sm {
grid-rows: (1fr) [5] !important;
grid-template-rows: repeat(5, 1fr) !important;
}
}
.has-row-5-md > * {
grid-column-span: 5;
grid-column: span 5;
}
@media screen and (min-width: 992px) {
.has-row-5-md > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 768px) {
.has-row-5-md {
grid-rows: (1fr) [5] !important;
grid-template-rows: repeat(5, 1fr) !important;
}
}
.has-row-5-lg > * {
grid-column-span: 5;
grid-column: span 5;
}
@media screen and (min-width: 992px) {
.has-row-5-lg > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 992px) {
.has-row-5-lg {
grid-rows: (1fr) [5] !important;
grid-template-rows: repeat(5, 1fr) !important;
}
}
.has-row-5-xl > * {
grid-column-span: 5;
grid-column: span 5;
}
@media screen and (min-width: 992px) {
.has-row-5-xl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1200px) {
.has-row-5-xl {
grid-rows: (1fr) [5] !important;
grid-template-rows: repeat(5, 1fr) !important;
}
}
.has-row-5-xxl > * {
grid-column-span: 5;
grid-column: span 5;
}
@media screen and (min-width: 992px) {
.has-row-5-xxl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1400px) {
.has-row-5-xxl {
grid-rows: (1fr) [5] !important;
grid-template-rows: repeat(5, 1fr) !important;
}
}
.has-row-6 {
grid-rows: (1fr) [6];
grid-template-rows: repeat(6, 1fr);
}
.has-row-6 > * {
grid-column-span: 6;
grid-column: span 6;
}
@media screen and (min-width: 992px) {
.has-row-6 > * {
grid-column-span: 1;
grid-column: span 1;
}
}
.has-row-6-xs > * {
grid-column-span: 6;
grid-column: span 6;
}
@media screen and (min-width: 992px) {
.has-row-6-xs > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 575.5px) {
.has-row-6-xs {
grid-rows: (1fr) [6] !important;
grid-template-rows: repeat(6, 1fr) !important;
}
}
.has-row-6-sm > * {
grid-column-span: 6;
grid-column: span 6;
}
@media screen and (min-width: 992px) {
.has-row-6-sm > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 576px) {
.has-row-6-sm {
grid-rows: (1fr) [6] !important;
grid-template-rows: repeat(6, 1fr) !important;
}
}
.has-row-6-md > * {
grid-column-span: 6;
grid-column: span 6;
}
@media screen and (min-width: 992px) {
.has-row-6-md > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 768px) {
.has-row-6-md {
grid-rows: (1fr) [6] !important;
grid-template-rows: repeat(6, 1fr) !important;
}
}
.has-row-6-lg > * {
grid-column-span: 6;
grid-column: span 6;
}
@media screen and (min-width: 992px) {
.has-row-6-lg > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 992px) {
.has-row-6-lg {
grid-rows: (1fr) [6] !important;
grid-template-rows: repeat(6, 1fr) !important;
}
}
.has-row-6-xl > * {
grid-column-span: 6;
grid-column: span 6;
}
@media screen and (min-width: 992px) {
.has-row-6-xl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1200px) {
.has-row-6-xl {
grid-rows: (1fr) [6] !important;
grid-template-rows: repeat(6, 1fr) !important;
}
}
.has-row-6-xxl > * {
grid-column-span: 6;
grid-column: span 6;
}
@media screen and (min-width: 992px) {
.has-row-6-xxl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1400px) {
.has-row-6-xxl {
grid-rows: (1fr) [6] !important;
grid-template-rows: repeat(6, 1fr) !important;
}
}
.has-row-7 {
grid-rows: (1fr) [7];
grid-template-rows: repeat(7, 1fr);
}
.has-row-7 > * {
grid-column-span: 7;
grid-column: span 7;
}
@media screen and (min-width: 992px) {
.has-row-7 > * {
grid-column-span: 1;
grid-column: span 1;
}
}
.has-row-7-xs > * {
grid-column-span: 7;
grid-column: span 7;
}
@media screen and (min-width: 992px) {
.has-row-7-xs > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 575.5px) {
.has-row-7-xs {
grid-rows: (1fr) [7] !important;
grid-template-rows: repeat(7, 1fr) !important;
}
}
.has-row-7-sm > * {
grid-column-span: 7;
grid-column: span 7;
}
@media screen and (min-width: 992px) {
.has-row-7-sm > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 576px) {
.has-row-7-sm {
grid-rows: (1fr) [7] !important;
grid-template-rows: repeat(7, 1fr) !important;
}
}
.has-row-7-md > * {
grid-column-span: 7;
grid-column: span 7;
}
@media screen and (min-width: 992px) {
.has-row-7-md > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 768px) {
.has-row-7-md {
grid-rows: (1fr) [7] !important;
grid-template-rows: repeat(7, 1fr) !important;
}
}
.has-row-7-lg > * {
grid-column-span: 7;
grid-column: span 7;
}
@media screen and (min-width: 992px) {
.has-row-7-lg > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 992px) {
.has-row-7-lg {
grid-rows: (1fr) [7] !important;
grid-template-rows: repeat(7, 1fr) !important;
}
}
.has-row-7-xl > * {
grid-column-span: 7;
grid-column: span 7;
}
@media screen and (min-width: 992px) {
.has-row-7-xl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1200px) {
.has-row-7-xl {
grid-rows: (1fr) [7] !important;
grid-template-rows: repeat(7, 1fr) !important;
}
}
.has-row-7-xxl > * {
grid-column-span: 7;
grid-column: span 7;
}
@media screen and (min-width: 992px) {
.has-row-7-xxl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1400px) {
.has-row-7-xxl {
grid-rows: (1fr) [7] !important;
grid-template-rows: repeat(7, 1fr) !important;
}
}
.has-row-8 {
grid-rows: (1fr) [8];
grid-template-rows: repeat(8, 1fr);
}
.has-row-8 > * {
grid-column-span: 8;
grid-column: span 8;
}
@media screen and (min-width: 992px) {
.has-row-8 > * {
grid-column-span: 1;
grid-column: span 1;
}
}
.has-row-8-xs > * {
grid-column-span: 8;
grid-column: span 8;
}
@media screen and (min-width: 992px) {
.has-row-8-xs > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 575.5px) {
.has-row-8-xs {
grid-rows: (1fr) [8] !important;
grid-template-rows: repeat(8, 1fr) !important;
}
}
.has-row-8-sm > * {
grid-column-span: 8;
grid-column: span 8;
}
@media screen and (min-width: 992px) {
.has-row-8-sm > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 576px) {
.has-row-8-sm {
grid-rows: (1fr) [8] !important;
grid-template-rows: repeat(8, 1fr) !important;
}
}
.has-row-8-md > * {
grid-column-span: 8;
grid-column: span 8;
}
@media screen and (min-width: 992px) {
.has-row-8-md > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 768px) {
.has-row-8-md {
grid-rows: (1fr) [8] !important;
grid-template-rows: repeat(8, 1fr) !important;
}
}
.has-row-8-lg > * {
grid-column-span: 8;
grid-column: span 8;
}
@media screen and (min-width: 992px) {
.has-row-8-lg > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 992px) {
.has-row-8-lg {
grid-rows: (1fr) [8] !important;
grid-template-rows: repeat(8, 1fr) !important;
}
}
.has-row-8-xl > * {
grid-column-span: 8;
grid-column: span 8;
}
@media screen and (min-width: 992px) {
.has-row-8-xl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1200px) {
.has-row-8-xl {
grid-rows: (1fr) [8] !important;
grid-template-rows: repeat(8, 1fr) !important;
}
}
.has-row-8-xxl > * {
grid-column-span: 8;
grid-column: span 8;
}
@media screen and (min-width: 992px) {
.has-row-8-xxl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1400px) {
.has-row-8-xxl {
grid-rows: (1fr) [8] !important;
grid-template-rows: repeat(8, 1fr) !important;
}
}
.has-row-9 {
grid-rows: (1fr) [9];
grid-template-rows: repeat(9, 1fr);
}
.has-row-9 > * {
grid-column-span: 9;
grid-column: span 9;
}
@media screen and (min-width: 992px) {
.has-row-9 > * {
grid-column-span: 1;
grid-column: span 1;
}
}
.has-row-9-xs > * {
grid-column-span: 9;
grid-column: span 9;
}
@media screen and (min-width: 992px) {
.has-row-9-xs > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 575.5px) {
.has-row-9-xs {
grid-rows: (1fr) [9] !important;
grid-template-rows: repeat(9, 1fr) !important;
}
}
.has-row-9-sm > * {
grid-column-span: 9;
grid-column: span 9;
}
@media screen and (min-width: 992px) {
.has-row-9-sm > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 576px) {
.has-row-9-sm {
grid-rows: (1fr) [9] !important;
grid-template-rows: repeat(9, 1fr) !important;
}
}
.has-row-9-md > * {
grid-column-span: 9;
grid-column: span 9;
}
@media screen and (min-width: 992px) {
.has-row-9-md > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 768px) {
.has-row-9-md {
grid-rows: (1fr) [9] !important;
grid-template-rows: repeat(9, 1fr) !important;
}
}
.has-row-9-lg > * {
grid-column-span: 9;
grid-column: span 9;
}
@media screen and (min-width: 992px) {
.has-row-9-lg > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 992px) {
.has-row-9-lg {
grid-rows: (1fr) [9] !important;
grid-template-rows: repeat(9, 1fr) !important;
}
}
.has-row-9-xl > * {
grid-column-span: 9;
grid-column: span 9;
}
@media screen and (min-width: 992px) {
.has-row-9-xl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1200px) {
.has-row-9-xl {
grid-rows: (1fr) [9] !important;
grid-template-rows: repeat(9, 1fr) !important;
}
}
.has-row-9-xxl > * {
grid-column-span: 9;
grid-column: span 9;
}
@media screen and (min-width: 992px) {
.has-row-9-xxl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1400px) {
.has-row-9-xxl {
grid-rows: (1fr) [9] !important;
grid-template-rows: repeat(9, 1fr) !important;
}
}
.has-row-10 {
grid-rows: (1fr) [10];
grid-template-rows: repeat(10, 1fr);
}
.has-row-10 > * {
grid-column-span: 10;
grid-column: span 10;
}
@media screen and (min-width: 992px) {
.has-row-10 > * {
grid-column-span: 1;
grid-column: span 1;
}
}
.has-row-10-xs > * {
grid-column-span: 10;
grid-column: span 10;
}
@media screen and (min-width: 992px) {
.has-row-10-xs > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 575.5px) {
.has-row-10-xs {
grid-rows: (1fr) [10] !important;
grid-template-rows: repeat(10, 1fr) !important;
}
}
.has-row-10-sm > * {
grid-column-span: 10;
grid-column: span 10;
}
@media screen and (min-width: 992px) {
.has-row-10-sm > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 576px) {
.has-row-10-sm {
grid-rows: (1fr) [10] !important;
grid-template-rows: repeat(10, 1fr) !important;
}
}
.has-row-10-md > * {
grid-column-span: 10;
grid-column: span 10;
}
@media screen and (min-width: 992px) {
.has-row-10-md > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 768px) {
.has-row-10-md {
grid-rows: (1fr) [10] !important;
grid-template-rows: repeat(10, 1fr) !important;
}
}
.has-row-10-lg > * {
grid-column-span: 10;
grid-column: span 10;
}
@media screen and (min-width: 992px) {
.has-row-10-lg > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 992px) {
.has-row-10-lg {
grid-rows: (1fr) [10] !important;
grid-template-rows: repeat(10, 1fr) !important;
}
}
.has-row-10-xl > * {
grid-column-span: 10;
grid-column: span 10;
}
@media screen and (min-width: 992px) {
.has-row-10-xl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1200px) {
.has-row-10-xl {
grid-rows: (1fr) [10] !important;
grid-template-rows: repeat(10, 1fr) !important;
}
}
.has-row-10-xxl > * {
grid-column-span: 10;
grid-column: span 10;
}
@media screen and (min-width: 992px) {
.has-row-10-xxl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1400px) {
.has-row-10-xxl {
grid-rows: (1fr) [10] !important;
grid-template-rows: repeat(10, 1fr) !important;
}
}
.has-row-11 {
grid-rows: (1fr) [11];
grid-template-rows: repeat(11, 1fr);
}
.has-row-11 > * {
grid-column-span: 11;
grid-column: span 11;
}
@media screen and (min-width: 992px) {
.has-row-11 > * {
grid-column-span: 1;
grid-column: span 1;
}
}
.has-row-11-xs > * {
grid-column-span: 11;
grid-column: span 11;
}
@media screen and (min-width: 992px) {
.has-row-11-xs > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 575.5px) {
.has-row-11-xs {
grid-rows: (1fr) [11] !important;
grid-template-rows: repeat(11, 1fr) !important;
}
}
.has-row-11-sm > * {
grid-column-span: 11;
grid-column: span 11;
}
@media screen and (min-width: 992px) {
.has-row-11-sm > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 576px) {
.has-row-11-sm {
grid-rows: (1fr) [11] !important;
grid-template-rows: repeat(11, 1fr) !important;
}
}
.has-row-11-md > * {
grid-column-span: 11;
grid-column: span 11;
}
@media screen and (min-width: 992px) {
.has-row-11-md > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 768px) {
.has-row-11-md {
grid-rows: (1fr) [11] !important;
grid-template-rows: repeat(11, 1fr) !important;
}
}
.has-row-11-lg > * {
grid-column-span: 11;
grid-column: span 11;
}
@media screen and (min-width: 992px) {
.has-row-11-lg > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 992px) {
.has-row-11-lg {
grid-rows: (1fr) [11] !important;
grid-template-rows: repeat(11, 1fr) !important;
}
}
.has-row-11-xl > * {
grid-column-span: 11;
grid-column: span 11;
}
@media screen and (min-width: 992px) {
.has-row-11-xl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1200px) {
.has-row-11-xl {
grid-rows: (1fr) [11] !important;
grid-template-rows: repeat(11, 1fr) !important;
}
}
.has-row-11-xxl > * {
grid-column-span: 11;
grid-column: span 11;
}
@media screen and (min-width: 992px) {
.has-row-11-xxl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1400px) {
.has-row-11-xxl {
grid-rows: (1fr) [11] !important;
grid-template-rows: repeat(11, 1fr) !important;
}
}
.has-row-12 {
grid-rows: (1fr) [12];
grid-template-rows: repeat(12, 1fr);
}
.has-row-12 > * {
grid-column-span: 12;
grid-column: span 12;
}
@media screen and (min-width: 992px) {
.has-row-12 > * {
grid-column-span: 1;
grid-column: span 1;
}
}
.has-row-12-xs > * {
grid-column-span: 12;
grid-column: span 12;
}
@media screen and (min-width: 992px) {
.has-row-12-xs > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 575.5px) {
.has-row-12-xs {
grid-rows: (1fr) [12] !important;
grid-template-rows: repeat(12, 1fr) !important;
}
}
.has-row-12-sm > * {
grid-column-span: 12;
grid-column: span 12;
}
@media screen and (min-width: 992px) {
.has-row-12-sm > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 576px) {
.has-row-12-sm {
grid-rows: (1fr) [12] !important;
grid-template-rows: repeat(12, 1fr) !important;
}
}
.has-row-12-md > * {
grid-column-span: 12;
grid-column: span 12;
}
@media screen and (min-width: 992px) {
.has-row-12-md > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 768px) {
.has-row-12-md {
grid-rows: (1fr) [12] !important;
grid-template-rows: repeat(12, 1fr) !important;
}
}
.has-row-12-lg > * {
grid-column-span: 12;
grid-column: span 12;
}
@media screen and (min-width: 992px) {
.has-row-12-lg > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 992px) {
.has-row-12-lg {
grid-rows: (1fr) [12] !important;
grid-template-rows: repeat(12, 1fr) !important;
}
}
.has-row-12-xl > * {
grid-column-span: 12;
grid-column: span 12;
}
@media screen and (min-width: 992px) {
.has-row-12-xl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1200px) {
.has-row-12-xl {
grid-rows: (1fr) [12] !important;
grid-template-rows: repeat(12, 1fr) !important;
}
}
.has-row-12-xxl > * {
grid-column-span: 12;
grid-column: span 12;
}
@media screen and (min-width: 992px) {
.has-row-12-xxl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1400px) {
.has-row-12-xxl {
grid-rows: (1fr) [12] !important;
grid-template-rows: repeat(12, 1fr) !important;
}
}
.has-col-1 {
grid-columns: (1fr) [1];
grid-template-columns: repeat(1, 1fr);
}
.has-col-1 > * {
grid-column-span: 1;
grid-column: span 1;
}
@media screen and (min-width: 992px) {
.has-col-1 > * {
grid-column-span: 1;
grid-column: span 1;
}
}
.has-col-1-xs > * {
grid-column-span: 1;
grid-column: span 1;
}
@media screen and (min-width: 992px) {
.has-col-1-xs > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 575.5px) {
.has-col-1-xs {
grid-columns: (1fr) [1] !important;
grid-template-columns: repeat(1, 1fr) !important;
}
}
.has-col-1-sm > * {
grid-column-span: 1;
grid-column: span 1;
}
@media screen and (min-width: 992px) {
.has-col-1-sm > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 576px) {
.has-col-1-sm {
grid-columns: (1fr) [1] !important;
grid-template-columns: repeat(1, 1fr) !important;
}
}
.has-col-1-md > * {
grid-column-span: 1;
grid-column: span 1;
}
@media screen and (min-width: 992px) {
.has-col-1-md > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 768px) {
.has-col-1-md {
grid-columns: (1fr) [1] !important;
grid-template-columns: repeat(1, 1fr) !important;
}
}
.has-col-1-lg > * {
grid-column-span: 1;
grid-column: span 1;
}
@media screen and (min-width: 992px) {
.has-col-1-lg > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 992px) {
.has-col-1-lg {
grid-columns: (1fr) [1] !important;
grid-template-columns: repeat(1, 1fr) !important;
}
}
.has-col-1-xl > * {
grid-column-span: 1;
grid-column: span 1;
}
@media screen and (min-width: 992px) {
.has-col-1-xl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1200px) {
.has-col-1-xl {
grid-columns: (1fr) [1] !important;
grid-template-columns: repeat(1, 1fr) !important;
}
}
.has-col-1-xxl > * {
grid-column-span: 1;
grid-column: span 1;
}
@media screen and (min-width: 992px) {
.has-col-1-xxl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1400px) {
.has-col-1-xxl {
grid-columns: (1fr) [1] !important;
grid-template-columns: repeat(1, 1fr) !important;
}
}
.has-col-2 {
grid-columns: (1fr) [2];
grid-template-columns: repeat(2, 1fr);
}
.has-col-2 > * {
grid-column-span: 2;
grid-column: span 2;
}
@media screen and (min-width: 992px) {
.has-col-2 > * {
grid-column-span: 1;
grid-column: span 1;
}
}
.has-col-2-xs > * {
grid-column-span: 2;
grid-column: span 2;
}
@media screen and (min-width: 992px) {
.has-col-2-xs > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 575.5px) {
.has-col-2-xs {
grid-columns: (1fr) [2] !important;
grid-template-columns: repeat(2, 1fr) !important;
}
}
.has-col-2-sm > * {
grid-column-span: 2;
grid-column: span 2;
}
@media screen and (min-width: 992px) {
.has-col-2-sm > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 576px) {
.has-col-2-sm {
grid-columns: (1fr) [2] !important;
grid-template-columns: repeat(2, 1fr) !important;
}
}
.has-col-2-md > * {
grid-column-span: 2;
grid-column: span 2;
}
@media screen and (min-width: 992px) {
.has-col-2-md > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 768px) {
.has-col-2-md {
grid-columns: (1fr) [2] !important;
grid-template-columns: repeat(2, 1fr) !important;
}
}
.has-col-2-lg > * {
grid-column-span: 2;
grid-column: span 2;
}
@media screen and (min-width: 992px) {
.has-col-2-lg > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 992px) {
.has-col-2-lg {
grid-columns: (1fr) [2] !important;
grid-template-columns: repeat(2, 1fr) !important;
}
}
.has-col-2-xl > * {
grid-column-span: 2;
grid-column: span 2;
}
@media screen and (min-width: 992px) {
.has-col-2-xl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1200px) {
.has-col-2-xl {
grid-columns: (1fr) [2] !important;
grid-template-columns: repeat(2, 1fr) !important;
}
}
.has-col-2-xxl > * {
grid-column-span: 2;
grid-column: span 2;
}
@media screen and (min-width: 992px) {
.has-col-2-xxl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1400px) {
.has-col-2-xxl {
grid-columns: (1fr) [2] !important;
grid-template-columns: repeat(2, 1fr) !important;
}
}
.has-col-3 {
grid-columns: (1fr) [3];
grid-template-columns: repeat(3, 1fr);
}
.has-col-3 > * {
grid-column-span: 3;
grid-column: span 3;
}
@media screen and (min-width: 992px) {
.has-col-3 > * {
grid-column-span: 1;
grid-column: span 1;
}
}
.has-col-3-xs > * {
grid-column-span: 3;
grid-column: span 3;
}
@media screen and (min-width: 992px) {
.has-col-3-xs > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 575.5px) {
.has-col-3-xs {
grid-columns: (1fr) [3] !important;
grid-template-columns: repeat(3, 1fr) !important;
}
}
.has-col-3-sm > * {
grid-column-span: 3;
grid-column: span 3;
}
@media screen and (min-width: 992px) {
.has-col-3-sm > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 576px) {
.has-col-3-sm {
grid-columns: (1fr) [3] !important;
grid-template-columns: repeat(3, 1fr) !important;
}
}
.has-col-3-md > * {
grid-column-span: 3;
grid-column: span 3;
}
@media screen and (min-width: 992px) {
.has-col-3-md > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 768px) {
.has-col-3-md {
grid-columns: (1fr) [3] !important;
grid-template-columns: repeat(3, 1fr) !important;
}
}
.has-col-3-lg > * {
grid-column-span: 3;
grid-column: span 3;
}
@media screen and (min-width: 992px) {
.has-col-3-lg > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 992px) {
.has-col-3-lg {
grid-columns: (1fr) [3] !important;
grid-template-columns: repeat(3, 1fr) !important;
}
}
.has-col-3-xl > * {
grid-column-span: 3;
grid-column: span 3;
}
@media screen and (min-width: 992px) {
.has-col-3-xl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1200px) {
.has-col-3-xl {
grid-columns: (1fr) [3] !important;
grid-template-columns: repeat(3, 1fr) !important;
}
}
.has-col-3-xxl > * {
grid-column-span: 3;
grid-column: span 3;
}
@media screen and (min-width: 992px) {
.has-col-3-xxl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1400px) {
.has-col-3-xxl {
grid-columns: (1fr) [3] !important;
grid-template-columns: repeat(3, 1fr) !important;
}
}
.has-col-4 {
grid-columns: (1fr) [4];
grid-template-columns: repeat(4, 1fr);
}
.has-col-4 > * {
grid-column-span: 4;
grid-column: span 4;
}
@media screen and (min-width: 992px) {
.has-col-4 > * {
grid-column-span: 1;
grid-column: span 1;
}
}
.has-col-4-xs > * {
grid-column-span: 4;
grid-column: span 4;
}
@media screen and (min-width: 992px) {
.has-col-4-xs > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 575.5px) {
.has-col-4-xs {
grid-columns: (1fr) [4] !important;
grid-template-columns: repeat(4, 1fr) !important;
}
}
.has-col-4-sm > * {
grid-column-span: 4;
grid-column: span 4;
}
@media screen and (min-width: 992px) {
.has-col-4-sm > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 576px) {
.has-col-4-sm {
grid-columns: (1fr) [4] !important;
grid-template-columns: repeat(4, 1fr) !important;
}
}
.has-col-4-md > * {
grid-column-span: 4;
grid-column: span 4;
}
@media screen and (min-width: 992px) {
.has-col-4-md > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 768px) {
.has-col-4-md {
grid-columns: (1fr) [4] !important;
grid-template-columns: repeat(4, 1fr) !important;
}
}
.has-col-4-lg > * {
grid-column-span: 4;
grid-column: span 4;
}
@media screen and (min-width: 992px) {
.has-col-4-lg > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 992px) {
.has-col-4-lg {
grid-columns: (1fr) [4] !important;
grid-template-columns: repeat(4, 1fr) !important;
}
}
.has-col-4-xl > * {
grid-column-span: 4;
grid-column: span 4;
}
@media screen and (min-width: 992px) {
.has-col-4-xl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1200px) {
.has-col-4-xl {
grid-columns: (1fr) [4] !important;
grid-template-columns: repeat(4, 1fr) !important;
}
}
.has-col-4-xxl > * {
grid-column-span: 4;
grid-column: span 4;
}
@media screen and (min-width: 992px) {
.has-col-4-xxl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1400px) {
.has-col-4-xxl {
grid-columns: (1fr) [4] !important;
grid-template-columns: repeat(4, 1fr) !important;
}
}
.has-col-5 {
grid-columns: (1fr) [5];
grid-template-columns: repeat(5, 1fr);
}
.has-col-5 > * {
grid-column-span: 5;
grid-column: span 5;
}
@media screen and (min-width: 992px) {
.has-col-5 > * {
grid-column-span: 1;
grid-column: span 1;
}
}
.has-col-5-xs > * {
grid-column-span: 5;
grid-column: span 5;
}
@media screen and (min-width: 992px) {
.has-col-5-xs > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 575.5px) {
.has-col-5-xs {
grid-columns: (1fr) [5] !important;
grid-template-columns: repeat(5, 1fr) !important;
}
}
.has-col-5-sm > * {
grid-column-span: 5;
grid-column: span 5;
}
@media screen and (min-width: 992px) {
.has-col-5-sm > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 576px) {
.has-col-5-sm {
grid-columns: (1fr) [5] !important;
grid-template-columns: repeat(5, 1fr) !important;
}
}
.has-col-5-md > * {
grid-column-span: 5;
grid-column: span 5;
}
@media screen and (min-width: 992px) {
.has-col-5-md > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 768px) {
.has-col-5-md {
grid-columns: (1fr) [5] !important;
grid-template-columns: repeat(5, 1fr) !important;
}
}
.has-col-5-lg > * {
grid-column-span: 5;
grid-column: span 5;
}
@media screen and (min-width: 992px) {
.has-col-5-lg > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 992px) {
.has-col-5-lg {
grid-columns: (1fr) [5] !important;
grid-template-columns: repeat(5, 1fr) !important;
}
}
.has-col-5-xl > * {
grid-column-span: 5;
grid-column: span 5;
}
@media screen and (min-width: 992px) {
.has-col-5-xl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1200px) {
.has-col-5-xl {
grid-columns: (1fr) [5] !important;
grid-template-columns: repeat(5, 1fr) !important;
}
}
.has-col-5-xxl > * {
grid-column-span: 5;
grid-column: span 5;
}
@media screen and (min-width: 992px) {
.has-col-5-xxl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1400px) {
.has-col-5-xxl {
grid-columns: (1fr) [5] !important;
grid-template-columns: repeat(5, 1fr) !important;
}
}
.has-col-6 {
grid-columns: (1fr) [6];
grid-template-columns: repeat(6, 1fr);
}
.has-col-6 > * {
grid-column-span: 6;
grid-column: span 6;
}
@media screen and (min-width: 992px) {
.has-col-6 > * {
grid-column-span: 1;
grid-column: span 1;
}
}
.has-col-6-xs > * {
grid-column-span: 6;
grid-column: span 6;
}
@media screen and (min-width: 992px) {
.has-col-6-xs > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 575.5px) {
.has-col-6-xs {
grid-columns: (1fr) [6] !important;
grid-template-columns: repeat(6, 1fr) !important;
}
}
.has-col-6-sm > * {
grid-column-span: 6;
grid-column: span 6;
}
@media screen and (min-width: 992px) {
.has-col-6-sm > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 576px) {
.has-col-6-sm {
grid-columns: (1fr) [6] !important;
grid-template-columns: repeat(6, 1fr) !important;
}
}
.has-col-6-md > * {
grid-column-span: 6;
grid-column: span 6;
}
@media screen and (min-width: 992px) {
.has-col-6-md > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 768px) {
.has-col-6-md {
grid-columns: (1fr) [6] !important;
grid-template-columns: repeat(6, 1fr) !important;
}
}
.has-col-6-lg > * {
grid-column-span: 6;
grid-column: span 6;
}
@media screen and (min-width: 992px) {
.has-col-6-lg > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 992px) {
.has-col-6-lg {
grid-columns: (1fr) [6] !important;
grid-template-columns: repeat(6, 1fr) !important;
}
}
.has-col-6-xl > * {
grid-column-span: 6;
grid-column: span 6;
}
@media screen and (min-width: 992px) {
.has-col-6-xl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1200px) {
.has-col-6-xl {
grid-columns: (1fr) [6] !important;
grid-template-columns: repeat(6, 1fr) !important;
}
}
.has-col-6-xxl > * {
grid-column-span: 6;
grid-column: span 6;
}
@media screen and (min-width: 992px) {
.has-col-6-xxl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1400px) {
.has-col-6-xxl {
grid-columns: (1fr) [6] !important;
grid-template-columns: repeat(6, 1fr) !important;
}
}
.has-col-7 {
grid-columns: (1fr) [7];
grid-template-columns: repeat(7, 1fr);
}
.has-col-7 > * {
grid-column-span: 7;
grid-column: span 7;
}
@media screen and (min-width: 992px) {
.has-col-7 > * {
grid-column-span: 1;
grid-column: span 1;
}
}
.has-col-7-xs > * {
grid-column-span: 7;
grid-column: span 7;
}
@media screen and (min-width: 992px) {
.has-col-7-xs > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 575.5px) {
.has-col-7-xs {
grid-columns: (1fr) [7] !important;
grid-template-columns: repeat(7, 1fr) !important;
}
}
.has-col-7-sm > * {
grid-column-span: 7;
grid-column: span 7;
}
@media screen and (min-width: 992px) {
.has-col-7-sm > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 576px) {
.has-col-7-sm {
grid-columns: (1fr) [7] !important;
grid-template-columns: repeat(7, 1fr) !important;
}
}
.has-col-7-md > * {
grid-column-span: 7;
grid-column: span 7;
}
@media screen and (min-width: 992px) {
.has-col-7-md > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 768px) {
.has-col-7-md {
grid-columns: (1fr) [7] !important;
grid-template-columns: repeat(7, 1fr) !important;
}
}
.has-col-7-lg > * {
grid-column-span: 7;
grid-column: span 7;
}
@media screen and (min-width: 992px) {
.has-col-7-lg > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 992px) {
.has-col-7-lg {
grid-columns: (1fr) [7] !important;
grid-template-columns: repeat(7, 1fr) !important;
}
}
.has-col-7-xl > * {
grid-column-span: 7;
grid-column: span 7;
}
@media screen and (min-width: 992px) {
.has-col-7-xl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1200px) {
.has-col-7-xl {
grid-columns: (1fr) [7] !important;
grid-template-columns: repeat(7, 1fr) !important;
}
}
.has-col-7-xxl > * {
grid-column-span: 7;
grid-column: span 7;
}
@media screen and (min-width: 992px) {
.has-col-7-xxl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1400px) {
.has-col-7-xxl {
grid-columns: (1fr) [7] !important;
grid-template-columns: repeat(7, 1fr) !important;
}
}
.has-col-8 {
grid-columns: (1fr) [8];
grid-template-columns: repeat(8, 1fr);
}
.has-col-8 > * {
grid-column-span: 8;
grid-column: span 8;
}
@media screen and (min-width: 992px) {
.has-col-8 > * {
grid-column-span: 1;
grid-column: span 1;
}
}
.has-col-8-xs > * {
grid-column-span: 8;
grid-column: span 8;
}
@media screen and (min-width: 992px) {
.has-col-8-xs > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 575.5px) {
.has-col-8-xs {
grid-columns: (1fr) [8] !important;
grid-template-columns: repeat(8, 1fr) !important;
}
}
.has-col-8-sm > * {
grid-column-span: 8;
grid-column: span 8;
}
@media screen and (min-width: 992px) {
.has-col-8-sm > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 576px) {
.has-col-8-sm {
grid-columns: (1fr) [8] !important;
grid-template-columns: repeat(8, 1fr) !important;
}
}
.has-col-8-md > * {
grid-column-span: 8;
grid-column: span 8;
}
@media screen and (min-width: 992px) {
.has-col-8-md > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 768px) {
.has-col-8-md {
grid-columns: (1fr) [8] !important;
grid-template-columns: repeat(8, 1fr) !important;
}
}
.has-col-8-lg > * {
grid-column-span: 8;
grid-column: span 8;
}
@media screen and (min-width: 992px) {
.has-col-8-lg > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 992px) {
.has-col-8-lg {
grid-columns: (1fr) [8] !important;
grid-template-columns: repeat(8, 1fr) !important;
}
}
.has-col-8-xl > * {
grid-column-span: 8;
grid-column: span 8;
}
@media screen and (min-width: 992px) {
.has-col-8-xl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1200px) {
.has-col-8-xl {
grid-columns: (1fr) [8] !important;
grid-template-columns: repeat(8, 1fr) !important;
}
}
.has-col-8-xxl > * {
grid-column-span: 8;
grid-column: span 8;
}
@media screen and (min-width: 992px) {
.has-col-8-xxl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1400px) {
.has-col-8-xxl {
grid-columns: (1fr) [8] !important;
grid-template-columns: repeat(8, 1fr) !important;
}
}
.has-col-9 {
grid-columns: (1fr) [9];
grid-template-columns: repeat(9, 1fr);
}
.has-col-9 > * {
grid-column-span: 9;
grid-column: span 9;
}
@media screen and (min-width: 992px) {
.has-col-9 > * {
grid-column-span: 1;
grid-column: span 1;
}
}
.has-col-9-xs > * {
grid-column-span: 9;
grid-column: span 9;
}
@media screen and (min-width: 992px) {
.has-col-9-xs > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 575.5px) {
.has-col-9-xs {
grid-columns: (1fr) [9] !important;
grid-template-columns: repeat(9, 1fr) !important;
}
}
.has-col-9-sm > * {
grid-column-span: 9;
grid-column: span 9;
}
@media screen and (min-width: 992px) {
.has-col-9-sm > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 576px) {
.has-col-9-sm {
grid-columns: (1fr) [9] !important;
grid-template-columns: repeat(9, 1fr) !important;
}
}
.has-col-9-md > * {
grid-column-span: 9;
grid-column: span 9;
}
@media screen and (min-width: 992px) {
.has-col-9-md > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 768px) {
.has-col-9-md {
grid-columns: (1fr) [9] !important;
grid-template-columns: repeat(9, 1fr) !important;
}
}
.has-col-9-lg > * {
grid-column-span: 9;
grid-column: span 9;
}
@media screen and (min-width: 992px) {
.has-col-9-lg > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 992px) {
.has-col-9-lg {
grid-columns: (1fr) [9] !important;
grid-template-columns: repeat(9, 1fr) !important;
}
}
.has-col-9-xl > * {
grid-column-span: 9;
grid-column: span 9;
}
@media screen and (min-width: 992px) {
.has-col-9-xl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1200px) {
.has-col-9-xl {
grid-columns: (1fr) [9] !important;
grid-template-columns: repeat(9, 1fr) !important;
}
}
.has-col-9-xxl > * {
grid-column-span: 9;
grid-column: span 9;
}
@media screen and (min-width: 992px) {
.has-col-9-xxl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1400px) {
.has-col-9-xxl {
grid-columns: (1fr) [9] !important;
grid-template-columns: repeat(9, 1fr) !important;
}
}
.has-col-10 {
grid-columns: (1fr) [10];
grid-template-columns: repeat(10, 1fr);
}
.has-col-10 > * {
grid-column-span: 10;
grid-column: span 10;
}
@media screen and (min-width: 992px) {
.has-col-10 > * {
grid-column-span: 1;
grid-column: span 1;
}
}
.has-col-10-xs > * {
grid-column-span: 10;
grid-column: span 10;
}
@media screen and (min-width: 992px) {
.has-col-10-xs > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 575.5px) {
.has-col-10-xs {
grid-columns: (1fr) [10] !important;
grid-template-columns: repeat(10, 1fr) !important;
}
}
.has-col-10-sm > * {
grid-column-span: 10;
grid-column: span 10;
}
@media screen and (min-width: 992px) {
.has-col-10-sm > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 576px) {
.has-col-10-sm {
grid-columns: (1fr) [10] !important;
grid-template-columns: repeat(10, 1fr) !important;
}
}
.has-col-10-md > * {
grid-column-span: 10;
grid-column: span 10;
}
@media screen and (min-width: 992px) {
.has-col-10-md > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 768px) {
.has-col-10-md {
grid-columns: (1fr) [10] !important;
grid-template-columns: repeat(10, 1fr) !important;
}
}
.has-col-10-lg > * {
grid-column-span: 10;
grid-column: span 10;
}
@media screen and (min-width: 992px) {
.has-col-10-lg > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 992px) {
.has-col-10-lg {
grid-columns: (1fr) [10] !important;
grid-template-columns: repeat(10, 1fr) !important;
}
}
.has-col-10-xl > * {
grid-column-span: 10;
grid-column: span 10;
}
@media screen and (min-width: 992px) {
.has-col-10-xl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1200px) {
.has-col-10-xl {
grid-columns: (1fr) [10] !important;
grid-template-columns: repeat(10, 1fr) !important;
}
}
.has-col-10-xxl > * {
grid-column-span: 10;
grid-column: span 10;
}
@media screen and (min-width: 992px) {
.has-col-10-xxl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1400px) {
.has-col-10-xxl {
grid-columns: (1fr) [10] !important;
grid-template-columns: repeat(10, 1fr) !important;
}
}
.has-col-11 {
grid-columns: (1fr) [11];
grid-template-columns: repeat(11, 1fr);
}
.has-col-11 > * {
grid-column-span: 11;
grid-column: span 11;
}
@media screen and (min-width: 992px) {
.has-col-11 > * {
grid-column-span: 1;
grid-column: span 1;
}
}
.has-col-11-xs > * {
grid-column-span: 11;
grid-column: span 11;
}
@media screen and (min-width: 992px) {
.has-col-11-xs > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 575.5px) {
.has-col-11-xs {
grid-columns: (1fr) [11] !important;
grid-template-columns: repeat(11, 1fr) !important;
}
}
.has-col-11-sm > * {
grid-column-span: 11;
grid-column: span 11;
}
@media screen and (min-width: 992px) {
.has-col-11-sm > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 576px) {
.has-col-11-sm {
grid-columns: (1fr) [11] !important;
grid-template-columns: repeat(11, 1fr) !important;
}
}
.has-col-11-md > * {
grid-column-span: 11;
grid-column: span 11;
}
@media screen and (min-width: 992px) {
.has-col-11-md > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 768px) {
.has-col-11-md {
grid-columns: (1fr) [11] !important;
grid-template-columns: repeat(11, 1fr) !important;
}
}
.has-col-11-lg > * {
grid-column-span: 11;
grid-column: span 11;
}
@media screen and (min-width: 992px) {
.has-col-11-lg > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 992px) {
.has-col-11-lg {
grid-columns: (1fr) [11] !important;
grid-template-columns: repeat(11, 1fr) !important;
}
}
.has-col-11-xl > * {
grid-column-span: 11;
grid-column: span 11;
}
@media screen and (min-width: 992px) {
.has-col-11-xl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1200px) {
.has-col-11-xl {
grid-columns: (1fr) [11] !important;
grid-template-columns: repeat(11, 1fr) !important;
}
}
.has-col-11-xxl > * {
grid-column-span: 11;
grid-column: span 11;
}
@media screen and (min-width: 992px) {
.has-col-11-xxl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1400px) {
.has-col-11-xxl {
grid-columns: (1fr) [11] !important;
grid-template-columns: repeat(11, 1fr) !important;
}
}
.has-col-12 {
grid-columns: (1fr) [12];
grid-template-columns: repeat(12, 1fr);
}
.has-col-12 > * {
grid-column-span: 12;
grid-column: span 12;
}
@media screen and (min-width: 992px) {
.has-col-12 > * {
grid-column-span: 1;
grid-column: span 1;
}
}
.has-col-12-xs > * {
grid-column-span: 12;
grid-column: span 12;
}
@media screen and (min-width: 992px) {
.has-col-12-xs > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 575.5px) {
.has-col-12-xs {
grid-columns: (1fr) [12] !important;
grid-template-columns: repeat(12, 1fr) !important;
}
}
.has-col-12-sm > * {
grid-column-span: 12;
grid-column: span 12;
}
@media screen and (min-width: 992px) {
.has-col-12-sm > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 576px) {
.has-col-12-sm {
grid-columns: (1fr) [12] !important;
grid-template-columns: repeat(12, 1fr) !important;
}
}
.has-col-12-md > * {
grid-column-span: 12;
grid-column: span 12;
}
@media screen and (min-width: 992px) {
.has-col-12-md > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 768px) {
.has-col-12-md {
grid-columns: (1fr) [12] !important;
grid-template-columns: repeat(12, 1fr) !important;
}
}
.has-col-12-lg > * {
grid-column-span: 12;
grid-column: span 12;
}
@media screen and (min-width: 992px) {
.has-col-12-lg > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 992px) {
.has-col-12-lg {
grid-columns: (1fr) [12] !important;
grid-template-columns: repeat(12, 1fr) !important;
}
}
.has-col-12-xl > * {
grid-column-span: 12;
grid-column: span 12;
}
@media screen and (min-width: 992px) {
.has-col-12-xl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1200px) {
.has-col-12-xl {
grid-columns: (1fr) [12] !important;
grid-template-columns: repeat(12, 1fr) !important;
}
}
.has-col-12-xxl > * {
grid-column-span: 12;
grid-column: span 12;
}
@media screen and (min-width: 992px) {
.has-col-12-xxl > * {
grid-column-span: 1;
grid-column: span 1;
}
}
@media screen and (min-width: 1400px) {
.has-col-12-xxl {
grid-columns: (1fr) [12] !important;
grid-template-columns: repeat(12, 1fr) !important;
}
}
.is-row-1 {
grid-row-span: 1;
grid-row: span 1;
}
@media screen and (min-width: 575.5px) {
.is-row-1-xs {
grid-row-span: 1 !important;
grid-row: span 1 !important;
}
}
.is-row-2 {
grid-row-span: 2;
grid-row: span 2;
}
@media screen and (min-width: 575.5px) {
.is-row-2-xs {
grid-row-span: 2 !important;
grid-row: span 2 !important;
}
}
.is-row-3 {
grid-row-span: 3;
grid-row: span 3;
}
@media screen and (min-width: 575.5px) {
.is-row-3-xs {
grid-row-span: 3 !important;
grid-row: span 3 !important;
}
}
.is-row-4 {
grid-row-span: 4;
grid-row: span 4;
}
@media screen and (min-width: 575.5px) {
.is-row-4-xs {
grid-row-span: 4 !important;
grid-row: span 4 !important;
}
}
.is-row-5 {
grid-row-span: 5;
grid-row: span 5;
}
@media screen and (min-width: 575.5px) {
.is-row-5-xs {
grid-row-span: 5 !important;
grid-row: span 5 !important;
}
}
.is-row-6 {
grid-row-span: 6;
grid-row: span 6;
}
@media screen and (min-width: 575.5px) {
.is-row-6-xs {
grid-row-span: 6 !important;
grid-row: span 6 !important;
}
}
.is-row-7 {
grid-row-span: 7;
grid-row: span 7;
}
@media screen and (min-width: 575.5px) {
.is-row-7-xs {
grid-row-span: 7 !important;
grid-row: span 7 !important;
}
}
.is-row-8 {
grid-row-span: 8;
grid-row: span 8;
}
@media screen and (min-width: 575.5px) {
.is-row-8-xs {
grid-row-span: 8 !important;
grid-row: span 8 !important;
}
}
.is-row-9 {
grid-row-span: 9;
grid-row: span 9;
}
@media screen and (min-width: 575.5px) {
.is-row-9-xs {
grid-row-span: 9 !important;
grid-row: span 9 !important;
}
}
.is-row-10 {
grid-row-span: 10;
grid-row: span 10;
}
@media screen and (min-width: 575.5px) {
.is-row-10-xs {
grid-row-span: 10 !important;
grid-row: span 10 !important;
}
}
.is-row-11 {
grid-row-span: 11;
grid-row: span 11;
}
@media screen and (min-width: 575.5px) {
.is-row-11-xs {
grid-row-span: 11 !important;
grid-row: span 11 !important;
}
}
.is-row-12 {
grid-row-span: 12;
grid-row: span 12;
}
@media screen and (min-width: 575.5px) {
.is-row-12-xs {
grid-row-span: 12 !important;
grid-row: span 12 !important;
}
}
.is-row-1 {
grid-row-span: 1;
grid-row: span 1;
}
@media screen and (min-width: 576px) {
.is-row-1-sm {
grid-row-span: 1 !important;
grid-row: span 1 !important;
}
}
.is-row-2 {
grid-row-span: 2;
grid-row: span 2;
}
@media screen and (min-width: 576px) {
.is-row-2-sm {
grid-row-span: 2 !important;
grid-row: span 2 !important;
}
}
.is-row-3 {
grid-row-span: 3;
grid-row: span 3;
}
@media screen and (min-width: 576px) {
.is-row-3-sm {
grid-row-span: 3 !important;
grid-row: span 3 !important;
}
}
.is-row-4 {
grid-row-span: 4;
grid-row: span 4;
}
@media screen and (min-width: 576px) {
.is-row-4-sm {
grid-row-span: 4 !important;
grid-row: span 4 !important;
}
}
.is-row-5 {
grid-row-span: 5;
grid-row: span 5;
}
@media screen and (min-width: 576px) {
.is-row-5-sm {
grid-row-span: 5 !important;
grid-row: span 5 !important;
}
}
.is-row-6 {
grid-row-span: 6;
grid-row: span 6;
}
@media screen and (min-width: 576px) {
.is-row-6-sm {
grid-row-span: 6 !important;
grid-row: span 6 !important;
}
}
.is-row-7 {
grid-row-span: 7;
grid-row: span 7;
}
@media screen and (min-width: 576px) {
.is-row-7-sm {
grid-row-span: 7 !important;
grid-row: span 7 !important;
}
}
.is-row-8 {
grid-row-span: 8;
grid-row: span 8;
}
@media screen and (min-width: 576px) {
.is-row-8-sm {
grid-row-span: 8 !important;
grid-row: span 8 !important;
}
}
.is-row-9 {
grid-row-span: 9;
grid-row: span 9;
}
@media screen and (min-width: 576px) {
.is-row-9-sm {
grid-row-span: 9 !important;
grid-row: span 9 !important;
}
}
.is-row-10 {
grid-row-span: 10;
grid-row: span 10;
}
@media screen and (min-width: 576px) {
.is-row-10-sm {
grid-row-span: 10 !important;
grid-row: span 10 !important;
}
}
.is-row-11 {
grid-row-span: 11;
grid-row: span 11;
}
@media screen and (min-width: 576px) {
.is-row-11-sm {
grid-row-span: 11 !important;
grid-row: span 11 !important;
}
}
.is-row-12 {
grid-row-span: 12;
grid-row: span 12;
}
@media screen and (min-width: 576px) {
.is-row-12-sm {
grid-row-span: 12 !important;
grid-row: span 12 !important;
}
}
.is-row-1 {
grid-row-span: 1;
grid-row: span 1;
}
@media screen and (min-width: 768px) {
.is-row-1-md {
grid-row-span: 1 !important;
grid-row: span 1 !important;
}
}
.is-row-2 {
grid-row-span: 2;
grid-row: span 2;
}
@media screen and (min-width: 768px) {
.is-row-2-md {
grid-row-span: 2 !important;
grid-row: span 2 !important;
}
}
.is-row-3 {
grid-row-span: 3;
grid-row: span 3;
}
@media screen and (min-width: 768px) {
.is-row-3-md {
grid-row-span: 3 !important;
grid-row: span 3 !important;
}
}
.is-row-4 {
grid-row-span: 4;
grid-row: span 4;
}
@media screen and (min-width: 768px) {
.is-row-4-md {
grid-row-span: 4 !important;
grid-row: span 4 !important;
}
}
.is-row-5 {
grid-row-span: 5;
grid-row: span 5;
}
@media screen and (min-width: 768px) {
.is-row-5-md {
grid-row-span: 5 !important;
grid-row: span 5 !important;
}
}
.is-row-6 {
grid-row-span: 6;
grid-row: span 6;
}
@media screen and (min-width: 768px) {
.is-row-6-md {
grid-row-span: 6 !important;
grid-row: span 6 !important;
}
}
.is-row-7 {
grid-row-span: 7;
grid-row: span 7;
}
@media screen and (min-width: 768px) {
.is-row-7-md {
grid-row-span: 7 !important;
grid-row: span 7 !important;
}
}
.is-row-8 {
grid-row-span: 8;
grid-row: span 8;
}
@media screen and (min-width: 768px) {
.is-row-8-md {
grid-row-span: 8 !important;
grid-row: span 8 !important;
}
}
.is-row-9 {
grid-row-span: 9;
grid-row: span 9;
}
@media screen and (min-width: 768px) {
.is-row-9-md {
grid-row-span: 9 !important;
grid-row: span 9 !important;
}
}
.is-row-10 {
grid-row-span: 10;
grid-row: span 10;
}
@media screen and (min-width: 768px) {
.is-row-10-md {
grid-row-span: 10 !important;
grid-row: span 10 !important;
}
}
.is-row-11 {
grid-row-span: 11;
grid-row: span 11;
}
@media screen and (min-width: 768px) {
.is-row-11-md {
grid-row-span: 11 !important;
grid-row: span 11 !important;
}
}
.is-row-12 {
grid-row-span: 12;
grid-row: span 12;
}
@media screen and (min-width: 768px) {
.is-row-12-md {
grid-row-span: 12 !important;
grid-row: span 12 !important;
}
}
.is-row-1 {
grid-row-span: 1;
grid-row: span 1;
}
@media screen and (min-width: 992px) {
.is-row-1-lg {
grid-row-span: 1 !important;
grid-row: span 1 !important;
}
}
.is-row-2 {
grid-row-span: 2;
grid-row: span 2;
}
@media screen and (min-width: 992px) {
.is-row-2-lg {
grid-row-span: 2 !important;
grid-row: span 2 !important;
}
}
.is-row-3 {
grid-row-span: 3;
grid-row: span 3;
}
@media screen and (min-width: 992px) {
.is-row-3-lg {
grid-row-span: 3 !important;
grid-row: span 3 !important;
}
}
.is-row-4 {
grid-row-span: 4;
grid-row: span 4;
}
@media screen and (min-width: 992px) {
.is-row-4-lg {
grid-row-span: 4 !important;
grid-row: span 4 !important;
}
}
.is-row-5 {
grid-row-span: 5;
grid-row: span 5;
}
@media screen and (min-width: 992px) {
.is-row-5-lg {
grid-row-span: 5 !important;
grid-row: span 5 !important;
}
}
.is-row-6 {
grid-row-span: 6;
grid-row: span 6;
}
@media screen and (min-width: 992px) {
.is-row-6-lg {
grid-row-span: 6 !important;
grid-row: span 6 !important;
}
}
.is-row-7 {
grid-row-span: 7;
grid-row: span 7;
}
@media screen and (min-width: 992px) {
.is-row-7-lg {
grid-row-span: 7 !important;
grid-row: span 7 !important;
}
}
.is-row-8 {
grid-row-span: 8;
grid-row: span 8;
}
@media screen and (min-width: 992px) {
.is-row-8-lg {
grid-row-span: 8 !important;
grid-row: span 8 !important;
}
}
.is-row-9 {
grid-row-span: 9;
grid-row: span 9;
}
@media screen and (min-width: 992px) {
.is-row-9-lg {
grid-row-span: 9 !important;
grid-row: span 9 !important;
}
}
.is-row-10 {
grid-row-span: 10;
grid-row: span 10;
}
@media screen and (min-width: 992px) {
.is-row-10-lg {
grid-row-span: 10 !important;
grid-row: span 10 !important;
}
}
.is-row-11 {
grid-row-span: 11;
grid-row: span 11;
}
@media screen and (min-width: 992px) {
.is-row-11-lg {
grid-row-span: 11 !important;
grid-row: span 11 !important;
}
}
.is-row-12 {
grid-row-span: 12;
grid-row: span 12;
}
@media screen and (min-width: 992px) {
.is-row-12-lg {
grid-row-span: 12 !important;
grid-row: span 12 !important;
}
}
.is-row-1 {
grid-row-span: 1;
grid-row: span 1;
}
@media screen and (min-width: 1200px) {
.is-row-1-xl {
grid-row-span: 1 !important;
grid-row: span 1 !important;
}
}
.is-row-2 {
grid-row-span: 2;
grid-row: span 2;
}
@media screen and (min-width: 1200px) {
.is-row-2-xl {
grid-row-span: 2 !important;
grid-row: span 2 !important;
}
}
.is-row-3 {
grid-row-span: 3;
grid-row: span 3;
}
@media screen and (min-width: 1200px) {
.is-row-3-xl {
grid-row-span: 3 !important;
grid-row: span 3 !important;
}
}
.is-row-4 {
grid-row-span: 4;
grid-row: span 4;
}
@media screen and (min-width: 1200px) {
.is-row-4-xl {
grid-row-span: 4 !important;
grid-row: span 4 !important;
}
}
.is-row-5 {
grid-row-span: 5;
grid-row: span 5;
}
@media screen and (min-width: 1200px) {
.is-row-5-xl {
grid-row-span: 5 !important;
grid-row: span 5 !important;
}
}
.is-row-6 {
grid-row-span: 6;
grid-row: span 6;
}
@media screen and (min-width: 1200px) {
.is-row-6-xl {
grid-row-span: 6 !important;
grid-row: span 6 !important;
}
}
.is-row-7 {
grid-row-span: 7;
grid-row: span 7;
}
@media screen and (min-width: 1200px) {
.is-row-7-xl {
grid-row-span: 7 !important;
grid-row: span 7 !important;
}
}
.is-row-8 {
grid-row-span: 8;
grid-row: span 8;
}
@media screen and (min-width: 1200px) {
.is-row-8-xl {
grid-row-span: 8 !important;
grid-row: span 8 !important;
}
}
.is-row-9 {
grid-row-span: 9;
grid-row: span 9;
}
@media screen and (min-width: 1200px) {
.is-row-9-xl {
grid-row-span: 9 !important;
grid-row: span 9 !important;
}
}
.is-row-10 {
grid-row-span: 10;
grid-row: span 10;
}
@media screen and (min-width: 1200px) {
.is-row-10-xl {
grid-row-span: 10 !important;
grid-row: span 10 !important;
}
}
.is-row-11 {
grid-row-span: 11;
grid-row: span 11;
}
@media screen and (min-width: 1200px) {
.is-row-11-xl {
grid-row-span: 11 !important;
grid-row: span 11 !important;
}
}
.is-row-12 {
grid-row-span: 12;
grid-row: span 12;
}
@media screen and (min-width: 1200px) {
.is-row-12-xl {
grid-row-span: 12 !important;
grid-row: span 12 !important;
}
}
.is-row-1 {
grid-row-span: 1;
grid-row: span 1;
}
@media screen and (min-width: 1400px) {
.is-row-1-xxl {
grid-row-span: 1 !important;
grid-row: span 1 !important;
}
}
.is-row-2 {
grid-row-span: 2;
grid-row: span 2;
}
@media screen and (min-width: 1400px) {
.is-row-2-xxl {
grid-row-span: 2 !important;
grid-row: span 2 !important;
}
}
.is-row-3 {
grid-row-span: 3;
grid-row: span 3;
}
@media screen and (min-width: 1400px) {
.is-row-3-xxl {
grid-row-span: 3 !important;
grid-row: span 3 !important;
}
}
.is-row-4 {
grid-row-span: 4;
grid-row: span 4;
}
@media screen and (min-width: 1400px) {
.is-row-4-xxl {
grid-row-span: 4 !important;
grid-row: span 4 !important;
}
}
.is-row-5 {
grid-row-span: 5;
grid-row: span 5;
}
@media screen and (min-width: 1400px) {
.is-row-5-xxl {
grid-row-span: 5 !important;
grid-row: span 5 !important;
}
}
.is-row-6 {
grid-row-span: 6;
grid-row: span 6;
}
@media screen and (min-width: 1400px) {
.is-row-6-xxl {
grid-row-span: 6 !important;
grid-row: span 6 !important;
}
}
.is-row-7 {
grid-row-span: 7;
grid-row: span 7;
}
@media screen and (min-width: 1400px) {
.is-row-7-xxl {
grid-row-span: 7 !important;
grid-row: span 7 !important;
}
}
.is-row-8 {
grid-row-span: 8;
grid-row: span 8;
}
@media screen and (min-width: 1400px) {
.is-row-8-xxl {
grid-row-span: 8 !important;
grid-row: span 8 !important;
}
}
.is-row-9 {
grid-row-span: 9;
grid-row: span 9;
}
@media screen and (min-width: 1400px) {
.is-row-9-xxl {
grid-row-span: 9 !important;
grid-row: span 9 !important;
}
}
.is-row-10 {
grid-row-span: 10;
grid-row: span 10;
}
@media screen and (min-width: 1400px) {
.is-row-10-xxl {
grid-row-span: 10 !important;
grid-row: span 10 !important;
}
}
.is-row-11 {
grid-row-span: 11;
grid-row: span 11;
}
@media screen and (min-width: 1400px) {
.is-row-11-xxl {
grid-row-span: 11 !important;
grid-row: span 11 !important;
}
}
.is-row-12 {
grid-row-span: 12;
grid-row: span 12;
}
@media screen and (min-width: 1400px) {
.is-row-12-xxl {
grid-row-span: 12 !important;
grid-row: span 12 !important;
}
}
.is-col-1 {
grid-column-span: 1;
grid-column: span 1;
}
@media screen and (min-width: 575.5px) {
.is-col-1-xs {
grid-column-span: 1 !important;
grid-column: span 1 !important;
}
}
.is-col-2 {
grid-column-span: 2;
grid-column: span 2;
}
@media screen and (min-width: 575.5px) {
.is-col-2-xs {
grid-column-span: 2 !important;
grid-column: span 2 !important;
}
}
.is-col-3 {
grid-column-span: 3;
grid-column: span 3;
}
@media screen and (min-width: 575.5px) {
.is-col-3-xs {
grid-column-span: 3 !important;
grid-column: span 3 !important;
}
}
.is-col-4 {
grid-column-span: 4;
grid-column: span 4;
}
@media screen and (min-width: 575.5px) {
.is-col-4-xs {
grid-column-span: 4 !important;
grid-column: span 4 !important;
}
}
.is-col-5 {
grid-column-span: 5;
grid-column: span 5;
}
@media screen and (min-width: 575.5px) {
.is-col-5-xs {
grid-column-span: 5 !important;
grid-column: span 5 !important;
}
}
.is-col-6 {
grid-column-span: 6;
grid-column: span 6;
}
@media screen and (min-width: 575.5px) {
.is-col-6-xs {
grid-column-span: 6 !important;
grid-column: span 6 !important;
}
}
.is-col-7 {
grid-column-span: 7;
grid-column: span 7;
}
@media screen and (min-width: 575.5px) {
.is-col-7-xs {
grid-column-span: 7 !important;
grid-column: span 7 !important;
}
}
.is-col-8 {
grid-column-span: 8;
grid-column: span 8;
}
@media screen and (min-width: 575.5px) {
.is-col-8-xs {
grid-column-span: 8 !important;
grid-column: span 8 !important;
}
}
.is-col-9 {
grid-column-span: 9;
grid-column: span 9;
}
@media screen and (min-width: 575.5px) {
.is-col-9-xs {
grid-column-span: 9 !important;
grid-column: span 9 !important;
}
}
.is-col-10 {
grid-column-span: 10;
grid-column: span 10;
}
@media screen and (min-width: 575.5px) {
.is-col-10-xs {
grid-column-span: 10 !important;
grid-column: span 10 !important;
}
}
.is-col-11 {
grid-column-span: 11;
grid-column: span 11;
}
@media screen and (min-width: 575.5px) {
.is-col-11-xs {
grid-column-span: 11 !important;
grid-column: span 11 !important;
}
}
.is-col-12 {
grid-column-span: 12;
grid-column: span 12;
}
@media screen and (min-width: 575.5px) {
.is-col-12-xs {
grid-column-span: 12 !important;
grid-column: span 12 !important;
}
}
.is-col-1 {
grid-column-span: 1;
grid-column: span 1;
}
@media screen and (min-width: 576px) {
.is-col-1-sm {
grid-column-span: 1 !important;
grid-column: span 1 !important;
}
}
.is-col-2 {
grid-column-span: 2;
grid-column: span 2;
}
@media screen and (min-width: 576px) {
.is-col-2-sm {
grid-column-span: 2 !important;
grid-column: span 2 !important;
}
}
.is-col-3 {
grid-column-span: 3;
grid-column: span 3;
}
@media screen and (min-width: 576px) {
.is-col-3-sm {
grid-column-span: 3 !important;
grid-column: span 3 !important;
}
}
.is-col-4 {
grid-column-span: 4;
grid-column: span 4;
}
@media screen and (min-width: 576px) {
.is-col-4-sm {
grid-column-span: 4 !important;
grid-column: span 4 !important;
}
}
.is-col-5 {
grid-column-span: 5;
grid-column: span 5;
}
@media screen and (min-width: 576px) {
.is-col-5-sm {
grid-column-span: 5 !important;
grid-column: span 5 !important;
}
}
.is-col-6 {
grid-column-span: 6;
grid-column: span 6;
}
@media screen and (min-width: 576px) {
.is-col-6-sm {
grid-column-span: 6 !important;
grid-column: span 6 !important;
}
}
.is-col-7 {
grid-column-span: 7;
grid-column: span 7;
}
@media screen and (min-width: 576px) {
.is-col-7-sm {
grid-column-span: 7 !important;
grid-column: span 7 !important;
}
}
.is-col-8 {
grid-column-span: 8;
grid-column: span 8;
}
@media screen and (min-width: 576px) {
.is-col-8-sm {
grid-column-span: 8 !important;
grid-column: span 8 !important;
}
}
.is-col-9 {
grid-column-span: 9;
grid-column: span 9;
}
@media screen and (min-width: 576px) {
.is-col-9-sm {
grid-column-span: 9 !important;
grid-column: span 9 !important;
}
}
.is-col-10 {
grid-column-span: 10;
grid-column: span 10;
}
@media screen and (min-width: 576px) {
.is-col-10-sm {
grid-column-span: 10 !important;
grid-column: span 10 !important;
}
}
.is-col-11 {
grid-column-span: 11;
grid-column: span 11;
}
@media screen and (min-width: 576px) {
.is-col-11-sm {
grid-column-span: 11 !important;
grid-column: span 11 !important;
}
}
.is-col-12 {
grid-column-span: 12;
grid-column: span 12;
}
@media screen and (min-width: 576px) {
.is-col-12-sm {
grid-column-span: 12 !important;
grid-column: span 12 !important;
}
}
.is-col-1 {
grid-column-span: 1;
grid-column: span 1;
}
@media screen and (min-width: 768px) {
.is-col-1-md {
grid-column-span: 1 !important;
grid-column: span 1 !important;
}
}
.is-col-2 {
grid-column-span: 2;
grid-column: span 2;
}
@media screen and (min-width: 768px) {
.is-col-2-md {
grid-column-span: 2 !important;
grid-column: span 2 !important;
}
}
.is-col-3 {
grid-column-span: 3;
grid-column: span 3;
}
@media screen and (min-width: 768px) {
.is-col-3-md {
grid-column-span: 3 !important;
grid-column: span 3 !important;
}
}
.is-col-4 {
grid-column-span: 4;
grid-column: span 4;
}
@media screen and (min-width: 768px) {
.is-col-4-md {
grid-column-span: 4 !important;
grid-column: span 4 !important;
}
}
.is-col-5 {
grid-column-span: 5;
grid-column: span 5;
}
@media screen and (min-width: 768px) {
.is-col-5-md {
grid-column-span: 5 !important;
grid-column: span 5 !important;
}
}
.is-col-6 {
grid-column-span: 6;
grid-column: span 6;
}
@media screen and (min-width: 768px) {
.is-col-6-md {
grid-column-span: 6 !important;
grid-column: span 6 !important;
}
}
.is-col-7 {
grid-column-span: 7;
grid-column: span 7;
}
@media screen and (min-width: 768px) {
.is-col-7-md {
grid-column-span: 7 !important;
grid-column: span 7 !important;
}
}
.is-col-8 {
grid-column-span: 8;
grid-column: span 8;
}
@media screen and (min-width: 768px) {
.is-col-8-md {
grid-column-span: 8 !important;
grid-column: span 8 !important;
}
}
.is-col-9 {
grid-column-span: 9;
grid-column: span 9;
}
@media screen and (min-width: 768px) {
.is-col-9-md {
grid-column-span: 9 !important;
grid-column: span 9 !important;
}
}
.is-col-10 {
grid-column-span: 10;
grid-column: span 10;
}
@media screen and (min-width: 768px) {
.is-col-10-md {
grid-column-span: 10 !important;
grid-column: span 10 !important;
}
}
.is-col-11 {
grid-column-span: 11;
grid-column: span 11;
}
@media screen and (min-width: 768px) {
.is-col-11-md {
grid-column-span: 11 !important;
grid-column: span 11 !important;
}
}
.is-col-12 {
grid-column-span: 12;
grid-column: span 12;
}
@media screen and (min-width: 768px) {
.is-col-12-md {
grid-column-span: 12 !important;
grid-column: span 12 !important;
}
}
.is-col-1 {
grid-column-span: 1;
grid-column: span 1;
}
@media screen and (min-width: 992px) {
.is-col-1-lg {
grid-column-span: 1 !important;
grid-column: span 1 !important;
}
}
.is-col-2 {
grid-column-span: 2;
grid-column: span 2;
}
@media screen and (min-width: 992px) {
.is-col-2-lg {
grid-column-span: 2 !important;
grid-column: span 2 !important;
}
}
.is-col-3 {
grid-column-span: 3;
grid-column: span 3;
}
@media screen and (min-width: 992px) {
.is-col-3-lg {
grid-column-span: 3 !important;
grid-column: span 3 !important;
}
}
.is-col-4 {
grid-column-span: 4;
grid-column: span 4;
}
@media screen and (min-width: 992px) {
.is-col-4-lg {
grid-column-span: 4 !important;
grid-column: span 4 !important;
}
}
.is-col-5 {
grid-column-span: 5;
grid-column: span 5;
}
@media screen and (min-width: 992px) {
.is-col-5-lg {
grid-column-span: 5 !important;
grid-column: span 5 !important;
}
}
.is-col-6 {
grid-column-span: 6;
grid-column: span 6;
}
@media screen and (min-width: 992px) {
.is-col-6-lg {
grid-column-span: 6 !important;
grid-column: span 6 !important;
}
}
.is-col-7 {
grid-column-span: 7;
grid-column: span 7;
}
@media screen and (min-width: 992px) {
.is-col-7-lg {
grid-column-span: 7 !important;
grid-column: span 7 !important;
}
}
.is-col-8 {
grid-column-span: 8;
grid-column: span 8;
}
@media screen and (min-width: 992px) {
.is-col-8-lg {
grid-column-span: 8 !important;
grid-column: span 8 !important;
}
}
.is-col-9 {
grid-column-span: 9;
grid-column: span 9;
}
@media screen and (min-width: 992px) {
.is-col-9-lg {
grid-column-span: 9 !important;
grid-column: span 9 !important;
}
}
.is-col-10 {
grid-column-span: 10;
grid-column: span 10;
}
@media screen and (min-width: 992px) {
.is-col-10-lg {
grid-column-span: 10 !important;
grid-column: span 10 !important;
}
}
.is-col-11 {
grid-column-span: 11;
grid-column: span 11;
}
@media screen and (min-width: 992px) {
.is-col-11-lg {
grid-column-span: 11 !important;
grid-column: span 11 !important;
}
}
.is-col-12 {
grid-column-span: 12;
grid-column: span 12;
}
@media screen and (min-width: 992px) {
.is-col-12-lg {
grid-column-span: 12 !important;
grid-column: span 12 !important;
}
}
.is-col-1 {
grid-column-span: 1;
grid-column: span 1;
}
@media screen and (min-width: 1200px) {
.is-col-1-xl {
grid-column-span: 1 !important;
grid-column: span 1 !important;
}
}
.is-col-2 {
grid-column-span: 2;
grid-column: span 2;
}
@media screen and (min-width: 1200px) {
.is-col-2-xl {
grid-column-span: 2 !important;
grid-column: span 2 !important;
}
}
.is-col-3 {
grid-column-span: 3;
grid-column: span 3;
}
@media screen and (min-width: 1200px) {
.is-col-3-xl {
grid-column-span: 3 !important;
grid-column: span 3 !important;
}
}
.is-col-4 {
grid-column-span: 4;
grid-column: span 4;
}
@media screen and (min-width: 1200px) {
.is-col-4-xl {
grid-column-span: 4 !important;
grid-column: span 4 !important;
}
}
.is-col-5 {
grid-column-span: 5;
grid-column: span 5;
}
@media screen and (min-width: 1200px) {
.is-col-5-xl {
grid-column-span: 5 !important;
grid-column: span 5 !important;
}
}
.is-col-6 {
grid-column-span: 6;
grid-column: span 6;
}
@media screen and (min-width: 1200px) {
.is-col-6-xl {
grid-column-span: 6 !important;
grid-column: span 6 !important;
}
}
.is-col-7 {
grid-column-span: 7;
grid-column: span 7;
}
@media screen and (min-width: 1200px) {
.is-col-7-xl {
grid-column-span: 7 !important;
grid-column: span 7 !important;
}
}
.is-col-8 {
grid-column-span: 8;
grid-column: span 8;
}
@media screen and (min-width: 1200px) {
.is-col-8-xl {
grid-column-span: 8 !important;
grid-column: span 8 !important;
}
}
.is-col-9 {
grid-column-span: 9;
grid-column: span 9;
}
@media screen and (min-width: 1200px) {
.is-col-9-xl {
grid-column-span: 9 !important;
grid-column: span 9 !important;
}
}
.is-col-10 {
grid-column-span: 10;
grid-column: span 10;
}
@media screen and (min-width: 1200px) {
.is-col-10-xl {
grid-column-span: 10 !important;
grid-column: span 10 !important;
}
}
.is-col-11 {
grid-column-span: 11;
grid-column: span 11;
}
@media screen and (min-width: 1200px) {
.is-col-11-xl {
grid-column-span: 11 !important;
grid-column: span 11 !important;
}
}
.is-col-12 {
grid-column-span: 12;
grid-column: span 12;
}
@media screen and (min-width: 1200px) {
.is-col-12-xl {
grid-column-span: 12 !important;
grid-column: span 12 !important;
}
}
.is-col-1 {
grid-column-span: 1;
grid-column: span 1;
}
@media screen and (min-width: 1400px) {
.is-col-1-xxl {
grid-column-span: 1 !important;
grid-column: span 1 !important;
}
}
.is-col-2 {
grid-column-span: 2;
grid-column: span 2;
}
@media screen and (min-width: 1400px) {
.is-col-2-xxl {
grid-column-span: 2 !important;
grid-column: span 2 !important;
}
}
.is-col-3 {
grid-column-span: 3;
grid-column: span 3;
}
@media screen and (min-width: 1400px) {
.is-col-3-xxl {
grid-column-span: 3 !important;
grid-column: span 3 !important;
}
}
.is-col-4 {
grid-column-span: 4;
grid-column: span 4;
}
@media screen and (min-width: 1400px) {
.is-col-4-xxl {
grid-column-span: 4 !important;
grid-column: span 4 !important;
}
}
.is-col-5 {
grid-column-span: 5;
grid-column: span 5;
}
@media screen and (min-width: 1400px) {
.is-col-5-xxl {
grid-column-span: 5 !important;
grid-column: span 5 !important;
}
}
.is-col-6 {
grid-column-span: 6;
grid-column: span 6;
}
@media screen and (min-width: 1400px) {
.is-col-6-xxl {
grid-column-span: 6 !important;
grid-column: span 6 !important;
}
}
.is-col-7 {
grid-column-span: 7;
grid-column: span 7;
}
@media screen and (min-width: 1400px) {
.is-col-7-xxl {
grid-column-span: 7 !important;
grid-column: span 7 !important;
}
}
.is-col-8 {
grid-column-span: 8;
grid-column: span 8;
}
@media screen and (min-width: 1400px) {
.is-col-8-xxl {
grid-column-span: 8 !important;
grid-column: span 8 !important;
}
}
.is-col-9 {
grid-column-span: 9;
grid-column: span 9;
}
@media screen and (min-width: 1400px) {
.is-col-9-xxl {
grid-column-span: 9 !important;
grid-column: span 9 !important;
}
}
.is-col-10 {
grid-column-span: 10;
grid-column: span 10;
}
@media screen and (min-width: 1400px) {
.is-col-10-xxl {
grid-column-span: 10 !important;
grid-column: span 10 !important;
}
}
.is-col-11 {
grid-column-span: 11;
grid-column: span 11;
}
@media screen and (min-width: 1400px) {
.is-col-11-xxl {
grid-column-span: 11 !important;
grid-column: span 11 !important;
}
}
.is-col-12 {
grid-column-span: 12;
grid-column: span 12;
}
@media screen and (min-width: 1400px) {
.is-col-12-xxl {
grid-column-span: 12 !important;
grid-column: span 12 !important;
}
}
body {
background: #fff;
font-size: 16px;
padding: 0;
margin: 0;
}
.large {
max-width: 37.5rem;
width: 100%;
}
div {
align-self: stretch;
justify-content: center;
}
.atlanta {
background: #80000a;
}
.austin {
background: #00b140;
}
.chicago {
background: #c2002f;
}
.cincinnati {
background: #e05d33;
}
.colorado {
background: #862634;
}
.columbus {
background: #fff200;
}
.dallas {
background: #bf203d;
}
.dc {
background: #161616;
}
.houston {
background: #ef742f;
}
.lafc {
background: #111720;
}
.la-galaxy {
background: #0063a7;
}
.miami {
background: #212322;
}
.minnesota {
background: #9bcde4;
}
.montreal {
background: #00529b;
}
.nashville {
background: #0f1145;
}
.new-england {
background: #10477b;
}
.nyfc {
background: #5790c5;
}
.ny-redbulls {
background: #ffd300;
}
.orlando {
background: #612b9b;
}
.philadelphia {
background: #001b2d;
}
.portland {
background: #004812;
}
.salt-lake {
background: #022b52;
}
.san-jose {
background: #0d4c92;
}
.seattle {
background: #539636;
}
.sporting-kc {
background: #91b0d5;
}
.toronto {
background: #ab1e2d;
}
.vancouver {
background: #94bde4;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.