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

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

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

h1 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 34px;
	letter-spacing: 1px;
	line-height: 1;
}

h2 {
	color: rgb(195, 157, 106);
	font-family: Montserrat;
	font-size: 26px;
}

h3 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 16px;
}

p {
	line-height: 1.5em;
}

a,
.btn-link {
	color: rgb(195, 157, 106);
}

a:hover,
a:focus,
a:active,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
	color: rgb(248, 231, 28);
}

/* General Component Styles */
.row > .row {
	margin-left: 0;
	margin-right: 0;
}

section[class^="component"] {
	padding: 60px 0;
}

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

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

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

.flex-center {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.nav-pills .nav-link.active,
.nav-pills .nav-link.active:focus,
.nav-pills .nav-link.active:hover,
.nav-pills .nav-link.active:active,
.nav-pills .nav-item.open .nav-link,
.nav-pills .nav-item.open .nav-link:focus,
.nav-pills .nav-item.open .nav-link:hover,
.nav-pills .nav-item.open .nav-link:active {
	background-color: rgb(195, 157, 106);
}

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

.panel-body {
	padding: 15px;
}

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

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

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

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

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

/* Buttons */
.btn {
	border-radius: 4px;
	border: none;
	font-size: 13px;
	letter-spacing: 0.077em;
	padding: 1.2em 5em;
	white-space: normal;
}

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

.btn-small:hover,
.btn-small:focus,
.btn-small:active,
.btn-small:active:focus {
	background-color: rgb(195, 157, 106);
	border-color: rgb(195, 157, 106);
	color: #FFFFFF !important;
}

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

.btn-primary {
	background-color: rgb(195, 157, 106);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
	letter-spacing: 0.167em;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus {
	background-color: rgb(248, 231, 28);
	color: #FFFFFF;
}

.btn-secondary {
	background-color: rgb(0, 0, 0);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
	letter-spacing: 0.167em;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:active:focus {
	background-color: rgb(248, 231, 28);
	color: #FFFFFF;
}

.btn-empty {
	background-color: transparent;
	border: 1px solid rgb(195, 157, 106);
	color: rgb(195, 157, 106);
}

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

/* 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: 20px 0;
}

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

	padding: .9375rem 0;
}

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

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

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

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

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

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

/* Survey Forms
------------------------------*/
.survey h2 {
	margin: 0 0 1em 0;
}

.survey .radio input[type="radio"],
.survey .checkbox input[type="checkbox"] {
	margin: 0 0.5em 0 0;
}

/* Sold Out
------------------------------*/
.sold-out-image {
	height: 171px;
	width: 195px;
	margin: auto;
	margin-bottom: 38px;
}

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

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

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

.checkout_content #checkout_button {
	background-color: rgb(195, 157, 106);
	border: none;
	border-radius: 25px;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
	letter-spacing: 0.167em;
	padding: 1.2em 5em;
}

.checkout_content #checkout_button:hover,
.checkout_content #checkout_button:focus,
.checkout_content #checkout_button:active,
.checkout_content #checkout_button:active:focus {
	background-color: rgb(248, 231, 28);
	color: #FFFFFF;
}

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

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

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

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

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

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

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

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

.address-container {
	width: 100%;
}

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

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

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

.address-container {
	width: 100%;
}

.errors {
	margin: 25px 0;
}

.cratejoy-loading-icon {
	color: rgb(195, 157, 106);
}

.skip-dialog .row {
	display: block;
	text-align: center;
}

.skip-dialog h4 {
	margin: 0 0 22px 0;
}

.panel-sub-confirm {
	box-shadow: none;
}

.panel-sub-confirm form div:last-child {
	display: block;
}

#skip_button,
input[type="radio"] + label.cj-btn {
	background-color: transparent;
	border: 1px solid rgb(195, 157, 106);
	color: rgb(195, 157, 106);
	letter-spacing: 1px;
	text-transform: uppercase;
}

#skip_button:hover,
#skip_button:focus,
#skip_button:active,
input[type="radio"]:checked + label.cj-btn, #skip_button.skipped {
	background-color: rgb(248, 231, 28);
	border-color: rgb(248, 231, 28);
	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_57b475ed-8ca4-43ee-80e5-b6d11ad78117/component.css
 */
#cmp_57b475ed-8ca4-43ee-80e5-b6d11ad78117 .checkout_content {
  overflow: auto;
}

#cmp_57b475ed-8ca4-43ee-80e5-b6d11ad78117 .checkout_content section {
  border-color: #F5F5F5;
}

#cmp_57b475ed-8ca4-43ee-80e5-b6d11ad78117 .cart_listing table {
  border-color: #F5F5F5;
}

#cmp_57b475ed-8ca4-43ee-80e5-b6d11ad78117  {
	padding-top: 0;
}
/*
 * components/customer/account/cmp_87cdacdf-2bed-486c-b4e1-e680a747ab54/component.css
 */

/*
 * components/customer/edit/cmp_3ac8ddf4-f270-4280-bc56-0e6cddfc92b3/component.css
 */

/*
 * components/customer/forgot_password/cmp_5d9629ad-9ae5-47e0-add6-c43a3335bcbd/component.css
 */
#cmp_5d9629ad-9ae5-47e0-add6-c43a3335bcbd {
	background-color: #FFFFFF;
}

#cmp_5d9629ad-9ae5-47e0-add6-c43a3335bcbd h1 {
	color: rgb(0, 0, 0);
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 25px 0;
}

#cmp_5d9629ad-9ae5-47e0-add6-c43a3335bcbd h2 {
	color: rgb(195, 157, 106);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_5d9629ad-9ae5-47e0-add6-c43a3335bcbd h3 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_5d9629ad-9ae5-47e0-add6-c43a3335bcbd p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_5d9629ad-9ae5-47e0-add6-c43a3335bcbd ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_5d9629ad-9ae5-47e0-add6-c43a3335bcbd ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/customer/forgot_password/cmp_fb2ac5d4-991c-4873-8e8c-b720d17f1ae2/component.css
 */
#cmp_fb2ac5d4-991c-4873-8e8c-b720d17f1ae2 {
    padding:  0 0 120px 0;
}
/*
 * components/customer/login/cmp_15841b4d-1ac3-4aad-afe6-9257d3960ca3/component.css
 */
#cmp_15841b4d-1ac3-4aad-afe6-9257d3960ca3 {
	background-color: #FFFFFF;
}

#cmp_15841b4d-1ac3-4aad-afe6-9257d3960ca3 h1 {
	color: rgb(0, 0, 0);
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 25px 0;
}

#cmp_15841b4d-1ac3-4aad-afe6-9257d3960ca3 h2 {
	color: rgb(195, 157, 106);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_15841b4d-1ac3-4aad-afe6-9257d3960ca3 h3 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_15841b4d-1ac3-4aad-afe6-9257d3960ca3 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_15841b4d-1ac3-4aad-afe6-9257d3960ca3 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_15841b4d-1ac3-4aad-afe6-9257d3960ca3 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/customer/login/cmp_d5b5a20b-33fe-470b-85c7-7456893e256c/component.css
 */
#cmp_d5b5a20b-33fe-470b-85c7-7456893e256c {
    padding:  0 0 120px 0;
}
/*
 * components/customer/order/cmp_1bee0b1c-60d4-47a1-a1af-e1a2fbc66687/component.css
 */

/*
 * components/customer/orders/cmp_92d8e5ac-af7a-4320-944d-895ac4bcf667/component.css
 */

/*
 * components/customer/password_reset/cmp_29b8cbf1-0df5-46ca-9d18-2a2045fcdd8d/component.css
 */
#cmp_29b8cbf1-0df5-46ca-9d18-2a2045fcdd8d {
	background-color: #FFFFFF;
}

#cmp_29b8cbf1-0df5-46ca-9d18-2a2045fcdd8d h1 {
	color: rgb(0, 0, 0);
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 25px 0;
}

