/*
 * css/style.css
 */
/* Globals
------------------------------*/
body {
	background-color: #FFFFFF;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
	letter-spacing: 0.077em;
	line-height: 1.5em;
}

img, svg, iframe {
	max-width: 100%;
}

h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

p {
	line-height: 1.5em;
}

a,
.btn-link {
	color: rgb(128, 199, 123);
}

a:hover,
a:focus,
a:active,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
	color: rgb(128, 199, 123);
}

/* General Component Styles */
section[class^="component"] {
	padding: 20px 0;
}

section.headline {
	margin-bottom: 15px;
}

/* Utility Classes */
.hidden {
	display: none;
}

.text-center {
	text-align: center;
}

.flex-center {
	display: -webkit-flex;
	 display: -webkit-box;
	 display: -ms-flexbox;
					display: flex;
	-webkit-align-items: center;
		 -moz-align-items: center;
			-ms-align-items: center;
					align-items: center;
	-webkit-justify-content: center;
		 -moz-justify-content: center;
			-ms-justify-content: center;
					justify-content: center;
}

.row-reverse {
	-webkit-flex-direction: row-reverse;
	-moz-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.square-img-container {
	position: relative;
	flex-grow: 1;
	padding: 0;
}

/* Magical CSS hack to maintain 1:1 Aspect Ratio */
.square-img-container::before {
	content: "";
	display: block;
	padding-top: 100%;
}

.square-img-container .square-img-content {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
.square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	.square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	.square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	.square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	.square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}
	.square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	.square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/* Other bootstrap overrides
------------------------------*/
.dropdown-menu {
	left: 50%;
	min-width: 130px;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%)
}

.nav-pills .nav-link.active,
.nav-pills .nav-link.active:focus,
.nav-pills .nav-link.active:hover,
.nav-pills .nav-link.active:active,
.nav-pills .nav-item.open .nav-link,
.nav-pills .nav-item.open .nav-link:focus,
.nav-pills .nav-item.open .nav-link:hover,
.nav-pills .nav-item.open .nav-link:active {
	background-color: rgb(128, 199, 123);
}

.panel {
	margin-bottom: 20px;
	background-color: #fff;
	border: 1px solid transparent;
	border-radius: 4px;
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
					box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}

.panel-body {
	padding: 15px;
}

.panel-heading {
	padding: 10px 15px;
	border-bottom: 1px solid transparent;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}

.panel-heading > .dropdown .dropdown-toggle {
	color: inherit;
}

.panel-title {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 16px;
	color: inherit;
}

.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
	color: inherit;
}

.panel-footer {
	padding: 10px 15px;
	background-color: #f5f5f5;
	border-top: 1px solid #ddd;
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px;
}

/* Buttons */
.btn {
	border-radius: 4px;
	border: none;
	padding: 14px 22px;
	letter-spacing: 2px;
	font-size: 14px;
}

.btn-small {
	padding: 0.6em 1.8em;
	border: 1px solid rgb(128, 199, 123);
	border-radius: 15px;
	color: rgb(128, 199, 123);
}

.btn-small:hover,
.btn-small:focus,
.btn-small:active,
.btn-small:active:focus {
	background-color: #4A4A4A;
	border: 1px solid #4A4A4A;
	color: rgb(128, 199, 123) !important;
}

.btn-link {
	padding: 1.2em 0;
}

.btn-primary {
	background-color: rgb(128, 199, 123);
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
	letter-spacing: 0.167em;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus {
	background-color: rgb(128, 199, 123);
	color: #4A4A4A;
}

.btn-secondary {
	background-color: #4A4A4A;
	color: #FAFAFA;
	font-family: Lato;
	font-size: 14px;
	letter-spacing: 0.167em;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:active:focus {
	background-color: rgb(128, 199, 123);
	color: #FAFAFA;
}

.btn-empty {
	background-color: transparent;
	color: rgb(128, 199, 123);
	border: 1px solid rgb(128, 199, 123);
}

.btn-empty:hover,
.btn-empty:focus,
.btn-empty:active,
.btn-empty:active:focus {
	background-color: #4A4A4A;
}

/* Index
------------------------------*/

/* Subscribe Flow
------------------------------*/
.sf-header {
	padding: 50px 0 15px;
}

.sf-grid {
	display: -webkit-flex;
	display: -moz-flexbox;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;

	margin-top: 20px;
	margin-bottom: 20px;
}

.sf-grid__container {
	display: -webkit-flex;
	display: -moz-flexbox;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	padding-top: .9375rem;
	padding-bottom: .9375rem;
}

.sf-item {
	-webkit-flex-grow: 1;
	-moz-flex-grow: 1;
	-ms-flex-grow: 1;
	flex-grow: 1;

	text-align: center;
	border: 1px solid #E1E1E1;
	padding: 20px;
}

.sf-item, .sf-item__content {
	display: -webkit-flex;
	display: -moz-flexbox;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

.sf-item__content {
	-webkit-flex: 1 1 auto;
	-moz-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}

.sf-item__name {
	margin: 1em 0;
}

.sf-item * {
	max-width: 100%;
}

/* Orders List
------------------------------*/
.orders-list {
	width: 100%;
	margin: 25px 0;
}
.orders-list h1 {
	text-align: center;
	color: #4A4A4A;
}
.orders-list .panel {
	width: 100%;
}

/* Checkout
------------------------------*/
.checkout_content {
	margin-top: 0;
	overflow: auto;
	padding: 50px 0 60px;
}

.checkout_content #add_coupon_code {
	padding: .375rem 1rem;
	width: auto;
}

.checkout_content #checkout_button {
	background-color: rgb(128, 199, 123);
	border: none;
	border-radius: 25px;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
	letter-spacing: 0.167em;
	padding: 1.2em 5em;
}

.checkout_content #checkout_button:hover,
.checkout_content #checkout_button:focus,
.checkout_content #checkout_button:active,
.checkout_content #checkout_button:active:focus {
	background-color: rgb(128, 199, 123);
	color: #4A4A4A;
}

/* Thank You
------------------------------*/
.checkout_content section {
	border-color: #F5F5F5;
}

.checkout_content h1 {
	margin-bottom: 25px;
	text-align: center;
}

.cart_listing table {
	border-color: #F5F5F5;
}

/* Account
------------------------------*/
.account-header {
	margin: 50px 0 25px 0;
	padding: 0 15px;
}

.account-header h1,
.account-header h2 {
	margin: 0 0 15px 0;
}

.account-header .gift-card-container {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

.account-header .gift-card-balance {
	margin: 0 0 15px 0;
}

.my-account {
	margin: 25px 0 50px 0;
}

.address-container {
	width: 100%;
}

.address-panel .inner-address-row {
	padding: 0;
}

.address-panel .address-edit-btn {
	min-width: auto;
	padding: 10px;
}

.address-info #is_primary {
	margin: 0;
	width: auto;
}

.address-container {
	width: 100%;
}

.errors {
	margin: 25px 0;
}

.cratejoy-loading-icon {
	color: rgb(128, 199, 123);
}

.skip-dialog .row {
	display: block;
	text-align: center;
}

.skip-dialog h4 {
	margin: 0 0 22px 0;
}

.panel-sub-confirm {
	box-shadow: none;
}

.panel-sub-confirm form div:last-child {
	display: block;
}

#skip_button,
input[type="radio"] + label.cj-btn {
	background-color: transparent;
	border: 1px solid rgb(128, 199, 123);
	color: rgb(128, 199, 123);
	letter-spacing: 1px;
	text-transform: uppercase;
}

#skip_button:hover,
#skip_button:focus,
#skip_button:active,
input[type="radio"]:checked + label.cj-btn, #skip_button.skipped {
	background-color: rgb(128, 199, 123);
	border-color: rgb(128, 199, 123);
	text-decoration: none;
}

/* Media Queries
------------------------------*/
@media (max-width: 767px) {
	/* Used to reverse a row when it wraps on smaller screens */
	.row-sm-reverse {
		-webkit-flex-wrap: wrap-reverse;
		-moz-flex-wrap: wrap-reverse;
		-ms-flex-wrap: wrap-reverse;
		flex-wrap: wrap-reverse;
	}
	.panel-cratejoy .pull-right,
	.panel-cratejoy .pull-left,
	.skip-dialog .pull-right,
	.skip-dialog .pull-left,
	.subscription_cancel .pull-right,
	.subscription_cancel .pull-left,
	#edit-subscription-form .pull-right,
	#edit-subscription-form .pull-left {
		float: none;
		width: 100%;
		margin: 10px 0;
	}
}

@media (min-width: 768px) {
	.account-header .gift-card-container {
		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
	}
	.account-header .gift-card-balance {
		margin: 0;
	}
}

@media (min-width: 992px) {
	.account-header h1,
	.account-header h2 {
		margin: 0;
	}
}

/* Slide panel
----------------------- */
.slidepanel {
  margin-top: 0;
  overflow: hidden;
  background-color: #fff;
  z-index: 20;
}

.slidepanel.top {
  left: 0;
  top: 0;
  width: 100%;
  background-position: center center;
  min-height: 700px;
  -webkit-background-size: 100%;
  -moz-background-size: 100%;
  -o-background-size: 100%;
  background-size: 100%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  z-index: 500;
}

.slidepanel.bottom {
  padding: 1px 0;
  box-shadow: 0 -10px 30px rgba(56, 52, 52, 0.2);
  z-index: 1000;
}

.viewport {
  margin-right: auto;
  margin-left: auto;
  overflow-x: hidden;
  padding-left: 0;
  padding-right: 0;
}

.row-offcanvas {
	display: flex;
  position: relative;
  -webkit-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  margin-left: -15px;
  margin-right: -15px;
}

.row-offcanvas .pagecontent {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.row-offcanvas.active .pagecontent {
  padding: 0;
}

.row-offcanvas.active:before {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(53, 53, 53, 0.35);
  content: "";
  z-index: 100;
}

.row-offcanvas-left {
  left: 0;
}

.row-offcanvas-left.active {
  left: 300px;
}

.row-offcanvas-left.active:before {
  right: 0;
}

.row-offcanvas-left .sidebar-offcanvas {
  left: -300px;
}

.row-offcanvas-right {
  right: 0;
}

.row-offcanvas-right.active {
  right: 300px;
}

.row-offcanvas-right.active:before {
  left: 0;
}

.row-offcanvas-right .sidebar-offcanvas {
  right: -300px;
}

.sidebar-offcanvas {
  float: left;
  width: 25%;
  min-height: 100vh;
  padding: 40px 50px 40px 35px;
  position: absolute;
  top: 0;
  bottom: 0;
  padding: 30px;
  height: 100%;
  width: 300px;
  z-index: 101;
	background: #FFFFFF;
}

.row-offcanvas.active .slidepanel {
  position: static;
}

.row-offcanvas.active .slidepanel.bottom {
  margin-top: 0 !important;
}

.sidebar-offcanvas {
}

/*
 * components/about-us/cmp_97eb9428-724b-42d1-90df-67ee43a656d5/component.css
 */
#cmp_97eb9428-724b-42d1-90df-67ee43a656d5 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: ;
}

