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

h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	letter-spacing: 1px;
	line-height: 1;
}

h2 {
	color: rgb(117, 117, 47);
	font-family: Montserrat;
	font-size: 26px;
}

h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
}

p {
	line-height: 1.5em;
}

a,
.btn-link {
	color: rgb(117, 117, 47);
}

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

/* 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(117, 117, 47);
}

.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(117, 117, 47);
	color: rgb(117, 117, 47);
	padding: 0.6em 1.8em;
}

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

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

.btn-primary {
	background-color: rgb(117, 117, 47);
	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: #FAC325;
	color: #FFFFFF;
}

.btn-secondary {
	background-color: #49494A;
	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: #FAC325;
	color: #FFFFFF;
}

.btn-empty {
	background-color: transparent;
	border: 1px solid rgb(117, 117, 47);
	color: rgb(117, 117, 47);
}

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

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

/* 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(117, 117, 47);
	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: #FAC325;
	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(117, 117, 47);
}

.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(117, 117, 47);
	color: rgb(117, 117, 47);
	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: #FAC325;
	border-color: #FAC325;
	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_166553ef-65c8-4853-b240-354acbeb2ce0/component.css
 */
#cmp_166553ef-65c8-4853-b240-354acbeb2ce0 {
	background-color: #FFFFFF;
}

#cmp_166553ef-65c8-4853-b240-354acbeb2ce0 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_166553ef-65c8-4853-b240-354acbeb2ce0 h2 {
	color: rgb(117, 117, 47);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_166553ef-65c8-4853-b240-354acbeb2ce0 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_166553ef-65c8-4853-b240-354acbeb2ce0 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_166553ef-65c8-4853-b240-354acbeb2ce0 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_166553ef-65c8-4853-b240-354acbeb2ce0 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_166553ef-65c8-4853-b240-354acbeb2ce0 .btn {
	background-color: rgb(117, 117, 47);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_166553ef-65c8-4853-b240-354acbeb2ce0 .btn:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

/*
 * components/about/cmp_236e4345-72bd-4e5b-a3ff-e1d223999167/component.css
 */
#cmp_236e4345-72bd-4e5b-a3ff-e1d223999167 {
	padding: 0;
}

#cmp_236e4345-72bd-4e5b-a3ff-e1d223999167 .hero-content {
	background-color: #FFFFFF;
	padding: 20px;
}

#cmp_236e4345-72bd-4e5b-a3ff-e1d223999167 .hero-content h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 15px 0;
}

#cmp_236e4345-72bd-4e5b-a3ff-e1d223999167 .hero-content h2 {
	color: rgb(117, 117, 47);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 15px 0;
}

#cmp_236e4345-72bd-4e5b-a3ff-e1d223999167 .hero-content h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 15px 0;
}

#cmp_236e4345-72bd-4e5b-a3ff-e1d223999167 .hero-content p {
	color: #49494A;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 15px 0;
}

#cmp_236e4345-72bd-4e5b-a3ff-e1d223999167 .hero-content .btn {
	background-color: rgb(117, 117, 47);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_236e4345-72bd-4e5b-a3ff-e1d223999167 .hero-content .btn:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

/*
 * components/about/cmp_6d034314-c7ec-494e-8057-1296fb45f7f0/component.css
 */
#cmp_6d034314-c7ec-494e-8057-1296fb45f7f0 {
	background-color: #FFFFFF;
}

#cmp_6d034314-c7ec-494e-8057-1296fb45f7f0 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_6d034314-c7ec-494e-8057-1296fb45f7f0 h2 {
	color: rgb(117, 117, 47);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_6d034314-c7ec-494e-8057-1296fb45f7f0 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_6d034314-c7ec-494e-8057-1296fb45f7f0 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

/*
 * components/about/cmp_b86861bf-f0c6-40ab-b301-54f7d42b2da1/component.css
 */
#cmp_b86861bf-f0c6-40ab-b301-54f7d42b2da1 {
	background-color: #FFFFFF;
}

#cmp_b86861bf-f0c6-40ab-b301-54f7d42b2da1 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_b86861bf-f0c6-40ab-b301-54f7d42b2da1 h2 {
	color: rgb(117, 117, 47);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_b86861bf-f0c6-40ab-b301-54f7d42b2da1 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_b86861bf-f0c6-40ab-b301-54f7d42b2da1 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

/*
 * components/about/cmp_b9753bc8-c2ea-468d-9d5e-008bd9a33378/component.css
 */
#cmp_b9753bc8-c2ea-468d-9d5e-008bd9a33378 {
	background-color: #FFFFFF;
}

