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

.container-fluid {
	max-width: 1140px;
}

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

h1 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 48px;
	letter-spacing: 1px;
	line-height: 1;
	margin: 0 0 25px 0;
}

h2 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 32px;
	margin: 0 0 25px 0;
}

h3 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 24px;
	margin: 0 0 25px 0;
}

p {
	line-height: 1.5em;
	margin: 0 0 15px 0;
}

a,
.btn-link {
	color: rgb(249, 180, 2);
}

a:hover,
a:focus,
a:active,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
	color: rgb(184, 233, 134);
}

/* General Component Styles */
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 {
	padding: 0;
	position: relative;

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

/* 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: rgb(249, 180, 2);
}

.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: 0;
	border: none;
	font-size: 14px;
	letter-spacing: 0.077em;
	padding: 1em 3em;
}

.btn-small {
	border: 2px solid rgb(249, 180, 2);
	color: rgb(249, 180, 2);
	padding: 0.6em 1.8em;
}

.btn-small:hover,
.btn-small:focus,
.btn-small:active,
.btn-small:active:focus {
	background-color: rgb(249, 180, 2);
	border-color: rgb(249, 180, 2);
}

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

.btn-primary {
	background-color: rgb(249, 180, 2);
	color: #FFFFFF;
	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(184, 233, 134);
	color: #FFFFFF;
}

.btn-secondary {
	background-color: rgb(182, 22, 19);
	color: #FFFFFF;
	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(184, 233, 134);
	color: #FFFFFF;
}

.btn-empty {
	background-color: transparent;
	border: 1px solid rgb(249, 180, 2);
	color: rgb(249, 180, 2);
}

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

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

/* Subscribe Flow
------------------------------*/
.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;
}

.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: rgb(249, 180, 2);
}
.orders-list .panel {
	width: 100%;
}

/* Checkout
------------------------------*/
.checkout_content {
	margin-top: 0;
	overflow: auto;
}

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

.checkout_content #checkout_button {
	background-color: rgb(249, 180, 2);
	border: none;
	color: #FFFFFF;
	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(184, 233, 134);
	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 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;
}

.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(249, 180, 2);
}

.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(249, 180, 2);
	color: rgb(249, 180, 2);
	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(184, 233, 134);
	border-color: rgb(184, 233, 134);
	text-decoration: none;
}

/* Media Queries
------------------------------*/
@media (max-width: 767px) {
	section[class^="component"] {
		padding: 40px 0;
	}
	/* 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_c83a48f3-1558-40f8-a308-1ed7d56505ea/component.css
 */
#cmp_c83a48f3-1558-40f8-a308-1ed7d56505ea {
	background-color: #FFFFFF;
}

#cmp_c83a48f3-1558-40f8-a308-1ed7d56505ea h1 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_c83a48f3-1558-40f8-a308-1ed7d56505ea h2 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_c83a48f3-1558-40f8-a308-1ed7d56505ea h3 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_c83a48f3-1558-40f8-a308-1ed7d56505ea p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_c83a48f3-1558-40f8-a308-1ed7d56505ea .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_c83a48f3-1558-40f8-a308-1ed7d56505ea ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_c83a48f3-1558-40f8-a308-1ed7d56505ea ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/about/cmp_d18bc000-6fdd-40e0-838c-6c84169ea93f/component.css
 */
#cmp_d18bc000-6fdd-40e0-838c-6c84169ea93f {
	background-color: #E8E4E2;
}

#cmp_d18bc000-6fdd-40e0-838c-6c84169ea93f h1 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_d18bc000-6fdd-40e0-838c-6c84169ea93f h2 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_d18bc000-6fdd-40e0-838c-6c84169ea93f h3 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_d18bc000-6fdd-40e0-838c-6c84169ea93f p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_d18bc000-6fdd-40e0-838c-6c84169ea93f .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_d18bc000-6fdd-40e0-838c-6c84169ea93f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_d18bc000-6fdd-40e0-838c-6c84169ea93f ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/about/cmp_d46b7cde-ed08-4d82-9156-f9879c068bea/component.css
 */
#cmp_d46b7cde-ed08-4d82-9156-f9879c068bea {
	background-color: #FFFFFF;
}

#cmp_d46b7cde-ed08-4d82-9156-f9879c068bea .content-row {
	margin: 0;

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

#cmp_d46b7cde-ed08-4d82-9156-f9879c068bea .content {
	background-color: #FFFFFF;
	border: 5px solid #FFFFFF;
	margin: 15px 0;
	padding: 25px;

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

#cmp_d46b7cde-ed08-4d82-9156-f9879c068bea .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_d46b7cde-ed08-4d82-9156-f9879c068bea h1 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_d46b7cde-ed08-4d82-9156-f9879c068bea h2 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_d46b7cde-ed08-4d82-9156-f9879c068bea h3 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_d46b7cde-ed08-4d82-9156-f9879c068bea p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_d46b7cde-ed08-4d82-9156-f9879c068bea .content {
		margin: 15px;
	}
}
#cmp_d46b7cde-ed08-4d82-9156-f9879c068bea  {
	padding-top: 0;
}
/*
 * components/about/cmp_db607fe2-442b-4a38-82ec-dcb2f1a1fbda/component.css
 */
#cmp_db607fe2-442b-4a38-82ec-dcb2f1a1fbda {
	background-color: #E8E4E2;
}

#cmp_db607fe2-442b-4a38-82ec-dcb2f1a1fbda h1 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_db607fe2-442b-4a38-82ec-dcb2f1a1fbda h2 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_db607fe2-442b-4a38-82ec-dcb2f1a1fbda h3 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_db607fe2-442b-4a38-82ec-dcb2f1a1fbda p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}


#cmp_db607fe2-442b-4a38-82ec-dcb2f1a1fbda .btn {
	background-color: rgb(249, 180, 2);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_db607fe2-442b-4a38-82ec-dcb2f1a1fbda .btn:hover {
	background-color: rgb(184, 233, 134);
	color: #FFFFFF;
}

#cmp_db607fe2-442b-4a38-82ec-dcb2f1a1fbda .component-rich-text-with-button__content-row,
#cmp_db607fe2-442b-4a38-82ec-dcb2f1a1fbda .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_db607fe2-442b-4a38-82ec-dcb2f1a1fbda .component-rich-text-with-button__content-row,
	#cmp_db607fe2-442b-4a38-82ec-dcb2f1a1fbda .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_db607fe2-442b-4a38-82ec-dcb2f1a1fbda ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_db607fe2-442b-4a38-82ec-dcb2f1a1fbda ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/about/cmp_dc21497f-91f8-482d-a15a-a266ed6572aa/component.css
 */
#cmp_dc21497f-91f8-482d-a15a-a266ed6572aa {
	background-color: #FFFFFF;
}

