/*
 * css/style.css
 */
/* Globals
------------------------------*/
body {
	background-color: #EEEEEE;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	line-height: 1.5em;
}

body > .container-fluid {
	background-color: #FFFFFF;
	max-width: 1140px;
}

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

h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	letter-spacing: 1px;
	line-height: 1;
}

h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
}

h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
}

p {
	line-height: 1.5em;
}

a,
.btn-link {
	color: #3BB44A;
}

a:hover,
a:focus,
a:active,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
	color: #FAC325;
}

/* General Component Styles */
.row > .row {
	margin-left: 0;
	margin-right: 0;
}

section[class^="component"] {
	padding: 60px 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 {
	flex-grow: 1;
	padding: 0;
	position: relative;
}

/* 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%;
	-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: #3BB44A;
}

.panel {
	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);
	margin: 0 0 20px 0;
}

.panel-body {
	padding: 15px;
}

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

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

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

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

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

/* Buttons */
.btn {
	border-radius: 4px;
	border: none;
	font-size: 13px;
	letter-spacing: 0.077em;
	padding: 1.2em 5em;
	white-space: normal;
}

.btn-small {
	border: 2px solid #3BB44A;
	color: #3BB44A;
	padding: 0.6em 1.8em;
}

.btn-small:hover,
.btn-small:focus,
.btn-small:active,
.btn-small:active:focus {
	background-color: #3BB44A;
	border-color: #3BB44A;
	color: #FFFFFF !important;
}

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

.btn-primary {
	background-color: #3BB44A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
	letter-spacing: 0.167em;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus {
	background-color: #FAC325;
	color: #FFFFFF;
}

.btn-secondary {
	background-color: #49494A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
	letter-spacing: 0.167em;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:active:focus {
	background-color: #FAC325;
	color: #FFFFFF;
}

.btn-empty {
	background-color: transparent;
	border: 1px solid #3BB44A;
	color: #3BB44A;
}

.btn-empty:hover,
.btn-empty:focus,
.btn-empty:active,
.btn-empty:active:focus {
	background-color: #49494A;
}

/* 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: 20px 0;
}

.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: .9375rem 0;
}

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

	border: 1px solid #E1E1E1;
	margin: 20px;
	text-align: center;
	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%;
}

/* Survey Forms
------------------------------*/
.survey h2 {
	margin: 0 0 1em 0;
}

.survey .radio input[type="radio"],
.survey .checkbox input[type="checkbox"] {
	margin: 0 0.5em 0 0;
}

/* Sold Out
------------------------------*/
.sold-out-image {
	height: 171px;
	width: 195px;
	margin: auto;
	margin-bottom: 38px;
}

/* Orders List
------------------------------*/
.orders-list {
	width: 100%;
	margin: 25px 0;
}
.orders-list h1 {
	text-align: center;
	color: #49494A;
}
.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: #3BB44A;
	border: none;
	border-radius: 25px;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
	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: #FAC325;
	color: #FFFFFF;
}

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

.checkout_content h1 {
	margin: 0 0 25px 0;
	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: #3BB44A;
}

.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 #3BB44A;
	color: #3BB44A;
	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: #FAC325;
	border-color: #FAC325;
	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;
	}
}

/*
 * components/about/cmp_024803de-f9ae-48bd-94d0-25386285c397/component.css
 */
#cmp_024803de-f9ae-48bd-94d0-25386285c397 {
	padding: 0;
}

#cmp_024803de-f9ae-48bd-94d0-25386285c397 .hero-content {
	background-color: #FFFFFF;
	padding: 20px;
}

#cmp_024803de-f9ae-48bd-94d0-25386285c397 .hero-content h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 15px 0;
}

#cmp_024803de-f9ae-48bd-94d0-25386285c397 .hero-content h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 15px 0;
}

#cmp_024803de-f9ae-48bd-94d0-25386285c397 .hero-content h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 15px 0;
}

#cmp_024803de-f9ae-48bd-94d0-25386285c397 .hero-content p {
	color: #49494A;
	font-family: Lato;
	font-size: 18px;
	margin: 0 0 15px 0;
}

#cmp_024803de-f9ae-48bd-94d0-25386285c397 .hero-content .btn {
	background-color: #3BB44A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_024803de-f9ae-48bd-94d0-25386285c397 .hero-content .btn:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

/*
 * components/about/cmp_0c928915-22e9-41a9-b2de-13e3121c73ac/component.css
 */
#cmp_0c928915-22e9-41a9-b2de-13e3121c73ac {
	background-color: #FFFFFF;
}

#cmp_0c928915-22e9-41a9-b2de-13e3121c73ac h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_0c928915-22e9-41a9-b2de-13e3121c73ac h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_0c928915-22e9-41a9-b2de-13e3121c73ac h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_0c928915-22e9-41a9-b2de-13e3121c73ac p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 18px;
	margin: 0 0 25px 0;
}

#cmp_0c928915-22e9-41a9-b2de-13e3121c73ac ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 18px;
}

#cmp_0c928915-22e9-41a9-b2de-13e3121c73ac ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 18px;
}

/*
 * components/about/cmp_3dfebc7a-0f73-4e8e-bb42-de924754b3ec/component.css
 */
#cmp_3dfebc7a-0f73-4e8e-bb42-de924754b3ec {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	background-color: #FFFFFF;
}

#cmp_3dfebc7a-0f73-4e8e-bb42-de924754b3ec .content {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	margin: 0 auto;
	padding: 25px;
}

#cmp_3dfebc7a-0f73-4e8e-bb42-de924754b3ec .square-image {
	height: 225px;
	margin: 0 0 15px 0;
	width: 225px;
}

#cmp_3dfebc7a-0f73-4e8e-bb42-de924754b3ec h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
}

#cmp_3dfebc7a-0f73-4e8e-bb42-de924754b3ec h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
}

#cmp_3dfebc7a-0f73-4e8e-bb42-de924754b3ec h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
}

#cmp_3dfebc7a-0f73-4e8e-bb42-de924754b3ec p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/about/cmp_5c6a3c65-bd22-47ba-a018-be6e9047291f/component.css
 */
#cmp_5c6a3c65-bd22-47ba-a018-be6e9047291f {
	background-color: #FFFFFF;
}

#cmp_5c6a3c65-bd22-47ba-a018-be6e9047291f h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_5c6a3c65-bd22-47ba-a018-be6e9047291f h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_5c6a3c65-bd22-47ba-a018-be6e9047291f h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_5c6a3c65-bd22-47ba-a018-be6e9047291f p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 18px;
	margin: 0 0 25px 0;
}

#cmp_5c6a3c65-bd22-47ba-a018-be6e9047291f .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_5c6a3c65-bd22-47ba-a018-be6e9047291f .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_5c6a3c65-bd22-47ba-a018-be6e9047291f .btn {
	background-color: #3BB44A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_5c6a3c65-bd22-47ba-a018-be6e9047291f .btn:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

#cmp_5c6a3c65-bd22-47ba-a018-be6e9047291f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 18px;
}

#cmp_5c6a3c65-bd22-47ba-a018-be6e9047291f ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 18px;
}

/*
 * components/about/cmp_7d8082c5-4d97-4e00-bcae-e4734b4d3a11/component.css
 */
#cmp_7d8082c5-4d97-4e00-bcae-e4734b4d3a11 img {
	max-width: 100%;
}

/*
 * components/about/cmp_d98aaf19-49b4-4d74-aeda-052799ce5221/component.css
 */
#cmp_d98aaf19-49b4-4d74-aeda-052799ce5221 {
	padding: 0;
	background-color: #FFFFFF;
}

#cmp_d98aaf19-49b4-4d74-aeda-052799ce5221 .content {
	margin: 0 auto;
	padding: 25px;
}

@media (min-width: 768px) {
	#cmp_d98aaf19-49b4-4d74-aeda-052799ce5221 .col-md-6:nth-of-type(2n + 1) {
		order: 1;
	}
	#cmp_d98aaf19-49b4-4d74-aeda-052799ce5221 .col-md-6:nth-of-type(2n) {
		order: 2;
	}
}

#cmp_d98aaf19-49b4-4d74-aeda-052799ce5221 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
}