#cmp_b9753bc8-c2ea-468d-9d5e-008bd9a33378 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_b9753bc8-c2ea-468d-9d5e-008bd9a33378 h2 {
	color: rgb(117, 117, 47);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_b9753bc8-c2ea-468d-9d5e-008bd9a33378 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_b9753bc8-c2ea-468d-9d5e-008bd9a33378 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

/*
 * components/book_giveaway/cmp_641ed883-f66d-44d6-9aee-9fbefdc48aa7/component.css
 */
#cmp_641ed883-f66d-44d6-9aee-9fbefdc48aa7 {
	background-color: #FFFFFF;
}

#cmp_641ed883-f66d-44d6-9aee-9fbefdc48aa7 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_641ed883-f66d-44d6-9aee-9fbefdc48aa7 h2 {
	color: rgb(117, 117, 47);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_641ed883-f66d-44d6-9aee-9fbefdc48aa7 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_641ed883-f66d-44d6-9aee-9fbefdc48aa7 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_641ed883-f66d-44d6-9aee-9fbefdc48aa7 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_641ed883-f66d-44d6-9aee-9fbefdc48aa7 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/checkout/cmp_bb4eb7a8-158d-4495-a81e-e5a6031dc4f1/component.css
 */
#cmp_bb4eb7a8-158d-4495-a81e-e5a6031dc4f1 .checkout_content {
  overflow: auto;
}

#cmp_bb4eb7a8-158d-4495-a81e-e5a6031dc4f1 .checkout_content section {
  border-color: #F5F5F5;
}

#cmp_bb4eb7a8-158d-4495-a81e-e5a6031dc4f1 .cart_listing table {
  border-color: #F5F5F5;
}

#cmp_bb4eb7a8-158d-4495-a81e-e5a6031dc4f1  {
	padding-top: 0;
}
/*
 * components/customer/account/cmp_ccb411f9-4c57-46a2-99c7-3b6a66a98c97/component.css
 */

/*
 * components/customer/edit/cmp_e6655e5f-1854-4140-b545-b06b5231949d/component.css
 */

/*
 * components/customer/forgot_password/cmp_056c9221-5591-4ea4-b153-46ff635e183c/component.css
 */
#cmp_056c9221-5591-4ea4-b153-46ff635e183c {
	background-color: #FFFFFF;
}

#cmp_056c9221-5591-4ea4-b153-46ff635e183c h1 {
	color: #49494A;
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 25px 0;
}

#cmp_056c9221-5591-4ea4-b153-46ff635e183c h2 {
	color: rgb(117, 117, 47);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_056c9221-5591-4ea4-b153-46ff635e183c h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_056c9221-5591-4ea4-b153-46ff635e183c p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

/*
 * components/customer/forgot_password/cmp_126c21bc-c6d8-4e5e-9fee-2d022f23c21a/component.css
 */
#cmp_126c21bc-c6d8-4e5e-9fee-2d022f23c21a {
    padding:  0 0 120px 0;
}
/*
 * components/customer/login/cmp_67f04d18-7eda-4c67-b13e-06bdeee49ed1/component.css
 */
#cmp_67f04d18-7eda-4c67-b13e-06bdeee49ed1 {
	background-color: #FFFFFF;
}

#cmp_67f04d18-7eda-4c67-b13e-06bdeee49ed1 h1 {
	color: #49494A;
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 25px 0;
}

#cmp_67f04d18-7eda-4c67-b13e-06bdeee49ed1 h2 {
	color: rgb(117, 117, 47);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_67f04d18-7eda-4c67-b13e-06bdeee49ed1 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_67f04d18-7eda-4c67-b13e-06bdeee49ed1 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

/*
 * components/customer/login/cmp_ad1dbbef-e084-4a4d-b298-31e23413100e/component.css
 */
#cmp_ad1dbbef-e084-4a4d-b298-31e23413100e {
    padding:  0 0 120px 0;
}
/*
 * components/customer/order/cmp_4166d6b8-7f02-4541-b676-51d782e047c9/component.css
 */

/*
 * components/customer/password_reset/cmp_5579d20e-4df0-43de-b9ca-93a00ae418fe/component.css
 */
#cmp_5579d20e-4df0-43de-b9ca-93a00ae418fe {
    padding:  0 0 120px 0;
}
/*
 * components/customer/password_reset/cmp_a0302f0c-4ee1-4ebf-9339-decaad6546d8/component.css
 */
#cmp_a0302f0c-4ee1-4ebf-9339-decaad6546d8 {
	background-color: #FFFFFF;
}

