/*
 * css/style.css
 */
/* Globals
------------------------------*/
body {
	background-color: #EEEEEE;
	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: #333333;
	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/about/cmp_033d9457-bccc-4b39-a94d-bc4130387e54/component.css
 */
#cmp_033d9457-bccc-4b39-a94d-bc4130387e54 img {
	max-width: 100%;
}

/*
 * components/about/cmp_2410de78-d986-42b6-8c6f-6eb5cb49265f/component.css
 */
#cmp_2410de78-d986-42b6-8c6f-6eb5cb49265f {
	background-color: #FFFFFF;
}

#cmp_2410de78-d986-42b6-8c6f-6eb5cb49265f h1 {
	color: #333333;
	font-family: Courgette;
	font-size: 40px;
}

#cmp_2410de78-d986-42b6-8c6f-6eb5cb49265f h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_2410de78-d986-42b6-8c6f-6eb5cb49265f h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_2410de78-d986-42b6-8c6f-6eb5cb49265f p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_2410de78-d986-42b6-8c6f-6eb5cb49265f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_2410de78-d986-42b6-8c6f-6eb5cb49265f ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_2410de78-d986-42b6-8c6f-6eb5cb49265f  {
	padding-top: 60px;
}
#cmp_2410de78-d986-42b6-8c6f-6eb5cb49265f h1 {
	margin-bottom: 15px;
}
/*
 * components/about/cmp_8f36d9f9-f298-4a14-bd7d-38847c49ad02/component.css
 */
#cmp_8f36d9f9-f298-4a14-bd7d-38847c49ad02 {
	background-color: #FFFFFF;
}

#cmp_8f36d9f9-f298-4a14-bd7d-38847c49ad02 h1 {
	color: #333333;
	font-family: Courgette;
	font-size: 40px;
}

#cmp_8f36d9f9-f298-4a14-bd7d-38847c49ad02 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_8f36d9f9-f298-4a14-bd7d-38847c49ad02 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_8f36d9f9-f298-4a14-bd7d-38847c49ad02 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_8f36d9f9-f298-4a14-bd7d-38847c49ad02 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_8f36d9f9-f298-4a14-bd7d-38847c49ad02 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_8f36d9f9-f298-4a14-bd7d-38847c49ad02 .btn {
	background-color: #C39D6A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 12px;
}

#cmp_8f36d9f9-f298-4a14-bd7d-38847c49ad02 .btn:hover {
	background-color: #D7BEE5;
	color: #FFFFFF;
}

#cmp_8f36d9f9-f298-4a14-bd7d-38847c49ad02 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_8f36d9f9-f298-4a14-bd7d-38847c49ad02 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_8f36d9f9-f298-4a14-bd7d-38847c49ad02  {
	padding-bottom: 60px;
}
#cmp_8f36d9f9-f298-4a14-bd7d-38847c49ad02 h3 {
	margin-bottom: 40px;
}
/*
 * components/checkout/cmp_fcdfc17b-121c-40cb-a23a-7d0a8a396d2f/component.css
 */
#cmp_fcdfc17b-121c-40cb-a23a-7d0a8a396d2f .checkout_content {
  overflow: auto;
}

#cmp_fcdfc17b-121c-40cb-a23a-7d0a8a396d2f .checkout_content section {
  border-color: #F5F5F5;
}

#cmp_fcdfc17b-121c-40cb-a23a-7d0a8a396d2f .cart_listing table {
  border-color: #F5F5F5;
}

/*
 * components/customer/account/cmp_7ca1791a-265e-40aa-ac8d-ee611a6a1817/component.css
 */

/*
 * components/customer/edit/cmp_b85451f0-7aff-4381-bcec-4eb0fff9fff0/component.css
 */

/*
 * components/customer/forgot_password/cmp_520855b7-b12e-4821-9f33-7028b147536f/component.css
 */
#cmp_520855b7-b12e-4821-9f33-7028b147536f {
	background-color: #FFFFFF;
}

#cmp_520855b7-b12e-4821-9f33-7028b147536f h1 {
	color: #333333;
	font-family: Courgette;
	font-size: 40px;
}

#cmp_520855b7-b12e-4821-9f33-7028b147536f h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_520855b7-b12e-4821-9f33-7028b147536f h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_520855b7-b12e-4821-9f33-7028b147536f p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_520855b7-b12e-4821-9f33-7028b147536f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_520855b7-b12e-4821-9f33-7028b147536f ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_520855b7-b12e-4821-9f33-7028b147536f  {
	padding: 50px 0;
}
#cmp_520855b7-b12e-4821-9f33-7028b147536f h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/forgot_password/cmp_c8a3cedf-84a0-4f21-92ec-fa96cd07b854/component.css
 */

#cmp_c8a3cedf-84a0-4f21-92ec-fa96cd07b854  {
	padding-bottom: 120px;
}
/*
 * components/customer/login/cmp_8643fa90-c51e-4ad0-b463-99e92c6fec8f/component.css
 */

#cmp_8643fa90-c51e-4ad0-b463-99e92c6fec8f  {
	padding-bottom: 120px;
}
/*
 * components/customer/login/cmp_dd4e4f31-dc18-4d4f-a7db-a1e2e5ce22b8/component.css
 */
#cmp_dd4e4f31-dc18-4d4f-a7db-a1e2e5ce22b8 {
	background-color: #FFFFFF;
}

#cmp_dd4e4f31-dc18-4d4f-a7db-a1e2e5ce22b8 h1 {
	color: #333333;
	font-family: Courgette;
	font-size: 40px;
}

