/*
 * css/style.css
 */
/* Globals
------------------------------*/
body {
	background-color: rgb(255, 255, 255);
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
	letter-spacing: 0.077em;
	line-height: 1.5em;
}

body > .container-fluid {
	background-color: rgb(255, 255, 255);
	max-width: 1140px;
}

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

h1 {
	color: rgb(199, 141, 102);
	font-family: Lato;
	font-size: 40px;
}

h2 {
	color: rgb(23, 74, 77);
	font-family: Lato;
	font-size: 22px;
}

h3 {
	color: rgb(23, 74, 77);
	font-family: Lato;
	font-size: 15px;
}

p {
	line-height: 1.5em;
}

a,
.btn-link {
	color: rgb(230, 198, 154);
}

a:hover,
a:focus,
a:active,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
	color: rgb(70, 106, 101);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.nav-pills .nav-link.active,
.nav-pills .nav-link.active:focus,
.nav-pills .nav-link.active:hover,
.nav-pills .nav-link.active:active,
.nav-pills .nav-item.open .nav-link,
.nav-pills .nav-item.open .nav-link:focus,
.nav-pills .nav-item.open .nav-link:hover,
.nav-pills .nav-item.open .nav-link:active {
	background-color: rgb(230, 198, 154);
}

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

.panel-body {
	padding: 15px;
}

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

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

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

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

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

/* Buttons */
.btn {
	border-radius: 25px;
	border: none;
	padding: 1.2em 5em;
	letter-spacing: 2px;
	font-size: 12px;
}

.btn-small {
	padding: 0.6em 1.8em;
	border: 1px solid rgb(230, 198, 154);
	border-radius: 15px;
	color: rgb(230, 198, 154);
}

.btn-small:hover,
.btn-small:focus,
.btn-small:active,
.btn-small:active:focus {
	background-color: rgb(70, 106, 101);
	border: 1px solid rgb(70, 106, 101);
	color: rgb(230, 198, 154) !important;
}

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

.btn-primary {
	background-color: rgb(230, 198, 154);
	color: #FFFFFF;
	font-family: Merriweather;
	font-size: 12px;
	letter-spacing: 0.167em;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus {
	background-color: rgb(70, 106, 101);
	color: #FFFFFF;
}

.btn-secondary {
	background-color: rgb(70, 106, 101);
	color: #FAFAFA;
	font-family: Merriweather;
	font-size: 12px;
	letter-spacing: 0.167em;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:active:focus {
	background-color: #D7BEE5;
	color: #FAFAFA;
}

.btn-empty {
	background-color: transparent;
	color: rgb(230, 198, 154);
	border: 1px solid rgb(230, 198, 154);
}

.btn-empty:hover,
.btn-empty:focus,
.btn-empty:active,
.btn-empty:active:focus {
	background-color: rgb(70, 106, 101);
}

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

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

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

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

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

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

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

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

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

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

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

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

/* Orders List
------------------------------*/
.orders-list {
	width: 100%;
	margin: 25px 0;
}
.orders-list h1 {
	text-align: center;
	color: rgb(199, 141, 102);
}
.orders-list .panel {
	width: 100%;
}

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

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

.checkout_content #checkout_button {
	background-color: rgb(230, 198, 154);
	border: none;
	border-radius: 25px;
	color: #FFFFFF;
	font-family: Merriweather;
	font-size: 12px;
	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(70, 106, 101);
	color: #FFFFFF;
}

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

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

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

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

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

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

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

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

.address-container {
	width: 100%;
}

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

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

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

.address-container {
	width: 100%;
}

.errors {
	margin: 25px 0;
}

.cratejoy-loading-icon {
	color: rgb(230, 198, 154);
}

.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(230, 198, 154);
	color: rgb(230, 198, 154);
	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(70, 106, 101);
	border-color: rgb(70, 106, 101);
	text-decoration: none;
}

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

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

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

/*
 * components/about/cmp_2e64b3f0-5497-43a5-a2e3-5d254df5c6a6/component.css
 */
#cmp_2e64b3f0-5497-43a5-a2e3-5d254df5c6a6 {
	background-color: rgb(255, 255, 255);
}

#cmp_2e64b3f0-5497-43a5-a2e3-5d254df5c6a6 h1 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 40px;
}

#cmp_2e64b3f0-5497-43a5-a2e3-5d254df5c6a6 h2 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 22px;
}

#cmp_2e64b3f0-5497-43a5-a2e3-5d254df5c6a6 h3 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 15px;
}

#cmp_2e64b3f0-5497-43a5-a2e3-5d254df5c6a6 p {
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_2e64b3f0-5497-43a5-a2e3-5d254df5c6a6 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_2e64b3f0-5497-43a5-a2e3-5d254df5c6a6 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_2e64b3f0-5497-43a5-a2e3-5d254df5c6a6  {
	padding-top: 60px;
}
#cmp_2e64b3f0-5497-43a5-a2e3-5d254df5c6a6 h1 {
	margin-bottom: 15px;
}
/*
 * components/about/cmp_9a040520-9556-41ce-9455-0ad2a18a5c85/component.css
 */
#cmp_9a040520-9556-41ce-9455-0ad2a18a5c85 {
	background-color: rgb(248, 238, 219);
}

#cmp_9a040520-9556-41ce-9455-0ad2a18a5c85 h1 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 40px;
}

#cmp_9a040520-9556-41ce-9455-0ad2a18a5c85 h2 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 22px;
}

#cmp_9a040520-9556-41ce-9455-0ad2a18a5c85 h3 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 15px;
}

#cmp_9a040520-9556-41ce-9455-0ad2a18a5c85 p {
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_9a040520-9556-41ce-9455-0ad2a18a5c85 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_9a040520-9556-41ce-9455-0ad2a18a5c85 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_9a040520-9556-41ce-9455-0ad2a18a5c85 .btn {
	background-color: rgb(230, 198, 154);
	color: #FFFFFF;
	font-family: Merriweather;
	font-size: 12px;
}

#cmp_9a040520-9556-41ce-9455-0ad2a18a5c85 .btn:hover {
	background-color: #D7BEE5;
	color: #FFFFFF;
}

#cmp_9a040520-9556-41ce-9455-0ad2a18a5c85 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_9a040520-9556-41ce-9455-0ad2a18a5c85 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_9a040520-9556-41ce-9455-0ad2a18a5c85  {
	padding-bottom: 60px;
}
#cmp_9a040520-9556-41ce-9455-0ad2a18a5c85 h3 {
	margin-bottom: 40px;
}
/*
 * components/about/cmp_fdac25b7-63a8-4271-a715-9da79682b63f/component.css
 */
#cmp_fdac25b7-63a8-4271-a715-9da79682b63f img {
	max-width: 100%;
}

/*
 * components/checkout/cmp_6d698509-f492-471d-aeec-cc3f3daa992f/component.css
 */
#cmp_6d698509-f492-471d-aeec-cc3f3daa992f .checkout_content {
  overflow: auto;
}

#cmp_6d698509-f492-471d-aeec-cc3f3daa992f .checkout_content section {
  border-color: #F5F5F5;
}

#cmp_6d698509-f492-471d-aeec-cc3f3daa992f .cart_listing table {
  border-color: #F5F5F5;
}

/*
 * components/checkout/cmp_b81fc127-566c-4e2d-b478-528c9016d3c2/component.css
 */