#cmp_d98aaf19-49b4-4d74-aeda-052799ce5221 h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
}

#cmp_d98aaf19-49b4-4d74-aeda-052799ce5221 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 20px;
}

#cmp_d98aaf19-49b4-4d74-aeda-052799ce5221 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 18px;
}

/*
 * components/about/cmp_f13eb931-d2ec-43e1-bd62-bb6acea25c79/component.css
 */
#cmp_f13eb931-d2ec-43e1-bd62-bb6acea25c79 {
	background-color: #FFFFFF;
}

#cmp_f13eb931-d2ec-43e1-bd62-bb6acea25c79 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_f13eb931-d2ec-43e1-bd62-bb6acea25c79 h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_f13eb931-d2ec-43e1-bd62-bb6acea25c79 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_f13eb931-d2ec-43e1-bd62-bb6acea25c79 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 18px;
	margin: 0 0 25px 0;
}

#cmp_f13eb931-d2ec-43e1-bd62-bb6acea25c79 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 18px;
}

#cmp_f13eb931-d2ec-43e1-bd62-bb6acea25c79 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 18px;
}

/*
 * components/checkout/cmp_fd1498ed-3310-4245-969e-33eb1055076f/component.css
 */
#cmp_fd1498ed-3310-4245-969e-33eb1055076f .checkout_content {
  overflow: auto;
}

#cmp_fd1498ed-3310-4245-969e-33eb1055076f .checkout_content section {
  border-color: #F5F5F5;
}

#cmp_fd1498ed-3310-4245-969e-33eb1055076f .cart_listing table {
  border-color: #F5F5F5;
}

#cmp_fd1498ed-3310-4245-969e-33eb1055076f  {
	padding-top: 0;
}
/*
 * components/contact/cmp_5396f158-beb2-48f8-b801-f4f72a0fe31e/component.css
 */
#cmp_5396f158-beb2-48f8-b801-f4f72a0fe31e img {
	max-width: 100%;
}

/*
 * components/contact/cmp_5eb14990-45db-487a-8510-eeda1c039823/component.css
 */
#cmp_5eb14990-45db-487a-8510-eeda1c039823 {
	background-color: #FFFFFF;
}

#cmp_5eb14990-45db-487a-8510-eeda1c039823 h1 {
	color: rgb(59, 180, 74);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_5eb14990-45db-487a-8510-eeda1c039823 h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_5eb14990-45db-487a-8510-eeda1c039823 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_5eb14990-45db-487a-8510-eeda1c039823 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 18px;
	margin: 0 0 25px 0;
}

#cmp_5eb14990-45db-487a-8510-eeda1c039823 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 18px;
}

#cmp_5eb14990-45db-487a-8510-eeda1c039823 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 18px;
}

/*
 * components/current_box/cmp_22861af9-87bb-4e68-a0fc-05594836c71f/component.css
 */
#cmp_22861af9-87bb-4e68-a0fc-05594836c71f {
	background-color: #FFFFFF;
}

#cmp_22861af9-87bb-4e68-a0fc-05594836c71f h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_22861af9-87bb-4e68-a0fc-05594836c71f h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_22861af9-87bb-4e68-a0fc-05594836c71f h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_22861af9-87bb-4e68-a0fc-05594836c71f p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_22861af9-87bb-4e68-a0fc-05594836c71f .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_22861af9-87bb-4e68-a0fc-05594836c71f .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_22861af9-87bb-4e68-a0fc-05594836c71f .btn {
	background-color: #3BB44A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_22861af9-87bb-4e68-a0fc-05594836c71f .btn:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

#cmp_22861af9-87bb-4e68-a0fc-05594836c71f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_22861af9-87bb-4e68-a0fc-05594836c71f ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/current_box/cmp_92208945-138f-416b-8036-39b04d56e265/component.css
 */
#cmp_92208945-138f-416b-8036-39b04d56e265 {
	background-color: #FFFFFF;
}

#cmp_92208945-138f-416b-8036-39b04d56e265 h1 {
	color: rgb(59, 180, 74);
	font-family: Courgette;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_92208945-138f-416b-8036-39b04d56e265 h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_92208945-138f-416b-8036-39b04d56e265 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_92208945-138f-416b-8036-39b04d56e265 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 18px;
	margin: 0 0 25px 0;
}

#cmp_92208945-138f-416b-8036-39b04d56e265 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 18px;
}

#cmp_92208945-138f-416b-8036-39b04d56e265 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 18px;
}

/*
 * components/current_box/cmp_e5c28264-83af-4f7c-99dd-3d4bf0205dbe/component.css
 */
#cmp_e5c28264-83af-4f7c-99dd-3d4bf0205dbe img {
	max-width: 100%;
}

/*
 * components/customer/account/cmp_0064c182-0242-43ad-a67e-be17d9ae11d7/component.css
 */

/*
 * components/customer/edit/cmp_cb389a92-e683-491b-8232-18fa1eab6a78/component.css
 */

/*
 * components/customer/forgot_password/cmp_b4694d2e-e491-4f4f-909c-5623d780309d/component.css
 */
#cmp_b4694d2e-e491-4f4f-909c-5623d780309d {
	background-color: #FFFFFF;
}

#cmp_b4694d2e-e491-4f4f-909c-5623d780309d h1 {
	color: #49494A;
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 25px 0;
}

#cmp_b4694d2e-e491-4f4f-909c-5623d780309d h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_b4694d2e-e491-4f4f-909c-5623d780309d h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_b4694d2e-e491-4f4f-909c-5623d780309d p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_b4694d2e-e491-4f4f-909c-5623d780309d ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_b4694d2e-e491-4f4f-909c-5623d780309d ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/customer/forgot_password/cmp_f8853992-4bdf-46b5-8641-45b5f575ac60/component.css
 */
#cmp_f8853992-4bdf-46b5-8641-45b5f575ac60 {
    padding:  0 0 120px 0;
}
/*
 * components/customer/login/cmp_3e57d2b0-cf7b-4c20-a517-b46ff79c8c1d/component.css
 */
#cmp_3e57d2b0-cf7b-4c20-a517-b46ff79c8c1d {
	background-color: #FFFFFF;
}

#cmp_3e57d2b0-cf7b-4c20-a517-b46ff79c8c1d h1 {
	color: #49494A;
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 25px 0;
}

#cmp_3e57d2b0-cf7b-4c20-a517-b46ff79c8c1d h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_3e57d2b0-cf7b-4c20-a517-b46ff79c8c1d h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_3e57d2b0-cf7b-4c20-a517-b46ff79c8c1d p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_3e57d2b0-cf7b-4c20-a517-b46ff79c8c1d ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_3e57d2b0-cf7b-4c20-a517-b46ff79c8c1d ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/customer/login/cmp_5f1715f5-2406-445f-9a69-b8317435ecf0/component.css
 */
#cmp_5f1715f5-2406-445f-9a69-b8317435ecf0 {
    padding:  0 0 120px 0;
}
/*
 * components/customer/order/cmp_f2e2016e-9225-4506-ad8f-779a6ae6d9ec/component.css
 */

/*
 * components/customer/orders/cmp_82571119-563d-45f8-8f06-57801531f9b9/component.css
 */

/*
 * components/customer/password_reset/cmp_03748c5c-20b6-4e3d-b053-652f5f896f35/component.css
 */
#cmp_03748c5c-20b6-4e3d-b053-652f5f896f35 {
    padding:  0 0 120px 0;
}
/*
 * components/customer/password_reset/cmp_4c86e8f9-e893-458f-96e6-b7b5606cb37c/component.css
 */
#cmp_4c86e8f9-e893-458f-96e6-b7b5606cb37c {
	background-color: #FFFFFF;
}

#cmp_4c86e8f9-e893-458f-96e6-b7b5606cb37c h1 {
	color: #49494A;
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 25px 0;
}

#cmp_4c86e8f9-e893-458f-96e6-b7b5606cb37c h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_4c86e8f9-e893-458f-96e6-b7b5606cb37c h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_4c86e8f9-e893-458f-96e6-b7b5606cb37c p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_4c86e8f9-e893-458f-96e6-b7b5606cb37c ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_4c86e8f9-e893-458f-96e6-b7b5606cb37c ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/customer/thank_you/cmp_fa23ba83-c7d7-4e7d-94fb-0eb7f5e84f0d/component.css
 */