#cmp_dc21497f-91f8-482d-a15a-a266ed6572aa h1 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_dc21497f-91f8-482d-a15a-a266ed6572aa h2 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_dc21497f-91f8-482d-a15a-a266ed6572aa h3 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_dc21497f-91f8-482d-a15a-a266ed6572aa p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_dc21497f-91f8-482d-a15a-a266ed6572aa .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_dc21497f-91f8-482d-a15a-a266ed6572aa ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_dc21497f-91f8-482d-a15a-a266ed6572aa ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_dc21497f-91f8-482d-a15a-a266ed6572aa  {
	padding-bottom: 0;
}
/*
 * components/checkout/cmp_1cadf537-ad18-493e-9b66-cb9a5f1834ee/component.css
 */
#cmp_1cadf537-ad18-493e-9b66-cb9a5f1834ee .checkout_content {
	overflow: auto;
}

#cmp_1cadf537-ad18-493e-9b66-cb9a5f1834ee .checkout_content section {
	border-color: #F5F5F5;
}

#cmp_1cadf537-ad18-493e-9b66-cb9a5f1834ee .cart_listing table {
	border-color: #F5F5F5;
}

/*
 * components/customer/account/cmp_c55e6582-eb38-4bff-8eb9-983fd39c40be/component.css
 */

/*
 * components/customer/edit/cmp_267c4160-632c-4d07-914d-155bcea6445f/component.css
 */

/*
 * components/customer/forgot_password/cmp_6cde2348-9b2d-4638-a9ed-edd9791432ad/component.css
 */
#cmp_6cde2348-9b2d-4638-a9ed-edd9791432ad {
	padding: 0 0 120px 0;
}
/*
 * components/customer/forgot_password/cmp_9843f57a-e007-4565-940e-cdf84c7fcaa3/component.css
 */
#cmp_9843f57a-e007-4565-940e-cdf84c7fcaa3 {
	background-color: #FFFFFF;
}

#cmp_9843f57a-e007-4565-940e-cdf84c7fcaa3 h1 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_9843f57a-e007-4565-940e-cdf84c7fcaa3 h2 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_9843f57a-e007-4565-940e-cdf84c7fcaa3 h3 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_9843f57a-e007-4565-940e-cdf84c7fcaa3 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_9843f57a-e007-4565-940e-cdf84c7fcaa3 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_9843f57a-e007-4565-940e-cdf84c7fcaa3 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_9843f57a-e007-4565-940e-cdf84c7fcaa3 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/customer/login/cmp_21a84e0a-4b9e-49d2-8012-16079a99460d/component.css
 */
#cmp_21a84e0a-4b9e-49d2-8012-16079a99460d {
	background-color: #FFFFFF;
}

#cmp_21a84e0a-4b9e-49d2-8012-16079a99460d h1 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_21a84e0a-4b9e-49d2-8012-16079a99460d h2 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_21a84e0a-4b9e-49d2-8012-16079a99460d h3 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_21a84e0a-4b9e-49d2-8012-16079a99460d p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_21a84e0a-4b9e-49d2-8012-16079a99460d .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_21a84e0a-4b9e-49d2-8012-16079a99460d ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_21a84e0a-4b9e-49d2-8012-16079a99460d ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/customer/login/cmp_b0c8ceb4-d53a-49d9-a552-cd6c227d4cd5/component.css
 */
#cmp_b0c8ceb4-d53a-49d9-a552-cd6c227d4cd5 {
	padding: 0 0 120px 0;
}
/*
 * components/customer/order/cmp_133662ee-8cf3-4abe-9e00-40a007392647/component.css
 */

/*
 * components/customer/orders/cmp_c0b39430-62fa-42c6-a90f-7f2d4f428b0f/component.css
 */

/*
 * components/customer/password_reset/cmp_077d8e92-fd6f-46b1-ac00-9c217eda758c/component.css
 */
#cmp_077d8e92-fd6f-46b1-ac00-9c217eda758c {
	background-color: #FFFFFF;
}

#cmp_077d8e92-fd6f-46b1-ac00-9c217eda758c h1 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_077d8e92-fd6f-46b1-ac00-9c217eda758c h2 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_077d8e92-fd6f-46b1-ac00-9c217eda758c h3 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_077d8e92-fd6f-46b1-ac00-9c217eda758c p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_077d8e92-fd6f-46b1-ac00-9c217eda758c .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_077d8e92-fd6f-46b1-ac00-9c217eda758c ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_077d8e92-fd6f-46b1-ac00-9c217eda758c ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/customer/password_reset/cmp_d91d9c59-8205-48d7-9072-a2cb563b4981/component.css
 */
#cmp_d91d9c59-8205-48d7-9072-a2cb563b4981 {
	padding: 0 0 120px 0;
}
/*
 * components/customer/thank_you/cmp_9d4140a4-4783-4c54-9187-f0124f9eee5f/component.css
 */

/*
 * components/faq/cmp_01cdd5bd-ae8d-4cd4-bf89-3ad0a732d7f5/component.css
 */
#cmp_01cdd5bd-ae8d-4cd4-bf89-3ad0a732d7f5 {
	background-color: #E8E4E2;
}

#cmp_01cdd5bd-ae8d-4cd4-bf89-3ad0a732d7f5 h1 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_01cdd5bd-ae8d-4cd4-bf89-3ad0a732d7f5 h2 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_01cdd5bd-ae8d-4cd4-bf89-3ad0a732d7f5 h3 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_01cdd5bd-ae8d-4cd4-bf89-3ad0a732d7f5 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}


#cmp_01cdd5bd-ae8d-4cd4-bf89-3ad0a732d7f5 .btn {
	background-color: rgb(249, 180, 2);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_01cdd5bd-ae8d-4cd4-bf89-3ad0a732d7f5 .btn:hover {
	background-color: rgb(184, 233, 134);
	color: #FFFFFF;
}

#cmp_01cdd5bd-ae8d-4cd4-bf89-3ad0a732d7f5 .component-rich-text-with-button__content-row,
#cmp_01cdd5bd-ae8d-4cd4-bf89-3ad0a732d7f5 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_01cdd5bd-ae8d-4cd4-bf89-3ad0a732d7f5 .component-rich-text-with-button__content-row,
	#cmp_01cdd5bd-ae8d-4cd4-bf89-3ad0a732d7f5 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_01cdd5bd-ae8d-4cd4-bf89-3ad0a732d7f5 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_01cdd5bd-ae8d-4cd4-bf89-3ad0a732d7f5 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/faq/cmp_42ad2257-16f9-4562-812d-97f3201fcd0b/component.css
 */
#cmp_42ad2257-16f9-4562-812d-97f3201fcd0b {
	background-color: #FFFFFF;
}

