/*
 * css/style.css
 */
/* Globals
------------------------------*/
body {
	background-color: rgb(239, 210, 161);
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	letter-spacing: 0.077em;
	line-height: 1.5em;
}

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

h1 {
	color: #333333;
	font-family: Courgette;
	font-size: 40px;
}

h2 {
	color: rgba(245, 166, 35, 0.8);
	font-family: Lato;
	font-size: 22px;
}

h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

p {
	line-height: 1.5em;
}

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

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

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

.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 #C39D6A;
	border-radius: 15px;
	color: #C39D6A;
}

.btn-small:hover,
.btn-small:focus,
.btn-small:active,
.btn-small:active:focus {
	background-color: #333333;
	border: 1px solid #333333;
	color: #C39D6A !important;
}

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

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

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

.btn-secondary {
	background-color: #333333;
	color: #FAFAFA;
	font-family: Lato;
	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: #C39D6A;
	border: 1px solid #C39D6A;
}

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

/* 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: #333333;
}
.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: #C39D6A;
	border: none;
	border-radius: 25px;
	color: #FFFFFF;
	font-family: Lato;
	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: #333333;
	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: #C39D6A;
}

.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 #C39D6A;
	color: #C39D6A;
	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: #333333;
	border-color: #333333;
	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/checkout/cmp_007f2f9f-d676-4e69-a07a-c6e6d760ea45/component.css
 */
#cmp_007f2f9f-d676-4e69-a07a-c6e6d760ea45 .checkout_content {
  overflow: auto;
}

#cmp_007f2f9f-d676-4e69-a07a-c6e6d760ea45 .checkout_content section {
  border-color: #F5F5F5;
}

#cmp_007f2f9f-d676-4e69-a07a-c6e6d760ea45 .cart_listing table {
  border-color: #F5F5F5;
}

/*
 * components/customer/account/cmp_f676bd17-19c8-4361-8b66-d7a69a2b1708/component.css
 */

/*
 * components/customer/edit/cmp_478e28f5-a294-4fe6-8717-90bc678f0a4e/component.css
 */

/*
 * components/customer/forgot_password/cmp_655ca74e-b93b-4606-9fc4-535f0234ad06/component.css
 */
#cmp_655ca74e-b93b-4606-9fc4-535f0234ad06 {
	background-color: #FFFFFF;
}

#cmp_655ca74e-b93b-4606-9fc4-535f0234ad06 h1 {
	color: #333333;
	font-family: Courgette;
	font-size: 40px;
}

#cmp_655ca74e-b93b-4606-9fc4-535f0234ad06 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_655ca74e-b93b-4606-9fc4-535f0234ad06 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_655ca74e-b93b-4606-9fc4-535f0234ad06 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_655ca74e-b93b-4606-9fc4-535f0234ad06 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_655ca74e-b93b-4606-9fc4-535f0234ad06 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_655ca74e-b93b-4606-9fc4-535f0234ad06  {
	padding: 50px 0;
}
#cmp_655ca74e-b93b-4606-9fc4-535f0234ad06 h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/forgot_password/cmp_8b71e1c1-6acb-4ff8-b052-bf932de467d6/component.css
 */

#cmp_8b71e1c1-6acb-4ff8-b052-bf932de467d6  {
	padding-bottom: 120px;
}
/*
 * components/customer/login/cmp_4c704806-29c4-4ef7-9d9d-e6368b52b42f/component.css
 */
#cmp_4c704806-29c4-4ef7-9d9d-e6368b52b42f {
	background-color: #FFFFFF;
}

#cmp_4c704806-29c4-4ef7-9d9d-e6368b52b42f h1 {
	color: #333333;
	font-family: Courgette;
	font-size: 40px;
}

#cmp_4c704806-29c4-4ef7-9d9d-e6368b52b42f h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_4c704806-29c4-4ef7-9d9d-e6368b52b42f h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_4c704806-29c4-4ef7-9d9d-e6368b52b42f p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_4c704806-29c4-4ef7-9d9d-e6368b52b42f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_4c704806-29c4-4ef7-9d9d-e6368b52b42f ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_4c704806-29c4-4ef7-9d9d-e6368b52b42f  {
	padding: 50px 0;
}
#cmp_4c704806-29c4-4ef7-9d9d-e6368b52b42f h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/login/cmp_eb2509f9-95c5-4c31-a89c-9f0aa9ca0f25/component.css
 */

#cmp_eb2509f9-95c5-4c31-a89c-9f0aa9ca0f25  {
	padding-bottom: 120px;
}
/*
 * components/customer/order/cmp_9b38ca12-5ed7-4e0b-bcc9-2ff68e4e775d/component.css
 */

/*
 * components/customer/orders/cmp_929d9ae7-44df-415f-97fa-1d8d5484f75a/component.css
 */

/*
 * components/customer/password_reset/cmp_2e1b2858-dbe9-4290-a9a6-9d082f4e416d/component.css
 */

#cmp_2e1b2858-dbe9-4290-a9a6-9d082f4e416d  {
	padding-bottom: 120px;
}
/*
 * components/customer/password_reset/cmp_5f35fbae-471b-4d6b-aa0e-4bd153235fe9/component.css
 */
#cmp_5f35fbae-471b-4d6b-aa0e-4bd153235fe9 {
	background-color: #FFFFFF;
}

#cmp_5f35fbae-471b-4d6b-aa0e-4bd153235fe9 h1 {
	color: #333333;
	font-family: Courgette;
	font-size: 40px;
}

#cmp_5f35fbae-471b-4d6b-aa0e-4bd153235fe9 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_5f35fbae-471b-4d6b-aa0e-4bd153235fe9 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_5f35fbae-471b-4d6b-aa0e-4bd153235fe9 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_5f35fbae-471b-4d6b-aa0e-4bd153235fe9 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_5f35fbae-471b-4d6b-aa0e-4bd153235fe9 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_5f35fbae-471b-4d6b-aa0e-4bd153235fe9  {
	padding: 50px 0;
}
#cmp_5f35fbae-471b-4d6b-aa0e-4bd153235fe9 h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/thank_you/cmp_2d04a120-b942-4579-8f21-de32a84c26eb/component.css
 */