#cmp_b81fc127-566c-4e2d-b478-528c9016d3c2 {
	background-color: rgb(255, 255, 255);
}

#cmp_b81fc127-566c-4e2d-b478-528c9016d3c2 h1 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 40px;
}

#cmp_b81fc127-566c-4e2d-b478-528c9016d3c2 h2 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 22px;
}

#cmp_b81fc127-566c-4e2d-b478-528c9016d3c2 h3 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 15px;
}

#cmp_b81fc127-566c-4e2d-b478-528c9016d3c2 p {
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_b81fc127-566c-4e2d-b478-528c9016d3c2 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_b81fc127-566c-4e2d-b478-528c9016d3c2 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

/*
 * components/customer/account/cmp_6d446974-47c3-41e6-b654-b1026f623d7c/component.css
 */

/*
 * components/customer/edit/cmp_01c93844-d4d7-4152-bfc5-3539c47b1134/component.css
 */

/*
 * components/customer/forgot_password/cmp_19493212-8702-4f4f-934e-ba33abf72038/component.css
 */
#cmp_19493212-8702-4f4f-934e-ba33abf72038 {
	background-color: rgb(255, 255, 255);
}

#cmp_19493212-8702-4f4f-934e-ba33abf72038 h1 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 40px;
}

#cmp_19493212-8702-4f4f-934e-ba33abf72038 h2 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 22px;
}

#cmp_19493212-8702-4f4f-934e-ba33abf72038 h3 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 15px;
}

#cmp_19493212-8702-4f4f-934e-ba33abf72038 p {
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_19493212-8702-4f4f-934e-ba33abf72038 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_19493212-8702-4f4f-934e-ba33abf72038 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_19493212-8702-4f4f-934e-ba33abf72038  {
	padding: 50px 0;
}
#cmp_19493212-8702-4f4f-934e-ba33abf72038 h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/forgot_password/cmp_fd0e5388-7309-40de-84cc-6b8664215903/component.css
 */

#cmp_fd0e5388-7309-40de-84cc-6b8664215903  {
	padding-bottom: 120px;
}
/*
 * components/customer/login/cmp_51f9594d-ba8c-43c3-9fd2-dd385cd49386/component.css
 */

#cmp_51f9594d-ba8c-43c3-9fd2-dd385cd49386  {
	padding-bottom: 120px;
}
/*
 * components/customer/login/cmp_b79204a9-1008-42fb-a23f-603cc0bca318/component.css
 */
#cmp_b79204a9-1008-42fb-a23f-603cc0bca318 {
	background-color: rgb(255, 255, 255);
}

#cmp_b79204a9-1008-42fb-a23f-603cc0bca318 h1 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 40px;
}

#cmp_b79204a9-1008-42fb-a23f-603cc0bca318 h2 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 22px;
}

#cmp_b79204a9-1008-42fb-a23f-603cc0bca318 h3 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 15px;
}

#cmp_b79204a9-1008-42fb-a23f-603cc0bca318 p {
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_b79204a9-1008-42fb-a23f-603cc0bca318 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_b79204a9-1008-42fb-a23f-603cc0bca318 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_b79204a9-1008-42fb-a23f-603cc0bca318  {
	padding: 50px 0;
}
#cmp_b79204a9-1008-42fb-a23f-603cc0bca318 h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/order/cmp_c87feaf3-a71d-463c-81aa-85d1b924de12/component.css
 */

/*
 * components/customer/orders/cmp_140fba2a-17e0-4b73-b128-ef395b9f1147/component.css
 */

/*
 * components/customer/password_reset/cmp_402120c1-6e7a-487c-8a4a-9f5dba078c65/component.css
 */

#cmp_402120c1-6e7a-487c-8a4a-9f5dba078c65  {
	padding-bottom: 120px;
}
/*
 * components/customer/password_reset/cmp_bf90b5e7-71aa-4522-85d6-a6d8cfeeb265/component.css
 */
#cmp_bf90b5e7-71aa-4522-85d6-a6d8cfeeb265 {
	background-color: rgb(255, 255, 255);
}

#cmp_bf90b5e7-71aa-4522-85d6-a6d8cfeeb265 h1 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 40px;
}

#cmp_bf90b5e7-71aa-4522-85d6-a6d8cfeeb265 h2 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 22px;
}

#cmp_bf90b5e7-71aa-4522-85d6-a6d8cfeeb265 h3 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 15px;
}

#cmp_bf90b5e7-71aa-4522-85d6-a6d8cfeeb265 p {
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_bf90b5e7-71aa-4522-85d6-a6d8cfeeb265 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_bf90b5e7-71aa-4522-85d6-a6d8cfeeb265 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_bf90b5e7-71aa-4522-85d6-a6d8cfeeb265  {
	padding: 50px 0;
}
#cmp_bf90b5e7-71aa-4522-85d6-a6d8cfeeb265 h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/thank_you/cmp_e3875ea3-bd56-43d9-b111-350d2679a18d/component.css
 */

/*
 * components/custom_products/cmp_8143bf0a-e960-4426-a36f-5d5b1d1ac884/component.css
 */
#cmp_8143bf0a-e960-4426-a36f-5d5b1d1ac884 {
	padding: 0;
}

#cmp_8143bf0a-e960-4426-a36f-5d5b1d1ac884 .hero-content {
	background-color: rgb(70, 106, 101);
	padding: 20px;
}

#cmp_8143bf0a-e960-4426-a36f-5d5b1d1ac884 .hero-content h1 {
	color: rgb(230, 198, 154);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_8143bf0a-e960-4426-a36f-5d5b1d1ac884 .hero-content h2 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 22px;
}

#cmp_8143bf0a-e960-4426-a36f-5d5b1d1ac884 .hero-content h3 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 15px;
}

#cmp_8143bf0a-e960-4426-a36f-5d5b1d1ac884 .hero-content p {
	color: #FFFFFF;
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_8143bf0a-e960-4426-a36f-5d5b1d1ac884 .hero-content .btn {
	background-color: rgb(230, 198, 154);
	color: #FFFFFF;
	font-family: Merriweather;
	font-size: 12px;
}

#cmp_8143bf0a-e960-4426-a36f-5d5b1d1ac884 .hero-content .btn:hover {
	background-color: #D7BEE5;
	color: #FFFFFF;
}


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

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

	#cmp_8143bf0a-e960-4426-a36f-5d5b1d1ac884 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_8143bf0a-e960-4426-a36f-5d5b1d1ac884 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_8143bf0a-e960-4426-a36f-5d5b1d1ac884 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_8143bf0a-e960-4426-a36f-5d5b1d1ac884 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_8143bf0a-e960-4426-a36f-5d5b1d1ac884 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/email_list/cmp_b929d633-3928-4808-a6b9-460fbfe566b4/component.css
 */
#cmp_b929d633-3928-4808-a6b9-460fbfe566b4 {
	background-color: ;
}

#cmp_b929d633-3928-4808-a6b9-460fbfe566b4 h1 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_b929d633-3928-4808-a6b9-460fbfe566b4 h2 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_b929d633-3928-4808-a6b9-460fbfe566b4 h3 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_b929d633-3928-4808-a6b9-460fbfe566b4 p {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_b929d633-3928-4808-a6b9-460fbfe566b4 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_b929d633-3928-4808-a6b9-460fbfe566b4 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_b929d633-3928-4808-a6b9-460fbfe566b4 .btn {
	background-color: ;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_b929d633-3928-4808-a6b9-460fbfe566b4 .btn:hover {
	background-color: ;
	color: ;
}

