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

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

h1 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 48px;
	letter-spacing: 1px;
	line-height: 1;
	margin: 0 0 25px 0;
}

h2 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 32px;
	margin: 0 0 25px 0;
}

h3 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 24px;
	margin: 0 0 25px 0;
}

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

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

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

/* 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: #E27A54;
}

.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 #E27A54;
	color: #E27A54;
	padding: 0.6em 1.8em;
}

.btn-small:hover,
.btn-small:focus,
.btn-small:active,
.btn-small:active:focus {
	background-color: #E27A54;
	border-color: #E27A54;
}

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

.btn-primary {
	background-color: #E27A54;
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
	letter-spacing: 0.167em;
}

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

.btn-secondary {
	background-color: #EF9521;
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
	letter-spacing: 0.167em;
}

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

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

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

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

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

.checkout_content #checkout_button {
	background-color: #E27A54;
	border: none;
	color: #FFFFFF;
	font-family: Open Sans;
	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: #EF9521;
	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: #E27A54;
}

.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 #E27A54;
	color: #E27A54;
	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: #EF9521;
	border-color: #EF9521;
	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_70c3573f-9e76-49f0-a4f8-086c39db9d61/component.css
 */
#cmp_70c3573f-9e76-49f0-a4f8-086c39db9d61 img {
	max-width: 100%;
}

/*
 * components/about/cmp_86897834-2986-44fc-b13a-25161b190760/component.css
 */
#cmp_86897834-2986-44fc-b13a-25161b190760 {
	background-color: #D5CEC2;
}

#cmp_86897834-2986-44fc-b13a-25161b190760 h1 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_86897834-2986-44fc-b13a-25161b190760 h2 {
	color: #FFFFFF;
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_86897834-2986-44fc-b13a-25161b190760 h3 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_86897834-2986-44fc-b13a-25161b190760 p {
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}


#cmp_86897834-2986-44fc-b13a-25161b190760 .btn {
	background-color: #E27A54;
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_86897834-2986-44fc-b13a-25161b190760 .btn:hover {
	background-color: #EF9521;
	color: #FFFFFF;
}

#cmp_86897834-2986-44fc-b13a-25161b190760 .component-rich-text-with-button__content-row,
#cmp_86897834-2986-44fc-b13a-25161b190760 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_86897834-2986-44fc-b13a-25161b190760 .component-rich-text-with-button__content-row,
	#cmp_86897834-2986-44fc-b13a-25161b190760 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}
/*
 * components/about/cmp_9ff0d5ae-e559-41af-a790-2550c61575c1/component.css
 */
#cmp_9ff0d5ae-e559-41af-a790-2550c61575c1 {
	background-color: #D5CEC2;
}

#cmp_9ff0d5ae-e559-41af-a790-2550c61575c1 h1 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_9ff0d5ae-e559-41af-a790-2550c61575c1 h2 {
	color: #FFFFFF;
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_9ff0d5ae-e559-41af-a790-2550c61575c1 h3 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_9ff0d5ae-e559-41af-a790-2550c61575c1 p {
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_9ff0d5ae-e559-41af-a790-2550c61575c1 .content {
		margin: 0 auto;
		width: 80%;
	}
}
/*
 * components/about/cmp_d9685970-ed50-4e5e-9144-97059d5c2595/component.css
 */
#cmp_d9685970-ed50-4e5e-9144-97059d5c2595 {
	background-color: #FFFFFF;
}

#cmp_d9685970-ed50-4e5e-9144-97059d5c2595 h1 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_d9685970-ed50-4e5e-9144-97059d5c2595 h2 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_d9685970-ed50-4e5e-9144-97059d5c2595 h3 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_d9685970-ed50-4e5e-9144-97059d5c2595 p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_d9685970-ed50-4e5e-9144-97059d5c2595 .content {
		margin: 0 auto;
		width: 80%;
	}
}
/*
 * components/checkout/cmp_58cd82ea-c665-4912-8c3c-9981fcdbbf75/component.css
 */
#cmp_58cd82ea-c665-4912-8c3c-9981fcdbbf75 .checkout_content {
	overflow: auto;
}

#cmp_58cd82ea-c665-4912-8c3c-9981fcdbbf75 .checkout_content section {
	border-color: #F5F5F5;
}

#cmp_58cd82ea-c665-4912-8c3c-9981fcdbbf75 .cart_listing table {
	border-color: #F5F5F5;
}

/*
 * components/customer/account/cmp_03aa2a3c-cc3d-43bc-a2e8-4a32cde12058/component.css
 */

/*
 * components/customer/edit/cmp_6c01199e-8508-4768-86a2-9633694b884b/component.css
 */

/*
 * components/customer/forgot_password/cmp_63d48c82-dd47-4cd1-bf71-a3d9a23b59a9/component.css
 */
#cmp_63d48c82-dd47-4cd1-bf71-a3d9a23b59a9 {
	padding: 0 0 120px 0;
}
/*
 * components/customer/forgot_password/cmp_8fc9c677-8b43-4b97-a427-bb2bc46b61f4/component.css
 */
#cmp_8fc9c677-8b43-4b97-a427-bb2bc46b61f4 {
	background-color: #FFFFFF;
}

#cmp_8fc9c677-8b43-4b97-a427-bb2bc46b61f4 h1 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_8fc9c677-8b43-4b97-a427-bb2bc46b61f4 h2 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_8fc9c677-8b43-4b97-a427-bb2bc46b61f4 h3 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_8fc9c677-8b43-4b97-a427-bb2bc46b61f4 p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_8fc9c677-8b43-4b97-a427-bb2bc46b61f4 .content {
		margin: 0 auto;
		width: 80%;
	}
}
/*
 * components/customer/login/cmp_23663309-1afc-4698-9cf3-76a1a82cde42/component.css
 */
#cmp_23663309-1afc-4698-9cf3-76a1a82cde42 {
	padding: 0 0 120px 0;
}
/*
 * components/customer/login/cmp_f2d5d609-c93f-4bd4-9480-10d15228e9d3/component.css
 */
#cmp_f2d5d609-c93f-4bd4-9480-10d15228e9d3 {
	background-color: #FFFFFF;
}

#cmp_f2d5d609-c93f-4bd4-9480-10d15228e9d3 h1 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_f2d5d609-c93f-4bd4-9480-10d15228e9d3 h2 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_f2d5d609-c93f-4bd4-9480-10d15228e9d3 h3 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_f2d5d609-c93f-4bd4-9480-10d15228e9d3 p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_f2d5d609-c93f-4bd4-9480-10d15228e9d3 .content {
		margin: 0 auto;
		width: 80%;
	}
}
/*
 * components/customer/password_reset/cmp_265729ab-128b-41a5-8696-5944cbb21b30/component.css
 */
#cmp_265729ab-128b-41a5-8696-5944cbb21b30 {
	padding: 0 0 120px 0;
}
/*
 * components/customer/password_reset/cmp_e9489825-73c5-4ea2-9704-a862731b8dbe/component.css
 */