/*
 * components/global/cmp_02e2c92f-620c-4daf-b51c-0354eece9ced/component.css
 */
#cmp_02e2c92f-620c-4daf-b51c-0354eece9ced.navbar {
	background-color: #FAFAFA;
	border-radius: 0;
	border-top: 4px solid #C39D6A;
	padding: 0;

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

#cmp_02e2c92f-620c-4daf-b51c-0354eece9ced.navbar a:hover,
#cmp_02e2c92f-620c-4daf-b51c-0354eece9ced.navbar a:focus,
#cmp_02e2c92f-620c-4daf-b51c-0354eece9ced.navbar a:active {
	color: #333333;
}

#cmp_02e2c92f-620c-4daf-b51c-0354eece9ced .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: #333333;
	font-family: Josefin Sans;
	font-size: 28px;
	margin: 0;
	padding: 15px;
	text-align: center;
}

#cmp_02e2c92f-620c-4daf-b51c-0354eece9ced .navbar-brand img {
	max-width: 100%;
}

#cmp_02e2c92f-620c-4daf-b51c-0354eece9ced.navbar .navbar-toggler {
	background-color: #C39D6A;
	border-radius: 0;
	color: #FFFFFF;
	font-size: 12px;
	letter-spacing: 0.167em;
	padding: 15px;
	text-transform: uppercase;
}

#cmp_02e2c92f-620c-4daf-b51c-0354eece9ced.navbar .navbar-toggler:hover,
#cmp_02e2c92f-620c-4daf-b51c-0354eece9ced.navbar .navbar-toggler:focus,
#cmp_02e2c92f-620c-4daf-b51c-0354eece9ced.navbar .navbar-toggler:active {
	background-color: #333333;
	color: #FFFFFF;
}

#cmp_02e2c92f-620c-4daf-b51c-0354eece9ced .navbar-nav {
	align-items: center;
	display: flex;
	flex-direction: column;
	margin: 0;
	padding-top: 15px;
	padding-bottom: 15px;
}

#cmp_02e2c92f-620c-4daf-b51c-0354eece9ced .navbar-nav li {
	padding-top: 10px;
	padding-bottom: 10px;
}

#cmp_02e2c92f-620c-4daf-b51c-0354eece9ced .navbar-nav .nav-link {
	color: #C39D6A;
	font-family: Lato;
	font-size: 16px;;
	letter-spacing: 1px;
	padding: 8px 18px;
	text-align: center;
	text-transform: uppercase;
}

@media (min-width: 768px) {
	#cmp_02e2c92f-620c-4daf-b51c-0354eece9ced.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_02e2c92f-620c-4daf-b51c-0354eece9ced .navbar-brand {
		padding: 0;
		padding-bottom: 15px;
	}
	#cmp_02e2c92f-620c-4daf-b51c-0354eece9ced .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_02e2c92f-620c-4daf-b51c-0354eece9ced .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_02e2c92f-620c-4daf-b51c-0354eece9ced .navbar-nav li {
		padding: 0;
	}
}

/*
 * components/global/cmp_377f77c0-fcb2-4871-9040-beb99fb6ed1d/component.css
 */
#cmp_377f77c0-fcb2-4871-9040-beb99fb6ed1d {
	background-color: ;
}

#cmp_377f77c0-fcb2-4871-9040-beb99fb6ed1d h1 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_377f77c0-fcb2-4871-9040-beb99fb6ed1d h2 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_377f77c0-fcb2-4871-9040-beb99fb6ed1d h3 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_377f77c0-fcb2-4871-9040-beb99fb6ed1d p {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_377f77c0-fcb2-4871-9040-beb99fb6ed1d .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_377f77c0-fcb2-4871-9040-beb99fb6ed1d .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_377f77c0-fcb2-4871-9040-beb99fb6ed1d .btn {
	background-color: ;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_377f77c0-fcb2-4871-9040-beb99fb6ed1d .btn:hover {
	background-color: ;
	color: ;
}

#cmp_377f77c0-fcb2-4871-9040-beb99fb6ed1d ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_377f77c0-fcb2-4871-9040-beb99fb6ed1d ul {
	list-style: disc;
	list-style-position: inside;
	color: ;
	font-family: ;
	font-size: ;
}

/*
 * components/global/cmp_6a2e06b3-d4f2-4faa-92b3-92ee1e7ab155/component.css
 */
#cmp_6a2e06b3-d4f2-4faa-92b3-92ee1e7ab155.footer {
	background-color: #FAFAFA;
	font-family: Lato;
	color: #B0B0B0;
	padding-top: 10px;
	padding-bottom: 10px;

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

#cmp_6a2e06b3-d4f2-4faa-92b3-92ee1e7ab155 .footer-social {
	padding-top: 15px;
	padding-bottom: 15px;
	text-align: center;
}

#cmp_6a2e06b3-d4f2-4faa-92b3-92ee1e7ab155 .footer-social a {
	display: inline-block;
	padding-left: 5px;
	padding-right: 5px;
}

#cmp_6a2e06b3-d4f2-4faa-92b3-92ee1e7ab155 .footer-social svg path {
	fill: #C39D6A;
}

#cmp_6a2e06b3-d4f2-4faa-92b3-92ee1e7ab155 .footer-social a:hover svg path,
#cmp_6a2e06b3-d4f2-4faa-92b3-92ee1e7ab155 .footer-social a:focus svg path,
#cmp_6a2e06b3-d4f2-4faa-92b3-92ee1e7ab155 .footer-social a:active svg path {
	fill: #333333;
}

#cmp_6a2e06b3-d4f2-4faa-92b3-92ee1e7ab155.footer .toggler-container {
	padding-top: 15px;
	padding-bottom: 15px;
	text-align: center;
}

#cmp_6a2e06b3-d4f2-4faa-92b3-92ee1e7ab155.footer .navbar-toggler {
	color: #C39D6A;
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

#cmp_6a2e06b3-d4f2-4faa-92b3-92ee1e7ab155 .footer-cc {
	border-top: 1px solid #e1e1e1;
	letter-spacing: 1px;
	text-align: center;
}