#cmp_dd4e4f31-dc18-4d4f-a7db-a1e2e5ce22b8 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_dd4e4f31-dc18-4d4f-a7db-a1e2e5ce22b8 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_dd4e4f31-dc18-4d4f-a7db-a1e2e5ce22b8 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_dd4e4f31-dc18-4d4f-a7db-a1e2e5ce22b8 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_dd4e4f31-dc18-4d4f-a7db-a1e2e5ce22b8 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_dd4e4f31-dc18-4d4f-a7db-a1e2e5ce22b8  {
	padding: 50px 0;
}
#cmp_dd4e4f31-dc18-4d4f-a7db-a1e2e5ce22b8 h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/order/cmp_64ea7fd4-668d-4820-886f-e14c773821fd/component.css
 */

/*
 * components/customer/orders/cmp_9a30f9fb-d846-4b77-a751-984022ebede6/component.css
 */

/*
 * components/customer/password_reset/cmp_6bd7d241-197d-4a58-8bd7-6c988716741a/component.css
 */
#cmp_6bd7d241-197d-4a58-8bd7-6c988716741a {
	background-color: #FFFFFF;
}

#cmp_6bd7d241-197d-4a58-8bd7-6c988716741a h1 {
	color: #333333;
	font-family: Courgette;
	font-size: 40px;
}

#cmp_6bd7d241-197d-4a58-8bd7-6c988716741a h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_6bd7d241-197d-4a58-8bd7-6c988716741a h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_6bd7d241-197d-4a58-8bd7-6c988716741a p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_6bd7d241-197d-4a58-8bd7-6c988716741a ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_6bd7d241-197d-4a58-8bd7-6c988716741a ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_6bd7d241-197d-4a58-8bd7-6c988716741a  {
	padding: 50px 0;
}
#cmp_6bd7d241-197d-4a58-8bd7-6c988716741a h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/password_reset/cmp_7985a854-3802-4eaa-aeae-65dab4a18f32/component.css
 */

#cmp_7985a854-3802-4eaa-aeae-65dab4a18f32  {
	padding-bottom: 120px;
}
/*
 * components/customer/thank_you/cmp_e6aa6db9-c399-4808-bdc7-9ce19e4c85e6/component.css
 */

/*
 * components/global/cmp_21883654-0702-4afb-beb2-a0df3ba20eae/component.css
 */
#cmp_21883654-0702-4afb-beb2-a0df3ba20eae {
	background-color: #FFFFFF;
}

#cmp_21883654-0702-4afb-beb2-a0df3ba20eae h1 {
	color: #333333;
	font-family: Courgette;
	font-size: 40px;
}

#cmp_21883654-0702-4afb-beb2-a0df3ba20eae h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_21883654-0702-4afb-beb2-a0df3ba20eae h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_21883654-0702-4afb-beb2-a0df3ba20eae p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_21883654-0702-4afb-beb2-a0df3ba20eae .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_21883654-0702-4afb-beb2-a0df3ba20eae .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_21883654-0702-4afb-beb2-a0df3ba20eae .btn {
	background-color: #C39D6A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 12px;
}

#cmp_21883654-0702-4afb-beb2-a0df3ba20eae .btn:hover {
	background-color: #D7BEE5;
	color: #FFFFFF;
}

#cmp_21883654-0702-4afb-beb2-a0df3ba20eae ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_21883654-0702-4afb-beb2-a0df3ba20eae ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/global/cmp_7a35954e-66f5-4fc2-8dca-289d736daf21/component.css
 */
#cmp_7a35954e-66f5-4fc2-8dca-289d736daf21.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_7a35954e-66f5-4fc2-8dca-289d736daf21 .footer-social {
	padding-top: 15px;
	padding-bottom: 15px;
	text-align: center;
}

#cmp_7a35954e-66f5-4fc2-8dca-289d736daf21 .footer-social a {
	display: inline-block;
	padding-left: 5px;
	padding-right: 5px;
}

#cmp_7a35954e-66f5-4fc2-8dca-289d736daf21 .footer-social svg path {
	fill: rgba(207, 154, 33, 0.85);
}

#cmp_7a35954e-66f5-4fc2-8dca-289d736daf21 .footer-social a:hover svg path,
#cmp_7a35954e-66f5-4fc2-8dca-289d736daf21 .footer-social a:focus svg path,
#cmp_7a35954e-66f5-4fc2-8dca-289d736daf21 .footer-social a:active svg path {
	fill: #333333;
}

#cmp_7a35954e-66f5-4fc2-8dca-289d736daf21.footer .toggler-container {
	padding-top: 15px;
	padding-bottom: 15px;
	text-align: center;
}

#cmp_7a35954e-66f5-4fc2-8dca-289d736daf21.footer .navbar-toggler {
	color: #C39D6A;
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

#cmp_7a35954e-66f5-4fc2-8dca-289d736daf21 .footer-cc {
	border-top: 1px solid #e1e1e1;
	letter-spacing: 1px;
	text-align: center;
}

#cmp_7a35954e-66f5-4fc2-8dca-289d736daf21 .footer-cc img {
	padding-top: 15px;
	padding-bottom: 15px;
}

#cmp_7a35954e-66f5-4fc2-8dca-289d736daf21 .footer-cc p,
#cmp_7a35954e-66f5-4fc2-8dca-289d736daf21 .footer-tributes p {
	padding-top: 15px;
	padding-bottom: 15px;
	margin: 0;
}

#cmp_7a35954e-66f5-4fc2-8dca-289d736daf21 .footer-tributes p a {
	color: #B0B0B0;
	padding: 0;
}

#cmp_7a35954e-66f5-4fc2-8dca-289d736daf21 .footer-tributes p a:hover,
#cmp_7a35954e-66f5-4fc2-8dca-289d736daf21 .footer-tributes p a:focus,
#cmp_7a35954e-66f5-4fc2-8dca-289d736daf21 .footer-tributes p a:active {
	color: #B0B0B0;
	text-decoration: none;
}