#cmp_a0302f0c-4ee1-4ebf-9339-decaad6546d8 h1 {
	color: #49494A;
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 25px 0;
}

#cmp_a0302f0c-4ee1-4ebf-9339-decaad6546d8 h2 {
	color: rgb(117, 117, 47);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_a0302f0c-4ee1-4ebf-9339-decaad6546d8 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_a0302f0c-4ee1-4ebf-9339-decaad6546d8 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

/*
 * components/customer/thank_you/cmp_1d123ea0-a47d-4792-a273-73533f83961a/component.css
 */

/*
 * components/global/cmp_16c96df4-3704-4b9f-bdcf-af678d324ed4/component.css
 */
#cmp_16c96df4-3704-4b9f-bdcf-af678d324ed4.navbar {
	background-color: #FFFFFF;
	border-radius: 0;
	padding: 0;

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

#cmp_16c96df4-3704-4b9f-bdcf-af678d324ed4.navbar a:hover,
#cmp_16c96df4-3704-4b9f-bdcf-af678d324ed4.navbar a:focus,
#cmp_16c96df4-3704-4b9f-bdcf-af678d324ed4.navbar a:active {
	color: rgb(117, 117, 47);
}

#cmp_16c96df4-3704-4b9f-bdcf-af678d324ed4 .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(117, 117, 47);
	font-family: Montserrat;
	font-size: 26px;
	letter-spacing: 0.038em;
	margin: 0;
	max-width: 100%;
	padding: 15px;
	text-align: center;
	text-transform: uppercase;
}

#cmp_16c96df4-3704-4b9f-bdcf-af678d324ed4 .navbar-brand img {
	max-width: 100%;
}

#cmp_16c96df4-3704-4b9f-bdcf-af678d324ed4.navbar .navbar-toggler {
	background-color: rgb(117, 117, 47);
	border-radius: 0;
	color: #FFFFFF;
	font-size: 13px;
	letter-spacing: 0.077em;
	padding: 15px;
	text-transform: uppercase;
}

#cmp_16c96df4-3704-4b9f-bdcf-af678d324ed4.navbar .navbar-toggler:hover,
#cmp_16c96df4-3704-4b9f-bdcf-af678d324ed4.navbar .navbar-toggler:focus,
#cmp_16c96df4-3704-4b9f-bdcf-af678d324ed4.navbar .navbar-toggler:active {
	background-color: #FAC325;
	color: #FFFFFF;
}

#cmp_16c96df4-3704-4b9f-bdcf-af678d324ed4 .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_16c96df4-3704-4b9f-bdcf-af678d324ed4 .navbar-nav li {
	padding: 10px 0;
}

#cmp_16c96df4-3704-4b9f-bdcf-af678d324ed4 .navbar-nav .nav-link {
	color: #49494A;
	font-family: Lato;
	font-size: 13px;;
	padding: 8px 18px;
	text-align: center;
	text-transform: uppercase;
}

@media (min-width: 768px) {
	#cmp_16c96df4-3704-4b9f-bdcf-af678d324ed4.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_16c96df4-3704-4b9f-bdcf-af678d324ed4 .navbar-brand {
		padding: 0 0 15px 0;
	}
	#cmp_16c96df4-3704-4b9f-bdcf-af678d324ed4 .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_16c96df4-3704-4b9f-bdcf-af678d324ed4 .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_16c96df4-3704-4b9f-bdcf-af678d324ed4 .navbar-nav li {
		padding: 0;
	}
}

#cmp_16c96df4-3704-4b9f-bdcf-af678d324ed4 ol {
    list-style: decimal;
    list-style-position: inside;
    color: ;
    font-family: ;
    font-size: ;
}

#cmp_16c96df4-3704-4b9f-bdcf-af678d324ed4 ul {
    list-style: none;
    list-style-position: inside;
    color: ;
    font-family: ;
    font-size: ;
}

/*
 * components/global/cmp_718c1285-ecad-4b73-afaa-e7c845e65975/component.css
 */
#cmp_718c1285-ecad-4b73-afaa-e7c845e65975.footer {
	background-color: #FAFAFA;
	color: #B0B0B0;
	font-family: Lato;
	padding: 10px 0;

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

#cmp_718c1285-ecad-4b73-afaa-e7c845e65975 .footer-social {
	padding: 15px 0;
	text-align: center;
}

#cmp_718c1285-ecad-4b73-afaa-e7c845e65975 .footer-social a {
	display: inline-block;
	padding: 0 5px;
}

