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

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

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

h1 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 48px;
	letter-spacing: 1px;
	line-height: 1;
	margin: 0 0 25px 0;
}

h2 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 32px;
	margin: 0 0 25px 0;
}

h3 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 24px;
	margin: 0 0 25px 0;
}

p {
	line-height: 1.5em;
	margin: 0 0 15px 0;
}

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

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

/* General Component Styles */
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 {
	padding: 0;
	position: relative;

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

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

.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: 0;
	border: none;
	font-size: 14px;
	letter-spacing: 0.077em;
	padding: 1em 3em;
}

.btn-small {
	border: 2px solid #EE4141;
	color: #EE4141;
	padding: 0.6em 1.8em;
}

.btn-small:hover,
.btn-small:focus,
.btn-small:active,
.btn-small:active:focus {
	background-color: #EE4141;
	border-color: #EE4141;
}

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

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

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

.btn-secondary {
	background-color: #B58A62;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
	letter-spacing: 0.167em;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:active:focus {
	background-color: #EE4141;
	color: #FFFFFF;
}

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

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

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

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

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

	padding: .9375rem 0;
}

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

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

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

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

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

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

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

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

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

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

/* Checkout
------------------------------*/
.checkout_content {
	margin-top: 0;
	overflow: auto;
}

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

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

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

.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 #EE4141;
	color: #EE4141;
	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: #B58A62;
	border-color: #B58A62;
	text-decoration: none;
}

/* Media Queries
------------------------------*/
@media (max-width: 767px) {
	section[class^="component"] {
		padding: 40px 0;
	}
	/* 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_09c2863b-9cd0-4da7-9913-48a69bd59690/component.css
 */
#cmp_09c2863b-9cd0-4da7-9913-48a69bd59690 img {
	max-width: 100%;
}

/*
 * components/about/cmp_6c4ba78d-8e80-4c22-9bb1-94379e842045/component.css
 */
#cmp_6c4ba78d-8e80-4c22-9bb1-94379e842045 {
	background-color: #FFFFFF;
}
#au_rich h2{
  margin-bottom:20px;
}
#au_rich h3{
  font-size:22px;
  color: rgb(50, 106, 155);
}
#cmp_6c4ba78d-8e80-4c22-9bb1-94379e842045 h1 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 48px;
}

#cmp_6c4ba78d-8e80-4c22-9bb1-94379e842045 h2 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 32px;
}

#cmp_6c4ba78d-8e80-4c22-9bb1-94379e842045 h3 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 24px;
}

#cmp_6c4ba78d-8e80-4c22-9bb1-94379e842045 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_6c4ba78d-8e80-4c22-9bb1-94379e842045 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_6c4ba78d-8e80-4c22-9bb1-94379e842045 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_6c4ba78d-8e80-4c22-9bb1-94379e842045 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/about/cmp_6f0ec23d-0176-408b-8255-a0c4c568413f/component.css
 */
#cmp_6f0ec23d-0176-408b-8255-a0c4c568413f {
	padding: 0;
}

#cmp_6f0ec23d-0176-408b-8255-a0c4c568413f .hero-content {
	background-color: #FFFFFF;
	padding: 20px;
}

#cmp_6f0ec23d-0176-408b-8255-a0c4c568413f .hero-content h1 {
	color: #EE4141;
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_6f0ec23d-0176-408b-8255-a0c4c568413f .hero-content h2 {
	color: #FFFFFF;
	font-family: Oswald;
	font-size: 32px;
}

#cmp_6f0ec23d-0176-408b-8255-a0c4c568413f .hero-content h3 {
	color: #FFFFFF;
	font-family: Oswald;
	font-size: 24px;
}

#cmp_6f0ec23d-0176-408b-8255-a0c4c568413f .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_6f0ec23d-0176-408b-8255-a0c4c568413f .hero-content .btn {
	background-color: #EE4141;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_6f0ec23d-0176-408b-8255-a0c4c568413f .hero-content .btn:hover {
	background-color: #B58A62;
	color: #FFFFFF;
}


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

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

	#cmp_6f0ec23d-0176-408b-8255-a0c4c568413f .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_6f0ec23d-0176-408b-8255-a0c4c568413f .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

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

	#cmp_6f0ec23d-0176-408b-8255-a0c4c568413f .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_6f0ec23d-0176-408b-8255-a0c4c568413f .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/checkout/cmp_519f6d58-50c2-484d-877c-d2ea5e4f16ee/component.css
 */
#cmp_519f6d58-50c2-484d-877c-d2ea5e4f16ee .checkout_content {
	overflow: auto;
}

#cmp_519f6d58-50c2-484d-877c-d2ea5e4f16ee .checkout_content section {
	border-color: #F5F5F5;
}

#cmp_519f6d58-50c2-484d-877c-d2ea5e4f16ee .cart_listing table {
	border-color: #F5F5F5;
}

/*
 * components/customer/account/cmp_6d881e5e-794e-40df-9484-3e1afe4df516/component.css
 */

/*
 * components/customer/edit/cmp_6faa40bc-5d40-422b-b534-9f9eebe034cb/component.css
 */

/*
 * components/customer/forgot_password/cmp_bd6b3ea8-d2a7-4983-95f9-61fa90ecaf1c/component.css
 */
#cmp_bd6b3ea8-d2a7-4983-95f9-61fa90ecaf1c {
	background-color: ;
}

#cmp_bd6b3ea8-d2a7-4983-95f9-61fa90ecaf1c h1 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_bd6b3ea8-d2a7-4983-95f9-61fa90ecaf1c h2 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_bd6b3ea8-d2a7-4983-95f9-61fa90ecaf1c h3 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_bd6b3ea8-d2a7-4983-95f9-61fa90ecaf1c p {
	color: ;
	font-family: ;
	font-size: ;
}

@media (min-width: 768px) {
	#cmp_bd6b3ea8-d2a7-4983-95f9-61fa90ecaf1c .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_bd6b3ea8-d2a7-4983-95f9-61fa90ecaf1c ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_bd6b3ea8-d2a7-4983-95f9-61fa90ecaf1c ul {
	list-style: disc;
	list-style-position: inside;
	color: ;
	font-family: ;
	font-size: ;
}

