/*
 * css/style.css
 */
/* Globals
------------------------------*/
body {
	background-color: #FFFFFF;
	color: #333333;
	font-family: Lato;
	font-size: 14px;
	letter-spacing: 0.077em;
	line-height: 1.5em;
}

.container-fluid {
	max-width: 1140px;
}

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

section.container-fluid {
	padding-right: .9375rem;
	padding-left: .9375rem;
	margin-right: auto;
	margin-left: auto;
}

h1 {
	color: #333333;
	font-family: Lato;
	font-size: 45px;
}

h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

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

p {
	line-height: 1.5em;
	margin-bottom: 0.5rem;
}

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

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

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

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

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

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

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

.row {
	margin-left: 0;
	margin-right: 0;
}

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

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

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

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

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

@media(min-width: 768px) {
	.square-row > .col-md-6 {
		min-height: calc((100vw - 2.75rem) / 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(1110px / 2); /* half the container width */
	}
	.square-row > .col-md-4 {
		min-height: calc(1110px / 3); /* third the container width */
	}

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

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

.nav-pills .nav-link.active,
.nav-pills .nav-link.active:focus,
.nav-pills .nav-link.active:hover,
.nav-pills .nav-link.active:active,
.nav-pills .nav-item.open .nav-link,
.nav-pills .nav-item.open .nav-link:focus,
.nav-pills .nav-item.open .nav-link:hover,
.nav-pills .nav-item.open .nav-link:active {
	background-color: #333333;
}

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

.panel-body {
	padding: 15px;
}

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

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

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

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

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

/* Buttons */
.btn {
	border-radius: 0px;
	border: none;
	padding: 1em 3em;
	font-size: 15px;
}

.btn-small {
	padding: 0.6em 1.8em;
	border: 1px solid #333333;
	border-radius: 15px;
	color: #333333;
}

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

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

.btn-primary {
	background-color: #333333;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 15px;
}

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

.btn-secondary {
	background-color: #F38258;
	color: #FAFAFA;
	font-family: Lato;
	font-size: 15px;
	letter-spacing: 0.167em;
}

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

.btn-empty {
	background-color: transparent;
	color: #333333;
	border: 1px solid #333333;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#gift-form .row label {
	font-size: 14px;
}

.checkout_content .styled_cart .total-row th,
.checkout_content .styled_cart .total-row #total_price {
	font-size: 30px;
}

.checkout_content.newco #id_coupon_code {
	min-width: 200px;
}

.checkout_content #checkout_button {
	background-color: #333333;
	border: none;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 15px;
	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: #F38258;
	color: #FFFFFF;
}

.checkout_content #gift-form .row .col-xs-12 label {
	margin-bottom: 0;
}

#checkout-checkout {
	padding-bottom: 60px;
}

@media(max-width: 768px) {
	.checkout_content .cta {
		text-align: center;
	}

	.checkout_content #gift-form .row .col-xs-12 {
		margin-left: 10px;
	}
}

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

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

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

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

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

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

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

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

.address-container {
	width: 100%;
}

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

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

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

.address-container {
	width: 100%;
}

.errors {
	margin: 25px 0;
}

.cratejoy-loading-icon {
	color: #333333;
}

.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 #333333;
	color: #333333;
	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: #F38258;
	border-color: #F38258;
	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;
	}

	.col-xs-12,
	.container-fluid {
		padding-left: 0;
		padding-right: 0;
	}

	section.container-fluid {
		padding-right: 0;
		padding-left: 0;
		margin-right: auto;
		margin-left: auto;
	}
}

@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_303f81c8-96d2-4652-983f-cfd29a6ee484/component.css
 */
#cmp_303f81c8-96d2-4652-983f-cfd29a6ee484 {
	padding-bottom: 60px;
	background-color: #FFFFFF;
}

#cmp_303f81c8-96d2-4652-983f-cfd29a6ee484 .content {
	margin: 0 auto;
	max-width: 250px;
	flex-direction: column;
}

#cmp_303f81c8-96d2-4652-983f-cfd29a6ee484 h1 {
	color: #333333;
	font-family: Lato;
	font-size: 45px;
}

#cmp_303f81c8-96d2-4652-983f-cfd29a6ee484 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_303f81c8-96d2-4652-983f-cfd29a6ee484 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 16px;
	margin-bottom: 2rem;
}

#cmp_303f81c8-96d2-4652-983f-cfd29a6ee484 p {
	color: #333333;
	font-family: Lato;
	font-size: 14px;
	margin-bottom: 1rem;
}

#cmp_303f81c8-96d2-4652-983f-cfd29a6ee484 img {
	margin-bottom: 1rem;
}

#cmp_303f81c8-96d2-4652-983f-cfd29a6ee484 .component-quote-panel-header {
	padding-bottom: 25px;
}
/*
 * components/about/cmp_44b6670b-1e51-48f8-8935-85d66b21ce63/component.css
 */
#cmp_44b6670b-1e51-48f8-8935-85d66b21ce63 img {
	max-width: 100%;
}

/*
 * components/about/cmp_59f44281-2631-4e0c-b0ba-40188c704f9d/component.css
 */
#cmp_59f44281-2631-4e0c-b0ba-40188c704f9d {
	padding-bottom: 40px;
}

#cmp_59f44281-2631-4e0c-b0ba-40188c704f9d .img-fluid {
	width: 100%;
}

#cmp_59f44281-2631-4e0c-b0ba-40188c704f9d .hero-content {
	background-color: #FFFFFF;
	padding: 25px;
}

#cmp_59f44281-2631-4e0c-b0ba-40188c704f9d .hero-content h1 {
	color: #333333;
	font-family: Lato;
	font-size: 45px;
}

#cmp_59f44281-2631-4e0c-b0ba-40188c704f9d .hero-content h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_59f44281-2631-4e0c-b0ba-40188c704f9d .hero-content h3 {
	color: #333333;
	font-family: Lato;
	font-size: 16px;
}

#cmp_59f44281-2631-4e0c-b0ba-40188c704f9d .hero-content p {
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}

#cmp_59f44281-2631-4e0c-b0ba-40188c704f9d .hero-content .btn {
	background-color: #333333;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 15px;
}

#cmp_59f44281-2631-4e0c-b0ba-40188c704f9d .hero-content .btn:hover {
	background-color: #F38258;
	color: #FFFFFF;
}

@media (min-width: 768px) {
	#cmp_59f44281-2631-4e0c-b0ba-40188c704f9d {
		padding-bottom: 60px;
	}
}

#cmp_59f44281-2631-4e0c-b0ba-40188c704f9d ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}

#cmp_59f44281-2631-4e0c-b0ba-40188c704f9d ul {
	list-style: disc;
	list-style-position: inside;
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}