#cmp_b929d633-3928-4808-a6b9-460fbfe566b4 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_b929d633-3928-4808-a6b9-460fbfe566b4 ul {
	list-style: disc;
	list-style-position: inside;
	color: ;
	font-family: ;
	font-size: ;
}

/*
 * components/email_list/cmp_bd1d1b4e-3aea-4345-9319-c174c4af7b00/component.css
 */
#cmp_bd1d1b4e-3aea-4345-9319-c174c4af7b00 {
	background-color: ;
}

#cmp_bd1d1b4e-3aea-4345-9319-c174c4af7b00 h1 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_bd1d1b4e-3aea-4345-9319-c174c4af7b00 h2 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_bd1d1b4e-3aea-4345-9319-c174c4af7b00 h3 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_bd1d1b4e-3aea-4345-9319-c174c4af7b00 p {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_bd1d1b4e-3aea-4345-9319-c174c4af7b00 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_bd1d1b4e-3aea-4345-9319-c174c4af7b00 ul {
	list-style: disc;
	list-style-position: inside;
	color: ;
	font-family: ;
	font-size: ;
}

/*
 * components/email_list/cmp_f6953947-0fab-4bea-9659-38e388744887/component.css
 */
#cmp_f6953947-0fab-4bea-9659-38e388744887 img {
	max-width: 100%;
}

/*
 * components/global/cmp_e2b26790-68f5-412e-b429-7801f7c49bfc/component.css
 */
#cmp_e2b26790-68f5-412e-b429-7801f7c49bfc {
	background-color: ;
}

#cmp_e2b26790-68f5-412e-b429-7801f7c49bfc h1 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_e2b26790-68f5-412e-b429-7801f7c49bfc h2 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_e2b26790-68f5-412e-b429-7801f7c49bfc h3 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_e2b26790-68f5-412e-b429-7801f7c49bfc p {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_e2b26790-68f5-412e-b429-7801f7c49bfc .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_e2b26790-68f5-412e-b429-7801f7c49bfc .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_e2b26790-68f5-412e-b429-7801f7c49bfc .btn {
	background-color: ;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_e2b26790-68f5-412e-b429-7801f7c49bfc .btn:hover {
	background-color: ;
	color: ;
}

#cmp_e2b26790-68f5-412e-b429-7801f7c49bfc ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_e2b26790-68f5-412e-b429-7801f7c49bfc ul {
	list-style: disc;
	list-style-position: inside;
	color: ;
	font-family: ;
	font-size: ;
}

/*
 * components/global/cmp_eb85d759-791a-40f0-a8a0-1f96193238ad/component.css
 */
#cmp_eb85d759-791a-40f0-a8a0-1f96193238ad.navbar {
	background-color: rgb(255, 255, 255);
	border-radius: 0;
	border-top: 4px solid rgb(230, 198, 154);
	padding: 0;

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

#cmp_eb85d759-791a-40f0-a8a0-1f96193238ad.navbar a:hover,
#cmp_eb85d759-791a-40f0-a8a0-1f96193238ad.navbar a:focus,
#cmp_eb85d759-791a-40f0-a8a0-1f96193238ad.navbar a:active {
	color: rgb(70, 106, 101);
}

#cmp_eb85d759-791a-40f0-a8a0-1f96193238ad .navbar-brand {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

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

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

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

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

	max-width: 100%;
	color: rgb(70, 106, 101);
	font-family: Josefin Sans;
	font-size: 28px;
	margin: 0;
	padding: 15px;
	text-align: center;
}

#cmp_eb85d759-791a-40f0-a8a0-1f96193238ad .navbar-brand img {
	max-width: 100%;
}

#cmp_eb85d759-791a-40f0-a8a0-1f96193238ad.navbar .navbar-toggler {
	background-color: rgb(230, 198, 154);
	border-radius: 0;
	color: #FFFFFF;
	font-size: 12px;
	letter-spacing: 0.167em;
	padding: 15px;
	text-transform: uppercase;
}

#cmp_eb85d759-791a-40f0-a8a0-1f96193238ad.navbar .navbar-toggler:hover,
#cmp_eb85d759-791a-40f0-a8a0-1f96193238ad.navbar .navbar-toggler:focus,
#cmp_eb85d759-791a-40f0-a8a0-1f96193238ad.navbar .navbar-toggler:active {
	background-color: rgb(70, 106, 101);
	color: #FFFFFF;
}

#cmp_eb85d759-791a-40f0-a8a0-1f96193238ad .navbar-nav {
	align-items: center;
	display: flex;
	flex-direction: column;
	margin: 0;
	padding-top: 15px;
	padding-bottom: 15px;
}

#cmp_eb85d759-791a-40f0-a8a0-1f96193238ad .navbar-nav li {
	padding-top: 10px;
	padding-bottom: 10px;
}

#cmp_eb85d759-791a-40f0-a8a0-1f96193238ad .navbar-nav .nav-link {
	color: rgb(230, 198, 154);
	font-family: Merriweather;
	font-size: 12px;;
	letter-spacing: 1px;
	padding: 8px 18px;
	text-align: center;
	text-transform: uppercase;
}

@media (min-width: 768px) {
	#cmp_eb85d759-791a-40f0-a8a0-1f96193238ad.navbar {
		-webkit-align-items: center;
		-moz-align-items: center;
		-ms-align-items: center;
		align-items: center;

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

		padding: 15px;
		padding-bottom: 0;
	}
	#cmp_eb85d759-791a-40f0-a8a0-1f96193238ad .navbar-brand {
		padding: 0;
		padding-bottom: 15px;
	}
	#cmp_eb85d759-791a-40f0-a8a0-1f96193238ad .navbar-toggleable-sm {
		-webkit-flex-shrink: 0;
		-moz-flex-shrink: 0;
		-ms-flex-shrink: 0;
		flex-shrink: 0;

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

	}
	#cmp_eb85d759-791a-40f0-a8a0-1f96193238ad .navbar-nav {
		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;

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

		padding: 0;
		padding-bottom: 15px;
	}
	#cmp_eb85d759-791a-40f0-a8a0-1f96193238ad .navbar-nav li {
		padding: 0;
	}
}

/*
 * components/global/cmp_fc5065d3-5794-4cd9-aabf-ea152705eb36/component.css
 */
#cmp_fc5065d3-5794-4cd9-aabf-ea152705eb36.footer {
	background-color: rgb(255, 255, 255);
	font-family: Merriweather;
	color: rgb(74, 74, 74);
	padding-top: 10px;
	padding-bottom: 10px;

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

#cmp_fc5065d3-5794-4cd9-aabf-ea152705eb36 .footer-social {
	padding-top: 15px;
	padding-bottom: 15px;
	text-align: center;
}

#cmp_fc5065d3-5794-4cd9-aabf-ea152705eb36 .footer-social a {
	display: inline-block;
	padding-left: 5px;
	padding-right: 5px;
}

#cmp_fc5065d3-5794-4cd9-aabf-ea152705eb36 .footer-social svg path {
	fill: rgb(230, 198, 154);
}