/*
 * components/global/cmp_4cada614-f93a-4d0c-bea2-cc2a79f18a46/component.css
 */
#cmp_4cada614-f93a-4d0c-bea2-cc2a79f18a46 {
	background-color: #FFFFFF;
}

#cmp_4cada614-f93a-4d0c-bea2-cc2a79f18a46 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_4cada614-f93a-4d0c-bea2-cc2a79f18a46 h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_4cada614-f93a-4d0c-bea2-cc2a79f18a46 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_4cada614-f93a-4d0c-bea2-cc2a79f18a46 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_4cada614-f93a-4d0c-bea2-cc2a79f18a46 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_4cada614-f93a-4d0c-bea2-cc2a79f18a46 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_4cada614-f93a-4d0c-bea2-cc2a79f18a46 .btn {
	background-color: #3BB44A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_4cada614-f93a-4d0c-bea2-cc2a79f18a46 .btn:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

#cmp_4cada614-f93a-4d0c-bea2-cc2a79f18a46 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_4cada614-f93a-4d0c-bea2-cc2a79f18a46 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_4cada614-f93a-4d0c-bea2-cc2a79f18a46  {
	padding-top: 0;
}
/*
 * components/global/cmp_ce855022-121d-4a5f-a513-617875e3fc7a/component.css
 */
#cmp_ce855022-121d-4a5f-a513-617875e3fc7a.navbar {
	background-color: #FFFFFF;
	border-radius: 0;
	padding: 0;

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

#cmp_ce855022-121d-4a5f-a513-617875e3fc7a.navbar a:hover,
#cmp_ce855022-121d-4a5f-a513-617875e3fc7a.navbar a:focus,
#cmp_ce855022-121d-4a5f-a513-617875e3fc7a.navbar a:active {
	color: #3BB44A;
}

#cmp_ce855022-121d-4a5f-a513-617875e3fc7a .navbar-brand {
	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;

	-webkit-flex-grow: 1;
	-moz-flex-grow: 1;
	-ms-flex-grow: 1;
	flex-grow: 1;

	-webkit-flex-shrink: 0;
	-moz-flex-shrink: 0;
	-ms-flex-shrink: 0;
	flex-shrink: 0;

	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	letter-spacing: 0.038em;
	margin: 0;
	max-width: 100%;
	padding: 15px;
	text-align: center;
	text-transform: uppercase;
}

#cmp_ce855022-121d-4a5f-a513-617875e3fc7a .navbar-brand img {
	max-width: 100%;
}

#cmp_ce855022-121d-4a5f-a513-617875e3fc7a.navbar .navbar-toggler {
	background-color: #3BB44A;
	border-radius: 0;
	color: #FFFFFF;
	font-size: 13px;
	letter-spacing: 0.077em;
	padding: 15px;
	text-transform: uppercase;
}

#cmp_ce855022-121d-4a5f-a513-617875e3fc7a.navbar .navbar-toggler:hover,
#cmp_ce855022-121d-4a5f-a513-617875e3fc7a.navbar .navbar-toggler:focus,
#cmp_ce855022-121d-4a5f-a513-617875e3fc7a.navbar .navbar-toggler:active {
	background-color: #FAC325;
	color: #FFFFFF;
}

#cmp_ce855022-121d-4a5f-a513-617875e3fc7a .navbar-nav {
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;

	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

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

	margin: 0;
	padding: 15px 0;
}

#cmp_ce855022-121d-4a5f-a513-617875e3fc7a .navbar-nav li {
	padding: 10px 0;
}

#cmp_ce855022-121d-4a5f-a513-617875e3fc7a .navbar-nav .nav-link {
	color: #49494A;
	font-family: Lato;
	font-size: 13px;;
	padding: 8px 18px;
	text-align: center;
	text-transform: uppercase;
}

@media (min-width: 768px) {
	#cmp_ce855022-121d-4a5f-a513-617875e3fc7a.navbar {
		-webkit-align-items: center;
		-moz-align-items: center;
		-ms-align-items: center;
		align-items: center;

		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;

		padding: 15px 0 0 0;
	}
	#cmp_ce855022-121d-4a5f-a513-617875e3fc7a .navbar-brand {
		padding: 0 0 15px 0;
	}
	#cmp_ce855022-121d-4a5f-a513-617875e3fc7a .navbar-toggleable-sm {
		-webkit-flex-shrink: 0;
		-moz-flex-shrink: 0;
		-ms-flex-shrink: 0;
		flex-shrink: 0;

		-webkit-flex-grow: 2;
		-moz-flex-grow: 2;
		-ms-flex-grow: 2;
		flex-grow: 2;

	}
	#cmp_ce855022-121d-4a5f-a513-617875e3fc7a .navbar-nav {
		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;

		-webkit-justify-content: space-around;
		-moz-justify-content: space-around;
		-ms-justify-content: space-around;
		justify-content: space-around;

		padding: 0 0 15px 0;
	}
	#cmp_ce855022-121d-4a5f-a513-617875e3fc7a .navbar-nav li {
		padding: 0;
	}
}

/*
 * components/global/cmp_f414a5b5-cec9-446a-92b9-5a16970b5e81/component.css
 */
#cmp_f414a5b5-cec9-446a-92b9-5a16970b5e81.footer {
	background-color: #FAFAFA;
	color: #B0B0B0;
	font-family: Lato;
	padding: 10px 0;

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

#cmp_f414a5b5-cec9-446a-92b9-5a16970b5e81 .footer-social {
	padding: 15px 0;
	text-align: center;
}

#cmp_f414a5b5-cec9-446a-92b9-5a16970b5e81 .footer-social a {
	display: inline-block;
	padding: 0 5px;
}

#cmp_f414a5b5-cec9-446a-92b9-5a16970b5e81 .footer-social svg path {
	fill: #49494A;
}

#cmp_f414a5b5-cec9-446a-92b9-5a16970b5e81 .footer-social a:hover svg path,
#cmp_f414a5b5-cec9-446a-92b9-5a16970b5e81 .footer-social a:focus svg path,
#cmp_f414a5b5-cec9-446a-92b9-5a16970b5e81 .footer-social a:active svg path {
	fill: #FAC325;
}

#cmp_f414a5b5-cec9-446a-92b9-5a16970b5e81.footer .toggler-container {
	padding: 15px 0;
	text-align: center;
}

#cmp_f414a5b5-cec9-446a-92b9-5a16970b5e81.footer .navbar-toggler {
	color: #3BB44A;
	font-size: 13px;
	letter-spacing: 0.077em;
	text-transform: uppercase;
}

#cmp_f414a5b5-cec9-446a-92b9-5a16970b5e81 .footer-cc {
	border-top: 1px solid #e1e1e1;
	letter-spacing: 1px;
	text-align: center;
}

#cmp_f414a5b5-cec9-446a-92b9-5a16970b5e81 .footer-cc img {
	padding: 15px 0;
}

#cmp_f414a5b5-cec9-446a-92b9-5a16970b5e81 .footer-cc p,
#cmp_f414a5b5-cec9-446a-92b9-5a16970b5e81 .footer-tributes p {
	margin: 0;
	padding: 15px 0;
}

#cmp_f414a5b5-cec9-446a-92b9-5a16970b5e81 .footer-tributes p a {
	color: #B0B0B0;
	padding: 0;
}

#cmp_f414a5b5-cec9-446a-92b9-5a16970b5e81 .footer-tributes p a:hover,
#cmp_f414a5b5-cec9-446a-92b9-5a16970b5e81 .footer-tributes p a:focus,
#cmp_f414a5b5-cec9-446a-92b9-5a16970b5e81 .footer-tributes p a:active {
	color: #B0B0B0;
	text-decoration: none;
}

#cmp_f414a5b5-cec9-446a-92b9-5a16970b5e81 .footer-directory {
	text-align: center;
}

#cmp_f414a5b5-cec9-446a-92b9-5a16970b5e81 .footer-list {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

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

#cmp_f414a5b5-cec9-446a-92b9-5a16970b5e81 .footer-list .footer-item {
	-webkit-flex: 0 0 50%;
	-moz-flex: 0 0 50%;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;

	padding: 8px 18px;
	position: relative;
}