#cmp_59f44281-2631-4e0c-b0ba-40188c704f9d h2 {
	margin-bottom: 13px;
}
/*
 * components/about/cmp_f51f190e-34a3-42ae-aa47-73d7019a2f03/component.css
 */
#cmp_f51f190e-34a3-42ae-aa47-73d7019a2f03 {
	background-color: #FFFFFF;
	color: #333333;
	padding-bottom: 60px;
}

#cmp_f51f190e-34a3-42ae-aa47-73d7019a2f03 h1 {
	color: #333333;
	font-family: Lato;
	font-size: 45px;
}

#cmp_f51f190e-34a3-42ae-aa47-73d7019a2f03 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_f51f190e-34a3-42ae-aa47-73d7019a2f03 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 16px;
}

#cmp_f51f190e-34a3-42ae-aa47-73d7019a2f03 p {
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}

#cmp_f51f190e-34a3-42ae-aa47-73d7019a2f03 .content {
	padding: 25px;
}

@media (min-width: 768px) {
	#cmp_f51f190e-34a3-42ae-aa47-73d7019a2f03 {
		padding-bottom: 60px;
	}
}

#cmp_f51f190e-34a3-42ae-aa47-73d7019a2f03 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}

#cmp_f51f190e-34a3-42ae-aa47-73d7019a2f03 ul {
	list-style: disc;
	list-style-position: inside;
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}

#cmp_f51f190e-34a3-42ae-aa47-73d7019a2f03 h2 {
	margin-bottom: 13px;
}
/*
 * components/checkout/cmp_c2b1f2d4-6380-469a-b46d-722fe382e8e5/component.css
 */
#cmp_c2b1f2d4-6380-469a-b46d-722fe382e8e5 .checkout_content {
  overflow: auto;
}

#cmp_c2b1f2d4-6380-469a-b46d-722fe382e8e5 .checkout_content section {
  border-color: #F5F5F5;
}

#cmp_c2b1f2d4-6380-469a-b46d-722fe382e8e5 .cart_listing table {
  border-color: #F5F5F5;
}

/*
 * components/customer/account/cmp_38656598-0d25-494e-835c-658ec0b9b146/component.css
 */
#cmp_38656598-0d25-494e-835c-658ec0b9b146 .customer-product-review {
	border-bottom: 1px solid #ddd;
	padding: 15px;
}

#cmp_38656598-0d25-494e-835c-658ec0b9b146 .customer-product-review:last-child {
	border-bottom: 0;
}

#cmp_38656598-0d25-494e-835c-658ec0b9b146 .customer-product-rating {
	color: #333333;
	float: right;
}

/*
 * components/customer/forgot_password/cmp_6cc2fd3a-1e5a-4c11-8be0-d83a93543b5f/component.css
 */

#cmp_6cc2fd3a-1e5a-4c11-8be0-d83a93543b5f  {
	padding-bottom: 120px;
}
/*
 * components/customer/forgot_password/cmp_fd0d39fc-e68f-44b4-9586-f38652645ca6/component.css
 */
#cmp_fd0d39fc-e68f-44b4-9586-f38652645ca6 {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_fd0d39fc-e68f-44b4-9586-f38652645ca6 h1 {
	color: #333333;
	font-family: Lato;
	font-size: 45px;
}

#cmp_fd0d39fc-e68f-44b4-9586-f38652645ca6 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_fd0d39fc-e68f-44b4-9586-f38652645ca6 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 16px;
}

#cmp_fd0d39fc-e68f-44b4-9586-f38652645ca6 p {
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}

#cmp_fd0d39fc-e68f-44b4-9586-f38652645ca6 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}

#cmp_fd0d39fc-e68f-44b4-9586-f38652645ca6 ul {
	list-style: disc;
	list-style-position: inside;
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}

#cmp_fd0d39fc-e68f-44b4-9586-f38652645ca6  {
	padding: 50px 0;
}
#cmp_fd0d39fc-e68f-44b4-9586-f38652645ca6 h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/login/cmp_70a9b8e0-1108-4975-9337-0caef5c58c7a/component.css
 */

#cmp_70a9b8e0-1108-4975-9337-0caef5c58c7a  {
	padding-bottom: 120px;
}
/*
 * components/customer/login/cmp_c2fc34ba-6aba-4f65-be24-bc1a70f46cf5/component.css
 */
#cmp_c2fc34ba-6aba-4f65-be24-bc1a70f46cf5 {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_c2fc34ba-6aba-4f65-be24-bc1a70f46cf5 h1 {
	color: #333333;
	font-family: Lato;
	font-size: 45px;
}

#cmp_c2fc34ba-6aba-4f65-be24-bc1a70f46cf5 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_c2fc34ba-6aba-4f65-be24-bc1a70f46cf5 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 16px;
}

#cmp_c2fc34ba-6aba-4f65-be24-bc1a70f46cf5 p {
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}

#cmp_c2fc34ba-6aba-4f65-be24-bc1a70f46cf5 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}

#cmp_c2fc34ba-6aba-4f65-be24-bc1a70f46cf5 ul {
	list-style: disc;
	list-style-position: inside;
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}

#cmp_c2fc34ba-6aba-4f65-be24-bc1a70f46cf5  {
	padding: 50px 0;
}
#cmp_c2fc34ba-6aba-4f65-be24-bc1a70f46cf5 h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/order/cmp_6a9f8eb1-827d-45b4-bc3b-3857e41c89d5/component.css
 */

/*
 * components/customer/orders/cmp_30b892b2-2336-421c-a686-97eee71d254f/component.css
 */

/*
 * components/customer/password_reset/cmp_13c00799-3e12-41d5-b2e7-95f9c2bdba50/component.css
 */

#cmp_13c00799-3e12-41d5-b2e7-95f9c2bdba50  {
	padding-bottom: 120px;
}
/*
 * components/customer/password_reset/cmp_6b3c7f4e-38be-480c-8e27-48d4fe44f786/component.css
 */
#cmp_6b3c7f4e-38be-480c-8e27-48d4fe44f786 {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_6b3c7f4e-38be-480c-8e27-48d4fe44f786 h1 {
	color: #333333;
	font-family: Lato;
	font-size: 45px;
}

#cmp_6b3c7f4e-38be-480c-8e27-48d4fe44f786 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_6b3c7f4e-38be-480c-8e27-48d4fe44f786 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 16px;
}

#cmp_6b3c7f4e-38be-480c-8e27-48d4fe44f786 p {
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}

#cmp_6b3c7f4e-38be-480c-8e27-48d4fe44f786 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}

#cmp_6b3c7f4e-38be-480c-8e27-48d4fe44f786 ul {
	list-style: disc;
	list-style-position: inside;
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}