#cmp_97eb9428-724b-42d1-90df-67ee43a656d5 h1 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_97eb9428-724b-42d1-90df-67ee43a656d5 h2 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_97eb9428-724b-42d1-90df-67ee43a656d5 h3 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_97eb9428-724b-42d1-90df-67ee43a656d5 p {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_97eb9428-724b-42d1-90df-67ee43a656d5 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_97eb9428-724b-42d1-90df-67ee43a656d5 ul {
	list-style: disc;
	list-style-position: inside;
	color: ;
	font-family: ;
	font-size: ;
}

/*
 * components/balanced-points-share-a-box/cmp_3fcf38f8-6ffd-4781-9cc6-e9eaf623bd12/component.css
 */
#cmp_3fcf38f8-6ffd-4781-9cc6-e9eaf623bd12 img {
	max-width: 100%;
}

/*
 * components/balanced-points-share-a-box/cmp_754a6ada-1856-4ad8-94c6-32b44c93d069/component.css
 */
#cmp_754a6ada-1856-4ad8-94c6-32b44c93d069 img {
	max-width: 100%;
}

/*
 * components/balanced-points-share-a-box/cmp_764f19c5-b83f-4184-8d9a-46fdcac4c449/component.css
 */
#cmp_764f19c5-b83f-4184-8d9a-46fdcac4c449 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_764f19c5-b83f-4184-8d9a-46fdcac4c449 h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_764f19c5-b83f-4184-8d9a-46fdcac4c449 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_764f19c5-b83f-4184-8d9a-46fdcac4c449 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_764f19c5-b83f-4184-8d9a-46fdcac4c449 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_764f19c5-b83f-4184-8d9a-46fdcac4c449 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_764f19c5-b83f-4184-8d9a-46fdcac4c449 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/balanced-points-share-a-box/cmp_84b15bdf-3eee-48a6-9cb8-5919896fd88e/component.css
 */
#cmp_84b15bdf-3eee-48a6-9cb8-5919896fd88e {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_84b15bdf-3eee-48a6-9cb8-5919896fd88e h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_84b15bdf-3eee-48a6-9cb8-5919896fd88e h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_84b15bdf-3eee-48a6-9cb8-5919896fd88e h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_84b15bdf-3eee-48a6-9cb8-5919896fd88e p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_84b15bdf-3eee-48a6-9cb8-5919896fd88e ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_84b15bdf-3eee-48a6-9cb8-5919896fd88e ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/balanced-points-share-a-box/cmp_8f081148-d4ca-4fe6-90d2-0aa6b232eb39/component.css
 */
#cmp_8f081148-d4ca-4fe6-90d2-0aa6b232eb39 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_8f081148-d4ca-4fe6-90d2-0aa6b232eb39 h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_8f081148-d4ca-4fe6-90d2-0aa6b232eb39 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_8f081148-d4ca-4fe6-90d2-0aa6b232eb39 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_8f081148-d4ca-4fe6-90d2-0aa6b232eb39 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_8f081148-d4ca-4fe6-90d2-0aa6b232eb39 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_8f081148-d4ca-4fe6-90d2-0aa6b232eb39 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/balanced-points-share-a-box/cmp_92830c03-e5fa-4c80-97f0-6abad66a8755/component.css
 */
#cmp_92830c03-e5fa-4c80-97f0-6abad66a8755 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_92830c03-e5fa-4c80-97f0-6abad66a8755 h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_92830c03-e5fa-4c80-97f0-6abad66a8755 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_92830c03-e5fa-4c80-97f0-6abad66a8755 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_92830c03-e5fa-4c80-97f0-6abad66a8755 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_92830c03-e5fa-4c80-97f0-6abad66a8755 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_92830c03-e5fa-4c80-97f0-6abad66a8755 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/balanced-points-share-a-box/cmp_ce572da3-abfc-47cf-bb96-060775895775/component.css
 */
#cmp_ce572da3-abfc-47cf-bb96-060775895775 img {
	max-width: 100%;
}

/*
 * components/balanced-points-share-a-box/cmp_d77ce5a1-b9dc-40bc-ad84-a5d9dfc28970/component.css
 */
#cmp_d77ce5a1-b9dc-40bc-ad84-a5d9dfc28970 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_d77ce5a1-b9dc-40bc-ad84-a5d9dfc28970 h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_d77ce5a1-b9dc-40bc-ad84-a5d9dfc28970 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_d77ce5a1-b9dc-40bc-ad84-a5d9dfc28970 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_d77ce5a1-b9dc-40bc-ad84-a5d9dfc28970 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_d77ce5a1-b9dc-40bc-ad84-a5d9dfc28970 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_d77ce5a1-b9dc-40bc-ad84-a5d9dfc28970 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/checkout/cmp_b075adfb-ffe5-4d19-af8c-4e832c16f928/component.css
 */
#cmp_b075adfb-ffe5-4d19-af8c-4e832c16f928 .checkout_content {
	overflow: auto;
}

#cmp_b075adfb-ffe5-4d19-af8c-4e832c16f928 .checkout_content section {
	border-color: #F5F5F5;
}

#cmp_b075adfb-ffe5-4d19-af8c-4e832c16f928 .cart_listing table {
	border-color: #F5F5F5;
}

/*
 * components/checkout/cmp_f4ae36b4-79cd-4dba-b8c6-d854ffb8f126/component.css
 */
#cmp_f4ae36b4-79cd-4dba-b8c6-d854ffb8f126 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_f4ae36b4-79cd-4dba-b8c6-d854ffb8f126 h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_f4ae36b4-79cd-4dba-b8c6-d854ffb8f126 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_f4ae36b4-79cd-4dba-b8c6-d854ffb8f126 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_f4ae36b4-79cd-4dba-b8c6-d854ffb8f126 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_f4ae36b4-79cd-4dba-b8c6-d854ffb8f126 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_f4ae36b4-79cd-4dba-b8c6-d854ffb8f126 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/customer/account/cmp_2f401bc8-bad0-444c-adf1-744cb80756a0/component.css
 */

/*
 * components/customer/edit/cmp_763c7e78-db50-4c9f-ab01-a57c8cf7bf09/component.css
 */

/*
 * components/customer/forgot_password/cmp_1a7a1bb1-2fe5-4a6e-a203-06329bc2a627/component.css
 */
#cmp_1a7a1bb1-2fe5-4a6e-a203-06329bc2a627 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_1a7a1bb1-2fe5-4a6e-a203-06329bc2a627 h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_1a7a1bb1-2fe5-4a6e-a203-06329bc2a627 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_1a7a1bb1-2fe5-4a6e-a203-06329bc2a627 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_1a7a1bb1-2fe5-4a6e-a203-06329bc2a627 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_1a7a1bb1-2fe5-4a6e-a203-06329bc2a627 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_1a7a1bb1-2fe5-4a6e-a203-06329bc2a627 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_1a7a1bb1-2fe5-4a6e-a203-06329bc2a627  {
	padding: 50px 0;
}
#cmp_1a7a1bb1-2fe5-4a6e-a203-06329bc2a627 h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/forgot_password/cmp_af97a743-d7f1-4983-baa9-c3627c20cfe1/component.css
 */

#cmp_af97a743-d7f1-4983-baa9-c3627c20cfe1  {
	padding-bottom: 120px;
}
/*
 * components/customer/login/cmp_df407d0d-1f81-4066-833f-d523a9e09aab/component.css
 */
#cmp_df407d0d-1f81-4066-833f-d523a9e09aab {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_df407d0d-1f81-4066-833f-d523a9e09aab h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_df407d0d-1f81-4066-833f-d523a9e09aab h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_df407d0d-1f81-4066-833f-d523a9e09aab h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_df407d0d-1f81-4066-833f-d523a9e09aab p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_df407d0d-1f81-4066-833f-d523a9e09aab ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_df407d0d-1f81-4066-833f-d523a9e09aab ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_df407d0d-1f81-4066-833f-d523a9e09aab  {
	padding: 50px 0;
}
#cmp_df407d0d-1f81-4066-833f-d523a9e09aab h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/login/cmp_f199ad9c-063b-4211-b6fe-ed824056a7a1/component.css
 */

#cmp_f199ad9c-063b-4211-b6fe-ed824056a7a1  {
	padding-bottom: 120px;
}
/*
 * components/customer/order/cmp_d853dc90-0892-4a0c-8ad7-0c01abaa05f6/component.css
 */

/*
 * components/customer/orders/cmp_dde48113-6c7a-430c-ad22-7bd8c90fd577/component.css
 */

/*
 * components/customer/password_reset/cmp_cffe0d3a-0e7b-49df-9ee0-b21ccbf4bfaf/component.css
 */

#cmp_cffe0d3a-0e7b-49df-9ee0-b21ccbf4bfaf  {
	padding-bottom: 120px;
}
/*
 * components/customer/password_reset/cmp_d27eebfe-03b9-4a13-bd01-23abd2a2cc8c/component.css
 */
#cmp_d27eebfe-03b9-4a13-bd01-23abd2a2cc8c {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_d27eebfe-03b9-4a13-bd01-23abd2a2cc8c h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_d27eebfe-03b9-4a13-bd01-23abd2a2cc8c h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_d27eebfe-03b9-4a13-bd01-23abd2a2cc8c h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_d27eebfe-03b9-4a13-bd01-23abd2a2cc8c p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_d27eebfe-03b9-4a13-bd01-23abd2a2cc8c ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_d27eebfe-03b9-4a13-bd01-23abd2a2cc8c ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_d27eebfe-03b9-4a13-bd01-23abd2a2cc8c  {
	padding: 50px 0;
}
#cmp_d27eebfe-03b9-4a13-bd01-23abd2a2cc8c h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/thank_you/cmp_3ebad3c2-a6c1-4451-b388-5d3fcb182273/component.css
 */

/*
 * components/discovery/cmp_2713348f-41d4-4ba6-b12f-2a3544e1ef7c/component.css
 */