#cmp_42ad2257-16f9-4562-812d-97f3201fcd0b h1 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_42ad2257-16f9-4562-812d-97f3201fcd0b h2 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_42ad2257-16f9-4562-812d-97f3201fcd0b h3 {
	color: #000000;
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_42ad2257-16f9-4562-812d-97f3201fcd0b p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_42ad2257-16f9-4562-812d-97f3201fcd0b .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_42ad2257-16f9-4562-812d-97f3201fcd0b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_42ad2257-16f9-4562-812d-97f3201fcd0b ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_42ad2257-16f9-4562-812d-97f3201fcd0b h2 {
	margin: 0 0 40px 0;
}
#cmp_42ad2257-16f9-4562-812d-97f3201fcd0b p {
	border-bottom: 1px solid #EEEEEE;
	padding: 0 0 25px 0;
}
/*
 * components/global/cmp_bac7ae8f-5e7b-4d61-8b20-f1c6e2d7ae2a/component.css
 */
#cmp_bac7ae8f-5e7b-4d61-8b20-f1c6e2d7ae2a.footer {
	background-color: rgb(182, 22, 19);
	color: #FFFFFF;
	font-family: Lato;
	padding: 25px 0;

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

#cmp_bac7ae8f-5e7b-4d61-8b20-f1c6e2d7ae2a.footer p {
	color: #FFFFFF;
}

#cmp_bac7ae8f-5e7b-4d61-8b20-f1c6e2d7ae2a .footer-subscribe {
	padding: 15px 0;
}

#cmp_bac7ae8f-5e7b-4d61-8b20-f1c6e2d7ae2a .footer-subscribe .btn {
	border: 1px solid #FFFFFF;
}

#cmp_bac7ae8f-5e7b-4d61-8b20-f1c6e2d7ae2a .footer-social {
	padding: 15px 0;
}

#cmp_bac7ae8f-5e7b-4d61-8b20-f1c6e2d7ae2a .footer-social a {
	display: inline-block;
	padding: 0 5px;
}

#cmp_bac7ae8f-5e7b-4d61-8b20-f1c6e2d7ae2a .footer-social svg path {
	fill: #FFFFFF;
}

#cmp_bac7ae8f-5e7b-4d61-8b20-f1c6e2d7ae2a .footer-social a:hover svg path,
#cmp_bac7ae8f-5e7b-4d61-8b20-f1c6e2d7ae2a .footer-social a:focus svg path,
#cmp_bac7ae8f-5e7b-4d61-8b20-f1c6e2d7ae2a .footer-social a:active svg path {
	fill: rgb(182, 22, 19);
}

#cmp_bac7ae8f-5e7b-4d61-8b20-f1c6e2d7ae2a .footer-contact {
	padding: 15px 0;

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

#cmp_bac7ae8f-5e7b-4d61-8b20-f1c6e2d7ae2a .footer-contact p {
	margin: 0 0 0.5em 0;
}

@media (min-width: 768px) {
	#cmp_bac7ae8f-5e7b-4d61-8b20-f1c6e2d7ae2a.footer {
		padding: 40px 0;

		-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;
	}
}

/*
 * components/global/cmp_bc8f348e-463b-445a-bc29-10509ca58096/component.css
 */
#cmp_bc8f348e-463b-445a-bc29-10509ca58096 {
	background-color: #FFFFFF;
}

#cmp_bc8f348e-463b-445a-bc29-10509ca58096 h1 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_bc8f348e-463b-445a-bc29-10509ca58096 h2 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_bc8f348e-463b-445a-bc29-10509ca58096 h3 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_bc8f348e-463b-445a-bc29-10509ca58096 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}


#cmp_bc8f348e-463b-445a-bc29-10509ca58096 .btn {
	background-color: rgb(249, 180, 2);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_bc8f348e-463b-445a-bc29-10509ca58096 .btn:hover {
	background-color: rgb(184, 233, 134);
	color: #FFFFFF;
}

#cmp_bc8f348e-463b-445a-bc29-10509ca58096 .component-rich-text-with-button__content-row,
#cmp_bc8f348e-463b-445a-bc29-10509ca58096 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_bc8f348e-463b-445a-bc29-10509ca58096 .component-rich-text-with-button__content-row,
	#cmp_bc8f348e-463b-445a-bc29-10509ca58096 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_bc8f348e-463b-445a-bc29-10509ca58096 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_bc8f348e-463b-445a-bc29-10509ca58096 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_bc8f348e-463b-445a-bc29-10509ca58096  {
	padding-top: 0;
}
/*
 * components/global/cmp_f2eb7515-cfcb-4c01-bfed-5c31173793e5/component.css
 */
#cmp_f2eb7515-cfcb-4c01-bfed-5c31173793e5 {
	border-bottom: 4px solid #E8E4E2;
	padding: 0;
}

#cmp_f2eb7515-cfcb-4c01-bfed-5c31173793e5 .navbar {
	background-color: rgb(255, 255, 255);
	border-radius: 0;
	padding: 0;

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

#cmp_f2eb7515-cfcb-4c01-bfed-5c31173793e5 .navbar a:hover,
#cmp_f2eb7515-cfcb-4c01-bfed-5c31173793e5 .navbar a:focus,
#cmp_f2eb7515-cfcb-4c01-bfed-5c31173793e5 .navbar a:active {
	color: rgb(182, 22, 19);
}

#cmp_f2eb7515-cfcb-4c01-bfed-5c31173793e5 .navbar-brand {
	color: #000000;
	font-family: Permanent Marker;
	font-size: 24px;
	margin: 0;
	max-width: 100%;
	padding: 15px;
	text-align: 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;

	-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;
}

#cmp_f2eb7515-cfcb-4c01-bfed-5c31173793e5 .navbar-brand img {
	max-width: 100%;
}

#cmp_f2eb7515-cfcb-4c01-bfed-5c31173793e5 .navbar .navbar-toggler {
	background-color: rgb(249, 180, 2);
	border-radius: 0;
	color: #FFFFFF;
	font-size: 14px;
	letter-spacing: 0.071em;
	padding: 15px;
	text-transform: uppercase;
}

#cmp_f2eb7515-cfcb-4c01-bfed-5c31173793e5 .navbar .navbar-toggler:hover,
#cmp_f2eb7515-cfcb-4c01-bfed-5c31173793e5 .navbar .navbar-toggler:focus,
#cmp_f2eb7515-cfcb-4c01-bfed-5c31173793e5 .navbar .navbar-toggler:active {
	background-color: rgb(184, 233, 134);
	color: #FFFFFF;
}

#cmp_f2eb7515-cfcb-4c01-bfed-5c31173793e5 .navbar-nav {
	background-color: rgb(249, 180, 2);
	margin: 0;
	padding-top: 15px;
	padding-bottom: 15px;

	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-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