#cmp_29b8cbf1-0df5-46ca-9d18-2a2045fcdd8d h2 {
	color: rgb(195, 157, 106);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_29b8cbf1-0df5-46ca-9d18-2a2045fcdd8d h3 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_29b8cbf1-0df5-46ca-9d18-2a2045fcdd8d p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_29b8cbf1-0df5-46ca-9d18-2a2045fcdd8d ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_29b8cbf1-0df5-46ca-9d18-2a2045fcdd8d ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/customer/password_reset/cmp_f9ff63d0-0288-4bf6-9ebe-90a9974bdad5/component.css
 */
#cmp_f9ff63d0-0288-4bf6-9ebe-90a9974bdad5 {
    padding:  0 0 120px 0;
}
/*
 * components/customer/thank_you/cmp_de4a807f-cac3-4298-8321-ea6d14ba29ad/component.css
 */

/*
 * components/global/cmp_16481eb7-be70-425f-86e9-0d85f57b3c3a/component.css
 */
#cmp_16481eb7-be70-425f-86e9-0d85f57b3c3a.navbar {
	background-color: rgb(255, 255, 255);
	border-radius: 0;
	padding: 0;

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

#cmp_16481eb7-be70-425f-86e9-0d85f57b3c3a.navbar a:hover,
#cmp_16481eb7-be70-425f-86e9-0d85f57b3c3a.navbar a:focus,
#cmp_16481eb7-be70-425f-86e9-0d85f57b3c3a.navbar a:active {
	color: rgb(155, 155, 155);
}

#cmp_16481eb7-be70-425f-86e9-0d85f57b3c3a .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;

	color: rgb(0, 0, 0);
	font-family: Gothic A1;
	font-size: 24px;
	letter-spacing: 0.038em;
	margin: 0;
	max-width: 100%;
	padding: 15px;
	text-align: center;
	text-transform: uppercase;
}

#cmp_16481eb7-be70-425f-86e9-0d85f57b3c3a .navbar-brand img {
	max-width: 100%;
}

#cmp_16481eb7-be70-425f-86e9-0d85f57b3c3a.navbar .navbar-toggler {
	background-color: rgb(195, 157, 106);
	border-radius: 0;
	color: #FFFFFF;
	font-size: 13px;
	letter-spacing: 0.077em;
	padding: 15px;
	text-transform: uppercase;
}

#cmp_16481eb7-be70-425f-86e9-0d85f57b3c3a.navbar .navbar-toggler:hover,
#cmp_16481eb7-be70-425f-86e9-0d85f57b3c3a.navbar .navbar-toggler:focus,
#cmp_16481eb7-be70-425f-86e9-0d85f57b3c3a.navbar .navbar-toggler:active {
	background-color: rgb(248, 231, 28);
	color: #FFFFFF;
}

#cmp_16481eb7-be70-425f-86e9-0d85f57b3c3a .navbar-nav {
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;

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

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

	margin: 0;
	padding: 15px 0;
}

#cmp_16481eb7-be70-425f-86e9-0d85f57b3c3a .navbar-nav li {
	padding: 10px 0;
}

#cmp_16481eb7-be70-425f-86e9-0d85f57b3c3a .navbar-nav .nav-link {
	color: rgb(0, 0, 0);
	font-family: Gothic A1;
	font-size: 12px;;
	padding: 8px 18px;
	text-align: center;
	text-transform: uppercase;
}

@media (min-width: 768px) {
	#cmp_16481eb7-be70-425f-86e9-0d85f57b3c3a.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 0 0 0;
	}
	#cmp_16481eb7-be70-425f-86e9-0d85f57b3c3a .navbar-brand {
		padding: 0 0 15px 0;
	}
	#cmp_16481eb7-be70-425f-86e9-0d85f57b3c3a .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_16481eb7-be70-425f-86e9-0d85f57b3c3a .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 0 15px 0;
	}
	#cmp_16481eb7-be70-425f-86e9-0d85f57b3c3a .navbar-nav li {
		padding: 0;
	}
}

/*
 * components/global/cmp_20712a1e-adaa-4b72-8b66-0e06ebcf2ee4/component.css
 */
#cmp_20712a1e-adaa-4b72-8b66-0e06ebcf2ee4 {
	background-color: ;
}

#cmp_20712a1e-adaa-4b72-8b66-0e06ebcf2ee4 h1 {
	color: ;
	font-family: ;
	font-size: ;
	margin: 0 0 25px 0;
}

#cmp_20712a1e-adaa-4b72-8b66-0e06ebcf2ee4 h2 {
	color: ;
	font-family: ;
	font-size: ;
	margin: 0 0 25px 0;
}

#cmp_20712a1e-adaa-4b72-8b66-0e06ebcf2ee4 h3 {
	color: ;
	font-family: ;
	font-size: ;
	margin: 0 0 25px 0;
}

#cmp_20712a1e-adaa-4b72-8b66-0e06ebcf2ee4 p {
	color: ;
	font-family: ;
	font-size: ;
	margin: 0 0 25px 0;
}

#cmp_20712a1e-adaa-4b72-8b66-0e06ebcf2ee4 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_20712a1e-adaa-4b72-8b66-0e06ebcf2ee4 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_20712a1e-adaa-4b72-8b66-0e06ebcf2ee4 .btn {
	background-color: ;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_20712a1e-adaa-4b72-8b66-0e06ebcf2ee4 .btn:hover {
	background-color: ;
	color: ;
}

#cmp_20712a1e-adaa-4b72-8b66-0e06ebcf2ee4 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_20712a1e-adaa-4b72-8b66-0e06ebcf2ee4 ul {
	list-style: disc;
	list-style-position: inside;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_20712a1e-adaa-4b72-8b66-0e06ebcf2ee4  {
	padding-top: 0;
}
/*
 * components/global/cmp_2c9a23c9-a997-43f1-af16-253507b39c77/component.css
 */
#cmp_2c9a23c9-a997-43f1-af16-253507b39c77.footer {
	background-color: rgb(218, 214, 209);
	color: rgb(0, 0, 0);
	font-family: Gothic A1;
	padding: 10px 0;

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

#cmp_2c9a23c9-a997-43f1-af16-253507b39c77 .footer-social {
	padding: 15px 0;
	text-align: center;
}

#cmp_2c9a23c9-a997-43f1-af16-253507b39c77 .footer-social a {
	display: inline-block;
	padding: 0 5px;
}

#cmp_2c9a23c9-a997-43f1-af16-253507b39c77 .footer-social svg path {
	fill: rgb(0, 0, 0);
}

#cmp_2c9a23c9-a997-43f1-af16-253507b39c77 .footer-social a:hover svg path,
#cmp_2c9a23c9-a997-43f1-af16-253507b39c77 .footer-social a:focus svg path,
#cmp_2c9a23c9-a997-43f1-af16-253507b39c77 .footer-social a:active svg path {
	fill: rgb(248, 231, 28);
}

#cmp_2c9a23c9-a997-43f1-af16-253507b39c77.footer .toggler-container {
	padding: 15px 0;
	text-align: center;
}

#cmp_2c9a23c9-a997-43f1-af16-253507b39c77.footer .navbar-toggler {
	color: rgb(195, 157, 106);
	font-size: 13px;
	letter-spacing: 0.077em;
	text-transform: uppercase;
}

#cmp_2c9a23c9-a997-43f1-af16-253507b39c77 .footer-cc {
	border-top: 1px solid #e1e1e1;
	letter-spacing: 1px;
	text-align: center;
}

#cmp_2c9a23c9-a997-43f1-af16-253507b39c77 .footer-cc img {
	padding: 15px 0;
}

#cmp_2c9a23c9-a997-43f1-af16-253507b39c77 .footer-cc p,
#cmp_2c9a23c9-a997-43f1-af16-253507b39c77 .footer-tributes p {
	margin: 0;
	padding: 15px 0;
}

#cmp_2c9a23c9-a997-43f1-af16-253507b39c77 .footer-tributes p a {
	color: rgb(0, 0, 0);
	padding: 0;
}