#cmp_2713348f-41d4-4ba6-b12f-2a3544e1ef7c {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_2713348f-41d4-4ba6-b12f-2a3544e1ef7c h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_2713348f-41d4-4ba6-b12f-2a3544e1ef7c h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_2713348f-41d4-4ba6-b12f-2a3544e1ef7c h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_2713348f-41d4-4ba6-b12f-2a3544e1ef7c p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_2713348f-41d4-4ba6-b12f-2a3544e1ef7c ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_2713348f-41d4-4ba6-b12f-2a3544e1ef7c ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/discovery/cmp_333b3864-1641-4506-a9eb-9a63bccb4875/component.css
 */
#cmp_333b3864-1641-4506-a9eb-9a63bccb4875 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_333b3864-1641-4506-a9eb-9a63bccb4875 h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_333b3864-1641-4506-a9eb-9a63bccb4875 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_333b3864-1641-4506-a9eb-9a63bccb4875 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_333b3864-1641-4506-a9eb-9a63bccb4875 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_333b3864-1641-4506-a9eb-9a63bccb4875 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_333b3864-1641-4506-a9eb-9a63bccb4875 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/faqss/cmp_d1b7b6c3-ba49-420b-bd64-1233646b3c89/component.css
 */
#cmp_d1b7b6c3-ba49-420b-bd64-1233646b3c89 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: ;
}

#cmp_d1b7b6c3-ba49-420b-bd64-1233646b3c89 h1 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_d1b7b6c3-ba49-420b-bd64-1233646b3c89 h2 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_d1b7b6c3-ba49-420b-bd64-1233646b3c89 h3 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_d1b7b6c3-ba49-420b-bd64-1233646b3c89 p {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_d1b7b6c3-ba49-420b-bd64-1233646b3c89 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_d1b7b6c3-ba49-420b-bd64-1233646b3c89 ul {
	list-style: disc;
	list-style-position: inside;
	color: ;
	font-family: ;
	font-size: ;
}

/*
 * components/for-men/cmp_4a376866-397b-4ea9-9091-c804d63305f0/component.css
 */
#cmp_4a376866-397b-4ea9-9091-c804d63305f0 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_4a376866-397b-4ea9-9091-c804d63305f0 h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_4a376866-397b-4ea9-9091-c804d63305f0 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_4a376866-397b-4ea9-9091-c804d63305f0 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_4a376866-397b-4ea9-9091-c804d63305f0 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_4a376866-397b-4ea9-9091-c804d63305f0 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_4a376866-397b-4ea9-9091-c804d63305f0 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/for-men/cmp_c853c505-6878-4241-ba3d-3b06de25b812/component.css
 */
#cmp_c853c505-6878-4241-ba3d-3b06de25b812 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: rgb(255, 255, 255);
}

#cmp_c853c505-6878-4241-ba3d-3b06de25b812 h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_c853c505-6878-4241-ba3d-3b06de25b812 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_c853c505-6878-4241-ba3d-3b06de25b812 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_c853c505-6878-4241-ba3d-3b06de25b812 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_c853c505-6878-4241-ba3d-3b06de25b812 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_c853c505-6878-4241-ba3d-3b06de25b812 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/for-men/cmp_fff35f33-c81a-4a90-a1d5-a84830b63dc1/component.css
 */
#cmp_fff35f33-c81a-4a90-a1d5-a84830b63dc1 img {
	max-width: 100%;
}

/*
 * components/for-women/cmp_27c333d1-5753-4bb3-bb97-52fb26f7687a/component.css
 */
#cmp_27c333d1-5753-4bb3-bb97-52fb26f7687a {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_27c333d1-5753-4bb3-bb97-52fb26f7687a h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_27c333d1-5753-4bb3-bb97-52fb26f7687a h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_27c333d1-5753-4bb3-bb97-52fb26f7687a h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_27c333d1-5753-4bb3-bb97-52fb26f7687a p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_27c333d1-5753-4bb3-bb97-52fb26f7687a ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_27c333d1-5753-4bb3-bb97-52fb26f7687a ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/for-women/cmp_c6b724ea-8370-4721-8265-9ab9705a0f71/component.css
 */
#cmp_c6b724ea-8370-4721-8265-9ab9705a0f71 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_c6b724ea-8370-4721-8265-9ab9705a0f71 h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_c6b724ea-8370-4721-8265-9ab9705a0f71 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_c6b724ea-8370-4721-8265-9ab9705a0f71 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_c6b724ea-8370-4721-8265-9ab9705a0f71 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_c6b724ea-8370-4721-8265-9ab9705a0f71 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_c6b724ea-8370-4721-8265-9ab9705a0f71 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/global/cmp_0d8a4b75-9a72-4b2c-b865-e8d84ef702dd/component.css
 */
#cmp_0d8a4b75-9a72-4b2c-b865-e8d84ef702dd .navbar {
	background-color: rgba(0, 0, 0, 0.1);
	border-radius: 0;
	margin-bottom: 3rem;
}

#cmp_0d8a4b75-9a72-4b2c-b865-e8d84ef702dd .navbar-brand {
	color: ;
	font-family: ;
	font-size: 40px;
	margin: 0;
	line-height: 1;
	text-align: center;
}

#cmp_0d8a4b75-9a72-4b2c-b865-e8d84ef702dd .navbar-brand > img {
	display: inline-block;
}

#cmp_0d8a4b75-9a72-4b2c-b865-e8d84ef702dd .navbar-nav {
	display: -moz-flex;
	display: -webkit-flex;
	display: flex;

	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;

	margin: 0;
}

#cmp_0d8a4b75-9a72-4b2c-b865-e8d84ef702dd .navbar a.nav-link,
#cmp_0d8a4b75-9a72-4b2c-b865-e8d84ef702dd .navbar button {
	color: ;
	font-family: ;
	font-size: 12px;;
	letter-spacing: 1px;
	padding: 8px 12px;
	text-align: center;
	text-transform: uppercase;
}

#cmp_0d8a4b75-9a72-4b2c-b865-e8d84ef702dd .navbar a.nav-link:hover,
#cmp_0d8a4b75-9a72-4b2c-b865-e8d84ef702dd .navbar a.nav-link:focus,
#cmp_0d8a4b75-9a72-4b2c-b865-e8d84ef702dd .navbar a.nav-link:active,
#cmp_0d8a4b75-9a72-4b2c-b865-e8d84ef702dd .navbar button:hover,
#cmp_0d8a4b75-9a72-4b2c-b865-e8d84ef702dd .navbar button:focus,
#cmp_0d8a4b75-9a72-4b2c-b865-e8d84ef702dd .navbar button:active {
	color: ;
	outline: none;
}

#cmp_0d8a4b75-9a72-4b2c-b865-e8d84ef702dd .navbar-nav .dropdown-menu a {
	color: #4A4A4A;
	padding: 10px 0;
}

#cmp_0d8a4b75-9a72-4b2c-b865-e8d84ef702dd .navbar-toggler {
	padding: 1rem;
}

@media(min-width: 767px) {
	#cmp_0d8a4b75-9a72-4b2c-b865-e8d84ef702dd .navbar-nav {
		-moz-flex-direction: row;
		-webkit-flex-direction: row;
		flex-direction: row;

		-moz-justify-content: center;
		-webkit-justify-content: center;
		justify-content: center;

		-moz-flex-wrap: wrap;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	#cmp_0d8a4b75-9a72-4b2c-b865-e8d84ef702dd .navbar-nav li {
		-moz-flex-shrink: 0;
		-webkit-flex-shrink: 0;
		flex-shrink: 0;
	}

	#cmp_0d8a4b75-9a72-4b2c-b865-e8d84ef702dd .navbar-nav .nav-link {
		padding: 8px 0 8px 28px;
	}
}

/*
 * components/global/cmp_1b1fd440-6987-4f4b-8e32-19939cf00760/component.css
 */
#cmp_1b1fd440-6987-4f4b-8e32-19939cf00760 {
	margin-top: 40px;
	margin-bottom: 40px;
}

#cmp_1b1fd440-6987-4f4b-8e32-19939cf00760 .progress-bar-container {
	position: relative;
}

#cmp_1b1fd440-6987-4f4b-8e32-19939cf00760 .progress-bar-filler {
	height: 2px;
	width: 90%;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	left: 0;
	right: 0;
	z-index: -10;
	background: #E5E5E5;
}

#cmp_1b1fd440-6987-4f4b-8e32-19939cf00760 .progress-bar {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	color: #E5E5E5;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_1b1fd440-6987-4f4b-8e32-19939cf00760 .progress-bar::before {
		width: 86%;
		margin: 0 7%;
	}
}

#cmp_1b1fd440-6987-4f4b-8e32-19939cf00760 .progress-bar .step {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#cmp_1b1fd440-6987-4f4b-8e32-19939cf00760 .progress-bar .step .point {
	width: 20px;
	height: 20px;
	border-radius: 10px;
	background-color: #E5E5E5;
	border: 4px solid white;
}

#cmp_1b1fd440-6987-4f4b-8e32-19939cf00760 .progress-bar .step.active {
	color: #4A4A4A;
}

#cmp_1b1fd440-6987-4f4b-8e32-19939cf00760 .progress-bar .step.active .point {
	background-color: ;;
}

/*
 * components/global/cmp_77ed2af2-3f25-4a3e-8869-73fcb28a92cb/component.css
 */
##cmp_77ed2af2-3f25-4a3e-8869-73fcb28a92cb.footer {
	background-color: ;
	font-family: ;
	color: ;
	font-size: ;
	padding-top: 10px;
	padding-bottom: 10px;
	margin-top: 100px;
	text-align: center;
	border-top: 1px solid #DDDDDD;
}

##cmp_77ed2af2-3f25-4a3e-8869-73fcb28a92cb a,
##cmp_77ed2af2-3f25-4a3e-8869-73fcb28a92cb a:hover,
##cmp_77ed2af2-3f25-4a3e-8869-73fcb28a92cb a:focus {
	color: ;
}

##cmp_77ed2af2-3f25-4a3e-8869-73fcb28a92cb .footer-social {
	padding-top: 20px;
	padding-bottom: 15px;
	text-align: center;
}

##cmp_77ed2af2-3f25-4a3e-8869-73fcb28a92cb .footer-social a {
	display: inline-block;
	padding-left: 5px;
	padding-right: 5px;
}

##cmp_77ed2af2-3f25-4a3e-8869-73fcb28a92cb .footer-social svg path {
	stroke: ;
}

##cmp_77ed2af2-3f25-4a3e-8869-73fcb28a92cb .footer-social svg path + path {
	fill: ;
}

##cmp_77ed2af2-3f25-4a3e-8869-73fcb28a92cb .footer-social a:hover svg path,
##cmp_77ed2af2-3f25-4a3e-8869-73fcb28a92cb .footer-social a:focus svg path,
##cmp_77ed2af2-3f25-4a3e-8869-73fcb28a92cb .footer-social a:active svg path {
	stroke: ;
}