#cmp_7a35954e-66f5-4fc2-8dca-289d736daf21 .footer-directory {
	text-align: center;
}

#cmp_7a35954e-66f5-4fc2-8dca-289d736daf21 .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_7a35954e-66f5-4fc2-8dca-289d736daf21 .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_7a35954e-66f5-4fc2-8dca-289d736daf21 .footer-list .footer-link {
	color: rgba(207, 154, 33, 0.85);
	font-family: Lato;
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

#cmp_7a35954e-66f5-4fc2-8dca-289d736daf21 .footer-list .footer-link:hover,
#cmp_7a35954e-66f5-4fc2-8dca-289d736daf21 .footer-list .footer-link:focus,
#cmp_7a35954e-66f5-4fc2-8dca-289d736daf21 .footer-list .footer-link:active {
	color: #333333;
	text-decoration: none;
}

@media (max-width: 767px) {
	#cmp_7a35954e-66f5-4fc2-8dca-289d736daf21 .col-sm-12,
	#cmp_7a35954e-66f5-4fc2-8dca-289d736daf21 .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_7a35954e-66f5-4fc2-8dca-289d736daf21.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_7a35954e-66f5-4fc2-8dca-289d736daf21 .footer-directory {
		-webkit-order: 1;
		-moz-order: 1;
		-ms-order: 1;
		order: 1;

		text-align: left;
	}
	#cmp_7a35954e-66f5-4fc2-8dca-289d736daf21 .footer-social {
		-webkit-order: 2;
		-moz-order: 2;
		-ms-order: 2;
		order: 2;

		padding-top: 0;
		padding-bottom: 0;
		text-align: right;
	}
	#cmp_7a35954e-66f5-4fc2-8dca-289d736daf21 .footer-cc {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}
	#cmp_7a35954e-66f5-4fc2-8dca-289d736daf21 .footer-cc p {
		display: inline-block;
	}
}

@media (min-width: 992px) {
	#cmp_7a35954e-66f5-4fc2-8dca-289d736daf21 .footer-cc {
		-webkit-order: 2;
		-moz-order: 2;
		-ms-order: 2;
		order: 2;

		border-top: none;
	}
	#cmp_7a35954e-66f5-4fc2-8dca-289d736daf21 .footer-cc p {
		display: block;
	}
	#cmp_7a35954e-66f5-4fc2-8dca-289d736daf21 .footer-social {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}
}

/*
 * components/global/cmp_d51ee876-5446-4620-94fd-651c807f1f85/component.css
 */
#cmp_d51ee876-5446-4620-94fd-651c807f1f85.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_d51ee876-5446-4620-94fd-651c807f1f85.navbar a:hover,
#cmp_d51ee876-5446-4620-94fd-651c807f1f85.navbar a:focus,
#cmp_d51ee876-5446-4620-94fd-651c807f1f85.navbar a:active {
	color: #333333;
}

#cmp_d51ee876-5446-4620-94fd-651c807f1f85 .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(189, 16, 224);
	font-family: Josefin Sans;
	font-size: 28px;
	margin: 0;
	padding: 15px;
	text-align: center;
}

#cmp_d51ee876-5446-4620-94fd-651c807f1f85 .navbar-brand img {
	max-width: 100%;
}

#cmp_d51ee876-5446-4620-94fd-651c807f1f85.navbar .navbar-toggler {
	background-color: #C39D6A;
	border-radius: 0;
	color: #FFFFFF;
	font-size: 12px;
	letter-spacing: 0.167em;
	padding: 15px;
	text-transform: uppercase;
}

#cmp_d51ee876-5446-4620-94fd-651c807f1f85.navbar .navbar-toggler:hover,
#cmp_d51ee876-5446-4620-94fd-651c807f1f85.navbar .navbar-toggler:focus,
#cmp_d51ee876-5446-4620-94fd-651c807f1f85.navbar .navbar-toggler:active {
	background-color: #333333;
	color: #FFFFFF;
}

#cmp_d51ee876-5446-4620-94fd-651c807f1f85 .navbar-nav {
	align-items: center;
	display: flex;
	flex-direction: column;
	margin: 0;
	padding-top: 15px;
	padding-bottom: 15px;
}

#cmp_d51ee876-5446-4620-94fd-651c807f1f85 .navbar-nav li {
	padding-top: 10px;
	padding-bottom: 10px;
}

#cmp_d51ee876-5446-4620-94fd-651c807f1f85 .navbar-nav .nav-link {
	color: #C39D6A;
	font-family: Lato;
	font-size: 12px;;
	letter-spacing: 1px;
	padding: 8px 18px;
	text-align: center;
	text-transform: uppercase;
}

@media (min-width: 768px) {
	#cmp_d51ee876-5446-4620-94fd-651c807f1f85.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_d51ee876-5446-4620-94fd-651c807f1f85 .navbar-brand {
		padding: 0;
		padding-bottom: 15px;
	}
	#cmp_d51ee876-5446-4620-94fd-651c807f1f85 .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_d51ee876-5446-4620-94fd-651c807f1f85 .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_d51ee876-5446-4620-94fd-651c807f1f85 .navbar-nav li {
		padding: 0;
	}
}

/*
 * components/index/cmp_01ef1f66-d237-4950-8c78-3d51b6caed0f/component.css
 */
#cmp_01ef1f66-d237-4950-8c78-3d51b6caed0f img {
	max-width: 100%;
}

/*
 * components/index/cmp_15836473-a69a-4a9d-b81e-bf5aef9b5cdc/component.css
 */
#cmp_15836473-a69a-4a9d-b81e-bf5aef9b5cdc {
	background-color: #FFFFFF;
}