#cmp_2c9a23c9-a997-43f1-af16-253507b39c77 .footer-tributes p a:hover,
#cmp_2c9a23c9-a997-43f1-af16-253507b39c77 .footer-tributes p a:focus,
#cmp_2c9a23c9-a997-43f1-af16-253507b39c77 .footer-tributes p a:active {
	color: rgb(0, 0, 0);
	text-decoration: none;
}

#cmp_2c9a23c9-a997-43f1-af16-253507b39c77 .footer-directory {
	text-align: center;
}

#cmp_2c9a23c9-a997-43f1-af16-253507b39c77 .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_2c9a23c9-a997-43f1-af16-253507b39c77 .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_2c9a23c9-a997-43f1-af16-253507b39c77 .footer-list .footer-link {
	color: rgb(0, 0, 0);
	font-family: Gothic A1;
	font-size: 13px;
	letter-spacing: 0.077em;
	text-transform: uppercase;
}

#cmp_2c9a23c9-a997-43f1-af16-253507b39c77 .footer-list .footer-link:hover,
#cmp_2c9a23c9-a997-43f1-af16-253507b39c77 .footer-list .footer-link:focus,
#cmp_2c9a23c9-a997-43f1-af16-253507b39c77 .footer-list .footer-link:active {
	color: rgb(155, 155, 155);
	text-decoration: none;
}

@media (max-width: 767px) {
	#cmp_2c9a23c9-a997-43f1-af16-253507b39c77 .col-sm-12,
	#cmp_2c9a23c9-a997-43f1-af16-253507b39c77 .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_2c9a23c9-a997-43f1-af16-253507b39c77.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: 25px 0;
	}
	#cmp_2c9a23c9-a997-43f1-af16-253507b39c77 .footer-directory {
		-webkit-order: 1;
		-moz-order: 1;
		-ms-order: 1;
		order: 1;

		text-align: left;
	}
	#cmp_2c9a23c9-a997-43f1-af16-253507b39c77 .footer-social {
		-webkit-order: 2;
		-moz-order: 2;
		-ms-order: 2;
		order: 2;

		padding: 0 15px;
		text-align: right;
	}
	#cmp_2c9a23c9-a997-43f1-af16-253507b39c77 .footer-cc {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}
	#cmp_2c9a23c9-a997-43f1-af16-253507b39c77 .footer-cc p {
		display: inline-block;
	}
}

@media (min-width: 992px) {
	#cmp_2c9a23c9-a997-43f1-af16-253507b39c77 .footer-cc {
		-webkit-order: 2;
		-moz-order: 2;
		-ms-order: 2;
		order: 2;

		border-top: none;
	}
	#cmp_2c9a23c9-a997-43f1-af16-253507b39c77 .footer-cc p {
		display: block;
	}
	#cmp_2c9a23c9-a997-43f1-af16-253507b39c77 .footer-social {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}
}

/*
 * components/index/cmp_1a50f8d1-eff0-4b16-b931-01b86155a186/component.css
 */
#cmp_1a50f8d1-eff0-4b16-b931-01b86155a186 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_1a50f8d1-eff0-4b16-b931-01b86155a186 .content {
	padding: 0;
}

#cmp_1a50f8d1-eff0-4b16-b931-01b86155a186 .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_1a50f8d1-eff0-4b16-b931-01b86155a186 .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/index/cmp_27e8e24f-4f24-4e4a-acde-d35080193a66/component.css
 */
#cmp_27e8e24f-4f24-4e4a-acde-d35080193a66 img {
	max-width: 100%;
}

/*
 * components/index/cmp_2faf945b-ebd8-4f49-8727-3b3b00a5e4f6/component.css
 */
#cmp_2faf945b-ebd8-4f49-8727-3b3b00a5e4f6 {
	padding: 0;
}

#cmp_2faf945b-ebd8-4f49-8727-3b3b00a5e4f6 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_2faf945b-ebd8-4f49-8727-3b3b00a5e4f6 .hero-content h1 {
	color: rgb(0, 0, 0);
	font-family: Gothic A1;
	font-size: 24px;
}

#cmp_2faf945b-ebd8-4f49-8727-3b3b00a5e4f6 .hero-content h2 {
	color: rgb(126, 211, 33);
	font-family: Concert One;
	font-size: 48px;
}

#cmp_2faf945b-ebd8-4f49-8727-3b3b00a5e4f6 .hero-content h3 {
	color: #FFFFFF;
	font-family: Montserrat;
	font-size: 16px;
}

#cmp_2faf945b-ebd8-4f49-8727-3b3b00a5e4f6 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_2faf945b-ebd8-4f49-8727-3b3b00a5e4f6 .hero-content .btn {
	background-color: rgb(208, 2, 27);
	color: #FFFFFF;
	font-family: Gothic A1;
	font-size: 13px;
}

#cmp_2faf945b-ebd8-4f49-8727-3b3b00a5e4f6 .hero-content .btn:hover {
	background-color: rgb(126, 211, 33);
	color: #FFFFFF;
}


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

@media(min-width: 768px) {
	#cmp_2faf945b-ebd8-4f49-8727-3b3b00a5e4f6 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

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

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

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

	#cmp_2faf945b-ebd8-4f49-8727-3b3b00a5e4f6 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

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

/*
 * components/index/cmp_339b16c7-cb23-41d5-bb1a-384df49b4442/component.css
 */
#cmp_339b16c7-cb23-41d5-bb1a-384df49b4442 {
	padding: 0;
}

#cmp_339b16c7-cb23-41d5-bb1a-384df49b4442 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_339b16c7-cb23-41d5-bb1a-384df49b4442 .hero-content h1 {
	color: rgb(195, 157, 106);
	font-family: Gothic A1;
	font-size: 33px;
}

#cmp_339b16c7-cb23-41d5-bb1a-384df49b4442 .hero-content h2 {
	color: rgb(0, 0, 0);
	font-family: Gothic A1;
	font-size: 24px;
}

#cmp_339b16c7-cb23-41d5-bb1a-384df49b4442 .hero-content h3 {
	color: rgb(0, 0, 0);
	font-family: Gothic A1;
	font-size: 16px;
}

#cmp_339b16c7-cb23-41d5-bb1a-384df49b4442 .hero-content p {
	color: #FFFFFF;
	font-family: Gothic A1;
	font-size: 13px;
}

#cmp_339b16c7-cb23-41d5-bb1a-384df49b4442 .hero-content .btn {
	background-color: rgb(255, 255, 255);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_339b16c7-cb23-41d5-bb1a-384df49b4442 .hero-content .btn:hover {
	background-color: rgb(255, 255, 255);
	color: #FFFFFF;
}


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

@media(min-width: 768px) {
	#cmp_339b16c7-cb23-41d5-bb1a-384df49b4442 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_339b16c7-cb23-41d5-bb1a-384df49b4442 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_339b16c7-cb23-41d5-bb1a-384df49b4442 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_339b16c7-cb23-41d5-bb1a-384df49b4442 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_339b16c7-cb23-41d5-bb1a-384df49b4442 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_339b16c7-cb23-41d5-bb1a-384df49b4442 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/index/cmp_4079bb06-84ca-4d97-906d-f56bc9332465/component.css
 */
#cmp_4079bb06-84ca-4d97-906d-f56bc9332465 img {
	max-width: 100%;
}

/*
 * components/index/cmp_45294e9f-720e-404b-b413-3406b8f5beb7/component.css
 */
#cmp_45294e9f-720e-404b-b413-3406b8f5beb7 {
	padding: 0;
}

#cmp_45294e9f-720e-404b-b413-3406b8f5beb7 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_45294e9f-720e-404b-b413-3406b8f5beb7 .hero-content h1 {
	color: rgb(0, 0, 0);
	font-family: Gothic A1;
	font-size: 24px;
	margin: 0 0 15px 0;
}

#cmp_45294e9f-720e-404b-b413-3406b8f5beb7 .hero-content h2 {
	color: rgb(195, 157, 106);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 15px 0;
}

#cmp_45294e9f-720e-404b-b413-3406b8f5beb7 .hero-content h3 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 15px 0;
}