#cmp_6a2e06b3-d4f2-4faa-92b3-92ee1e7ab155 .footer-cc img {
	padding-top: 15px;
	padding-bottom: 15px;
}

#cmp_6a2e06b3-d4f2-4faa-92b3-92ee1e7ab155 .footer-cc p,
#cmp_6a2e06b3-d4f2-4faa-92b3-92ee1e7ab155 .footer-tributes p {
	padding-top: 15px;
	padding-bottom: 15px;
	margin: 0;
}

#cmp_6a2e06b3-d4f2-4faa-92b3-92ee1e7ab155 .footer-tributes p a {
	color: #B0B0B0;
	padding: 0;
}

#cmp_6a2e06b3-d4f2-4faa-92b3-92ee1e7ab155 .footer-tributes p a:hover,
#cmp_6a2e06b3-d4f2-4faa-92b3-92ee1e7ab155 .footer-tributes p a:focus,
#cmp_6a2e06b3-d4f2-4faa-92b3-92ee1e7ab155 .footer-tributes p a:active {
	color: #B0B0B0;
	text-decoration: none;
}

#cmp_6a2e06b3-d4f2-4faa-92b3-92ee1e7ab155 .footer-directory {
	text-align: center;
}

#cmp_6a2e06b3-d4f2-4faa-92b3-92ee1e7ab155 .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_6a2e06b3-d4f2-4faa-92b3-92ee1e7ab155 .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_6a2e06b3-d4f2-4faa-92b3-92ee1e7ab155 .footer-list .footer-link {
	color: #C39D6A;
	font-family: Lato;
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

#cmp_6a2e06b3-d4f2-4faa-92b3-92ee1e7ab155 .footer-list .footer-link:hover,
#cmp_6a2e06b3-d4f2-4faa-92b3-92ee1e7ab155 .footer-list .footer-link:focus,
#cmp_6a2e06b3-d4f2-4faa-92b3-92ee1e7ab155 .footer-list .footer-link:active {
	color: #333333;
	text-decoration: none;
}

@media (max-width: 767px) {
	#cmp_6a2e06b3-d4f2-4faa-92b3-92ee1e7ab155 .col-sm-12,
	#cmp_6a2e06b3-d4f2-4faa-92b3-92ee1e7ab155 .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_6a2e06b3-d4f2-4faa-92b3-92ee1e7ab155.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_6a2e06b3-d4f2-4faa-92b3-92ee1e7ab155 .footer-directory {
		-webkit-order: 1;
		-moz-order: 1;
		-ms-order: 1;
		order: 1;

		text-align: left;
	}
	#cmp_6a2e06b3-d4f2-4faa-92b3-92ee1e7ab155 .footer-social {
		-webkit-order: 2;
		-moz-order: 2;
		-ms-order: 2;
		order: 2;

		padding-top: 0;
		padding-bottom: 0;
		text-align: right;
	}
	#cmp_6a2e06b3-d4f2-4faa-92b3-92ee1e7ab155 .footer-cc {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}
	#cmp_6a2e06b3-d4f2-4faa-92b3-92ee1e7ab155 .footer-cc p {
		display: inline-block;
	}
}

@media (min-width: 992px) {
	#cmp_6a2e06b3-d4f2-4faa-92b3-92ee1e7ab155 .footer-cc {
		-webkit-order: 2;
		-moz-order: 2;
		-ms-order: 2;
		order: 2;

		border-top: none;
	}
	#cmp_6a2e06b3-d4f2-4faa-92b3-92ee1e7ab155 .footer-cc p {
		display: block;
	}
	#cmp_6a2e06b3-d4f2-4faa-92b3-92ee1e7ab155 .footer-social {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}
}

/*
 * components/index/cmp_43a1be1d-3da1-4b26-953d-7271c39cf8e7/component.css
 */
#cmp_43a1be1d-3da1-4b26-953d-7271c39cf8e7 {
	padding: 0;
	background-color: #FFFFFF;
}

#cmp_43a1be1d-3da1-4b26-953d-7271c39cf8e7 .content {
	margin: 0 auto;
	padding: 50px;
}

@media (min-width: 768px) {
	#cmp_43a1be1d-3da1-4b26-953d-7271c39cf8e7 .col-md-4:nth-of-type(2n + 1) {
		order: 1;
	}
	#cmp_43a1be1d-3da1-4b26-953d-7271c39cf8e7 .col-md-4:nth-of-type(2n) {
		order: 2;
	}
}

#cmp_43a1be1d-3da1-4b26-953d-7271c39cf8e7 h1 {
	color: #333333;
	font-family: Courgette;
	font-size: 40px;
}

#cmp_43a1be1d-3da1-4b26-953d-7271c39cf8e7 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_43a1be1d-3da1-4b26-953d-7271c39cf8e7 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_43a1be1d-3da1-4b26-953d-7271c39cf8e7 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_43a1be1d-3da1-4b26-953d-7271c39cf8e7 h3 {
	margin-bottom: 25px;
}
/*
 * components/index/cmp_89219acd-c578-48a2-b636-53b9c21059b7/component.css
 */
#cmp_89219acd-c578-48a2-b636-53b9c21059b7 {
	background-color: #FAFAFA;
}

#cmp_89219acd-c578-48a2-b636-53b9c21059b7 h1 {
	color: #333333;
	font-family: Courgette;
	font-size: 40px;
}

#cmp_89219acd-c578-48a2-b636-53b9c21059b7 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_89219acd-c578-48a2-b636-53b9c21059b7 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_89219acd-c578-48a2-b636-53b9c21059b7 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_89219acd-c578-48a2-b636-53b9c21059b7 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_89219acd-c578-48a2-b636-53b9c21059b7 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_89219acd-c578-48a2-b636-53b9c21059b7 .btn {
	background-color: #C39D6A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 12px;
}

#cmp_89219acd-c578-48a2-b636-53b9c21059b7 .btn:hover {
	background-color: #D7BEE5;
	color: #FFFFFF;
}