#cmp_e9489825-73c5-4ea2-9704-a862731b8dbe {
	background-color: #FFFFFF;
}

#cmp_e9489825-73c5-4ea2-9704-a862731b8dbe h1 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_e9489825-73c5-4ea2-9704-a862731b8dbe h2 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_e9489825-73c5-4ea2-9704-a862731b8dbe h3 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_e9489825-73c5-4ea2-9704-a862731b8dbe p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_e9489825-73c5-4ea2-9704-a862731b8dbe .content {
		margin: 0 auto;
		width: 80%;
	}
}
/*
 * components/customer/thank_you/cmp_88162afa-70ae-4226-8537-faa9f5f70cf8/component.css
 */

/*
 * components/faq/cmp_12aa5577-755a-4f3b-91ce-07b24192dd78/component.css
 */
#cmp_12aa5577-755a-4f3b-91ce-07b24192dd78 {
	background-color: #FFFFFF;
}

#cmp_12aa5577-755a-4f3b-91ce-07b24192dd78 h1 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_12aa5577-755a-4f3b-91ce-07b24192dd78 h2 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_12aa5577-755a-4f3b-91ce-07b24192dd78 h3 {
	color: #000000;
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_12aa5577-755a-4f3b-91ce-07b24192dd78 p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_12aa5577-755a-4f3b-91ce-07b24192dd78 .content {
		margin: 0 auto;
		width: 80%;
	}
}
#cmp_12aa5577-755a-4f3b-91ce-07b24192dd78 h2 {
	margin: 0 0 40px 0;
}
#cmp_12aa5577-755a-4f3b-91ce-07b24192dd78 p {
	border-bottom: 1px solid #EEEEEE;
	padding: 0 0 25px 0;
}
/*
 * components/faq/cmp_1d771232-4ef9-42c7-aac8-6a36f1ce22fa/component.css
 */
#cmp_1d771232-4ef9-42c7-aac8-6a36f1ce22fa {
	background-color: #D5CEC2;
}

#cmp_1d771232-4ef9-42c7-aac8-6a36f1ce22fa h1 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_1d771232-4ef9-42c7-aac8-6a36f1ce22fa h2 {
	color: #FFFFFF;
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_1d771232-4ef9-42c7-aac8-6a36f1ce22fa h3 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_1d771232-4ef9-42c7-aac8-6a36f1ce22fa p {
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}


#cmp_1d771232-4ef9-42c7-aac8-6a36f1ce22fa .btn {
	background-color: #E27A54;
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_1d771232-4ef9-42c7-aac8-6a36f1ce22fa .btn:hover {
	background-color: #EF9521;
	color: #FFFFFF;
}

#cmp_1d771232-4ef9-42c7-aac8-6a36f1ce22fa .component-rich-text-with-button__content-row,
#cmp_1d771232-4ef9-42c7-aac8-6a36f1ce22fa .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_1d771232-4ef9-42c7-aac8-6a36f1ce22fa .component-rich-text-with-button__content-row,
	#cmp_1d771232-4ef9-42c7-aac8-6a36f1ce22fa .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}
/*
 * components/faq/cmp_8905efdb-428b-4467-a100-21da1548d946/component.css
 */
#cmp_8905efdb-428b-4467-a100-21da1548d946 {
	background-color: #FFFFFF;
}

#cmp_8905efdb-428b-4467-a100-21da1548d946 h1 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_8905efdb-428b-4467-a100-21da1548d946 h2 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_8905efdb-428b-4467-a100-21da1548d946 h3 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_8905efdb-428b-4467-a100-21da1548d946 p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_8905efdb-428b-4467-a100-21da1548d946 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_8905efdb-428b-4467-a100-21da1548d946 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_8905efdb-428b-4467-a100-21da1548d946 ul {
	list-style: disc;
	list-style-position: inside;
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

/*
 * components/faq/cmp_8b802af8-0302-4fb1-a43f-50f7f6ab4c91/component.css
 */
#cmp_8b802af8-0302-4fb1-a43f-50f7f6ab4c91 img {
	max-width: 100%;
}

/*
 * components/global/cmp_24018be6-9c08-43c1-8331-16abea89d400/component.css
 */
#cmp_24018be6-9c08-43c1-8331-16abea89d400.footer {
	background-color: #E7E6E5;
	color: #7B7770;
	font-family: Open Sans;
	padding: 25px 0;

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

#cmp_24018be6-9c08-43c1-8331-16abea89d400.footer p {
	color: #7B7770;
}

#cmp_24018be6-9c08-43c1-8331-16abea89d400 .footer-subscribe {
	padding: 15px 0;
}

#cmp_24018be6-9c08-43c1-8331-16abea89d400 .footer-subscribe .btn {
	border: 1px solid #FFFFFF;
}

#cmp_24018be6-9c08-43c1-8331-16abea89d400 .footer-social {
	padding: 15px 0;
}

#cmp_24018be6-9c08-43c1-8331-16abea89d400 .footer-social a {
	display: inline-block;
	padding: 0 5px;
}

#cmp_24018be6-9c08-43c1-8331-16abea89d400 .footer-social svg path {
	fill: #7B7770;
}

#cmp_24018be6-9c08-43c1-8331-16abea89d400 .footer-social a:hover svg path,
#cmp_24018be6-9c08-43c1-8331-16abea89d400 .footer-social a:focus svg path,
#cmp_24018be6-9c08-43c1-8331-16abea89d400 .footer-social a:active svg path {
	fill: #EF9521;
}

#cmp_24018be6-9c08-43c1-8331-16abea89d400 .footer-contact {
	padding: 15px 0;

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

#cmp_24018be6-9c08-43c1-8331-16abea89d400 .footer-contact p {
	margin: 0 0 0.5em 0;
}

@media (min-width: 768px) {
	#cmp_24018be6-9c08-43c1-8331-16abea89d400.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_bdaf1034-d54d-4f8b-b5b0-2c3d8bf3f85c/component.css
 */
#cmp_bdaf1034-d54d-4f8b-b5b0-2c3d8bf3f85c {
	border-bottom: 4px solid #E7E6E5;
	padding: 0;
}

#cmp_bdaf1034-d54d-4f8b-b5b0-2c3d8bf3f85c .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_bdaf1034-d54d-4f8b-b5b0-2c3d8bf3f85c .navbar a:hover,
#cmp_bdaf1034-d54d-4f8b-b5b0-2c3d8bf3f85c .navbar a:focus,
#cmp_bdaf1034-d54d-4f8b-b5b0-2c3d8bf3f85c .navbar a:active {
	color: #EF9521;
}

#cmp_bdaf1034-d54d-4f8b-b5b0-2c3d8bf3f85c .navbar-brand {
	color: #000000;
	font-family: Playfair Display;
	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_bdaf1034-d54d-4f8b-b5b0-2c3d8bf3f85c .navbar-brand img {
	max-width: 100%;
}