#cmp_fc5065d3-5794-4cd9-aabf-ea152705eb36 .footer-social a:hover svg path,
#cmp_fc5065d3-5794-4cd9-aabf-ea152705eb36 .footer-social a:focus svg path,
#cmp_fc5065d3-5794-4cd9-aabf-ea152705eb36 .footer-social a:active svg path {
	fill: rgb(70, 106, 101);
}

#cmp_fc5065d3-5794-4cd9-aabf-ea152705eb36.footer .toggler-container {
	padding-top: 15px;
	padding-bottom: 15px;
	text-align: center;
}

#cmp_fc5065d3-5794-4cd9-aabf-ea152705eb36.footer .navbar-toggler {
	color: rgb(230, 198, 154);
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

#cmp_fc5065d3-5794-4cd9-aabf-ea152705eb36 .footer-cc {
	border-top: 1px solid #e1e1e1;
	letter-spacing: 1px;
	text-align: center;
}

#cmp_fc5065d3-5794-4cd9-aabf-ea152705eb36 .footer-cc img {
	padding-top: 15px;
	padding-bottom: 15px;
}

#cmp_fc5065d3-5794-4cd9-aabf-ea152705eb36 .footer-cc p,
#cmp_fc5065d3-5794-4cd9-aabf-ea152705eb36 .footer-tributes p {
	padding-top: 15px;
	padding-bottom: 15px;
	margin: 0;
}

#cmp_fc5065d3-5794-4cd9-aabf-ea152705eb36 .footer-tributes p a {
	color: rgb(74, 74, 74);
	padding: 0;
}

#cmp_fc5065d3-5794-4cd9-aabf-ea152705eb36 .footer-tributes p a:hover,
#cmp_fc5065d3-5794-4cd9-aabf-ea152705eb36 .footer-tributes p a:focus,
#cmp_fc5065d3-5794-4cd9-aabf-ea152705eb36 .footer-tributes p a:active {
	color: rgb(74, 74, 74);
	text-decoration: none;
}

#cmp_fc5065d3-5794-4cd9-aabf-ea152705eb36 .footer-directory {
	text-align: center;
}

#cmp_fc5065d3-5794-4cd9-aabf-ea152705eb36 .footer-list {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

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

#cmp_fc5065d3-5794-4cd9-aabf-ea152705eb36 .footer-list .footer-item {
	-webkit-flex: 0 0 50%;
	-moz-flex: 0 0 50%;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;

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

#cmp_fc5065d3-5794-4cd9-aabf-ea152705eb36 .footer-list .footer-link {
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

#cmp_fc5065d3-5794-4cd9-aabf-ea152705eb36 .footer-list .footer-link:hover,
#cmp_fc5065d3-5794-4cd9-aabf-ea152705eb36 .footer-list .footer-link:focus,
#cmp_fc5065d3-5794-4cd9-aabf-ea152705eb36 .footer-list .footer-link:active {
	color: rgb(70, 106, 101);
	text-decoration: none;
}

@media (max-width: 767px) {
	#cmp_fc5065d3-5794-4cd9-aabf-ea152705eb36 .col-sm-12,
	#cmp_fc5065d3-5794-4cd9-aabf-ea152705eb36 .col-xs-12 {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 auto;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
	}
}

@media (min-width: 768px) {
	#cmp_fc5065d3-5794-4cd9-aabf-ea152705eb36.footer {
		-webkit-align-items: flex-start;
		-moz-align-items: flex-start;
		-ms-align-items: flex-start;
		align-items: flex-start;

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

		padding-top: 25px;
		padding-bottom: 25px;
	}
	#cmp_fc5065d3-5794-4cd9-aabf-ea152705eb36 .footer-directory {
		-webkit-order: 1;
		-moz-order: 1;
		-ms-order: 1;
		order: 1;

		text-align: left;
	}
	#cmp_fc5065d3-5794-4cd9-aabf-ea152705eb36 .footer-social {
		-webkit-order: 2;
		-moz-order: 2;
		-ms-order: 2;
		order: 2;

		padding-top: 0;
		padding-bottom: 0;
		text-align: right;
	}
	#cmp_fc5065d3-5794-4cd9-aabf-ea152705eb36 .footer-cc {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}
	#cmp_fc5065d3-5794-4cd9-aabf-ea152705eb36 .footer-cc p {
		display: inline-block;
	}
}

@media (min-width: 992px) {
	#cmp_fc5065d3-5794-4cd9-aabf-ea152705eb36 .footer-cc {
		-webkit-order: 2;
		-moz-order: 2;
		-ms-order: 2;
		order: 2;

		border-top: none;
	}
	#cmp_fc5065d3-5794-4cd9-aabf-ea152705eb36 .footer-cc p {
		display: block;
	}
	#cmp_fc5065d3-5794-4cd9-aabf-ea152705eb36 .footer-social {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}
}

/*
 * components/index/cmp_2cbfe885-5b60-44ca-a4f4-759d28832242/component.css
 */
#cmp_2cbfe885-5b60-44ca-a4f4-759d28832242 {
	padding: 0;
	background-color: rgb(255, 255, 255);
}

#cmp_2cbfe885-5b60-44ca-a4f4-759d28832242 .content {
	margin: 0 auto;
	max-width: 250px;
}

#cmp_2cbfe885-5b60-44ca-a4f4-759d28832242 h1 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 40px;
}

#cmp_2cbfe885-5b60-44ca-a4f4-759d28832242 h2 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 22px;
}

#cmp_2cbfe885-5b60-44ca-a4f4-759d28832242 h3 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 15px;
}

#cmp_2cbfe885-5b60-44ca-a4f4-759d28832242 p {
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_2cbfe885-5b60-44ca-a4f4-759d28832242 p {
	margin-bottom: 35px;
}
/*
 * components/index/cmp_86c003fc-0521-4022-98a8-d197845b0cde/component.css
 */
#cmp_86c003fc-0521-4022-98a8-d197845b0cde {
	background-color: rgb(255, 255, 255);
}

#cmp_86c003fc-0521-4022-98a8-d197845b0cde h1 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 40px;
}

#cmp_86c003fc-0521-4022-98a8-d197845b0cde h2 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 22px;
}

#cmp_86c003fc-0521-4022-98a8-d197845b0cde h3 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 15px;
}

#cmp_86c003fc-0521-4022-98a8-d197845b0cde p {
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_86c003fc-0521-4022-98a8-d197845b0cde ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_86c003fc-0521-4022-98a8-d197845b0cde ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

/*
 * components/index/cmp_afe9cf93-f25e-40d7-8572-b270ea420da6/component.css
 */
#cmp_afe9cf93-f25e-40d7-8572-b270ea420da6 img {
	max-width: 100%;
}

/*
 * components/index/cmp_aff6a651-866f-40ba-b21f-2cac69053207/component.css
 */
#cmp_aff6a651-866f-40ba-b21f-2cac69053207 {
	background-color: rgb(255, 255, 255);
}

#cmp_aff6a651-866f-40ba-b21f-2cac69053207 h1 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 40px;
}

#cmp_aff6a651-866f-40ba-b21f-2cac69053207 h2 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 22px;
}

#cmp_aff6a651-866f-40ba-b21f-2cac69053207 h3 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 15px;
}

#cmp_aff6a651-866f-40ba-b21f-2cac69053207 p {
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_aff6a651-866f-40ba-b21f-2cac69053207 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_aff6a651-866f-40ba-b21f-2cac69053207 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_aff6a651-866f-40ba-b21f-2cac69053207 .btn {
	background-color: rgb(230, 198, 154);
	color: #FFFFFF;
	font-family: Merriweather;
	font-size: 12px;
}