#cmp_6b3c7f4e-38be-480c-8e27-48d4fe44f786  {
	padding: 50px 0;
}
#cmp_6b3c7f4e-38be-480c-8e27-48d4fe44f786 h1 {
	margin-bottom: 15px;
}
/*
 * components/faq/cmp_07a36419-301a-4a75-a5bc-df66249e732a/component.css
 */
#cmp_07a36419-301a-4a75-a5bc-df66249e732a {
	background-color: #FFFFFF;
	color: #333333;
	padding-bottom: 60px;
}

#cmp_07a36419-301a-4a75-a5bc-df66249e732a h1 {
	color: #333333;
	font-family: Lato;
	font-size: 45px;
}

#cmp_07a36419-301a-4a75-a5bc-df66249e732a h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_07a36419-301a-4a75-a5bc-df66249e732a h3 {
	color: #333333;
	font-family: Lato;
	font-size: 16px;
}

#cmp_07a36419-301a-4a75-a5bc-df66249e732a p {
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}

#cmp_07a36419-301a-4a75-a5bc-df66249e732a .content {
	padding: 25px;
}

@media (min-width: 768px) {
	#cmp_07a36419-301a-4a75-a5bc-df66249e732a {
		padding-bottom: 60px;
	}
}

#cmp_07a36419-301a-4a75-a5bc-df66249e732a ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}

#cmp_07a36419-301a-4a75-a5bc-df66249e732a ul {
	list-style: disc;
	list-style-position: inside;
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}

#cmp_07a36419-301a-4a75-a5bc-df66249e732a h2 {
	margin-bottom: 15px;
	margin-top: 40px;
}
/*
 * components/faq/cmp_4b853ce0-6309-4e63-96e1-8393390f7a65/component.css
 */
#cmp_4b853ce0-6309-4e63-96e1-8393390f7a65 {
	padding: 50px 0 15px;
	background-color: #FFFFFF;
	color: #333333;
}

#cmp_4b853ce0-6309-4e63-96e1-8393390f7a65 h1 {
	color: #333333;
	font-family: Lato;
	font-size: 45px;
}

#cmp_4b853ce0-6309-4e63-96e1-8393390f7a65 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_4b853ce0-6309-4e63-96e1-8393390f7a65 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 16px;
}

#cmp_4b853ce0-6309-4e63-96e1-8393390f7a65 p {
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}

#cmp_4b853ce0-6309-4e63-96e1-8393390f7a65 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}

#cmp_4b853ce0-6309-4e63-96e1-8393390f7a65 ul {
	list-style: disc;
	list-style-position: inside;
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/global/cmp_54ef4262-6876-4e67-97b7-cd3ae81ba8cf/component.css
 */
#cmp_54ef4262-6876-4e67-97b7-cd3ae81ba8cf.footer {
	background-color: #F5F5F5;
	padding-top: 22px;
	padding-bottom: 22px;
}

#cmp_54ef4262-6876-4e67-97b7-cd3ae81ba8cf,
#cmp_54ef4262-6876-4e67-97b7-cd3ae81ba8cf p,
#cmp_54ef4262-6876-4e67-97b7-cd3ae81ba8cf h1,
#cmp_54ef4262-6876-4e67-97b7-cd3ae81ba8cf h2,
#cmp_54ef4262-6876-4e67-97b7-cd3ae81ba8cf h3 {
	font-family: Lato;
	color: #333333;
}

#cmp_54ef4262-6876-4e67-97b7-cd3ae81ba8cf h3 {
	margin-bottom: 10px;
}

#cmp_54ef4262-6876-4e67-97b7-cd3ae81ba8cf,
#cmp_54ef4262-6876-4e67-97b7-cd3ae81ba8cf p {
	font-weight: lighter;
}

/* Navigation list */

#cmp_54ef4262-6876-4e67-97b7-cd3ae81ba8cf .footer-list .footer-link {
	color: #333333;
	font-family: Lato;
	font-size: ;
	text-transform: lowercase;
}

#cmp_54ef4262-6876-4e67-97b7-cd3ae81ba8cf .footer-list .footer-link:hover,
#cmp_54ef4262-6876-4e67-97b7-cd3ae81ba8cf .footer-list .footer-link:focus,
#cmp_54ef4262-6876-4e67-97b7-cd3ae81ba8cf .footer-list .footer-link:active {
	color: #F38258;
	text-decoration: none;
}

#cmp_54ef4262-6876-4e67-97b7-cd3ae81ba8cf .footer-list .footer-item {
	padding: 3px 0;
}

/* follow us column */
#cmp_54ef4262-6876-4e67-97b7-cd3ae81ba8cf .footer-follow-us svg path {
	fill: #333333;
}

#cmp_54ef4262-6876-4e67-97b7-cd3ae81ba8cf .footer-follow-us a:hover svg path,
#cmp_54ef4262-6876-4e67-97b7-cd3ae81ba8cf .footer-follow-us a:focus svg path,
#cmp_54ef4262-6876-4e67-97b7-cd3ae81ba8cf .footer-follow-us a:active {
	fill: #F38258;
}

#cmp_54ef4262-6876-4e67-97b7-cd3ae81ba8cf .footer-follow-us {
	letter-spacing: 1px;
	text-align: center;

	border-top: 1px solid;
	border-color: #E7E7E7;

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

#cmp_54ef4262-6876-4e67-97b7-cd3ae81ba8cf .footer-follow-us .social-icons-row {
	justify-content: center;
	margin-top: 18px;
	margin-bottom: 15px;
}

#cmp_54ef4262-6876-4e67-97b7-cd3ae81ba8cf .footer-follow-us .social-icons-row a {
	margin: 0 8px;
}

#cmp_54ef4262-6876-4e67-97b7-cd3ae81ba8cf .footer-follow-us p {
	padding-bottom: 15px;
	margin: 0;
}

/* contact us column */
#cmp_54ef4262-6876-4e67-97b7-cd3ae81ba8cf .footer-contact-us a {
	display: inline-block;
}

#cmp_54ef4262-6876-4e67-97b7-cd3ae81ba8cf .footer-bottom {
	border-top: 1px solid;
	border-color: #E7E7E7;
}

#cmp_54ef4262-6876-4e67-97b7-cd3ae81ba8cf .footer-bottom > div {
	margin-top: 22px;
}

@media (min-width: 768px) {
	#cmp_54ef4262-6876-4e67-97b7-cd3ae81ba8cf .footer-contact-us {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}

	#cmp_54ef4262-6876-4e67-97b7-cd3ae81ba8cf .footer-follow-us {
		border-top: none;
		padding-top: 0;
	}

	#cmp_54ef4262-6876-4e67-97b7-cd3ae81ba8cf .footer-bottom {
		text-align: left;
	}

	#cmp_54ef4262-6876-4e67-97b7-cd3ae81ba8cf .footer-cards {
		float: right;
		padding-top: 0;
	}
}