##cmp_77ed2af2-3f25-4a3e-8869-73fcb28a92cb .footer-social a:hover svg path + path,
##cmp_77ed2af2-3f25-4a3e-8869-73fcb28a92cb .footer-social a:focus svg path + path,
##cmp_77ed2af2-3f25-4a3e-8869-73fcb28a92cb .footer-social a:active svg path + path {
	fill: ;
}

@media(min-width: 1140px) {
	.footer-copyright {
		text-align: left;
	}

	.footer-tribute {
		text-align: right;
	}
}

/*
 * components/home/cmp_17b4d3a4-0fc5-448a-81f2-c3be587f0477/component.css
 */
#cmp_17b4d3a4-0fc5-448a-81f2-c3be587f0477 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_17b4d3a4-0fc5-448a-81f2-c3be587f0477 h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_17b4d3a4-0fc5-448a-81f2-c3be587f0477 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_17b4d3a4-0fc5-448a-81f2-c3be587f0477 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_17b4d3a4-0fc5-448a-81f2-c3be587f0477 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_17b4d3a4-0fc5-448a-81f2-c3be587f0477 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_17b4d3a4-0fc5-448a-81f2-c3be587f0477 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/home/cmp_92a6c5b9-46a0-4b27-a653-8d9ac00f3680/component.css
 */
#cmp_92a6c5b9-46a0-4b27-a653-8d9ac00f3680 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_92a6c5b9-46a0-4b27-a653-8d9ac00f3680 h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_92a6c5b9-46a0-4b27-a653-8d9ac00f3680 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_92a6c5b9-46a0-4b27-a653-8d9ac00f3680 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_92a6c5b9-46a0-4b27-a653-8d9ac00f3680 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_92a6c5b9-46a0-4b27-a653-8d9ac00f3680 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_92a6c5b9-46a0-4b27-a653-8d9ac00f3680 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/how-it-works/cmp_87a95620-72be-4ba8-b3ba-9b434566638b/component.css
 */
#cmp_87a95620-72be-4ba8-b3ba-9b434566638b {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: ;
}

#cmp_87a95620-72be-4ba8-b3ba-9b434566638b h1 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_87a95620-72be-4ba8-b3ba-9b434566638b h2 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_87a95620-72be-4ba8-b3ba-9b434566638b h3 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_87a95620-72be-4ba8-b3ba-9b434566638b p {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_87a95620-72be-4ba8-b3ba-9b434566638b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_87a95620-72be-4ba8-b3ba-9b434566638b ul {
	list-style: disc;
	list-style-position: inside;
	color: ;
	font-family: ;
	font-size: ;
}

/*
 * components/index/cmp_0f3e2a39-dd9d-47b7-a295-2b119c8d16a4/component.css
 */
#cmp_0f3e2a39-dd9d-47b7-a295-2b119c8d16a4 {
	padding: 0;
}

#cmp_0f3e2a39-dd9d-47b7-a295-2b119c8d16a4 .hero-content {
	background-color: rgb(152, 207, 133);
	padding: 20px;
}

#cmp_0f3e2a39-dd9d-47b7-a295-2b119c8d16a4 .hero-content h1 {
	color: rgb(128, 199, 123);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_0f3e2a39-dd9d-47b7-a295-2b119c8d16a4 .hero-content h2 {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 24px;
}

#cmp_0f3e2a39-dd9d-47b7-a295-2b119c8d16a4 .hero-content h3 {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 16px;
}

#cmp_0f3e2a39-dd9d-47b7-a295-2b119c8d16a4 .hero-content p {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 16px;
}

#cmp_0f3e2a39-dd9d-47b7-a295-2b119c8d16a4 .hero-content .btn {
	background-color: rgb(251, 175, 63);
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_0f3e2a39-dd9d-47b7-a295-2b119c8d16a4 .hero-content .btn:hover {
	background-color: rgb(251, 175, 63);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_0f3e2a39-dd9d-47b7-a295-2b119c8d16a4 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_0f3e2a39-dd9d-47b7-a295-2b119c8d16a4 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_0f3e2a39-dd9d-47b7-a295-2b119c8d16a4 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_0f3e2a39-dd9d-47b7-a295-2b119c8d16a4 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_0f3e2a39-dd9d-47b7-a295-2b119c8d16a4 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_0f3e2a39-dd9d-47b7-a295-2b119c8d16a4 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_0f3e2a39-dd9d-47b7-a295-2b119c8d16a4 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/index/cmp_2ae39575-7c5d-4a09-983a-a3b97909f1a6/component.css
 */
/**********
Navigation
**********/
#cmp_2ae39575-7c5d-4a09-983a-a3b97909f1a6 .navbar {
	background-color: rgba(0, 0, 0, 0.1);
	border-radius: 0;
	margin-bottom: 3rem;
}

#cmp_2ae39575-7c5d-4a09-983a-a3b97909f1a6 .navbar-brand {
	color: ;
	font-family: ;
	font-size: ;
	margin: 0;
	line-height: 1;
	text-align: center;
}

#cmp_2ae39575-7c5d-4a09-983a-a3b97909f1a6 .navbar-brand > img {
	display: inline-block;
}

#cmp_2ae39575-7c5d-4a09-983a-a3b97909f1a6 .navbar-nav {
	display: -moz-flex;
	display: -webkit-flex;
	display: flex;

	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;

	margin: 20px 0;
}

#cmp_2ae39575-7c5d-4a09-983a-a3b97909f1a6 .navbar a.nav-link,
#cmp_2ae39575-7c5d-4a09-983a-a3b97909f1a6 .navbar button {
	color: #FFFFFF;
	font-family: ;
	font-size: 12px;;
	letter-spacing: 1px;
	padding: 8px 12px;
	text-align: center;
	text-transform: uppercase;
}

#cmp_2ae39575-7c5d-4a09-983a-a3b97909f1a6 .navbar a.nav-link:hover,
#cmp_2ae39575-7c5d-4a09-983a-a3b97909f1a6 .navbar a.nav-link:focus,
#cmp_2ae39575-7c5d-4a09-983a-a3b97909f1a6 .navbar a.nav-link:active,
#cmp_2ae39575-7c5d-4a09-983a-a3b97909f1a6 .navbar button:hover,
#cmp_2ae39575-7c5d-4a09-983a-a3b97909f1a6 .navbar button:focus,
#cmp_2ae39575-7c5d-4a09-983a-a3b97909f1a6 .navbar button:active {
	color: ;
	outline: none;
}

#cmp_2ae39575-7c5d-4a09-983a-a3b97909f1a6 .navbar-nav .dropdown-menu a {
	color: #4A4A4A;
	padding: 10px 0;
}

#cmp_2ae39575-7c5d-4a09-983a-a3b97909f1a6 .navbar-toggler {
	padding: 1rem;
}

@media(min-width: 767px) {
	#cmp_2ae39575-7c5d-4a09-983a-a3b97909f1a6 .navbar {
		background-color: transparent;
		margin-bottom: 0;
	}

	#cmp_2ae39575-7c5d-4a09-983a-a3b97909f1a6 .navbar-nav {
		-moz-flex-direction: row;
		-webkit-flex-direction: row;
		flex-direction: row;

		-moz-justify-content: center;
		-webkit-justify-content: center;
		justify-content: center;

		-moz-flex-wrap: wrap;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	#cmp_2ae39575-7c5d-4a09-983a-a3b97909f1a6 .navbar-nav li {
		-moz-flex-shrink: 0;
		-webkit-flex-shrink: 0;
		flex-shrink: 0;
	}

	#cmp_2ae39575-7c5d-4a09-983a-a3b97909f1a6 .navbar-nav .nav-link {
		padding: 8px 0 8px 28px;
	}
}


/**********
Hero
**********/
#cmp_2ae39575-7c5d-4a09-983a-a3b97909f1a6 .hero-content {
	padding: 20px;
}

@media(min-width: 768px) {
	#cmp_2ae39575-7c5d-4a09-983a-a3b97909f1a6 .hero-content {
		min-height: 700px;
	}
}

#cmp_2ae39575-7c5d-4a09-983a-a3b97909f1a6 .hero-content h1 {
	color: ;
	font-family: ;
	font-size: 50px;
	letter-spacing: 2px;
}

#cmp_2ae39575-7c5d-4a09-983a-a3b97909f1a6 .hero-content h2 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_2ae39575-7c5d-4a09-983a-a3b97909f1a6 .hero-content h3 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_2ae39575-7c5d-4a09-983a-a3b97909f1a6 .hero-content p {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_2ae39575-7c5d-4a09-983a-a3b97909f1a6 .hero-content .btn {
	margin-bottom: 10px;
}

#cmp_2ae39575-7c5d-4a09-983a-a3b97909f1a6 .hero-content .btn.btn-primary {
	border: 2px solid transparent;
	background-color: ;
	color: #FFFFFF;
	font-family: ;
	font-size: ;
}

#cmp_2ae39575-7c5d-4a09-983a-a3b97909f1a6 .hero-content .btn.btn-primary:hover,
#cmp_2ae39575-7c5d-4a09-983a-a3b97909f1a6 .hero-content .btn.btn-primary:focus,
#cmp_2ae39575-7c5d-4a09-983a-a3b97909f1a6 .hero-content .btn.btn-primary:active,
#cmp_2ae39575-7c5d-4a09-983a-a3b97909f1a6 .hero-content .btn.btn-primary:active:focus {
	background-color: ;
	color: #FFFFFF;
}

#cmp_2ae39575-7c5d-4a09-983a-a3b97909f1a6 .hero-content .btn-secondary {
	border: 2px solid;

	background-color: rgba(255, 255, 255, 0);
	border-color: #FFFFFF;
	color: #FFFFFF;
	font-family: ;
	font-size: ;
}

#cmp_2ae39575-7c5d-4a09-983a-a3b97909f1a6 .hero-content .btn.btn-secondary:hover,
#cmp_2ae39575-7c5d-4a09-983a-a3b97909f1a6 .hero-content .btn.btn-secondary:focus,
#cmp_2ae39575-7c5d-4a09-983a-a3b97909f1a6 .hero-content .btn.btn-secondary:active,
#cmp_2ae39575-7c5d-4a09-983a-a3b97909f1a6 .hero-content .btn.btn-secondary:active:focus {
	background-color: ;
	border-color: ;
	color: ;
}

#cmp_2ae39575-7c5d-4a09-983a-a3b97909f1a6 h1 {
	margin-top: 20px;
	margin-bottom: 10px;
}
#cmp_2ae39575-7c5d-4a09-983a-a3b97909f1a6 p {
	margin-bottom: 25px;
}
/*
 * components/index/cmp_49379cd7-dce8-46f0-8000-aba0fe12769c/component.css
 */