#cmp_f414a5b5-cec9-446a-92b9-5a16970b5e81 .footer-list .footer-link {
	color: #49494A;
	font-family: Lato;
	font-size: 13px;
	letter-spacing: 0.077em;
	text-transform: uppercase;
}

#cmp_f414a5b5-cec9-446a-92b9-5a16970b5e81 .footer-list .footer-link:hover,
#cmp_f414a5b5-cec9-446a-92b9-5a16970b5e81 .footer-list .footer-link:focus,
#cmp_f414a5b5-cec9-446a-92b9-5a16970b5e81 .footer-list .footer-link:active {
	color: #3BB44A;
	text-decoration: none;
}

@media (max-width: 767px) {
	#cmp_f414a5b5-cec9-446a-92b9-5a16970b5e81 .col-sm-12,
	#cmp_f414a5b5-cec9-446a-92b9-5a16970b5e81 .col-xs-12 {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 auto;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
	}
}

@media (min-width: 768px) {
	#cmp_f414a5b5-cec9-446a-92b9-5a16970b5e81.footer {
		-webkit-align-items: flex-start;
		-moz-align-items: flex-start;
		-ms-align-items: flex-start;
		align-items: flex-start;

		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;

		padding: 25px 0;
	}
	#cmp_f414a5b5-cec9-446a-92b9-5a16970b5e81 .footer-directory {
		-webkit-order: 1;
		-moz-order: 1;
		-ms-order: 1;
		order: 1;

		text-align: left;
	}
	#cmp_f414a5b5-cec9-446a-92b9-5a16970b5e81 .footer-social {
		-webkit-order: 2;
		-moz-order: 2;
		-ms-order: 2;
		order: 2;

		padding: 0 15px;
		text-align: right;
	}
	#cmp_f414a5b5-cec9-446a-92b9-5a16970b5e81 .footer-cc {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}
	#cmp_f414a5b5-cec9-446a-92b9-5a16970b5e81 .footer-cc p {
		display: inline-block;
	}
}

@media (min-width: 992px) {
	#cmp_f414a5b5-cec9-446a-92b9-5a16970b5e81 .footer-cc {
		-webkit-order: 2;
		-moz-order: 2;
		-ms-order: 2;
		order: 2;

		border-top: none;
	}
	#cmp_f414a5b5-cec9-446a-92b9-5a16970b5e81 .footer-cc p {
		display: block;
	}
	#cmp_f414a5b5-cec9-446a-92b9-5a16970b5e81 .footer-social {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}
}

/*
 * components/index/cmp_26602302-78a0-49c2-8669-cf4605115734/component.css
 */
#cmp_26602302-78a0-49c2-8669-cf4605115734 {
	background-color: #FFFFFF;
}

#cmp_26602302-78a0-49c2-8669-cf4605115734 h1 {
	color: #49494A;
	font-family: Josefin Sans;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_26602302-78a0-49c2-8669-cf4605115734 h2 {
	color: rgb(59, 180, 74);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_26602302-78a0-49c2-8669-cf4605115734 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_26602302-78a0-49c2-8669-cf4605115734 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 18px;
	margin: 0 0 25px 0;
}

#cmp_26602302-78a0-49c2-8669-cf4605115734 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 18px;
}

#cmp_26602302-78a0-49c2-8669-cf4605115734 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 18px;
}

/*
 * components/index/cmp_3eb0f551-8c4c-47f1-bcc6-aaef0e93e97b/component.css
 */
#cmp_3eb0f551-8c4c-47f1-bcc6-aaef0e93e97b {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	background-color: #FAFAFA;
}

#cmp_3eb0f551-8c4c-47f1-bcc6-aaef0e93e97b .content {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	margin: 0 auto;
	padding: 25px;
}

#cmp_3eb0f551-8c4c-47f1-bcc6-aaef0e93e97b .square-image {
	height: 225px;
	margin: 0 0 15px 0;
	width: 225px;
}

#cmp_3eb0f551-8c4c-47f1-bcc6-aaef0e93e97b h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
}

#cmp_3eb0f551-8c4c-47f1-bcc6-aaef0e93e97b h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
}

#cmp_3eb0f551-8c4c-47f1-bcc6-aaef0e93e97b h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
}

#cmp_3eb0f551-8c4c-47f1-bcc6-aaef0e93e97b p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 18px;
}

/*
 * components/index/cmp_64295297-0dd3-40d8-affa-2d1a11eb2374/component.css
 */
#cmp_64295297-0dd3-40d8-affa-2d1a11eb2374 {
	padding: 0;
}

#cmp_64295297-0dd3-40d8-affa-2d1a11eb2374 .hero-content {
	background-color: #E5E9EE;
	padding: 20px;
}

#cmp_64295297-0dd3-40d8-affa-2d1a11eb2374 .hero-content h1 {
	color: #49494A;
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 15px 0;
}

#cmp_64295297-0dd3-40d8-affa-2d1a11eb2374 .hero-content h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 15px 0;
}

#cmp_64295297-0dd3-40d8-affa-2d1a11eb2374 .hero-content h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 15px 0;
}

#cmp_64295297-0dd3-40d8-affa-2d1a11eb2374 .hero-content p {
	color: #49494A;
	font-family: Lato;
	font-size: 18px;
	margin: 0 0 15px 0;
}

#cmp_64295297-0dd3-40d8-affa-2d1a11eb2374 .hero-content .button-container {
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
}

#cmp_64295297-0dd3-40d8-affa-2d1a11eb2374 .hero-content .btn {
	margin: 3px;
	padding: 15px;
	width: 40%;
}

#cmp_64295297-0dd3-40d8-affa-2d1a11eb2374 .hero-content .btn-primary {
	background-color: rgb(59, 180, 74);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_64295297-0dd3-40d8-affa-2d1a11eb2374 .hero-content .btn-primary:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

#cmp_64295297-0dd3-40d8-affa-2d1a11eb2374 .hero-content .btn-secondary {
	background-color: rgba(139, 87, 42, 0.75);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_64295297-0dd3-40d8-affa-2d1a11eb2374 .hero-content .btn-secondary:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

#cmp_64295297-0dd3-40d8-affa-2d1a11eb2374 p {
	margin: 0 0 25px 0;
}
/*
 * components/index/cmp_7739e889-3360-45e6-8b1d-764793f9726d/component.css
 */
#cmp_7739e889-3360-45e6-8b1d-764793f9726d {
	padding: 0;
}

#cmp_7739e889-3360-45e6-8b1d-764793f9726d .hero-content {
	background-color: #FFFFFF;
	padding: 20px;
}

#cmp_7739e889-3360-45e6-8b1d-764793f9726d .hero-content h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 15px 0;
}

#cmp_7739e889-3360-45e6-8b1d-764793f9726d .hero-content h2 {
	color: rgb(59, 180, 74);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 15px 0;
}

#cmp_7739e889-3360-45e6-8b1d-764793f9726d .hero-content h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 15px 0;
}

#cmp_7739e889-3360-45e6-8b1d-764793f9726d .hero-content p {
	color: #49494A;
	font-family: Lato;
	font-size: 18px;
	margin: 0 0 15px 0;
}

#cmp_7739e889-3360-45e6-8b1d-764793f9726d .hero-content .btn {
	background-color: rgb(59, 180, 74);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_7739e889-3360-45e6-8b1d-764793f9726d .hero-content .btn:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

#cmp_7739e889-3360-45e6-8b1d-764793f9726d p {
	margin: 0 0 25px 0;
}
/*
 * components/index/cmp_a2ad2a6f-4b88-4696-bee6-d63d7bcb0b0f/component.css
 */
#cmp_a2ad2a6f-4b88-4696-bee6-d63d7bcb0b0f {
	background-color: #FAFAFA;
}

#cmp_a2ad2a6f-4b88-4696-bee6-d63d7bcb0b0f .content {
	margin: 10px auto;
	max-width: 250px;
}

#cmp_a2ad2a6f-4b88-4696-bee6-d63d7bcb0b0f .content .propositions-title {
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;

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

#cmp_a2ad2a6f-4b88-4696-bee6-d63d7bcb0b0f .content .propositions-title h3 {
	margin: 0;
}

