.headline {
	padding-top: 50px;
}

.headline p {
	font-size: 1.2rem;
    text-align: justify;
}

.feature-block-dark {
	background-color: #007f7f;
	color: #fff;
    margin-top: 25px;
    margin-bottom: 25px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.feature-block-dark .btn-primary {
  color: #007f7f;
  background-color: #fff;
  border-color: #fff;
}

.feature-block-dark .btn-primary:hover {
  color: #fff;
  background-color: #00aeb2;
  border-color: #00aeb2;
}

.feature-block-light {
    margin-top: 25px;
    margin-bottom: 25px;
	padding-top: 10px;
    padding-bottom: 10px;
}

.feature-block-light .btn-primary {
  color: #fff;
  background-color: #007f7f;
  border-color: #007f7f;
}

.feature-block-light .btn-primary:hover {
  color: #fff;
  background-color: #00aeb2;
  border-color: #00aeb2;
}

.feature-block-dark p,
.feature-block-light p {
	font-size: 1.2rem;
}

.feature-block-light img {
	max-height: 250px;
}

.large-icon-highlight img {
	max-height: 150px;
}

.dashed-hr {
    border-top: 8px dashed #007f7f;
    width: 33%;
	margin-top: 2rem;
	margin-bottom: 2rem;
}

.intro-text {
	padding-bottom: 55px;
}

#word-spinner {
	min-width: 80px;
}

.large-icon-highlight h3{
	text-align: inherit;
}

.each-text img {
	max-width: 250px;
}

.product-scroller-block {
	min-height: 100vh;
}

.product-scroller {
	/*background-color: var(--highlight-grey);*/
}

.product-highlighter {
	border-radius: 0.2rem;
	/*border: 1px solid var(--primary-teal);
	background-color: var(--white);*/
	padding: 25px;
	margin-top: 25vh;
	margin-bottom: 25vh;
}

.product-highlighter p {
	margin-bottom: 0.4rem;
}

.product-highlighter a.js-scroll-trigger i.fa {
	padding-top: 25px;
}

.product-highlighter .subtitle {
    top: -10px;
}

.product-images {
	background-color: var(--primary-blue);
	transition-duration: 500ms;
	color: var(--white);
}

.product-images#go {
	background-color: var(--primary-orange);
}

.product-images#flow {
	background-color: #000;
}

.product-images .row {
	margin-top: 25px;
	margin-top: 20vh;
	margin-bottom: 25px;
	margin-bottom: 20vh;
}

.product-images .product-image-holder img {
	padding: 0px 20px;
	max-width: 100%;
}

.product-images .product-text-holder {
	margin-bottom: 50px;
    padding-left: 35px;
}

.product-images .btn {
	margin-top: 25px;
}

hr.queal-hr {
	display: block;
    border: 0px;
	height: 75px;
    width: 150px;
    background-image: url('../../images/hr.svg');
	background-repeat: no-repeat;
	margin-left: calc(50% - 75px);
}

.cta-block {
	padding: 0px 0px 75px;
}

@media (max-width: 991px) {
	.headline {
		padding-top: 25px;
		padding-bottom: 25px;
	}
	
	.headline h1 {
		font-size: 2rem;
	}
		
	.feature-block-dark h2,
	.feature-block-light h2 {
		font-size: 1.8rem;
	}
}


/* RANGESLIDER */

.rangeslider-wrap {
    padding-top: 90px;
    padding-bottom: 60px;
}

.rangeslider {
  position: relative;
  height: 4px;
  border-radius: 0.2rem;
  width: 100%;
  background-color: gray;
}

.rangeslider__handle__value {
	transition: background-color .2s, 
			  box-shadow .1s,
			  transform .1s;
	box-sizing: border-box;
	width: 90px;
	text-align: center;
	padding: 10px;
	background-color: var(--primary-teal);
	border-radius: 0.2rem;
	color: white;
	top: -55px;
	position: absolute;
	white-space: nowrap;
	border-top: 1px solid darken(var(--primary-teal), 10%);
	transform: translate(-34.5px,-5px);
}        
.rangeslider__handle__value:before {
	transition: border-top-color .2s;
	position: absolute;
	bottom: -10px;
	left: calc(50% - 10px);
	content: "";
	width: 0; 
	height: 0; 
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid;
	border-top-color: var(--primary-teal);
}
        
.rangeslider__handle__value:after {
	content: " kcal";
}

.rangeslider__handle__value_calc {
	transition: background-color .2s, 
			  box-shadow .1s,
			  transform .1s;
	box-sizing: border-box;
	width: 110px;
	text-align: center;
	padding: 10px;
	background-color: var(--primary-teal);
	border-radius: 0.2rem;
	color: white;
	top: -55px;
	position: absolute;
	white-space: nowrap;
	border-top: 1px solid darken(var(--primary-teal), 10%);
	transform: translate(-44.5px,90px);
}        
.rangeslider__handle__value_calc:before {
	transition: border-top-color .2s;
    position: absolute;
    top: -10px;
    left: calc(50% - 10px);
    content: "";
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid;
    border-bottom-color: var(--primary-teal);
}
        
.rangeslider__handle__value_calc:after {
	content: " scoops";
}