#cmp_f2eb7515-cfcb-4c01-bfed-5c31173793e5 .navbar-nav li {
	padding-top: 10px;
	padding-bottom: 10px;
}

#cmp_f2eb7515-cfcb-4c01-bfed-5c31173793e5 .navbar-nav .nav-link {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;;
	letter-spacing: 0.071em;
	padding: 15px;
	text-align: center;
	text-transform: uppercase;
}

@media (max-width: 767px) {
	#cmp_f2eb7515-cfcb-4c01-bfed-5c31173793e5 {
		border-width: 0;
	}
	#cmp_f2eb7515-cfcb-4c01-bfed-5c31173793e5 .dropdown-menu {
		background-color: rgb(249, 180, 2);
	}
}

@media (min-width: 768px) {
	#cmp_f2eb7515-cfcb-4c01-bfed-5c31173793e5 .navbar {
		padding: 15px;
		padding-bottom: 0;

		-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;
	}
	#cmp_f2eb7515-cfcb-4c01-bfed-5c31173793e5 .navbar-brand {
		padding: 0;
		padding-bottom: 15px;
	}
	#cmp_f2eb7515-cfcb-4c01-bfed-5c31173793e5 .navbar-toggleable-sm {
		-webkit-flex-shrink: 1;
		-moz-flex-shrink: 1;
		-ms-flex-shrink: 1;
		flex-shrink: 1;

		-webkit-flex-grow: 2;
		-moz-flex-grow: 2;
		-ms-flex-grow: 2;
		flex-grow: 2;
	}
	#cmp_f2eb7515-cfcb-4c01-bfed-5c31173793e5 .navbar-nav {
		background-color: rgb(255, 255, 255);
		padding: 0;
		padding-bottom: 15px;
		
		-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;
	}
	#cmp_f2eb7515-cfcb-4c01-bfed-5c31173793e5 .navbar-nav li {
		padding: 0;
	}
	#cmp_f2eb7515-cfcb-4c01-bfed-5c31173793e5 .navbar-nav .nav-link {
		color: rgb(74, 74, 74);
	}
	#cmp_f2eb7515-cfcb-4c01-bfed-5c31173793e5 .navbar a:hover,
	#cmp_f2eb7515-cfcb-4c01-bfed-5c31173793e5 .navbar a:focus,
	#cmp_f2eb7515-cfcb-4c01-bfed-5c31173793e5 .navbar a:active {
		color: rgb(249, 180, 2);
	}
}

/*
 * components/howitworks/cmp_135455bc-cc62-4e7b-adb2-56327ed3df93/component.css
 */
#cmp_135455bc-cc62-4e7b-adb2-56327ed3df93 {
	background-color: #FFFFFF;
	padding: 0;
}

#cmp_135455bc-cc62-4e7b-adb2-56327ed3df93 .content {
	margin: 0 auto;
	padding: 25px;
}

#cmp_135455bc-cc62-4e7b-adb2-56327ed3df93 .content .cta {
	border: 5px solid rgb(249, 180, 2);
	padding: 45px;
}

#cmp_135455bc-cc62-4e7b-adb2-56327ed3df93 h1 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_135455bc-cc62-4e7b-adb2-56327ed3df93 h2 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_135455bc-cc62-4e7b-adb2-56327ed3df93 h3 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_135455bc-cc62-4e7b-adb2-56327ed3df93 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/howitworks/cmp_62f19fea-a782-4f0d-b7da-80c871c17928/component.css
 */
#cmp_62f19fea-a782-4f0d-b7da-80c871c17928 {
	background-color: #FFFFFF;
}

#cmp_62f19fea-a782-4f0d-b7da-80c871c17928 h1 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_62f19fea-a782-4f0d-b7da-80c871c17928 h2 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_62f19fea-a782-4f0d-b7da-80c871c17928 h3 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_62f19fea-a782-4f0d-b7da-80c871c17928 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_62f19fea-a782-4f0d-b7da-80c871c17928 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_62f19fea-a782-4f0d-b7da-80c871c17928 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_62f19fea-a782-4f0d-b7da-80c871c17928 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/howitworks/cmp_6ef29c3f-464d-449c-9aab-2eda7bd08b0c/component.css
 */
#cmp_6ef29c3f-464d-449c-9aab-2eda7bd08b0c {
	background-color: #E8E4E2;
}

#cmp_6ef29c3f-464d-449c-9aab-2eda7bd08b0c .content-row {
	margin: 0;

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

#cmp_6ef29c3f-464d-449c-9aab-2eda7bd08b0c .content {
	background-color: #FFFFFF;
	border: 5px solid #FFFFFF;
	margin: 15px 0;
	padding: 25px;

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

#cmp_6ef29c3f-464d-449c-9aab-2eda7bd08b0c .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_6ef29c3f-464d-449c-9aab-2eda7bd08b0c h1 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_6ef29c3f-464d-449c-9aab-2eda7bd08b0c h2 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_6ef29c3f-464d-449c-9aab-2eda7bd08b0c h3 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_6ef29c3f-464d-449c-9aab-2eda7bd08b0c p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_6ef29c3f-464d-449c-9aab-2eda7bd08b0c .content {
		margin: 15px;
	}
}
/*
 * components/index/cmp_0fd54a02-2c11-46a0-8e72-3797662cdf1b/component.css
 */
#cmp_0fd54a02-2c11-46a0-8e72-3797662cdf1b {
	background-color: #E8E4E2;
}

#cmp_0fd54a02-2c11-46a0-8e72-3797662cdf1b .content-row {
	margin: 0;

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

#cmp_0fd54a02-2c11-46a0-8e72-3797662cdf1b .content {
	background-color: #FFFFFF;
	border: 5px solid #FFFFFF;
	margin: 15px 0;
	padding: 25px;

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

#cmp_0fd54a02-2c11-46a0-8e72-3797662cdf1b .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_0fd54a02-2c11-46a0-8e72-3797662cdf1b h1 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_0fd54a02-2c11-46a0-8e72-3797662cdf1b h2 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_0fd54a02-2c11-46a0-8e72-3797662cdf1b h3 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_0fd54a02-2c11-46a0-8e72-3797662cdf1b p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_0fd54a02-2c11-46a0-8e72-3797662cdf1b .content {
		margin: 15px;
	}
}
#cmp_0fd54a02-2c11-46a0-8e72-3797662cdf1b  {
	padding-top: 0;
}
/*
 * components/index/cmp_785b2830-2834-47be-8ec6-f3a388f96130/component.css
 */
#cmp_785b2830-2834-47be-8ec6-f3a388f96130 {
	background-position: right bottom !important;
	background-repeat: no-repeat !important;
	margin: 0;
	min-height: calc(100vh - 100px);
	padding: 0;

	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
}