#cmp_45294e9f-720e-404b-b413-3406b8f5beb7 .hero-content p {
	color: #49494A;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 15px 0;
}

#cmp_45294e9f-720e-404b-b413-3406b8f5beb7 .hero-content .button-container {
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
}

#cmp_45294e9f-720e-404b-b413-3406b8f5beb7 .hero-content .btn {
	margin: 3px;
	padding: 15px;
	width: 40%;
}

#cmp_45294e9f-720e-404b-b413-3406b8f5beb7 .hero-content .btn-primary {
	background-color: rgb(126, 211, 33);
	color: #FFFFFF;
	font-family: Gothic A1;
	font-size: 13px;
}

#cmp_45294e9f-720e-404b-b413-3406b8f5beb7 .hero-content .btn-primary:hover {
	background-color: rgb(248, 231, 28);
	color: #FFFFFF;
}

#cmp_45294e9f-720e-404b-b413-3406b8f5beb7 .hero-content .btn-secondary {
	background-color: rgb(0, 0, 0);
	color: #FFFFFF;
	font-family: Gothic A1;
	font-size: 13px;
}

#cmp_45294e9f-720e-404b-b413-3406b8f5beb7 .hero-content .btn-secondary:hover {
	background-color: rgb(248, 231, 28);
	color: #FFFFFF;
}

#cmp_45294e9f-720e-404b-b413-3406b8f5beb7 p {
	margin: 0 0 25px 0;
}
/*
 * components/index/cmp_474f8a44-20dd-49d7-b82a-3ae3b338e309/component.css
 */
#cmp_474f8a44-20dd-49d7-b82a-3ae3b338e309 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: rgb(255, 255, 255);
}

#cmp_474f8a44-20dd-49d7-b82a-3ae3b338e309 .content {
	padding: 0;
}

#cmp_474f8a44-20dd-49d7-b82a-3ae3b338e309 .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_474f8a44-20dd-49d7-b82a-3ae3b338e309 .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/index/cmp_5a069367-9d78-45c4-8888-2d29ee08178b/component.css
 */
#cmp_5a069367-9d78-45c4-8888-2d29ee08178b {
	padding: 0;
}

#cmp_5a069367-9d78-45c4-8888-2d29ee08178b .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_5a069367-9d78-45c4-8888-2d29ee08178b .hero-content h1 {
	color: rgb(126, 211, 33);
	font-family: Concert One;
	font-size: 36px;
}

#cmp_5a069367-9d78-45c4-8888-2d29ee08178b .hero-content h2 {
	color: rgb(0, 0, 0);
	font-family: Gothic A1;
	font-size: 24px;
}

#cmp_5a069367-9d78-45c4-8888-2d29ee08178b .hero-content h3 {
	color: rgb(0, 0, 0);
	font-family: Gothic A1;
	font-size: 16px;
}

#cmp_5a069367-9d78-45c4-8888-2d29ee08178b .hero-content p {
	color: #FFFFFF;
	font-family: Gothic A1;
	font-size: 13px;
}

#cmp_5a069367-9d78-45c4-8888-2d29ee08178b .hero-content .btn {
	background-color: rgb(255, 255, 255);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_5a069367-9d78-45c4-8888-2d29ee08178b .hero-content .btn:hover {
	background-color: rgb(255, 255, 255);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_5a069367-9d78-45c4-8888-2d29ee08178b .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_5a069367-9d78-45c4-8888-2d29ee08178b .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_5a069367-9d78-45c4-8888-2d29ee08178b .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_5a069367-9d78-45c4-8888-2d29ee08178b .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_5a069367-9d78-45c4-8888-2d29ee08178b .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_5a069367-9d78-45c4-8888-2d29ee08178b .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_5a069367-9d78-45c4-8888-2d29ee08178b .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/index/cmp_6c5c4f10-dba2-4de7-b97a-f05018d86f49/component.css
 */
#cmp_6c5c4f10-dba2-4de7-b97a-f05018d86f49 {
	padding: 0;
}

#cmp_6c5c4f10-dba2-4de7-b97a-f05018d86f49 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_6c5c4f10-dba2-4de7-b97a-f05018d86f49 .hero-content h1 {
	color: rgb(0, 0, 0);
	font-family: Gothic A1;
	font-size: 24px;
}

#cmp_6c5c4f10-dba2-4de7-b97a-f05018d86f49 .hero-content h2 {
	color: rgb(126, 211, 33);
	font-family: Concert One;
	font-size: 33px;
}

#cmp_6c5c4f10-dba2-4de7-b97a-f05018d86f49 .hero-content h3 {
	color: #FFFFFF;
	font-family: Gothic A1;
	font-size: 16px;
}

#cmp_6c5c4f10-dba2-4de7-b97a-f05018d86f49 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_6c5c4f10-dba2-4de7-b97a-f05018d86f49 .hero-content .btn {
	background-color: rgb(255, 255, 255);
	color: #FFFFFF;
	font-family: Gothic A1;
	font-size: 13px;
}

#cmp_6c5c4f10-dba2-4de7-b97a-f05018d86f49 .hero-content .btn:hover {
	background-color: rgb(255, 255, 255);
	color: #FFFFFF;
}


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

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

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

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

@media(min-width: 1140px) {
	#cmp_6c5c4f10-dba2-4de7-b97a-f05018d86f49 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_6c5c4f10-dba2-4de7-b97a-f05018d86f49 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

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

/*
 * components/index/cmp_84999a1a-72b6-4970-b77c-2bdc8f6f1f24/component.css
 */
#cmp_84999a1a-72b6-4970-b77c-2bdc8f6f1f24 {
	padding: 0;
}

#cmp_84999a1a-72b6-4970-b77c-2bdc8f6f1f24 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_84999a1a-72b6-4970-b77c-2bdc8f6f1f24 .hero-content h1 {
	color: rgb(195, 157, 106);
	font-family: Gothic A1;
	font-size: 24px;
}

#cmp_84999a1a-72b6-4970-b77c-2bdc8f6f1f24 .hero-content h2 {
	color: rgb(0, 0, 0);
	font-family: Gothic A1;
	font-size: 24px;
}

#cmp_84999a1a-72b6-4970-b77c-2bdc8f6f1f24 .hero-content h3 {
	color: #FFFFFF;
	font-family: Gothic A1;
	font-size: 16px;
}

#cmp_84999a1a-72b6-4970-b77c-2bdc8f6f1f24 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_84999a1a-72b6-4970-b77c-2bdc8f6f1f24 .hero-content .btn {
	background-color: rgb(255, 255, 255);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_84999a1a-72b6-4970-b77c-2bdc8f6f1f24 .hero-content .btn:hover {
	background-color: rgb(255, 255, 255);
	color: #FFFFFF;
}


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

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

	#cmp_84999a1a-72b6-4970-b77c-2bdc8f6f1f24 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_84999a1a-72b6-4970-b77c-2bdc8f6f1f24 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_84999a1a-72b6-4970-b77c-2bdc8f6f1f24 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_84999a1a-72b6-4970-b77c-2bdc8f6f1f24 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_84999a1a-72b6-4970-b77c-2bdc8f6f1f24 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/index/cmp_854ade6e-a1bd-4205-9a46-d2dfc58c19f4/component.css
 */
#cmp_854ade6e-a1bd-4205-9a46-d2dfc58c19f4 {
	padding: 0;
}

#cmp_854ade6e-a1bd-4205-9a46-d2dfc58c19f4 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_854ade6e-a1bd-4205-9a46-d2dfc58c19f4 .hero-content h1 {
	color: rgb(0, 0, 0);
	font-family: Gothic A1;
	font-size: 24px;
}

#cmp_854ade6e-a1bd-4205-9a46-d2dfc58c19f4 .hero-content h2 {
	color: #FFFFFF;
	font-family: Montserrat;
	font-size: 26px;
}

#cmp_854ade6e-a1bd-4205-9a46-d2dfc58c19f4 .hero-content h3 {
	color: #FFFFFF;
	font-family: Montserrat;
	font-size: 16px;
}