#cmp_a2ad2a6f-4b88-4696-bee6-d63d7bcb0b0f .content .propositions-image {
	background-repeat: no-repeat;
	background-size: contain !important;
	height: 40px;
	margin: 15px;
	width: 40px;
}

#cmp_a2ad2a6f-4b88-4696-bee6-d63d7bcb0b0f h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
}

#cmp_a2ad2a6f-4b88-4696-bee6-d63d7bcb0b0f h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
}

#cmp_a2ad2a6f-4b88-4696-bee6-d63d7bcb0b0f h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
}

#cmp_a2ad2a6f-4b88-4696-bee6-d63d7bcb0b0f p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 18px;
}

/*
 * components/index/cmp_ca81cae0-a02d-4fa1-a110-19a7a760f088/component.css
 */
#cmp_ca81cae0-a02d-4fa1-a110-19a7a760f088 {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	background-color: #FFFFFF;
}

#cmp_ca81cae0-a02d-4fa1-a110-19a7a760f088 .content {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	margin: 0 auto;
	padding: 25px;
}

#cmp_ca81cae0-a02d-4fa1-a110-19a7a760f088 .square-image {
	height: 225px;
	margin: 0 0 15px 0;
	width: 225px;
}

#cmp_ca81cae0-a02d-4fa1-a110-19a7a760f088 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
}

#cmp_ca81cae0-a02d-4fa1-a110-19a7a760f088 h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
}

#cmp_ca81cae0-a02d-4fa1-a110-19a7a760f088 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
}

#cmp_ca81cae0-a02d-4fa1-a110-19a7a760f088 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/past_boxes/cmp_03d77e77-1a9b-4521-9fb9-c8bb1ca44d9e/component.css
 */
#cmp_03d77e77-1a9b-4521-9fb9-c8bb1ca44d9e {
	background-color: rgb(248, 244, 234);
}

#cmp_03d77e77-1a9b-4521-9fb9-c8bb1ca44d9e h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_03d77e77-1a9b-4521-9fb9-c8bb1ca44d9e h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_03d77e77-1a9b-4521-9fb9-c8bb1ca44d9e h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_03d77e77-1a9b-4521-9fb9-c8bb1ca44d9e p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_03d77e77-1a9b-4521-9fb9-c8bb1ca44d9e ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_03d77e77-1a9b-4521-9fb9-c8bb1ca44d9e ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/past_boxes/cmp_06519992-3993-4304-822b-744dd44c9cd0/component.css
 */
#cmp_06519992-3993-4304-822b-744dd44c9cd0 {
	background-color: rgb(248, 244, 234);
}

#cmp_06519992-3993-4304-822b-744dd44c9cd0 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_06519992-3993-4304-822b-744dd44c9cd0 h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_06519992-3993-4304-822b-744dd44c9cd0 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_06519992-3993-4304-822b-744dd44c9cd0 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_06519992-3993-4304-822b-744dd44c9cd0 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_06519992-3993-4304-822b-744dd44c9cd0 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/past_boxes/cmp_082f6a45-e0de-4e7b-a59a-adb8e77d617b/component.css
 */
#cmp_082f6a45-e0de-4e7b-a59a-adb8e77d617b img {
	max-width: 100%;
}

/*
 * components/past_boxes/cmp_08aa3ef9-eed8-4fe5-aec1-1178ade30a2a/component.css
 */
#cmp_08aa3ef9-eed8-4fe5-aec1-1178ade30a2a {
	background-color: rgb(248, 244, 234);
}

#cmp_08aa3ef9-eed8-4fe5-aec1-1178ade30a2a h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_08aa3ef9-eed8-4fe5-aec1-1178ade30a2a h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_08aa3ef9-eed8-4fe5-aec1-1178ade30a2a h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_08aa3ef9-eed8-4fe5-aec1-1178ade30a2a p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_08aa3ef9-eed8-4fe5-aec1-1178ade30a2a ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_08aa3ef9-eed8-4fe5-aec1-1178ade30a2a ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/past_boxes/cmp_0daa9a33-4f8f-42fe-b85f-00c804e82f70/component.css
 */
#cmp_0daa9a33-4f8f-42fe-b85f-00c804e82f70 {
	background-color: rgb(248, 244, 234);
}

#cmp_0daa9a33-4f8f-42fe-b85f-00c804e82f70 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_0daa9a33-4f8f-42fe-b85f-00c804e82f70 h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_0daa9a33-4f8f-42fe-b85f-00c804e82f70 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_0daa9a33-4f8f-42fe-b85f-00c804e82f70 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_0daa9a33-4f8f-42fe-b85f-00c804e82f70 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_0daa9a33-4f8f-42fe-b85f-00c804e82f70 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/past_boxes/cmp_144e9d9a-c171-4362-b3ac-316465fe365b/component.css
 */
#cmp_144e9d9a-c171-4362-b3ac-316465fe365b {
	background-color: rgb(248, 244, 234);
}

#cmp_144e9d9a-c171-4362-b3ac-316465fe365b h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_144e9d9a-c171-4362-b3ac-316465fe365b h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_144e9d9a-c171-4362-b3ac-316465fe365b h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_144e9d9a-c171-4362-b3ac-316465fe365b p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_144e9d9a-c171-4362-b3ac-316465fe365b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_144e9d9a-c171-4362-b3ac-316465fe365b ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/past_boxes/cmp_1f50120c-d187-4ccf-bf69-c0cf80bb7e31/component.css
 */
#cmp_1f50120c-d187-4ccf-bf69-c0cf80bb7e31 img {
	max-width: 100%;
}

/*
 * components/past_boxes/cmp_21b3b7db-bbec-41ab-8259-7a86db425de8/component.css
 */
#cmp_21b3b7db-bbec-41ab-8259-7a86db425de8 img {
	max-width: 100%;
}

/*
 * components/past_boxes/cmp_2e200da8-ffcd-4cfe-9833-e5d8e67a866e/component.css
 */
#cmp_2e200da8-ffcd-4cfe-9833-e5d8e67a866e img {
	max-width: 100%;
}

/*
 * components/past_boxes/cmp_3ee9f554-43a9-4fab-93ad-d944bb95ad51/component.css
 */
#cmp_3ee9f554-43a9-4fab-93ad-d944bb95ad51 {
	background-color: rgb(248, 244, 234);
}

#cmp_3ee9f554-43a9-4fab-93ad-d944bb95ad51 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_3ee9f554-43a9-4fab-93ad-d944bb95ad51 h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_3ee9f554-43a9-4fab-93ad-d944bb95ad51 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_3ee9f554-43a9-4fab-93ad-d944bb95ad51 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_3ee9f554-43a9-4fab-93ad-d944bb95ad51 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_3ee9f554-43a9-4fab-93ad-d944bb95ad51 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/past_boxes/cmp_423f5748-f15b-4849-82e7-a3b43fc4ff6a/component.css
 */
#cmp_423f5748-f15b-4849-82e7-a3b43fc4ff6a {
	background-color: rgb(248, 244, 234);
}

#cmp_423f5748-f15b-4849-82e7-a3b43fc4ff6a h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_423f5748-f15b-4849-82e7-a3b43fc4ff6a h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_423f5748-f15b-4849-82e7-a3b43fc4ff6a h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_423f5748-f15b-4849-82e7-a3b43fc4ff6a p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_423f5748-f15b-4849-82e7-a3b43fc4ff6a ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_423f5748-f15b-4849-82e7-a3b43fc4ff6a ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/past_boxes/cmp_4aee1514-2e7b-4fa5-9313-9d83e556f495/component.css
 */
#cmp_4aee1514-2e7b-4fa5-9313-9d83e556f495 img {
	max-width: 100%;
}

/*
 * components/past_boxes/cmp_4d2d4395-42e4-4dda-9ef2-73007b1d78c2/component.css
 */
#cmp_4d2d4395-42e4-4dda-9ef2-73007b1d78c2 img {
	max-width: 100%;
}

/*
 * components/past_boxes/cmp_5319176a-2ac8-4b84-bb54-9fe86b7203b6/component.css
 */
#cmp_5319176a-2ac8-4b84-bb54-9fe86b7203b6 img {
	max-width: 100%;
}