#cmp_aff6a651-866f-40ba-b21f-2cac69053207 .btn:hover {
	background-color: #D7BEE5;
	color: #FFFFFF;
}

#cmp_aff6a651-866f-40ba-b21f-2cac69053207 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_aff6a651-866f-40ba-b21f-2cac69053207 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

/*
 * components/index/cmp_d658073e-4f88-4035-8014-356d9d11d9ff/component.css
 */
#cmp_d658073e-4f88-4035-8014-356d9d11d9ff img {
	max-width: 100%;
}

/*
 * components/index/cmp_dd6df116-aa89-47cf-89fe-6176206a3748/component.css
 */
#cmp_dd6df116-aa89-47cf-89fe-6176206a3748 {
	background-color: rgb(248, 238, 219);
}

#cmp_dd6df116-aa89-47cf-89fe-6176206a3748 h1 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 40px;
}

#cmp_dd6df116-aa89-47cf-89fe-6176206a3748 h2 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 22px;
}

#cmp_dd6df116-aa89-47cf-89fe-6176206a3748 h3 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 15px;
}

#cmp_dd6df116-aa89-47cf-89fe-6176206a3748 p {
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_dd6df116-aa89-47cf-89fe-6176206a3748 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_dd6df116-aa89-47cf-89fe-6176206a3748 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

/*
 * components/index/cmp_e795c2ec-d444-4a02-9926-16b524dc33bc/component.css
 */
#cmp_e795c2ec-d444-4a02-9926-16b524dc33bc {
	padding: 0;
}

#cmp_e795c2ec-d444-4a02-9926-16b524dc33bc .hero-content {
	background-color: rgb(70, 106, 101);
	padding: 20px;
}

#cmp_e795c2ec-d444-4a02-9926-16b524dc33bc .hero-content h1 {
	color: rgb(230, 198, 154);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_e795c2ec-d444-4a02-9926-16b524dc33bc .hero-content h2 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 22px;
}

#cmp_e795c2ec-d444-4a02-9926-16b524dc33bc .hero-content h3 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 15px;
}

#cmp_e795c2ec-d444-4a02-9926-16b524dc33bc .hero-content p {
	color: #FFFFFF;
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_e795c2ec-d444-4a02-9926-16b524dc33bc .hero-content .btn {
	background-color: rgb(230, 198, 154);
	color: #FFFFFF;
	font-family: Merriweather;
	font-size: 12px;
}

#cmp_e795c2ec-d444-4a02-9926-16b524dc33bc .hero-content .btn:hover {
	background-color: #D7BEE5;
	color: #FFFFFF;
}

#cmp_e795c2ec-d444-4a02-9926-16b524dc33bc h1 {
	margin-top: 20px;
	margin-bottom: 10px;
}
#cmp_e795c2ec-d444-4a02-9926-16b524dc33bc p {
	margin-bottom: 25px;
}
/*
 * components/index/cmp_efdd6e86-547c-41c4-9e2e-ecf525d7e7ca/component.css
 */
#cmp_efdd6e86-547c-41c4-9e2e-ecf525d7e7ca {
	padding: 0;
}

#cmp_efdd6e86-547c-41c4-9e2e-ecf525d7e7ca .hero-content {
	background-color: rgba(248, 238, 219, 0.39);
	padding: 20px;
}

#cmp_efdd6e86-547c-41c4-9e2e-ecf525d7e7ca .hero-content h1 {
	color: rgb(230, 198, 154);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_efdd6e86-547c-41c4-9e2e-ecf525d7e7ca .hero-content h2 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 22px;
}

#cmp_efdd6e86-547c-41c4-9e2e-ecf525d7e7ca .hero-content h3 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 15px;
}

#cmp_efdd6e86-547c-41c4-9e2e-ecf525d7e7ca .hero-content p {
	color: #FFFFFF;
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_efdd6e86-547c-41c4-9e2e-ecf525d7e7ca .hero-content .btn {
	background-color: rgb(230, 198, 154);
	color: #FFFFFF;
	font-family: Merriweather;
	font-size: 12px;
}

#cmp_efdd6e86-547c-41c4-9e2e-ecf525d7e7ca .hero-content .btn:hover {
	background-color: #D7BEE5;
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_efdd6e86-547c-41c4-9e2e-ecf525d7e7ca .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_efdd6e86-547c-41c4-9e2e-ecf525d7e7ca .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_efdd6e86-547c-41c4-9e2e-ecf525d7e7ca .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_efdd6e86-547c-41c4-9e2e-ecf525d7e7ca .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_efdd6e86-547c-41c4-9e2e-ecf525d7e7ca .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_efdd6e86-547c-41c4-9e2e-ecf525d7e7ca .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_efdd6e86-547c-41c4-9e2e-ecf525d7e7ca .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/index/cmp_f1a2845e-7d79-4f76-901e-b63835155cd9/component.css
 */
#cmp_f1a2845e-7d79-4f76-901e-b63835155cd9 {
	padding: 0;
}

#cmp_f1a2845e-7d79-4f76-901e-b63835155cd9 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_f1a2845e-7d79-4f76-901e-b63835155cd9 .hero-content h1 {
	color: rgb(230, 198, 154);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_f1a2845e-7d79-4f76-901e-b63835155cd9 .hero-content h2 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 22px;
}

#cmp_f1a2845e-7d79-4f76-901e-b63835155cd9 .hero-content h3 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 15px;
}

#cmp_f1a2845e-7d79-4f76-901e-b63835155cd9 .hero-content p {
	color: #FFFFFF;
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_f1a2845e-7d79-4f76-901e-b63835155cd9 .hero-content .btn {
	background-color: rgb(230, 198, 154);
	color: #FFFFFF;
	font-family: Merriweather;
	font-size: 12px;
}

#cmp_f1a2845e-7d79-4f76-901e-b63835155cd9 .hero-content .btn:hover {
	background-color: #D7BEE5;
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_f1a2845e-7d79-4f76-901e-b63835155cd9 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_f1a2845e-7d79-4f76-901e-b63835155cd9 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_f1a2845e-7d79-4f76-901e-b63835155cd9 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_f1a2845e-7d79-4f76-901e-b63835155cd9 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_f1a2845e-7d79-4f76-901e-b63835155cd9 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_f1a2845e-7d79-4f76-901e-b63835155cd9 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_f1a2845e-7d79-4f76-901e-b63835155cd9 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/press/cmp_67d990ad-26af-43ce-bdcb-a4e0da744ca7/component.css
 */
#cmp_67d990ad-26af-43ce-bdcb-a4e0da744ca7 img {
	max-width: 100%;
}

/*
 * components/press/cmp_727358d0-5913-4ea2-99c6-89476b0e3c39/component.css
 */
#cmp_727358d0-5913-4ea2-99c6-89476b0e3c39 {
	background-color: rgb(255, 255, 255);
}

#cmp_727358d0-5913-4ea2-99c6-89476b0e3c39 h1 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 40px;
}

#cmp_727358d0-5913-4ea2-99c6-89476b0e3c39 h2 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 22px;
}

#cmp_727358d0-5913-4ea2-99c6-89476b0e3c39 h3 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 15px;
}