#cmp_bdaf1034-d54d-4f8b-b5b0-2c3d8bf3f85c .navbar .navbar-toggler {
	background-color: #E27A54;
	border-radius: 0;
	color: #FFFFFF;
	font-size: 14px;
	letter-spacing: 0.071em;
	padding: 15px;
	text-transform: uppercase;
}

#cmp_bdaf1034-d54d-4f8b-b5b0-2c3d8bf3f85c .navbar .navbar-toggler:hover,
#cmp_bdaf1034-d54d-4f8b-b5b0-2c3d8bf3f85c .navbar .navbar-toggler:focus,
#cmp_bdaf1034-d54d-4f8b-b5b0-2c3d8bf3f85c .navbar .navbar-toggler:active {
	background-color: #EF9521;
	color: #FFFFFF;
}

#cmp_bdaf1034-d54d-4f8b-b5b0-2c3d8bf3f85c .navbar-nav {
	background-color: #E27A54;
	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_bdaf1034-d54d-4f8b-b5b0-2c3d8bf3f85c .navbar-nav li {
	padding-top: 10px;
	padding-bottom: 10px;
}

#cmp_bdaf1034-d54d-4f8b-b5b0-2c3d8bf3f85c .navbar-nav .nav-link {
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;;
	padding: 15px;
	text-align: center;
}

@media (max-width: 767px) {
	#cmp_bdaf1034-d54d-4f8b-b5b0-2c3d8bf3f85c {
		border-width: 0;
	}
	#cmp_bdaf1034-d54d-4f8b-b5b0-2c3d8bf3f85c .dropdown-menu {
		background-color: #E27A54;
	}
}

@media (min-width: 768px) {
	#cmp_bdaf1034-d54d-4f8b-b5b0-2c3d8bf3f85c .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_bdaf1034-d54d-4f8b-b5b0-2c3d8bf3f85c .navbar-brand {
		padding: 0;
		padding-bottom: 15px;
	}
	#cmp_bdaf1034-d54d-4f8b-b5b0-2c3d8bf3f85c .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_bdaf1034-d54d-4f8b-b5b0-2c3d8bf3f85c .navbar-nav {
		background-color: #FFFFFF;
		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_bdaf1034-d54d-4f8b-b5b0-2c3d8bf3f85c .navbar-nav li {
		padding: 0;
	}
	#cmp_bdaf1034-d54d-4f8b-b5b0-2c3d8bf3f85c .navbar-nav .nav-link {
		color: #7B7770;
	}
	#cmp_bdaf1034-d54d-4f8b-b5b0-2c3d8bf3f85c .navbar a:hover,
	#cmp_bdaf1034-d54d-4f8b-b5b0-2c3d8bf3f85c .navbar a:focus,
	#cmp_bdaf1034-d54d-4f8b-b5b0-2c3d8bf3f85c .navbar a:active {
		color: #E27A54;
	}
}

#cmp_bdaf1034-d54d-4f8b-b5b0-2c3d8bf3f85c ol {
    list-style: decimal;
    list-style-position: inside;
    color: ;
    font-family: ;
    font-size: ;
}

#cmp_bdaf1034-d54d-4f8b-b5b0-2c3d8bf3f85c ul {
    list-style: none;
    list-style-position: inside;
    color: ;
    font-family: ;
    font-size: ;
}

/*
 * components/global/cmp_ef9b8e95-0c78-4880-ae8d-f7ef9b3ac437/component.css
 */
#cmp_ef9b8e95-0c78-4880-ae8d-f7ef9b3ac437 {
	background-color: #FFFFFF;
}

#cmp_ef9b8e95-0c78-4880-ae8d-f7ef9b3ac437 h1 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_ef9b8e95-0c78-4880-ae8d-f7ef9b3ac437 h2 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_ef9b8e95-0c78-4880-ae8d-f7ef9b3ac437 h3 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_ef9b8e95-0c78-4880-ae8d-f7ef9b3ac437 p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}


#cmp_ef9b8e95-0c78-4880-ae8d-f7ef9b3ac437 .btn {
	background-color: #E27A54;
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_ef9b8e95-0c78-4880-ae8d-f7ef9b3ac437 .btn:hover {
	background-color: #EF9521;
	color: #FFFFFF;
}

#cmp_ef9b8e95-0c78-4880-ae8d-f7ef9b3ac437 .component-rich-text-with-button__content-row,
#cmp_ef9b8e95-0c78-4880-ae8d-f7ef9b3ac437 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_ef9b8e95-0c78-4880-ae8d-f7ef9b3ac437 .component-rich-text-with-button__content-row,
	#cmp_ef9b8e95-0c78-4880-ae8d-f7ef9b3ac437 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}
#cmp_ef9b8e95-0c78-4880-ae8d-f7ef9b3ac437  {
	padding-top: 0;
}
/*
 * components/howitworks/cmp_0665d82f-cb98-4cc2-9c30-b3731063e0d0/component.css
 */
#cmp_0665d82f-cb98-4cc2-9c30-b3731063e0d0 {
	background-color: #FFFFFF;
	padding: 0;
}

#cmp_0665d82f-cb98-4cc2-9c30-b3731063e0d0 .content {
	margin: 0 auto;
	padding: 25px;
}

#cmp_0665d82f-cb98-4cc2-9c30-b3731063e0d0 .content .cta {
	border: 5px solid #E27A54;
	padding: 45px;
}

#cmp_0665d82f-cb98-4cc2-9c30-b3731063e0d0 h1 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_0665d82f-cb98-4cc2-9c30-b3731063e0d0 h2 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_0665d82f-cb98-4cc2-9c30-b3731063e0d0 h3 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_0665d82f-cb98-4cc2-9c30-b3731063e0d0 p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

/*
 * components/howitworks/cmp_107e2a21-5c5a-47a1-86d0-323f49e19961/component.css
 */
#cmp_107e2a21-5c5a-47a1-86d0-323f49e19961 {
	background-color: #D5CEC2;
}

#cmp_107e2a21-5c5a-47a1-86d0-323f49e19961 h1 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_107e2a21-5c5a-47a1-86d0-323f49e19961 h2 {
	color: #FFFFFF;
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_107e2a21-5c5a-47a1-86d0-323f49e19961 h3 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_107e2a21-5c5a-47a1-86d0-323f49e19961 p {
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_107e2a21-5c5a-47a1-86d0-323f49e19961 .content {
		margin: 0 auto;
		width: 80%;
	}
}
#cmp_107e2a21-5c5a-47a1-86d0-323f49e19961  {
	padding-bottom: 0;
}
/*
 * components/howitworks/cmp_24d3e1bc-ea9e-4d14-a5e6-a85bd5a6433d/component.css
 */
#cmp_24d3e1bc-ea9e-4d14-a5e6-a85bd5a6433d img {
	max-width: 100%;
}

/*
 * components/howitworks/cmp_8dc2f0ce-045b-4143-bd12-f5296cce1aa8/component.css
 */
