* {
	margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; 
}
body, html {
  font-family: 'Roboto', sans-serif;;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  background-color: #ffffff;
  color: #171717;
  overflow-x: hidden; 
}
.container {
	padding-left: 15px;
	padding-right: 15px;
	margin-left: auto;
	margin-right: auto;
	max-width: 1330px;
}
.header {
	background-color: #383838;
	height: 68px;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
  -ms-flex-pack: center;
	justify-content: center;
}
.top-fold {
	background: transparent url(/assets/images/back@2x.png) 0% 0% repeat-x padding-box;
	padding-top: 35px;
	padding-bottom: 35px;
	padding-left: 20px;
	padding-right: 20px;
	margin-bottom: 20px;
	background-size: contain;
}

.top-fold .desktop-container {
	display: flex;
	flex-direction: column-reverse;
}
.contact-panel {
	margin: 15px auto 0;
	display: -ms-flexbox;
	display: flex;
	box-shadow: 0px 0px 20px #00000026;
	border: 1px solid #FFFFFF;
	border-radius: 5px;
	padding: 20px;
	background-color: #fff;
}
.contact-panel>div {
	-ms-flex: 1;
	flex: 1;
}
.contact-panel h1 {
	font: 20px/26px 'Roboto', sans-serif;
	font-weight: 500;
	color: #2B2A2A;
	text-transform: uppercase;
	margin-bottom: 15px
}
.contact-panel p {
	font: 15px/20px 'Roboto', sans-serif;
	font-weight: 400;
	color: #171717;
}
.contact-panel p strong {
	font-weight: 700;
	text-decoration: underline;
}
.contact-panel>div:first-child {
	padding-right: 20px;
}
.contact-panel>div:nth-child(2) {
	padding-left: 20px
}
.top-fold .img-container {
	display: none !important;
}
.top-fold .img-container img {
	width: 100%;
}

.top-fold .img-container a {
	display: block;
	max-width: 366px;
	margin: -30px auto 0;
}





#products { display: flex; }
#products .pr-selection-wrap {
    flex-direction: column;
	flex-basis: 32%;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 10px;
}
#products .pr-selection-wrap .item {
	flex: auto;
	display: -ms-flexbox;
	display: flex;
    flex-grow: 0;
    background: none;
    color: black;
    font: 500 14px/1.2em 'Roboto', sans-serif;
    margin-right: 0;
    margin-bottom: 0;
    padding: 10px;
	min-height: 54px;
	max-width: 397px;
	border: 1px solid #E6E6E6;
	border-radius: 5px;
	-ms-flex: auto;
	-webkit-box-align: center;
  	-moz-box-align: center;
  	-ms-flex-align: center;
  	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: space-between;
  	-ms-flex-pack: space-between;
	justify-content: space-between;
	cursor: pointer;
}		
#products .pr-selection-wrap .item.chosen {
    background-color: #007bff;
    color: white;
}
#products .pr-selection-wrap .item .pr-price {
	padding-left: 10px;
	display: -ms-flexbox;
	display: flex;
	height: 24px;
	align-items: center;
	cursor: pointer;
}

#products .product-table {
	display: flex;
	flex-basis: 65%;	
}



.pr-selection-wrap h5 {
	margin-bottom: 10px;
	text-align: center;
}
.pr-selection-wrap .flex-break {
	flex-basis: 100%;
  	height: 0;
  	display: none;
  	min-height: 0;
	max-width: unset;
	margin: 0;
	padding: 0;
	border: none;
}
.pr-selection-wrap label {
	position: relative;
	padding-left: .5em;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	cursor: pointer;
}
.pr-selection-wrap input {
	opacity: 0;
	height: 0;
	width: 0;
}
.item>div {
	display: -ms-flexbox;
	display: flex;
	height: 24px;
	align-items: center;
	cursor: pointer;
}
.pr-selection-wrap input + label:before{
  content: '';
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 19px;
  height: 19px;
  background: white;
  border: 1px solid #E6E6E6;
  border-radius: 50%;
}
.pr-selection-wrap input:checked + label:before {
  background-image: url(/assets/images/selected.svg);
  background-position: center center;
  background-repeat: no-repeat;
}


.product-disclaimer {
    margin-bottom: 20px;
    font-size: 13px;
}
.pr-content {
	display: -ms-flexbox;
	display: flex;
}
.pr-content .pr-img {
	flex-basis: 32%;
}
.pr-content .pr-info {
	flex-basis: 68%;
	min-height: 550px;
}
.pr-img img {
	display: block;
	margin: 0 auto;
	width: 100%;
	max-width: 416px;
}
.pr-info {
	/*padding-left: 10px;*/
	color: #2B2A2A;
}
.pr-info h1,  .pr-img h1{
	font: 20px/26px 'Roboto', sans-serif;
	font-weight: 500;
	margin-bottom: 25px;
}
.pr-img h1 {
	display: none;
}
.pr-info p {
	font: 15px/25px 'Roboto', sans-serif;
	font-weight: 400;
	margin-bottom: 25px
}
.pr-info p strong {
	font-weight: 700;
}
.collapsible {
	color: black;
	padding: 18px 18px 0 0;
  	width: 100%;
  	border: none;
  	text-align: left;
  	outline: none;
  	font-size: 15px;
}
.ingredients .show-btn, .ingredients .active .hide-btn {
    color: blue;
    text-decoration: underline;
  	cursor: pointer;
  	display: inline-block;
}
.ingredients .active .show-btn {
	color: black;
    text-decoration: none;
}
.ingredients .hide-btn {
  	font-size: 13px;
  	margin-left: 10px;
  	display: none;
}