#cmp_89219acd-c578-48a2-b636-53b9c21059b7 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_89219acd-c578-48a2-b636-53b9c21059b7 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_89219acd-c578-48a2-b636-53b9c21059b7  {
	padding: 60px 0;
}
#cmp_89219acd-c578-48a2-b636-53b9c21059b7 h1 {
	margin-bottom: 15px;
}
#cmp_89219acd-c578-48a2-b636-53b9c21059b7 p {
	margin-bottom: 20px;
}
/*
 * components/index/cmp_bdcf4a1e-d79e-492f-9a45-83be81065e8f/component.css
 */
#cmp_bdcf4a1e-d79e-492f-9a45-83be81065e8f {
	padding: 0;
}

#cmp_bdcf4a1e-d79e-492f-9a45-83be81065e8f .hero-content {
	background-color: #333333;
	padding: 20px;
}

#cmp_bdcf4a1e-d79e-492f-9a45-83be81065e8f .hero-content h1 {
	color: #C39D6A;
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_bdcf4a1e-d79e-492f-9a45-83be81065e8f .hero-content h2 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 22px;
}

#cmp_bdcf4a1e-d79e-492f-9a45-83be81065e8f .hero-content h3 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 15px;
}

#cmp_bdcf4a1e-d79e-492f-9a45-83be81065e8f .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_bdcf4a1e-d79e-492f-9a45-83be81065e8f .hero-content .btn {
	background-color: #C39D6A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 12px;
}

#cmp_bdcf4a1e-d79e-492f-9a45-83be81065e8f .hero-content .btn:hover {
	background-color: #D7BEE5;
	color: #FFFFFF;
}

#cmp_bdcf4a1e-d79e-492f-9a45-83be81065e8f h1 {
	margin-top: 20px;
	margin-bottom: 10px;
}
#cmp_bdcf4a1e-d79e-492f-9a45-83be81065e8f p {
	margin-bottom: 25px;
}
/*
 * components/index/cmp_f47943a5-a47d-4830-af8d-7a51594b5980/component.css
 */
#cmp_f47943a5-a47d-4830-af8d-7a51594b5980 {
	background-color: #FFFFFF;
}

#cmp_f47943a5-a47d-4830-af8d-7a51594b5980 h1 {
	color: #333333;
	font-family: Courgette;
	font-size: 40px;
}

#cmp_f47943a5-a47d-4830-af8d-7a51594b5980 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_f47943a5-a47d-4830-af8d-7a51594b5980 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_f47943a5-a47d-4830-af8d-7a51594b5980 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_f47943a5-a47d-4830-af8d-7a51594b5980 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_f47943a5-a47d-4830-af8d-7a51594b5980 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_f47943a5-a47d-4830-af8d-7a51594b5980  {
	padding: 60px 0;
}
#cmp_f47943a5-a47d-4830-af8d-7a51594b5980 h1 {
	margin-bottom: 40px;
}
#cmp_f47943a5-a47d-4830-af8d-7a51594b5980 h3 {
	margin-bottom: 15px;
}
#cmp_f47943a5-a47d-4830-af8d-7a51594b5980 p {
	border-bottom: 1px solid #E1E1E1;
	margin-bottom: 25px;
	padding-bottom: 25px;
}
#cmp_f47943a5-a47d-4830-af8d-7a51594b5980 p:last-of-type {
	border-bottom: none;
	padding-bottom: 0;
}
/*
 * components/past_boxes/cmp_670a07d6-1e7c-41b2-96aa-6c2205688ab0/component.css
 */
#cmp_670a07d6-1e7c-41b2-96aa-6c2205688ab0 {
	background-color: #FFFFFF;
}

#cmp_670a07d6-1e7c-41b2-96aa-6c2205688ab0 h1 {
	color: #333333;
	font-family: Courgette;
	font-size: 40px;
}

#cmp_670a07d6-1e7c-41b2-96aa-6c2205688ab0 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_670a07d6-1e7c-41b2-96aa-6c2205688ab0 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_670a07d6-1e7c-41b2-96aa-6c2205688ab0 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_670a07d6-1e7c-41b2-96aa-6c2205688ab0 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_670a07d6-1e7c-41b2-96aa-6c2205688ab0 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_670a07d6-1e7c-41b2-96aa-6c2205688ab0 .btn {
	background-color: #C39D6A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 12px;
}

#cmp_670a07d6-1e7c-41b2-96aa-6c2205688ab0 .btn:hover {
	background-color: #D7BEE5;
	color: #FFFFFF;
}

#cmp_670a07d6-1e7c-41b2-96aa-6c2205688ab0 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_670a07d6-1e7c-41b2-96aa-6c2205688ab0 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/past_boxes/cmp_7a071299-09fe-47ef-b48e-b60e5dd43a7f/component.css
 */
#cmp_7a071299-09fe-47ef-b48e-b60e5dd43a7f img {
	max-width: 100%;
}

/*
 * components/past_boxes/cmp_9ebe6054-cfee-4c6e-ade1-92cd41a49ae4/component.css
 */
#cmp_9ebe6054-cfee-4c6e-ade1-92cd41a49ae4 img {
	max-width: 100%;
}

/*
 * components/past_boxes/cmp_a3a33918-5110-4bda-b2d5-73f59d24f2ec/component.css
 */
#cmp_a3a33918-5110-4bda-b2d5-73f59d24f2ec img {
	max-width: 100%;
}

/*
 * components/past_boxes/cmp_c97ad39f-57ee-41ed-8dd8-3e8834aca571/component.css
 */
#cmp_c97ad39f-57ee-41ed-8dd8-3e8834aca571 {
	background-color: #FFFFFF;
}

#cmp_c97ad39f-57ee-41ed-8dd8-3e8834aca571 h1 {
	color: #333333;
	font-family: Courgette;
	font-size: 40px;
}

#cmp_c97ad39f-57ee-41ed-8dd8-3e8834aca571 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_c97ad39f-57ee-41ed-8dd8-3e8834aca571 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_c97ad39f-57ee-41ed-8dd8-3e8834aca571 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_c97ad39f-57ee-41ed-8dd8-3e8834aca571 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_c97ad39f-57ee-41ed-8dd8-3e8834aca571 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/past_boxes/cmp_ec829255-0704-4971-b9e0-8ad1c61dcda2/component.css
 */