/*
 * components/past_boxes/cmp_5b0870ff-ffab-41c8-be9d-1ba75746d9b6/component.css
 */
#cmp_5b0870ff-ffab-41c8-be9d-1ba75746d9b6 {
	background-color: rgb(248, 244, 234);
}

#cmp_5b0870ff-ffab-41c8-be9d-1ba75746d9b6 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_5b0870ff-ffab-41c8-be9d-1ba75746d9b6 h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_5b0870ff-ffab-41c8-be9d-1ba75746d9b6 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_5b0870ff-ffab-41c8-be9d-1ba75746d9b6 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_5b0870ff-ffab-41c8-be9d-1ba75746d9b6 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_5b0870ff-ffab-41c8-be9d-1ba75746d9b6 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/past_boxes/cmp_82665096-d479-481a-b698-16e8f9ce4446/component.css
 */
#cmp_82665096-d479-481a-b698-16e8f9ce4446 {
	background-color: rgb(248, 244, 234);
}

#cmp_82665096-d479-481a-b698-16e8f9ce4446 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_82665096-d479-481a-b698-16e8f9ce4446 h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_82665096-d479-481a-b698-16e8f9ce4446 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_82665096-d479-481a-b698-16e8f9ce4446 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_82665096-d479-481a-b698-16e8f9ce4446 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_82665096-d479-481a-b698-16e8f9ce4446 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/past_boxes/cmp_841a04be-3952-4806-955a-612ad76b7390/component.css
 */
#cmp_841a04be-3952-4806-955a-612ad76b7390 {
	background-color: rgb(248, 244, 234);
}

#cmp_841a04be-3952-4806-955a-612ad76b7390 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_841a04be-3952-4806-955a-612ad76b7390 h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_841a04be-3952-4806-955a-612ad76b7390 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_841a04be-3952-4806-955a-612ad76b7390 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_841a04be-3952-4806-955a-612ad76b7390 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_841a04be-3952-4806-955a-612ad76b7390 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/past_boxes/cmp_841cd6c9-1153-4675-9f50-884e14ed8be4/component.css
 */
#cmp_841cd6c9-1153-4675-9f50-884e14ed8be4 img {
	max-width: 100%;
}

/*
 * components/past_boxes/cmp_8be5f27e-9beb-4d85-b226-28d12c3833a9/component.css
 */
#cmp_8be5f27e-9beb-4d85-b226-28d12c3833a9 img {
	max-width: 100%;
}

/*
 * components/past_boxes/cmp_94303157-e278-4d0c-93e2-5e2428146ccf/component.css
 */
#cmp_94303157-e278-4d0c-93e2-5e2428146ccf {
	background-color: rgb(248, 244, 234);
}

#cmp_94303157-e278-4d0c-93e2-5e2428146ccf h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_94303157-e278-4d0c-93e2-5e2428146ccf h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_94303157-e278-4d0c-93e2-5e2428146ccf h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_94303157-e278-4d0c-93e2-5e2428146ccf p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_94303157-e278-4d0c-93e2-5e2428146ccf ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_94303157-e278-4d0c-93e2-5e2428146ccf ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/past_boxes/cmp_953e81dc-62a3-4c6d-9952-7ab6f32d6de0/component.css
 */
#cmp_953e81dc-62a3-4c6d-9952-7ab6f32d6de0 img {
	max-width: 100%;
}

/*
 * components/past_boxes/cmp_981bd25f-0578-4b21-aa72-95afbdf9533a/component.css
 */
#cmp_981bd25f-0578-4b21-aa72-95afbdf9533a {
	background-color: #FFFFFF;
}

#cmp_981bd25f-0578-4b21-aa72-95afbdf9533a h1 {
	color: rgb(59, 180, 74);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_981bd25f-0578-4b21-aa72-95afbdf9533a h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_981bd25f-0578-4b21-aa72-95afbdf9533a h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_981bd25f-0578-4b21-aa72-95afbdf9533a p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 18px;
	margin: 0 0 25px 0;
}

#cmp_981bd25f-0578-4b21-aa72-95afbdf9533a ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 18px;
}

#cmp_981bd25f-0578-4b21-aa72-95afbdf9533a ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 18px;
}

/*
 * components/past_boxes/cmp_9b8c88c6-3e20-4848-a281-e0192b619279/component.css
 */
#cmp_9b8c88c6-3e20-4848-a281-e0192b619279 img {
	max-width: 100%;
}

/*
 * components/past_boxes/cmp_9e1331d6-e60d-43b9-a409-e220a59fa24b/component.css
 */
#cmp_9e1331d6-e60d-43b9-a409-e220a59fa24b {
	background-color: rgb(248, 244, 234);
}

#cmp_9e1331d6-e60d-43b9-a409-e220a59fa24b h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_9e1331d6-e60d-43b9-a409-e220a59fa24b h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_9e1331d6-e60d-43b9-a409-e220a59fa24b h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_9e1331d6-e60d-43b9-a409-e220a59fa24b p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_9e1331d6-e60d-43b9-a409-e220a59fa24b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_9e1331d6-e60d-43b9-a409-e220a59fa24b ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/past_boxes/cmp_a9f010d4-f664-4323-add5-58a420db4ff4/component.css
 */
#cmp_a9f010d4-f664-4323-add5-58a420db4ff4 {
	background-color: rgb(248, 244, 234);
}

#cmp_a9f010d4-f664-4323-add5-58a420db4ff4 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_a9f010d4-f664-4323-add5-58a420db4ff4 h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_a9f010d4-f664-4323-add5-58a420db4ff4 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_a9f010d4-f664-4323-add5-58a420db4ff4 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_a9f010d4-f664-4323-add5-58a420db4ff4 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_a9f010d4-f664-4323-add5-58a420db4ff4 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/past_boxes/cmp_b550c224-4f74-4023-8f5e-2267a391ea3f/component.css
 */
#cmp_b550c224-4f74-4023-8f5e-2267a391ea3f {
	background-color: rgb(248, 244, 234);
}

#cmp_b550c224-4f74-4023-8f5e-2267a391ea3f h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_b550c224-4f74-4023-8f5e-2267a391ea3f h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_b550c224-4f74-4023-8f5e-2267a391ea3f h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_b550c224-4f74-4023-8f5e-2267a391ea3f p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_b550c224-4f74-4023-8f5e-2267a391ea3f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_b550c224-4f74-4023-8f5e-2267a391ea3f ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/past_boxes/cmp_bf377469-087a-4596-9461-565428f9dba3/component.css
 */
#cmp_bf377469-087a-4596-9461-565428f9dba3 img {
	max-width: 100%;
}

/*
 * components/past_boxes/cmp_d173413d-0a50-4f60-8c0b-ca969483dc4e/component.css
 */
#cmp_d173413d-0a50-4f60-8c0b-ca969483dc4e img {
	max-width: 100%;
}

/*
 * components/past_boxes/cmp_d6a873f0-5ef2-4a43-99ca-df507dd0c064/component.css
 */
#cmp_d6a873f0-5ef2-4a43-99ca-df507dd0c064 img {
	max-width: 100%;
}

/*
 * components/past_boxes/cmp_f7fee184-8001-4353-8089-4902e79ace79/component.css
 */
#cmp_f7fee184-8001-4353-8089-4902e79ace79 img {
	max-width: 100%;
}

/*
 * components/past_boxes/cmp_fddbaa19-1857-4e5c-a0b7-349edf793b58/component.css
 */
#cmp_fddbaa19-1857-4e5c-a0b7-349edf793b58 {
	background-color: rgb(248, 244, 234);
}

#cmp_fddbaa19-1857-4e5c-a0b7-349edf793b58 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_fddbaa19-1857-4e5c-a0b7-349edf793b58 h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_fddbaa19-1857-4e5c-a0b7-349edf793b58 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_fddbaa19-1857-4e5c-a0b7-349edf793b58 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_fddbaa19-1857-4e5c-a0b7-349edf793b58 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_fddbaa19-1857-4e5c-a0b7-349edf793b58 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/shop/listing/cmp_524d3e16-c66c-465f-a5b2-b4e0bd7770dc/component.css
 */