#cmp_49379cd7-dce8-46f0-8000-aba0fe12769c {
	padding: 0;
}

#cmp_49379cd7-dce8-46f0-8000-aba0fe12769c .hero-content {
	background-color: rgb(52, 208, 220);
	padding: 20px;
}

#cmp_49379cd7-dce8-46f0-8000-aba0fe12769c .hero-content h1 {
	color: rgb(128, 199, 123);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_49379cd7-dce8-46f0-8000-aba0fe12769c .hero-content h2 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 24px;
}

#cmp_49379cd7-dce8-46f0-8000-aba0fe12769c .hero-content h3 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 16px;
}

#cmp_49379cd7-dce8-46f0-8000-aba0fe12769c .hero-content p {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 16px;
}

#cmp_49379cd7-dce8-46f0-8000-aba0fe12769c .hero-content .btn {
	background-color: rgb(152, 207, 133);
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_49379cd7-dce8-46f0-8000-aba0fe12769c .hero-content .btn:hover {
	background-color: rgb(152, 207, 133);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_49379cd7-dce8-46f0-8000-aba0fe12769c .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_49379cd7-dce8-46f0-8000-aba0fe12769c .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_49379cd7-dce8-46f0-8000-aba0fe12769c .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_49379cd7-dce8-46f0-8000-aba0fe12769c .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_49379cd7-dce8-46f0-8000-aba0fe12769c .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_49379cd7-dce8-46f0-8000-aba0fe12769c .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_49379cd7-dce8-46f0-8000-aba0fe12769c .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/index/cmp_647d9112-3ca5-446d-be2d-0aeb11057c95/component.css
 */
#cmp_647d9112-3ca5-446d-be2d-0aeb11057c95 {
	padding: 0;
}

#cmp_647d9112-3ca5-446d-be2d-0aeb11057c95 .hero-content {
	background-color: ;
	padding: 20px;
}

#cmp_647d9112-3ca5-446d-be2d-0aeb11057c95 .hero-content h1 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_647d9112-3ca5-446d-be2d-0aeb11057c95 .hero-content h2 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_647d9112-3ca5-446d-be2d-0aeb11057c95 .hero-content h3 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_647d9112-3ca5-446d-be2d-0aeb11057c95 .hero-content p {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_647d9112-3ca5-446d-be2d-0aeb11057c95 .hero-content .btn {
	background-color: ;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_647d9112-3ca5-446d-be2d-0aeb11057c95 .hero-content .btn:hover {
	background-color: ;
	color: ;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_647d9112-3ca5-446d-be2d-0aeb11057c95 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_647d9112-3ca5-446d-be2d-0aeb11057c95 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_647d9112-3ca5-446d-be2d-0aeb11057c95 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_647d9112-3ca5-446d-be2d-0aeb11057c95 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_647d9112-3ca5-446d-be2d-0aeb11057c95 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_647d9112-3ca5-446d-be2d-0aeb11057c95 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_647d9112-3ca5-446d-be2d-0aeb11057c95 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/index/cmp_83960c43-e65c-4a59-b599-286c562df7f7/component.css
 */
#cmp_83960c43-e65c-4a59-b599-286c562df7f7 {
	padding: 0;
}

#cmp_83960c43-e65c-4a59-b599-286c562df7f7 .hero-content {
	background-color: rgb(152, 207, 133);
	padding: 20px;
}

#cmp_83960c43-e65c-4a59-b599-286c562df7f7 .hero-content h1 {
	color: rgb(128, 199, 123);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_83960c43-e65c-4a59-b599-286c562df7f7 .hero-content h2 {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 24px;
}

#cmp_83960c43-e65c-4a59-b599-286c562df7f7 .hero-content h3 {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 16px;
}

#cmp_83960c43-e65c-4a59-b599-286c562df7f7 .hero-content p {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 16px;
}

#cmp_83960c43-e65c-4a59-b599-286c562df7f7 .hero-content .btn {
	background-color: rgb(251, 175, 63);
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_83960c43-e65c-4a59-b599-286c562df7f7 .hero-content .btn:hover {
	background-color: rgb(128, 199, 123);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_83960c43-e65c-4a59-b599-286c562df7f7 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_83960c43-e65c-4a59-b599-286c562df7f7 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_83960c43-e65c-4a59-b599-286c562df7f7 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_83960c43-e65c-4a59-b599-286c562df7f7 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_83960c43-e65c-4a59-b599-286c562df7f7 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_83960c43-e65c-4a59-b599-286c562df7f7 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_83960c43-e65c-4a59-b599-286c562df7f7 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/index/cmp_ab51cd26-5241-465a-9e28-9a77f12b935c/component.css
 */
#cmp_ab51cd26-5241-465a-9e28-9a77f12b935c {
	background-color: ;
}

#cmp_ab51cd26-5241-465a-9e28-9a77f12b935c .title {
	margin-top: 40px;
}

#cmp_ab51cd26-5241-465a-9e28-9a77f12b935c .box-choose-row {
	justify-content: center;
}

#cmp_ab51cd26-5241-465a-9e28-9a77f12b935c .box-choose {
	margin-top: 40px;
	margin-bottom: 40px;
}

#cmp_ab51cd26-5241-465a-9e28-9a77f12b935c .box-choose img {
	margin-bottom: 20px;
}

#cmp_ab51cd26-5241-465a-9e28-9a77f12b935c h1 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_ab51cd26-5241-465a-9e28-9a77f12b935c h2 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_ab51cd26-5241-465a-9e28-9a77f12b935c h3 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_ab51cd26-5241-465a-9e28-9a77f12b935c p {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_ab51cd26-5241-465a-9e28-9a77f12b935c h3 {
	margin-bottom: 25px;
}
/*
 * components/index/cmp_b13f5f94-1ed6-4477-b1ab-457cf9cd011d/component.css
 */
#cmp_b13f5f94-1ed6-4477-b1ab-457cf9cd011d {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_b13f5f94-1ed6-4477-b1ab-457cf9cd011d h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_b13f5f94-1ed6-4477-b1ab-457cf9cd011d h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_b13f5f94-1ed6-4477-b1ab-457cf9cd011d h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_b13f5f94-1ed6-4477-b1ab-457cf9cd011d p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_b13f5f94-1ed6-4477-b1ab-457cf9cd011d ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_b13f5f94-1ed6-4477-b1ab-457cf9cd011d ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/index/cmp_ef9cfd83-f496-4597-b54e-aa2439a901b6/component.css
 */
#cmp_ef9cfd83-f496-4597-b54e-aa2439a901b6 {
	padding: 0;
}

#cmp_ef9cfd83-f496-4597-b54e-aa2439a901b6 .hero-content {
	background-color: ;
	padding: 20px;
}