/*
 * components/customer/forgot_password/cmp_da929f23-77f7-4e24-8ecd-cd1c700f9fee/component.css
 */
#cmp_da929f23-77f7-4e24-8ecd-cd1c700f9fee {
	padding: 0 0 120px 0;
}
/*
 * components/customer/login/cmp_ad543533-7a9d-42b4-b07f-64798b97b469/component.css
 */
#cmp_ad543533-7a9d-42b4-b07f-64798b97b469 {
	padding: 0 0 120px 0;
}
/*
 * components/customer/login/cmp_b6a563d9-0733-428e-81a1-721527590bcb/component.css
 */
#cmp_b6a563d9-0733-428e-81a1-721527590bcb {
	background-color: ;
}

#cmp_b6a563d9-0733-428e-81a1-721527590bcb h1 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_b6a563d9-0733-428e-81a1-721527590bcb h2 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_b6a563d9-0733-428e-81a1-721527590bcb h3 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_b6a563d9-0733-428e-81a1-721527590bcb p {
	color: ;
	font-family: ;
	font-size: ;
}

@media (min-width: 768px) {
	#cmp_b6a563d9-0733-428e-81a1-721527590bcb .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_b6a563d9-0733-428e-81a1-721527590bcb ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_b6a563d9-0733-428e-81a1-721527590bcb ul {
	list-style: disc;
	list-style-position: inside;
	color: ;
	font-family: ;
	font-size: ;
}

/*
 * components/customer/order/cmp_770d2d5e-057e-47c7-b6c9-51817ac6efc6/component.css
 */

/*
 * components/customer/orders/cmp_771a9b73-8c3c-4937-a111-b43231dcc1af/component.css
 */

/*
 * components/customer/password_reset/cmp_c319af76-5d39-4055-bb36-9fd7a2ed2d43/component.css
 */
#cmp_c319af76-5d39-4055-bb36-9fd7a2ed2d43 {
	padding: 0 0 120px 0;
}
/*
 * components/customer/password_reset/cmp_deebb6bd-866b-4025-a8be-da60499443f6/component.css
 */
#cmp_deebb6bd-866b-4025-a8be-da60499443f6 {
	background-color: #FFFFFF;
}

#cmp_deebb6bd-866b-4025-a8be-da60499443f6 h1 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 48px;
}

#cmp_deebb6bd-866b-4025-a8be-da60499443f6 h2 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 32px;
}

#cmp_deebb6bd-866b-4025-a8be-da60499443f6 h3 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 24px;
}

#cmp_deebb6bd-866b-4025-a8be-da60499443f6 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_deebb6bd-866b-4025-a8be-da60499443f6 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_deebb6bd-866b-4025-a8be-da60499443f6 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_deebb6bd-866b-4025-a8be-da60499443f6 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/customer/thank_you/cmp_aefc2d1b-18b3-4446-84a8-43cb8e44ad6d/component.css
 */

/*
 * components/faq/cmp_61e548c6-0201-4f63-9050-81523d62e3f0/component.css
 */
#cmp_61e548c6-0201-4f63-9050-81523d62e3f0 {
	background-color: #E8E4E2;
}

#cmp_61e548c6-0201-4f63-9050-81523d62e3f0 h1 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 48px;
}

#cmp_61e548c6-0201-4f63-9050-81523d62e3f0 h2 {
	color: rgb(40, 95, 158);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_61e548c6-0201-4f63-9050-81523d62e3f0 h3 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 24px;
}

#cmp_61e548c6-0201-4f63-9050-81523d62e3f0 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}


#cmp_61e548c6-0201-4f63-9050-81523d62e3f0 .btn {
	background-color: rgb(40, 95, 158);
	color: rgb(255, 255, 255);
	font-family: Lato;
	font-size: 14px;
}

#cmp_61e548c6-0201-4f63-9050-81523d62e3f0 .btn:hover {
	background-color: #B58A62;
	color: #FFFFFF;
}

#cmp_61e548c6-0201-4f63-9050-81523d62e3f0 .component-rich-text-with-button__content-row,
#cmp_61e548c6-0201-4f63-9050-81523d62e3f0 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_61e548c6-0201-4f63-9050-81523d62e3f0 .component-rich-text-with-button__content-row,
	#cmp_61e548c6-0201-4f63-9050-81523d62e3f0 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_61e548c6-0201-4f63-9050-81523d62e3f0 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_61e548c6-0201-4f63-9050-81523d62e3f0 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/faq/cmp_a7aefcbf-ae6c-4af1-8250-1045a1229d48/component.css
 */
#cmp_a7aefcbf-ae6c-4af1-8250-1045a1229d48 {
	background-color: #FFFFFF;
}

#cmp_a7aefcbf-ae6c-4af1-8250-1045a1229d48 h1 {
	color: rgb(40, 95, 158);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_a7aefcbf-ae6c-4af1-8250-1045a1229d48 h2 {
	color: rgb(40, 95, 158);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_a7aefcbf-ae6c-4af1-8250-1045a1229d48 h3 {
	color: rgb(74, 74, 74);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_a7aefcbf-ae6c-4af1-8250-1045a1229d48 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_a7aefcbf-ae6c-4af1-8250-1045a1229d48 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_a7aefcbf-ae6c-4af1-8250-1045a1229d48 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_a7aefcbf-ae6c-4af1-8250-1045a1229d48 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_a7aefcbf-ae6c-4af1-8250-1045a1229d48 h2 {
	margin: 0 0 40px 0;
}
#cmp_a7aefcbf-ae6c-4af1-8250-1045a1229d48 p {
	border-bottom: 1px solid #EEEEEE;
	padding: 0 0 25px 0;
}
/*
 * components/global/cmp_00d6a842-b811-499d-b190-e893b5696eb6/component.css
 */
#cmp_00d6a842-b811-499d-b190-e893b5696eb6.footer {
	background-color: ;
	color: #FFFFFF;
	font-family: ;
	padding: 25px 0;

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

#cmp_00d6a842-b811-499d-b190-e893b5696eb6.footer p {
	color: #FFFFFF;
}

#cmp_00d6a842-b811-499d-b190-e893b5696eb6 .footer-subscribe {
	padding: 15px 0;
}