#cmp_785b2830-2834-47be-8ec6-f3a388f96130 .container-fluid {
	width: 100%;
}

#cmp_785b2830-2834-47be-8ec6-f3a388f96130 .hero-row {
	margin: 0;
}

#cmp_785b2830-2834-47be-8ec6-f3a388f96130 .hero-content {
	margin: 0;
	text-align: center;
}

#cmp_785b2830-2834-47be-8ec6-f3a388f96130 .hero-content h1 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_785b2830-2834-47be-8ec6-f3a388f96130 .hero-content h2 {
	color: #FFFFFF;
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_785b2830-2834-47be-8ec6-f3a388f96130 .hero-content h3 {
	color: #FFFFFF;
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_785b2830-2834-47be-8ec6-f3a388f96130 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_785b2830-2834-47be-8ec6-f3a388f96130 .hero-content .button-container {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

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

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

#cmp_785b2830-2834-47be-8ec6-f3a388f96130 .hero-content .btn {
	margin: 5px 0;
	padding: 1em;
	white-space: normal;
	width: 90%;
}

#cmp_785b2830-2834-47be-8ec6-f3a388f96130 .hero-content .btn-primary {
	background-color: rgb(249, 180, 2);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_785b2830-2834-47be-8ec6-f3a388f96130 .hero-content .btn-primary:hover,
#cmp_785b2830-2834-47be-8ec6-f3a388f96130 .hero-content .btn-primary:focus,
#cmp_785b2830-2834-47be-8ec6-f3a388f96130 .hero-content .btn-primary:active {
	background-color: rgb(184, 233, 134);
	color: #FFFFFF;
}

#cmp_785b2830-2834-47be-8ec6-f3a388f96130 .hero-content .btn-secondary {
	background-color: rgb(182, 22, 19);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_785b2830-2834-47be-8ec6-f3a388f96130 .hero-content .btn-secondary:hover,
#cmp_785b2830-2834-47be-8ec6-f3a388f96130 .hero-content .btn-secondary:focus,
#cmp_785b2830-2834-47be-8ec6-f3a388f96130 .hero-content .btn-secondary:active {
	background-color: rgb(184, 233, 134);
	color: #FFFFFF;
}

@media (min-width: 768px) {
	#cmp_785b2830-2834-47be-8ec6-f3a388f96130 {
		min-height: 40vw;
	}
	#cmp_785b2830-2834-47be-8ec6-f3a388f96130 .hero-content {
		margin: 15px;
		text-align: left;
	}
	#cmp_785b2830-2834-47be-8ec6-f3a388f96130 .hero-content .button-container {
		-webkit-justify-content: flex-start;
		-moz-justify-content: flex-start;
		-ms-justify-content: flex-start;
		justify-content: flex-start;
	}
	#cmp_785b2830-2834-47be-8ec6-f3a388f96130 .hero-content .btn {
		margin: 0 15px 0 0;
		width: 45%;
	}
}

@media (min-width: 1200px) {
	#cmp_785b2830-2834-47be-8ec6-f3a388f96130 {
		min-height: 533px;
	}
}
/*
 * components/index/cmp_ce294cd2-1ce1-4515-a768-ff8eabc8b112/component.css
 */
#cmp_ce294cd2-1ce1-4515-a768-ff8eabc8b112 {
	background-color: #E8E4E2;
}

#cmp_ce294cd2-1ce1-4515-a768-ff8eabc8b112 h1 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_ce294cd2-1ce1-4515-a768-ff8eabc8b112 h2 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_ce294cd2-1ce1-4515-a768-ff8eabc8b112 h3 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_ce294cd2-1ce1-4515-a768-ff8eabc8b112 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_ce294cd2-1ce1-4515-a768-ff8eabc8b112 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_ce294cd2-1ce1-4515-a768-ff8eabc8b112 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_ce294cd2-1ce1-4515-a768-ff8eabc8b112 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_ce294cd2-1ce1-4515-a768-ff8eabc8b112  {
	padding-bottom: 0;
}
/*
 * components/shop/listing/cmp_42c40b68-c810-4404-b0c8-ea8a89262776/component.css
 */
.shop-listing-item {
	color: #757575;
}

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

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

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

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

.product_paging {
	margin: 20px 0;

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

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

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

.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 {
	background-color: #F9F9F9;
	text-decoration: none;
}

.product_page.active a {
	color: black;
}

/*
 * components/shop/listing/cmp_83b2b0be-9bab-4876-9a77-12da3de644c1/component.css
 */
#cmp_83b2b0be-9bab-4876-9a77-12da3de644c1 {
	border-bottom: 1px solid #E1E1E1;
	padding: 20px 0 40px 0;
}

#cmp_83b2b0be-9bab-4876-9a77-12da3de644c1 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_948952d1-9b10-4b1e-8ddd-e0b4435647ff/component.css
 */
#cmp_948952d1-9b10-4b1e-8ddd-e0b4435647ff {
	padding: 20px 0;
}

#cmp_948952d1-9b10-4b1e-8ddd-e0b4435647ff ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_c4879788-8601-4b17-8c35-233fabdf5d9c/component.css
 */
#cmp_c4879788-8601-4b17-8c35-233fabdf5d9c {
	background-color: #FFFFFF;
}

#cmp_c4879788-8601-4b17-8c35-233fabdf5d9c h1 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_c4879788-8601-4b17-8c35-233fabdf5d9c h2 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_c4879788-8601-4b17-8c35-233fabdf5d9c h3 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_c4879788-8601-4b17-8c35-233fabdf5d9c p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_c4879788-8601-4b17-8c35-233fabdf5d9c .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_c4879788-8601-4b17-8c35-233fabdf5d9c ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_c4879788-8601-4b17-8c35-233fabdf5d9c ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_c4879788-8601-4b17-8c35-233fabdf5d9c  {
	padding-bottom: 20px;
}
/*
 * components/shop/product/cmp_6e101b5d-79d4-4a9e-a6b2-58b099e9885f/component.css
 */
#cmp_6e101b5d-79d4-4a9e-a6b2-58b099e9885f.shop-product-header {
	padding: 60px 0 20px 0;
}

/*
 * components/shop/product/cmp_6f92aadb-d5c3-45dd-be5d-06dfff348cbb/component.css
 */
#cmp_6f92aadb-d5c3-45dd-be5d-06dfff348cbb .shop-product select {
	width: auto;
}

#cmp_6f92aadb-d5c3-45dd-be5d-06dfff348cbb .shop-product__name {
	margin-bottom: 20px;
}

#cmp_6f92aadb-d5c3-45dd-be5d-06dfff348cbb .shop-product__price {
	margin-bottom: 20px;
}