#cmp_ef9cfd83-f496-4597-b54e-aa2439a901b6 .hero-content h1 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_ef9cfd83-f496-4597-b54e-aa2439a901b6 .hero-content h2 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_ef9cfd83-f496-4597-b54e-aa2439a901b6 .hero-content h3 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_ef9cfd83-f496-4597-b54e-aa2439a901b6 .hero-content p {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_ef9cfd83-f496-4597-b54e-aa2439a901b6 .hero-content .btn {
	background-color: ;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_ef9cfd83-f496-4597-b54e-aa2439a901b6 .hero-content .btn:hover {
	background-color: ;
	color: ;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_ef9cfd83-f496-4597-b54e-aa2439a901b6 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_ef9cfd83-f496-4597-b54e-aa2439a901b6 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_ef9cfd83-f496-4597-b54e-aa2439a901b6 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_ef9cfd83-f496-4597-b54e-aa2439a901b6 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_ef9cfd83-f496-4597-b54e-aa2439a901b6 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_ef9cfd83-f496-4597-b54e-aa2439a901b6 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_ef9cfd83-f496-4597-b54e-aa2439a901b6 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/lifestyle/cmp_53482b24-dd53-4c61-8441-ddf3514015f8/component.css
 */
#cmp_53482b24-dd53-4c61-8441-ddf3514015f8 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_53482b24-dd53-4c61-8441-ddf3514015f8 h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_53482b24-dd53-4c61-8441-ddf3514015f8 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_53482b24-dd53-4c61-8441-ddf3514015f8 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_53482b24-dd53-4c61-8441-ddf3514015f8 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_53482b24-dd53-4c61-8441-ddf3514015f8 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_53482b24-dd53-4c61-8441-ddf3514015f8 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/lifestyle/cmp_7ecffebf-c26b-4d22-b667-b9943cabfe08/component.css
 */
#cmp_7ecffebf-c26b-4d22-b667-b9943cabfe08 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_7ecffebf-c26b-4d22-b667-b9943cabfe08 h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_7ecffebf-c26b-4d22-b667-b9943cabfe08 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_7ecffebf-c26b-4d22-b667-b9943cabfe08 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_7ecffebf-c26b-4d22-b667-b9943cabfe08 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_7ecffebf-c26b-4d22-b667-b9943cabfe08 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_7ecffebf-c26b-4d22-b667-b9943cabfe08 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/pantry/cmp_161ae19d-1c7e-43f7-9398-f48ee618164e/component.css
 */
#cmp_161ae19d-1c7e-43f7-9398-f48ee618164e {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_161ae19d-1c7e-43f7-9398-f48ee618164e h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_161ae19d-1c7e-43f7-9398-f48ee618164e h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_161ae19d-1c7e-43f7-9398-f48ee618164e h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_161ae19d-1c7e-43f7-9398-f48ee618164e p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_161ae19d-1c7e-43f7-9398-f48ee618164e ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_161ae19d-1c7e-43f7-9398-f48ee618164e ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/pantry/cmp_da1d4d93-d648-4a3f-8ffb-1ad8d9cbda88/component.css
 */
#cmp_da1d4d93-d648-4a3f-8ffb-1ad8d9cbda88 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_da1d4d93-d648-4a3f-8ffb-1ad8d9cbda88 h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_da1d4d93-d648-4a3f-8ffb-1ad8d9cbda88 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_da1d4d93-d648-4a3f-8ffb-1ad8d9cbda88 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_da1d4d93-d648-4a3f-8ffb-1ad8d9cbda88 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_da1d4d93-d648-4a3f-8ffb-1ad8d9cbda88 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_da1d4d93-d648-4a3f-8ffb-1ad8d9cbda88 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/pantry-gluten-free/cmp_599fe95c-ba63-4699-b519-6d74dbe314ea/component.css
 */
#cmp_599fe95c-ba63-4699-b519-6d74dbe314ea {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_599fe95c-ba63-4699-b519-6d74dbe314ea h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_599fe95c-ba63-4699-b519-6d74dbe314ea h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_599fe95c-ba63-4699-b519-6d74dbe314ea h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_599fe95c-ba63-4699-b519-6d74dbe314ea p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_599fe95c-ba63-4699-b519-6d74dbe314ea ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_599fe95c-ba63-4699-b519-6d74dbe314ea ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/pantry-gluten-free/cmp_ba90cc95-fe35-494e-bae8-27ae0c42ee4f/component.css
 */
#cmp_ba90cc95-fe35-494e-bae8-27ae0c42ee4f {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_ba90cc95-fe35-494e-bae8-27ae0c42ee4f h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_ba90cc95-fe35-494e-bae8-27ae0c42ee4f h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_ba90cc95-fe35-494e-bae8-27ae0c42ee4f h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_ba90cc95-fe35-494e-bae8-27ae0c42ee4f p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_ba90cc95-fe35-494e-bae8-27ae0c42ee4f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_ba90cc95-fe35-494e-bae8-27ae0c42ee4f ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/pantry-keto-friendly/cmp_626f5832-131f-4408-85d4-247187b9375b/component.css
 */
#cmp_626f5832-131f-4408-85d4-247187b9375b {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_626f5832-131f-4408-85d4-247187b9375b h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_626f5832-131f-4408-85d4-247187b9375b h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_626f5832-131f-4408-85d4-247187b9375b h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_626f5832-131f-4408-85d4-247187b9375b p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_626f5832-131f-4408-85d4-247187b9375b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_626f5832-131f-4408-85d4-247187b9375b ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/pantry-keto-friendly/cmp_d948e620-fc03-4772-97b9-5739aff939c1/component.css
 */
#cmp_d948e620-fc03-4772-97b9-5739aff939c1 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_d948e620-fc03-4772-97b9-5739aff939c1 h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_d948e620-fc03-4772-97b9-5739aff939c1 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_d948e620-fc03-4772-97b9-5739aff939c1 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_d948e620-fc03-4772-97b9-5739aff939c1 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_d948e620-fc03-4772-97b9-5739aff939c1 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_d948e620-fc03-4772-97b9-5739aff939c1 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/pantry-original/cmp_05a0c506-42f8-4847-a162-a05a2a06c76d/component.css
 */
#cmp_05a0c506-42f8-4847-a162-a05a2a06c76d {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_05a0c506-42f8-4847-a162-a05a2a06c76d h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_05a0c506-42f8-4847-a162-a05a2a06c76d h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_05a0c506-42f8-4847-a162-a05a2a06c76d h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_05a0c506-42f8-4847-a162-a05a2a06c76d p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_05a0c506-42f8-4847-a162-a05a2a06c76d ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_05a0c506-42f8-4847-a162-a05a2a06c76d ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/pantry-original/cmp_b421d403-cb57-42c4-92db-2c19d21fc365/component.css
 */
#cmp_b421d403-cb57-42c4-92db-2c19d21fc365 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_b421d403-cb57-42c4-92db-2c19d21fc365 h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_b421d403-cb57-42c4-92db-2c19d21fc365 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_b421d403-cb57-42c4-92db-2c19d21fc365 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_b421d403-cb57-42c4-92db-2c19d21fc365 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_b421d403-cb57-42c4-92db-2c19d21fc365 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_b421d403-cb57-42c4-92db-2c19d21fc365 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/pantry-vegan/cmp_60d0a64d-edc6-473e-9d38-45ef3fedb2f4/component.css
 */
#cmp_60d0a64d-edc6-473e-9d38-45ef3fedb2f4 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_60d0a64d-edc6-473e-9d38-45ef3fedb2f4 h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_60d0a64d-edc6-473e-9d38-45ef3fedb2f4 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_60d0a64d-edc6-473e-9d38-45ef3fedb2f4 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_60d0a64d-edc6-473e-9d38-45ef3fedb2f4 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_60d0a64d-edc6-473e-9d38-45ef3fedb2f4 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_60d0a64d-edc6-473e-9d38-45ef3fedb2f4 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/pantry-vegan/cmp_c029d75a-215c-48e6-8649-f2d223200f67/component.css
 */
#cmp_c029d75a-215c-48e6-8649-f2d223200f67 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_c029d75a-215c-48e6-8649-f2d223200f67 h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_c029d75a-215c-48e6-8649-f2d223200f67 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_c029d75a-215c-48e6-8649-f2d223200f67 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_c029d75a-215c-48e6-8649-f2d223200f67 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_c029d75a-215c-48e6-8649-f2d223200f67 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_c029d75a-215c-48e6-8649-f2d223200f67 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/privacy-policy/cmp_96da523a-2904-4d18-ba30-8a385a85c2cc/component.css
 */
#cmp_96da523a-2904-4d18-ba30-8a385a85c2cc {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_96da523a-2904-4d18-ba30-8a385a85c2cc h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_96da523a-2904-4d18-ba30-8a385a85c2cc h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_96da523a-2904-4d18-ba30-8a385a85c2cc h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_96da523a-2904-4d18-ba30-8a385a85c2cc p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_96da523a-2904-4d18-ba30-8a385a85c2cc ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_96da523a-2904-4d18-ba30-8a385a85c2cc ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/shop/listing/cmp_0ef020ad-d0a2-465d-bf65-beb3d30c8825/component.css
 */
#cmp_0ef020ad-d0a2-465d-bf65-beb3d30c8825 {
	justify-content: center;
	margin-bottom: 35px;
}

#cmp_0ef020ad-d0a2-465d-bf65-beb3d30c8825 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_433993b7-1772-4602-af42-8ecda11a5c39/component.css
 */
#cmp_433993b7-1772-4602-af42-8ecda11a5c39 {
	justify-content: center;
}

#cmp_433993b7-1772-4602-af42-8ecda11a5c39 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

#cmp_433993b7-1772-4602-af42-8ecda11a5c39  {
	border-bottom: 1px solid #E1E1E1;
	margin-bottom: 35px;
	padding-bottom: 35px;
}
/*
 * components/shop/listing/cmp_4ee6f68d-a323-4214-9268-4e68deecfe76/component.css
 */
#cmp_4ee6f68d-a323-4214-9268-4e68deecfe76 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_4ee6f68d-a323-4214-9268-4e68deecfe76 h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_4ee6f68d-a323-4214-9268-4e68deecfe76 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_4ee6f68d-a323-4214-9268-4e68deecfe76 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_4ee6f68d-a323-4214-9268-4e68deecfe76 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_4ee6f68d-a323-4214-9268-4e68deecfe76 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_4ee6f68d-a323-4214-9268-4e68deecfe76 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_4ee6f68d-a323-4214-9268-4e68deecfe76  {
	padding: 50px 0 15px;
}
#cmp_4ee6f68d-a323-4214-9268-4e68deecfe76 h1 {
	margin-bottom: 15px;
}
/*
 * components/shop/listing/cmp_a69ed6d8-c817-4acf-8579-fe6cad404390/component.css
 */
#cmp_a69ed6d8-c817-4acf-8579-fe6cad404390 .shop-listing-item {
	color: #4A4A4A;
}

#cmp_a69ed6d8-c817-4acf-8579-fe6cad404390 .shop-listing-item:hover,
#cmp_a69ed6d8-c817-4acf-8579-fe6cad404390 .shop-listing-item:focus {
	text-decoration: none;
}

#cmp_a69ed6d8-c817-4acf-8579-fe6cad404390 .shop-listing-item__image {
	background-size: cover;
	background-position: center center;
}

#cmp_a69ed6d8-c817-4acf-8579-fe6cad404390 .shop-listing-item__name {
	margin: 10px 0;
}

#cmp_a69ed6d8-c817-4acf-8579-fe6cad404390 .shop-listing-item__price {
	margin: 10px 0 30px;
}

#cmp_a69ed6d8-c817-4acf-8579-fe6cad404390 .product_paging {
	-webkit-display: flex;
	-ms-display: flex;
	display: flex;
	justify-content: center;

	margin: 20px 0;
}

#cmp_a69ed6d8-c817-4acf-8579-fe6cad404390 .product_page a,
#cmp_a69ed6d8-c817-4acf-8579-fe6cad404390 .next_page a,
#cmp_a69ed6d8-c817-4acf-8579-fe6cad404390 .prev_page a {
	display: block;
	padding: 12px 15px;
	margin: 0 2px;
	border: 1px solid #E0E0E0;
	border-radius: 5px;
}

#cmp_a69ed6d8-c817-4acf-8579-fe6cad404390 .product_page.active a,
#cmp_a69ed6d8-c817-4acf-8579-fe6cad404390 .product_page a:hover,
#cmp_a69ed6d8-c817-4acf-8579-fe6cad404390 .product_page a:focus,
#cmp_a69ed6d8-c817-4acf-8579-fe6cad404390 .next_page a:hover,
#cmp_a69ed6d8-c817-4acf-8579-fe6cad404390 .next_page a:focus,
#cmp_a69ed6d8-c817-4acf-8579-fe6cad404390 .prev_page a:hover,
#cmp_a69ed6d8-c817-4acf-8579-fe6cad404390 .prev_page a:focus {
	text-decoration: none;
	background-color: #F9F9F9;
}

#cmp_a69ed6d8-c817-4acf-8579-fe6cad404390 .product_page.active a {
	color: black;
}

/*
 * components/shop-our-boxes/cmp_465ed39f-84b1-4078-b1d5-e7b724909b5d/component.css
 */
#cmp_465ed39f-84b1-4078-b1d5-e7b724909b5d {
	background-color: ;
}

#cmp_465ed39f-84b1-4078-b1d5-e7b724909b5d h1 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_465ed39f-84b1-4078-b1d5-e7b724909b5d h2 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_465ed39f-84b1-4078-b1d5-e7b724909b5d h3 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_465ed39f-84b1-4078-b1d5-e7b724909b5d p {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_465ed39f-84b1-4078-b1d5-e7b724909b5d .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_465ed39f-84b1-4078-b1d5-e7b724909b5d .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_465ed39f-84b1-4078-b1d5-e7b724909b5d .btn {
	background-color: ;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_465ed39f-84b1-4078-b1d5-e7b724909b5d .btn:hover {
	background-color: ;
	color: ;
}

#cmp_465ed39f-84b1-4078-b1d5-e7b724909b5d ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_465ed39f-84b1-4078-b1d5-e7b724909b5d ul {
	list-style: disc;
	list-style-position: inside;
	color: ;
	font-family: ;
	font-size: ;
}