#cmp_00d6a842-b811-499d-b190-e893b5696eb6 .footer-subscribe .btn {
	border: 1px solid #FFFFFF;
}

#cmp_00d6a842-b811-499d-b190-e893b5696eb6 .footer-social {
	padding: 15px 0;
}

#cmp_00d6a842-b811-499d-b190-e893b5696eb6 .footer-social a {
	display: inline-block;
	padding: 0 5px;
}

#cmp_00d6a842-b811-499d-b190-e893b5696eb6 .footer-social svg path {
	fill: ;
}

#cmp_00d6a842-b811-499d-b190-e893b5696eb6 .footer-social a:hover svg path,
#cmp_00d6a842-b811-499d-b190-e893b5696eb6 .footer-social a:focus svg path,
#cmp_00d6a842-b811-499d-b190-e893b5696eb6 .footer-social a:active svg path {
	fill: ;
}

#cmp_00d6a842-b811-499d-b190-e893b5696eb6 .footer-contact {
	padding: 15px 0;

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

#cmp_00d6a842-b811-499d-b190-e893b5696eb6 .footer-contact p {
	margin: 0 0 0.5em 0;
}

@media (min-width: 768px) {
	#cmp_00d6a842-b811-499d-b190-e893b5696eb6.footer {
		padding: 40px 0;

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

/*
 * components/global/cmp_cd8b80ed-81de-4c4c-82d1-415475ff10c2/component.css
 */
#cmp_cd8b80ed-81de-4c4c-82d1-415475ff10c2 {
	background-color: #FFFFFF;
}

#cmp_cd8b80ed-81de-4c4c-82d1-415475ff10c2 h1 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 48px;
}

#cmp_cd8b80ed-81de-4c4c-82d1-415475ff10c2 h2 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 32px;
}

#cmp_cd8b80ed-81de-4c4c-82d1-415475ff10c2 h3 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 24px;
}

#cmp_cd8b80ed-81de-4c4c-82d1-415475ff10c2 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}


#cmp_cd8b80ed-81de-4c4c-82d1-415475ff10c2 .btn {
	background-color: #EE4141;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_cd8b80ed-81de-4c4c-82d1-415475ff10c2 .btn:hover {
	background-color: #B58A62;
	color: #FFFFFF;
}

#cmp_cd8b80ed-81de-4c4c-82d1-415475ff10c2 .component-rich-text-with-button__content-row,
#cmp_cd8b80ed-81de-4c4c-82d1-415475ff10c2 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_cd8b80ed-81de-4c4c-82d1-415475ff10c2 .component-rich-text-with-button__content-row,
	#cmp_cd8b80ed-81de-4c4c-82d1-415475ff10c2 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_cd8b80ed-81de-4c4c-82d1-415475ff10c2 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_cd8b80ed-81de-4c4c-82d1-415475ff10c2 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_cd8b80ed-81de-4c4c-82d1-415475ff10c2  {
	padding-top: 0;
}
/*
 * components/global/cmp_d08e3875-4e37-4f9b-aa1a-328bd54efc0e/component.css
 */
#cmp_d08e3875-4e37-4f9b-aa1a-328bd54efc0e {
	border-bottom: 4px solid #E8E4E2;
	padding: 0;
}
#r_nav .nav-item:last-child{
  display:none;
}
#cmp_d08e3875-4e37-4f9b-aa1a-328bd54efc0e .navbar {
	background-color: ;
	border-radius: 0;
	padding: 0;

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

#cmp_d08e3875-4e37-4f9b-aa1a-328bd54efc0e .navbar a:hover,
#cmp_d08e3875-4e37-4f9b-aa1a-328bd54efc0e .navbar a:focus,
#cmp_d08e3875-4e37-4f9b-aa1a-328bd54efc0e .navbar a:active {
	color: ;
}

#cmp_d08e3875-4e37-4f9b-aa1a-328bd54efc0e .navbar-brand {
	color: #000000;
	font-family: ;
	font-size: ;
	margin: 0;
	max-width: 100%;
	padding: 15px;
	text-align: 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;

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

#cmp_d08e3875-4e37-4f9b-aa1a-328bd54efc0e .navbar-brand img {
	max-width: 100%;
}

#cmp_d08e3875-4e37-4f9b-aa1a-328bd54efc0e .navbar .navbar-toggler {
	background-color: #EE4141;
	border-radius: 0;
	color: #FFFFFF;
	font-size: 14px;
	letter-spacing: 0.071em;
	padding: 15px;
	text-transform: uppercase;
}

#cmp_d08e3875-4e37-4f9b-aa1a-328bd54efc0e .navbar .navbar-toggler:hover,
#cmp_d08e3875-4e37-4f9b-aa1a-328bd54efc0e .navbar .navbar-toggler:focus,
#cmp_d08e3875-4e37-4f9b-aa1a-328bd54efc0e .navbar .navbar-toggler:active {
	background-color: #B58A62;
	color: #FFFFFF;
}

#cmp_d08e3875-4e37-4f9b-aa1a-328bd54efc0e .navbar-nav {
	background-color: #EE4141;
	margin: 0;
	padding-top: 15px;
	padding-bottom: 15px;

	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-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

#cmp_d08e3875-4e37-4f9b-aa1a-328bd54efc0e .navbar-nav li {
	padding-top: 10px;
	padding-bottom: 10px;
}

#cmp_d08e3875-4e37-4f9b-aa1a-328bd54efc0e .navbar-nav .nav-link {
	color: #FFFFFF;
	font-family: ;
	font-size: ;;
	letter-spacing: 0.071em;
	padding: 15px;
	text-align: center;
	text-transform: uppercase;
}

@media (max-width: 767px) {
	#cmp_d08e3875-4e37-4f9b-aa1a-328bd54efc0e {
		border-width: 0;
	}
	#cmp_d08e3875-4e37-4f9b-aa1a-328bd54efc0e .dropdown-menu {
		background-color: #EE4141;
	}
}