.pr-info p.collapsible-content {
	padding: 18px 18px 0 10px;
  	max-height: 0;
  	overflow: hidden;
  	transition: max-height 0.2s ease-out;
  	margin-bottom: 0;
}
.button-container {
	max-width: 800px;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 50px;
	padding-top: 15px;
}
.button {
	-ms-flex: 1;
	flex: 1;
}
.button a {
	display: -ms-flexbox;
	display: flex;
	max-width: 366px;
	margin-right: 28px;
	height: 54px;
	text-transform: uppercase;
	font: 15px/1em 'Roboto', sans-serif;
	font-weight: 700;
	text-decoration: none;
	color: #2B2A2A;
	border: 1px solid #DC0110;
	border-radius: 5px;
	-webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
  -ms-flex-pack: center;
	justify-content: center;
}
.button a.dark {
	background-color: #151515;
	color: #FFFFFF;
	border: none;
}


.footer {
	background-color: #383838;
}
.footer p {
	text-align: center;
	color: #FFFFFF;
	font: 12px/15px 'Roboto', sans-serif;
	font-weight: 400;
	padding: 27px 5%  25px;
}
.footer p strong {
	font-weight: 500;
}

/* Media Queries */
@media screen and (min-width: 1170px) {
	.top-fold .desktop-container {
		flex-direction: row;
	}

	.contact-panel {
		flex-direction: column;
		max-width: 80%;
	}

	.contact-panel>div:first-child {
		padding-left: 0;
		padding-right: 0;
		padding-bottom: 20px;
	}

	.contact-panel>div:nth-child(2) {
		padding-left: 0;
		padding-right: 0;
	}

	.top-fold .img-container {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
	}

	.top-fold .img-container img {
		width: 120%;
	}

	.desktop-container {
		max-width: 1340px;
		margin-left: auto;
		margin-right: auto;
	}

	.top-fold .img-container a {
		margin-top: -50px;
	}

	.top-fold .img-container a img {
		max-width: 366px;
	}
}
@media screen and (max-width: 1169px) {
	.pr-selection-wrap {
		flex-wrap: -ms-wrap;
		flex-wrap: wrap;
	}
	.pr-selection-wrap>div {
		max-width: unset;
		flex: 1;
		margin-bottom: 10px;
	}
	.pr-selection-wrap>div.item2, .pr-selection-wrap>div.item4 {
		margin-right: 0;
	}
	.pr-selection-wrap div.flex-break {
		display: block;
	}

}
@media screen and (max-width: 767px) {
	.pr-selection-wrap, .pr-content, .contact-panel, .button-container {
		-webkit-box-flex-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-orient: vertical;
	}
	.contact-panel {
    	padding: 30px 20px 30px 30px;
	}
	.content .contact-panel>div {
		padding: 0;
	}
	.content .contact-panel>div:first-child {
		margin-bottom: 25px;
		border: 0;
	}
	.product-disclaimer { margin-left: 0; }
	#products { display: block; }
	#products .pr-selection-wrap .item {	
		background: #F2F2F2 0% 0% no-repeat;
	  	margin-bottom: 10px;
	  	min-height: 54px;
	  	max-width: none;
	  	flex: 1;
		color: #3B3B3B;
		background-color: #8080801a;
	}
	.pr-selection-wrap div.item:last-child {
		margin-right: 0;
	}
	.pr-info p.quantity {
		text-align: center;
		padding: 0 2%;
		font-weight: bold;
	}
	.pr-info p.description { 
		font: 16px/25px 'Roboto', sans-serif; 
	}
	
	.button-container {
		max-width: none;
		margin-bottom: 25px;
		padding-top: 35px;
	}
	.button a {
		max-width: none;
		margin-right: 0;
		margin-bottom: 20px;
	}
	.pr-img h1 {
		display: block;
		margin-bottom: 10px;
	}
	.pr-content .pr-info {
		min-height: 0;
	}
	.pr-info h1 {
		display: none;
	}
}
@media screen and (max-width: 400px) {
	.contact-panel h1 {
		font-size: 18px;
	}
	.contact-panel p {
		font-size: 13px;
	}
	.pr-info p {
		font-size: 13px;
		line-height: 23px;
	}
	.pr-img h1 {
		font-size: 18px;
	}
	.footer p {
		font-size: 11px;
	}
	.contact-panel {
    	padding: 25px 15px 25px 25px;
	}
	.button a {
		font-size: 14px;
		height: 50px;
	}
}