#cmp_6f92aadb-d5c3-45dd-be5d-06dfff348cbb .shop-product__add-to-cart {
	margin-bottom: 20px;
}

#cmp_6f92aadb-d5c3-45dd-be5d-06dfff348cbb .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin-bottom: 40px;
}

#cmp_6f92aadb-d5c3-45dd-be5d-06dfff348cbb .shop-product__review-share-desktop .rating,
#cmp_6f92aadb-d5c3-45dd-be5d-06dfff348cbb .shop-product__review-share-desktop .sharing {
	padding-top: 10px;
}

#cmp_6f92aadb-d5c3-45dd-be5d-06dfff348cbb .shop-product__review-share-desktop h3,
#cmp_6f92aadb-d5c3-45dd-be5d-06dfff348cbb .shop-product__review-share-mobile h3 {
	margin: 10px 0;
}
#cmp_6f92aadb-d5c3-45dd-be5d-06dfff348cbb  {
	padding-top: 0;
}
/*
 * components/sold_out/cmp_48be24e8-08fc-4d23-a10a-81ff49152ea2/component.css
 */
#cmp_48be24e8-08fc-4d23-a10a-81ff49152ea2 img {
	max-width: 100%;
}

/*
 * components/sold_out/cmp_a4adacdb-fed2-417b-999c-5b8ae70539a0/component.css
 */
#cmp_a4adacdb-fed2-417b-999c-5b8ae70539a0 {
	background-color: #FFFFFF;
}

#cmp_a4adacdb-fed2-417b-999c-5b8ae70539a0 h1 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_a4adacdb-fed2-417b-999c-5b8ae70539a0 h2 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_a4adacdb-fed2-417b-999c-5b8ae70539a0 h3 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_a4adacdb-fed2-417b-999c-5b8ae70539a0 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}


#cmp_a4adacdb-fed2-417b-999c-5b8ae70539a0 .btn {
	background-color: rgb(249, 180, 2);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_a4adacdb-fed2-417b-999c-5b8ae70539a0 .btn:hover {
	background-color: rgb(184, 233, 134);
	color: #FFFFFF;
}

#cmp_a4adacdb-fed2-417b-999c-5b8ae70539a0 .component-rich-text-with-button__content-row,
#cmp_a4adacdb-fed2-417b-999c-5b8ae70539a0 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_a4adacdb-fed2-417b-999c-5b8ae70539a0 .component-rich-text-with-button__content-row,
	#cmp_a4adacdb-fed2-417b-999c-5b8ae70539a0 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_a4adacdb-fed2-417b-999c-5b8ae70539a0 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_a4adacdb-fed2-417b-999c-5b8ae70539a0 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_a4adacdb-fed2-417b-999c-5b8ae70539a0  {
	padding-top: 0;
}
/*
 * components/subscribe/cmp_2c28414b-067d-4e99-a50c-67d3d3413c7e/component.css
 */
#cmp_2c28414b-067d-4e99-a50c-67d3d3413c7e {
	background-color: #E8E4E2;
}

#cmp_2c28414b-067d-4e99-a50c-67d3d3413c7e h1 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_2c28414b-067d-4e99-a50c-67d3d3413c7e h2 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_2c28414b-067d-4e99-a50c-67d3d3413c7e h3 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_2c28414b-067d-4e99-a50c-67d3d3413c7e p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_2c28414b-067d-4e99-a50c-67d3d3413c7e .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_2c28414b-067d-4e99-a50c-67d3d3413c7e ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_2c28414b-067d-4e99-a50c-67d3d3413c7e ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_2c28414b-067d-4e99-a50c-67d3d3413c7e  {
	padding-bottom: 0;
}
/*
 * components/subscribe/cmp_5fc872e2-3216-4ebc-af66-b49b38d6b3c9/component.css
 */
#cmp_5fc872e2-3216-4ebc-af66-b49b38d6b3c9 {
	background-color: #E8E4E2;
}

#cmp_5fc872e2-3216-4ebc-af66-b49b38d6b3c9 h3 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_5fc872e2-3216-4ebc-af66-b49b38d6b3c9 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_5fc872e2-3216-4ebc-af66-b49b38d6b3c9 .sf-item {
	background-color: #FFFFFF;
}
#cmp_5fc872e2-3216-4ebc-af66-b49b38d6b3c9  {
	padding-top: 0;
}
/*
 * components/subscribe/cmp_62da7e31-5087-4cec-a976-098df52237f9/component.css
 */
#cmp_62da7e31-5087-4cec-a976-098df52237f9 {
	background-color: #E8E4E2;
	padding-bottom: 0;
}

#cmp_62da7e31-5087-4cec-a976-098df52237f9 .progress-bar-container {
	position: relative;
}

#cmp_62da7e31-5087-4cec-a976-098df52237f9 .progress-bar-filler {
	background: #FFFFFF;
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_62da7e31-5087-4cec-a976-098df52237f9 .progress-bar {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-align-items: flex-start;
	-moz-align-items: flex-start;
	-ms-align-items: flex-start;
	align-items: flex-start;

	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
}

#cmp_62da7e31-5087-4cec-a976-098df52237f9 .progress-bar .step {
	color: #757575;

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

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

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

	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
}

#cmp_62da7e31-5087-4cec-a976-098df52237f9 .progress-bar .step .point {
	background-color: #E8E4E2;
	border: 4px solid #FFFFFF;
	border-radius: 10px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_62da7e31-5087-4cec-a976-098df52237f9 .progress-bar .step.active .point {
	background-color: rgb(249, 180, 2);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_62da7e31-5087-4cec-a976-098df52237f9 .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe_flow/survey_step/cmp_05708c33-a248-4a7e-8435-dd3f97b418d6/component.css
 */
#cmp_05708c33-a248-4a7e-8435-dd3f97b418d6 {
	background-color: #E8E4E2;
}

#cmp_05708c33-a248-4a7e-8435-dd3f97b418d6 h3 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_05708c33-a248-4a7e-8435-dd3f97b418d6 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_05708c33-a248-4a7e-8435-dd3f97b418d6  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_09020835-889b-44fd-9225-735d8f9fad10/component.css
 */
#cmp_09020835-889b-44fd-9225-735d8f9fad10 {
	background-color: #E8E4E2;
	padding-bottom: 0;
}

#cmp_09020835-889b-44fd-9225-735d8f9fad10 h1 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_09020835-889b-44fd-9225-735d8f9fad10 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}
#cmp_09020835-889b-44fd-9225-735d8f9fad10  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_1251ea37-56c6-4137-b114-8b9b18d35e90/component.css
 */
#cmp_1251ea37-56c6-4137-b114-8b9b18d35e90 {
	background-color: #FFFFFF;
}

