/* Next Level Flexible */
[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;
	width: auto;
}

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

[class*='flex-'] .auto.fix {
	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'] {
	-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'] {
	-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'] {
	-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*='-reverse'][class*='-column'] {
	-webkit-flex-direction: column-reverse;
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse;
}
/* End Next Level Flexible */
/* Highlights */
section.highlights-panel {
	text-align: center;
	background-color: rgba(0,109,102,0.9);
	padding: 3em;
}

.highlights-panel header {
	padding-bottom: 1em;
	padding-top: 3.125em;
}

.highlights-panel .main header h4 {
	font-size: 1.875em;
}

.highlights-panel li {
}

.highlights-panel li span {
	display: inline;
	font-size: 2.5em;
	position: relative;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	line-height: 1;
	color: #FFFFFF;
}

.highlights-panel li span.dollar, .highlights-panel li span.perc {
	display:inline;
}

.highlights-panel li span.dollar:after, .highlights-panel li span.perc:after {
	display:none;
}

.highlights-panel li span::after {
	content: '';
	display: none;
	width: 100%;
	height: 1px;
	max-width: 1.875rem;
	background-color: #FFFFFF;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	position: absolute;
}

.highlights-panel li p {
	max-width: 11.75em;
	margin-left: auto;
	margin-right: auto;
	font-size: 1em;
	color: #FFFFFF;
	line-height: 1.5em;
}
/* End Highlights */
/* Buy Local Highlights */

section.buy-local.highlights-panel{
	margin-bottom:3em;
}

.buy-local.highlights-panel li {
	padding: 2em 0;
}
.buy-local.highlights-panel header {
	padding: 1em 0;
	width: 75%;
	text-align: center;
	margin: auto;
}

.buy-local.highlights-panel header h2 {
	font-size: 2.5em; 
}

.buy-local.highlights-panel header h2, .buy-local.highlights-panel header p {
    color: #FFFFFF;
}
/* End Buy Local Highlights */

/* Responsive [1024px] */
@media screen and (max-width: 1024px) {
		.buy-local.highlights-panel li.third {
		width: 50%;
	}

}
/* End Responsive [1000px] */