#cmp_718c1285-ecad-4b73-afaa-e7c845e65975 .footer-social svg path {
	fill: #49494A;
}

#cmp_718c1285-ecad-4b73-afaa-e7c845e65975 .footer-social a:hover svg path,
#cmp_718c1285-ecad-4b73-afaa-e7c845e65975 .footer-social a:focus svg path,
#cmp_718c1285-ecad-4b73-afaa-e7c845e65975 .footer-social a:active svg path {
	fill: #FAC325;
}

#cmp_718c1285-ecad-4b73-afaa-e7c845e65975.footer .toggler-container {
	padding: 15px 0;
	text-align: center;
}

#cmp_718c1285-ecad-4b73-afaa-e7c845e65975.footer .navbar-toggler {
	color: rgb(117, 117, 47);
	font-size: 13px;
	letter-spacing: 0.077em;
	text-transform: uppercase;
}

#cmp_718c1285-ecad-4b73-afaa-e7c845e65975 .footer-cc {
	border-top: 1px solid #e1e1e1;
	letter-spacing: 1px;
	text-align: center;
}

#cmp_718c1285-ecad-4b73-afaa-e7c845e65975 .footer-cc img {
	padding: 15px 0;
}

#cmp_718c1285-ecad-4b73-afaa-e7c845e65975 .footer-cc p,
#cmp_718c1285-ecad-4b73-afaa-e7c845e65975 .footer-tributes p {
	margin: 0;
	padding: 15px 0;
}

#cmp_718c1285-ecad-4b73-afaa-e7c845e65975 .footer-tributes p a {
	color: #B0B0B0;
	padding: 0;
}

#cmp_718c1285-ecad-4b73-afaa-e7c845e65975 .footer-tributes p a:hover,
#cmp_718c1285-ecad-4b73-afaa-e7c845e65975 .footer-tributes p a:focus,
#cmp_718c1285-ecad-4b73-afaa-e7c845e65975 .footer-tributes p a:active {
	color: #B0B0B0;
	text-decoration: none;
}

#cmp_718c1285-ecad-4b73-afaa-e7c845e65975 .footer-directory {
	text-align: center;
}

#cmp_718c1285-ecad-4b73-afaa-e7c845e65975 .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_718c1285-ecad-4b73-afaa-e7c845e65975 .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_718c1285-ecad-4b73-afaa-e7c845e65975 .footer-list .footer-link {
	color: #49494A;
	font-family: Lato;
	font-size: 13px;
	letter-spacing: 0.077em;
	text-transform: uppercase;
}

#cmp_718c1285-ecad-4b73-afaa-e7c845e65975 .footer-list .footer-link:hover,
#cmp_718c1285-ecad-4b73-afaa-e7c845e65975 .footer-list .footer-link:focus,
#cmp_718c1285-ecad-4b73-afaa-e7c845e65975 .footer-list .footer-link:active {
	color: rgb(117, 117, 47);
	text-decoration: none;
}

@media (max-width: 767px) {
	#cmp_718c1285-ecad-4b73-afaa-e7c845e65975 .col-sm-12,
	#cmp_718c1285-ecad-4b73-afaa-e7c845e65975 .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_718c1285-ecad-4b73-afaa-e7c845e65975.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_718c1285-ecad-4b73-afaa-e7c845e65975 .footer-directory {
		-webkit-order: 1;
		-moz-order: 1;
		-ms-order: 1;
		order: 1;

		text-align: left;
	}
	#cmp_718c1285-ecad-4b73-afaa-e7c845e65975 .footer-social {
		-webkit-order: 2;
		-moz-order: 2;
		-ms-order: 2;
		order: 2;

		padding: 0 15px;
		text-align: right;
	}
	#cmp_718c1285-ecad-4b73-afaa-e7c845e65975 .footer-cc {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}
	#cmp_718c1285-ecad-4b73-afaa-e7c845e65975 .footer-cc p {
		display: inline-block;
	}
}

@media (min-width: 992px) {
	#cmp_718c1285-ecad-4b73-afaa-e7c845e65975 .footer-cc {
		-webkit-order: 2;
		-moz-order: 2;
		-ms-order: 2;
		order: 2;

		border-top: none;
	}
	#cmp_718c1285-ecad-4b73-afaa-e7c845e65975 .footer-cc p {
		display: block;
	}
	#cmp_718c1285-ecad-4b73-afaa-e7c845e65975 .footer-social {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}
}

#cmp_718c1285-ecad-4b73-afaa-e7c845e65975 ol {
    list-style: decimal;
    list-style-position: inside;
    color: #B0B0B0;
    font-family: Lato;
    font-size: ;
}