#cmp_8dc2f0ce-045b-4143-bd12-f5296cce1aa8 {
	background-color: #D5CEC2;
}

#cmp_8dc2f0ce-045b-4143-bd12-f5296cce1aa8 .content-row {
	margin: 0;

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

#cmp_8dc2f0ce-045b-4143-bd12-f5296cce1aa8 .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_8dc2f0ce-045b-4143-bd12-f5296cce1aa8 h1 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 48px;
	margin-bottom: 0;
}

#cmp_8dc2f0ce-045b-4143-bd12-f5296cce1aa8 h2 {
	color: #C7C3C2;
	font-family: Playfair Display;
	font-size: 32px;
	margin-bottom: 0;
}

#cmp_8dc2f0ce-045b-4143-bd12-f5296cce1aa8 h3 {
	color: #E27A54;
	font-family: Open Sans;
	font-size: 14px;
	margin-bottom: 15px;
}

#cmp_8dc2f0ce-045b-4143-bd12-f5296cce1aa8 p {
	color: #C7C3C2;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_8dc2f0ce-045b-4143-bd12-f5296cce1aa8 hr {
	border-top: 1px solid #EEE;
	width: 100%;
}

@media (min-width: 768px) {
	#cmp_8dc2f0ce-045b-4143-bd12-f5296cce1aa8 .content {
		margin: 15px;
	}
}
#cmp_8dc2f0ce-045b-4143-bd12-f5296cce1aa8  {
	padding-top: 0;
}
/*
 * components/index/cmp_5a254b8b-51aa-4171-aaf7-3856c2217dc0/component.css
 */
#cmp_5a254b8b-51aa-4171-aaf7-3856c2217dc0 {
	background-color: rgba(245, 166, 35, 0.45);
}

#cmp_5a254b8b-51aa-4171-aaf7-3856c2217dc0 .content-row {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

#cmp_5a254b8b-51aa-4171-aaf7-3856c2217dc0 .content {
	margin: 25px auto;
	max-height: 250px;
	max-width: 250px;
	overflow: hidden;

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

#cmp_5a254b8b-51aa-4171-aaf7-3856c2217dc0 h1 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_5a254b8b-51aa-4171-aaf7-3856c2217dc0 h2 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_5a254b8b-51aa-4171-aaf7-3856c2217dc0 h3 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_5a254b8b-51aa-4171-aaf7-3856c2217dc0 p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 18px;
}

@media (min-width: 768px) {
	#cmp_5a254b8b-51aa-4171-aaf7-3856c2217dc0 .content-row {
		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
	}
}
/*
 * components/index/cmp_7f56591b-46d6-4fd7-818d-b9243be4f848/component.css
 */
#cmp_7f56591b-46d6-4fd7-818d-b9243be4f848 {
	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_7f56591b-46d6-4fd7-818d-b9243be4f848 .container-fluid {
	width: 100%;
}

#cmp_7f56591b-46d6-4fd7-818d-b9243be4f848 .hero-row {
	margin: 0;
}

#cmp_7f56591b-46d6-4fd7-818d-b9243be4f848 .hero-content {
	margin: 0;
	text-align: center;
}

#cmp_7f56591b-46d6-4fd7-818d-b9243be4f848 .hero-content h1 {
	color: rgb(255, 255, 255);
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_7f56591b-46d6-4fd7-818d-b9243be4f848 .hero-content h2 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_7f56591b-46d6-4fd7-818d-b9243be4f848 .hero-content h3 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_7f56591b-46d6-4fd7-818d-b9243be4f848 .hero-content p {
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 16px;
}

#cmp_7f56591b-46d6-4fd7-818d-b9243be4f848 .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_7f56591b-46d6-4fd7-818d-b9243be4f848 .hero-content .btn {
	margin: 5px 0;
	padding: 1em;
	white-space: normal;
	width: 90%;
}

#cmp_7f56591b-46d6-4fd7-818d-b9243be4f848 .hero-content .btn-primary {
	background-color: #E27A54;
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_7f56591b-46d6-4fd7-818d-b9243be4f848 .hero-content .btn-primary:hover,
#cmp_7f56591b-46d6-4fd7-818d-b9243be4f848 .hero-content .btn-primary:focus,
#cmp_7f56591b-46d6-4fd7-818d-b9243be4f848 .hero-content .btn-primary:active {
	background-color: #EF9521;
	color: #FFFFFF;
}

#cmp_7f56591b-46d6-4fd7-818d-b9243be4f848 .hero-content .btn-secondary {
	background-color: #EF9521;
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_7f56591b-46d6-4fd7-818d-b9243be4f848 .hero-content .btn-secondary:hover,
#cmp_7f56591b-46d6-4fd7-818d-b9243be4f848 .hero-content .btn-secondary:focus,
#cmp_7f56591b-46d6-4fd7-818d-b9243be4f848 .hero-content .btn-secondary:active {
	background-color: #E27A54;
	color: #FFFFFF;
}

@media (min-width: 768px) {
	#cmp_7f56591b-46d6-4fd7-818d-b9243be4f848 {
		min-height: 40vw;
	}
	#cmp_7f56591b-46d6-4fd7-818d-b9243be4f848 .hero-content {
		margin: 15px;
		text-align: left;
	}
	#cmp_7f56591b-46d6-4fd7-818d-b9243be4f848 .hero-content .button-container {
		-webkit-justify-content: flex-start;
		-moz-justify-content: flex-start;
		-ms-justify-content: flex-start;
		justify-content: flex-start;
	}
	#cmp_7f56591b-46d6-4fd7-818d-b9243be4f848 .hero-content .btn {
		margin: 0 15px 0 0;
		width: 45%;
	}
}

@media (min-width: 1200px) {
	#cmp_7f56591b-46d6-4fd7-818d-b9243be4f848 {
		min-height: 533px;
	}
}

/*
 * components/shop/listing/cmp_1c2ca3d6-2a3f-4182-ae32-fc0915f61243/component.css
 */
.shop-listing-item {
	color: #7B7770;
}

.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_2c97f8c4-d71c-4ccf-a3d4-f1ddc8cf93ad/component.css
 */
#cmp_2c97f8c4-d71c-4ccf-a3d4-f1ddc8cf93ad {
	background-color: #FFFFFF;
}

#cmp_2c97f8c4-d71c-4ccf-a3d4-f1ddc8cf93ad h1 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_2c97f8c4-d71c-4ccf-a3d4-f1ddc8cf93ad h2 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_2c97f8c4-d71c-4ccf-a3d4-f1ddc8cf93ad h3 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_2c97f8c4-d71c-4ccf-a3d4-f1ddc8cf93ad p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_2c97f8c4-d71c-4ccf-a3d4-f1ddc8cf93ad .content {
		margin: 0 auto;
		width: 80%;
	}
}
#cmp_2c97f8c4-d71c-4ccf-a3d4-f1ddc8cf93ad  {
	padding-bottom: 20px;
}
/*
 * components/shop/listing/cmp_3c998c26-455d-4e6e-ae04-044a15241a5d/component.css
 */