#cmp_ec829255-0704-4971-b9e0-8ad1c61dcda2 img {
	max-width: 100%;
}

/*
 * components/privacy_policy/cmp_7545e974-427a-4a1a-be71-a4077d9a91ff/component.css
 */
#cmp_7545e974-427a-4a1a-be71-a4077d9a91ff {
	background-color: #FFFFFF;
}

#cmp_7545e974-427a-4a1a-be71-a4077d9a91ff h1 {
	color: #333333;
	font-family: Courgette;
	font-size: 40px;
}

#cmp_7545e974-427a-4a1a-be71-a4077d9a91ff h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_7545e974-427a-4a1a-be71-a4077d9a91ff h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_7545e974-427a-4a1a-be71-a4077d9a91ff p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_7545e974-427a-4a1a-be71-a4077d9a91ff ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_7545e974-427a-4a1a-be71-a4077d9a91ff ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/privacy_policy/cmp_cc142c90-401e-41e1-a90c-37343d0485e4/component.css
 */
#cmp_cc142c90-401e-41e1-a90c-37343d0485e4 {
	background-color: #FFFFFF;
}

#cmp_cc142c90-401e-41e1-a90c-37343d0485e4 h1 {
	color: #333333;
	font-family: Courgette;
	font-size: 40px;
}

#cmp_cc142c90-401e-41e1-a90c-37343d0485e4 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_cc142c90-401e-41e1-a90c-37343d0485e4 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_cc142c90-401e-41e1-a90c-37343d0485e4 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_cc142c90-401e-41e1-a90c-37343d0485e4 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_cc142c90-401e-41e1-a90c-37343d0485e4 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_cc142c90-401e-41e1-a90c-37343d0485e4 .btn {
	background-color: #C39D6A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 12px;
}

#cmp_cc142c90-401e-41e1-a90c-37343d0485e4 .btn:hover {
	background-color: #D7BEE5;
	color: #FFFFFF;
}

#cmp_cc142c90-401e-41e1-a90c-37343d0485e4 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_cc142c90-401e-41e1-a90c-37343d0485e4 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/shop/listing/cmp_2145a167-ffbd-4a0b-9b82-81bbf4b72070/component.css
 */
#cmp_2145a167-ffbd-4a0b-9b82-81bbf4b72070 {
	justify-content: center;
}

#cmp_2145a167-ffbd-4a0b-9b82-81bbf4b72070 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_320bb7e7-cdd4-4f0b-aaba-2b6f4e05b9b3/component.css
 */
#cmp_320bb7e7-cdd4-4f0b-aaba-2b6f4e05b9b3 {
	background-color: #FFFFFF;
}

#cmp_320bb7e7-cdd4-4f0b-aaba-2b6f4e05b9b3 h1 {
	color: #333333;
	font-family: Courgette;
	font-size: 40px;
}

#cmp_320bb7e7-cdd4-4f0b-aaba-2b6f4e05b9b3 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_320bb7e7-cdd4-4f0b-aaba-2b6f4e05b9b3 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_320bb7e7-cdd4-4f0b-aaba-2b6f4e05b9b3 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_320bb7e7-cdd4-4f0b-aaba-2b6f4e05b9b3 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_320bb7e7-cdd4-4f0b-aaba-2b6f4e05b9b3 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_320bb7e7-cdd4-4f0b-aaba-2b6f4e05b9b3  {
	padding: 50px 0 15px;
}
#cmp_320bb7e7-cdd4-4f0b-aaba-2b6f4e05b9b3 h1 {
	margin-bottom: 15px;
}
/*
 * components/shop/listing/cmp_6c30b0e1-c78a-4b70-a37a-c9662fda80ea/component.css
 */
#cmp_6c30b0e1-c78a-4b70-a37a-c9662fda80ea .shop-listing-item {
	color: #B0B0B0;
}

#cmp_6c30b0e1-c78a-4b70-a37a-c9662fda80ea .shop-listing-item:hover,
#cmp_6c30b0e1-c78a-4b70-a37a-c9662fda80ea .shop-listing-item:focus {
	text-decoration: none;
}

#cmp_6c30b0e1-c78a-4b70-a37a-c9662fda80ea .shop-listing-item__image {
	background-size: cover;
	background-position: center center;
}

#cmp_6c30b0e1-c78a-4b70-a37a-c9662fda80ea .shop-listing-item__name {
	margin: 10px 0;
}

#cmp_6c30b0e1-c78a-4b70-a37a-c9662fda80ea .shop-listing-item__price {
	margin: 10px 0 30px;
}

#cmp_6c30b0e1-c78a-4b70-a37a-c9662fda80ea .product_paging {
	-webkit-display: flex;
	-ms-display: flex;
	display: flex;
	justify-content: center;

	margin: 20px 0;
}

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

#cmp_6c30b0e1-c78a-4b70-a37a-c9662fda80ea .product_page.active a,
#cmp_6c30b0e1-c78a-4b70-a37a-c9662fda80ea .product_page a:hover,
#cmp_6c30b0e1-c78a-4b70-a37a-c9662fda80ea .product_page a:focus,
#cmp_6c30b0e1-c78a-4b70-a37a-c9662fda80ea .next_page a:hover,
#cmp_6c30b0e1-c78a-4b70-a37a-c9662fda80ea .next_page a:focus,
#cmp_6c30b0e1-c78a-4b70-a37a-c9662fda80ea .prev_page a:hover,
#cmp_6c30b0e1-c78a-4b70-a37a-c9662fda80ea .prev_page a:focus {
	text-decoration: none;
	background-color: #F9F9F9;
}

#cmp_6c30b0e1-c78a-4b70-a37a-c9662fda80ea .product_page.active a {
	color: black;
}

/*
 * components/shop/listing/cmp_db17bc47-f27f-46e2-a9b0-6b0f41956263/component.css
 */
#cmp_db17bc47-f27f-46e2-a9b0-6b0f41956263 {
	justify-content: center;
}

#cmp_db17bc47-f27f-46e2-a9b0-6b0f41956263 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