#cmp_1251ea37-56c6-4137-b114-8b9b18d35e90 h1 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_1251ea37-56c6-4137-b114-8b9b18d35e90 h2 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_1251ea37-56c6-4137-b114-8b9b18d35e90 h3 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_1251ea37-56c6-4137-b114-8b9b18d35e90 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_1251ea37-56c6-4137-b114-8b9b18d35e90 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_1251ea37-56c6-4137-b114-8b9b18d35e90 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_1251ea37-56c6-4137-b114-8b9b18d35e90 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_1251ea37-56c6-4137-b114-8b9b18d35e90  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_8461f320-1906-401a-87e9-3009d92bd693/component.css
 */
#cmp_8461f320-1906-401a-87e9-3009d92bd693 {
	background-color: #E8E4E2;
	padding-bottom: 0;
}

#cmp_8461f320-1906-401a-87e9-3009d92bd693 .progress-bar-container {
	position: relative;
}

#cmp_8461f320-1906-401a-87e9-3009d92bd693 .progress-bar-filler {
	background: #FFFFFF;
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_8461f320-1906-401a-87e9-3009d92bd693 .progress-bar {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-align-items: flex-start;
	-moz-align-items: flex-start;
	-ms-align-items: flex-start;
	align-items: flex-start;

	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
}

#cmp_8461f320-1906-401a-87e9-3009d92bd693 .progress-bar .step {
	color: #757575;

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

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

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

	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
}

#cmp_8461f320-1906-401a-87e9-3009d92bd693 .progress-bar .step .point {
	background-color: #E8E4E2;
	border: 4px solid #FFFFFF;
	border-radius: 10px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_8461f320-1906-401a-87e9-3009d92bd693 .progress-bar .step.active .point {
	background-color: rgb(249, 180, 2);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_8461f320-1906-401a-87e9-3009d92bd693 .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe_flow/survey_step/cmp_908e35f5-e19a-4260-8508-b7e9cbe397ae/component.css
 */
#cmp_908e35f5-e19a-4260-8508-b7e9cbe397ae {
	background-color: #FFFFFF;
}

#cmp_908e35f5-e19a-4260-8508-b7e9cbe397ae .content-row {
	margin: 0;

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

#cmp_908e35f5-e19a-4260-8508-b7e9cbe397ae .content {
	background-color: #FFFFFF;
	border: 5px solid #FFFFFF;
	margin: 15px 0;
	padding: 25px;

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

#cmp_908e35f5-e19a-4260-8508-b7e9cbe397ae .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_908e35f5-e19a-4260-8508-b7e9cbe397ae h1 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_908e35f5-e19a-4260-8508-b7e9cbe397ae h2 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_908e35f5-e19a-4260-8508-b7e9cbe397ae h3 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_908e35f5-e19a-4260-8508-b7e9cbe397ae p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_908e35f5-e19a-4260-8508-b7e9cbe397ae .content {
		margin: 15px;
	}
}
#cmp_908e35f5-e19a-4260-8508-b7e9cbe397ae  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/terms_step/cmp_6629a7ea-3425-4918-b5e4-893bdfa6912d/component.css
 */
#cmp_6629a7ea-3425-4918-b5e4-893bdfa6912d {
	background-color: #E8E4E2;
	padding-bottom: 0;
}

#cmp_6629a7ea-3425-4918-b5e4-893bdfa6912d h1 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_6629a7ea-3425-4918-b5e4-893bdfa6912d p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}
#cmp_6629a7ea-3425-4918-b5e4-893bdfa6912d  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/terms_step/cmp_67f97e05-4699-497e-888b-7be5258b08ad/component.css
 */
#cmp_67f97e05-4699-497e-888b-7be5258b08ad {
	background-color: #E8E4E2;
}

#cmp_67f97e05-4699-497e-888b-7be5258b08ad h2 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_67f97e05-4699-497e-888b-7be5258b08ad h3 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_67f97e05-4699-497e-888b-7be5258b08ad p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_67f97e05-4699-497e-888b-7be5258b08ad .sf-item {
	background-color: #FFFFFF;
}
#cmp_67f97e05-4699-497e-888b-7be5258b08ad  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/terms_step/cmp_fef50e0c-1908-4768-a906-2d019624ac76/component.css
 */
#cmp_fef50e0c-1908-4768-a906-2d019624ac76 {
	background-color: #E8E4E2;
	padding-bottom: 0;
}

#cmp_fef50e0c-1908-4768-a906-2d019624ac76 .progress-bar-container {
	position: relative;
}

#cmp_fef50e0c-1908-4768-a906-2d019624ac76 .progress-bar-filler {
	background: #FFFFFF;
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_fef50e0c-1908-4768-a906-2d019624ac76 .progress-bar {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-align-items: flex-start;
	-moz-align-items: flex-start;
	-ms-align-items: flex-start;
	align-items: flex-start;

	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
}

#cmp_fef50e0c-1908-4768-a906-2d019624ac76 .progress-bar .step {
	color: #757575;

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

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

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

	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
}

#cmp_fef50e0c-1908-4768-a906-2d019624ac76 .progress-bar .step .point {
	background-color: #E8E4E2;
	border: 4px solid #FFFFFF;
	border-radius: 10px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_fef50e0c-1908-4768-a906-2d019624ac76 .progress-bar .step.active .point {
	background-color: rgb(249, 180, 2);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_fef50e0c-1908-4768-a906-2d019624ac76 .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe_flow/variant_step/cmp_5815f5fc-d686-4560-b15f-b8518b6146fc/component.css
 */
#cmp_5815f5fc-d686-4560-b15f-b8518b6146fc {
	background-color: #E8E4E2;
	padding-bottom: 0;
}

#cmp_5815f5fc-d686-4560-b15f-b8518b6146fc .progress-bar-container {
	position: relative;
}

#cmp_5815f5fc-d686-4560-b15f-b8518b6146fc .progress-bar-filler {
	background: #FFFFFF;
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_5815f5fc-d686-4560-b15f-b8518b6146fc .progress-bar {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-align-items: flex-start;
	-moz-align-items: flex-start;
	-ms-align-items: flex-start;
	align-items: flex-start;

	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
}

#cmp_5815f5fc-d686-4560-b15f-b8518b6146fc .progress-bar .step {
	color: #757575;

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

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

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

	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
}

#cmp_5815f5fc-d686-4560-b15f-b8518b6146fc .progress-bar .step .point {
	background-color: #E8E4E2;
	border: 4px solid #FFFFFF;
	border-radius: 10px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_5815f5fc-d686-4560-b15f-b8518b6146fc .progress-bar .step.active .point {
	background-color: rgb(249, 180, 2);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_5815f5fc-d686-4560-b15f-b8518b6146fc .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe_flow/variant_step/cmp_94c6151b-6f4d-4ec4-8552-ef079d10b396/component.css
 */
#cmp_94c6151b-6f4d-4ec4-8552-ef079d10b396 {
	background-color: #E8E4E2;
	padding-bottom: 0;
}