#cmp_718c1285-ecad-4b73-afaa-e7c845e65975 ul {
    list-style: none;
    list-style-position: inside;
    color: #B0B0B0;
    font-family: Lato;
    font-size: ;
}

/*
 * components/global/cmp_d442ec4f-8a07-4d44-9e8d-6d80bc606f0c/component.css
 */
#cmp_d442ec4f-8a07-4d44-9e8d-6d80bc606f0c {
	background-color: #FFFFFF;
}

#cmp_d442ec4f-8a07-4d44-9e8d-6d80bc606f0c h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_d442ec4f-8a07-4d44-9e8d-6d80bc606f0c h2 {
	color: rgb(117, 117, 47);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_d442ec4f-8a07-4d44-9e8d-6d80bc606f0c h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_d442ec4f-8a07-4d44-9e8d-6d80bc606f0c p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_d442ec4f-8a07-4d44-9e8d-6d80bc606f0c .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_d442ec4f-8a07-4d44-9e8d-6d80bc606f0c .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_d442ec4f-8a07-4d44-9e8d-6d80bc606f0c .btn {
	background-color: rgb(117, 117, 47);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_d442ec4f-8a07-4d44-9e8d-6d80bc606f0c .btn:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

#cmp_d442ec4f-8a07-4d44-9e8d-6d80bc606f0c  {
	padding-top: 0;
}
/*
 * components/index/cmp_7288f9a7-bfad-4411-92fe-4426c72bae10/component.css
 */
#cmp_7288f9a7-bfad-4411-92fe-4426c72bae10 {
	background-color: #FFFFFF;
}

#cmp_7288f9a7-bfad-4411-92fe-4426c72bae10 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_7288f9a7-bfad-4411-92fe-4426c72bae10 h2 {
	color: rgb(117, 117, 47);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_7288f9a7-bfad-4411-92fe-4426c72bae10 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_7288f9a7-bfad-4411-92fe-4426c72bae10 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 24px;
	margin: 0 0 25px 0;
}

/*
 * components/index/cmp_b37f5daf-ed63-4841-952a-9ec0f8d6127a/component.css
 */
#cmp_b37f5daf-ed63-4841-952a-9ec0f8d6127a {
	background-color: #FAFAFA;
}

#cmp_b37f5daf-ed63-4841-952a-9ec0f8d6127a .content {
	margin: 10px auto;
	max-width: 250px;
}

#cmp_b37f5daf-ed63-4841-952a-9ec0f8d6127a .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_b37f5daf-ed63-4841-952a-9ec0f8d6127a .content .propositions-title h3 {
	margin: 0;
}

#cmp_b37f5daf-ed63-4841-952a-9ec0f8d6127a .content .propositions-image {
	background-repeat: no-repeat;
	background-size: contain !important;
	height: 40px;
	margin: 15px;
	width: 40px;
}

#cmp_b37f5daf-ed63-4841-952a-9ec0f8d6127a h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
}

#cmp_b37f5daf-ed63-4841-952a-9ec0f8d6127a h2 {
	color: rgb(117, 117, 47);
	font-family: Montserrat;
	font-size: 26px;
}

#cmp_b37f5daf-ed63-4841-952a-9ec0f8d6127a h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
}

#cmp_b37f5daf-ed63-4841-952a-9ec0f8d6127a p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/index/cmp_c3e48cf8-f875-4ffd-b962-27fff1ac7c06/component.css
 */
#cmp_c3e48cf8-f875-4ffd-b962-27fff1ac7c06 {
	padding: 0;
}

#cmp_c3e48cf8-f875-4ffd-b962-27fff1ac7c06 .hero-content {
	background-color: #E5E9EE;
	padding: 20px;
}

#cmp_c3e48cf8-f875-4ffd-b962-27fff1ac7c06 .hero-content h1 {
	color: #49494A;
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 15px 0;
}

#cmp_c3e48cf8-f875-4ffd-b962-27fff1ac7c06 .hero-content h2 {
	color: rgb(117, 117, 47);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 15px 0;
}

#cmp_c3e48cf8-f875-4ffd-b962-27fff1ac7c06 .hero-content h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 15px 0;
}

#cmp_c3e48cf8-f875-4ffd-b962-27fff1ac7c06 .hero-content p {
	color: #49494A;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 15px 0;
}

#cmp_c3e48cf8-f875-4ffd-b962-27fff1ac7c06 .hero-content .button-container {
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
}