/*
 * components/shop-our-boxes/cmp_6c645b63-6d07-4c2f-9736-483c35df7812/component.css
 */
#cmp_6c645b63-6d07-4c2f-9736-483c35df7812 img {
	max-width: 100%;
}

/*
 * components/shop-our-boxes/cmp_88bc560e-6b80-48d2-b508-f2d907fa1186/component.css
 */
#cmp_88bc560e-6b80-48d2-b508-f2d907fa1186 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_88bc560e-6b80-48d2-b508-f2d907fa1186 h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_88bc560e-6b80-48d2-b508-f2d907fa1186 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_88bc560e-6b80-48d2-b508-f2d907fa1186 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_88bc560e-6b80-48d2-b508-f2d907fa1186 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_88bc560e-6b80-48d2-b508-f2d907fa1186 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_88bc560e-6b80-48d2-b508-f2d907fa1186 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/shop-our-boxes/cmp_ceca0bab-afe2-4ad2-9fbc-abe14ca10224/component.css
 */
#cmp_ceca0bab-afe2-4ad2-9fbc-abe14ca10224 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_ceca0bab-afe2-4ad2-9fbc-abe14ca10224 h1 {
	color: rgb(152, 207, 133);
	font-family: Josefin Sans;
	font-size: 36px;
}

#cmp_ceca0bab-afe2-4ad2-9fbc-abe14ca10224 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_ceca0bab-afe2-4ad2-9fbc-abe14ca10224 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_ceca0bab-afe2-4ad2-9fbc-abe14ca10224 p {
	color: #4A4A4A;
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_ceca0bab-afe2-4ad2-9fbc-abe14ca10224 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_ceca0bab-afe2-4ad2-9fbc-abe14ca10224 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Josefin Sans;
	font-size: 14px;
}

/*
 * components/shop/product/cmp_e5247412-ab39-4316-9d39-d5bb250ead36/component.css
 */
#cmp_e5247412-ab39-4316-9d39-d5bb250ead36.shop-product-header {
	padding: 50px 0 15px;
}

/*
 * components/shop/product/cmp_f3d048e3-f74e-4d64-ab96-87d9bffb4632/component.css
 */
#cmp_f3d048e3-f74e-4d64-ab96-87d9bffb4632 .shop-product__name {
	margin-bottom: 10px;
}

#cmp_f3d048e3-f74e-4d64-ab96-87d9bffb4632 .shop-product__price {
	margin-bottom: 20px;
}

#cmp_f3d048e3-f74e-4d64-ab96-87d9bffb4632 .shop-product select {
	width: auto;
}

#cmp_f3d048e3-f74e-4d64-ab96-87d9bffb4632 .shop-product__add-to-cart {
	margin-bottom: 20px;
}

#cmp_f3d048e3-f74e-4d64-ab96-87d9bffb4632 .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin-bottom: 40px;
}

#cmp_f3d048e3-f74e-4d64-ab96-87d9bffb4632 .shop-product__review-share-desktop .col-xs-6 {
	padding-top: 10px;
}

#cmp_f3d048e3-f74e-4d64-ab96-87d9bffb4632 .shop-product__review-share-desktop .col-xs-6 + .col-xs-6 {
	border-left: 1px solid #E1E1E1;
}

/*
 * components/sidebar/cmp_33d878b5-820d-4cd9-a7a6-2a92477e4665/component.css
 */
#cmp_33d878b5-820d-4cd9-a7a6-2a92477e4665 > header {
	margin-bottom: 40px;
}
#cmp_33d878b5-820d-4cd9-a7a6-2a92477e4665 .item {
	position: relative;
	margin-bottom: 30px;
}
#cmp_33d878b5-820d-4cd9-a7a6-2a92477e4665 .item > .pull-left {
	margin-right: 20px;
	width: 65px;
}
#cmp_33d878b5-820d-4cd9-a7a6-2a92477e4665 .item .meta {
	margin: 0;
	line-height: 120%;
}
#cmp_33d878b5-820d-4cd9-a7a6-2a92477e4665 .item .media-heading {
	padding-right: 15px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
#cmp_33d878b5-820d-4cd9-a7a6-2a92477e4665 .item .close {
	position: absolute;
	top: 0;
	right: 0;
	opacity: 1;
	filter: alpha(opacity=100);
	color: inherit;
	text-shadow: none;
}
#cmp_33d878b5-820d-4cd9-a7a6-2a92477e4665 .total {
	margin-bottom: 25px;
	padding: 25px 0;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}
#cmp_33d878b5-820d-4cd9-a7a6-2a92477e4665 .total .dt {
	text-align: right;
}
#cmp_33d878b5-820d-4cd9-a7a6-2a92477e4665 .total .strong {
	font-size: 15px;
}

/*
 * components/snack-big-snacker/cmp_2e98b24a-2b7f-4466-b981-25adb3d453a6/component.css
 */
#cmp_2e98b24a-2b7f-4466-b981-25adb3d453a6 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: rgb(255, 255, 255);
}

#cmp_2e98b24a-2b7f-4466-b981-25adb3d453a6 h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_2e98b24a-2b7f-4466-b981-25adb3d453a6 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_2e98b24a-2b7f-4466-b981-25adb3d453a6 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_2e98b24a-2b7f-4466-b981-25adb3d453a6 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_2e98b24a-2b7f-4466-b981-25adb3d453a6 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_2e98b24a-2b7f-4466-b981-25adb3d453a6 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/snack-big-snacker/cmp_8d9fdacf-3c5f-403d-bcc5-4f3998817331/component.css
 */
#cmp_8d9fdacf-3c5f-403d-bcc5-4f3998817331 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_8d9fdacf-3c5f-403d-bcc5-4f3998817331 h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_8d9fdacf-3c5f-403d-bcc5-4f3998817331 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_8d9fdacf-3c5f-403d-bcc5-4f3998817331 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_8d9fdacf-3c5f-403d-bcc5-4f3998817331 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_8d9fdacf-3c5f-403d-bcc5-4f3998817331 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_8d9fdacf-3c5f-403d-bcc5-4f3998817331 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/snack/cmp_1842e06e-9bd4-48ca-8b1c-582e7e1de4d6/component.css
 */
#cmp_1842e06e-9bd4-48ca-8b1c-582e7e1de4d6 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_1842e06e-9bd4-48ca-8b1c-582e7e1de4d6 h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_1842e06e-9bd4-48ca-8b1c-582e7e1de4d6 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_1842e06e-9bd4-48ca-8b1c-582e7e1de4d6 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_1842e06e-9bd4-48ca-8b1c-582e7e1de4d6 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_1842e06e-9bd4-48ca-8b1c-582e7e1de4d6 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_1842e06e-9bd4-48ca-8b1c-582e7e1de4d6 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/snack/cmp_32bdbcdb-9150-4008-b5aa-7995a62047e3/component.css
 */
#cmp_32bdbcdb-9150-4008-b5aa-7995a62047e3 {
	padding-top: 20px;
	background-color: #FFFFFF;
}

#cmp_32bdbcdb-9150-4008-b5aa-7995a62047e3 h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
  padding:0;
}

#cmp_32bdbcdb-9150-4008-b5aa-7995a62047e3 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_32bdbcdb-9150-4008-b5aa-7995a62047e3 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_32bdbcdb-9150-4008-b5aa-7995a62047e3 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_32bdbcdb-9150-4008-b5aa-7995a62047e3 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_32bdbcdb-9150-4008-b5aa-7995a62047e3 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/snack-gluten-free/cmp_d1ec425d-4278-433f-8165-aed17cc2014b/component.css
 */
#cmp_d1ec425d-4278-433f-8165-aed17cc2014b {
	padding-top: 20px;
	background-color: #FFFFFF;
}

#cmp_d1ec425d-4278-433f-8165-aed17cc2014b h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
  padding:0;
}

#cmp_d1ec425d-4278-433f-8165-aed17cc2014b h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_d1ec425d-4278-433f-8165-aed17cc2014b h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_d1ec425d-4278-433f-8165-aed17cc2014b p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_d1ec425d-4278-433f-8165-aed17cc2014b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_d1ec425d-4278-433f-8165-aed17cc2014b ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/snack-gluten-free/cmp_d6f1993e-c827-431f-b1bf-d8f963d0bb1d/component.css
 */
#cmp_d6f1993e-c827-431f-b1bf-d8f963d0bb1d {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_d6f1993e-c827-431f-b1bf-d8f963d0bb1d h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_d6f1993e-c827-431f-b1bf-d8f963d0bb1d h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_d6f1993e-c827-431f-b1bf-d8f963d0bb1d h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_d6f1993e-c827-431f-b1bf-d8f963d0bb1d p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_d6f1993e-c827-431f-b1bf-d8f963d0bb1d ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_d6f1993e-c827-431f-b1bf-d8f963d0bb1d ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/snack-keto-friendly/cmp_219d72b8-557f-4019-9951-b221a728d5bd/component.css
 */
#cmp_219d72b8-557f-4019-9951-b221a728d5bd {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_219d72b8-557f-4019-9951-b221a728d5bd h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_219d72b8-557f-4019-9951-b221a728d5bd h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_219d72b8-557f-4019-9951-b221a728d5bd h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_219d72b8-557f-4019-9951-b221a728d5bd p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_219d72b8-557f-4019-9951-b221a728d5bd ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_219d72b8-557f-4019-9951-b221a728d5bd ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/snack-keto-friendly/cmp_d732f1ed-237b-4061-8ea8-5fe9b63df579/component.css
 */
#cmp_d732f1ed-237b-4061-8ea8-5fe9b63df579 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_d732f1ed-237b-4061-8ea8-5fe9b63df579 h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_d732f1ed-237b-4061-8ea8-5fe9b63df579 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_d732f1ed-237b-4061-8ea8-5fe9b63df579 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_d732f1ed-237b-4061-8ea8-5fe9b63df579 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_d732f1ed-237b-4061-8ea8-5fe9b63df579 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_d732f1ed-237b-4061-8ea8-5fe9b63df579 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/snack-mini-snacker/cmp_46b23e51-d0a3-4afd-a39b-56ea0e7648a0/component.css
 */
#cmp_46b23e51-d0a3-4afd-a39b-56ea0e7648a0 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_46b23e51-d0a3-4afd-a39b-56ea0e7648a0 h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_46b23e51-d0a3-4afd-a39b-56ea0e7648a0 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_46b23e51-d0a3-4afd-a39b-56ea0e7648a0 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_46b23e51-d0a3-4afd-a39b-56ea0e7648a0 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_46b23e51-d0a3-4afd-a39b-56ea0e7648a0 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_46b23e51-d0a3-4afd-a39b-56ea0e7648a0 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/snack-mini-snacker/cmp_b9564698-35c5-4172-966b-0f122ddff920/component.css
 */