#cmp_727358d0-5913-4ea2-99c6-89476b0e3c39 p {
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_727358d0-5913-4ea2-99c6-89476b0e3c39 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_727358d0-5913-4ea2-99c6-89476b0e3c39 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

/*
 * components/press/cmp_c6ee6ff6-ee2c-4f3b-9ba5-3c2a8821dadd/component.css
 */
#cmp_c6ee6ff6-ee2c-4f3b-9ba5-3c2a8821dadd {
	background-color: rgb(255, 255, 255);
}

#cmp_c6ee6ff6-ee2c-4f3b-9ba5-3c2a8821dadd h1 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 40px;
}

#cmp_c6ee6ff6-ee2c-4f3b-9ba5-3c2a8821dadd h2 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 22px;
}

#cmp_c6ee6ff6-ee2c-4f3b-9ba5-3c2a8821dadd h3 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 15px;
}

#cmp_c6ee6ff6-ee2c-4f3b-9ba5-3c2a8821dadd p {
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_c6ee6ff6-ee2c-4f3b-9ba5-3c2a8821dadd ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_c6ee6ff6-ee2c-4f3b-9ba5-3c2a8821dadd ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

/*
 * components/shop/listing/cmp_08dbf6de-0e27-4a7a-bb26-3b955ad90a80/component.css
 */
#cmp_08dbf6de-0e27-4a7a-bb26-3b955ad90a80 .shop-listing-item {
	color: rgb(74, 74, 74);
}

#cmp_08dbf6de-0e27-4a7a-bb26-3b955ad90a80 .shop-listing-item:hover,
#cmp_08dbf6de-0e27-4a7a-bb26-3b955ad90a80 .shop-listing-item:focus {
	text-decoration: none;
}

#cmp_08dbf6de-0e27-4a7a-bb26-3b955ad90a80 .shop-listing-item__image {
	background-size: cover;
	background-position: center center;
}

#cmp_08dbf6de-0e27-4a7a-bb26-3b955ad90a80 .shop-listing-item__name {
	margin: 10px 0;
}

#cmp_08dbf6de-0e27-4a7a-bb26-3b955ad90a80 .shop-listing-item__price {
	margin: 10px 0 30px;
}

#cmp_08dbf6de-0e27-4a7a-bb26-3b955ad90a80 .product_paging {
	-webkit-display: flex;
	-ms-display: flex;
	display: flex;
	justify-content: center;

	margin: 20px 0;
}

#cmp_08dbf6de-0e27-4a7a-bb26-3b955ad90a80 .product_page a,
#cmp_08dbf6de-0e27-4a7a-bb26-3b955ad90a80 .next_page a,
#cmp_08dbf6de-0e27-4a7a-bb26-3b955ad90a80 .prev_page a {
	display: block;
	padding: 12px 15px;
	margin: 0 2px;
	border: 1px solid #E0E0E0;
	border-radius: 5px;
}

#cmp_08dbf6de-0e27-4a7a-bb26-3b955ad90a80 .product_page.active a,
#cmp_08dbf6de-0e27-4a7a-bb26-3b955ad90a80 .product_page a:hover,
#cmp_08dbf6de-0e27-4a7a-bb26-3b955ad90a80 .product_page a:focus,
#cmp_08dbf6de-0e27-4a7a-bb26-3b955ad90a80 .next_page a:hover,
#cmp_08dbf6de-0e27-4a7a-bb26-3b955ad90a80 .next_page a:focus,
#cmp_08dbf6de-0e27-4a7a-bb26-3b955ad90a80 .prev_page a:hover,
#cmp_08dbf6de-0e27-4a7a-bb26-3b955ad90a80 .prev_page a:focus {
	text-decoration: none;
	background-color: #F9F9F9;
}

#cmp_08dbf6de-0e27-4a7a-bb26-3b955ad90a80 .product_page.active a {
	color: black;
}

/*
 * components/shop/listing/cmp_5374e5f1-d3b4-4bd1-a1e9-488412b2af4c/component.css
 */
#cmp_5374e5f1-d3b4-4bd1-a1e9-488412b2af4c {
	background-color: rgb(255, 255, 255);
}

#cmp_5374e5f1-d3b4-4bd1-a1e9-488412b2af4c h1 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 40px;
}

#cmp_5374e5f1-d3b4-4bd1-a1e9-488412b2af4c h2 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 22px;
}

#cmp_5374e5f1-d3b4-4bd1-a1e9-488412b2af4c h3 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 15px;
}

#cmp_5374e5f1-d3b4-4bd1-a1e9-488412b2af4c p {
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_5374e5f1-d3b4-4bd1-a1e9-488412b2af4c ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_5374e5f1-d3b4-4bd1-a1e9-488412b2af4c ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_5374e5f1-d3b4-4bd1-a1e9-488412b2af4c  {
	padding: 50px 0 15px;
}
#cmp_5374e5f1-d3b4-4bd1-a1e9-488412b2af4c h1 {
	margin-bottom: 15px;
}
/*
 * components/shop/listing/cmp_6c9034af-9947-4a5b-b4cd-9a53f1ccf953/component.css
 */
#cmp_6c9034af-9947-4a5b-b4cd-9a53f1ccf953 {
	justify-content: center;
}

#cmp_6c9034af-9947-4a5b-b4cd-9a53f1ccf953 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_fe885e32-855c-4343-9b42-3825d89ff950/component.css
 */
#cmp_fe885e32-855c-4343-9b42-3825d89ff950 {
	justify-content: center;
}

#cmp_fe885e32-855c-4343-9b42-3825d89ff950 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

#cmp_fe885e32-855c-4343-9b42-3825d89ff950  {
	border-bottom: 1px solid #E1E1E1;
	margin-bottom: 35px;
	padding-bottom: 35px;
}
/*
 * components/shop/product/cmp_1797e363-735e-4e26-b988-8e6aa44b659a/component.css
 */
#cmp_1797e363-735e-4e26-b988-8e6aa44b659a.shop-product-header {
	padding: 50px 0 15px;
}

/*
 * components/shop/product/cmp_a7706ec0-a7bf-47bf-bb39-35bdb9669105/component.css
 */
#cmp_a7706ec0-a7bf-47bf-bb39-35bdb9669105 .shop-product__name {
	margin-bottom: 10px;
}

#cmp_a7706ec0-a7bf-47bf-bb39-35bdb9669105 .shop-product__price {
	margin-bottom: 20px;
}

#cmp_a7706ec0-a7bf-47bf-bb39-35bdb9669105 .shop-product select {
	width: auto;
}

#cmp_a7706ec0-a7bf-47bf-bb39-35bdb9669105 .shop-product__add-to-cart {
	margin-bottom: 20px;
}

#cmp_a7706ec0-a7bf-47bf-bb39-35bdb9669105 .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin-bottom: 40px;
}

#cmp_a7706ec0-a7bf-47bf-bb39-35bdb9669105 .shop-product__review-share-desktop .col-xs-6 {
	padding-top: 10px;
}

#cmp_a7706ec0-a7bf-47bf-bb39-35bdb9669105 .shop-product__review-share-desktop .col-xs-6 + .col-xs-6 {
	border-left: 1px solid #E1E1E1;
}

#cmp_a7706ec0-a7bf-47bf-bb39-35bdb9669105 .shop-product__social-share-buttons {
	-webkit-display: flex;
	-ms-display: flex;
	display: flex;
	justify-content: start;
}