/*
 * components/global/cmp_7e68ecab-231b-4756-ac17-bdd6dc8469f0/component.css
 */
#cmp_7e68ecab-231b-4756-ac17-bdd6dc8469f0 section.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_7e68ecab-231b-4756-ac17-bdd6dc8469f0.navbar a:hover,
#cmp_7e68ecab-231b-4756-ac17-bdd6dc8469f0.navbar a:focus,
#cmp_7e68ecab-231b-4756-ac17-bdd6dc8469f0.navbar a:active {
	color: #F38258;
}

#cmp_7e68ecab-231b-4756-ac17-bdd6dc8469f0 .navbar-news {
	padding: 8px 0;
	width: 100%;
	text-align: center;
}

#cmp_7e68ecab-231b-4756-ac17-bdd6dc8469f0 .navbar-news p {
	margin-bottom: 0px;
	padding: 5px;
}

#cmp_7e68ecab-231b-4756-ac17-bdd6dc8469f0 .navbar-brand {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

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

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

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

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

	max-width: 100%;
	color: #333333;
	font-family: Lato;
	font-size: 28px;
	margin: 0;
	padding: 15px;
	text-align: center;
}

#cmp_7e68ecab-231b-4756-ac17-bdd6dc8469f0 .navbar-brand img {
	max-width: 100%;
}

#cmp_7e68ecab-231b-4756-ac17-bdd6dc8469f0 .navbar-top {
	background-color: #F5F5F5;
	color: #333333;
	font-face: Lato;
	font-size: 14px;
	border-bottom: 1px solid #E7E7E7;
	padding: 0;
}

#cmp_7e68ecab-231b-4756-ac17-bdd6dc8469f0 button.navbar-toggler {
	background-color: #FFFFFF;
	border-radius: 0;
	color: #333333;
	font-size: 15px;
	letter-spacing: 0.167em;
	padding: 15px;
	border-top: 1px solid #E7E7E7;
	border-bottom: 1px solid #E7E7E7;
}

#cmp_7e68ecab-231b-4756-ac17-bdd6dc8469f0.navbar .navbar-toggler:hover,
#cmp_7e68ecab-231b-4756-ac17-bdd6dc8469f0.navbar .navbar-toggler:focus,
#cmp_7e68ecab-231b-4756-ac17-bdd6dc8469f0.navbar .navbar-toggler:active {
	background-color: #F38258;
	color: #FFFFFF;
}

#cmp_7e68ecab-231b-4756-ac17-bdd6dc8469f0 .navbar-nav {
	align-items: center;
	display: flex;
	flex-direction: column;
	margin: 0;
}

#cmp_7e68ecab-231b-4756-ac17-bdd6dc8469f0 .navbar-nav li {
	padding-top: 10px;
	padding-bottom: 10px;
}

#cmp_7e68ecab-231b-4756-ac17-bdd6dc8469f0 .navbar-nav .nav-link {
	color: #333333;
	font-family: Lato;
	font-size: 15px;;
	letter-spacing: 1px;
	padding: 15px;
	text-align: center;
}

#cmp_7e68ecab-231b-4756-ac17-bdd6dc8469f0 .navbar-nav .nav-link:hover,
#cmp_7e68ecab-231b-4756-ac17-bdd6dc8469f0 .navbar-nav .nav-link:focus,
#cmp_7e68ecab-231b-4756-ac17-bdd6dc8469f0 .navbar-nav .nav-link:active {
	color: #F38258;
}

#cmp_7e68ecab-231b-4756-ac17-bdd6dc8469f0 .navbar-nav .nav-spacer {
	color: #333333;
	font-family: Lato;
	font-size: 15px;;
	letter-spacing: 1px;
	padding: 15px;
	text-align: center;
}

#cmp_7e68ecab-231b-4756-ac17-bdd6dc8469f0 .navbar-header {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	border: none;
}

#cmp_7e68ecab-231b-4756-ac17-bdd6dc8469f0 .navbar-header .navbar-nav {
	border: none;
	margin-bottom: 0;
}

#cmp_7e68ecab-231b-4756-ac17-bdd6dc8469f0 .container-fluid {
	width: 100%;
	max-width: 1140px;
}

#cmp_7e68ecab-231b-4756-ac17-bdd6dc8469f0 ul.dropdown-menu {
	margin-top: 0;
	border-radius: 0px;
	border-color: #E7E7E7;
}

#cmp_7e68ecab-231b-4756-ac17-bdd6dc8469f0 ul.dropdown-menu li a.nav-link {
	padding: 7px;
}

#cmp_7e68ecab-231b-4756-ac17-bdd6dc8469f0 .store-name {
	color: ;
	font-family: Lato;
	font-size: 28px;;
	padding: 20px;
}

@media (min-width: 768px) {
	#cmp_7e68ecab-231b-4756-ac17-bdd6dc8469f0.navbar {
		-webkit-align-items: center;
		-moz-align-items: center;
		-ms-align-items: center;
		align-items: center;

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

		padding: 15px;
		padding-bottom: 0;
	}
	#cmp_7e68ecab-231b-4756-ac17-bdd6dc8469f0 .navbar-brand {
		padding: 0;
		padding-top: 20px;
		padding-bottom: 20px;
	}
	#cmp_7e68ecab-231b-4756-ac17-bdd6dc8469f0 .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_7e68ecab-231b-4756-ac17-bdd6dc8469f0 .navbar-nav {
		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;

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

		padding: 0;
		margin-bottom: 20px;
		border-top: 1px solid #E7E7E7;
		border-bottom: 1px solid #E7E7E7;

	}
	#cmp_7e68ecab-231b-4756-ac17-bdd6dc8469f0 .navbar-nav li {
		padding: 0;
		padding-left: 10px;
		padding-right: 10px;
	}
}

/*
 * components/index/cmp_3466cd0c-54a9-4614-8be9-e091e451b8c1/component.css
 */
#cmp_3466cd0c-54a9-4614-8be9-e091e451b8c1 {
}

#cmp_3466cd0c-54a9-4614-8be9-e091e451b8c1 .img-container {
	padding: 0;
}

#cmp_3466cd0c-54a9-4614-8be9-e091e451b8c1 .img-fluid {
	width: 100%;
}

#cmp_3466cd0c-54a9-4614-8be9-e091e451b8c1 .hero-content {
	background-color: #FFFFFF;
	padding: 25px;
}

#cmp_3466cd0c-54a9-4614-8be9-e091e451b8c1 .hero-content h1 {
	color: #333333;
	font-family: Lato;
	font-size: 45px;
}

#cmp_3466cd0c-54a9-4614-8be9-e091e451b8c1 .hero-content h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_3466cd0c-54a9-4614-8be9-e091e451b8c1 .hero-content h3 {
	color: #333333;
	font-family: Lato;
	font-size: 16px;
}