@media (min-width: 768px) {
	#cmp_d08e3875-4e37-4f9b-aa1a-328bd54efc0e .navbar {
		padding: 15px;
		padding-bottom: 0;

		-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;
	}
	#cmp_d08e3875-4e37-4f9b-aa1a-328bd54efc0e .navbar-brand {
		padding: 0;
		padding-bottom: 15px;
	}
	#cmp_d08e3875-4e37-4f9b-aa1a-328bd54efc0e .navbar-toggleable-sm {
		-webkit-flex-shrink: 1;
		-moz-flex-shrink: 1;
		-ms-flex-shrink: 1;
		flex-shrink: 1;

		-webkit-flex-grow: 2;
		-moz-flex-grow: 2;
		-ms-flex-grow: 2;
		flex-grow: 2;
	}
	#cmp_d08e3875-4e37-4f9b-aa1a-328bd54efc0e .navbar-nav {
		background-color: ;
		padding: 0;
		padding-bottom: 15px;
		
		-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;
	}
	#cmp_d08e3875-4e37-4f9b-aa1a-328bd54efc0e .navbar-nav li {
		padding: 0;
	}
	#cmp_d08e3875-4e37-4f9b-aa1a-328bd54efc0e .navbar-nav .nav-link {
		color: ;
	}
	#cmp_d08e3875-4e37-4f9b-aa1a-328bd54efc0e .navbar a:hover,
	#cmp_d08e3875-4e37-4f9b-aa1a-328bd54efc0e .navbar a:focus,
	#cmp_d08e3875-4e37-4f9b-aa1a-328bd54efc0e .navbar a:active {
		color: ;
	}
}

/*
 * components/howitworks/cmp_95a37742-70ec-4edf-a1b6-f6621c9d76bd/component.css
 */
#cmp_95a37742-70ec-4edf-a1b6-f6621c9d76bd {
	background-color: #FFFFFF;
	padding: 0;
}

#cmp_95a37742-70ec-4edf-a1b6-f6621c9d76bd .content {
	margin: 0 auto;
	padding: 25px;
}

#cmp_95a37742-70ec-4edf-a1b6-f6621c9d76bd .content .cta {
	border: 5px solid #EE4141;
	padding: 45px;
}

#cmp_95a37742-70ec-4edf-a1b6-f6621c9d76bd h1 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 48px;
}

#cmp_95a37742-70ec-4edf-a1b6-f6621c9d76bd h2 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 32px;
}

#cmp_95a37742-70ec-4edf-a1b6-f6621c9d76bd h3 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 24px;
}

#cmp_95a37742-70ec-4edf-a1b6-f6621c9d76bd p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/howitworks/cmp_a912b998-d5ed-42df-91a9-b8ed81da7a3b/component.css
 */
#cmp_a912b998-d5ed-42df-91a9-b8ed81da7a3b {
	background-color: #E8E4E2;
}

#cmp_a912b998-d5ed-42df-91a9-b8ed81da7a3b .content-row {
	margin: 0;

	-webkit-justify-content: space-around;
	-moz-justify-content: space-around;
	-ms-justify-content: space-around;
	justify-content: space-around;
}

#cmp_a912b998-d5ed-42df-91a9-b8ed81da7a3b .content {
	background-color: #FFFFFF;
	border: 5px solid #FFFFFF;
	margin: 15px 0;
	padding: 25px;

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

#cmp_a912b998-d5ed-42df-91a9-b8ed81da7a3b .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_a912b998-d5ed-42df-91a9-b8ed81da7a3b h1 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 48px;
}

#cmp_a912b998-d5ed-42df-91a9-b8ed81da7a3b h2 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 32px;
}

#cmp_a912b998-d5ed-42df-91a9-b8ed81da7a3b h3 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 24px;
}

#cmp_a912b998-d5ed-42df-91a9-b8ed81da7a3b p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_a912b998-d5ed-42df-91a9-b8ed81da7a3b .content {
		margin: 15px;
	}
}
/*
 * components/howitworks/cmp_c324a730-7f92-46bd-aea6-9ae9305ef5ad/component.css
 */
#cmp_c324a730-7f92-46bd-aea6-9ae9305ef5ad {
	background-color: #FFFFFF;
}

#cmp_c324a730-7f92-46bd-aea6-9ae9305ef5ad h1 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 48px;
}

#cmp_c324a730-7f92-46bd-aea6-9ae9305ef5ad h2 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 32px;
}

#cmp_c324a730-7f92-46bd-aea6-9ae9305ef5ad h3 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 24px;
}

#cmp_c324a730-7f92-46bd-aea6-9ae9305ef5ad p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_c324a730-7f92-46bd-aea6-9ae9305ef5ad .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_c324a730-7f92-46bd-aea6-9ae9305ef5ad ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_c324a730-7f92-46bd-aea6-9ae9305ef5ad ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/index/cmp_7a6e622c-dad3-4324-9567-27efda1d3cf3/component.css
 */
#cmp_7a6e622c-dad3-4324-9567-27efda1d3cf3 img {
	max-width: 100%;
}

/*
 * components/index/cmp_931917ea-d9de-4139-9e85-3303d2bcfd1d/component.css
 */
#cmp_931917ea-d9de-4139-9e85-3303d2bcfd1d {
	background-color: #E8E4E2;
}

#cmp_931917ea-d9de-4139-9e85-3303d2bcfd1d .content-row {
	margin: 0;

	-webkit-justify-content: space-around;
	-moz-justify-content: space-around;
	-ms-justify-content: space-around;
	justify-content: space-around;
}

#cmp_931917ea-d9de-4139-9e85-3303d2bcfd1d .content {
	background-color: ;
	border: 5px solid ;
	margin: 15px 0;
	padding: 25px;

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

#cmp_931917ea-d9de-4139-9e85-3303d2bcfd1d .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_931917ea-d9de-4139-9e85-3303d2bcfd1d h1 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_931917ea-d9de-4139-9e85-3303d2bcfd1d h2 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_931917ea-d9de-4139-9e85-3303d2bcfd1d h3 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_931917ea-d9de-4139-9e85-3303d2bcfd1d p {
	color: ;
	font-family: ;
	font-size: ;
}

@media (min-width: 768px) {
	#cmp_931917ea-d9de-4139-9e85-3303d2bcfd1d .content {
		margin: 15px;
	}
}
#cmp_931917ea-d9de-4139-9e85-3303d2bcfd1d  {
	padding-top: 0;
}
/*
 * components/index/cmp_95cb2ddb-eddd-4303-aa2d-86da312a9d65/component.css
 */