#cmp_b9564698-35c5-4172-966b-0f122ddff920 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_b9564698-35c5-4172-966b-0f122ddff920 h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_b9564698-35c5-4172-966b-0f122ddff920 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_b9564698-35c5-4172-966b-0f122ddff920 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_b9564698-35c5-4172-966b-0f122ddff920 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_b9564698-35c5-4172-966b-0f122ddff920 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_b9564698-35c5-4172-966b-0f122ddff920 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/snack-original/cmp_1830ed49-ccbe-4a0e-9661-8294b8364de6/component.css
 */
#cmp_1830ed49-ccbe-4a0e-9661-8294b8364de6 {
	padding-top: 20px;
	background-color: #FFFFFF;
}

#cmp_1830ed49-ccbe-4a0e-9661-8294b8364de6 h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
  padding:0;
}

#cmp_1830ed49-ccbe-4a0e-9661-8294b8364de6 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_1830ed49-ccbe-4a0e-9661-8294b8364de6 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_1830ed49-ccbe-4a0e-9661-8294b8364de6 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_1830ed49-ccbe-4a0e-9661-8294b8364de6 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_1830ed49-ccbe-4a0e-9661-8294b8364de6 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/snack-original/cmp_493fa710-deaf-4929-a0db-b7aec2b74e09/component.css
 */
#cmp_493fa710-deaf-4929-a0db-b7aec2b74e09 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_493fa710-deaf-4929-a0db-b7aec2b74e09 h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_493fa710-deaf-4929-a0db-b7aec2b74e09 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_493fa710-deaf-4929-a0db-b7aec2b74e09 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_493fa710-deaf-4929-a0db-b7aec2b74e09 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_493fa710-deaf-4929-a0db-b7aec2b74e09 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_493fa710-deaf-4929-a0db-b7aec2b74e09 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/snack-vegan/cmp_414c3e76-0f4e-4f0a-86bd-6495c37fab35/component.css
 */
#cmp_414c3e76-0f4e-4f0a-86bd-6495c37fab35 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_414c3e76-0f4e-4f0a-86bd-6495c37fab35 h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_414c3e76-0f4e-4f0a-86bd-6495c37fab35 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_414c3e76-0f4e-4f0a-86bd-6495c37fab35 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_414c3e76-0f4e-4f0a-86bd-6495c37fab35 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_414c3e76-0f4e-4f0a-86bd-6495c37fab35 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_414c3e76-0f4e-4f0a-86bd-6495c37fab35 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/snack-vegan/cmp_e54ca191-383e-41c3-aefc-68c7df71b6eb/component.css
 */
#cmp_e54ca191-383e-41c3-aefc-68c7df71b6eb {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_e54ca191-383e-41c3-aefc-68c7df71b6eb h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_e54ca191-383e-41c3-aefc-68c7df71b6eb h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_e54ca191-383e-41c3-aefc-68c7df71b6eb h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_e54ca191-383e-41c3-aefc-68c7df71b6eb p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_e54ca191-383e-41c3-aefc-68c7df71b6eb ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_e54ca191-383e-41c3-aefc-68c7df71b6eb ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/sold_out/cmp_166460f2-9cb2-4647-88ae-40d00d74b093/component.css
 */
#cmp_166460f2-9cb2-4647-88ae-40d00d74b093 {
	background-color: #FFFFFF;
}

#cmp_166460f2-9cb2-4647-88ae-40d00d74b093 h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_166460f2-9cb2-4647-88ae-40d00d74b093 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_166460f2-9cb2-4647-88ae-40d00d74b093 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_166460f2-9cb2-4647-88ae-40d00d74b093 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_166460f2-9cb2-4647-88ae-40d00d74b093 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_166460f2-9cb2-4647-88ae-40d00d74b093 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_166460f2-9cb2-4647-88ae-40d00d74b093 .btn {
	background-color: rgb(128, 199, 123);
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_166460f2-9cb2-4647-88ae-40d00d74b093 .btn:hover {
	background-color: rgb(128, 199, 123);
	color: #4A4A4A;
}

#cmp_166460f2-9cb2-4647-88ae-40d00d74b093 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_166460f2-9cb2-4647-88ae-40d00d74b093 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_166460f2-9cb2-4647-88ae-40d00d74b093  {
	padding-bottom: 50px;
}
/*
 * components/sold_out/cmp_d45df9e2-73c8-4b84-b4cc-6066bd0fd706/component.css
 */
#cmp_d45df9e2-73c8-4b84-b4cc-6066bd0fd706 img {
	max-width: 100%;
}

#cmp_d45df9e2-73c8-4b84-b4cc-6066bd0fd706  {
	padding-top: 50px;
}
/*
 * components/subscribe/cmp_64aff3f5-491b-4363-a000-23abac40384f/component.css
 */
#cmp_64aff3f5-491b-4363-a000-23abac40384f {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_64aff3f5-491b-4363-a000-23abac40384f h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_64aff3f5-491b-4363-a000-23abac40384f h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_64aff3f5-491b-4363-a000-23abac40384f h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_64aff3f5-491b-4363-a000-23abac40384f p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_64aff3f5-491b-4363-a000-23abac40384f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_64aff3f5-491b-4363-a000-23abac40384f ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/subscribe/cmp_e34e3639-11db-4200-8fa0-c9ad2cbb319f/component.css
 */
#cmp_e34e3639-11db-4200-8fa0-c9ad2cbb319f {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_e34e3639-11db-4200-8fa0-c9ad2cbb319f h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_e34e3639-11db-4200-8fa0-c9ad2cbb319f h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_e34e3639-11db-4200-8fa0-c9ad2cbb319f h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_e34e3639-11db-4200-8fa0-c9ad2cbb319f p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_e34e3639-11db-4200-8fa0-c9ad2cbb319f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_e34e3639-11db-4200-8fa0-c9ad2cbb319f ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/subscribe/cmp_f050c011-5d90-462c-aecf-55398a626591/component.css
 */

/*
 * components/subscribe_flow/addons_step/cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9/component.css
 */
#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9.addons-container {
	margin-right: auto;
	margin-left: auto;

	max-width: 940px;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-products-row {
	border: 1px solid #D3D3D3;

	padding-left: 40px;
	padding-right: 40px;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	padding-top: 40px;
	padding-bottom: 40px;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product + .addons-product {
	border-top: 1px solid #D3D3D3;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-left {
	padding-right: 30px;

	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-image {
	width: 100%;
	height: 100%;
	min-height: 275px;

	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-right {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;

	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;

	margin-bottom: 15px;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-top-right {
	text-align: right;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-btn-cart {
	padding: 7px 12px;

	font-family: ;
	font-size: 14px;

	color: #FFF;
	background-color: rgb(128, 199, 123);
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-btn-cart:hover {
	color: #4A4A4A;
	background-color: rgb(128, 199, 123);
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-name {
	font-size: 20px;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-price {
	margin-bottom: 20px;

	font-size: 16px;
	color: rgb(128, 199, 123);
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-form-group .control-label {
	font-size: 12px;
	color: #9B9B9B;

	margin-bottom: 2px;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-form-group select {
	height: 30px;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-cta-row {
	margin-top: 40px;

	text-align: center;
}


#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-continue-btn {
	font-family: ;
	font-size: 14px;

	color: #FFF;
	background-color: rgb(128, 199, 123);
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-continue-btn:hover {
	color: rgb(74, 74, 74);
	background-color: rgb(128, 199, 123);
}

@media only screen and (max-width : 768px) {
	#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-left,
	#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-right {
		-webkit-box-flex: 1 0 100%;
		-ms-flex: 1 0 100%;
		flex: 1 0 100%;
	}

	.addons-product-right {
		margin-top: 40px;
	}

	 #cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-left {
		padding-right: 0;
	}
}

/*
 * components/subscribe_flow/addons_step/cmp_8fee7538-107b-415f-95d4-5378a4a0f1c8/component.css
 */
#cmp_8fee7538-107b-415f-95d4-5378a4a0f1c8 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_8fee7538-107b-415f-95d4-5378a4a0f1c8 h1 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 36px;
}

#cmp_8fee7538-107b-415f-95d4-5378a4a0f1c8 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_8fee7538-107b-415f-95d4-5378a4a0f1c8 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_8fee7538-107b-415f-95d4-5378a4a0f1c8 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_8fee7538-107b-415f-95d4-5378a4a0f1c8 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_8fee7538-107b-415f-95d4-5378a4a0f1c8 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/subscribe_flow/survey_step/cmp_6c928e7d-b3bf-4eca-aa33-3f5056f244e1/component.css
 */
#cmp_6c928e7d-b3bf-4eca-aa33-3f5056f244e1.survey h2 {
	margin-bottom: 0.5em;
}

#cmp_6c928e7d-b3bf-4eca-aa33-3f5056f244e1.survey .radio input[type="radio"],
#cmp_6c928e7d-b3bf-4eca-aa33-3f5056f244e1.survey .checkbox input[type="checkbox"] {
	margin-right: 0.5em;
}

#cmp_6c928e7d-b3bf-4eca-aa33-3f5056f244e1.survey .survey-field {
	margin-bottom: 2em;
}

/*
 * components/subscribe_flow/survey_step/cmp_c4a70087-99e0-436d-a717-204c985ac6db/component.css
 */
#cmp_c4a70087-99e0-436d-a717-204c985ac6db {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/terms_step/cmp_a7710a64-76bb-486d-822e-b09693438835/component.css
 */

/*
 * components/subscribe_flow/variant_step/cmp_04a8ce2d-df64-4785-954c-23534f149b41/component.css
 */
#cmp_04a8ce2d-df64-4785-954c-23534f149b41 {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/variant_step/cmp_4216e240-3d6c-43de-99f8-3ca7dccea057/component.css
 */

/*
 * components/whats-new/cmp_3d1172d8-65f0-4105-bb47-565f2c25616c/component.css
 */
#cmp_3d1172d8-65f0-4105-bb47-565f2c25616c {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: ;
}

#cmp_3d1172d8-65f0-4105-bb47-565f2c25616c h1 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_3d1172d8-65f0-4105-bb47-565f2c25616c h2 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_3d1172d8-65f0-4105-bb47-565f2c25616c h3 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_3d1172d8-65f0-4105-bb47-565f2c25616c p {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_3d1172d8-65f0-4105-bb47-565f2c25616c ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_3d1172d8-65f0-4105-bb47-565f2c25616c ul {
	list-style: disc;
	list-style-position: inside;
	color: ;
	font-family: ;
	font-size: ;
}