#cmp_3c998c26-455d-4e6e-ae04-044a15241a5d {
	border-bottom: 1px solid #E1E1E1;
	padding: 20px 0 40px 0;
}

#cmp_3c998c26-455d-4e6e-ae04-044a15241a5d ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_963f49e8-4fed-4f2e-8340-825ef0007428/component.css
 */
#cmp_963f49e8-4fed-4f2e-8340-825ef0007428 {
	padding: 20px 0;
}

#cmp_963f49e8-4fed-4f2e-8340-825ef0007428 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/product/cmp_3fc8d383-fca7-4ef0-8f96-1bf2efbcf6b2/component.css
 */
#cmp_3fc8d383-fca7-4ef0-8f96-1bf2efbcf6b2.shop-product-header {
	padding: 60px 0 20px 0;
}

/*
 * components/shop/product/cmp_ef22a661-4365-44fd-b8e0-f63b0aaf3bd2/component.css
 */
#cmp_ef22a661-4365-44fd-b8e0-f63b0aaf3bd2 .shop-product select {
	width: auto;
}

#cmp_ef22a661-4365-44fd-b8e0-f63b0aaf3bd2 .shop-product__name {
	margin-bottom: 20px;
}

#cmp_ef22a661-4365-44fd-b8e0-f63b0aaf3bd2 .shop-product__price {
	margin-bottom: 20px;
}

#cmp_ef22a661-4365-44fd-b8e0-f63b0aaf3bd2 .shop-product__add-to-cart {
	margin-bottom: 20px;
}

#cmp_ef22a661-4365-44fd-b8e0-f63b0aaf3bd2 .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin-bottom: 40px;
}

#cmp_ef22a661-4365-44fd-b8e0-f63b0aaf3bd2 .shop-product__review-share-desktop .rating,
#cmp_ef22a661-4365-44fd-b8e0-f63b0aaf3bd2 .shop-product__review-share-desktop .sharing {
	padding-top: 10px;
}

#cmp_ef22a661-4365-44fd-b8e0-f63b0aaf3bd2 .shop-product__review-share-desktop h3,
#cmp_ef22a661-4365-44fd-b8e0-f63b0aaf3bd2 .shop-product__review-share-mobile h3 {
	margin: 10px 0;
}
#cmp_ef22a661-4365-44fd-b8e0-f63b0aaf3bd2  {
	padding-top: 0;
}
/*
 * components/sold_out/cmp_22c56a1a-3cb2-4c45-a76b-15c2ebe32c14/component.css
 */
#cmp_22c56a1a-3cb2-4c45-a76b-15c2ebe32c14 img {
	max-width: 100%;
}

/*
 * components/sold_out/cmp_a97c1e17-c0d3-4c81-9572-9a0cc3b1786f/component.css
 */
#cmp_a97c1e17-c0d3-4c81-9572-9a0cc3b1786f {
	background-color: #FFFFFF;
}

#cmp_a97c1e17-c0d3-4c81-9572-9a0cc3b1786f h1 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_a97c1e17-c0d3-4c81-9572-9a0cc3b1786f h2 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_a97c1e17-c0d3-4c81-9572-9a0cc3b1786f h3 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_a97c1e17-c0d3-4c81-9572-9a0cc3b1786f p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}


#cmp_a97c1e17-c0d3-4c81-9572-9a0cc3b1786f .btn {
	background-color: #E27A54;
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_a97c1e17-c0d3-4c81-9572-9a0cc3b1786f .btn:hover {
	background-color: #EF9521;
	color: #FFFFFF;
}

#cmp_a97c1e17-c0d3-4c81-9572-9a0cc3b1786f .component-rich-text-with-button__content-row,
#cmp_a97c1e17-c0d3-4c81-9572-9a0cc3b1786f .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_a97c1e17-c0d3-4c81-9572-9a0cc3b1786f .component-rich-text-with-button__content-row,
	#cmp_a97c1e17-c0d3-4c81-9572-9a0cc3b1786f .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}
#cmp_a97c1e17-c0d3-4c81-9572-9a0cc3b1786f  {
	padding-top: 0;
}
/*
 * components/subscribe/cmp_08d81aeb-23c6-4138-9d1a-1737319d87b7/component.css
 */
#cmp_08d81aeb-23c6-4138-9d1a-1737319d87b7 {
	background-color: #D5CEC2;
	padding-bottom: 0;
}

#cmp_08d81aeb-23c6-4138-9d1a-1737319d87b7 .progress-bar-container {
	position: relative;
}

#cmp_08d81aeb-23c6-4138-9d1a-1737319d87b7 .progress-bar-filler {
	background: #FFFFFF;
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_08d81aeb-23c6-4138-9d1a-1737319d87b7 .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_08d81aeb-23c6-4138-9d1a-1737319d87b7 .progress-bar .step {
	color: #FFFFFF;

	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_08d81aeb-23c6-4138-9d1a-1737319d87b7 .progress-bar .step .point {
	background-color: #D5CEC2;
	border: 4px solid #FFFFFF;
	border-radius: 10px;
	margin-bottom: 5px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_08d81aeb-23c6-4138-9d1a-1737319d87b7 .progress-bar .step.active .point {
	background-color: #E27A54;;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_08d81aeb-23c6-4138-9d1a-1737319d87b7 .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe/cmp_118b999c-70d9-4649-84bb-3514c508d79c/component.css
 */
#cmp_118b999c-70d9-4649-84bb-3514c508d79c {
	background-color: #D5CEC2;
}

#cmp_118b999c-70d9-4649-84bb-3514c508d79c h1 {
	color: #FFFFFF;
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_118b999c-70d9-4649-84bb-3514c508d79c h2 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_118b999c-70d9-4649-84bb-3514c508d79c h3 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_118b999c-70d9-4649-84bb-3514c508d79c p {
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_118b999c-70d9-4649-84bb-3514c508d79c .content {
		margin: 0 auto;
		width: 80%;
	}
}
#cmp_118b999c-70d9-4649-84bb-3514c508d79c  {
	padding-bottom: 0;
}
/*
 * components/subscribe/cmp_50364e6d-d5d0-46fa-8d76-2c763cf06fc3/component.css
 */
#cmp_50364e6d-d5d0-46fa-8d76-2c763cf06fc3 {
	background-color: #FFFFFF;
}

#cmp_50364e6d-d5d0-46fa-8d76-2c763cf06fc3 .content-row {
	margin: 0;

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

#cmp_50364e6d-d5d0-46fa-8d76-2c763cf06fc3 .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_50364e6d-d5d0-46fa-8d76-2c763cf06fc3 .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_50364e6d-d5d0-46fa-8d76-2c763cf06fc3 h1 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_50364e6d-d5d0-46fa-8d76-2c763cf06fc3 h2 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_50364e6d-d5d0-46fa-8d76-2c763cf06fc3 h3 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_50364e6d-d5d0-46fa-8d76-2c763cf06fc3 p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_50364e6d-d5d0-46fa-8d76-2c763cf06fc3 .content {
		margin: 15px;
	}
}
#cmp_50364e6d-d5d0-46fa-8d76-2c763cf06fc3  {
	padding-top: 0;
}
/*
 * components/subscribe/cmp_dc9686be-8c9f-4417-85ce-b2c3dc897199/component.css
 */