#cmp_854ade6e-a1bd-4205-9a46-d2dfc58c19f4 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_854ade6e-a1bd-4205-9a46-d2dfc58c19f4 .hero-content .btn {
	background-color: rgb(255, 255, 255);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_854ade6e-a1bd-4205-9a46-d2dfc58c19f4 .hero-content .btn:hover {
	background-color: rgb(255, 255, 255);
	color: #FFFFFF;
}


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

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

	#cmp_854ade6e-a1bd-4205-9a46-d2dfc58c19f4 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_854ade6e-a1bd-4205-9a46-d2dfc58c19f4 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_854ade6e-a1bd-4205-9a46-d2dfc58c19f4 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_854ade6e-a1bd-4205-9a46-d2dfc58c19f4 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_854ade6e-a1bd-4205-9a46-d2dfc58c19f4 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/index/cmp_8dc17c1d-6841-418e-bb0c-047754b35152/component.css
 */
#cmp_8dc17c1d-6841-418e-bb0c-047754b35152 {
	padding: 0;
}

#cmp_8dc17c1d-6841-418e-bb0c-047754b35152 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_8dc17c1d-6841-418e-bb0c-047754b35152 .hero-content h1 {
	color: rgb(195, 157, 106);
	font-family: Gothic A1;
	font-size: 45px;
}

#cmp_8dc17c1d-6841-418e-bb0c-047754b35152 .hero-content h2 {
	color: rgb(0, 0, 0);
	font-family: Gothic A1;
	font-size: 16px;
}

#cmp_8dc17c1d-6841-418e-bb0c-047754b35152 .hero-content h3 {
	color: rgb(155, 155, 155);
	font-family: Gothic A1;
	font-size: 16px;
}

#cmp_8dc17c1d-6841-418e-bb0c-047754b35152 .hero-content p {
	color: rgb(155, 155, 155);
	font-family: Lato;
	font-size: 13px;
}

#cmp_8dc17c1d-6841-418e-bb0c-047754b35152 .hero-content .btn {
	background-color: rgb(255, 255, 255);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_8dc17c1d-6841-418e-bb0c-047754b35152 .hero-content .btn:hover {
	background-color: rgb(255, 255, 255);
	color: #FFFFFF;
}


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

@media(min-width: 768px) {
	#cmp_8dc17c1d-6841-418e-bb0c-047754b35152 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_8dc17c1d-6841-418e-bb0c-047754b35152 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_8dc17c1d-6841-418e-bb0c-047754b35152 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_8dc17c1d-6841-418e-bb0c-047754b35152 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_8dc17c1d-6841-418e-bb0c-047754b35152 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_8dc17c1d-6841-418e-bb0c-047754b35152 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/index/cmp_8f332628-4aea-4113-9353-a46415e2bcdb/component.css
 */
#cmp_8f332628-4aea-4113-9353-a46415e2bcdb {
	padding: 0;
}

#cmp_8f332628-4aea-4113-9353-a46415e2bcdb .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_8f332628-4aea-4113-9353-a46415e2bcdb .hero-content h1 {
	color: rgb(195, 157, 106);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_8f332628-4aea-4113-9353-a46415e2bcdb .hero-content h2 {
	color: rgb(0, 0, 0);
	font-family: Gothic A1;
	font-size: 24px;
}

#cmp_8f332628-4aea-4113-9353-a46415e2bcdb .hero-content h3 {
	color: #FFFFFF;
	font-family: Montserrat;
	font-size: 16px;
}

#cmp_8f332628-4aea-4113-9353-a46415e2bcdb .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_8f332628-4aea-4113-9353-a46415e2bcdb .hero-content .btn {
	background-color: rgb(255, 255, 255);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_8f332628-4aea-4113-9353-a46415e2bcdb .hero-content .btn:hover {
	background-color: rgb(255, 255, 255);
	color: #FFFFFF;
}


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

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

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

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

@media(min-width: 1140px) {
	#cmp_8f332628-4aea-4113-9353-a46415e2bcdb .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_8f332628-4aea-4113-9353-a46415e2bcdb .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

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

/*
 * components/index/cmp_a3683a30-21d7-4aa7-b53f-46d3069339b6/component.css
 */
#cmp_a3683a30-21d7-4aa7-b53f-46d3069339b6 {
	padding: 0;
}

#cmp_a3683a30-21d7-4aa7-b53f-46d3069339b6 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_a3683a30-21d7-4aa7-b53f-46d3069339b6 .hero-content h1 {
	color: rgb(195, 157, 106);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_a3683a30-21d7-4aa7-b53f-46d3069339b6 .hero-content h2 {
	color: rgb(0, 0, 0);
	font-family: Gothic A1;
	font-size: 24px;
}

#cmp_a3683a30-21d7-4aa7-b53f-46d3069339b6 .hero-content h3 {
	color: rgb(0, 0, 0);
	font-family: Gothic A1;
	font-size: 16px;
}

#cmp_a3683a30-21d7-4aa7-b53f-46d3069339b6 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_a3683a30-21d7-4aa7-b53f-46d3069339b6 .hero-content .btn {
	background-color: rgb(255, 255, 255);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_a3683a30-21d7-4aa7-b53f-46d3069339b6 .hero-content .btn:hover {
	background-color: rgb(255, 255, 255);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_a3683a30-21d7-4aa7-b53f-46d3069339b6 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_a3683a30-21d7-4aa7-b53f-46d3069339b6 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_a3683a30-21d7-4aa7-b53f-46d3069339b6 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_a3683a30-21d7-4aa7-b53f-46d3069339b6 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_a3683a30-21d7-4aa7-b53f-46d3069339b6 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_a3683a30-21d7-4aa7-b53f-46d3069339b6 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_a3683a30-21d7-4aa7-b53f-46d3069339b6 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/index/cmp_b4bcb546-18a9-4675-bf63-8bcaa633de92/component.css
 */
#cmp_b4bcb546-18a9-4675-bf63-8bcaa633de92 {
	background-color: rgb(255, 255, 255);
}

#cmp_b4bcb546-18a9-4675-bf63-8bcaa633de92 .content {
	margin: 10px auto;
	max-width: 250px;
}

#cmp_b4bcb546-18a9-4675-bf63-8bcaa633de92 .content .propositions-title {
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;

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

#cmp_b4bcb546-18a9-4675-bf63-8bcaa633de92 .content .propositions-title h3 {
	margin: 0;
}

#cmp_b4bcb546-18a9-4675-bf63-8bcaa633de92 .content .propositions-image {
	background-repeat: no-repeat;
	background-size: contain !important;
	height: 40px;
	margin: 15px;
	width: 40px;
}

#cmp_b4bcb546-18a9-4675-bf63-8bcaa633de92 h1 {
	color: rgb(0, 0, 0);
	font-family: Gothic A1;
	font-size: 33px;
}

#cmp_b4bcb546-18a9-4675-bf63-8bcaa633de92 h2 {
	color: rgb(195, 157, 106);
	font-family: Gothic A1;
	font-size: 24px;
}

#cmp_b4bcb546-18a9-4675-bf63-8bcaa633de92 h3 {
	color: rgb(0, 0, 0);
	font-family: Gothic A1;
	font-size: 16px;
}

#cmp_b4bcb546-18a9-4675-bf63-8bcaa633de92 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/index/cmp_bf65b203-2a85-43bb-969c-8dac3d60b214/component.css
 */
#cmp_bf65b203-2a85-43bb-969c-8dac3d60b214 img {
	max-width: 100%;
}

/*
 * components/index/cmp_d40e609c-4da8-4abd-823e-15c9bdc14937/component.css
 */
#cmp_d40e609c-4da8-4abd-823e-15c9bdc14937 img {
	max-width: 100%;
}

/*
 * components/index/cmp_f44b6c05-e2df-42f6-adcd-fb08f4520fad/component.css
 */
#cmp_f44b6c05-e2df-42f6-adcd-fb08f4520fad {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	background-color: rgb(255, 255, 255);
}