#cmp_a7706ec0-a7bf-47bf-bb39-35bdb9669105 .shop-product__social-share-buttons > * {
	margin-right: 8px;
}

/*
 * components/sold_out/cmp_88b6bb3d-7179-4fbf-a967-538a4c7ac901/component.css
 */
#cmp_88b6bb3d-7179-4fbf-a967-538a4c7ac901 {
	background-color: rgb(255, 255, 255);
}

#cmp_88b6bb3d-7179-4fbf-a967-538a4c7ac901 h1 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 40px;
}

#cmp_88b6bb3d-7179-4fbf-a967-538a4c7ac901 h2 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 22px;
}

#cmp_88b6bb3d-7179-4fbf-a967-538a4c7ac901 h3 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 15px;
}

#cmp_88b6bb3d-7179-4fbf-a967-538a4c7ac901 p {
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_88b6bb3d-7179-4fbf-a967-538a4c7ac901 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_88b6bb3d-7179-4fbf-a967-538a4c7ac901 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_88b6bb3d-7179-4fbf-a967-538a4c7ac901 .btn {
	background-color: rgb(230, 198, 154);
	color: #FFFFFF;
	font-family: Merriweather;
	font-size: 12px;
}

#cmp_88b6bb3d-7179-4fbf-a967-538a4c7ac901 .btn:hover {
	background-color: #D7BEE5;
	color: #FFFFFF;
}

#cmp_88b6bb3d-7179-4fbf-a967-538a4c7ac901 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_88b6bb3d-7179-4fbf-a967-538a4c7ac901 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_88b6bb3d-7179-4fbf-a967-538a4c7ac901  {
	padding-bottom: 50px;
}
/*
 * components/sold_out/cmp_cb72e65c-9d67-4861-868e-67b3fad7a27b/component.css
 */
#cmp_cb72e65c-9d67-4861-868e-67b3fad7a27b img {
	max-width: 100%;
}

#cmp_cb72e65c-9d67-4861-868e-67b3fad7a27b  {
	padding-top: 50px;
}
/*
 * components/subscribe/cmp_b5293ffd-fb76-4266-967c-54e0ca0030db/component.css
 */

/*
 * components/subscribe/cmp_ee494158-5e1f-4448-8457-cd0e4dd75613/component.css
 */
#cmp_ee494158-5e1f-4448-8457-cd0e4dd75613 {
	background-color: rgb(255, 255, 255);
}

#cmp_ee494158-5e1f-4448-8457-cd0e4dd75613 h1 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 40px;
}

#cmp_ee494158-5e1f-4448-8457-cd0e4dd75613 h2 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 22px;
}

#cmp_ee494158-5e1f-4448-8457-cd0e4dd75613 h3 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 15px;
}

#cmp_ee494158-5e1f-4448-8457-cd0e4dd75613 p {
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_ee494158-5e1f-4448-8457-cd0e4dd75613 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_ee494158-5e1f-4448-8457-cd0e4dd75613 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

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

	max-width: 940px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

	margin-bottom: 15px;
}

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

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

	font-family: ;
	font-size: 12px;

	color: #FFFFFF;
	background-color: rgb(230, 198, 154);
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-btn-cart:hover {
	color: #FFFFFF;
	background-color: rgb(70, 106, 101);
}

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

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

	font-size: 16px;
	color: #38BFC3;
}

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

	margin-bottom: 2px;
}

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

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

	text-align: center;
}


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

	color: #FFFFFF;
	background-color: rgb(230, 198, 154);
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-continue-btn:hover {
	color: #FFFFFF;
	background-color: rgb(70, 106, 101);
}

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

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

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

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

/*
 * components/subscribe_flow/survey_step/cmp_5e98dda1-f9d2-486f-80c2-4adae8b13a83/component.css
 */
#cmp_5e98dda1-f9d2-486f-80c2-4adae8b13a83 {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/survey_step/cmp_ea66833e-8dde-4195-bc4d-e854fffe369b/component.css
 */
#cmp_ea66833e-8dde-4195-bc4d-e854fffe369b.survey h2 {
	margin-bottom: 1em;
}

#cmp_ea66833e-8dde-4195-bc4d-e854fffe369b.survey .radio input[type="radio"],
#cmp_ea66833e-8dde-4195-bc4d-e854fffe369b.survey .checkbox input[type="checkbox"] {
	margin-right: 0.5em;
}

/*
 * components/subscribe_flow/terms_step/cmp_02865578-98a7-41c9-b98e-407083ffa612/component.css
 */

/*
 * components/subscribe_flow/terms_step/cmp_14942008-021c-45a1-96da-f6f61acfa9f5/component.css
 */
#cmp_14942008-021c-45a1-96da-f6f61acfa9f5 {
	background-color: rgb(255, 255, 255);
}

#cmp_14942008-021c-45a1-96da-f6f61acfa9f5 h1 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 40px;
}

#cmp_14942008-021c-45a1-96da-f6f61acfa9f5 h2 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 22px;
}

#cmp_14942008-021c-45a1-96da-f6f61acfa9f5 h3 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 15px;
}

#cmp_14942008-021c-45a1-96da-f6f61acfa9f5 p {
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_14942008-021c-45a1-96da-f6f61acfa9f5 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_14942008-021c-45a1-96da-f6f61acfa9f5 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

/*
 * components/subscribe_flow/terms_step/cmp_8ae2a404-84a9-4e12-ae72-b01c7c194561/component.css
 */
#cmp_8ae2a404-84a9-4e12-ae72-b01c7c194561 {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/variant_step/cmp_22323c75-7b76-444e-a4d0-31ecb1544dfa/component.css
 */
#cmp_22323c75-7b76-444e-a4d0-31ecb1544dfa {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/variant_step/cmp_e87370a7-548e-4b9d-8a17-2a89948019fa/component.css
 */

/*
 * components/view-cart/cmp_2b52853f-5899-4981-b3e6-8d6f3b26b197/component.css
 */
#cmp_2b52853f-5899-4981-b3e6-8d6f3b26b197 {
	padding: 15px 15px 100px 15px;
}

#cmp_2b52853f-5899-4981-b3e6-8d6f3b26b197 .cart-thead {
	border-bottom: 1px solid #E1E1E1;
	padding: 10px 0;
}

#cmp_2b52853f-5899-4981-b3e6-8d6f3b26b197 .cart-thead h3 {
	text-transform: uppercase;
}

#cmp_2b52853f-5899-4981-b3e6-8d6f3b26b197 .cart-item {
	border: 1px solid #E1E1E1;
	padding: 25px 0;
	position: relative;
}

#cmp_2b52853f-5899-4981-b3e6-8d6f3b26b197 .product-main {
	margin-bottom: 15px;
}

#cmp_2b52853f-5899-4981-b3e6-8d6f3b26b197 .product-label p {
	margin: 0;
}

#cmp_2b52853f-5899-4981-b3e6-8d6f3b26b197 .product-label .info {
	color: rgb(23, 74, 77);
	text-align: right;
	text-transform: uppercase;
}

#cmp_2b52853f-5899-4981-b3e6-8d6f3b26b197 .product-label .meta {
	color: rgb(23, 74, 77);
	font-size: 15px;
}

#cmp_2b52853f-5899-4981-b3e6-8d6f3b26b197 .product-rem-btn {
	position: absolute;
	right: 1%;
	top: 1%;
}