#cmp_15836473-a69a-4a9d-b81e-bf5aef9b5cdc h1 {
	color: #333333;
	font-family: Courgette;
	font-size: 40px;
}

#cmp_15836473-a69a-4a9d-b81e-bf5aef9b5cdc h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_15836473-a69a-4a9d-b81e-bf5aef9b5cdc h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_15836473-a69a-4a9d-b81e-bf5aef9b5cdc p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_15836473-a69a-4a9d-b81e-bf5aef9b5cdc ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_15836473-a69a-4a9d-b81e-bf5aef9b5cdc ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_15836473-a69a-4a9d-b81e-bf5aef9b5cdc  {
	padding: 60px 0;
}
#cmp_15836473-a69a-4a9d-b81e-bf5aef9b5cdc h1 {
	margin-bottom: 40px;
}
#cmp_15836473-a69a-4a9d-b81e-bf5aef9b5cdc h3 {
	margin-bottom: 15px;
}
#cmp_15836473-a69a-4a9d-b81e-bf5aef9b5cdc p {
	border-bottom: 1px solid #E1E1E1;
	margin-bottom: 25px;
	padding-bottom: 25px;
}
#cmp_15836473-a69a-4a9d-b81e-bf5aef9b5cdc p:last-of-type {
	border-bottom: none;
	padding-bottom: 0;
}
/*
 * components/index/cmp_31f0a207-8ad5-40fc-a9d7-4d24add8b488/component.css
 */
#cmp_31f0a207-8ad5-40fc-a9d7-4d24add8b488 img {
	max-width: 100%;
}

/*
 * components/index/cmp_6e77e483-71e0-4641-b65c-30cc8f4bc03f/component.css
 */
#cmp_6e77e483-71e0-4641-b65c-30cc8f4bc03f {
	background-color: #FAFAFA;
}

#cmp_6e77e483-71e0-4641-b65c-30cc8f4bc03f h1 {
	color: #333333;
	font-family: Courgette;
	font-size: 40px;
}

#cmp_6e77e483-71e0-4641-b65c-30cc8f4bc03f h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_6e77e483-71e0-4641-b65c-30cc8f4bc03f h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_6e77e483-71e0-4641-b65c-30cc8f4bc03f p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_6e77e483-71e0-4641-b65c-30cc8f4bc03f .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_6e77e483-71e0-4641-b65c-30cc8f4bc03f .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_6e77e483-71e0-4641-b65c-30cc8f4bc03f .btn {
	background-color: rgba(189, 16, 224, 0.85);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 12px;
}

#cmp_6e77e483-71e0-4641-b65c-30cc8f4bc03f .btn:hover {
	background-color: #D7BEE5;
	color: #FFFFFF;
}

#cmp_6e77e483-71e0-4641-b65c-30cc8f4bc03f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_6e77e483-71e0-4641-b65c-30cc8f4bc03f ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_6e77e483-71e0-4641-b65c-30cc8f4bc03f  {
	padding: 60px 0;
}
#cmp_6e77e483-71e0-4641-b65c-30cc8f4bc03f h1 {
	margin-bottom: 15px;
}
#cmp_6e77e483-71e0-4641-b65c-30cc8f4bc03f p {
	margin-bottom: 20px;
}
/*
 * components/index/cmp_a2f334e9-3344-46c2-8679-5f0707d80cf9/component.css
 */
#cmp_a2f334e9-3344-46c2-8679-5f0707d80cf9 img {
	max-width: 100%;
}

/*
 * components/index/cmp_b7bd68bc-281c-4f62-9b42-f6fd902f582a/component.css
 */
#cmp_b7bd68bc-281c-4f62-9b42-f6fd902f582a {
	padding: 0;
	background-color: #FFFFFF;
}

#cmp_b7bd68bc-281c-4f62-9b42-f6fd902f582a .content {
	margin: 0 auto;
	padding: 50px;
}

@media (min-width: 768px) {
	#cmp_b7bd68bc-281c-4f62-9b42-f6fd902f582a .col-md-4:nth-of-type(2n + 1) {
		order: 1;
	}
	#cmp_b7bd68bc-281c-4f62-9b42-f6fd902f582a .col-md-4:nth-of-type(2n) {
		order: 2;
	}
}

#cmp_b7bd68bc-281c-4f62-9b42-f6fd902f582a h1 {
	color: #333333;
	font-family: Courgette;
	font-size: 40px;
}

#cmp_b7bd68bc-281c-4f62-9b42-f6fd902f582a h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_b7bd68bc-281c-4f62-9b42-f6fd902f582a h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_b7bd68bc-281c-4f62-9b42-f6fd902f582a p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_b7bd68bc-281c-4f62-9b42-f6fd902f582a h3 {
	margin-bottom: 25px;
}
/*
 * components/index/cmp_d51dda62-988d-4e47-8442-13c965291866/component.css
 */
#cmp_d51dda62-988d-4e47-8442-13c965291866 {
	padding: 0;
}

#cmp_d51dda62-988d-4e47-8442-13c965291866 .hero-content {
	background-color: rgba(189, 16, 224, 0.85);
	padding: 20px;
}

#cmp_d51dda62-988d-4e47-8442-13c965291866 .hero-content h1 {
	color: rgb(230, 188, 39);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_d51dda62-988d-4e47-8442-13c965291866 .hero-content h2 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 22px;
}

#cmp_d51dda62-988d-4e47-8442-13c965291866 .hero-content h3 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 15px;
}

#cmp_d51dda62-988d-4e47-8442-13c965291866 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_d51dda62-988d-4e47-8442-13c965291866 .hero-content .btn {
	background-color: rgb(218, 177, 72);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 12px;
}

#cmp_d51dda62-988d-4e47-8442-13c965291866 .hero-content .btn:hover {
	background-color: #D7BEE5;
	color: #FFFFFF;
}