#cmp_f44b6c05-e2df-42f6-adcd-fb08f4520fad .content {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	margin: 0 auto;
	padding: 25px;
}

#cmp_f44b6c05-e2df-42f6-adcd-fb08f4520fad .square-image {
	height: 225px;
	margin: 0 0 15px 0;
	width: 225px;
}

#cmp_f44b6c05-e2df-42f6-adcd-fb08f4520fad h1 {
	color: rgb(195, 157, 106);
	font-family: Gothic A1;
	font-size: 24px;
}

#cmp_f44b6c05-e2df-42f6-adcd-fb08f4520fad h2 {
	color: rgb(195, 157, 106);
	font-family: Gothic A1;
	font-size: 24px;
}

#cmp_f44b6c05-e2df-42f6-adcd-fb08f4520fad h3 {
	color: rgb(0, 0, 0);
	font-family: Gothic A1;
	font-size: 16px;
}

#cmp_f44b6c05-e2df-42f6-adcd-fb08f4520fad p {
	color: rgb(155, 155, 155);
	font-family: Gothic A1;
	font-size: 12px;
}

/*
 * components/index/cmp_fc746dc4-c83a-4b77-bd6f-bcc581b32c1c/component.css
 */
#cmp_fc746dc4-c83a-4b77-bd6f-bcc581b32c1c {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	background-color: rgb(255, 255, 255);
}

#cmp_fc746dc4-c83a-4b77-bd6f-bcc581b32c1c .content {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	margin: 0 auto;
	padding: 25px;
}

#cmp_fc746dc4-c83a-4b77-bd6f-bcc581b32c1c .square-image {
	height: 225px;
	margin: 0 0 15px 0;
	width: 225px;
}

#cmp_fc746dc4-c83a-4b77-bd6f-bcc581b32c1c h1 {
	color: rgb(126, 211, 33);
	font-family: Concert One;
	font-size: 36px;
}

#cmp_fc746dc4-c83a-4b77-bd6f-bcc581b32c1c h2 {
	color: rgb(126, 211, 33);
	font-family: Concert One;
	font-size: 33px;
}

#cmp_fc746dc4-c83a-4b77-bd6f-bcc581b32c1c h3 {
	color: rgb(126, 211, 33);
	font-family: Gothic A1;
	font-size: 16px;
}

#cmp_fc746dc4-c83a-4b77-bd6f-bcc581b32c1c p {
	color: rgb(0, 0, 0);
	font-family: Gothic A1;
	font-size: 16px;
}

/*
 * components/shop/listing/cmp_063d9dc2-d522-49d1-9a75-445b7386f614/component.css
 */
#cmp_063d9dc2-d522-49d1-9a75-445b7386f614 {
    padding: 20px 0;

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

#cmp_063d9dc2-d522-49d1-9a75-445b7386f614 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_44017e9b-a2c0-498d-b1cd-20fe9f3908af/component.css
 */
#cmp_44017e9b-a2c0-498d-b1cd-20fe9f3908af {
    border-bottom: 1px solid #E1E1E1;
    margin-bottom: 35px;
	padding: 20px 0;

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

#cmp_44017e9b-a2c0-498d-b1cd-20fe9f3908af ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_7d960497-5252-48a6-b714-2346830d8603/component.css
 */
#cmp_7d960497-5252-48a6-b714-2346830d8603 {
	background-color: rgb(255, 255, 255);
}

#cmp_7d960497-5252-48a6-b714-2346830d8603 h1 {
	color: rgb(195, 157, 106);
	font-family: Gothic A1;
	font-size: 36px;
	margin: 0 0 25px 0;
}

#cmp_7d960497-5252-48a6-b714-2346830d8603 h2 {
	color: rgb(0, 0, 0);
	font-family: Gothic A1;
	font-size: 24px;
	margin: 0 0 25px 0;
}

#cmp_7d960497-5252-48a6-b714-2346830d8603 h3 {
	color: rgb(0, 0, 0);
	font-family: Gothic A1;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_7d960497-5252-48a6-b714-2346830d8603 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_7d960497-5252-48a6-b714-2346830d8603 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_7d960497-5252-48a6-b714-2346830d8603 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_7d960497-5252-48a6-b714-2346830d8603  {
	padding-bottom: 20px;
}
/*
 * components/shop/listing/cmp_deb3f496-329e-44f5-bcd6-a80371af1aa8/component.css
 */
.shop-listing {
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;

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

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

.shop-listing-item {
	color: #B0B0B0;
}

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

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

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

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

.product_paging {
	-webkit-display: flex;
	-ms-display: flex;
	display: flex;
	justify-content: center;

	margin: 20px 0;
}

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

.product_page.active a,
.product_page a:hover, .product_page a:focus,
.next_page a:hover, .next_page a:focus,
.prev_page a:hover, .prev_page a:focus {
	text-decoration: none;
	background-color: #F9F9F9;
}

.product_page.active a {
	color: black;
}

/*
 * components/shop/product/cmp_41e16f76-0975-4ad8-b430-cd038ae10280/component.css
 */
#cmp_41e16f76-0975-4ad8-b430-cd038ae10280 .shop-product__name {
	margin: 0 0 10px 0;
}

#cmp_41e16f76-0975-4ad8-b430-cd038ae10280 .shop-product__price {
	margin: 0 0 20px 0;
}

#cmp_41e16f76-0975-4ad8-b430-cd038ae10280 .shop-product select {
	width: auto;
}

#cmp_41e16f76-0975-4ad8-b430-cd038ae10280 .shop-product__add-to-cart {
	margin: 0 0 20px 0;
}

#cmp_41e16f76-0975-4ad8-b430-cd038ae10280 .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin: 0 0 40px 0;
}

#cmp_41e16f76-0975-4ad8-b430-cd038ae10280 .shop-product__review-share-desktop .col-xs-6 {
	padding: 10px 0 0 0;
}

#cmp_41e16f76-0975-4ad8-b430-cd038ae10280 .shop-product__review-share-desktop .col-xs-6 + .col-xs-6 {
	border-left: 1px solid #E1E1E1;
}

#cmp_41e16f76-0975-4ad8-b430-cd038ae10280  {
	padding-top: 0;
}
/*
 * components/shop/product/cmp_a14107b8-3bcf-460c-8823-785b276385ed/component.css
 */
#cmp_a14107b8-3bcf-460c-8823-785b276385ed.shop-product-header {
	padding: 50px 0 15px 0;
}

/*
 * components/sold_out/cmp_6800a6b0-fbbf-453a-94a5-9ff34bcb49b1/component.css
 */
#cmp_6800a6b0-fbbf-453a-94a5-9ff34bcb49b1 img {
	max-width: 100%;
}

/*
 * components/sold_out/cmp_807eefda-2c6b-4c2d-9672-8827a67e9a90/component.css
 */
#cmp_807eefda-2c6b-4c2d-9672-8827a67e9a90 {
	background-color: #FFFFFF;
}

#cmp_807eefda-2c6b-4c2d-9672-8827a67e9a90 h1 {
	color: rgb(0, 0, 0);
	font-family: Gothic A1;
	font-size: 33px;
	margin: 0 0 25px 0;
}

#cmp_807eefda-2c6b-4c2d-9672-8827a67e9a90 h2 {
	color: rgb(195, 157, 106);
	font-family: Gothic A1;
	font-size: 24px;
	margin: 0 0 25px 0;
}

#cmp_807eefda-2c6b-4c2d-9672-8827a67e9a90 h3 {
	color: rgb(0, 0, 0);
	font-family: Gothic A1;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_807eefda-2c6b-4c2d-9672-8827a67e9a90 p {
	color: rgb(74, 74, 74);
	font-family: Gothic A1;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_807eefda-2c6b-4c2d-9672-8827a67e9a90 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_807eefda-2c6b-4c2d-9672-8827a67e9a90 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_807eefda-2c6b-4c2d-9672-8827a67e9a90 .btn {
	background-color: rgb(195, 157, 106);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_807eefda-2c6b-4c2d-9672-8827a67e9a90 .btn:hover {
	background-color: rgb(248, 231, 28);
	color: #FFFFFF;
}

#cmp_807eefda-2c6b-4c2d-9672-8827a67e9a90 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Gothic A1;
	font-size: 16px;
}

#cmp_807eefda-2c6b-4c2d-9672-8827a67e9a90 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Gothic A1;
	font-size: 16px;
}

