/* Styles */ 
:root {
	--grid-spacing: 1.667rem; 
	--grid-small-spacing: 0.8335rem; 
	--grid-large-spacing: 3rem; 
	--flex-items-spaced-amount: 1.7%;
}

/* Next Level Flexible V1 */
[class*='flex-'] {
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-webkit-align-content: space-around;
	-ms-flex-line-pack: distribute;
	align-content: space-around;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

[class*='flex-'] .fit {
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}

[class*='flex-'] .auto {
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}

[class*='flex-'] .auto.fix {
	-ms-flex-shrink: 0;
	-webkit-flex-shrink: 0;
	flex-shrink: 0;
}

[class*='flex-'] .stretch {
	-webkit-align-self: stretch;
	-ms-flex-item-align: stretch;
	align-self: stretch;
}

[class*='flex-']:not([class*='-column']) .fit, [class*='flex-']:not([class*='-column']) .auto {
	width: auto;
}

[class*='flex-'][class*='-inline'] {
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
}

[class*='flex-'][class*='-center'] {
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

[class*='flex-'][class*='-end'] {
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

[class*='flex-'][class*='-start'] {
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

[class*='flex-'][class*='-between'], [class*='flex-'][class*='-spaced'], .items-spaced .item-spacing {
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

[class*='flex-'][class*='-around'] {
	-webkit-justify-content: space-around;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}

[class*='flex-'][class*='-evenly'] {
	-webkit-justify-content: space-evenly;
	-ms-flex-pack: space-evenly;
	justify-content: space-evenly;
}

[class*='flex-'][class*='-middle'] {
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

[class*='flex-'][class*='-top'] {
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
}

[class*='flex-'][class*='-baseline'] {
	-webkit-align-items: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
}

[class*='flex-'][class*='-bottom']:not([class*="mar-top"]):not([class*="pad-top"]) {
	-webkit-align-items: flex-end;
	-ms-flex-align: end;
	align-items: flex-end;
}

[class*='flex-'][class*='-wrap'] {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

[class*='flex-'][class*='-row'] {
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
}

[class*='flex-'][class*='-reverse'], [class*='flex-'][class*='-flip'] {
	-webkit-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

[class*='flex-'][class*='-column'] {
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

[class*='flex-'][class*='-flip'][class*='-column'], [class*='flex-'][class*='-reverse'][class*='-column'] {
	-webkit-flex-direction: column-reverse;
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse;
}
/* End Next Level Flexible V1 */

/* Flex Size & Spacing */

.full, 
.col-100-100 .item-widths > * {
	width: 100%;
}

.block-no-pad.full, 
.col-100-100 .item-widths > .block-no-pad {
	padding: 0 !important;
}

.col-100-100 [class*='flex-'].item-widths {
	display: block;
}

.col-100-100 [class*='flex-'][class*="margined"].item-widths > * + * {
	margin-top: var(--grid-small-spacing);
}

.half,
.col-50-50 .item-widths > * {
	width: 50%;
}

[class*='flex-'][class*='-spaced'] > .half,
.items-spaced .item-spacing > .half,
.col-50-50.items-spaced .item-spacing > * {
	width: calc( 50% - var(--flex-items-spaced-amount) );
}

.larger-half {
	width: 55%;
}

.smaller-half {
	width: 45%;
}

.third,
.col-33-66 .item-widths > *:first-child,
.col-66-33 .item-widths > *:last-child {
	width: 33.333%;
}


[class*='flex-'][class*='-spaced'] > .third,
.items-spaced .item-spacing > .third,
.col-33-66.items-spaced .item-widths.item-spacing > *:first-child,
.col-66-33.items-spaced .item-widths.item-spacing > *:last-child {
	width: calc( 33.333% - ( var(--flex-items-spaced-amount) * .6667 ) );
}

.two-thirds,
.col-66-33 .item-widths > *:first-child, 
.col-33-66 .item-widths > *:last-child {
	width: 66.6667%;
}

[class*='flex-'][class*='-spaced'] > .two-thirds,
.items-spaced .item-spacing > .two-thirds,
.col-66-33.items-spaced .item-widths.item-spacing > *:first-child, 
.col-33-66.items-spaced .item-widths.item-spacing > *:last-child {
	width: calc( 66.6667% - ( var(--flex-items-spaced-amount) * .75 ) );
}

.fourth,
.col-25-75 .item-widths > *:first-child,
.col-75-25 .item-widths > *:last-child {
	width: 25%;
}

[class*='flex-'][class*='-spaced'] > .fourth,
.items-spaced .item-spacing > .fourth,
.col-25-75.items-spaced .item-widths.item-spacing > *:first-child,
.col-75-25.items-spaced .item-widths.item-spacing > *:last-child {
	width: 25%;
}

.three-fourths,
.col-75-25 .item-widths > *:first-child, 
.col-25-75 .item-widths > *:last-child {
	width: 75%;
}

[class*='flex-'][class*='-spaced'] > .three-fourths,
.items-spaced .item-spacing > .three-fourths,
.col-75-25.items-spaced .item-widths.item-spacing > *:first-child, 
.col-25-75.items-spaced .item-widths.item-spacing > *:last-child {
	width: calc( 75% - ( var(--flex-items-spaced-amount) * 1.6667 ) );
}

.fifth {
	width: 20%;
}

.two-fifths,
.col-40-60 .item-widths > *:first-child,
.col-60-40 .item-widths > *:last-child {
	width: 40%;
}

[class*='flex-'][class*='-spaced'] > .two-fifths,
.items-spaced .item-spacing > .two-fifths,
.col-40-60.items-spaced .item-widths.item-spacing > *:first-child,
.col-60-40.items-spaced .item-widths.item-spacing > *:last-child {
	width: calc( 40% - ( var(--flex-items-spaced-amount) * .6667 ) );
}

.three-fifths,
.col-60-40 .item-widths > *:first-child, 
.col-40-60 .item-widths > *:last-child {
	width: 60%;
}

[class*='flex-'][class*='-spaced'] > .three-fifths,
.items-spaced .item-spacing > .three-fifths,
.col-60-40.items-spaced .item-widths.item-spacing > *:first-child, 
.col-40-60.items-spaced .item-widths.item-spacing > *:last-child {
	width: calc( 60% - ( var(--flex-items-spaced-amount) * 1.333 ) );
}

.four-fifths {
	width: 80%;
}

[class*='flex-'][class*='-spaced'] > .four-fifths,
.items-spaced .item-spacing > .four-fifths {
	width: calc( 80% - ( var(--flex-items-spaced-amount) * 1.6667 ) );
}

.sixth {
	width: 16.66%;
}

[class*='flex-'][class*='-spaced'] > .sixth {
	width: 14%;
}

/* End Flex Size & Spacing */



/* Grid Sizing */
[class*='flex-'][class*='-grid'] {
	position: relative;
	width: calc(100% + var(--grid-spacing));
	left: calc(var(--grid-spacing) * -.5);
}

[class*='flex-'][class*='-grid'][class*='-small'] {
	width: calc(100% + var(--grid-small-spacing));
	left: calc(var(--grid-small-spacing) * -.5);
}

[class*='flex-'][class*='-grid'][class*='-large'] {
	width: calc(100% + var(--grid-large-spacing));
	left: calc(var(--grid-large-spacing) * -.5);
}
[class*='flex-'][class*='-grid'] > * {
	margin: calc(var(--grid-spacing) * .5);
	flex: 1 1 auto;
}

[class*='flex-'][class*='-grid'] > *.fit {
	flex: 0 1 auto;
}

[class*='flex-'][class*='-grid'][class*='-small'] > * {
	margin: calc(var(--grid-small-spacing) * .5);
}

[class*='flex-'][class*='-grid'][class*='-large'] > * {
	margin: calc(var(--grid-large-spacing) * .5);
}

[class*='flex-'][class*='-grid'] > *.half, [class*='flex-'][class*='-grid'].items-2 > *.third {
	width: calc(50% - var(--grid-large-spacing));
	max-width: calc(50% - var(--grid-spacing));
}

[class*='flex-'][class*='-grid'][class*='-small'] > *.half, [class*='flex-'][class*='-grid'][class*='-small'].items-2 > *.third {
	max-width: calc(50% - var(--grid-small-spacing));
}

[class*='flex-'][class*='-grid'][class*='-large'] > *.half, [class*='flex-'][class*='-grid'][class*='-large'].items-2 > *.third {
	max-width: calc(50% - var(--grid-large-spacing));
}

[class*='flex-'][class*='-grid'] > *.third {
	width: calc(33.333% - var(--grid-large-spacing));
	max-width: calc(33.333% - var(--grid-spacing));
}

[class*='flex-'][class*='-grid'].items-2 > *.third {
	width: calc(50% - var(--grid-large-spacing));
	max-width: calc(50% - var(--grid-spacing));
}

[class*='flex-'][class*='-grid'][class*='-small'] > *.third {
	max-width: calc(33.333% - var(--grid-small-spacing));
}

[class*='flex-'][class*='-grid'][class*='-small'].items-2 > *.third {
	width: calc(50% - var(--grid-large-spacing));
	max-width: calc(50% - var(--grid-spacing));
}

[class*='flex-'][class*='-grid'][class*='-large'] > *.third {
	max-width: calc(33.333% - var(--grid-large-spacing));
}

[class*='flex-'][class*='-grid'][class*='-large'].items-2 > *.third {
	width: calc(50% - var(--grid-large-spacing));
	max-width: calc(50% - var(--grid-spacing));
}

[class*='flex-'][class*='-grid'] > *.two-thirds {
	width: calc(66.666% - var(--grid-large-spacing));
	max-width: calc(66.666% - var(--grid-spacing));
}

[class*='flex-'][class*='-grid'][class*='-small'] > *.two-thirds {
	max-width: calc(66.666% - var(--grid-small-spacing));
}

[class*='flex-'][class*='-grid'][class*='-large'] > *.two-thirds {
	max-width: calc(66.666% - var(--grid-large-spacing));
}

[class*='flex-'][class*='-grid'] > *.fourth {
	width: calc(25% - var(--grid-large-spacing));
	max-width: calc(25% - var(--grid-spacing));
}

[class*='flex-'][class*='-grid'][class*='-small'] > *.fourth {
	max-width: calc(25% - var(--grid-small-spacing));
}

[class*='flex-'][class*='-grid'][class*='-large'] > *.fourth {
	max-width: calc(25% - var(--grid-large-spacing));
}

[class*='flex-'][class*='-grid'] > *.three-fourths {
	width: calc(75% - var(--grid-large-spacing));
	max-width: calc(75% - var(--grid-spacing));
}

[class*='flex-'][class*='-grid'][class*='-small'] > *.three-fourths {
	max-width: calc(75% - var(--grid-small-spacing));
}

[class*='flex-'][class*='-grid'][class*='-large'] > *.three-fourths {
	max-width: calc(75% - var(--grid-large-spacing));
}

[class*='flex-'][class*='-grid'] > *.fifth {
	width: calc(20% - var(--grid-large-spacing));
	max-width: calc(20% - var(--grid-spacing));
}

[class*='flex-'][class*='-grid'][class*='-small'] > *.fifth {
	max-width: calc(20% - var(--grid-small-spacing));
}

[class*='flex-'][class*='-grid'][class*='-large'] > *.fifth {
	max-width: calc(20% - var(--grid-large-spacing));
}

[class*='flex-'][class*='-grid'] > *.two-fifths {
	width: calc(40% - var(--grid-large-spacing));
	max-width: calc(40% - var(--grid-spacing));
}

[class*='flex-'][class*='-grid'][class*='-small'] > *.two-fifths {
	max-width: calc(40% - var(--grid-small-spacing));
}

[class*='flex-'][class*='-grid'][class*='-large'] > *.two-fifths {
	max-width: calc(40% - var(--grid-large-spacing));
}

[class*='flex-'][class*='-grid'] > *.three-fifths {
	width: calc(60% - var(--grid-large-spacing));
	max-width: calc(60% - var(--grid-spacing));
}

[class*='flex-'][class*='-grid'][class*='-small'] > *.three-fifths {
	max-width: calc(60% - var(--grid-small-spacing));
}

[class*='flex-'][class*='-grid'][class*='-large'] > *.three-fifths {
	max-width: calc(60% - var(--grid-large-spacing));
}

[class*='flex-'][class*='-grid'] > *.four-fifths {
	width: calc(80% - var(--grid-large-spacing));
	max-width: calc(80% - var(--grid-spacing));
}

[class*='flex-'][class*='-grid'][class*='-small'] > *.four-fifths {
	max-width: calc(80% - var(--grid-small-spacing));
}

[class*='flex-'][class*='-grid'][class*='-large'] > *.four-fifths {
	max-width: calc(80% - var(--grid-large-spacing));
}

[class*='flex-'][class*='-grid'] > *.sixth {
	width: calc(16.666% - var(--grid-large-spacing));
	max-width: calc(16.666% - var(--grid-spacing));
}

[class*='flex-'][class*='-grid'][class*='-small'] > *.sixth {
	max-width: calc(16.666% - var(--grid-small-spacing));
}

[class*='flex-'][class*='-grid'][class*='-large'] > *.sixth {
	max-width: calc(16.666% - var(--grid-large-spacing));
}
/* Grid Sizing */


/* Two Items */
[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(2):first-of-type,
[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(2):first-of-type ~ * { 
	width: 50%; 
}

[class*="auto-size"][class*="flex-"][class*="-spaced"] > *:nth-last-of-type(2):first-of-type,
[class*="auto-size"][class*="flex-"][class*="-spaced"] > *:nth-last-of-type(2):first-of-type ~ * { 
	width: 49%; 
}

[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(2):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(2):first-of-type ~ * { 
	width: calc(50% - var(--grid-spacing));
}

[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(2):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(2):first-of-type ~ * { 
	width: calc(50% - var(--grid-small-spacing));
}

[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(2):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(2):first-of-type ~ * { 
	width: calc(50% - var(--grid-large-spacing));
}
/* End Two Items */

/* Three Items */
[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(3):first-of-type,
[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(3):first-of-type ~ * { 
	width: 33.333%;
}

[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(3):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(3):first-of-type ~ * { 
	width: calc(33.333% - var(--grid-spacing));
}

[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(3):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(3):first-of-type ~ * { 
	width: calc(33.333% - var(--grid-small-spacing));
}

[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(3):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(3):first-of-type ~ * { 
	width: calc(33.333% - var(--grid-large-spacing));
}
/* End Three Items */

/* Four Items */
[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(4):first-of-type,
[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(4):first-of-type ~ *, 
[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(7):first-of-type,
[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(7):first-of-type ~ *,
[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(8):first-of-type,
[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(8):first-of-type ~ * { 
	width: 25%;
}

[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(4):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(4):first-of-type ~ *, 
[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(7):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(7):first-of-type ~ *,
[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(8):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(8):first-of-type ~ * { 
	width: calc(25% - var(--grid-spacing));
}

[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(4):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(4):first-of-type ~ *, 
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(7):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(7):first-of-type ~ *,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(8):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(8):first-of-type ~ * { 
	width: calc(25% - var(--grid-small-spacing));
}

[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(4):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(4):first-of-type ~ *, 
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(7):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(7):first-of-type ~ *,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(8):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(8):first-of-type ~ * { 
	width: calc(25% - var(--grid-large-spacing));
}
/* End Four Items */

/* Five Items */
[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(5):first-of-type,
[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(5):first-of-type ~ *,
[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(9):first-of-type,
[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(9):first-of-type ~ *,
[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(10):first-of-type,
[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(10):first-of-type ~ *,
[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(13):first-of-type,
[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(13):first-of-type ~ *,
[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(14):first-of-type,
[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(14):first-of-type ~ *,
[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(15):first-of-type,
[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(15):first-of-type ~ * { 
	width: 20%;
}

[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(5):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(5):first-of-type ~ *, 
[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(9):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(9):first-of-type ~ *,
[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(10):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(10):first-of-type ~ *,
[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(13):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(13):first-of-type ~ *,
[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(14):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(14):first-of-type ~ *,
[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(15):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(15):first-of-type ~ * { 
	width: calc(20% - var(--grid-spacing));
}

[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(5):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(5):first-of-type ~ *, 
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(9):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(9):first-of-type ~ *,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(10):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(10):first-of-type ~ *,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(13):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(13):first-of-type ~ *,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(14):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(14):first-of-type ~ *,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(15):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(15):first-of-type ~ * { 
	width: calc(20% - var(--grid-small-spacing));
}

[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(5):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(5):first-of-type ~ *, 
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(9):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(9):first-of-type ~ *,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(10):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(10):first-of-type ~ *,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(13):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(13):first-of-type ~ *,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(14):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(14):first-of-type ~ *,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(15):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(15):first-of-type ~ * { 
	width: calc(20% - var(--grid-large-spacing));
}
/* End Five Items */

/* Six Items */
[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(6):first-of-type,
[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(6):first-of-type ~ *,
[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(11):first-of-type,
[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(11):first-of-type ~ *,
[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(12):first-of-type,
[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(12):first-of-type ~ *,
[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(16):first-of-type,
[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(16):first-of-type ~ *,
[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(17):first-of-type,
[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(17):first-of-type ~ *,
[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(18):first-of-type,
[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(18):first-of-type ~ * { 
	width: 16.666%;
}

[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(6):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(6):first-of-type ~ *,
[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(11):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(11):first-of-type ~ *,
[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(12):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(12):first-of-type ~ *,
[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(16):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(16):first-of-type ~ *,
[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(17):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(17):first-of-type ~ *,
[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(18):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(18):first-of-type ~ *{ 
	width: calc(16.666% - var(--grid-spacing));
}

[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(6):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(6):first-of-type ~ *,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(11):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(11):first-of-type ~ *,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(12):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(12):first-of-type ~ *,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(16):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(16):first-of-type ~ *,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(17):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(17):first-of-type ~ *,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(18):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(18):first-of-type ~ * { 
	width: calc(16.666% - var(--grid-small-spacing));
}

[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(6):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(6):first-of-type ~ *, 
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(11):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(11):first-of-type ~ *,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(12):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(12):first-of-type ~ *,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(16):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(16):first-of-type ~ *,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(17):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(17):first-of-type ~ *,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(18):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(18):first-of-type ~ * { 
	width: calc(16.666% - var(--grid-large-spacing));
}

[class*="auto-size"][class*="flex-"][class*='-grid'] > *.full {
	width: 100% !important;
}
/* End Six Items */

/* End Flex Auto Sizing */

/* Flex Auto Sizing Maxes */
/* Used to set the max amount of items you want per row */

[class*="auto-size"][class*="flex-"][class*="max-2"] > * {
	min-width: calc(50% - var(--grid-spacing))
}

[class*="auto-size"][class*="flex-"][class*='-grid'][class*="-small"][class*="max-2"] > * {
	min-width: calc(50% - var(--grid-small-spacing))
}

[class*="auto-size"][class*="flex-"][class*='-grid'][class*="-large"][class*="max-2"] > * {
	min-width: calc(50% - var(--grid-large-spacing))
}

[class*="auto-size"][class*="flex-"][class*="max-3"] > * {
	min-width: calc(33.333% - var(--grid-spacing))
}

[class*="auto-size"][class*="flex-"][class*='-grid'][class*="-small"][class*="max-3"] > * {
	min-width: calc(33.333% - var(--grid-small-spacing))
}

[class*="auto-size"][class*="flex-"][class*='-grid'][class*="-large"][class*="max-3"] > * {
	min-width: calc(33.333% - var(--grid-large-spacing))
}

[class*="auto-size"][class*="flex-"][class*="max-3"] > *:nth-last-of-type(4):first-of-type,
[class*="auto-size"][class*="flex-"][class*="max-3"] > *:nth-last-of-type(4):first-of-type ~ * { 
	min-width: calc(50% - var(--grid-spacing));
}

[class*="auto-size"][class*="flex-"][class*='-grid'][class*="-small"][class*="max-3"] > *:nth-last-of-type(4):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*="-small"][class*="max-3"] > *:nth-last-of-type(4):first-of-type ~ * { 
	min-width: calc(50% - var(--grid-small-spacing));
}

[class*="auto-size"][class*="flex-"][class*='-grid'][class*="-large"][class*="max-3"] > *:nth-last-of-type(4):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*="-large"][class*="max-3"] > *:nth-last-of-type(4):first-of-type ~ * { 
	min-width: calc(50% - var(--grid-large-spacing));
}

[class*="auto-size"][class*="flex-"][class*="max-4"] > * {
	min-width: calc(25% - var(--grid-spacing))
}

[class*="auto-size"][class*="flex-"][class*='-grid'][class*="-small"][class*="max-4"] > * {
	min-width: calc(25% - var(--grid-small-spacing))
}

[class*="auto-size"][class*="flex-"][class*='-grid'][class*="-large"][class*="max-4"] > * {
	min-width: calc(25% - var(--grid-large-spacing))
}

[class*="auto-size"][class*="flex-"][class*="max-4"] > *:nth-last-of-type(5):first-of-type,
[class*="auto-size"][class*="flex-"][class*="max-4"] > *:nth-last-of-type(5):first-of-type ~ *,
[class*="auto-size"][class*="flex-"][class*="max-4"] > *:nth-last-of-type(6):first-of-type,
[class*="auto-size"][class*="flex-"][class*="max-4"] > *:nth-last-of-type(6):first-of-type ~ *,
[class*="auto-size"][class*="flex-"][class*="max-4"] > *:nth-last-of-type(9):first-of-type,
[class*="auto-size"][class*="flex-"][class*="max-4"] > *:nth-last-of-type(9):first-of-type ~ * { 
	min-width: calc(33.333% - var(--grid-spacing));
}

[class*="auto-size"][class*="flex-"][class*='-grid'][class*="-small"][class*="max-4"] > *:nth-last-of-type(5):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*="-small"][class*="max-4"] > *:nth-last-of-type(5):first-of-type ~ *,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*="-small"][class*="max-4"] > *:nth-last-of-type(6):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*="-small"][class*="max-4"] > *:nth-last-of-type(6):first-of-type ~ *,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*="-small"][class*="max-4"] > *:nth-last-of-type(9):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*="-small"][class*="max-4"] > *:nth-last-of-type(9):first-of-type ~ *{ 
	min-width: calc(33.333% - var(--grid-small-spacing));
}

[class*="auto-size"][class*="flex-"][class*='-grid'][class*="-large"][class*="max-4"] > *:nth-last-of-type(5):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*="-large"][class*="max-4"] > *:nth-last-of-type(5):first-of-type ~ *,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*="-large"][class*="max-4"] > *:nth-last-of-type(6):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*="-large"][class*="max-4"] > *:nth-last-of-type(6):first-of-type ~ *,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*="-large"][class*="max-4"] > *:nth-last-of-type(9):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*="-large"][class*="max-4"] > *:nth-last-of-type(9):first-of-type ~ * { 
	min-width: calc(33.333% - var(--grid-large-spacing));
}

[class*="auto-size"][class*="flex-"][class*="max-5"] > * {
	min-width: calc(20% - var(--grid-spacing))
}

[class*="auto-size"][class*="flex-"][class*='-grid'][class*="-small"][class*="max-5"] > * {
	min-width: calc(20% - var(--grid-small-spacing))
}

[class*="auto-size"][class*="flex-"][class*='-grid'][class*="-large"][class*="max-5"] > * {
	min-width: calc(20% - var(--grid-large-spacing))
}

[class*="auto-size"][class*="flex-"][class*="max-5"] > *:nth-last-of-type(6):first-of-type,
[class*="auto-size"][class*="flex-"][class*="max-5"] > *:nth-last-of-type(6):first-of-type ~ *{
	min-width: calc(33.333% - var(--grid-spacing));
}

[class*="auto-size"][class*="flex-"][class*='-grid'][class*="-small"][class*="max-5"] > *:nth-last-of-type(6):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*="-small"][class*="max-5"] > *:nth-last-of-type(6):first-of-type ~ *{
	min-width: calc(33.333% - var(--grid-small-spacing));
}

[class*="auto-size"][class*="flex-"][class*='-grid'][class*="-large"][class*="max-5"] > *:nth-last-of-type(6):first-of-type,
[class*="auto-size"][class*="flex-"][class*='-grid'][class*="-large"][class*="max-5"] > *:nth-last-of-type(6):first-of-type ~ *{
	min-width: calc(33.333% - var(--grid-large-spacing));
}

[class*="auto-size"][class*="flex-"][class*="max-5"] > *:nth-last-of-type(7):first-of-type,
[class*="auto-size"][class*="flex-"][class*="max-5"] > *:nth-last-of-type(7):first-of-type ~ *,
[class*="auto-size"][class*="flex-"][class*="max-5"] > *:nth-last-of-type(8):first-of-type,
[class*="auto-size"][class*="flex-"][class*="max-5"] > *:nth-last-of-type(8):first-of-type ~ * { 
	min-width: calc(25% - var(--grid-spacing));
}

[class*="auto-size"][class*="flex-"][class*="max-5"][class*='-grid'][class*='-small'] > *:nth-last-of-type(7):first-of-type,
[class*="auto-size"][class*="flex-"][class*="max-5"][class*='-grid'][class*='-small'] > *:nth-last-of-type(7):first-of-type ~ *,
[class*="auto-size"][class*="flex-"][class*="max-5"][class*='-grid'][class*='-small'] > *:nth-last-of-type(8):first-of-type,
[class*="auto-size"][class*="flex-"][class*="max-5"][class*='-grid'][class*='-small'] > *:nth-last-of-type(8):first-of-type ~ * { 
	min-width: calc(25% - var(--grid-small-spacing));
}

[class*="auto-size"][class*="flex-"][class*="max-5"][class*='-grid'][class*='-large'] > *:nth-last-of-type(7):first-of-type,
[class*="auto-size"][class*="flex-"][class*="max-5"][class*='-grid'][class*='-large'] > *:nth-last-of-type(7):first-of-type ~ *,
[class*="auto-size"][class*="flex-"][class*="max-5"][class*='-grid'][class*='-large'] > *:nth-last-of-type(8):first-of-type,
[class*="auto-size"][class*="flex-"][class*="max-5"][class*='-grid'][class*='-large'] > *:nth-last-of-type(8):first-of-type ~ * { 
	min-width: calc(25% - var(--grid-large-spacing));
}

/* Flex Auto Sizing Maxes */

/* Next Level Flexible - Sizing & Spacing V1 */
.full {
	width: 100%;
}

.half {
	width: 50%;
}

[class*='flex-'][class*='-spaced'] > .half {
	width: 49%;
}

.third {
	width: 33.333%;
}

[class*='flex-'][class*='-spaced'] > .third {
	width: 32%;
}

.two-thirds {
	width: 66.6667%;
}

[class*='flex-'][class*='-spaced'] > .two-thirds {
	width: 64%;
}

.fourth {
	width: 25%;
}

[class*='flex-'][class*='-spaced'] > .fourth {
	width: 24%;
}

.three-fourths {
	width: 75%;
}

[class*='flex-'][class*='-spaced'] > .three-fourths {
	width: 73%;
}

.fifth {
	width: 20%;
}

[class*='flex-'][class*='-spaced'] > .fifth {
	width: 18%;
}

.two-fifths {
	width: 40%;
}

[class*='flex-'][class*='-spaced'] > .two-fifths {
	width: 38%;
}

.three-fifths {
	width: 60%;
}

[class*='flex-'][class*='-spaced'] > .three-fifths {
	width: 58%;
}

.four-fifths {
	width: 80%;
}
/* End Next Level Flexible - Sizing & Spacing V1 */
/* 1600px Responsive */
@media screen and (max-width:1600px) {
		
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(11):first-of-type,
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(11):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(12):first-of-type,
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(12):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(16):first-of-type,
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(16):first-of-type ~ * { 
		width: 25%;
	}
	
	[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(11):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(11):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(12):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(12):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(16):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(16):first-of-type ~ * { 
		width: calc(25% - var(--grid-spacing));
	}
	
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(11):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(11):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(12):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(12):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(16):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(16):first-of-type ~ * { 
		width: calc(25% - var(--grid-small-spacing));
	}
	
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(11):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(11):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(12):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(12):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(16):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(16):first-of-type ~ * { 
		width: calc(25% - var(--grid-large-spacing));
	}
	
	[class*="auto-size"][class*="flex-"] > * { 
		min-width: calc(20% - var(--grid-spacing));
	}
	
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > * { 
		min-width: calc(20% - var(--grid-small-spacing));
	}
	
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > * { 
		min-width: calc(20% - var(--grid-large-spacing));
	}	
	
	[class*='flex-'][class*="-block-1600"][class*="-grid"] {
		width: 100%;
		left: 0;
	}
	
	[class*='flex-'][class*="-block-1600"][class*="-grid"] > * {
		max-width: none !important;
	}	
	
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(6):first-of-type,
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(6):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(11):first-of-type,
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(11):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(12):first-of-type,
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(12):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(16):first-of-type,
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(16):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(17):first-of-type,
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(17):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(18):first-of-type,
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(18):first-of-type ~ * { 
		width: 33.333%;
	}
	
	[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(6):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(6):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(11):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(11):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(12):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(12):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(16):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(16):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(17):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(17):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(18):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(18):first-of-type ~ *{ 
		width: calc(33.333% - var(--grid-spacing));
	}
	
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(6):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(6):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(11):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(11):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(12):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(12):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(16):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(16):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(17):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(17):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(18):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(18):first-of-type ~ * { 
		width: calc(33.333% - var(--grid-small-spacing));
	}
	
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(6):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(6):first-of-type ~ *, 
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(11):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(11):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(12):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(12):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(16):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(16):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(17):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(17):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(18):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(18):first-of-type ~ * { 
		width: calc(33.333% - var(--grid-large-spacing));
	}

	[class*="auto-size"][class*='flex-'][class*="-break-1600"] > * {
		min-width: calc(50% - var(--grid-spacing));
	}
	
	[class*="auto-size"][class*='flex-'][class*='-grid'][class*='-small'][class*="-break-1600"] > * {
		min-width: calc(50% - var(--grid-small-spacing));
	}
	
	[class*="auto-size"][class*='flex-'][class*='-grid'][class*='-large'][class*="-break-1600"] > * {
		min-width: calc(50% - var(--grid-large-spacing));
	}
	
	[class*="auto-size"][class*="flex-"][class*="-break-1600"][class*="max-4"] > *,
	[class*="auto-size"][class*="flex-"][class*="-break-1600"][class*="max-5"] > * { 
		min-width: calc(33.333% - var(--grid-spacing));
	}
	
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'][class*="-break-1600"][class*="max-4"] > *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'][class*="-break-1600"][class*="max-5"] > * { 
		min-width: calc(33.333% - var(--grid-small-spacing));
	}
	
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'][class*="-break-1600"][class*="max-4"] > *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'][class*="-break-1600"][class*="max-5"] > * { 
		min-width: calc(33.333% - var(--grid-large-spacing));
	}

	[class*="auto-size"][class*="flex-"][class*="-break-1600"][class*="max-4"] > *:nth-last-of-type(4):first-of-type,
	[class*="auto-size"][class*="flex-"][class*="-break-1600"][class*="max-4"] > *:nth-last-of-type(4):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"][class*="-break-1600"][class*="max-5"] > *:nth-last-of-type(4):first-of-type,
	[class*="auto-size"][class*="flex-"][class*="-break-1600"][class*="max-5"] > *:nth-last-of-type(4):first-of-type ~ * { 
		min-width: calc(50% - var(--grid-spacing));
	}
	
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'][class*="-break-1600"][class*="max-4"] > *:nth-last-of-type(4):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'][class*="-break-1600"][class*="max-4"] > *:nth-last-of-type(4):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'][class*="-break-1600"][class*="max-5"] > *:nth-last-of-type(4):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'][class*="-break-1600"][class*="max-5"] > *:nth-last-of-type(4):first-of-type ~ * { 
		min-width: calc(50% - var(--grid-small-spacing));
	}
	
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'][class*="-break-1600"][class*="max-4"] > *:nth-last-of-type(4):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'][class*="-break-1600"][class*="max-4"] > *:nth-last-of-type(4):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'][class*="-break-1600"][class*="max-5"] > *:nth-last-of-type(4):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'][class*="-break-1600"][class*="max-5"] > *:nth-last-of-type(4):first-of-type ~ * { 
		min-width: calc(50% - var(--grid-large-spacing));
	}
	
	
	[class*="flex-"][class*="-block-1600"] > *, [class*="flex-"][class*="-block-1600"] > .full,	[class*="flex-"][class*="-block-1600"][class*="-grid"] > *, [class*="flex-"][class*="-block-1600"][class*="-grid"] > .full,	
	[class*="flex-"][class*="-block-1600"] > .half,	[class*="flex-"][class*="-block-1600"][class*="-grid"] > .half,
	[class*="flex-"][class*="-block-1600"] > .third, [class*="flex-"][class*="-block-1600"] > .two-thirds, [class*="flex-"][class*="-block-1600"][class*="-grid"] > .third, [class*="flex-"][class*="-block-1600"][class*="-grid"] > .two-thirds,
	[class*="flex-"][class*="-block-1600"] > .fourth, [class*="flex-"][class*="-block-1600"] > .three-fourths, [class*="flex-"][class*="-block-1600"][class*="-grid"] > .fourth, [class*="flex-"][class*="-block-1600"][class*="-grid"] > .three-fourths,
	[class*="flex-"][class*="-block-1600"] > .fifth, [class*="flex-"][class*="-block-1600"] > .two-fifths, [class*="flex-"][class*="-block-1600"] > .three-fifths, [class*="flex-"][class*="-block-1600"][class*="-grid"] > .fifth, [class*="flex-"][class*="-block-1600"][class*="-grid"] > .two-fifths, [class*="flex-"][class*="-block-1600"][class*="-grid"] > .three-fifths, 
	[class*="flex-"][class*="-block-1600"] > .sixth	[class*="flex-"][class*="-block-1600"][class*="-grid"] > .sixth {
		width: 100%;
		max-width: none;
		min-width: 0;
		margin-left: initial;
		margin-right: initial;
	}
	
}
/* End 1600px Responsive */

/* 1440px Responsive */
@media screen and (max-width:1440px) {
		
	[class*='flex-'][class*="-block-1440"][class*="-grid"] {
		width: 100%;
		left: 0;
	}
	
	[class*='flex-'][class*="-block-1440"][class*="-grid"] > * {
		max-width: none !important;
	}	
	
	[class*="auto-size"][class*='flex-'][class*="-break-1440"] > *,
	[class*="auto-size"][class*="flex-"][class*="-break-1600"][class*="max-4"] > *,
	[class*="auto-size"][class*="flex-"][class*="-break-1600"][class*="max-4"] > *:nth-last-of-type(4):first-of-type,
	[class*="auto-size"][class*="flex-"][class*="-break-1600"][class*="max-4"] > *:nth-last-of-type(4):first-of-type ~ * {
		min-width: calc(50% - var(--grid-spacing));
	}
	
	[class*="auto-size"][class*='flex-'][class*='-grid'][class*='-small'][class*="-break-1440"] > *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'][class*="-break-1600"][class*="max-4"] > *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'][class*="-break-1600"][class*="max-4"] > *:nth-last-of-type(4):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'][class*="-break-1600"][class*="max-4"] > *:nth-last-of-type(4):first-of-type ~ * {
		min-width: calc(50% - var(--grid-small-spacing));
	}
	
	[class*="auto-size"][class*='flex-'][class*='-grid'][class*='-large'][class*="-break-1440"] > *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'][class*="-break-1600"][class*="max-4"] > *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'][class*="-break-1600"][class*="max-4"] > *:nth-last-of-type(4):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'][class*="-break-1600"][class*="max-4"] > *:nth-last-of-type(4):first-of-type ~ * {
		min-width: calc(50% - var(--grid-large-spacing));
	}
	
	[class*="auto-size"][class*="flex-"][class*="-break-1440"][class*="max-5"] > * { 
		min-width: calc(50% - var(--grid-spacing));
	}
	
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'][class*="-break-1440"][class*="max-5"] > * { 
		min-width: calc(50% - var(--grid-small-spacing));
	}
	
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'][class*="-break-1440"][class*="max-5"] > * { 
		min-width: calc(50% - var(--grid-large-spacing));
	}

	[class*="auto-size"][class*="flex-"][class*="-break-1440"][class*="max-5"] > *:nth-last-of-type(4):first-of-type,
	[class*="auto-size"][class*="flex-"][class*="-break-1440"][class*="max-5"] > *:nth-last-of-type(4):first-of-type ~ * { 
		min-width: calc(50% - var(--grid-spacing));
	}
	
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'][class*="-break-1440"][class*="max-5"] > *:nth-last-of-type(4):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'][class*="-break-1440"][class*="max-5"] > *:nth-last-of-type(4):first-of-type ~ * { 
		min-width: calc(50% - var(--grid-small-spacing));
	}
	
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'][class*="-break-1440"][class*="max-5"] > *:nth-last-of-type(4):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'][class*="-break-1440"][class*="max-5"] > *:nth-last-of-type(4):first-of-type ~ * { 
		min-width: calc(50% - var(--grid-large-spacing));
	}
	
	[class*='flex-'][class*="-block-1440"], [class*='flex-'][class*="-block-1440"][class*="-grid"] {
		width: 100%;
		left: 0;
		display: block;
	}
	
	[class*="flex-"][class*="-block-1440"] > *, [class*="flex-"][class*="-block-1440"] > .full,	[class*="flex-"][class*="-block-1440"][class*="-grid"] > *, [class*="flex-"][class*="-block-1440"][class*="-grid"] > .full,	
	[class*="flex-"][class*="-block-1440"] > .half,	[class*="flex-"][class*="-block-1440"][class*="-grid"] > .half,
	[class*="flex-"][class*="-block-1440"] > .third, [class*="flex-"][class*="-block-1440"] > .two-thirds, [class*="flex-"][class*="-block-1440"][class*="-grid"] > .third, [class*="flex-"][class*="-block-1440"][class*="-grid"] > .two-thirds,
	[class*="flex-"][class*="-block-1440"] > .fourth, [class*="flex-"][class*="-block-1440"] > .three-fourths, [class*="flex-"][class*="-block-1440"][class*="-grid"] > .fourth, [class*="flex-"][class*="-block-1440"][class*="-grid"] > .three-fourths,
	[class*="flex-"][class*="-block-1440"] > .fifth, [class*="flex-"][class*="-block-1440"] > .two-fifths, [class*="flex-"][class*="-block-1440"] > .three-fifths, [class*="flex-"][class*="-block-1440"][class*="-grid"] > .fifth, [class*="flex-"][class*="-block-1440"][class*="-grid"] > .two-fifths, [class*="flex-"][class*="-block-1440"][class*="-grid"] > .three-fifths, 
	[class*="flex-"][class*="-block-1440"] > .sixth	[class*="flex-"][class*="-block-1440"][class*="-grid"] > .sixth {
		width: 100%;
		max-width: none;
		min-width: 0;
		margin-left: initial;
		margin-right: initial;
	}
}
/* End 1440px Responsive */

/* 1280px Responsive */
@media screen and (max-width:1280px) {
	
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(5):first-of-type,
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(5):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(9):first-of-type,
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(9):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(13):first-of-type,
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(13):first-of-type ~ * {
		width: 33.333%;
	}
	
	[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(5):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(5):first-of-type ~ *, 
	[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(9):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(9):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(13):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(13):first-of-type ~ * {
		width: calc(33.333% - var(--grid-spacing));
	}
	
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(5):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(5):first-of-type ~ *, 
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(9):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(9):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(13):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(13):first-of-type ~ * { 
		width: calc(33.333% - var(--grid-small-spacing));
	}
	
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(5):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(5):first-of-type ~ *, 
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(9):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(9):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(13):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(13):first-of-type ~ * { 
		width: calc(50% - var(--grid-large-spacing));
	}
	
	[class*="auto-size"][class*="flex-"] > * { 
		min-width: calc(25% - var(--grid-spacing));
	}
	
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > * { 
		min-width: calc(25% - var(--grid-small-spacing));
	}
	
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > * { 
		min-width: calc(25% - var(--grid-large-spacing));
	}
	
	[class*='flex-'][class*="-block-1280"][class*="-grid"] {
		width: 100%;
		left: 0;
	}
	
	[class*='flex-'][class*="-block-1280"][class*="-grid"] > * {
		max-width: none !important;
	}	
	
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(6):first-of-type,
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(6):first-of-type ~ * { 
		width: 33.333%;
	}
	
	[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(6):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(6):first-of-type ~ * { 
		width: calc(33.333% - var(--grid-spacing));
	}
	
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(6):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(6):first-of-type ~ * { 
		width: calc(33.333% - var(--grid-small-spacing));
	}
	
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(6):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(6):first-of-type ~ * { 
		width: calc(50% - var(--grid-large-spacing));
	}
	
	[class*="auto-size"][class*='flex-'][class*="-break-1280"] > *,
	[class*="auto-size"][class*="flex-"][class*="-break-1440"][class*="max-5"] > *,
	[class*="auto-size"][class*="flex-"][class*="-break-1440"][class*="max-5"] > *:nth-last-of-type(4):first-of-type,
	[class*="auto-size"][class*="flex-"][class*="-break-1440"][class*="max-5"] > *:nth-last-of-type(4):first-of-type ~ * {
		min-width: calc(50% - var(--grid-spacing)) !important;
	}
	
	[class*="auto-size"][class*='flex-'][class*='-grid'][class*='-small'][class*="-break-1280"] > *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'][class*="-break-1440"][class*="max-5"] > *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'][class*="-break-1440"][class*="max-5"] > *:nth-last-of-type(4):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'][class*="-break-1440"][class*="max-5"] > *:nth-last-of-type(4):first-of-type ~ * {
		min-width: calc(50% - var(--grid-small-spacing)) !important;
	}
	
	[class*="auto-size"][class*='flex-'][class*='-grid'][class*='-large'][class*="-break-1280"] > *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'][class*="-break-1440"][class*="max-5"] > *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'][class*="-break-1440"][class*="max-5"] > *:nth-last-of-type(4):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'][class*="-break-1440"][class*="max-5"] > *:nth-last-of-type(4):first-of-type ~ * {
		min-width: calc(50% - var(--grid-large-spacing)) !important;
	}
	
	[class*='flex-'][class*="-block-1280"], [class*='flex-'][class*="-block-1280"][class*="-grid"] {
		width: 100%;
		left: 0;
		display: block;
	}
	
	[class*="flex-"][class*="-block-1280"] > *, [class*="flex-"][class*="-block-1280"] > .full,	[class*="flex-"][class*="-block-1280"][class*="-grid"] > *, [class*="flex-"][class*="-block-1280"][class*="-grid"] > .full,	
	[class*="flex-"][class*="-block-1280"] > .half,	[class*="flex-"][class*="-block-1280"][class*="-grid"] > .half,
	[class*="flex-"][class*="-block-1280"] > .third, [class*="flex-"][class*="-block-1280"] > .two-thirds, [class*="flex-"][class*="-block-1280"][class*="-grid"] > .third, [class*="flex-"][class*="-block-1280"][class*="-grid"] > .two-thirds,
	[class*="flex-"][class*="-block-1280"] > .fourth, [class*="flex-"][class*="-block-1280"] > .three-fourths, [class*="flex-"][class*="-block-1280"][class*="-grid"] > .fourth, [class*="flex-"][class*="-block-1280"][class*="-grid"] > .three-fourths,
	[class*="flex-"][class*="-block-1280"] > .fifth, [class*="flex-"][class*="-block-1280"] > .two-fifths, [class*="flex-"][class*="-block-1280"] > .three-fifths, [class*="flex-"][class*="-block-1280"][class*="-grid"] > .fifth, [class*="flex-"][class*="-block-1280"][class*="-grid"] > .two-fifths, [class*="flex-"][class*="-block-1280"][class*="-grid"] > .three-fifths, 
	[class*="flex-"][class*="-block-1280"] > .sixth	[class*="flex-"][class*="-block-1280"][class*="-grid"] > .sixth {
		width: 100%;
		max-width: none;
		min-width: 0;
		margin-left: initial;
		margin-right: initial;
	}
	
}
/* End 1280px Responsive */

/* 1024px Responsive */
@media screen and (max-width:1024px) {
	
	[class*="auto-size"][class*="flex-"] > * {
		min-width: calc(33.333% - var(--grid-spacing));
	}
	
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > * {
		min-width: calc(33.333% - var(--grid-small-spacing));
	}
	
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > * {
		min-width: calc(33.333% - var(--grid-large-spacing));
	}
		
	[class*='flex-'][class*="-block-1024"][class*="-grid"] {
		width: 100%;
		left: 0;
	}
	
	[class*='flex-'][class*="-block-1024"][class*="-grid"] > * {
		max-width: none !important;
	}
	
	
	[class*="auto-size"][class*='flex-'][class*="-break-1024"] > *,
	[class*="auto-size"][class*="flex-"][class*="max-4"][class*="-break-1024"] > *,
	[class*="auto-size"][class*="flex-"][class*="max-5"][class*="-break-1024"] > * {
		min-width: calc(50% - var(--grid-spacing)) !important;
	}
	
	[class*="auto-size"][class*='flex-'][class*='-grid'][class*='-small'][class*="-break-1024"] > *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'][class*="max-4"][class*="-break-1024"] > *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'][class*="max-5"][class*="-break-1024"] > * {
		min-width: calc(50% - var(--grid-small-spacing)) !important;
	}
	
	[class*="auto-size"][class*='flex-'][class*='-grid'][class*='-large'][class*="-break-1024"] > *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'][class*="max-4"][class*="-break-1024"] > *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'][class*="max-5"][class*="-break-1024"] > * {
		min-width: calc(50% - var(--grid-large-spacing)) !important;
	}
	
	[class*='flex-'][class*="-block-1024"], [class*='flex-'][class*="-block-1024"][class*="-grid"] {
		width: 100%;
		left: 0;
		display: block;
	}
	
	[class*="flex-"][class*="-block-1024"] > *, [class*="flex-"][class*="-block-1024"] > .full,	[class*="flex-"][class*="-block-1024"][class*="-grid"] > *, [class*="flex-"][class*="-block-1024"][class*="-grid"] > .full,	
	[class*="flex-"][class*="-block-1024"] > .half,	[class*="flex-"][class*="-block-1024"][class*="-grid"] > .half,
	[class*="flex-"][class*="-block-1024"] > .third, [class*="flex-"][class*="-block-1024"] > .two-thirds, [class*="flex-"][class*="-block-1024"][class*="-grid"] > .third, [class*="flex-"][class*="-block-1024"][class*="-grid"] > .two-thirds,
	[class*="flex-"][class*="-block-1024"] > .fourth, [class*="flex-"][class*="-block-1024"] > .three-fourths, [class*="flex-"][class*="-block-1024"][class*="-grid"] > .fourth, [class*="flex-"][class*="-block-1024"][class*="-grid"] > .three-fourths,
	[class*="flex-"][class*="-block-1024"] > .fifth, [class*="flex-"][class*="-block-1024"] > .two-fifths, [class*="flex-"][class*="-block-1024"] > .three-fifths, [class*="flex-"][class*="-block-1024"][class*="-grid"] > .fifth, [class*="flex-"][class*="-block-1024"][class*="-grid"] > .two-fifths, [class*="flex-"][class*="-block-1024"][class*="-grid"] > .three-fifths, 
	[class*="flex-"][class*="-block-1024"] > .sixth	[class*="flex-"][class*="-block-1024"][class*="-grid"] > .sixth {
		width: 100%;
		max-width: none;
		min-width: 0;
		margin-left: initial;
		margin-right: initial;
	}
	
}
/* End 1024px Responsive */

/* 800px Responsive */
@media screen and (max-width:800px) {

	[class*='flex-'][class*="-block-800"], [class*='flex-'][class*="-block-800"][class*="-grid"] {
		width: 100%;
		left: 0;
		display: block;
	}
	
	[class*="flex-"][class*="-block-800"] > *, [class*="flex-"][class*="-block-800"] > .full,	[class*="flex-"][class*="-block-800"][class*="-grid"] > *, [class*="flex-"][class*="-block-800"][class*="-grid"] > .full,	
	[class*="flex-"][class*="-block-800"] > .half,	[class*="flex-"][class*="-block-800"][class*="-grid"] > .half,
	[class*="flex-"][class*="-block-800"] > .third, [class*="flex-"][class*="-block-800"] > .two-thirds, [class*="flex-"][class*="-block-800"][class*="-grid"] > .third, [class*="flex-"][class*="-block-800"][class*="-grid"] > .two-thirds,
	[class*="flex-"][class*="-block-800"] > .fourth, [class*="flex-"][class*="-block-800"] > .three-fourths, [class*="flex-"][class*="-block-800"][class*="-grid"] > .fourth, [class*="flex-"][class*="-block-800"][class*="-grid"] > .three-fourths,
	[class*="flex-"][class*="-block-800"] > .fifth, [class*="flex-"][class*="-block-800"] > .two-fifths, [class*="flex-"][class*="-block-800"] > .three-fifths, [class*="flex-"][class*="-block-800"][class*="-grid"] > .fifth, [class*="flex-"][class*="-block-800"][class*="-grid"] > .two-fifths, [class*="flex-"][class*="-block-800"][class*="-grid"] > .three-fifths, 
	[class*="flex-"][class*="-block-800"] > .sixth	[class*="flex-"][class*="-block-800"][class*="-grid"] > .sixth,
	.filter-header [class*="flex-"][class*="-spaced"][class*="block-800"] > .auto,
	.filter-header [class*="flex-"][class*="-spaced"][class*="block-800"] > .fit,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*="block-800"] > *:nth-last-of-type(3):first-of-type, 
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*="block-800"] > *:nth-last-of-type(3):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"][class*="-spaced"][class*="block-800"] > *:nth-last-of-type(2):first-of-type, 
	[class*="auto-size"][class*="flex-"][class*="-spaced"][class*="block-800"] > *:nth-last-of-type(2):first-of-type ~ * {
		width: 100%;
		max-width: none;
		min-width: 0;
		margin-left: initial;
		margin-right: initial;
	}
	
	[class*="auto-size"][class*="flex-"] > * {
		min-width: calc(50% - var(--grid-spacing));
	}
	
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > * {
		min-width: calc(50% - var(--grid-small-spacing));
	}
	
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > * {
		min-width: calc(50% - var(--grid-large-spacing));
	}
	
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(2):first-of-type,
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(2):first-of-type ~ *, 
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(4):first-of-type,
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(4):first-of-type ~ *, 
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(6):first-of-type,
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(6):first-of-type ~ *, 
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(8):first-of-type,
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(8):first-of-type ~ *, 
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(10):first-of-type,
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(10):first-of-type ~ *, 
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(12):first-of-type,
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(12):first-of-type ~ *, 
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(14):first-of-type,
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(14):first-of-type ~ *, 
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(16):first-of-type,
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(16):first-of-type ~ *, 
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(18):first-of-type,
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(18):first-of-type ~ * { 
		min-width: calc(50% - var(--grid-spacing));
	}	
	
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(2):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(2):first-of-type ~ *, 
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(4):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(4):first-of-type ~ *, 
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(6):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(6):first-of-type ~ *, 
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(8):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(8):first-of-type ~ *, 
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(10):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(10):first-of-type ~ *, 
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(12):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(12):first-of-type ~ *, 
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(14):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(14):first-of-type ~ *, 
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(16):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(16):first-of-type ~ *, 
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(18):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(18):first-of-type ~ * { 
		min-width: calc(50% - var(--grid-small-spacing));
	}
	
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(2):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(2):first-of-type ~ *, 
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(4):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(4):first-of-type ~ *, 
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(6):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(6):first-of-type ~ *, 
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(8):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(8):first-of-type ~ *, 
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(10):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(10):first-of-type ~ *, 
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(12):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(12):first-of-type ~ *, 
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(14):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(14):first-of-type ~ *, 
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(16):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(16):first-of-type ~ *, 
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(18):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(18):first-of-type ~ * { 
		min-width: calc(50% - var(--grid-large-spacing));
	}
	
	[class*="auto-size"][class*='flex-'][class*="-break-800"] > *,
	[class*="auto-size"][class*="flex-"][class*="max-4"][class*="-break-800"] > *,
	[class*="auto-size"][class*="flex-"][class*="max-5"][class*="-break-800"] > * {
		min-width: calc(50% - var(--grid-spacing)) !important;
	}
	
	[class*="auto-size"][class*='flex-'][class*='-grid'][class*='-small'][class*="-break-800"] > *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'][class*="max-4"][class*="-break-800"] > *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'][class*="max-5"][class*="-break-800"] > * {
		min-width: calc(50% - var(--grid-small-spacing)) !important;
	}
	
	[class*="auto-size"][class*='flex-'][class*='-grid'][class*='-large'][class*="-break-800"] > *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'][class*="max-4"][class*="-break-800"] > *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'][class*="max-5"][class*="-break-800"] > * {
		min-width: calc(50% - var(--grid-large-spacing)) !important;
	}
	
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(3):first-of-type, 
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(3):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(5):first-of-type,
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(5):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(9):first-of-type,
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(9):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(13):first-of-type,
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(13):first-of-type ~ * {
		width: 50%;
	}
	
	[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(3):first-of-type, 
	[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(3):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(5):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(5):first-of-type ~ *, 
	[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(9):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(9):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(13):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(13):first-of-type ~ * {
		width: calc(50% - var(--grid-spacing));
	}
	
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*="-small"] > *:nth-last-of-type(3):first-of-type, 
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*="-small"] > *:nth-last-of-type(3):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(5):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(5):first-of-type ~ *, 
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(9):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(9):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(13):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(13):first-of-type ~ * { 
		width: calc(50% - var(--grid-small-spacing));
	}
	
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*="-large"] > *:nth-last-of-type(3):first-of-type, 
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*="-large"] > *:nth-last-of-type(3):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(5):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(5):first-of-type ~ *, 
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(9):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(9):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(13):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(13):first-of-type ~ * { 
		width: calc(50% - var(--grid-large-spacing));
	}
	
}
/* End 800px Responsive */

/* 650px Resonsive */
@media screen and (max-width:650px){
	[class*='flex-'][class*="-block-650"], [class*='flex-'][class*="-block-650"][class*="-grid"] {
		width: 100%;
		left: 0;
		display: block;
	}
	
	[class*="flex-"][class*="-block-650"] > *, [class*="flex-"][class*="-block-650"] > .full,	[class*="flex-"][class*="-block-650"][class*="-grid"] > *, [class*="flex-"][class*="-block-650"][class*="-grid"] > .full,	
	[class*="flex-"][class*="-block-650"] > .half,	[class*="flex-"][class*="-block-650"][class*="-grid"] > .half,
	[class*="flex-"][class*="-block-650"] > .third, [class*="flex-"][class*="-block-650"] > .two-thirds, [class*="flex-"][class*="-block-650"][class*="-grid"] > .third, [class*="flex-"][class*="-block-650"][class*="-grid"] > .two-thirds,
	[class*="flex-"][class*="-block-650"] > .fourth, [class*="flex-"][class*="-block-650"] > .three-fourths, [class*="flex-"][class*="-block-650"][class*="-grid"] > .fourth, [class*="flex-"][class*="-block-650"][class*="-grid"] > .three-fourths,
	[class*="flex-"][class*="-block-650"] > .fifth, [class*="flex-"][class*="-block-650"] > .two-fifths, [class*="flex-"][class*="-block-650"] > .three-fifths, [class*="flex-"][class*="-block-650"][class*="-grid"] > .fifth, [class*="flex-"][class*="-block-650"][class*="-grid"] > .two-fifths, [class*="flex-"][class*="-block-650"][class*="-grid"] > .three-fifths, 
	[class*="flex-"][class*="-block-650"] > .sixth	[class*="flex-"][class*="-block-650"][class*="-grid"] > .sixth {
		width: 100%;
		max-width: none;
		min-width: 0;
		margin-left: initial;
		margin-right: initial;
	}
}

/* 500px Responsive */
@media screen and (max-width:500px) {
	
	[class*='flex-'][class*="-block-500"], [class*='flex-'][class*="-block-500"][class*="-grid"] {
		width: 100%;
		left: 0;
		display: block;
	}
	
	[class*="flex-"][class*="-block-500"] > *, [class*="flex-"][class*="-block-500"] > .full,	[class*="flex-"][class*="-block-500"][class*="-grid"] > *, [class*="flex-"][class*="-block-500"][class*="-grid"] > .full,	
	[class*="flex-"][class*="-block-500"] > .half,	[class*="flex-"][class*="-block-500"][class*="-grid"] > .half,
	[class*="flex-"][class*="-block-500"] > .third, [class*="flex-"][class*="-block-500"] > .two-thirds, [class*="flex-"][class*="-block-500"][class*="-grid"] > .third, [class*="flex-"][class*="-block-500"][class*="-grid"] > .two-thirds,
	[class*="flex-"][class*="-block-500"] > .fourth, [class*="flex-"][class*="-block-500"] > .three-fourths, [class*="flex-"][class*="-block-500"][class*="-grid"] > .fourth, [class*="flex-"][class*="-block-500"][class*="-grid"] > .three-fourths,
	[class*="flex-"][class*="-block-500"] > .fifth, [class*="flex-"][class*="-block-500"] > .two-fifths, [class*="flex-"][class*="-block-500"] > .three-fifths, [class*="flex-"][class*="-block-500"][class*="-grid"] > .fifth, [class*="flex-"][class*="-block-500"][class*="-grid"] > .two-fifths, [class*="flex-"][class*="-block-500"][class*="-grid"] > .three-fifths, 
	[class*="flex-"][class*="-block-500"] > .sixth	[class*="flex-"][class*="-block-500"][class*="-grid"] > .sixth {
		width: 100%;
		max-width: none;
		min-width: 0;
		margin-left: initial;
		margin-right: initial;
	}
	
	[class*="auto-size"][class*="flex-"] > *,
	[class*="auto-size"][class*="flex-"][class*="max-4"][class*="-break-500"] > *,
	[class*="auto-size"][class*="flex-"][class*="max-5"][class*="-break-500"] > * {
		min-width: calc(50% - var(--grid-spacing)) !important;
	}
	
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'][class*="max-4"][class*="-break-500"] > *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'][class*="max-5"][class*="-break-500"] > * {
		min-width: calc(50% - var(--grid-small-spacing)) !important;
	}
	
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'][class*="max-4"][class*="-break-500"] > *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'][class*="max-5"][class*="-break-500"] > * {
		min-width: calc(50% - var(--grid-large-spacing)) !important;
	}
	
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(3):first-of-type, 
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(3):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(5):first-of-type,
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(5):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(9):first-of-type,
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(9):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(13):first-of-type,
	[class*="auto-size"][class*="flex-"] > *:nth-last-of-type(13):first-of-type ~ * {
		width: 100%;
	}
	
	[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(3):first-of-type, 
	[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(3):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(5):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(5):first-of-type ~ *, 
	[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(9):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(9):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(13):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'] > *:nth-last-of-type(13):first-of-type ~ * {
		width: 100%;
	}
	
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*="-small"] > *:nth-last-of-type(3):first-of-type, 
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*="-small"] > *:nth-last-of-type(3):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(5):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(5):first-of-type ~ *, 
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(9):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(9):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(13):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-small'] > *:nth-last-of-type(13):first-of-type ~ * { 
		width: 100%;
	}
	
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*="-large"] > *:nth-last-of-type(3):first-of-type, 
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*="-large"] > *:nth-last-of-type(3):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(5):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(5):first-of-type ~ *, 
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(9):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(9):first-of-type ~ *,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(13):first-of-type,
	[class*="auto-size"][class*="flex-"][class*='-grid'][class*='-large'] > *:nth-last-of-type(13):first-of-type ~ * { 
		width: 100%;
	}
	
}
/* End 500px Responsive */

/* 380px Responsive */
@media screen and (max-width: 380px) {
	[class*="flex-"][class*="-block-380"] {
		display: block;
	}
	
	[class*="flex-"][class*="-block-380"] > *, [class*="flex-"][class*="-block-380"] > .full,	[class*="flex-"][class*="-block-380"][class*="-grid"] > *, [class*="flex-"][class*="-block-380"][class*="-grid"] > .full,	
	[class*="flex-"][class*="-block-380"] > .half,	[class*="flex-"][class*="-block-380"][class*="-grid"] > .half,
	[class*="flex-"][class*="-block-380"] > .third, [class*="flex-"][class*="-block-380"] > .two-thirds, [class*="flex-"][class*="-block-380"][class*="-grid"] > .third, [class*="flex-"][class*="-block-380"][class*="-grid"] > .two-thirds,
	[class*="flex-"][class*="-block-380"] > .fourth, [class*="flex-"][class*="-block-380"] > .three-fourths, [class*="flex-"][class*="-block-380"][class*="-grid"] > .fourth, [class*="flex-"][class*="-block-380"][class*="-grid"] > .three-fourths,
	[class*="flex-"][class*="-block-380"] > .fifth, [class*="flex-"][class*="-block-380"] > .two-fifths, [class*="flex-"][class*="-block-380"] > .three-fifths, [class*="flex-"][class*="-block-380"][class*="-grid"] > .fifth, [class*="flex-"][class*="-block-380"][class*="-grid"] > .two-fifths, [class*="flex-"][class*="-block-380"][class*="-grid"] > .three-fifths, 
	[class*="flex-"][class*="-block-380"] > .sixth	[class*="flex-"][class*="-block-380"][class*="-grid"] > .sixth,
	[class*="flex-"][class*="-block-380"] > .sixth	[class*="flex-"][class*="-block-380"][class*="-grid"] > .fit,
	[class*="flex-"][class*="-block-380"] > .sixth	[class*="flex-"][class*="-block-380"][class*="-grid"] > .auto {
		width: 100% !important;
		max-width: none !important;
		min-width: 0 !important;
		margin-left: initial !important;
		margin-right: initial !important;
	}
}
/* End 380px Responsive */