#cmp_dc9686be-8c9f-4417-85ce-b2c3dc897199 {
	background-color: #D5CEC2;
}

#cmp_dc9686be-8c9f-4417-85ce-b2c3dc897199 h3 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_dc9686be-8c9f-4417-85ce-b2c3dc897199 p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_dc9686be-8c9f-4417-85ce-b2c3dc897199 .sf-item {
	background-color: #FFFFFF;
}
#cmp_dc9686be-8c9f-4417-85ce-b2c3dc897199  {
	padding-top: 0;
}
/*
 * components/subscribe/cmp_f63b568e-bcb3-4a55-94c5-e1fde121715e/component.css
 */
#cmp_f63b568e-bcb3-4a55-94c5-e1fde121715e {
	background-color: #FFFFFF;
}

#cmp_f63b568e-bcb3-4a55-94c5-e1fde121715e h1 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_f63b568e-bcb3-4a55-94c5-e1fde121715e h2 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_f63b568e-bcb3-4a55-94c5-e1fde121715e h3 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_f63b568e-bcb3-4a55-94c5-e1fde121715e p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_f63b568e-bcb3-4a55-94c5-e1fde121715e .content {
		margin: 0 auto;
		width: 80%;
	}
}
#cmp_f63b568e-bcb3-4a55-94c5-e1fde121715e  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_02f1c643-e805-449b-ad4e-c24616bc87a3/component.css
 */
#cmp_02f1c643-e805-449b-ad4e-c24616bc87a3 {
	background-color: #D5CEC2;
	padding-bottom: 0;
}

#cmp_02f1c643-e805-449b-ad4e-c24616bc87a3 .progress-bar-container {
	position: relative;
}

#cmp_02f1c643-e805-449b-ad4e-c24616bc87a3 .progress-bar-filler {
	background: #FFFFFF;
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_02f1c643-e805-449b-ad4e-c24616bc87a3 .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_02f1c643-e805-449b-ad4e-c24616bc87a3 .progress-bar .step {
	color: #FFFFFF;

	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_02f1c643-e805-449b-ad4e-c24616bc87a3 .progress-bar .step .point {
	background-color: #D5CEC2;
	border: 4px solid #FFFFFF;
	border-radius: 10px;
	margin-bottom: 5px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_02f1c643-e805-449b-ad4e-c24616bc87a3 .progress-bar .step.active .point {
	background-color: #E27A54;;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_02f1c643-e805-449b-ad4e-c24616bc87a3 .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe_flow/survey_step/cmp_09da4d8b-0d14-420e-994f-02289d36b399/component.css
 */
#cmp_09da4d8b-0d14-420e-994f-02289d36b399 {
	background-color: #FFFFFF;
}

#cmp_09da4d8b-0d14-420e-994f-02289d36b399 h1 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_09da4d8b-0d14-420e-994f-02289d36b399 h2 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_09da4d8b-0d14-420e-994f-02289d36b399 h3 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_09da4d8b-0d14-420e-994f-02289d36b399 p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_09da4d8b-0d14-420e-994f-02289d36b399 .content {
		margin: 0 auto;
		width: 80%;
	}
}
#cmp_09da4d8b-0d14-420e-994f-02289d36b399  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_3a126727-1d7f-47c6-bb39-c6e273197705/component.css
 */
#cmp_3a126727-1d7f-47c6-bb39-c6e273197705 {
	background-color: #D5CEC2;
}

#cmp_3a126727-1d7f-47c6-bb39-c6e273197705 h1 {
	color: #FFFFFF;
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_3a126727-1d7f-47c6-bb39-c6e273197705 p {
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}
#cmp_3a126727-1d7f-47c6-bb39-c6e273197705  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_5bb8b97f-e422-458f-abae-d649f3ec1448/component.css
 */
#cmp_5bb8b97f-e422-458f-abae-d649f3ec1448 {
	background-color: #D5CEC2;
}

#cmp_5bb8b97f-e422-458f-abae-d649f3ec1448 h3 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_5bb8b97f-e422-458f-abae-d649f3ec1448 p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_5bb8b97f-e422-458f-abae-d649f3ec1448  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_ab578ac9-2605-4031-9b08-5ed637fa4e64/component.css
 */
#cmp_ab578ac9-2605-4031-9b08-5ed637fa4e64 {
	background-color: #FFFFFF;
}

#cmp_ab578ac9-2605-4031-9b08-5ed637fa4e64 .content-row {
	margin: 0;

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

#cmp_ab578ac9-2605-4031-9b08-5ed637fa4e64 .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_ab578ac9-2605-4031-9b08-5ed637fa4e64 .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_ab578ac9-2605-4031-9b08-5ed637fa4e64 h1 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_ab578ac9-2605-4031-9b08-5ed637fa4e64 h2 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_ab578ac9-2605-4031-9b08-5ed637fa4e64 h3 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_ab578ac9-2605-4031-9b08-5ed637fa4e64 p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_ab578ac9-2605-4031-9b08-5ed637fa4e64 .content {
		margin: 15px;
	}
}
#cmp_ab578ac9-2605-4031-9b08-5ed637fa4e64  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/terms_step/cmp_1f70d6a7-4810-4ed1-a9e4-55a2dcbe9c50/component.css
 */
#cmp_1f70d6a7-4810-4ed1-a9e4-55a2dcbe9c50 {
	background-color: #FFFFFF;
}

#cmp_1f70d6a7-4810-4ed1-a9e4-55a2dcbe9c50 h1 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_1f70d6a7-4810-4ed1-a9e4-55a2dcbe9c50 h2 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_1f70d6a7-4810-4ed1-a9e4-55a2dcbe9c50 h3 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_1f70d6a7-4810-4ed1-a9e4-55a2dcbe9c50 p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_1f70d6a7-4810-4ed1-a9e4-55a2dcbe9c50 .content {
		margin: 0 auto;
		width: 80%;
	}
}
#cmp_1f70d6a7-4810-4ed1-a9e4-55a2dcbe9c50  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/terms_step/cmp_2241c08c-f268-4722-b42c-977e8ddfd7f0/component.css
 */
#cmp_2241c08c-f268-4722-b42c-977e8ddfd7f0 {
	background-color: #D5CEC2;
}

#cmp_2241c08c-f268-4722-b42c-977e8ddfd7f0 h2 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_2241c08c-f268-4722-b42c-977e8ddfd7f0 h3 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_2241c08c-f268-4722-b42c-977e8ddfd7f0 p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_2241c08c-f268-4722-b42c-977e8ddfd7f0 .sf-item {
	background-color: #FFFFFF;
}
#cmp_2241c08c-f268-4722-b42c-977e8ddfd7f0  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/terms_step/cmp_2cf03d51-d79d-4adb-b3cb-8746e4e9ef93/component.css
 */