#cmp_95cb2ddb-eddd-4303-aa2d-86da312a9d65 img {
	max-width: 100%;
}

/*
 * components/shop/listing/cmp_1c80fea7-5a4e-4ed1-8f9d-979dbe7dce15/component.css
 */
#cmp_1c80fea7-5a4e-4ed1-8f9d-979dbe7dce15 {
	padding: 20px 0;
}

#cmp_1c80fea7-5a4e-4ed1-8f9d-979dbe7dce15 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_815cc530-c1b7-4db6-aea9-d39931ed85b1/component.css
 */
.shop-listing-item {
	color: #757575;
}

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

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

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

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

.product_paging {
	margin: 20px 0;

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

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

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

.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 {
	background-color: #F9F9F9;
	text-decoration: none;
}

.product_page.active a {
	color: black;
}

/*
 * components/shop/listing/cmp_b6cf9982-08fc-4a12-ba94-0f59b80c98ce/component.css
 */
#cmp_b6cf9982-08fc-4a12-ba94-0f59b80c98ce {
	border-bottom: 1px solid #E1E1E1;
	padding: 20px 0 40px 0;
}

#cmp_b6cf9982-08fc-4a12-ba94-0f59b80c98ce ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_dac2cdc2-23f1-42c4-a205-fdbea3d2e699/component.css
 */
#cmp_dac2cdc2-23f1-42c4-a205-fdbea3d2e699 {
	background-color: ;
}

#cmp_dac2cdc2-23f1-42c4-a205-fdbea3d2e699 h1 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_dac2cdc2-23f1-42c4-a205-fdbea3d2e699 h2 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_dac2cdc2-23f1-42c4-a205-fdbea3d2e699 h3 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_dac2cdc2-23f1-42c4-a205-fdbea3d2e699 p {
	color: ;
	font-family: ;
	font-size: ;
}

@media (min-width: 768px) {
	#cmp_dac2cdc2-23f1-42c4-a205-fdbea3d2e699 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_dac2cdc2-23f1-42c4-a205-fdbea3d2e699 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_dac2cdc2-23f1-42c4-a205-fdbea3d2e699 ul {
	list-style: disc;
	list-style-position: inside;
	color: ;
	font-family: ;
	font-size: ;
}

/*
 * components/shop/product/cmp_8180b7ae-51d0-4290-a12c-e0556ca67ecd/component.css
 */
#cmp_8180b7ae-51d0-4290-a12c-e0556ca67ecd {
	background-color: ;
}

#cmp_8180b7ae-51d0-4290-a12c-e0556ca67ecd h1 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_8180b7ae-51d0-4290-a12c-e0556ca67ecd h2 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_8180b7ae-51d0-4290-a12c-e0556ca67ecd h3 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_8180b7ae-51d0-4290-a12c-e0556ca67ecd p {
	color: ;
	font-family: ;
	font-size: ;
}

@media (min-width: 768px) {
	#cmp_8180b7ae-51d0-4290-a12c-e0556ca67ecd .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_8180b7ae-51d0-4290-a12c-e0556ca67ecd ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_8180b7ae-51d0-4290-a12c-e0556ca67ecd ul {
	list-style: disc;
	list-style-position: inside;
	color: ;
	font-family: ;
	font-size: ;
}

/*
 * components/shop/product/cmp_fc4d2bff-e9ac-42e3-a8bc-eab4e94540be/component.css
 */
#cmp_fc4d2bff-e9ac-42e3-a8bc-eab4e94540be .shop-product select {
	width: auto;
}
.slider-for .slick-next {
    right: 0px !important;
}
.slider-for .slick-prev, .slider-for .slick-next {
    top: 50%;
    width: auto;
    height: auto;
}
.slick-prev, .slick-next {
	width: auto;
	height: auto;
}

#cmp_fc4d2bff-e9ac-42e3-a8bc-eab4e94540be .shop-product__name {
	margin-bottom: 20px;
}

#cmp_fc4d2bff-e9ac-42e3-a8bc-eab4e94540be .shop-product__price {
	margin-bottom: 20px;
}

#cmp_fc4d2bff-e9ac-42e3-a8bc-eab4e94540be .shop-product__add-to-cart {
	margin-bottom: 20px;
}

#cmp_fc4d2bff-e9ac-42e3-a8bc-eab4e94540be .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin-bottom: 40px;
}

#cmp_fc4d2bff-e9ac-42e3-a8bc-eab4e94540be .shop-product__review-share-desktop .rating,
#cmp_fc4d2bff-e9ac-42e3-a8bc-eab4e94540be .shop-product__review-share-desktop .sharing {
	padding-top: 10px;
}

#cmp_fc4d2bff-e9ac-42e3-a8bc-eab4e94540be .shop-product__review-share-desktop h3,
#cmp_fc4d2bff-e9ac-42e3-a8bc-eab4e94540be .shop-product__review-share-mobile h3 {
	margin: 10px 0;
}
#cmp_fc4d2bff-e9ac-42e3-a8bc-eab4e94540be  {
	padding-top: 0;
}
/*
 * components/sold_out/cmp_50a665f4-7ffa-4c6f-93b2-d3b70e503e6d/component.css
 */
#cmp_50a665f4-7ffa-4c6f-93b2-d3b70e503e6d img {
	max-width: 100%;
}

/*
 * components/sold_out/cmp_94d96430-fa82-46c2-af01-a3dd491476ab/component.css
 */
#cmp_94d96430-fa82-46c2-af01-a3dd491476ab {
	background-color: #FFFFFF;
}

#cmp_94d96430-fa82-46c2-af01-a3dd491476ab h1 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 48px;
}

#cmp_94d96430-fa82-46c2-af01-a3dd491476ab h2 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 32px;
}

#cmp_94d96430-fa82-46c2-af01-a3dd491476ab h3 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 24px;
}

#cmp_94d96430-fa82-46c2-af01-a3dd491476ab p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}