#cmp_d51dda62-988d-4e47-8442-13c965291866 h1 {
	margin-top: 20px;
	margin-bottom: 10px;
}
#cmp_d51dda62-988d-4e47-8442-13c965291866 p {
	margin-bottom: 25px;
}
/*
 * components/shop/listing/cmp_464cca59-e3ee-4119-93cc-4781972aea48/component.css
 */
#cmp_464cca59-e3ee-4119-93cc-4781972aea48 {
	justify-content: center;
}

#cmp_464cca59-e3ee-4119-93cc-4781972aea48 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

#cmp_464cca59-e3ee-4119-93cc-4781972aea48  {
	border-bottom: 1px solid #E1E1E1;
	margin-bottom: 35px;
	padding-bottom: 35px;
}
/*
 * components/shop/listing/cmp_46901917-59b2-42ce-aa6f-1bed89c0a38a/component.css
 */
#cmp_46901917-59b2-42ce-aa6f-1bed89c0a38a {
	justify-content: center;
}

#cmp_46901917-59b2-42ce-aa6f-1bed89c0a38a ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_8167f3a2-3756-4873-90bc-71f3ace5bec8/component.css
 */
#cmp_8167f3a2-3756-4873-90bc-71f3ace5bec8 {
	background-color: #FFFFFF;
}

#cmp_8167f3a2-3756-4873-90bc-71f3ace5bec8 h1 {
	color: #333333;
	font-family: Courgette;
	font-size: 40px;
}

#cmp_8167f3a2-3756-4873-90bc-71f3ace5bec8 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_8167f3a2-3756-4873-90bc-71f3ace5bec8 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_8167f3a2-3756-4873-90bc-71f3ace5bec8 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_8167f3a2-3756-4873-90bc-71f3ace5bec8 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_8167f3a2-3756-4873-90bc-71f3ace5bec8 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_8167f3a2-3756-4873-90bc-71f3ace5bec8  {
	padding: 50px 0 15px;
}
#cmp_8167f3a2-3756-4873-90bc-71f3ace5bec8 h1 {
	margin-bottom: 15px;
}
/*
 * components/shop/listing/cmp_cecb3095-58d4-492d-8e93-a6259f9699e2/component.css
 */
#cmp_cecb3095-58d4-492d-8e93-a6259f9699e2 .shop-listing-item {
	color: #B0B0B0;
}

#cmp_cecb3095-58d4-492d-8e93-a6259f9699e2 .shop-listing-item:hover,
#cmp_cecb3095-58d4-492d-8e93-a6259f9699e2 .shop-listing-item:focus {
	text-decoration: none;
}

#cmp_cecb3095-58d4-492d-8e93-a6259f9699e2 .shop-listing-item__image {
	background-size: cover;
	background-position: center center;
}

#cmp_cecb3095-58d4-492d-8e93-a6259f9699e2 .shop-listing-item__name {
	margin: 10px 0;
}

#cmp_cecb3095-58d4-492d-8e93-a6259f9699e2 .shop-listing-item__price {
	margin: 10px 0 30px;
}

#cmp_cecb3095-58d4-492d-8e93-a6259f9699e2 .product_paging {
	-webkit-display: flex;
	-ms-display: flex;
	display: flex;
	justify-content: center;

	margin: 20px 0;
}

#cmp_cecb3095-58d4-492d-8e93-a6259f9699e2 .product_page a,
#cmp_cecb3095-58d4-492d-8e93-a6259f9699e2 .next_page a,
#cmp_cecb3095-58d4-492d-8e93-a6259f9699e2 .prev_page a {
	display: block;
	padding: 12px 15px;
	margin: 0 2px;
	border: 1px solid #E0E0E0;
	border-radius: 5px;
}

#cmp_cecb3095-58d4-492d-8e93-a6259f9699e2 .product_page.active a,
#cmp_cecb3095-58d4-492d-8e93-a6259f9699e2 .product_page a:hover,
#cmp_cecb3095-58d4-492d-8e93-a6259f9699e2 .product_page a:focus,
#cmp_cecb3095-58d4-492d-8e93-a6259f9699e2 .next_page a:hover,
#cmp_cecb3095-58d4-492d-8e93-a6259f9699e2 .next_page a:focus,
#cmp_cecb3095-58d4-492d-8e93-a6259f9699e2 .prev_page a:hover,
#cmp_cecb3095-58d4-492d-8e93-a6259f9699e2 .prev_page a:focus {
	text-decoration: none;
	background-color: #F9F9F9;
}

#cmp_cecb3095-58d4-492d-8e93-a6259f9699e2 .product_page.active a {
	color: black;
}

/*
 * components/shop/product/cmp_6ba78fc0-d2d8-411e-b93f-af4a052a8c39/component.css
 */
#cmp_6ba78fc0-d2d8-411e-b93f-af4a052a8c39 .shop-product__name {
	margin-bottom: 10px;
}

#cmp_6ba78fc0-d2d8-411e-b93f-af4a052a8c39 .shop-product__price {
	margin-bottom: 20px;
}

#cmp_6ba78fc0-d2d8-411e-b93f-af4a052a8c39 .shop-product select {
	width: auto;
}

#cmp_6ba78fc0-d2d8-411e-b93f-af4a052a8c39 .shop-product__add-to-cart {
	margin-bottom: 20px;
}

#cmp_6ba78fc0-d2d8-411e-b93f-af4a052a8c39 .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin-bottom: 40px;
}

#cmp_6ba78fc0-d2d8-411e-b93f-af4a052a8c39 .shop-product__review-share-desktop .col-xs-6 {
	padding-top: 10px;
}