#cmp_2cf03d51-d79d-4adb-b3cb-8746e4e9ef93 {
	background-color: #FFFFFF;
}

#cmp_2cf03d51-d79d-4adb-b3cb-8746e4e9ef93 .content-row {
	margin: 0;

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

#cmp_2cf03d51-d79d-4adb-b3cb-8746e4e9ef93 .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_2cf03d51-d79d-4adb-b3cb-8746e4e9ef93 .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_2cf03d51-d79d-4adb-b3cb-8746e4e9ef93 h1 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_2cf03d51-d79d-4adb-b3cb-8746e4e9ef93 h2 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_2cf03d51-d79d-4adb-b3cb-8746e4e9ef93 h3 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_2cf03d51-d79d-4adb-b3cb-8746e4e9ef93 p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_2cf03d51-d79d-4adb-b3cb-8746e4e9ef93 .content {
		margin: 15px;
	}
}
#cmp_2cf03d51-d79d-4adb-b3cb-8746e4e9ef93  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/terms_step/cmp_71463ce4-c5ba-4c68-bc18-7e4b35babdd0/component.css
 */
#cmp_71463ce4-c5ba-4c68-bc18-7e4b35babdd0 {
	background-color: #D5CEC2;
	padding-bottom: 0;
}

#cmp_71463ce4-c5ba-4c68-bc18-7e4b35babdd0 .progress-bar-container {
	position: relative;
}

#cmp_71463ce4-c5ba-4c68-bc18-7e4b35babdd0 .progress-bar-filler {
	background: #FFFFFF;
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_71463ce4-c5ba-4c68-bc18-7e4b35babdd0 .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_71463ce4-c5ba-4c68-bc18-7e4b35babdd0 .progress-bar .step {
	color: #FFFFFF;

	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_71463ce4-c5ba-4c68-bc18-7e4b35babdd0 .progress-bar .step .point {
	background-color: #D5CEC2;
	border: 4px solid #FFFFFF;
	border-radius: 10px;
	margin-bottom: 5px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_71463ce4-c5ba-4c68-bc18-7e4b35babdd0 .progress-bar .step.active .point {
	background-color: #E27A54;;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_71463ce4-c5ba-4c68-bc18-7e4b35babdd0 .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe_flow/terms_step/cmp_e8a6b3da-dbf8-477a-a7d0-6824b33c29c5/component.css
 */
#cmp_e8a6b3da-dbf8-477a-a7d0-6824b33c29c5 {
	background-color: #D5CEC2;
}

#cmp_e8a6b3da-dbf8-477a-a7d0-6824b33c29c5 h1 {
	color: #FFFFFF;
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_e8a6b3da-dbf8-477a-a7d0-6824b33c29c5 p {
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}
#cmp_e8a6b3da-dbf8-477a-a7d0-6824b33c29c5  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_17793bc9-b21f-4ab1-9b57-8e51d2c400ea/component.css
 */
#cmp_17793bc9-b21f-4ab1-9b57-8e51d2c400ea {
	background-color: #D5CEC2;
	padding-bottom: 0;
}

#cmp_17793bc9-b21f-4ab1-9b57-8e51d2c400ea .progress-bar-container {
	position: relative;
}

#cmp_17793bc9-b21f-4ab1-9b57-8e51d2c400ea .progress-bar-filler {
	background: #FFFFFF;
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_17793bc9-b21f-4ab1-9b57-8e51d2c400ea .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_17793bc9-b21f-4ab1-9b57-8e51d2c400ea .progress-bar .step {
	color: #FFFFFF;

	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_17793bc9-b21f-4ab1-9b57-8e51d2c400ea .progress-bar .step .point {
	background-color: #D5CEC2;
	border: 4px solid #FFFFFF;
	border-radius: 10px;
	margin-bottom: 5px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_17793bc9-b21f-4ab1-9b57-8e51d2c400ea .progress-bar .step.active .point {
	background-color: #E27A54;;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_17793bc9-b21f-4ab1-9b57-8e51d2c400ea .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe_flow/variant_step/cmp_43740383-f054-4e48-bdfe-089e2d2c4891/component.css
 */
#cmp_43740383-f054-4e48-bdfe-089e2d2c4891 {
	background-color: #FFFFFF;
}

#cmp_43740383-f054-4e48-bdfe-089e2d2c4891 h1 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_43740383-f054-4e48-bdfe-089e2d2c4891 h2 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_43740383-f054-4e48-bdfe-089e2d2c4891 h3 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_43740383-f054-4e48-bdfe-089e2d2c4891 p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_43740383-f054-4e48-bdfe-089e2d2c4891 .content {
		margin: 0 auto;
		width: 80%;
	}
}
#cmp_43740383-f054-4e48-bdfe-089e2d2c4891  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_4ffdfef7-97b7-4cd4-ab74-2841c1d5edb7/component.css
 */
#cmp_4ffdfef7-97b7-4cd4-ab74-2841c1d5edb7 {
	background-color: #FFFFFF;
}

#cmp_4ffdfef7-97b7-4cd4-ab74-2841c1d5edb7 .content-row {
	margin: 0;

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

#cmp_4ffdfef7-97b7-4cd4-ab74-2841c1d5edb7 .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_4ffdfef7-97b7-4cd4-ab74-2841c1d5edb7 .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_4ffdfef7-97b7-4cd4-ab74-2841c1d5edb7 h1 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_4ffdfef7-97b7-4cd4-ab74-2841c1d5edb7 h2 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_4ffdfef7-97b7-4cd4-ab74-2841c1d5edb7 h3 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_4ffdfef7-97b7-4cd4-ab74-2841c1d5edb7 p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_4ffdfef7-97b7-4cd4-ab74-2841c1d5edb7 .content {
		margin: 15px;
	}
}
#cmp_4ffdfef7-97b7-4cd4-ab74-2841c1d5edb7  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_79521aee-e51e-419d-b801-bf41ef7a69db/component.css
 */
#cmp_79521aee-e51e-419d-b801-bf41ef7a69db {
	background-color: #D5CEC2;
}

#cmp_79521aee-e51e-419d-b801-bf41ef7a69db h3 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_79521aee-e51e-419d-b801-bf41ef7a69db p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_79521aee-e51e-419d-b801-bf41ef7a69db .sf-item {
	background-color: #FFFFFF;
}
#cmp_79521aee-e51e-419d-b801-bf41ef7a69db  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_e95d350f-f7a5-4ccc-9a8f-b1de4b3553a7/component.css
 */
#cmp_e95d350f-f7a5-4ccc-9a8f-b1de4b3553a7 {
	background-color: #D5CEC2;
}