#cmp_94d96430-fa82-46c2-af01-a3dd491476ab .btn {
	background-color: #EE4141;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_94d96430-fa82-46c2-af01-a3dd491476ab .btn:hover {
	background-color: #B58A62;
	color: #FFFFFF;
}

#cmp_94d96430-fa82-46c2-af01-a3dd491476ab .component-rich-text-with-button__content-row,
#cmp_94d96430-fa82-46c2-af01-a3dd491476ab .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_94d96430-fa82-46c2-af01-a3dd491476ab .component-rich-text-with-button__content-row,
	#cmp_94d96430-fa82-46c2-af01-a3dd491476ab .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_94d96430-fa82-46c2-af01-a3dd491476ab ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_94d96430-fa82-46c2-af01-a3dd491476ab ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_94d96430-fa82-46c2-af01-a3dd491476ab  {
	padding-top: 0;
}
/*
 * components/subscribe/cmp_64b65d60-0721-44ec-abfa-2999848dad45/component.css
 */
#cmp_64b65d60-0721-44ec-abfa-2999848dad45 {
	background-color: #E8E4E2;
}

#cmp_64b65d60-0721-44ec-abfa-2999848dad45 h3 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 24px;
}

#cmp_64b65d60-0721-44ec-abfa-2999848dad45 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_64b65d60-0721-44ec-abfa-2999848dad45 .sf-item {
	background-color: #FFFFFF;
}
#cmp_64b65d60-0721-44ec-abfa-2999848dad45  {
	padding-top: 0;
}
/*
 * 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: 14px;

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

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

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

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

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

@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_2bf8a1ca-0740-4541-a4f7-34624a108fe6/component.css
 */
#cmp_2bf8a1ca-0740-4541-a4f7-34624a108fe6 {
	background-color: #E8E4E2;
	padding-bottom: 0;
}

#cmp_2bf8a1ca-0740-4541-a4f7-34624a108fe6 .progress-bar-container {
	position: relative;
}

#cmp_2bf8a1ca-0740-4541-a4f7-34624a108fe6 .progress-bar-filler {
	background: #FFFFFF;
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_2bf8a1ca-0740-4541-a4f7-34624a108fe6 .progress-bar {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-align-items: flex-start;
	-moz-align-items: flex-start;
	-ms-align-items: flex-start;
	align-items: flex-start;

	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
}

#cmp_2bf8a1ca-0740-4541-a4f7-34624a108fe6 .progress-bar .step {
	color: #757575;

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

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

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

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

#cmp_2bf8a1ca-0740-4541-a4f7-34624a108fe6 .progress-bar .step .point {
	background-color: #E8E4E2;
	border: 4px solid #FFFFFF;
	border-radius: 10px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_2bf8a1ca-0740-4541-a4f7-34624a108fe6 .progress-bar .step.active .point {
	background-color: #EE4141;;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_2bf8a1ca-0740-4541-a4f7-34624a108fe6 .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe_flow/survey_step/cmp_2c1c1e31-606e-4877-bfe8-73e28b7809d4/component.css
 */
#cmp_2c1c1e31-606e-4877-bfe8-73e28b7809d4 {
	background-color: #E8E4E2;
	padding-bottom: 0;
}

#cmp_2c1c1e31-606e-4877-bfe8-73e28b7809d4 h1 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 48px;
}

#cmp_2c1c1e31-606e-4877-bfe8-73e28b7809d4 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}
#cmp_2c1c1e31-606e-4877-bfe8-73e28b7809d4  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_40062930-0c51-4b18-9033-0fd0a5f0e4e8/component.css
 */
#cmp_40062930-0c51-4b18-9033-0fd0a5f0e4e8 {
	background-color: #E8E4E2;
}

#cmp_40062930-0c51-4b18-9033-0fd0a5f0e4e8 h3 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 24px;
}

#cmp_40062930-0c51-4b18-9033-0fd0a5f0e4e8 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_40062930-0c51-4b18-9033-0fd0a5f0e4e8  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_485d7214-652c-4559-86d2-a16c92b39cda/component.css
 */
#cmp_485d7214-652c-4559-86d2-a16c92b39cda {
	background-color: #FFFFFF;
}

#cmp_485d7214-652c-4559-86d2-a16c92b39cda h1 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 48px;
}

#cmp_485d7214-652c-4559-86d2-a16c92b39cda h2 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 32px;
}

#cmp_485d7214-652c-4559-86d2-a16c92b39cda h3 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 24px;
}

#cmp_485d7214-652c-4559-86d2-a16c92b39cda p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_485d7214-652c-4559-86d2-a16c92b39cda .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_485d7214-652c-4559-86d2-a16c92b39cda ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_485d7214-652c-4559-86d2-a16c92b39cda ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_485d7214-652c-4559-86d2-a16c92b39cda  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_6536b9a6-bc23-4bff-ad5f-58976e429be4/component.css
 */
#cmp_6536b9a6-bc23-4bff-ad5f-58976e429be4 {
	background-color: #FFFFFF;
}

#cmp_6536b9a6-bc23-4bff-ad5f-58976e429be4 .content-row {
	margin: 0;

	-webkit-justify-content: space-around;
	-moz-justify-content: space-around;
	-ms-justify-content: space-around;
	justify-content: space-around;
}

#cmp_6536b9a6-bc23-4bff-ad5f-58976e429be4 .content {
	background-color: #FFFFFF;
	border: 5px solid #FFFFFF;
	margin: 15px 0;
	padding: 25px;

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

#cmp_6536b9a6-bc23-4bff-ad5f-58976e429be4 .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_6536b9a6-bc23-4bff-ad5f-58976e429be4 h1 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 48px;
}

#cmp_6536b9a6-bc23-4bff-ad5f-58976e429be4 h2 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 32px;
}

#cmp_6536b9a6-bc23-4bff-ad5f-58976e429be4 h3 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 24px;
}

#cmp_6536b9a6-bc23-4bff-ad5f-58976e429be4 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_6536b9a6-bc23-4bff-ad5f-58976e429be4 .content {
		margin: 15px;
	}
}
#cmp_6536b9a6-bc23-4bff-ad5f-58976e429be4  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/terms_step/cmp_4dd3917b-f0cb-4ebc-972e-008cac859775/component.css
 */