#cmp_db17bc47-f27f-46e2-a9b0-6b0f41956263  {
	border-bottom: 1px solid #E1E1E1;
	margin-bottom: 35px;
	padding-bottom: 35px;
}
/*
 * components/shop/product/cmp_236f4b1c-8640-4261-842b-501875565cf0/component.css
 */
#cmp_236f4b1c-8640-4261-842b-501875565cf0.shop-product-header {
	padding: 50px 0 15px;
}

/*
 * components/shop/product/cmp_8a4ddae7-ae80-449c-bab4-1a7f5a8009ee/component.css
 */
#cmp_8a4ddae7-ae80-449c-bab4-1a7f5a8009ee .shop-product__name {
	margin-bottom: 10px;
}

#cmp_8a4ddae7-ae80-449c-bab4-1a7f5a8009ee .shop-product__price {
	margin-bottom: 20px;
}

#cmp_8a4ddae7-ae80-449c-bab4-1a7f5a8009ee .shop-product select {
	width: auto;
}

#cmp_8a4ddae7-ae80-449c-bab4-1a7f5a8009ee .shop-product__add-to-cart {
	margin-bottom: 20px;
}

#cmp_8a4ddae7-ae80-449c-bab4-1a7f5a8009ee .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin-bottom: 40px;
}

#cmp_8a4ddae7-ae80-449c-bab4-1a7f5a8009ee .shop-product__review-share-desktop .col-xs-6 {
	padding-top: 10px;
}

#cmp_8a4ddae7-ae80-449c-bab4-1a7f5a8009ee .shop-product__review-share-desktop .col-xs-6 + .col-xs-6 {
	border-left: 1px solid #E1E1E1;
}

/*
 * components/sold_out/cmp_4bdb83ee-4aad-4244-9043-cf26d957616f/component.css
 */
#cmp_4bdb83ee-4aad-4244-9043-cf26d957616f {
	background-color: #FFFFFF;
}

#cmp_4bdb83ee-4aad-4244-9043-cf26d957616f h1 {
	color: #333333;
	font-family: Courgette;
	font-size: 40px;
}

#cmp_4bdb83ee-4aad-4244-9043-cf26d957616f h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_4bdb83ee-4aad-4244-9043-cf26d957616f h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_4bdb83ee-4aad-4244-9043-cf26d957616f p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_4bdb83ee-4aad-4244-9043-cf26d957616f .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_4bdb83ee-4aad-4244-9043-cf26d957616f .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_4bdb83ee-4aad-4244-9043-cf26d957616f .btn {
	background-color: #C39D6A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 12px;
}

#cmp_4bdb83ee-4aad-4244-9043-cf26d957616f .btn:hover {
	background-color: #D7BEE5;
	color: #FFFFFF;
}

#cmp_4bdb83ee-4aad-4244-9043-cf26d957616f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_4bdb83ee-4aad-4244-9043-cf26d957616f ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_4bdb83ee-4aad-4244-9043-cf26d957616f  {
	padding-bottom: 50px;
}
/*
 * components/sold_out/cmp_df787447-a998-4147-8679-ae1616c130c4/component.css
 */
#cmp_df787447-a998-4147-8679-ae1616c130c4 img {
	max-width: 100%;
}

#cmp_df787447-a998-4147-8679-ae1616c130c4  {
	padding-top: 50px;
}
/*
 * components/subscribe/cmp_376bff3f-74b9-4aa8-9b5c-0c5a313f5566/component.css
 */
#cmp_376bff3f-74b9-4aa8-9b5c-0c5a313f5566 {
	background-color: #FFFFFF;
}

#cmp_376bff3f-74b9-4aa8-9b5c-0c5a313f5566 h1 {
	color: #333333;
	font-family: Courgette;
	font-size: 40px;
}

#cmp_376bff3f-74b9-4aa8-9b5c-0c5a313f5566 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_376bff3f-74b9-4aa8-9b5c-0c5a313f5566 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_376bff3f-74b9-4aa8-9b5c-0c5a313f5566 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_376bff3f-74b9-4aa8-9b5c-0c5a313f5566 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_376bff3f-74b9-4aa8-9b5c-0c5a313f5566 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/subscribe/cmp_925ce56a-6657-4037-a15d-33140c8477dc/component.css
 */
#cmp_925ce56a-6657-4037-a15d-33140c8477dc {
	background-color: #FFFFFF;
}

#cmp_925ce56a-6657-4037-a15d-33140c8477dc h1 {
	color: #333333;
	font-family: Courgette;
	font-size: 40px;
}

#cmp_925ce56a-6657-4037-a15d-33140c8477dc h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_925ce56a-6657-4037-a15d-33140c8477dc h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_925ce56a-6657-4037-a15d-33140c8477dc p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_925ce56a-6657-4037-a15d-33140c8477dc ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_925ce56a-6657-4037-a15d-33140c8477dc ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/subscribe/cmp_dd5dc403-ebcd-4dcd-ba2b-a4f411d5fa72/component.css
 */

/*
 * components/subscribe/cmp_e076e952-fce4-4148-bcfd-d8b60c612cc3/component.css
 */
#cmp_e076e952-fce4-4148-bcfd-d8b60c612cc3 {
	background-color: #FFFFFF;
}

#cmp_e076e952-fce4-4148-bcfd-d8b60c612cc3 h1 {
	color: #333333;
	font-family: Courgette;
	font-size: 40px;
}

#cmp_e076e952-fce4-4148-bcfd-d8b60c612cc3 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_e076e952-fce4-4148-bcfd-d8b60c612cc3 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_e076e952-fce4-4148-bcfd-d8b60c612cc3 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_e076e952-fce4-4148-bcfd-d8b60c612cc3 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_e076e952-fce4-4148-bcfd-d8b60c612cc3 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/subscribe_flow/survey_step/cmp_c6cbe476-42a4-4111-914d-ab7bafb34210/component.css
 */
#cmp_c6cbe476-42a4-4111-914d-ab7bafb34210 {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/survey_step/cmp_ef2d71be-c3fa-4726-bfe2-f2ba775a6605/component.css
 */
#cmp_ef2d71be-c3fa-4726-bfe2-f2ba775a6605.survey h2 {
	margin-bottom: 1em;
}