#cmp_524d3e16-c66c-465f-a5b2-b4e0bd7770dc {
    border-bottom: 1px solid #E1E1E1;
    margin-bottom: 35px;
	padding: 20px 0;

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

#cmp_524d3e16-c66c-465f-a5b2-b4e0bd7770dc ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_745de484-f6c4-4a52-b81a-cbaf20e3c434/component.css
 */
.shop-listing {
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;

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

.shop-listing-item {
	color: #B0B0B0;
}

.shop-listing-item:hover,
.shop-listing-item:focus {
	text-decoration: none;
}

.shop-listing-item__image {
	background-size: cover;
	background-position: center center;
}

.shop-listing-item__name {
	margin: 10px 0;
}

.shop-listing-item__price {
	margin: 10px 0 30px;
}

.product_paging {
	-webkit-display: flex;
	-ms-display: flex;
	display: flex;
	justify-content: center;

	margin: 20px 0;
}

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

.product_page.active a,
.product_page a:hover, .product_page a:focus,
.next_page a:hover, .next_page a:focus,
.prev_page a:hover, .prev_page a:focus {
	text-decoration: none;
	background-color: #F9F9F9;
}

.product_page.active a {
	color: black;
}

/*
 * components/shop/listing/cmp_7952b2d5-a1f3-4b8b-9fe3-b89bdbb9920e/component.css
 */
#cmp_7952b2d5-a1f3-4b8b-9fe3-b89bdbb9920e {
	background-color: #FFFFFF;
}

#cmp_7952b2d5-a1f3-4b8b-9fe3-b89bdbb9920e h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_7952b2d5-a1f3-4b8b-9fe3-b89bdbb9920e h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_7952b2d5-a1f3-4b8b-9fe3-b89bdbb9920e h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_7952b2d5-a1f3-4b8b-9fe3-b89bdbb9920e p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_7952b2d5-a1f3-4b8b-9fe3-b89bdbb9920e ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_7952b2d5-a1f3-4b8b-9fe3-b89bdbb9920e ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_7952b2d5-a1f3-4b8b-9fe3-b89bdbb9920e  {
	padding-bottom: 20px;
}
/*
 * components/shop/listing/cmp_ffda2e39-a9aa-4fee-ac52-51d64a7d5bfb/component.css
 */
#cmp_ffda2e39-a9aa-4fee-ac52-51d64a7d5bfb {
    padding: 20px 0;

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

#cmp_ffda2e39-a9aa-4fee-ac52-51d64a7d5bfb ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/product/cmp_7b5613c9-f85d-4e55-92df-29fcc8234edb/component.css
 */
#cmp_7b5613c9-f85d-4e55-92df-29fcc8234edb .shop-product__name {
	margin: 0 0 10px 0;
}

#cmp_7b5613c9-f85d-4e55-92df-29fcc8234edb .shop-product__price {
	margin: 0 0 20px 0;
}

#cmp_7b5613c9-f85d-4e55-92df-29fcc8234edb .shop-product select {
	width: auto;
}

#cmp_7b5613c9-f85d-4e55-92df-29fcc8234edb .shop-product__add-to-cart {
	margin: 0 0 20px 0;
}

#cmp_7b5613c9-f85d-4e55-92df-29fcc8234edb .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin: 0 0 40px 0;
}

#cmp_7b5613c9-f85d-4e55-92df-29fcc8234edb .shop-product__review-share-desktop .col-xs-6 {
	padding: 10px 0 0 0;
}

#cmp_7b5613c9-f85d-4e55-92df-29fcc8234edb .shop-product__review-share-desktop .col-xs-6 + .col-xs-6 {
	border-left: 1px solid #E1E1E1;
}

#cmp_7b5613c9-f85d-4e55-92df-29fcc8234edb  {
	padding-top: 0;
}
/*
 * components/shop/product/cmp_ecd4a0bf-9274-4814-bf8b-5c758ef16cac/component.css
 */
#cmp_ecd4a0bf-9274-4814-bf8b-5c758ef16cac.shop-product-header {
	padding: 50px 0 15px 0;
}

/*
 * components/sold_out/cmp_5ab4bb45-ca5f-4b56-aa3e-5d2ac3359d8d/component.css
 */
#cmp_5ab4bb45-ca5f-4b56-aa3e-5d2ac3359d8d img {
	max-width: 100%;
}

/*
 * components/sold_out/cmp_a156662d-ca2e-4dd9-a539-584c05c36596/component.css
 */
#cmp_a156662d-ca2e-4dd9-a539-584c05c36596 {
	background-color: #FFFFFF;
}

#cmp_a156662d-ca2e-4dd9-a539-584c05c36596 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_a156662d-ca2e-4dd9-a539-584c05c36596 h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_a156662d-ca2e-4dd9-a539-584c05c36596 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_a156662d-ca2e-4dd9-a539-584c05c36596 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 14px;
	margin: 0 0 25px 0;
}

#cmp_a156662d-ca2e-4dd9-a539-584c05c36596 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_a156662d-ca2e-4dd9-a539-584c05c36596 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_a156662d-ca2e-4dd9-a539-584c05c36596 .btn {
	background-color: #3BB44A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_a156662d-ca2e-4dd9-a539-584c05c36596 .btn:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

#cmp_a156662d-ca2e-4dd9-a539-584c05c36596 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 14px;
}

#cmp_a156662d-ca2e-4dd9-a539-584c05c36596 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 14px;
}

#cmp_a156662d-ca2e-4dd9-a539-584c05c36596  {
	padding-top: 0;
}
/*
 * components/subscribe/cmp_18865902-ad79-4dda-8721-abccd76bdaad/component.css
 */
#cmp_18865902-ad79-4dda-8721-abccd76bdaad {
	background-color: #FFFFFF;
}

#cmp_18865902-ad79-4dda-8721-abccd76bdaad h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_18865902-ad79-4dda-8721-abccd76bdaad h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_18865902-ad79-4dda-8721-abccd76bdaad h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_18865902-ad79-4dda-8721-abccd76bdaad p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_18865902-ad79-4dda-8721-abccd76bdaad ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_18865902-ad79-4dda-8721-abccd76bdaad ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/subscribe/cmp_3256ce0d-7128-4ac4-acbd-4c88d05559a0/component.css
 */

/*
 * components/subscribe/cmp_8e8dce62-23ab-4e3c-806a-177c3da2103f/component.css
 */
#cmp_8e8dce62-23ab-4e3c-806a-177c3da2103f {
	background-color: #FFFFFF;
}

#cmp_8e8dce62-23ab-4e3c-806a-177c3da2103f h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_8e8dce62-23ab-4e3c-806a-177c3da2103f h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_8e8dce62-23ab-4e3c-806a-177c3da2103f h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_8e8dce62-23ab-4e3c-806a-177c3da2103f p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_8e8dce62-23ab-4e3c-806a-177c3da2103f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_8e8dce62-23ab-4e3c-806a-177c3da2103f ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_8e8dce62-23ab-4e3c-806a-177c3da2103f  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_24a831d8-0622-4f6d-b9db-76246a615320/component.css
 */
.survey:first-of-type {
    padding: 0 0 50px 0;
}
#cmp_24a831d8-0622-4f6d-b9db-76246a615320  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_61fc6e9d-b045-40c2-8e87-04eb9785e2b7/component.css
 */
#cmp_61fc6e9d-b045-40c2-8e87-04eb9785e2b7 {
	padding: 50px 0 15px 0;
}

/*
 * components/subscribe_flow/terms_step/cmp_8d983be6-bd59-4ace-a8a4-75f241dd0945/component.css
 */
#cmp_8d983be6-bd59-4ace-a8a4-75f241dd0945 {
	padding: 50px 0 15px 0;
}

/*
 * components/subscribe_flow/terms_step/cmp_de552419-5e95-4c5b-8669-ee4e5d3b6eaf/component.css
 */

/*
 * components/subscribe_flow/variant_step/cmp_3046cc09-485b-4f6e-b553-ed608d2fbd52/component.css
 */

/*
 * components/subscribe_flow/variant_step/cmp_3a4c665b-01a9-4129-b6ff-0e16ce9839cc/component.css
 */