#cmp_c3e48cf8-f875-4ffd-b962-27fff1ac7c06 .hero-content .btn {
	margin: 3px;
	padding: 15px;
	width: 40%;
}

#cmp_c3e48cf8-f875-4ffd-b962-27fff1ac7c06 .hero-content .btn-primary {
	background-color: rgb(117, 117, 47);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_c3e48cf8-f875-4ffd-b962-27fff1ac7c06 .hero-content .btn-primary:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

#cmp_c3e48cf8-f875-4ffd-b962-27fff1ac7c06 .hero-content .btn-secondary {
	background-color: #49494A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_c3e48cf8-f875-4ffd-b962-27fff1ac7c06 .hero-content .btn-secondary:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

#cmp_c3e48cf8-f875-4ffd-b962-27fff1ac7c06 p {
	margin: 0 0 25px 0;
}
/*
 * components/index/cmp_c7dd8796-e2b9-4a05-8bc6-36254ce93a62/component.css
 */
#cmp_c7dd8796-e2b9-4a05-8bc6-36254ce93a62 {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	background-color: #FAFAFA;
}

#cmp_c7dd8796-e2b9-4a05-8bc6-36254ce93a62 .content {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	margin: 0 auto;
	padding: 25px;
}

#cmp_c7dd8796-e2b9-4a05-8bc6-36254ce93a62 .square-image {
	height: 225px;
	margin: 0 0 15px 0;
	width: 225px;
}

#cmp_c7dd8796-e2b9-4a05-8bc6-36254ce93a62 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
}

#cmp_c7dd8796-e2b9-4a05-8bc6-36254ce93a62 h2 {
	color: rgb(117, 117, 47);
	font-family: Montserrat;
	font-size: 26px;
}

#cmp_c7dd8796-e2b9-4a05-8bc6-36254ce93a62 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
}

#cmp_c7dd8796-e2b9-4a05-8bc6-36254ce93a62 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/index/cmp_d8bfcb6e-4440-42ea-a41c-3ed25ba8cead/component.css
 */
#cmp_d8bfcb6e-4440-42ea-a41c-3ed25ba8cead {
	padding: 0;
}

#cmp_d8bfcb6e-4440-42ea-a41c-3ed25ba8cead .hero-content {
	background-color: #FFFFFF;
	padding: 20px;
}

#cmp_d8bfcb6e-4440-42ea-a41c-3ed25ba8cead .hero-content h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 15px 0;
}

#cmp_d8bfcb6e-4440-42ea-a41c-3ed25ba8cead .hero-content h2 {
	color: rgb(117, 117, 47);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 15px 0;
}

#cmp_d8bfcb6e-4440-42ea-a41c-3ed25ba8cead .hero-content h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 15px 0;
}

#cmp_d8bfcb6e-4440-42ea-a41c-3ed25ba8cead .hero-content p {
	color: #49494A;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 15px 0;
}

#cmp_d8bfcb6e-4440-42ea-a41c-3ed25ba8cead .hero-content .btn {
	background-color: rgb(117, 117, 47);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_d8bfcb6e-4440-42ea-a41c-3ed25ba8cead .hero-content .btn:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

#cmp_d8bfcb6e-4440-42ea-a41c-3ed25ba8cead p {
	margin: 0 0 25px 0;
}
/*
 * components/shop/listing/cmp_6437d36e-edea-4b28-850f-aeeeb3519a4c/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/listing/cmp_9ecf7af2-e370-4972-9c7f-8e4e11e1d88d/component.css
 */
#cmp_9ecf7af2-e370-4972-9c7f-8e4e11e1d88d {
    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_9ecf7af2-e370-4972-9c7f-8e4e11e1d88d ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_a94cfb18-deee-4ecd-a694-e95b2ef9b601/component.css
 */
#cmp_a94cfb18-deee-4ecd-a694-e95b2ef9b601 {
	background-color: #FFFFFF;
}

#cmp_a94cfb18-deee-4ecd-a694-e95b2ef9b601 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_a94cfb18-deee-4ecd-a694-e95b2ef9b601 h2 {
	color: rgb(117, 117, 47);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_a94cfb18-deee-4ecd-a694-e95b2ef9b601 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_a94cfb18-deee-4ecd-a694-e95b2ef9b601 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_a94cfb18-deee-4ecd-a694-e95b2ef9b601  {
	padding-bottom: 20px;
}
/*
 * components/shop/listing/cmp_d158cedd-78a9-4de5-83b2-00112093ff09/component.css
 */
#cmp_d158cedd-78a9-4de5-83b2-00112093ff09 {
    padding: 20px 0;

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