#cmp_807eefda-2c6b-4c2d-9672-8827a67e9a90  {
	padding-top: 0;
}
/*
 * components/subscribe/cmp_3b6f3cc6-823d-49ee-ad76-d947eb1a659d/component.css
 */
#cmp_3b6f3cc6-823d-49ee-ad76-d947eb1a659d {
	padding: 0;
}

#cmp_3b6f3cc6-823d-49ee-ad76-d947eb1a659d .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_3b6f3cc6-823d-49ee-ad76-d947eb1a659d .hero-content h1 {
	color: rgb(195, 157, 106);
	font-family: Gothic A1;
	font-size: 33px;
}

#cmp_3b6f3cc6-823d-49ee-ad76-d947eb1a659d .hero-content h2 {
	color: #FFFFFF;
	font-family: Gothic A1;
	font-size: 24px;
}

#cmp_3b6f3cc6-823d-49ee-ad76-d947eb1a659d .hero-content h3 {
	color: rgb(0, 0, 0);
	font-family: Gothic A1;
	font-size: 16px;
}

#cmp_3b6f3cc6-823d-49ee-ad76-d947eb1a659d .hero-content p {
	color: #FFFFFF;
	font-family: Gothic A1;
	font-size: 13px;
}

#cmp_3b6f3cc6-823d-49ee-ad76-d947eb1a659d .hero-content .btn {
	background-color: rgb(255, 255, 255);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_3b6f3cc6-823d-49ee-ad76-d947eb1a659d .hero-content .btn:hover {
	background-color: rgb(255, 255, 255);
	color: #FFFFFF;
}


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

@media(min-width: 768px) {
	#cmp_3b6f3cc6-823d-49ee-ad76-d947eb1a659d .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_3b6f3cc6-823d-49ee-ad76-d947eb1a659d .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_3b6f3cc6-823d-49ee-ad76-d947eb1a659d .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_3b6f3cc6-823d-49ee-ad76-d947eb1a659d .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_3b6f3cc6-823d-49ee-ad76-d947eb1a659d .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_3b6f3cc6-823d-49ee-ad76-d947eb1a659d .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/subscribe/cmp_3fb72267-fc4e-4f00-a84e-9b85e0018358/component.css
 */
#cmp_3fb72267-fc4e-4f00-a84e-9b85e0018358 {
	background-color: #FFFFFF;
}

#cmp_3fb72267-fc4e-4f00-a84e-9b85e0018358 h1 {
	color: rgb(195, 157, 106);
	font-family: Gothic A1;
	font-size: 24px;
	margin: 0 0 25px 0;
}

#cmp_3fb72267-fc4e-4f00-a84e-9b85e0018358 h2 {
	color: rgb(0, 0, 0);
	font-family: Gothic A1;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_3fb72267-fc4e-4f00-a84e-9b85e0018358 h3 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_3fb72267-fc4e-4f00-a84e-9b85e0018358 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_3fb72267-fc4e-4f00-a84e-9b85e0018358 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_3fb72267-fc4e-4f00-a84e-9b85e0018358 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/subscribe/cmp_42cfe593-0b19-4f0a-8eb4-7706b3d9c265/component.css
 */
#cmp_42cfe593-0b19-4f0a-8eb4-7706b3d9c265 {
	padding: 0;
}

#cmp_42cfe593-0b19-4f0a-8eb4-7706b3d9c265 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_42cfe593-0b19-4f0a-8eb4-7706b3d9c265 .hero-content h1 {
	color: rgb(195, 157, 106);
	font-family: Gothic A1;
	font-size: 33px;
}

#cmp_42cfe593-0b19-4f0a-8eb4-7706b3d9c265 .hero-content h2 {
	color: rgb(0, 0, 0);
	font-family: Gothic A1;
	font-size: 16px;
}

#cmp_42cfe593-0b19-4f0a-8eb4-7706b3d9c265 .hero-content h3 {
	color: #FFFFFF;
	font-family: Gothic A1;
	font-size: 16px;
}

#cmp_42cfe593-0b19-4f0a-8eb4-7706b3d9c265 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_42cfe593-0b19-4f0a-8eb4-7706b3d9c265 .hero-content .btn {
	background-color: rgb(126, 211, 33);
	color: #FFFFFF;
	font-family: Gothic A1;
	font-size: 13px;
}

#cmp_42cfe593-0b19-4f0a-8eb4-7706b3d9c265 .hero-content .btn:hover {
	background-color: rgb(248, 231, 28);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_42cfe593-0b19-4f0a-8eb4-7706b3d9c265 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_42cfe593-0b19-4f0a-8eb4-7706b3d9c265 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_42cfe593-0b19-4f0a-8eb4-7706b3d9c265 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_42cfe593-0b19-4f0a-8eb4-7706b3d9c265 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_42cfe593-0b19-4f0a-8eb4-7706b3d9c265 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_42cfe593-0b19-4f0a-8eb4-7706b3d9c265 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_42cfe593-0b19-4f0a-8eb4-7706b3d9c265 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/subscribe/cmp_4431bb6e-9487-4fcc-9ad6-e9a9e10d089e/component.css
 */
#cmp_4431bb6e-9487-4fcc-9ad6-e9a9e10d089e {
	padding: 0;
}

#cmp_4431bb6e-9487-4fcc-9ad6-e9a9e10d089e .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_4431bb6e-9487-4fcc-9ad6-e9a9e10d089e .hero-content h1 {
	color: rgb(195, 157, 106);
	font-family: Gothic A1;
	font-size: 24px;
}

#cmp_4431bb6e-9487-4fcc-9ad6-e9a9e10d089e .hero-content h2 {
	color: rgb(0, 0, 0);
	font-family: Gothic A1;
	font-size: 16px;
}

#cmp_4431bb6e-9487-4fcc-9ad6-e9a9e10d089e .hero-content h3 {
	color: #FFFFFF;
	font-family: Montserrat;
	font-size: 16px;
}

#cmp_4431bb6e-9487-4fcc-9ad6-e9a9e10d089e .hero-content p {
	color: #FFFFFF;
	font-family: Gothic A1;
	font-size: 13px;
}

#cmp_4431bb6e-9487-4fcc-9ad6-e9a9e10d089e .hero-content .btn {
	background-color: rgb(255, 255, 255);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_4431bb6e-9487-4fcc-9ad6-e9a9e10d089e .hero-content .btn:hover {
	background-color: rgb(255, 255, 255);
	color: #FFFFFF;
}


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

@media(min-width: 768px) {
	#cmp_4431bb6e-9487-4fcc-9ad6-e9a9e10d089e .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_4431bb6e-9487-4fcc-9ad6-e9a9e10d089e .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_4431bb6e-9487-4fcc-9ad6-e9a9e10d089e .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_4431bb6e-9487-4fcc-9ad6-e9a9e10d089e .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_4431bb6e-9487-4fcc-9ad6-e9a9e10d089e .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_4431bb6e-9487-4fcc-9ad6-e9a9e10d089e .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/subscribe/cmp_49617877-25f8-42a1-bb48-18705630e918/component.css
 */
#cmp_49617877-25f8-42a1-bb48-18705630e918 {
	background-color: rgb(255, 255, 255);
}

#cmp_49617877-25f8-42a1-bb48-18705630e918 h1 {
	color: rgb(126, 211, 33);
	font-family: Concert One;
	font-size: 24px;
	margin: 0 0 25px 0;
}

#cmp_49617877-25f8-42a1-bb48-18705630e918 h2 {
	color: rgb(74, 74, 74);
	font-family: Gothic A1;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_49617877-25f8-42a1-bb48-18705630e918 h3 {
	color: rgb(195, 157, 106);
	font-family: Gothic A1;
	font-size: 36px;
	margin: 0 0 25px 0;
}