#cmp_3466cd0c-54a9-4614-8be9-e091e451b8c1 .hero-content p {
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}

#cmp_3466cd0c-54a9-4614-8be9-e091e451b8c1 .hero-content .btn {
	background-color: ;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_3466cd0c-54a9-4614-8be9-e091e451b8c1 .hero-content .btn:hover {
	background-color: ;
	color: ;
}

@media (min-width: 768px) {
	#cmp_3466cd0c-54a9-4614-8be9-e091e451b8c1 {
		padding-top: 50px;
		padding-bottom: 50px;
	}
}

#cmp_3466cd0c-54a9-4614-8be9-e091e451b8c1 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}

#cmp_3466cd0c-54a9-4614-8be9-e091e451b8c1 ul {
	list-style: disc;
	list-style-position: inside;
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}

#cmp_3466cd0c-54a9-4614-8be9-e091e451b8c1 h1 {
	margin-bottom: 15px;
}
/*
 * components/index/cmp_637d4e30-6d33-4bb1-add7-813810be1666/component.css
 */
#cmp_637d4e30-6d33-4bb1-add7-813810be1666 h1 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 45px;
}

#cmp_637d4e30-6d33-4bb1-add7-813810be1666 h2 {
	color: #F38258;
	font-family: Lato;
	font-size: 22px;
}

#cmp_637d4e30-6d33-4bb1-add7-813810be1666 h3 {
	color: #F38258;
	font-family: Lato;
	font-size: 16px;
}

#cmp_637d4e30-6d33-4bb1-add7-813810be1666 p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_637d4e30-6d33-4bb1-add7-813810be1666 .component-hero {
	color: #FFFFFF;
	padding-top: 60px;
	padding-bottom: 60px;
}

#cmp_637d4e30-6d33-4bb1-add7-813810be1666 .component-hero__content-row {
	padding: 10px 0;
}

#cmp_637d4e30-6d33-4bb1-add7-813810be1666 .component-hero__button-row {
	padding: 10px 0 20px;
}

#cmp_637d4e30-6d33-4bb1-add7-813810be1666 .btn {
	background-color: #333333;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 15px;
}

#cmp_637d4e30-6d33-4bb1-add7-813810be1666 .btn:hover {
	background-color: #F38258;
	color: #FFFFFF;
}

#cmp_637d4e30-6d33-4bb1-add7-813810be1666 h1 {
	margin-bottom: 15px;
}
#cmp_637d4e30-6d33-4bb1-add7-813810be1666 p {
	margin-bottom: 20px;
}
/*
 * components/index/cmp_7d267b51-c321-4f97-b2a1-524c0b894ad5/component.css
 */
#cmp_7d267b51-c321-4f97-b2a1-524c0b894ad5 {

}

#cmp_7d267b51-c321-4f97-b2a1-524c0b894ad5 .hero-content {
	background-color: #FFFFFF;
	padding: 0;
}

#cmp_7d267b51-c321-4f97-b2a1-524c0b894ad5 .hero-content h1 {
	color: #333333;
	font-family: Lato;
	font-size: 45px;
}

#cmp_7d267b51-c321-4f97-b2a1-524c0b894ad5 .hero-content h2 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 22px;
	padding-bottom: 1em;
}

#cmp_7d267b51-c321-4f97-b2a1-524c0b894ad5 .hero-content h3 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 16px;
}

#cmp_7d267b51-c321-4f97-b2a1-524c0b894ad5 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_7d267b51-c321-4f97-b2a1-524c0b894ad5 .hero-content .btn {
	background-color: #333333;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 15px;
}

#cmp_7d267b51-c321-4f97-b2a1-524c0b894ad5 .hero-content .btn:hover {
	background-color: #F38258;
	color: #FFFFFF;
}



#cmp_7d267b51-c321-4f97-b2a1-524c0b894ad5 h1 {
	margin-top: 20px;
	margin-bottom: 10px;
}
#cmp_7d267b51-c321-4f97-b2a1-524c0b894ad5 p {
	margin-bottom: 25px;
}
/*
 * components/shop/listing/cmp_3f4c1c31-01df-4dd5-964e-8181178ed7d7/component.css
 */
#cmp_3f4c1c31-01df-4dd5-964e-8181178ed7d7 {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_3f4c1c31-01df-4dd5-964e-8181178ed7d7 h1 {
	color: #333333;
	font-family: Lato;
	font-size: 45px;
}

#cmp_3f4c1c31-01df-4dd5-964e-8181178ed7d7 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_3f4c1c31-01df-4dd5-964e-8181178ed7d7 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 16px;
}

#cmp_3f4c1c31-01df-4dd5-964e-8181178ed7d7 p {
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}

#cmp_3f4c1c31-01df-4dd5-964e-8181178ed7d7 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}

#cmp_3f4c1c31-01df-4dd5-964e-8181178ed7d7 ul {
	list-style: disc;
	list-style-position: inside;
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}

#cmp_3f4c1c31-01df-4dd5-964e-8181178ed7d7  {
	padding: 50px 0 15px;
}
#cmp_3f4c1c31-01df-4dd5-964e-8181178ed7d7 h1 {
	margin-bottom: 15px;
}
/*
 * components/shop/listing/cmp_6016562d-9957-4be4-8fd5-e8d31979769a/component.css
 */
#cmp_6016562d-9957-4be4-8fd5-e8d31979769a .component-shop-sort {
	justify-content: center;
	border-bottom: 1px solid #E7E7E7;
	padding: 15px;
}

#cmp_6016562d-9957-4be4-8fd5-e8d31979769a ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

#cmp_6016562d-9957-4be4-8fd5-e8d31979769a  {
}
/*
 * components/shop/listing/cmp_9d6942f4-8416-41e9-86f3-3fdbfda0940b/component.css
 */
#cmp_9d6942f4-8416-41e9-86f3-3fdbfda0940b .component-shop-tags {
	justify-content: center;
}

#cmp_9d6942f4-8416-41e9-86f3-3fdbfda0940b ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_deca4eda-374b-4149-8b25-fc9363dd1d76/component.css
 */
#cmp_deca4eda-374b-4149-8b25-fc9363dd1d76 {
	padding: 25px;
}

#cmp_deca4eda-374b-4149-8b25-fc9363dd1d76 .shop-listing-item {
	color: #333333;
}

#cmp_deca4eda-374b-4149-8b25-fc9363dd1d76 .shop-listing-item:hover,
#cmp_deca4eda-374b-4149-8b25-fc9363dd1d76 .shop-listing-item:focus {
	text-decoration: none;
}

#cmp_deca4eda-374b-4149-8b25-fc9363dd1d76 .shop-listing-item__image {
	background-size: cover;
	background-position: center center;
}

#cmp_deca4eda-374b-4149-8b25-fc9363dd1d76 .shop-listing-item__name {
	margin: 10px 0;
}