#cmp_6ba78fc0-d2d8-411e-b93f-af4a052a8c39 .shop-product__review-share-desktop .col-xs-6 + .col-xs-6 {
	border-left: 1px solid #E1E1E1;
}

/*
 * components/shop/product/cmp_92b3445c-8224-443b-a5ef-4daab86d9c99/component.css
 */
#cmp_92b3445c-8224-443b-a5ef-4daab86d9c99.shop-product-header {
	padding: 50px 0 15px;
}

/*
 * components/sold_out/cmp_3902377b-daeb-4e99-bcbb-27df5982d51e/component.css
 */
#cmp_3902377b-daeb-4e99-bcbb-27df5982d51e {
	background-color: #FFFFFF;
}

#cmp_3902377b-daeb-4e99-bcbb-27df5982d51e h1 {
	color: #333333;
	font-family: Courgette;
	font-size: 40px;
}

#cmp_3902377b-daeb-4e99-bcbb-27df5982d51e h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_3902377b-daeb-4e99-bcbb-27df5982d51e h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_3902377b-daeb-4e99-bcbb-27df5982d51e p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_3902377b-daeb-4e99-bcbb-27df5982d51e .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_3902377b-daeb-4e99-bcbb-27df5982d51e .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_3902377b-daeb-4e99-bcbb-27df5982d51e .btn {
	background-color: #C39D6A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 12px;
}

#cmp_3902377b-daeb-4e99-bcbb-27df5982d51e .btn:hover {
	background-color: #D7BEE5;
	color: #FFFFFF;
}

#cmp_3902377b-daeb-4e99-bcbb-27df5982d51e ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_3902377b-daeb-4e99-bcbb-27df5982d51e ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_3902377b-daeb-4e99-bcbb-27df5982d51e  {
	padding-bottom: 50px;
}
/*
 * components/sold_out/cmp_b18e15e1-dc17-4f01-8e63-9c8371fdf579/component.css
 */
#cmp_b18e15e1-dc17-4f01-8e63-9c8371fdf579 img {
	max-width: 100%;
}

#cmp_b18e15e1-dc17-4f01-8e63-9c8371fdf579  {
	padding-top: 50px;
}
/*
 * components/subscribe/cmp_02c60745-bcfb-45bd-ab29-53326f3641bf/component.css
 */

/*
 * components/subscribe/cmp_42a1219f-2d00-43c1-9619-289aa8189153/component.css
 */
#cmp_42a1219f-2d00-43c1-9619-289aa8189153 {
	background-color: #FFFFFF;
}

#cmp_42a1219f-2d00-43c1-9619-289aa8189153 h1 {
	color: #333333;
	font-family: Courgette;
	font-size: 40px;
}

#cmp_42a1219f-2d00-43c1-9619-289aa8189153 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_42a1219f-2d00-43c1-9619-289aa8189153 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_42a1219f-2d00-43c1-9619-289aa8189153 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_42a1219f-2d00-43c1-9619-289aa8189153 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_42a1219f-2d00-43c1-9619-289aa8189153 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/subscribe/cmp_a79fbcb5-4f30-4832-93ee-05c3dfbe48a9/component.css
 */
#cmp_a79fbcb5-4f30-4832-93ee-05c3dfbe48a9 {
	background-color: #FFFFFF;
}

#cmp_a79fbcb5-4f30-4832-93ee-05c3dfbe48a9 h1 {
	color: #333333;
	font-family: Courgette;
	font-size: 40px;
}

#cmp_a79fbcb5-4f30-4832-93ee-05c3dfbe48a9 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_a79fbcb5-4f30-4832-93ee-05c3dfbe48a9 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_a79fbcb5-4f30-4832-93ee-05c3dfbe48a9 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_a79fbcb5-4f30-4832-93ee-05c3dfbe48a9 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_a79fbcb5-4f30-4832-93ee-05c3dfbe48a9 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	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: #C39D6A;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-btn-cart:hover {
	color: #FFFFFF;
	background-color: #333333;
}

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

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-continue-btn:hover {
	color: #FFFFFF;
	background-color: #333333;
}

@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_0bd6ad1c-9b7e-47ea-b6d5-f538fc0561bc/component.css
 */
#cmp_0bd6ad1c-9b7e-47ea-b6d5-f538fc0561bc {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/survey_step/cmp_8072df67-0160-404f-97b0-b4caba1e6c69/component.css
 */
#cmp_8072df67-0160-404f-97b0-b4caba1e6c69.survey h2 {
	margin-bottom: 1em;
}

#cmp_8072df67-0160-404f-97b0-b4caba1e6c69.survey .radio input[type="radio"],
#cmp_8072df67-0160-404f-97b0-b4caba1e6c69.survey .checkbox input[type="checkbox"] {
	margin-right: 0.5em;
}

/*
 * components/subscribe_flow/terms_step/cmp_8fee9b15-431e-41cc-90c1-9aeaf5a21d5c/component.css
 */

/*
 * components/subscribe_flow/terms_step/cmp_fb8ab7fa-07d3-4e5b-ae8f-73ad0d1a8c78/component.css
 */
#cmp_fb8ab7fa-07d3-4e5b-ae8f-73ad0d1a8c78 {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/variant_step/cmp_03ccb0cf-3f15-4db0-b65b-93b473c76205/component.css
 */
#cmp_03ccb0cf-3f15-4db0-b65b-93b473c76205 {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/variant_step/cmp_3ab5ab01-fa67-4a4d-be53-46845ae59d44/component.css
 */

/*
 * components/view-cart/cmp_29a23c50-1e4f-40bf-9018-8ad737f48a3b/component.css
 */
#cmp_29a23c50-1e4f-40bf-9018-8ad737f48a3b {
	background-color: #FFFFFF;
}