#cmp_ef2d71be-c3fa-4726-bfe2-f2ba775a6605.survey .radio input[type="radio"],
#cmp_ef2d71be-c3fa-4726-bfe2-f2ba775a6605.survey .checkbox input[type="checkbox"] {
	margin-right: 0.5em;
}

/*
 * components/subscribe_flow/terms_step/cmp_43e114bb-d02a-4bb1-8cf6-d59d6af5d85b/component.css
 */
#cmp_43e114bb-d02a-4bb1-8cf6-d59d6af5d85b {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/terms_step/cmp_c69e84e4-d13c-4005-bdbe-d6fb9646ab4c/component.css
 */

/*
 * components/subscribe_flow/variant_step/cmp_414c430d-d202-4690-868c-99df69be7136/component.css
 */
#cmp_414c430d-d202-4690-868c-99df69be7136 {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/variant_step/cmp_b398aebe-416e-43f0-a64e-e2ab3cf96b06/component.css
 */

/*
 * components/terms_and_conditions/cmp_cd62cf6f-82c4-42ce-9730-76dacc491689/component.css
 */
#cmp_cd62cf6f-82c4-42ce-9730-76dacc491689 {
	background-color: #FFFFFF;
}

#cmp_cd62cf6f-82c4-42ce-9730-76dacc491689 h1 {
	color: #333333;
	font-family: Courgette;
	font-size: 40px;
}

#cmp_cd62cf6f-82c4-42ce-9730-76dacc491689 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_cd62cf6f-82c4-42ce-9730-76dacc491689 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_cd62cf6f-82c4-42ce-9730-76dacc491689 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_cd62cf6f-82c4-42ce-9730-76dacc491689 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_cd62cf6f-82c4-42ce-9730-76dacc491689 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_cd62cf6f-82c4-42ce-9730-76dacc491689 .btn {
	background-color: #C39D6A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 12px;
}

#cmp_cd62cf6f-82c4-42ce-9730-76dacc491689 .btn:hover {
	background-color: #D7BEE5;
	color: #FFFFFF;
}

#cmp_cd62cf6f-82c4-42ce-9730-76dacc491689 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_cd62cf6f-82c4-42ce-9730-76dacc491689 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/terms_and_conditions/cmp_d6550984-2a84-45fb-b842-8ef63f8b1b06/component.css
 */
#cmp_d6550984-2a84-45fb-b842-8ef63f8b1b06 {
	background-color: #FFFFFF;
}

#cmp_d6550984-2a84-45fb-b842-8ef63f8b1b06 h1 {
	color: #333333;
	font-family: Courgette;
	font-size: 40px;
}

#cmp_d6550984-2a84-45fb-b842-8ef63f8b1b06 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_d6550984-2a84-45fb-b842-8ef63f8b1b06 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_d6550984-2a84-45fb-b842-8ef63f8b1b06 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_d6550984-2a84-45fb-b842-8ef63f8b1b06 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_d6550984-2a84-45fb-b842-8ef63f8b1b06 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/view-cart/cmp_5e4e7a16-98b8-43ad-bb1e-9eb893eddcee/component.css
 */
#cmp_5e4e7a16-98b8-43ad-bb1e-9eb893eddcee {
	padding: 15px 15px 100px 15px;
}

#cmp_5e4e7a16-98b8-43ad-bb1e-9eb893eddcee .cart-thead {
	border-bottom: 1px solid #E1E1E1;
	padding: 10px 0;
}

#cmp_5e4e7a16-98b8-43ad-bb1e-9eb893eddcee .cart-thead h3 {
	text-transform: uppercase;
}

#cmp_5e4e7a16-98b8-43ad-bb1e-9eb893eddcee .cart-item {
	border: 1px solid #E1E1E1;
	padding: 25px 0;
	position: relative;
}

#cmp_5e4e7a16-98b8-43ad-bb1e-9eb893eddcee .product-main {
	margin-bottom: 15px;
}

#cmp_5e4e7a16-98b8-43ad-bb1e-9eb893eddcee .product-label p {
	margin: 0;
}

#cmp_5e4e7a16-98b8-43ad-bb1e-9eb893eddcee .product-label .info {
	color: #333333;
	text-align: right;
	text-transform: uppercase;
}

#cmp_5e4e7a16-98b8-43ad-bb1e-9eb893eddcee .product-label .meta {
	color: #333333;
	font-size: 15px;
}

#cmp_5e4e7a16-98b8-43ad-bb1e-9eb893eddcee .product-rem-btn {
	position: absolute;
	right: 1%;
	top: 1%;
}

#cmp_5e4e7a16-98b8-43ad-bb1e-9eb893eddcee figure {
	margin: 0 0 15px 0;
}

#cmp_5e4e7a16-98b8-43ad-bb1e-9eb893eddcee .cart-subtotal {
	margin: 50px 0 0 0;
}

#cmp_5e4e7a16-98b8-43ad-bb1e-9eb893eddcee .cart-subtotal h1 {
	margin: 0 0 15px 0;
}

#cmp_5e4e7a16-98b8-43ad-bb1e-9eb893eddcee .cart-subtotal h3 {
	margin: 0 0 25px 0;
	text-transform: uppercase;
}

#cmp_5e4e7a16-98b8-43ad-bb1e-9eb893eddcee .cart-subtotal p {
	margin: 0 0 25px 0;
}

@media (min-width: 768px) {
	#cmp_5e4e7a16-98b8-43ad-bb1e-9eb893eddcee .cart-item {
		border-width: 0 0 1px 0;
	}
	#cmp_5e4e7a16-98b8-43ad-bb1e-9eb893eddcee .product-rem-btn {
		top: 40%;
	}
	#cmp_5e4e7a16-98b8-43ad-bb1e-9eb893eddcee figure {
		margin: 0;
	}
}

/*
 * components/view-cart/cmp_c1d2dc69-38a1-47ee-bcd1-0f3b9f1018bc/component.css
 */
#cmp_c1d2dc69-38a1-47ee-bcd1-0f3b9f1018bc {
	background-color: #FFFFFF;
}

#cmp_c1d2dc69-38a1-47ee-bcd1-0f3b9f1018bc h1 {
	color: #333333;
	font-family: Courgette;
	font-size: 40px;
}