#cmp_deca4eda-374b-4149-8b25-fc9363dd1d76 .shop-listing-item__price {
	margin: 10px 0 30px;
}

#cmp_deca4eda-374b-4149-8b25-fc9363dd1d76 .product_paging {
	-webkit-display: flex;
	-ms-display: flex;
	display: flex;
	justify-content: center;

	margin: 20px 0;
}

#cmp_deca4eda-374b-4149-8b25-fc9363dd1d76 .product_page a,
#cmp_deca4eda-374b-4149-8b25-fc9363dd1d76 .next_page a,
#cmp_deca4eda-374b-4149-8b25-fc9363dd1d76 .prev_page a {
	display: block;
	padding: 12px 15px;
	margin: 0 2px;
	border: 1px solid #E0E0E0;
	border-radius: 5px;
}

#cmp_deca4eda-374b-4149-8b25-fc9363dd1d76 .product_page.active a,
#cmp_deca4eda-374b-4149-8b25-fc9363dd1d76 .product_page a:hover,
#cmp_deca4eda-374b-4149-8b25-fc9363dd1d76 .product_page a:focus,
#cmp_deca4eda-374b-4149-8b25-fc9363dd1d76 .next_page a:hover,
#cmp_deca4eda-374b-4149-8b25-fc9363dd1d76 .next_page a:focus,
#cmp_deca4eda-374b-4149-8b25-fc9363dd1d76 .prev_page a:hover,
#cmp_deca4eda-374b-4149-8b25-fc9363dd1d76 .prev_page a:focus {
	text-decoration: none;
	background-color: #F9F9F9;
}

#cmp_deca4eda-374b-4149-8b25-fc9363dd1d76 .product_page.active a {
	color: black;
}

#cmp_deca4eda-374b-4149-8b25-fc9363dd1d76  {
	margin-top: 40px;
	margin-bottom: 40px;
}
/*
 * components/shop/product/cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107/component.css
 */
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-avg-rating {
	margin-top: 3px;
	margin-bottom: 10px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-rating-text {
	color: #333333;
	margin-left: 10px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 #product-reviews-list-row {
	margin-top: 25px;
	margin-bottom: 50px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-reviews-list-heading {
	border-bottom: 1px solid #eee;
	font-family: Lato;
	font-size: 22px;
	color: #F38258;
	padding-bottom: 10px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-review {
	padding-top: 20px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-review-info {
	margin-bottom: 15px;
	overflow: auto;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-review-meta {
	float: left;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-review-rating {
	float: right;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-review-content {
	border-bottom: 1px solid #eee;
	padding-bottom: 5px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-review-title {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
	letter-spacing: 1px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-review-body {
	font-family: Lato;
	font-size: 14px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-rating .cancel-on-png,
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-rating .cancel-off-png,
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-rating .star-on-png,
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-rating .star-off-png,
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-rating .star-half-png {
	color: #333333;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 #reviews-show-more {
	color: #333333;
	display: inline-block;
	margin-top: 15px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .write-review-heading {
	border-bottom: 1px solid #eee;
	color: #333333;
	font-family: Lato;
	font-size: 15px;
	letter-spacing: 1px;
	padding-bottom: 10px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .write-review-message {
	font-family: Lato;
	margin: 15px 0;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .write-review-message a {
	color: ;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .write-review-rating-row {
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .write-review-rating-label {
	font-family: Lato;
	font-size: 14px;
	margin-right: 20px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 #write-review-rating {
	display: inline-block;
	line-height: 22px;
	vertical-align: middle;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 #write-review-rating .cancel-on-png,
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 #write-review-rating .cancel-off-png,
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 #write-review-rating .star-on-png,
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 #write-review-rating .star-off-png,
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 #write-review-rating .star-half-png {
	color: #333333;
	font-size: 22px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .write-review-title {
	border: 1px solid #333333;
	color: #333333;
	font-family: Lato;
	font-size: 14px;
	font-weight: 300;
	padding-left: 5px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .write-review-body {
	border: 1px solid #333333;
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .customer-product-review {
	border-bottom: 1px solid #ddd;
	padding: 15px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .customer-product-review:last-child {
	border-bottom: 0;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .customer-product-rating {
	color: #333333;
	float: right;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .customer-product-review.customer-product-review-hidden {
	display: none;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .customer-product-review h4 {
	font-size: 13px;
	margin-top: 6px;
	margin-bottom: 10px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .ecom-product-page .rating {
	border-right: 1px solid #eee;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-reviews-list-heading {
	margin-bottom: 20px;
}

/*
 * components/shop/product/cmp_c2b4e413-3d7d-43a6-883e-0d580c88ac3d/component.css
 */
#cmp_c2b4e413-3d7d-43a6-883e-0d580c88ac3d {
	padding: 50px 0 15px;
	background-color: ;
}

#cmp_c2b4e413-3d7d-43a6-883e-0d580c88ac3d h1 {
	color: #333333;
	font-family: Lato;
	font-size: 45px;
}

#cmp_c2b4e413-3d7d-43a6-883e-0d580c88ac3d h2 {
	color: #F38258;
	font-family: Lato;
	font-size: 22px;
}

#cmp_c2b4e413-3d7d-43a6-883e-0d580c88ac3d h3 {
	color: #333333;
	font-family: Lato;
	font-size: 16px;
}
/*
 * components/shop/product/cmp_e9a9ae0b-fef5-4a59-b035-ea19f4356450/component.css
 */
#cmp_e9a9ae0b-fef5-4a59-b035-ea19f4356450 {
	padding: 25px;
}

#cmp_e9a9ae0b-fef5-4a59-b035-ea19f4356450 .shop-product__name {
	margin-bottom: 10px;
}

#cmp_e9a9ae0b-fef5-4a59-b035-ea19f4356450 .shop-product__price {
	margin-bottom: 20px;
}

#cmp_e9a9ae0b-fef5-4a59-b035-ea19f4356450 .shop-product select {
	width: auto;
}

#cmp_e9a9ae0b-fef5-4a59-b035-ea19f4356450 .shop-product__add-to-cart {
	margin-bottom: 20px;
}

#cmp_e9a9ae0b-fef5-4a59-b035-ea19f4356450 .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin-bottom: 40px;
}

#cmp_e9a9ae0b-fef5-4a59-b035-ea19f4356450 .shop-product__review-share-desktop .col-xs-6 {
	padding-top: 10px;
}

#cmp_e9a9ae0b-fef5-4a59-b035-ea19f4356450 .shop-product__review-share-desktop .col-xs-6 + .col-xs-6 {
	border-left: 1px solid #E1E1E1;
}

#cmp_e9a9ae0b-fef5-4a59-b035-ea19f4356450  {
	margin-top: 40px;
	margin-bottom: 40px;
}
/*
 * components/sold_out/cmp_27d0ee33-bfd1-4f52-bb5a-6804b636c2ec/component.css
 */
#cmp_27d0ee33-bfd1-4f52-bb5a-6804b636c2ec {
	padding-bottom: 40px;
}

#cmp_27d0ee33-bfd1-4f52-bb5a-6804b636c2ec .img-fluid {
	width: 100%;
}

#cmp_27d0ee33-bfd1-4f52-bb5a-6804b636c2ec .hero-content {
	background-color: #FFFFFF;
	padding: 25px;
}

#cmp_27d0ee33-bfd1-4f52-bb5a-6804b636c2ec .hero-content h1 {
	color: #333333;
	font-family: Lato;
	font-size: 45px;
}

#cmp_27d0ee33-bfd1-4f52-bb5a-6804b636c2ec .hero-content h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_27d0ee33-bfd1-4f52-bb5a-6804b636c2ec .hero-content h3 {
	color: #333333;
	font-family: Lato;
	font-size: 16px;
}

#cmp_27d0ee33-bfd1-4f52-bb5a-6804b636c2ec .hero-content p {
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}

#cmp_27d0ee33-bfd1-4f52-bb5a-6804b636c2ec .hero-content .btn {
	background-color: #333333;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 15px;
}

#cmp_27d0ee33-bfd1-4f52-bb5a-6804b636c2ec .hero-content .btn:hover {
	background-color: #F38258;
	color: #FFFFFF;
}

@media (min-width: 768px) {
	#cmp_27d0ee33-bfd1-4f52-bb5a-6804b636c2ec {
		padding-bottom: 60px;
	}
}

#cmp_27d0ee33-bfd1-4f52-bb5a-6804b636c2ec ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}

#cmp_27d0ee33-bfd1-4f52-bb5a-6804b636c2ec ul {
	list-style: disc;
	list-style-position: inside;
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}