#cmp_e95d350f-f7a5-4ccc-9a8f-b1de4b3553a7 h1 {
	color: #FFFFFF;
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_e95d350f-f7a5-4ccc-9a8f-b1de4b3553a7 p {
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}
#cmp_e95d350f-f7a5-4ccc-9a8f-b1de4b3553a7  {
	padding-bottom: 0;
}
/*
 * components/terms_and_conditions/cmp_2c8cc1bb-e9c7-4b4e-a1f8-6984fb9aff4c/component.css
 */
#cmp_2c8cc1bb-e9c7-4b4e-a1f8-6984fb9aff4c {
	background-color: #FFFFFF;
}

#cmp_2c8cc1bb-e9c7-4b4e-a1f8-6984fb9aff4c h1 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_2c8cc1bb-e9c7-4b4e-a1f8-6984fb9aff4c h2 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_2c8cc1bb-e9c7-4b4e-a1f8-6984fb9aff4c h3 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_2c8cc1bb-e9c7-4b4e-a1f8-6984fb9aff4c p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_2c8cc1bb-e9c7-4b4e-a1f8-6984fb9aff4c .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_2c8cc1bb-e9c7-4b4e-a1f8-6984fb9aff4c ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_2c8cc1bb-e9c7-4b4e-a1f8-6984fb9aff4c ul {
	list-style: disc;
	list-style-position: inside;
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

/*
 * components/terms_and_conditions/cmp_485872b2-71c5-4639-9390-0e6db4e07a16/component.css
 */
#cmp_485872b2-71c5-4639-9390-0e6db4e07a16 img {
	max-width: 100%;
}

/*
 * components/terms_and_conditions/cmp_4c5dd0a0-4b65-46c8-a3f3-60ea3d0cd1d6/component.css
 */
#cmp_4c5dd0a0-4b65-46c8-a3f3-60ea3d0cd1d6 {
	background-color: #FFFFFF;
}

#cmp_4c5dd0a0-4b65-46c8-a3f3-60ea3d0cd1d6 h1 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_4c5dd0a0-4b65-46c8-a3f3-60ea3d0cd1d6 h2 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_4c5dd0a0-4b65-46c8-a3f3-60ea3d0cd1d6 h3 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_4c5dd0a0-4b65-46c8-a3f3-60ea3d0cd1d6 p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}


#cmp_4c5dd0a0-4b65-46c8-a3f3-60ea3d0cd1d6 .btn {
	background-color: #E27A54;
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_4c5dd0a0-4b65-46c8-a3f3-60ea3d0cd1d6 .btn:hover {
	background-color: #EF9521;
	color: #FFFFFF;
}

#cmp_4c5dd0a0-4b65-46c8-a3f3-60ea3d0cd1d6 .component-rich-text-with-button__content-row,
#cmp_4c5dd0a0-4b65-46c8-a3f3-60ea3d0cd1d6 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_4c5dd0a0-4b65-46c8-a3f3-60ea3d0cd1d6 .component-rich-text-with-button__content-row,
	#cmp_4c5dd0a0-4b65-46c8-a3f3-60ea3d0cd1d6 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_4c5dd0a0-4b65-46c8-a3f3-60ea3d0cd1d6 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_4c5dd0a0-4b65-46c8-a3f3-60ea3d0cd1d6 ul {
	list-style: disc;
	list-style-position: inside;
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

/*
 * components/view-cart/cmp_beff07bc-1ee2-4b8f-a329-6ff6aa7e74d1/component.css
 */
#cmp_beff07bc-1ee2-4b8f-a329-6ff6aa7e74d1 {
	padding: 15px 15px 100px 15px;
}

#cmp_beff07bc-1ee2-4b8f-a329-6ff6aa7e74d1 .cart-thead {
	border-bottom: 1px solid #E1E1E1;
	padding: 10px 0;
}

#cmp_beff07bc-1ee2-4b8f-a329-6ff6aa7e74d1 .cart-thead h3 {
	text-transform: uppercase;
}

#cmp_beff07bc-1ee2-4b8f-a329-6ff6aa7e74d1 .cart-item {
	border: 1px solid #E1E1E1;
	padding: 25px 0;
	position: relative;
}

#cmp_beff07bc-1ee2-4b8f-a329-6ff6aa7e74d1 .product-main {
	margin: 0 0 15px 0;
}

#cmp_beff07bc-1ee2-4b8f-a329-6ff6aa7e74d1 .product-label p {
	margin: 0;
}

#cmp_beff07bc-1ee2-4b8f-a329-6ff6aa7e74d1 .product-label .info {
	color: #E27A54;
	text-align: right;
	text-transform: uppercase;
}

#cmp_beff07bc-1ee2-4b8f-a329-6ff6aa7e74d1 .product-label .meta {
	color: #7B7770;
	font-size: 14px;
}

#cmp_beff07bc-1ee2-4b8f-a329-6ff6aa7e74d1 .product-rem-btn {
	position: absolute;
	right: 1%;
	top: 1%;
}

#cmp_beff07bc-1ee2-4b8f-a329-6ff6aa7e74d1 figure {
	margin: 0 0 15px 0;
}

#cmp_beff07bc-1ee2-4b8f-a329-6ff6aa7e74d1 .cart-subtotal {
	margin: 50px 0 0 0;
}

#cmp_beff07bc-1ee2-4b8f-a329-6ff6aa7e74d1 .cart-subtotal h2 {
	margin: 0 0 15px 0;
}

#cmp_beff07bc-1ee2-4b8f-a329-6ff6aa7e74d1 .cart-subtotal h3 {
	margin: 0 0 25px 0;
	text-transform: uppercase;
}

#cmp_beff07bc-1ee2-4b8f-a329-6ff6aa7e74d1 .cart-subtotal p {
	margin: 0 0 25px 0;
}

@media (min-width: 768px) {
	#cmp_beff07bc-1ee2-4b8f-a329-6ff6aa7e74d1 .cart-item {
		border-width: 0 0 1px 0;
	}
	#cmp_beff07bc-1ee2-4b8f-a329-6ff6aa7e74d1 .product-rem-btn {
		top: 40%;
	}
	#cmp_beff07bc-1ee2-4b8f-a329-6ff6aa7e74d1 figure {
		margin: 0;
	}
}

/*
 * components/view-cart/cmp_e3132f8a-9c2e-4a2e-9212-4df70ebaf3d7/component.css
 */
#cmp_e3132f8a-9c2e-4a2e-9212-4df70ebaf3d7 {
	background-color: #FFFFFF;
}

#cmp_e3132f8a-9c2e-4a2e-9212-4df70ebaf3d7 h1 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_e3132f8a-9c2e-4a2e-9212-4df70ebaf3d7 h2 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_e3132f8a-9c2e-4a2e-9212-4df70ebaf3d7 h3 {
	color: #E27A54;
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_e3132f8a-9c2e-4a2e-9212-4df70ebaf3d7 p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_e3132f8a-9c2e-4a2e-9212-4df70ebaf3d7 .content {
		margin: 0 auto;
		width: 80%;
	}
}