#cmp_c1d2dc69-38a1-47ee-bcd1-0f3b9f1018bc h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_c1d2dc69-38a1-47ee-bcd1-0f3b9f1018bc h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_c1d2dc69-38a1-47ee-bcd1-0f3b9f1018bc p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_c1d2dc69-38a1-47ee-bcd1-0f3b9f1018bc ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_c1d2dc69-38a1-47ee-bcd1-0f3b9f1018bc ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_c1d2dc69-38a1-47ee-bcd1-0f3b9f1018bc  {
	padding: 50px 0;;
}
#cmp_c1d2dc69-38a1-47ee-bcd1-0f3b9f1018bc h1 {
	margin-bottom: 15px;
}
/*
 * components/whats_inside/cmp_21f24165-4a48-433f-a81c-aad990fa9ea6/component.css
 */
#cmp_21f24165-4a48-433f-a81c-aad990fa9ea6 {
	background-color: #FFFFFF;
}

#cmp_21f24165-4a48-433f-a81c-aad990fa9ea6 h1 {
	color: #333333;
	font-family: Courgette;
	font-size: 40px;
}

#cmp_21f24165-4a48-433f-a81c-aad990fa9ea6 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_21f24165-4a48-433f-a81c-aad990fa9ea6 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_21f24165-4a48-433f-a81c-aad990fa9ea6 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_21f24165-4a48-433f-a81c-aad990fa9ea6 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_21f24165-4a48-433f-a81c-aad990fa9ea6 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_21f24165-4a48-433f-a81c-aad990fa9ea6  {
	padding-top: 60px;
}
#cmp_21f24165-4a48-433f-a81c-aad990fa9ea6 h1 {
	margin-bottom: 15px;
}
/*
 * components/whats_inside/cmp_33ea9005-5f5b-4c45-9c43-3b1058cec71c/component.css
 */
#cmp_33ea9005-5f5b-4c45-9c43-3b1058cec71c {
	padding: 0;
}

#cmp_33ea9005-5f5b-4c45-9c43-3b1058cec71c .hero-content {
	background-color: rgb(0, 0, 0);
	padding: 20px;
}

#cmp_33ea9005-5f5b-4c45-9c43-3b1058cec71c .hero-content h1 {
	color: #C39D6A;
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_33ea9005-5f5b-4c45-9c43-3b1058cec71c .hero-content h2 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 22px;
}

#cmp_33ea9005-5f5b-4c45-9c43-3b1058cec71c .hero-content h3 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 15px;
}

#cmp_33ea9005-5f5b-4c45-9c43-3b1058cec71c .hero-content p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_33ea9005-5f5b-4c45-9c43-3b1058cec71c .hero-content .btn {
	background-color: #C39D6A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 12px;
}

#cmp_33ea9005-5f5b-4c45-9c43-3b1058cec71c .hero-content .btn:hover {
	background-color: #D7BEE5;
	color: #FFFFFF;
}

#cmp_33ea9005-5f5b-4c45-9c43-3b1058cec71c h3 {
	margin-bottom: 35px;
}
#cmp_33ea9005-5f5b-4c45-9c43-3b1058cec71c p {
	margin-bottom: 35px;
}
/*
 * components/whats_inside/cmp_d157d091-0f0e-4996-80a5-47787edcfffd/component.css
 */
#cmp_d157d091-0f0e-4996-80a5-47787edcfffd {
	background-color: #FFFFFF;
}

#cmp_d157d091-0f0e-4996-80a5-47787edcfffd h1 {
	color: #333333;
	font-family: Courgette;
	font-size: 40px;
}

#cmp_d157d091-0f0e-4996-80a5-47787edcfffd h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_d157d091-0f0e-4996-80a5-47787edcfffd h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_d157d091-0f0e-4996-80a5-47787edcfffd p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_d157d091-0f0e-4996-80a5-47787edcfffd .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_d157d091-0f0e-4996-80a5-47787edcfffd .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_d157d091-0f0e-4996-80a5-47787edcfffd .btn {
	background-color: #C39D6A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 12px;
}

#cmp_d157d091-0f0e-4996-80a5-47787edcfffd .btn:hover {
	background-color: #D7BEE5;
	color: #FFFFFF;
}

#cmp_d157d091-0f0e-4996-80a5-47787edcfffd ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_d157d091-0f0e-4996-80a5-47787edcfffd ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_d157d091-0f0e-4996-80a5-47787edcfffd  {
	padding: 60px 0;
}
#cmp_d157d091-0f0e-4996-80a5-47787edcfffd h3 {
	margin-bottom: 35px;
}
#cmp_d157d091-0f0e-4996-80a5-47787edcfffd p {
	margin-bottom: 35px;
}
/*
 * components/whats_inside/cmp_d51ee96e-0330-41d0-99f2-b074cc03218b/component.css
 */
#cmp_d51ee96e-0330-41d0-99f2-b074cc03218b {
	padding: 0;
}

#cmp_d51ee96e-0330-41d0-99f2-b074cc03218b .hero-content {
	background-color: rgb(186, 146, 86);
	padding: 20px;
}

#cmp_d51ee96e-0330-41d0-99f2-b074cc03218b .hero-content h1 {
	color: #C39D6A;
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_d51ee96e-0330-41d0-99f2-b074cc03218b .hero-content h2 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 22px;
}

#cmp_d51ee96e-0330-41d0-99f2-b074cc03218b .hero-content h3 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 15px;
}

#cmp_d51ee96e-0330-41d0-99f2-b074cc03218b .hero-content p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_d51ee96e-0330-41d0-99f2-b074cc03218b .hero-content .btn {
	background-color: #333333;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 12px;
}

#cmp_d51ee96e-0330-41d0-99f2-b074cc03218b .hero-content .btn:hover {
	background-color: #D7BEE5;
	color: #FFFFFF;
}

#cmp_d51ee96e-0330-41d0-99f2-b074cc03218b h3 {
	margin-bottom: 35px;
}
#cmp_d51ee96e-0330-41d0-99f2-b074cc03218b p {
	margin-bottom: 35px;
}