#cmp_d158cedd-78a9-4de5-83b2-00112093ff09 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/product/cmp_52309e70-8f23-4bdc-a147-770535ec7fa2/component.css
 */
#cmp_52309e70-8f23-4bdc-a147-770535ec7fa2.shop-product-header {
	padding: 50px 0 15px 0;
}

/*
 * components/shop/product/cmp_8e1d9c25-5502-4ec9-8a0e-c2e9644c22ca/component.css
 */
#cmp_8e1d9c25-5502-4ec9-8a0e-c2e9644c22ca .shop-product__name {
	margin: 0 0 10px 0;
}

#cmp_8e1d9c25-5502-4ec9-8a0e-c2e9644c22ca .shop-product__price {
	margin: 0 0 20px 0;
}

#cmp_8e1d9c25-5502-4ec9-8a0e-c2e9644c22ca .shop-product select {
	width: auto;
}

#cmp_8e1d9c25-5502-4ec9-8a0e-c2e9644c22ca .shop-product__add-to-cart {
	margin: 0 0 20px 0;
}

#cmp_8e1d9c25-5502-4ec9-8a0e-c2e9644c22ca .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin: 0 0 40px 0;
}

#cmp_8e1d9c25-5502-4ec9-8a0e-c2e9644c22ca .shop-product__review-share-desktop .col-xs-6 {
	padding: 10px 0 0 0;
}

#cmp_8e1d9c25-5502-4ec9-8a0e-c2e9644c22ca .shop-product__review-share-desktop .col-xs-6 + .col-xs-6 {
	border-left: 1px solid #E1E1E1;
}

#cmp_8e1d9c25-5502-4ec9-8a0e-c2e9644c22ca  {
	padding-top: 0;
}
/*
 * components/sold_out/cmp_aa5457ea-3466-4fa8-bb72-b334e39a8628/component.css
 */
#cmp_aa5457ea-3466-4fa8-bb72-b334e39a8628 {
	background-color: #FFFFFF;
}

#cmp_aa5457ea-3466-4fa8-bb72-b334e39a8628 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_aa5457ea-3466-4fa8-bb72-b334e39a8628 h2 {
	color: rgb(117, 117, 47);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_aa5457ea-3466-4fa8-bb72-b334e39a8628 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_aa5457ea-3466-4fa8-bb72-b334e39a8628 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_aa5457ea-3466-4fa8-bb72-b334e39a8628 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_aa5457ea-3466-4fa8-bb72-b334e39a8628 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_aa5457ea-3466-4fa8-bb72-b334e39a8628 .btn {
	background-color: rgb(117, 117, 47);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_aa5457ea-3466-4fa8-bb72-b334e39a8628 .btn:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

#cmp_aa5457ea-3466-4fa8-bb72-b334e39a8628  {
	padding-top: 0;
}
/*
 * components/sold_out/cmp_cf6d05ff-6c46-4440-b27e-335e6b08eb54/component.css
 */
#cmp_cf6d05ff-6c46-4440-b27e-335e6b08eb54 img {
	max-width: 100%;
}

/*
 * components/subscribe/cmp_a428bfea-7a17-451d-a61f-e501ed8def63/component.css
 */

/*
 * components/subscribe/cmp_b451a9e2-7c19-424b-a9db-65f545279976/component.css
 */
#cmp_b451a9e2-7c19-424b-a9db-65f545279976 {
	background-color: #FFFFFF;
}

#cmp_b451a9e2-7c19-424b-a9db-65f545279976 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_b451a9e2-7c19-424b-a9db-65f545279976 h2 {
	color: rgb(117, 117, 47);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_b451a9e2-7c19-424b-a9db-65f545279976 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_b451a9e2-7c19-424b-a9db-65f545279976 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

/*
 * components/subscribe/cmp_e1a0978c-f372-45db-a9f8-b9f1fedd9a42/component.css
 */
#cmp_e1a0978c-f372-45db-a9f8-b9f1fedd9a42 {
	background-color: #FFFFFF;
}

#cmp_e1a0978c-f372-45db-a9f8-b9f1fedd9a42 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_e1a0978c-f372-45db-a9f8-b9f1fedd9a42 h2 {
	color: rgb(117, 117, 47);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_e1a0978c-f372-45db-a9f8-b9f1fedd9a42 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_e1a0978c-f372-45db-a9f8-b9f1fedd9a42 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_e1a0978c-f372-45db-a9f8-b9f1fedd9a42  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_7bd94d52-bdf9-4b5b-a7f8-01706c6f0cac/component.css
 */