#cmp_49617877-25f8-42a1-bb48-18705630e918 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_49617877-25f8-42a1-bb48-18705630e918 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_49617877-25f8-42a1-bb48-18705630e918 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/subscribe/cmp_4f704ce4-1190-4a17-9be4-e66c65c392e8/component.css
 */

/*
 * components/subscribe/cmp_adaaf43b-1c8f-401e-801a-c0d18ed25ac1/component.css
 */
#cmp_adaaf43b-1c8f-401e-801a-c0d18ed25ac1 {
	background-color: rgb(218, 214, 209);
}

#cmp_adaaf43b-1c8f-401e-801a-c0d18ed25ac1 h1 {
	color: rgb(195, 157, 106);
	font-family: Gothic A1;
	font-size: 36px;
	margin: 0 0 25px 0;
}

#cmp_adaaf43b-1c8f-401e-801a-c0d18ed25ac1 h2 {
	color: rgb(0, 0, 0);
	font-family: Gothic A1;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_adaaf43b-1c8f-401e-801a-c0d18ed25ac1 h3 {
	color: rgb(224, 10, 36);
	font-family: Gothic A1;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_adaaf43b-1c8f-401e-801a-c0d18ed25ac1 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_adaaf43b-1c8f-401e-801a-c0d18ed25ac1 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_adaaf43b-1c8f-401e-801a-c0d18ed25ac1 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_adaaf43b-1c8f-401e-801a-c0d18ed25ac1  {
	padding-bottom: 0;
}
/*
 * components/subscribe/cmp_e6e777f3-9d6d-49e7-bf01-9ea228caaece/component.css
 */
#cmp_e6e777f3-9d6d-49e7-bf01-9ea228caaece {
	background-color: #FFFFFF;
}

#cmp_e6e777f3-9d6d-49e7-bf01-9ea228caaece h1 {
	color: rgb(195, 157, 106);
	font-family: Gothic A1;
	font-size: 33px;
	margin: 0 0 25px 0;
}

#cmp_e6e777f3-9d6d-49e7-bf01-9ea228caaece h2 {
	color: rgb(74, 74, 74);
	font-family: Gothic A1;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_e6e777f3-9d6d-49e7-bf01-9ea228caaece h3 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_e6e777f3-9d6d-49e7-bf01-9ea228caaece p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_e6e777f3-9d6d-49e7-bf01-9ea228caaece ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_e6e777f3-9d6d-49e7-bf01-9ea228caaece 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: 13px;

	color: #FFFFFF;
	background-color: rgb(195, 157, 106);
}

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

#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: 13px;

	color: #FFFFFF;
	background-color: rgb(195, 157, 106);
}

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

@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_37ac9a36-ce7f-49be-ade6-87990482e578/component.css
 */
#cmp_37ac9a36-ce7f-49be-ade6-87990482e578 {
	padding: 50px 0 15px 0;
}

/*
 * components/subscribe_flow/survey_step/cmp_564bf7c4-44ec-47f2-a3a7-70ca58c7553b/component.css
 */
.survey:first-of-type {
    padding: 0 0 50px 0;
}
#cmp_564bf7c4-44ec-47f2-a3a7-70ca58c7553b  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/terms_step/cmp_3774a0b1-15b4-49b8-804c-246ee3717cb3/component.css
 */

/*
 * components/subscribe_flow/terms_step/cmp_a3cf30c5-7ad2-4b19-bf10-21888536de79/component.css
 */
#cmp_a3cf30c5-7ad2-4b19-bf10-21888536de79 {
	padding: 50px 0 15px 0;
}

/*
 * components/subscribe_flow/variant_step/cmp_6d2bbc01-e015-439e-b5e2-6312805267ca/component.css
 */
#cmp_6d2bbc01-e015-439e-b5e2-6312805267ca {
	padding: 50px 0 15px 0;
}

/*
 * components/subscribe_flow/variant_step/cmp_9b2b0a39-0776-42d5-85cd-074aa53f37d2/component.css
 */

/*
 * components/view-cart/cmp_78da305a-2b29-4e1f-9c7b-6df0da55d0e9/component.css
 */
#cmp_78da305a-2b29-4e1f-9c7b-6df0da55d0e9 {
	padding: 15px 15px 100px 15px;
}

#cmp_78da305a-2b29-4e1f-9c7b-6df0da55d0e9 .cart-thead {
	border-bottom: 1px solid #E1E1E1;
	padding: 10px 0;
}

#cmp_78da305a-2b29-4e1f-9c7b-6df0da55d0e9 .cart-thead h3 {
	text-transform: uppercase;
}

#cmp_78da305a-2b29-4e1f-9c7b-6df0da55d0e9 .cart-item {
	border: 1px solid #E1E1E1;
	padding: 25px 0;
	position: relative;
}

#cmp_78da305a-2b29-4e1f-9c7b-6df0da55d0e9 .product-main {
	margin: 0 0 15px 0;
}

#cmp_78da305a-2b29-4e1f-9c7b-6df0da55d0e9 .product-label p {
	margin: 0;
}

#cmp_78da305a-2b29-4e1f-9c7b-6df0da55d0e9 .product-label .info {
	color: rgb(195, 157, 106);
	text-align: right;
	text-transform: uppercase;
}

#cmp_78da305a-2b29-4e1f-9c7b-6df0da55d0e9 .product-label .meta {
	color: rgb(0, 0, 0);
	font-size: 16px;
}

#cmp_78da305a-2b29-4e1f-9c7b-6df0da55d0e9 .product-rem-btn {
	position: absolute;
	right: 1%;
	top: 1%;
}

#cmp_78da305a-2b29-4e1f-9c7b-6df0da55d0e9 figure {
	margin: 0 0 15px 0;
}

#cmp_78da305a-2b29-4e1f-9c7b-6df0da55d0e9 .cart-subtotal {
	margin: 50px 0 0 0;
}

#cmp_78da305a-2b29-4e1f-9c7b-6df0da55d0e9 .cart-subtotal h2 {
	margin: 0 0 15px 0;
}

#cmp_78da305a-2b29-4e1f-9c7b-6df0da55d0e9 .cart-subtotal h3 {
	margin: 0 0 25px 0;
	text-transform: uppercase;
}

#cmp_78da305a-2b29-4e1f-9c7b-6df0da55d0e9 .cart-subtotal p {
	margin: 0 0 25px 0;
}

@media (min-width: 768px) {
	#cmp_78da305a-2b29-4e1f-9c7b-6df0da55d0e9 .cart-item {
		border-width: 0 0 1px 0;
	}
	#cmp_78da305a-2b29-4e1f-9c7b-6df0da55d0e9 .product-rem-btn {
		top: 40%;
	}
	#cmp_78da305a-2b29-4e1f-9c7b-6df0da55d0e9 figure {
		margin: 0;
	}
}

/*
 * components/view-cart/cmp_bd3a771a-c6f7-4dc0-b543-042485a5704b/component.css
 */
#cmp_bd3a771a-c6f7-4dc0-b543-042485a5704b {
	background-color: rgb(218, 214, 209);
}

#cmp_bd3a771a-c6f7-4dc0-b543-042485a5704b h1 {
	color: rgb(195, 157, 106);
	font-family: Gothic A1;
	font-size: 36px;
	margin: 0 0 25px 0;
}

#cmp_bd3a771a-c6f7-4dc0-b543-042485a5704b h2 {
	color: rgb(0, 0, 0);
	font-family: Gothic A1;
	font-size: 24px;
	margin: 0 0 25px 0;
}

#cmp_bd3a771a-c6f7-4dc0-b543-042485a5704b h3 {
	color: rgb(0, 0, 0);
	font-family: Gothic A1;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_bd3a771a-c6f7-4dc0-b543-042485a5704b p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_bd3a771a-c6f7-4dc0-b543-042485a5704b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_bd3a771a-c6f7-4dc0-b543-042485a5704b ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}