#cmp_4dd3917b-f0cb-4ebc-972e-008cac859775 {
	background-color: #E8E4E2;
}

#cmp_4dd3917b-f0cb-4ebc-972e-008cac859775 h2 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 24px;
}

#cmp_4dd3917b-f0cb-4ebc-972e-008cac859775 h3 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 32px;
}

#cmp_4dd3917b-f0cb-4ebc-972e-008cac859775 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_4dd3917b-f0cb-4ebc-972e-008cac859775 .sf-item {
	background-color: #FFFFFF;
}
#cmp_4dd3917b-f0cb-4ebc-972e-008cac859775  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_068c1fe9-5540-486f-ad31-01f26bb22d30/component.css
 */
#cmp_068c1fe9-5540-486f-ad31-01f26bb22d30 {
	background-color: #E8E4E2;
	padding-bottom: 0;
}

#cmp_068c1fe9-5540-486f-ad31-01f26bb22d30 .progress-bar-container {
	position: relative;
}

#cmp_068c1fe9-5540-486f-ad31-01f26bb22d30 .progress-bar-filler {
	background: #FFFFFF;
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_068c1fe9-5540-486f-ad31-01f26bb22d30 .progress-bar {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-align-items: flex-start;
	-moz-align-items: flex-start;
	-ms-align-items: flex-start;
	align-items: flex-start;

	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
}

#cmp_068c1fe9-5540-486f-ad31-01f26bb22d30 .progress-bar .step {
	color: #757575;

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

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

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

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

#cmp_068c1fe9-5540-486f-ad31-01f26bb22d30 .progress-bar .step .point {
	background-color: #E8E4E2;
	border: 4px solid #FFFFFF;
	border-radius: 10px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_068c1fe9-5540-486f-ad31-01f26bb22d30 .progress-bar .step.active .point {
	background-color: #EE4141;;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_068c1fe9-5540-486f-ad31-01f26bb22d30 .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe_flow/variant_step/cmp_1d1a28f1-5aac-4668-be66-af23686a6e97/component.css
 */
#cmp_1d1a28f1-5aac-4668-be66-af23686a6e97 {
	background-color: #FFFFFF;
}

#cmp_1d1a28f1-5aac-4668-be66-af23686a6e97 h1 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 48px;
}

#cmp_1d1a28f1-5aac-4668-be66-af23686a6e97 h2 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 32px;
}

#cmp_1d1a28f1-5aac-4668-be66-af23686a6e97 h3 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 24px;
}

#cmp_1d1a28f1-5aac-4668-be66-af23686a6e97 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_1d1a28f1-5aac-4668-be66-af23686a6e97 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_1d1a28f1-5aac-4668-be66-af23686a6e97 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_1d1a28f1-5aac-4668-be66-af23686a6e97 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_1d1a28f1-5aac-4668-be66-af23686a6e97  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_36f922ed-4d62-4a97-8094-229038a26034/component.css
 */
#cmp_36f922ed-4d62-4a97-8094-229038a26034 {
	background-color: #E8E4E2;
}

#cmp_36f922ed-4d62-4a97-8094-229038a26034 h3 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 24px;
}

#cmp_36f922ed-4d62-4a97-8094-229038a26034 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_36f922ed-4d62-4a97-8094-229038a26034 .sf-item {
	background-color: #FFFFFF;
}
#cmp_36f922ed-4d62-4a97-8094-229038a26034  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_83993cd5-ce7d-4658-81c9-69be95f4a905/component.css
 */
#cmp_83993cd5-ce7d-4658-81c9-69be95f4a905 {
	background-color: #E8E4E2;
	padding-bottom: 0;
}

#cmp_83993cd5-ce7d-4658-81c9-69be95f4a905 h1 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 48px;
}

#cmp_83993cd5-ce7d-4658-81c9-69be95f4a905 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}
#cmp_83993cd5-ce7d-4658-81c9-69be95f4a905  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_d726dda3-cd03-4218-87e3-0079ddefa29e/component.css
 */
#cmp_d726dda3-cd03-4218-87e3-0079ddefa29e {
	background-color: #FFFFFF;
}

#cmp_d726dda3-cd03-4218-87e3-0079ddefa29e .content-row {
	margin: 0;

	-webkit-justify-content: space-around;
	-moz-justify-content: space-around;
	-ms-justify-content: space-around;
	justify-content: space-around;
}

#cmp_d726dda3-cd03-4218-87e3-0079ddefa29e .content {
	background-color: #FFFFFF;
	border: 5px solid #FFFFFF;
	margin: 15px 0;
	padding: 25px;

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

#cmp_d726dda3-cd03-4218-87e3-0079ddefa29e .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_d726dda3-cd03-4218-87e3-0079ddefa29e h1 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 48px;
}

#cmp_d726dda3-cd03-4218-87e3-0079ddefa29e h2 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 32px;
}

#cmp_d726dda3-cd03-4218-87e3-0079ddefa29e h3 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 24px;
}

#cmp_d726dda3-cd03-4218-87e3-0079ddefa29e p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_d726dda3-cd03-4218-87e3-0079ddefa29e .content {
		margin: 15px;
	}
}
#cmp_d726dda3-cd03-4218-87e3-0079ddefa29e  {
	padding-top: 0;
}
/*
 * components/view-cart/cmp_a75a16cb-61fd-4a8b-8644-3ee2947224d3/component.css
 */
#cmp_a75a16cb-61fd-4a8b-8644-3ee2947224d3 {
	background-color: ;
}

#cmp_a75a16cb-61fd-4a8b-8644-3ee2947224d3 h1 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_a75a16cb-61fd-4a8b-8644-3ee2947224d3 h2 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_a75a16cb-61fd-4a8b-8644-3ee2947224d3 h3 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_a75a16cb-61fd-4a8b-8644-3ee2947224d3 p {
	color: ;
	font-family: ;
	font-size: ;
}

@media (min-width: 768px) {
	#cmp_a75a16cb-61fd-4a8b-8644-3ee2947224d3 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_a75a16cb-61fd-4a8b-8644-3ee2947224d3 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_a75a16cb-61fd-4a8b-8644-3ee2947224d3 ul {
	list-style: disc;
	list-style-position: inside;
	color: ;
	font-family: ;
	font-size: ;
}