#cmp_27d0ee33-bfd1-4f52-bb5a-6804b636c2ec  {
	margin-top: 60px;
	margin-bottom: 60px;
}
#cmp_27d0ee33-bfd1-4f52-bb5a-6804b636c2ec h2 {
	margin-bottom: 13px;
}
#cmp_27d0ee33-bfd1-4f52-bb5a-6804b636c2ec img.img-fluid {
	width: auto;
}
/*
 * components/subscribe/cmp_1c3679ed-9acc-4dc9-bce5-dd7a630677ad/component.css
 */
#cmp_1c3679ed-9acc-4dc9-bce5-dd7a630677ad {
	background-color: #FFFFFF;
	padding-bottom: 60px;
}

#cmp_1c3679ed-9acc-4dc9-bce5-dd7a630677ad img {
	max-width: 285px;
	max-height: 190px;
	margin: auto;
}

#cmp_1c3679ed-9acc-4dc9-bce5-dd7a630677ad .sf-item {
	background-color: #FFFFFF;
	width: 285px;
	margin: auto;
}

#cmp_1c3679ed-9acc-4dc9-bce5-dd7a630677ad a.btn {
	margin-top: 12px;
}

#cmp_1c3679ed-9acc-4dc9-bce5-dd7a630677ad h3 {
	color: #333333;
	font-family: Lato;
	font-size: 16px;
}

#cmp_1c3679ed-9acc-4dc9-bce5-dd7a630677ad p {
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}
/*
 * components/subscribe/cmp_724a60b7-ed35-4eb3-a5b7-d579790973b2/component.css
 */
#cmp_724a60b7-ed35-4eb3-a5b7-d579790973b2 {
	padding: 50px 0 15px;
	background-color: #FFFFFF;
	color: #333333;
}

#cmp_724a60b7-ed35-4eb3-a5b7-d579790973b2 h1 {
	color: #333333;
	font-family: Lato;
	font-size: 45px;
}

#cmp_724a60b7-ed35-4eb3-a5b7-d579790973b2 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_724a60b7-ed35-4eb3-a5b7-d579790973b2 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 16px;
}

#cmp_724a60b7-ed35-4eb3-a5b7-d579790973b2 p {
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}

#cmp_724a60b7-ed35-4eb3-a5b7-d579790973b2 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}

#cmp_724a60b7-ed35-4eb3-a5b7-d579790973b2 ul {
	list-style: disc;
	list-style-position: inside;
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}

/*
 * 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: 15px;

	color: #FFFFFF;
	background-color: #333333;
}

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

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

	color: #FFFFFF;
	background-color: #333333;
}

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

@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_65f33b9c-b4e3-4f89-863a-3ee8cacfe11a/component.css
 */
#cmp_65f33b9c-b4e3-4f89-863a-3ee8cacfe11a {
	padding: 50px 0 15px;
	background-color: #FFFFFF;
}

#cmp_65f33b9c-b4e3-4f89-863a-3ee8cacfe11a h1 {
	color: #333333;
	font-family: Lato;
	font-size: 45px;
}

#cmp_65f33b9c-b4e3-4f89-863a-3ee8cacfe11a p {
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}
/*
 * components/subscribe_flow/survey_step/cmp_a82f2238-87dc-431a-adb7-601345f673cf/component.css
 */
#cmp_a82f2238-87dc-431a-adb7-601345f673cf {
	padding: 25px;
	margin-top: 20px;
	margin-bottom: 20px;
}

#cmp_a82f2238-87dc-431a-adb7-601345f673cf h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
	margin-top: 2rem;
	margin-bottom: 0.5rem;
}

#cmp_a82f2238-87dc-431a-adb7-601345f673cf p {
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}

#cmp_a82f2238-87dc-431a-adb7-601345f673cf.survey p {
	margin-left:0.1rem;
	margin-bottom: 1rem;
}

#cmp_a82f2238-87dc-431a-adb7-601345f673cf.survey .radio input[type="radio"],
#cmp_a82f2238-87dc-431a-adb7-601345f673cf.survey .checkbox input[type="checkbox"] {
	margin-right: 0.5em;
}

#cmp_a82f2238-87dc-431a-adb7-601345f673cf .survey-error {
	color: #333333;
}

#cmp_a82f2238-87dc-431a-adb7-601345f673cf input,
#cmp_a82f2238-87dc-431a-adb7-601345f673cf textarea {
	color: #333333;
}
/*
 * components/subscribe_flow/terms_step/cmp_1ea3f52d-7ea8-4080-8b9d-3d5113fecc9c/component.css
 */
#cmp_1ea3f52d-7ea8-4080-8b9d-3d5113fecc9c {
	padding-bottom: 60px;
}

#cmp_1ea3f52d-7ea8-4080-8b9d-3d5113fecc9c img {
	max-width: 285px;
	max-height: 190px;
	margin: auto;
}