.survey:first-of-type {
    padding: 0 0 50px 0;
}
#cmp_7bd94d52-bdf9-4b5b-a7f8-01706c6f0cac  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_c695449d-7990-417f-8243-622518183237/component.css
 */
#cmp_c695449d-7990-417f-8243-622518183237 {
	padding: 50px 0 15px 0;
}

/*
 * components/subscribe_flow/terms_step/cmp_4a2823ce-09b3-4e15-b723-4b81ac2aa409/component.css
 */
#cmp_4a2823ce-09b3-4e15-b723-4b81ac2aa409 {
	padding: 50px 0 15px 0;
}

/*
 * components/subscribe_flow/terms_step/cmp_b95e83b9-ae93-47c0-92c0-a405a94eaf40/component.css
 */

/*
 * components/subscribe_flow/variant_step/cmp_5b019bdb-aadf-4b3e-ba71-fdba81d3de51/component.css
 */

/*
 * components/subscribe_flow/variant_step/cmp_6de8d0b1-d10c-4da8-a0dd-718edaa5f10b/component.css
 */
#cmp_6de8d0b1-d10c-4da8-a0dd-718edaa5f10b {
	padding: 50px 0 15px 0;
}

/*
 * components/view-cart/cmp_4d1f6ffe-4289-4778-bfba-d275997168c4/component.css
 */
#cmp_4d1f6ffe-4289-4778-bfba-d275997168c4 {
	background-color: #FFFFFF;
}

#cmp_4d1f6ffe-4289-4778-bfba-d275997168c4 h1 {
	color: #49494A;
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 25px 0;
}

#cmp_4d1f6ffe-4289-4778-bfba-d275997168c4 h2 {
	color: rgb(117, 117, 47);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_4d1f6ffe-4289-4778-bfba-d275997168c4 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_4d1f6ffe-4289-4778-bfba-d275997168c4 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

/*
 * components/view-cart/cmp_e5260149-0cc6-4976-85b1-57daa8919ccb/component.css
 */
#cmp_e5260149-0cc6-4976-85b1-57daa8919ccb {
	padding: 15px 15px 100px 15px;
}

#cmp_e5260149-0cc6-4976-85b1-57daa8919ccb .cart-thead {
	border-bottom: 1px solid #E1E1E1;
	padding: 10px 0;
}

#cmp_e5260149-0cc6-4976-85b1-57daa8919ccb .cart-thead h3 {
	text-transform: uppercase;
}

#cmp_e5260149-0cc6-4976-85b1-57daa8919ccb .cart-item {
	border: 1px solid #E1E1E1;
	padding: 25px 0;
	position: relative;
}

#cmp_e5260149-0cc6-4976-85b1-57daa8919ccb .product-main {
	margin: 0 0 15px 0;
}

#cmp_e5260149-0cc6-4976-85b1-57daa8919ccb .product-label p {
	margin: 0;
}

#cmp_e5260149-0cc6-4976-85b1-57daa8919ccb .product-label .info {
	color: rgb(117, 117, 47);
	text-align: right;
	text-transform: uppercase;
}

#cmp_e5260149-0cc6-4976-85b1-57daa8919ccb .product-label .meta {
	color: #49494A;
	font-size: 16px;
}

#cmp_e5260149-0cc6-4976-85b1-57daa8919ccb .product-rem-btn {
	position: absolute;
	right: 1%;
	top: 1%;
}

#cmp_e5260149-0cc6-4976-85b1-57daa8919ccb figure {
	margin: 0 0 15px 0;
}

#cmp_e5260149-0cc6-4976-85b1-57daa8919ccb .cart-subtotal {
	margin: 50px 0 0 0;
}

#cmp_e5260149-0cc6-4976-85b1-57daa8919ccb .cart-subtotal h2 {
	margin: 0 0 15px 0;
}

#cmp_e5260149-0cc6-4976-85b1-57daa8919ccb .cart-subtotal h3 {
	margin: 0 0 25px 0;
	text-transform: uppercase;
}

#cmp_e5260149-0cc6-4976-85b1-57daa8919ccb .cart-subtotal p {
	margin: 0 0 25px 0;
}

@media (min-width: 768px) {
	#cmp_e5260149-0cc6-4976-85b1-57daa8919ccb .cart-item {
		border-width: 0 0 1px 0;
	}
	#cmp_e5260149-0cc6-4976-85b1-57daa8919ccb .product-rem-btn {
		top: 40%;
	}
	#cmp_e5260149-0cc6-4976-85b1-57daa8919ccb figure {
		margin: 0;
	}
}