#cmp_2b52853f-5899-4981-b3e6-8d6f3b26b197 figure {
	margin: 0 0 15px 0;
}

#cmp_2b52853f-5899-4981-b3e6-8d6f3b26b197 .cart-subtotal {
	margin: 50px 0 0 0;
}

#cmp_2b52853f-5899-4981-b3e6-8d6f3b26b197 .cart-subtotal h1 {
	margin: 0 0 15px 0;
}

#cmp_2b52853f-5899-4981-b3e6-8d6f3b26b197 .cart-subtotal h3 {
	margin: 0 0 25px 0;
	text-transform: uppercase;
}

#cmp_2b52853f-5899-4981-b3e6-8d6f3b26b197 .cart-subtotal p {
	margin: 0 0 25px 0;
}

@media (min-width: 768px) {
	#cmp_2b52853f-5899-4981-b3e6-8d6f3b26b197 .cart-item {
		border-width: 0 0 1px 0;
	}
	#cmp_2b52853f-5899-4981-b3e6-8d6f3b26b197 .product-rem-btn {
		top: 40%;
	}
	#cmp_2b52853f-5899-4981-b3e6-8d6f3b26b197 figure {
		margin: 0;
	}
}

/*
 * components/view-cart/cmp_89d721af-8291-401d-a442-1b3d69e5fabd/component.css
 */
#cmp_89d721af-8291-401d-a442-1b3d69e5fabd {
	background-color: rgb(255, 255, 255);
}

#cmp_89d721af-8291-401d-a442-1b3d69e5fabd h1 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 40px;
}

#cmp_89d721af-8291-401d-a442-1b3d69e5fabd h2 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 22px;
}

#cmp_89d721af-8291-401d-a442-1b3d69e5fabd h3 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 15px;
}

#cmp_89d721af-8291-401d-a442-1b3d69e5fabd p {
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_89d721af-8291-401d-a442-1b3d69e5fabd ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_89d721af-8291-401d-a442-1b3d69e5fabd ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_89d721af-8291-401d-a442-1b3d69e5fabd  {
	padding: 50px 0;;
}
#cmp_89d721af-8291-401d-a442-1b3d69e5fabd h1 {
	margin-bottom: 15px;
}
/*
 * components/whats_inside/cmp_3883cfeb-50c1-47c4-8123-ca565efada5d/component.css
 */
#cmp_3883cfeb-50c1-47c4-8123-ca565efada5d {
	background-color: rgb(255, 255, 255);
}

#cmp_3883cfeb-50c1-47c4-8123-ca565efada5d h1 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 40px;
}

#cmp_3883cfeb-50c1-47c4-8123-ca565efada5d h2 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 22px;
}

#cmp_3883cfeb-50c1-47c4-8123-ca565efada5d h3 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 15px;
}

#cmp_3883cfeb-50c1-47c4-8123-ca565efada5d p {
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_3883cfeb-50c1-47c4-8123-ca565efada5d ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_3883cfeb-50c1-47c4-8123-ca565efada5d ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

/*
 * components/whats_inside/cmp_ad252235-d915-443c-9b03-ffe4cec4465e/component.css
 */
#cmp_ad252235-d915-443c-9b03-ffe4cec4465e {
	background-color: rgb(248, 238, 219);
}

#cmp_ad252235-d915-443c-9b03-ffe4cec4465e h1 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 40px;
}

#cmp_ad252235-d915-443c-9b03-ffe4cec4465e h2 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 22px;
}

#cmp_ad252235-d915-443c-9b03-ffe4cec4465e h3 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 15px;
}

#cmp_ad252235-d915-443c-9b03-ffe4cec4465e p {
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_ad252235-d915-443c-9b03-ffe4cec4465e ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_ad252235-d915-443c-9b03-ffe4cec4465e ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_ad252235-d915-443c-9b03-ffe4cec4465e  {
	padding-top: 60px;
}
#cmp_ad252235-d915-443c-9b03-ffe4cec4465e h1 {
	margin-bottom: 15px;
}
/*
 * components/whats_inside/cmp_bcf7c4d5-5190-48de-88ce-a251a091b34b/component.css
 */
#cmp_bcf7c4d5-5190-48de-88ce-a251a091b34b {
	background-color: rgb(248, 238, 219);
}

#cmp_bcf7c4d5-5190-48de-88ce-a251a091b34b h1 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 40px;
}

#cmp_bcf7c4d5-5190-48de-88ce-a251a091b34b h2 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 22px;
}

#cmp_bcf7c4d5-5190-48de-88ce-a251a091b34b h3 {
	color: rgb(70, 106, 101);
	font-family: Lato;
	font-size: 15px;
}

#cmp_bcf7c4d5-5190-48de-88ce-a251a091b34b p {
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_bcf7c4d5-5190-48de-88ce-a251a091b34b .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_bcf7c4d5-5190-48de-88ce-a251a091b34b .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_bcf7c4d5-5190-48de-88ce-a251a091b34b .btn {
	background-color: rgb(230, 198, 154);
	color: #FFFFFF;
	font-family: Merriweather;
	font-size: 12px;
}

#cmp_bcf7c4d5-5190-48de-88ce-a251a091b34b .btn:hover {
	background-color: #D7BEE5;
	color: #FFFFFF;
}

#cmp_bcf7c4d5-5190-48de-88ce-a251a091b34b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_bcf7c4d5-5190-48de-88ce-a251a091b34b ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_bcf7c4d5-5190-48de-88ce-a251a091b34b  {
	padding: 60px 0;
}
#cmp_bcf7c4d5-5190-48de-88ce-a251a091b34b h3 {
	margin-bottom: 35px;
}
#cmp_bcf7c4d5-5190-48de-88ce-a251a091b34b p {
	margin-bottom: 35px;
}
/*
 * components/whats_inside/cmp_f080f516-ed4b-492e-b3ae-69cb3b844674/component.css
 */
#cmp_f080f516-ed4b-492e-b3ae-69cb3b844674 {
	padding: 0;
}

#cmp_f080f516-ed4b-492e-b3ae-69cb3b844674 .hero-content {
	background-color: #FAFAFA;
	padding: 20px;
}

#cmp_f080f516-ed4b-492e-b3ae-69cb3b844674 .hero-content h1 {
	color: rgb(230, 198, 154);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_f080f516-ed4b-492e-b3ae-69cb3b844674 .hero-content h2 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 22px;
}

#cmp_f080f516-ed4b-492e-b3ae-69cb3b844674 .hero-content h3 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 15px;
}

#cmp_f080f516-ed4b-492e-b3ae-69cb3b844674 .hero-content p {
	color: #B0B0B0;
	font-family: Merriweather;
	font-size: 13px;
}

#cmp_f080f516-ed4b-492e-b3ae-69cb3b844674 .hero-content .btn {
	background-color: rgb(230, 198, 154);
	color: #FFFFFF;
	font-family: Merriweather;
	font-size: 12px;
}

#cmp_f080f516-ed4b-492e-b3ae-69cb3b844674 .hero-content .btn:hover {
	background-color: #D7BEE5;
	color: #FFFFFF;
}

#cmp_f080f516-ed4b-492e-b3ae-69cb3b844674 h3 {
	margin-bottom: 35px;
}
#cmp_f080f516-ed4b-492e-b3ae-69cb3b844674 p {
	margin-bottom: 35px;
}