#cmp_1ea3f52d-7ea8-4080-8b9d-3d5113fecc9c .sf-item {
	width: 285px;
	margin: auto;
	background-color: #FFFFFF;
}

#cmp_1ea3f52d-7ea8-4080-8b9d-3d5113fecc9c a.btn {
	margin-top: 12px;
}

#cmp_1ea3f52d-7ea8-4080-8b9d-3d5113fecc9c h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
	margin-top: 2rem;
	margin-bottom: 0.5rem;
}

#cmp_1ea3f52d-7ea8-4080-8b9d-3d5113fecc9c p {
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}
/*
 * components/subscribe_flow/terms_step/cmp_44168db6-c0aa-45cb-9280-270d50b1832e/component.css
 */
#cmp_44168db6-c0aa-45cb-9280-270d50b1832e {
	padding: 50px 0 15px;
	background-color: #FFFFFF;
}

#cmp_44168db6-c0aa-45cb-9280-270d50b1832e h1 {
	color: #333333;
	font-family: Lato;
	font-size: 45px;
}

#cmp_44168db6-c0aa-45cb-9280-270d50b1832e p {
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}
/*
 * components/subscribe_flow/variant_step/cmp_0403d5c2-e5d6-4143-83ba-2081ca9ea90e/component.css
 */
#cmp_0403d5c2-e5d6-4143-83ba-2081ca9ea90e {
	padding: 50px 0 15px;
	background-color: #FFFFFF;
}

#cmp_0403d5c2-e5d6-4143-83ba-2081ca9ea90e h1 {
	color: #333333;
	font-family: Lato;
	font-size: 45px;
}

#cmp_0403d5c2-e5d6-4143-83ba-2081ca9ea90e p {
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}
/*
 * components/subscribe_flow/variant_step/cmp_80fd7ba6-62e9-4edb-ac78-ca25beb2ffc0/component.css
 */
#cmp_80fd7ba6-62e9-4edb-ac78-ca25beb2ffc0 {
	padding-bottom: 60px;
}

#cmp_80fd7ba6-62e9-4edb-ac78-ca25beb2ffc0 img {
	max-width: 285px;
	max-height: 190px;
	margin: auto;
}

#cmp_80fd7ba6-62e9-4edb-ac78-ca25beb2ffc0 .sf-item {
	width: 285px;
	margin: auto;
	background-color: #FFFFFF;
}

#cmp_80fd7ba6-62e9-4edb-ac78-ca25beb2ffc0 a.btn {
	margin-top: 12px;
}

#cmp_80fd7ba6-62e9-4edb-ac78-ca25beb2ffc0 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
	margin-top: 2rem;
	margin-bottom: 0.5rem;
}

#cmp_80fd7ba6-62e9-4edb-ac78-ca25beb2ffc0 p {
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}
/*
 * components/view-cart/cmp_0f6433a4-193e-4264-808b-3d4ac3b8e26c/component.css
 */
#cmp_0f6433a4-193e-4264-808b-3d4ac3b8e26c {
	padding: 15px 15px 100px 15px;
}

#cmp_0f6433a4-193e-4264-808b-3d4ac3b8e26c .cart-thead {
	border-bottom: 1px solid #E7E7E7;
	padding: 10px 0;
}

#cmp_0f6433a4-193e-4264-808b-3d4ac3b8e26c .cart-thead h3 {
	text-transform: uppercase;
	color: #333333;
}

#cmp_0f6433a4-193e-4264-808b-3d4ac3b8e26c .cart-item {
	border: 1px solid #E7E7E7;
	padding: 25px 0;
	position: relative;
}

#cmp_0f6433a4-193e-4264-808b-3d4ac3b8e26c .product-main {
	margin-bottom: 15px;
}

#cmp_0f6433a4-193e-4264-808b-3d4ac3b8e26c .product-label p {
	margin: 0;
}

#cmp_0f6433a4-193e-4264-808b-3d4ac3b8e26c .product-label .info {
	color: #F38258;
	text-align: right;
	text-transform: uppercase;
}

#cmp_0f6433a4-193e-4264-808b-3d4ac3b8e26c .product-label .meta {
	color: #333333;
	font-size: 16px;
}

#cmp_0f6433a4-193e-4264-808b-3d4ac3b8e26c .product-rem-btn {
	position: absolute;
	right: 1%;
	top: 1%;
}

#cmp_0f6433a4-193e-4264-808b-3d4ac3b8e26c figure {
	margin: 0 0 15px 0;
}

#cmp_0f6433a4-193e-4264-808b-3d4ac3b8e26c .cart-subtotal {
	margin: 50px 0 0 0;
}

#cmp_0f6433a4-193e-4264-808b-3d4ac3b8e26c .cart-subtotal h1 {
	margin: 0 0 15px 0;
}

#cmp_0f6433a4-193e-4264-808b-3d4ac3b8e26c .cart-subtotal h3 {
	margin: 0 0 25px 0;
	text-transform: uppercase;
}

#cmp_0f6433a4-193e-4264-808b-3d4ac3b8e26c .cart-subtotal p {
	margin: 0 0 25px 0;
}

@media (min-width: 768px) {
	#cmp_0f6433a4-193e-4264-808b-3d4ac3b8e26c .cart-item {
		border-width: 0 0 1px 0;
	}
	#cmp_0f6433a4-193e-4264-808b-3d4ac3b8e26c .product-rem-btn {
		top: 40%;
	}
	#cmp_0f6433a4-193e-4264-808b-3d4ac3b8e26c figure {
		margin: 0;
	}
	#cmp_0f6433a4-193e-4264-808b-3d4ac3b8e26c div .meta {
		padding-left: 0;
	}
}

/*
 * components/view-cart/cmp_ba531c82-d6f8-43f7-85cf-b2b03848506a/component.css
 */
#cmp_ba531c82-d6f8-43f7-85cf-b2b03848506a {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_ba531c82-d6f8-43f7-85cf-b2b03848506a h1 {
	color: #333333;
	font-family: Lato;
	font-size: 45px;
}

#cmp_ba531c82-d6f8-43f7-85cf-b2b03848506a h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_ba531c82-d6f8-43f7-85cf-b2b03848506a h3 {
	color: #333333;
	font-family: Lato;
	font-size: 16px;
}

#cmp_ba531c82-d6f8-43f7-85cf-b2b03848506a p {
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}

#cmp_ba531c82-d6f8-43f7-85cf-b2b03848506a ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}

#cmp_ba531c82-d6f8-43f7-85cf-b2b03848506a ul {
	list-style: disc;
	list-style-position: inside;
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}

#cmp_ba531c82-d6f8-43f7-85cf-b2b03848506a  {
	padding: 50px 0;;
}
#cmp_ba531c82-d6f8-43f7-85cf-b2b03848506a h1 {
	margin-bottom: 15px;
}