#cmp_94c6151b-6f4d-4ec4-8552-ef079d10b396 h1 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_94c6151b-6f4d-4ec4-8552-ef079d10b396 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}
#cmp_94c6151b-6f4d-4ec4-8552-ef079d10b396  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_c6fda08c-afc0-4c7e-86b4-358a72e60feb/component.css
 */
#cmp_c6fda08c-afc0-4c7e-86b4-358a72e60feb {
	background-color: #E8E4E2;
}

#cmp_c6fda08c-afc0-4c7e-86b4-358a72e60feb h3 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_c6fda08c-afc0-4c7e-86b4-358a72e60feb p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_c6fda08c-afc0-4c7e-86b4-358a72e60feb .sf-item {
	background-color: #FFFFFF;
}
#cmp_c6fda08c-afc0-4c7e-86b4-358a72e60feb  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_e787f41a-e46d-4bc3-a643-ba0bf480411a/component.css
 */
#cmp_e787f41a-e46d-4bc3-a643-ba0bf480411a {
	background-color: #FFFFFF;
}

#cmp_e787f41a-e46d-4bc3-a643-ba0bf480411a .content-row {
	margin: 0;

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

#cmp_e787f41a-e46d-4bc3-a643-ba0bf480411a .content {
	background-color: #FFFFFF;
	border: 5px solid #FFFFFF;
	margin: 15px 0;
	padding: 25px;

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

#cmp_e787f41a-e46d-4bc3-a643-ba0bf480411a .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_e787f41a-e46d-4bc3-a643-ba0bf480411a h1 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_e787f41a-e46d-4bc3-a643-ba0bf480411a h2 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_e787f41a-e46d-4bc3-a643-ba0bf480411a h3 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_e787f41a-e46d-4bc3-a643-ba0bf480411a p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_e787f41a-e46d-4bc3-a643-ba0bf480411a .content {
		margin: 15px;
	}
}
#cmp_e787f41a-e46d-4bc3-a643-ba0bf480411a  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_f6ba206f-75f5-4560-8851-38af97e1db87/component.css
 */
#cmp_f6ba206f-75f5-4560-8851-38af97e1db87 {
	background-color: #FFFFFF;
}

#cmp_f6ba206f-75f5-4560-8851-38af97e1db87 h1 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_f6ba206f-75f5-4560-8851-38af97e1db87 h2 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_f6ba206f-75f5-4560-8851-38af97e1db87 h3 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_f6ba206f-75f5-4560-8851-38af97e1db87 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_f6ba206f-75f5-4560-8851-38af97e1db87 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_f6ba206f-75f5-4560-8851-38af97e1db87 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_f6ba206f-75f5-4560-8851-38af97e1db87 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_f6ba206f-75f5-4560-8851-38af97e1db87  {
	padding-bottom: 0;
}
/*
 * components/view-cart/cmp_4bb6dc94-0ca5-41fc-8e4f-a09b28d6a472/component.css
 */
#cmp_4bb6dc94-0ca5-41fc-8e4f-a09b28d6a472 {
	padding: 15px 15px 100px 15px;
}

#cmp_4bb6dc94-0ca5-41fc-8e4f-a09b28d6a472 .cart-thead {
	border-bottom: 1px solid #E1E1E1;
	padding: 10px 0;
}

#cmp_4bb6dc94-0ca5-41fc-8e4f-a09b28d6a472 .cart-thead h3 {
	text-transform: uppercase;
}

#cmp_4bb6dc94-0ca5-41fc-8e4f-a09b28d6a472 .cart-item {
	border: 1px solid #E1E1E1;
	padding: 25px 0;
	position: relative;
}

#cmp_4bb6dc94-0ca5-41fc-8e4f-a09b28d6a472 .product-main {
	margin: 0 0 15px 0;
}

#cmp_4bb6dc94-0ca5-41fc-8e4f-a09b28d6a472 .product-label p {
	margin: 0;
}

#cmp_4bb6dc94-0ca5-41fc-8e4f-a09b28d6a472 .product-label .info {
	color: rgb(249, 180, 2);
	text-align: right;
	text-transform: uppercase;
}

#cmp_4bb6dc94-0ca5-41fc-8e4f-a09b28d6a472 .product-label .meta {
	color: #757575;
	font-size: 14px;
}

#cmp_4bb6dc94-0ca5-41fc-8e4f-a09b28d6a472 .product-rem-btn {
	position: absolute;
	right: 1%;
	top: 1%;
}

#cmp_4bb6dc94-0ca5-41fc-8e4f-a09b28d6a472 figure {
	margin: 0 0 15px 0;
}

#cmp_4bb6dc94-0ca5-41fc-8e4f-a09b28d6a472 .cart-subtotal {
	margin: 50px 0 0 0;
}

#cmp_4bb6dc94-0ca5-41fc-8e4f-a09b28d6a472 .cart-subtotal h2 {
	margin: 0 0 15px 0;
}

#cmp_4bb6dc94-0ca5-41fc-8e4f-a09b28d6a472 .cart-subtotal h3 {
	margin: 0 0 25px 0;
	text-transform: uppercase;
}

#cmp_4bb6dc94-0ca5-41fc-8e4f-a09b28d6a472 .cart-subtotal p {
	margin: 0 0 25px 0;
}

@media (min-width: 768px) {
	#cmp_4bb6dc94-0ca5-41fc-8e4f-a09b28d6a472 .cart-item {
		border-width: 0 0 1px 0;
	}
	#cmp_4bb6dc94-0ca5-41fc-8e4f-a09b28d6a472 .product-rem-btn {
		top: 40%;
	}
	#cmp_4bb6dc94-0ca5-41fc-8e4f-a09b28d6a472 figure {
		margin: 0;
	}
}

/*
 * components/view-cart/cmp_b4eb5426-2b5d-432d-984e-6f9ab2a06b37/component.css
 */
#cmp_b4eb5426-2b5d-432d-984e-6f9ab2a06b37 {
	background-color: #FFFFFF;
}

#cmp_b4eb5426-2b5d-432d-984e-6f9ab2a06b37 h1 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_b4eb5426-2b5d-432d-984e-6f9ab2a06b37 h2 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_b4eb5426-2b5d-432d-984e-6f9ab2a06b37 h3 {
	color: rgb(249, 180, 2);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_b4eb5426-2b5d-432d-984e-6f9ab2a06b37 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_b4eb5426-2b5d-432d-984e-6f9ab2a06b37 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_b4eb5426-2b5d-432d-984e-6f9ab2a06b37 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_b4eb5426-2b5d-432d-984e-6f9ab2a06b37 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}