#cmp_29a23c50-1e4f-40bf-9018-8ad737f48a3b h1 {
	color: #333333;
	font-family: Courgette;
	font-size: 40px;
}

#cmp_29a23c50-1e4f-40bf-9018-8ad737f48a3b h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_29a23c50-1e4f-40bf-9018-8ad737f48a3b h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_29a23c50-1e4f-40bf-9018-8ad737f48a3b p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_29a23c50-1e4f-40bf-9018-8ad737f48a3b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_29a23c50-1e4f-40bf-9018-8ad737f48a3b ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_29a23c50-1e4f-40bf-9018-8ad737f48a3b  {
	padding: 50px 0;;
}
#cmp_29a23c50-1e4f-40bf-9018-8ad737f48a3b h1 {
	margin-bottom: 15px;
}
/*
 * components/view-cart/cmp_3d4f4d2f-abb8-49de-8dcf-9fa527317d22/component.css
 */
#cmp_3d4f4d2f-abb8-49de-8dcf-9fa527317d22 {
	padding: 15px 15px 100px 15px;
}

#cmp_3d4f4d2f-abb8-49de-8dcf-9fa527317d22 .cart-thead {
	border-bottom: 1px solid #E1E1E1;
	padding: 10px 0;
}

#cmp_3d4f4d2f-abb8-49de-8dcf-9fa527317d22 .cart-thead h3 {
	text-transform: uppercase;
}

#cmp_3d4f4d2f-abb8-49de-8dcf-9fa527317d22 .cart-item {
	border: 1px solid #E1E1E1;
	padding: 25px 0;
	position: relative;
}

#cmp_3d4f4d2f-abb8-49de-8dcf-9fa527317d22 .product-main {
	margin-bottom: 15px;
}

#cmp_3d4f4d2f-abb8-49de-8dcf-9fa527317d22 .product-label p {
	margin: 0;
}

#cmp_3d4f4d2f-abb8-49de-8dcf-9fa527317d22 .product-label .info {
	color: #333333;
	text-align: right;
	text-transform: uppercase;
}

#cmp_3d4f4d2f-abb8-49de-8dcf-9fa527317d22 .product-label .meta {
	color: #333333;
	font-size: 15px;
}

#cmp_3d4f4d2f-abb8-49de-8dcf-9fa527317d22 .product-rem-btn {
	position: absolute;
	right: 1%;
	top: 1%;
}

#cmp_3d4f4d2f-abb8-49de-8dcf-9fa527317d22 figure {
	margin: 0 0 15px 0;
}

#cmp_3d4f4d2f-abb8-49de-8dcf-9fa527317d22 .cart-subtotal {
	margin: 50px 0 0 0;
}

#cmp_3d4f4d2f-abb8-49de-8dcf-9fa527317d22 .cart-subtotal h1 {
	margin: 0 0 15px 0;
}

#cmp_3d4f4d2f-abb8-49de-8dcf-9fa527317d22 .cart-subtotal h3 {
	margin: 0 0 25px 0;
	text-transform: uppercase;
}

#cmp_3d4f4d2f-abb8-49de-8dcf-9fa527317d22 .cart-subtotal p {
	margin: 0 0 25px 0;
}

@media (min-width: 768px) {
	#cmp_3d4f4d2f-abb8-49de-8dcf-9fa527317d22 .cart-item {
		border-width: 0 0 1px 0;
	}
	#cmp_3d4f4d2f-abb8-49de-8dcf-9fa527317d22 .product-rem-btn {
		top: 40%;
	}
	#cmp_3d4f4d2f-abb8-49de-8dcf-9fa527317d22 figure {
		margin: 0;
	}
}

/*
 * components/whats_inside/cmp_8b5f673f-81f0-4e0a-a6e2-55a36a41cab9/component.css
 */
#cmp_8b5f673f-81f0-4e0a-a6e2-55a36a41cab9 {
	background-color: #FFFFFF;
}

#cmp_8b5f673f-81f0-4e0a-a6e2-55a36a41cab9 h1 {
	color: #333333;
	font-family: Courgette;
	font-size: 40px;
}

#cmp_8b5f673f-81f0-4e0a-a6e2-55a36a41cab9 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_8b5f673f-81f0-4e0a-a6e2-55a36a41cab9 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_8b5f673f-81f0-4e0a-a6e2-55a36a41cab9 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_8b5f673f-81f0-4e0a-a6e2-55a36a41cab9 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_8b5f673f-81f0-4e0a-a6e2-55a36a41cab9 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_8b5f673f-81f0-4e0a-a6e2-55a36a41cab9 .btn {
	background-color: #C39D6A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 12px;
}

#cmp_8b5f673f-81f0-4e0a-a6e2-55a36a41cab9 .btn:hover {
	background-color: #D7BEE5;
	color: #FFFFFF;
}

#cmp_8b5f673f-81f0-4e0a-a6e2-55a36a41cab9 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_8b5f673f-81f0-4e0a-a6e2-55a36a41cab9 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_8b5f673f-81f0-4e0a-a6e2-55a36a41cab9  {
	padding: 60px 0;
}
#cmp_8b5f673f-81f0-4e0a-a6e2-55a36a41cab9 h3 {
	margin-bottom: 35px;
}
#cmp_8b5f673f-81f0-4e0a-a6e2-55a36a41cab9 p {
	margin-bottom: 35px;
}
/*
 * components/whats_inside/cmp_bba5b370-977b-4b03-b48d-1e1a92434d1e/component.css
 */
#cmp_bba5b370-977b-4b03-b48d-1e1a92434d1e {
	padding: 0;
}

#cmp_bba5b370-977b-4b03-b48d-1e1a92434d1e .hero-content {
	background-color: #FAFAFA;
	padding: 20px;
}