#cmp_3a4c665b-01a9-4129-b6ff-0e16ce9839cc {
	padding: 50px 0 15px 0;
}

/*
 * components/view-cart/cmp_6193517b-890e-424a-8dcf-b0d8f7f7a02f/component.css
 */
#cmp_6193517b-890e-424a-8dcf-b0d8f7f7a02f {
	padding: 15px 15px 100px 15px;
}

#cmp_6193517b-890e-424a-8dcf-b0d8f7f7a02f .cart-thead {
	border-bottom: 1px solid #E1E1E1;
	padding: 10px 0;
}

#cmp_6193517b-890e-424a-8dcf-b0d8f7f7a02f .cart-thead h3 {
	text-transform: uppercase;
}

#cmp_6193517b-890e-424a-8dcf-b0d8f7f7a02f .cart-item {
	border: 1px solid #E1E1E1;
	padding: 25px 0;
	position: relative;
}

#cmp_6193517b-890e-424a-8dcf-b0d8f7f7a02f .product-main {
	margin: 0 0 15px 0;
}

#cmp_6193517b-890e-424a-8dcf-b0d8f7f7a02f .product-label p {
	margin: 0;
}

#cmp_6193517b-890e-424a-8dcf-b0d8f7f7a02f .product-label .info {
	color: #3BB44A;
	text-align: right;
	text-transform: uppercase;
}

#cmp_6193517b-890e-424a-8dcf-b0d8f7f7a02f .product-label .meta {
	color: #49494A;
	font-size: 16px;
}

#cmp_6193517b-890e-424a-8dcf-b0d8f7f7a02f .product-rem-btn {
	position: absolute;
	right: 1%;
	top: 1%;
}

#cmp_6193517b-890e-424a-8dcf-b0d8f7f7a02f figure {
	margin: 0 0 15px 0;
}

#cmp_6193517b-890e-424a-8dcf-b0d8f7f7a02f .cart-subtotal {
	margin: 50px 0 0 0;
}

#cmp_6193517b-890e-424a-8dcf-b0d8f7f7a02f .cart-subtotal h2 {
	margin: 0 0 15px 0;
}

#cmp_6193517b-890e-424a-8dcf-b0d8f7f7a02f .cart-subtotal h3 {
	margin: 0 0 25px 0;
	text-transform: uppercase;
}

#cmp_6193517b-890e-424a-8dcf-b0d8f7f7a02f .cart-subtotal p {
	margin: 0 0 25px 0;
}

@media (min-width: 768px) {
	#cmp_6193517b-890e-424a-8dcf-b0d8f7f7a02f .cart-item {
		border-width: 0 0 1px 0;
	}
	#cmp_6193517b-890e-424a-8dcf-b0d8f7f7a02f .product-rem-btn {
		top: 40%;
	}
	#cmp_6193517b-890e-424a-8dcf-b0d8f7f7a02f figure {
		margin: 0;
	}
}

/*
 * components/view-cart/cmp_7db48e24-64d8-4a9e-9479-5c67b274fa40/component.css
 */
#cmp_7db48e24-64d8-4a9e-9479-5c67b274fa40 {
	background-color: #FFFFFF;
}

#cmp_7db48e24-64d8-4a9e-9479-5c67b274fa40 h1 {
	color: #49494A;
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 25px 0;
}

#cmp_7db48e24-64d8-4a9e-9479-5c67b274fa40 h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_7db48e24-64d8-4a9e-9479-5c67b274fa40 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_7db48e24-64d8-4a9e-9479-5c67b274fa40 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_7db48e24-64d8-4a9e-9479-5c67b274fa40 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_7db48e24-64d8-4a9e-9479-5c67b274fa40 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/whats_inside/cmp_07f2b8d1-c90a-458e-b645-e23afa74bbf4/component.css
 */
#cmp_07f2b8d1-c90a-458e-b645-e23afa74bbf4 {
	padding: 0;
}

#cmp_07f2b8d1-c90a-458e-b645-e23afa74bbf4 .hero-content {
	background-color: #FAFAFA;
	padding: 20px;
}

#cmp_07f2b8d1-c90a-458e-b645-e23afa74bbf4 .hero-content h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 15px 0;
}

#cmp_07f2b8d1-c90a-458e-b645-e23afa74bbf4 .hero-content h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 15px 0;
}

#cmp_07f2b8d1-c90a-458e-b645-e23afa74bbf4 .hero-content h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 15px 0;
}

#cmp_07f2b8d1-c90a-458e-b645-e23afa74bbf4 .hero-content p {
	color: #49494A;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 15px 0;
}

#cmp_07f2b8d1-c90a-458e-b645-e23afa74bbf4 .hero-content .btn {
	background-color: #3BB44A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_07f2b8d1-c90a-458e-b645-e23afa74bbf4 .hero-content .btn:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

/*
 * components/whats_inside/cmp_0c6fb5c9-3584-4d68-9b58-ff4f61a58125/component.css
 */
#cmp_0c6fb5c9-3584-4d68-9b58-ff4f61a58125 {
	padding: 0;
}

#cmp_0c6fb5c9-3584-4d68-9b58-ff4f61a58125 .hero-content {
	background-color: #FAFAFA;
	padding: 20px;
}

#cmp_0c6fb5c9-3584-4d68-9b58-ff4f61a58125 .hero-content h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 15px 0;
}

#cmp_0c6fb5c9-3584-4d68-9b58-ff4f61a58125 .hero-content h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 15px 0;
}

#cmp_0c6fb5c9-3584-4d68-9b58-ff4f61a58125 .hero-content h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 15px 0;
}

#cmp_0c6fb5c9-3584-4d68-9b58-ff4f61a58125 .hero-content p {
	color: #49494A;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 15px 0;
}

#cmp_0c6fb5c9-3584-4d68-9b58-ff4f61a58125 .hero-content .btn {
	background-color: #3BB44A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_0c6fb5c9-3584-4d68-9b58-ff4f61a58125 .hero-content .btn:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

/*
 * components/whats_inside/cmp_74218d8b-95b5-488e-b4fa-f877c99feb26/component.css
 */
#cmp_74218d8b-95b5-488e-b4fa-f877c99feb26 {
	background-color: #FFFFFF;
}

#cmp_74218d8b-95b5-488e-b4fa-f877c99feb26 h1 {
	color: rgb(59, 180, 74);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_74218d8b-95b5-488e-b4fa-f877c99feb26 h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_74218d8b-95b5-488e-b4fa-f877c99feb26 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_74218d8b-95b5-488e-b4fa-f877c99feb26 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 18px;
	margin: 0 0 25px 0;
}

#cmp_74218d8b-95b5-488e-b4fa-f877c99feb26 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 18px;
}

#cmp_74218d8b-95b5-488e-b4fa-f877c99feb26 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 18px;
}

/*
 * components/whats_inside/cmp_8565ce65-2c9d-45f3-a50c-7107b120c895/component.css
 */
#cmp_8565ce65-2c9d-45f3-a50c-7107b120c895 img {
	max-width: 100%;
}

/*
 * components/whats_inside/cmp_b13ebd4f-081d-4d69-92b8-6680035cc715/component.css
 */
#cmp_b13ebd4f-081d-4d69-92b8-6680035cc715 {
	background-color: #FFFFFF;
}

#cmp_b13ebd4f-081d-4d69-92b8-6680035cc715 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_b13ebd4f-081d-4d69-92b8-6680035cc715 h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_b13ebd4f-081d-4d69-92b8-6680035cc715 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_b13ebd4f-081d-4d69-92b8-6680035cc715 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_b13ebd4f-081d-4d69-92b8-6680035cc715 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_b13ebd4f-081d-4d69-92b8-6680035cc715 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_b13ebd4f-081d-4d69-92b8-6680035cc715 .btn {
	background-color: #3BB44A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_b13ebd4f-081d-4d69-92b8-6680035cc715 .btn:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

#cmp_b13ebd4f-081d-4d69-92b8-6680035cc715 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_b13ebd4f-081d-4d69-92b8-6680035cc715 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/index/cmp_cb1d1002-9bd8-4943-a88c-17a8b888dcc9/component.css
 */
#cmp_cb1d1002-9bd8-4943-a88c-17a8b888dcc9 img {
	max-width: 100%;
}