/*
 * components/view-cart/cmp_f67811f9-a2eb-4394-96b2-7dfdffd96dd3/component.css
 */
#cmp_f67811f9-a2eb-4394-96b2-7dfdffd96dd3 {
	padding: 15px 15px 100px 15px;
}

#cmp_f67811f9-a2eb-4394-96b2-7dfdffd96dd3 .cart-thead {
	border-bottom: 1px solid #E1E1E1;
	padding: 10px 0;
}

#cmp_f67811f9-a2eb-4394-96b2-7dfdffd96dd3 .cart-thead h3 {
	text-transform: uppercase;
}

#cmp_f67811f9-a2eb-4394-96b2-7dfdffd96dd3 .cart-item {
	border: 1px solid #E1E1E1;
	padding: 25px 0;
	position: relative;
}

#cmp_f67811f9-a2eb-4394-96b2-7dfdffd96dd3 .product-main {
	margin: 0 0 15px 0;
}

#cmp_f67811f9-a2eb-4394-96b2-7dfdffd96dd3 .product-label p {
	margin: 0;
}

#cmp_f67811f9-a2eb-4394-96b2-7dfdffd96dd3 .product-label .info {
	color: #EE4141;
	text-align: right;
	text-transform: uppercase;
}

#cmp_f67811f9-a2eb-4394-96b2-7dfdffd96dd3 .product-label .meta {
	color: #757575;
	font-size: 14px;
}

#cmp_f67811f9-a2eb-4394-96b2-7dfdffd96dd3 .product-rem-btn {
	position: absolute;
	right: 1%;
	top: 1%;
}

#cmp_f67811f9-a2eb-4394-96b2-7dfdffd96dd3 figure {
	margin: 0 0 15px 0;
}

#cmp_f67811f9-a2eb-4394-96b2-7dfdffd96dd3 .cart-subtotal {
	margin: 50px 0 0 0;
}

#cmp_f67811f9-a2eb-4394-96b2-7dfdffd96dd3 .cart-subtotal h2 {
	margin: 0 0 15px 0;
}

#cmp_f67811f9-a2eb-4394-96b2-7dfdffd96dd3 .cart-subtotal h3 {
	margin: 0 0 25px 0;
	text-transform: uppercase;
}

#cmp_f67811f9-a2eb-4394-96b2-7dfdffd96dd3 .cart-subtotal p {
	margin: 0 0 25px 0;
}
.cart-item.cart-table .heading a{
  color:#000;
  font-size:25px;
}
@media (min-width: 768px) {
	#cmp_f67811f9-a2eb-4394-96b2-7dfdffd96dd3 .cart-item {
		border-width: 0 0 1px 0;
	}
	#cmp_f67811f9-a2eb-4394-96b2-7dfdffd96dd3 .product-rem-btn {
		top: 44%;
	}
	#cmp_f67811f9-a2eb-4394-96b2-7dfdffd96dd3 figure {
		margin: 0;
	}
  .hidden-md-up{
  display:none;
}
}
@media (max-width: 767px) {
.cart-item.cart-table{
  text-align:center;
  }
  .hidden-md-up{
    text-align: center !important;
    margin-top: 10px;
}
}

/*
 * components/whats_inside/cmp_1678872c-a61c-4e49-8a42-fda956a91c31/component.css
 */
#cmp_1678872c-a61c-4e49-8a42-fda956a91c31 img {
	max-width: 100%;
}

/*
 * components/whats_inside/cmp_3528c9cf-6e35-4c00-af09-ce64362e27e3/component.css
 */
#cmp_3528c9cf-6e35-4c00-af09-ce64362e27e3 img {
	max-width: 100%;
}

/*
 * components/whats_inside/cmp_3c5c48d3-d00b-4689-af3c-bffdd5d4aebf/component.css
 */
#cmp_3c5c48d3-d00b-4689-af3c-bffdd5d4aebf {
	background-color: #FFFFFF;
}

#cmp_3c5c48d3-d00b-4689-af3c-bffdd5d4aebf h1 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 48px;
}

#cmp_3c5c48d3-d00b-4689-af3c-bffdd5d4aebf h2 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 32px;
}

#cmp_3c5c48d3-d00b-4689-af3c-bffdd5d4aebf h3 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 24px;
}

#cmp_3c5c48d3-d00b-4689-af3c-bffdd5d4aebf p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_3c5c48d3-d00b-4689-af3c-bffdd5d4aebf .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_3c5c48d3-d00b-4689-af3c-bffdd5d4aebf ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_3c5c48d3-d00b-4689-af3c-bffdd5d4aebf ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/whats_inside/cmp_88c3d0ea-2491-46e0-89ac-96064179fff6/component.css
 */
#cmp_88c3d0ea-2491-46e0-89ac-96064179fff6 img {
	max-width: 100%;
}

/*
 * components/whats_inside/cmp_8a843175-7cae-498b-b806-345087b230bc/component.css
 */
#cmp_8a843175-7cae-498b-b806-345087b230bc {
	background-color: #FFFFFF;
}

#cmp_8a843175-7cae-498b-b806-345087b230bc h1 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 48px;
}

#cmp_8a843175-7cae-498b-b806-345087b230bc h2 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 32px;
}

#cmp_8a843175-7cae-498b-b806-345087b230bc h3 {
	color: #EE4141;
	font-family: Oswald;
	font-size: 24px;
}

#cmp_8a843175-7cae-498b-b806-345087b230bc p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}


#cmp_8a843175-7cae-498b-b806-345087b230bc .btn {
	background-color: #EE4141;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_8a843175-7cae-498b-b806-345087b230bc .btn:hover {
	background-color: #B58A62;
	color: #FFFFFF;
}

#cmp_8a843175-7cae-498b-b806-345087b230bc .component-rich-text-with-button__content-row,
#cmp_8a843175-7cae-498b-b806-345087b230bc .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_8a843175-7cae-498b-b806-345087b230bc .component-rich-text-with-button__content-row,
	#cmp_8a843175-7cae-498b-b806-345087b230bc .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_8a843175-7cae-498b-b806-345087b230bc ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_8a843175-7cae-498b-b806-345087b230bc ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}