#cmp_bba5b370-977b-4b03-b48d-1e1a92434d1e .hero-content h1 {
	color: #C39D6A;
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_bba5b370-977b-4b03-b48d-1e1a92434d1e .hero-content h2 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 22px;
}

#cmp_bba5b370-977b-4b03-b48d-1e1a92434d1e .hero-content h3 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 15px;
}

#cmp_bba5b370-977b-4b03-b48d-1e1a92434d1e .hero-content p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_bba5b370-977b-4b03-b48d-1e1a92434d1e .hero-content .btn {
	background-color: #C39D6A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 12px;
}

#cmp_bba5b370-977b-4b03-b48d-1e1a92434d1e .hero-content .btn:hover {
	background-color: #D7BEE5;
	color: #FFFFFF;
}

#cmp_bba5b370-977b-4b03-b48d-1e1a92434d1e h3 {
	margin-bottom: 35px;
}
#cmp_bba5b370-977b-4b03-b48d-1e1a92434d1e p {
	margin-bottom: 35px;
}
/*
 * components/whats_inside/cmp_bc02455f-4969-4194-be41-aa9b59216090/component.css
 */
#cmp_bc02455f-4969-4194-be41-aa9b59216090 {
	background-color: #FFFFFF;
}

#cmp_bc02455f-4969-4194-be41-aa9b59216090 h1 {
	color: #333333;
	font-family: Courgette;
	font-size: 40px;
}

#cmp_bc02455f-4969-4194-be41-aa9b59216090 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_bc02455f-4969-4194-be41-aa9b59216090 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_bc02455f-4969-4194-be41-aa9b59216090 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_bc02455f-4969-4194-be41-aa9b59216090 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_bc02455f-4969-4194-be41-aa9b59216090 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_bc02455f-4969-4194-be41-aa9b59216090  {
	padding-top: 60px;
}
#cmp_bc02455f-4969-4194-be41-aa9b59216090 h1 {
	margin-bottom: 15px;
}
/*
 * components/whats_inside/cmp_c005df4a-6a49-49cb-8611-fde404b157f3/component.css
 */
#cmp_c005df4a-6a49-49cb-8611-fde404b157f3 {
	padding: 0;
}

#cmp_c005df4a-6a49-49cb-8611-fde404b157f3 .hero-content {
	background-color: #FAFAFA;
	padding: 20px;
}

#cmp_c005df4a-6a49-49cb-8611-fde404b157f3 .hero-content h1 {
	color: #C39D6A;
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_c005df4a-6a49-49cb-8611-fde404b157f3 .hero-content h2 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 22px;
}

#cmp_c005df4a-6a49-49cb-8611-fde404b157f3 .hero-content h3 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 15px;
}

#cmp_c005df4a-6a49-49cb-8611-fde404b157f3 .hero-content p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_c005df4a-6a49-49cb-8611-fde404b157f3 .hero-content .btn {
	background-color: #333333;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 12px;
}

#cmp_c005df4a-6a49-49cb-8611-fde404b157f3 .hero-content .btn:hover {
	background-color: #D7BEE5;
	color: #FFFFFF;
}

#cmp_c005df4a-6a49-49cb-8611-fde404b157f3 h3 {
	margin-bottom: 35px;
}
#cmp_c005df4a-6a49-49cb-8611-fde404b157f3 p {
	margin-bottom: 35px;
}
/*
 * components/contact_us/cmp_39a021a8-d299-47e7-b428-f78246d30d2b/component.css
 */
#cmp_39a021a8-d299-47e7-b428-f78246d30d2b {
	background-color: #FFFFFF;
}

#cmp_39a021a8-d299-47e7-b428-f78246d30d2b h1 {
	color: #333333;
	font-family: Courgette;
	font-size: 40px;
}

#cmp_39a021a8-d299-47e7-b428-f78246d30d2b h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_39a021a8-d299-47e7-b428-f78246d30d2b h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_39a021a8-d299-47e7-b428-f78246d30d2b p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_39a021a8-d299-47e7-b428-f78246d30d2b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_39a021a8-d299-47e7-b428-f78246d30d2b ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/contact_us/cmp_2b2ca656-f78a-4a3d-953b-fe315bb45bc2/component.css
 */
#cmp_2b2ca656-f78a-4a3d-953b-fe315bb45bc2 img {
	max-width: 100%;
}

/*
 * components/contact_us/cmp_b2b8a2a9-76b7-432d-82ca-2e9d2d9d8a3e/component.css
 */
#cmp_b2b8a2a9-76b7-432d-82ca-2e9d2d9d8a3e {
	background-color: #FFFFFF;
}

#cmp_b2b8a2a9-76b7-432d-82ca-2e9d2d9d8a3e h1 {
	color: #333333;
	font-family: Courgette;
	font-size: 40px;
}

#cmp_b2b8a2a9-76b7-432d-82ca-2e9d2d9d8a3e h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_b2b8a2a9-76b7-432d-82ca-2e9d2d9d8a3e h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_b2b8a2a9-76b7-432d-82ca-2e9d2d9d8a3e p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_b2b8a2a9-76b7-432d-82ca-2e9d2d9d8a3e .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_b2b8a2a9-76b7-432d-82ca-2e9d2d9d8a3e .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_b2b8a2a9-76b7-432d-82ca-2e9d2d9d8a3e .btn {
	background-color: #C39D6A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 12px;
}

#cmp_b2b8a2a9-76b7-432d-82ca-2e9d2d9d8a3e .btn:hover {
	background-color: #D7BEE5;
	color: #FFFFFF;
}

#cmp_b2b8a2a9-76b7-432d-82ca-2e9d2d9d8a3e ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_b2b8a2a9-76b7-432d-82ca-2e9d2d9d8a3e ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}