/*
 * css/style.css
 */
/* Globals
------------------------------*/
body {
	background-color: rgb(238, 237, 237);
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
	line-height: 1.5em;
}

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

h1 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 48px;
	letter-spacing: 1px;
	line-height: 1;
	margin: 0 0 25px 0;
}

h2 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 32px;
	margin: 0 0 25px 0;
}

h3 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 24px;
	margin: 0 0 25px 0;
}

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

a,
.btn-link {
	color: rgb(236, 88, 88);
}

a:hover,
a:focus,
a:active,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
	color: rgb(238, 152, 65);
}

/* 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: rgb(236, 88, 88);
}

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

.btn-small:hover,
.btn-small:focus,
.btn-small:active,
.btn-small:active:focus {
	background-color: rgb(236, 88, 88);
	border-color: rgb(236, 88, 88);
}

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

.btn-primary {
	background-color: rgb(236, 88, 88);
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
	letter-spacing: 0.167em;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus {
	background-color: rgb(238, 152, 65);
	color: #FFFFFF;
}

.btn-secondary {
	background-color: rgb(238, 152, 65);
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
	letter-spacing: 0.167em;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:active:focus {
	background-color: rgb(236, 88, 88);
	color: #FFFFFF;
}

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

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

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

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

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

.checkout_content #checkout_button {
	background-color: rgb(236, 88, 88);
	border: none;
	color: #FFFFFF;
	font-family: Open Sans;
	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: rgb(238, 152, 65);
	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: rgb(236, 88, 88);
}

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

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

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

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

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

#skip_button:hover,
#skip_button:focus,
#skip_button:active,
input[type="radio"]:checked + label.cj-btn, #skip_button.skipped {
	background-color: rgb(238, 152, 65);
	border-color: rgb(238, 152, 65);
	text-decoration: none;
}

/* Testimonials
------------------------------*/

.testimonialSection {
 	max-width: 500px;
  	margin: auto;
}
.testimonial .testimonial-box {
    border: 3px solid #aaa;
    padding: 20px 25px;
  	margin-bottom: 20px;
}
.testimonial .testi-msg {
    font-family: montserrat;
}
.testimonial .testiname {
    margin-top: 10px;
    text-align: right;
}
/*.testimonial .owl-dot.active {
    border: 1px solid #ee4141;
	background-color: #ee4141;
    border-radius: 10px;
    height: 10px;
    width: 10px;
}
.testimonial .owl-dot {
    border: 1px solid #000;
	background-color: #000;
    border-radius: 10px;
    height: 10px;
    width: 10px;
    vertical-align: top;
	display: inline-block;
}
.testimonial .owl-dot + .owl-dot {
	margin-left: 10px;	
}
.owl-dots {
    display: block;
    text-align: center;
    vertical-align: top;
	margin-top: 10px;
}*/
.testimonial .owl-prev {
    background-color: #ccc;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
	left: -16px;
	cursor: pointer;
}
.testimonial .owl-next {
    background-color: #ccc;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
	right: -16px;
	cursor: pointer;
}
.testimonialSection {
    overflow: visible;
}
.testimonialSection .owl-stage-outer {
    overflow: hidden;
}
.titlesSlider-box {
    margin-top: 20px;
    text-align: center;
	position:relative;
	padding:0px 30px;
}
.titlesSlider-box .owl-prev, .titlesSlider-box .owl-next {
    font-size: 30px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
	cursor:pointer;
}
.titlesSlider-box .owl-prev {
    left: -30px;
}
.titlesSlider-box .owl-next {
    right: -30px;
}
/* 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_1aa04ae8-c3e4-4926-8715-4086a261ec98/component.css
 */
#cmp_1aa04ae8-c3e4-4926-8715-4086a261ec98 {
	background-color: #FFFFFF;
}

#cmp_1aa04ae8-c3e4-4926-8715-4086a261ec98 .content-row {
	margin: 0;

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

#cmp_1aa04ae8-c3e4-4926-8715-4086a261ec98 .content {
	background-color: rgb(147, 171, 211);
	border: 5px solid rgb(147, 171, 211);
	margin: 15px 0;
	padding: 25px;

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

#cmp_1aa04ae8-c3e4-4926-8715-4086a261ec98 .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_1aa04ae8-c3e4-4926-8715-4086a261ec98 h1 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 48px;
}

#cmp_1aa04ae8-c3e4-4926-8715-4086a261ec98 h2 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 32px;
}

#cmp_1aa04ae8-c3e4-4926-8715-4086a261ec98 h3 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 24px;
}

#cmp_1aa04ae8-c3e4-4926-8715-4086a261ec98 p {
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

@media (min-width: 768px) {
	#cmp_1aa04ae8-c3e4-4926-8715-4086a261ec98 .content {
		margin: 15px;
	}
}
#cmp_1aa04ae8-c3e4-4926-8715-4086a261ec98  {
	padding-top: 0;
}
/*
 * components/about/cmp_3cfcb28e-f023-4209-a54b-0f03262a2053/component.css
 */
#cmp_3cfcb28e-f023-4209-a54b-0f03262a2053 {
	background-color: rgb(238, 237, 237);
}

#cmp_3cfcb28e-f023-4209-a54b-0f03262a2053 h1 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 48px;
}

#cmp_3cfcb28e-f023-4209-a54b-0f03262a2053 h2 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 32px;
}

#cmp_3cfcb28e-f023-4209-a54b-0f03262a2053 h3 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 24px;
}

#cmp_3cfcb28e-f023-4209-a54b-0f03262a2053 p {
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

@media (min-width: 768px) {
	#cmp_3cfcb28e-f023-4209-a54b-0f03262a2053 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_3cfcb28e-f023-4209-a54b-0f03262a2053 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

#cmp_3cfcb28e-f023-4209-a54b-0f03262a2053 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

#cmp_3cfcb28e-f023-4209-a54b-0f03262a2053  {
	padding-bottom: 0;
}
/*
 * components/about/cmp_57eab3c9-1bc0-438d-8aa3-b7d3bdab0183/component.css
 */
#cmp_57eab3c9-1bc0-438d-8aa3-b7d3bdab0183 {
	background-color: #E8E4E2;
}

#cmp_57eab3c9-1bc0-438d-8aa3-b7d3bdab0183 h1 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 48px;
}

#cmp_57eab3c9-1bc0-438d-8aa3-b7d3bdab0183 h2 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 32px;
}

#cmp_57eab3c9-1bc0-438d-8aa3-b7d3bdab0183 h3 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 24px;
}

#cmp_57eab3c9-1bc0-438d-8aa3-b7d3bdab0183 p {
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

@media (min-width: 768px) {
	#cmp_57eab3c9-1bc0-438d-8aa3-b7d3bdab0183 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_57eab3c9-1bc0-438d-8aa3-b7d3bdab0183 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

#cmp_57eab3c9-1bc0-438d-8aa3-b7d3bdab0183 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

/*
 * components/about/cmp_61947916-501e-46a8-a653-0e87f271a21b/component.css
 */
#cmp_61947916-501e-46a8-a653-0e87f271a21b {
	background-color: #E8E4E2;
}

#cmp_61947916-501e-46a8-a653-0e87f271a21b h1 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 48px;
}

#cmp_61947916-501e-46a8-a653-0e87f271a21b h2 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 32px;
}

#cmp_61947916-501e-46a8-a653-0e87f271a21b h3 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 24px;
}

#cmp_61947916-501e-46a8-a653-0e87f271a21b p {
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}


#cmp_61947916-501e-46a8-a653-0e87f271a21b .btn {
	background-color: rgb(236, 88, 88);
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_61947916-501e-46a8-a653-0e87f271a21b .btn:hover {
	background-color: rgb(238, 152, 65);
	color: #FFFFFF;
}

#cmp_61947916-501e-46a8-a653-0e87f271a21b .component-rich-text-with-button__content-row,
#cmp_61947916-501e-46a8-a653-0e87f271a21b .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_61947916-501e-46a8-a653-0e87f271a21b .component-rich-text-with-button__content-row,
	#cmp_61947916-501e-46a8-a653-0e87f271a21b .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_61947916-501e-46a8-a653-0e87f271a21b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

#cmp_61947916-501e-46a8-a653-0e87f271a21b ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

/*
 * components/about/cmp_9280671d-b776-4d43-a645-f36205e6cf9d/component.css
 */
#cmp_9280671d-b776-4d43-a645-f36205e6cf9d {
	background-color: rgb(238, 237, 237);
}

#cmp_9280671d-b776-4d43-a645-f36205e6cf9d h1 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 48px;
}

#cmp_9280671d-b776-4d43-a645-f36205e6cf9d h2 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 32px;
}

#cmp_9280671d-b776-4d43-a645-f36205e6cf9d h3 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 24px;
}

#cmp_9280671d-b776-4d43-a645-f36205e6cf9d p {
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

@media (min-width: 768px) {
	#cmp_9280671d-b776-4d43-a645-f36205e6cf9d .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_9280671d-b776-4d43-a645-f36205e6cf9d ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

#cmp_9280671d-b776-4d43-a645-f36205e6cf9d ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

/*
 * components/checkout/cmp_b99a7a27-e00a-41a0-8b2a-9209d75cfaa7/component.css
 */
#cmp_b99a7a27-e00a-41a0-8b2a-9209d75cfaa7 {
	background-color: rgb(232, 228, 226);
}

#cmp_b99a7a27-e00a-41a0-8b2a-9209d75cfaa7 h1 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 48px;
}

#cmp_b99a7a27-e00a-41a0-8b2a-9209d75cfaa7 h2 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 32px;
}

#cmp_b99a7a27-e00a-41a0-8b2a-9209d75cfaa7 h3 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 24px;
}

#cmp_b99a7a27-e00a-41a0-8b2a-9209d75cfaa7 p {
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

@media (min-width: 768px) {
	#cmp_b99a7a27-e00a-41a0-8b2a-9209d75cfaa7 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_b99a7a27-e00a-41a0-8b2a-9209d75cfaa7 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

#cmp_b99a7a27-e00a-41a0-8b2a-9209d75cfaa7 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

/*
 * components/checkout/cmp_cddb0817-7676-4685-afe1-40a3fd71464e/component.css
 */
#cmp_cddb0817-7676-4685-afe1-40a3fd71464e .checkout_content {
	overflow: auto;
}

#cmp_cddb0817-7676-4685-afe1-40a3fd71464e .checkout_content section {
	border-color: #F5F5F5;
}

#cmp_cddb0817-7676-4685-afe1-40a3fd71464e .cart_listing table {
	border-color: #F5F5F5;
}

/*
 * components/contact/cmp_7326ec76-3d41-4066-8156-eac2ac41b255/component.css
 */
#cmp_7326ec76-3d41-4066-8156-eac2ac41b255 {
	background-color: rgb(238, 237, 237);
}

#cmp_7326ec76-3d41-4066-8156-eac2ac41b255 h1 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 48px;
}

#cmp_7326ec76-3d41-4066-8156-eac2ac41b255 h2 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 32px;
}

#cmp_7326ec76-3d41-4066-8156-eac2ac41b255 h3 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 24px;
}

#cmp_7326ec76-3d41-4066-8156-eac2ac41b255 p {
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

@media (min-width: 768px) {
	#cmp_7326ec76-3d41-4066-8156-eac2ac41b255 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_7326ec76-3d41-4066-8156-eac2ac41b255 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

#cmp_7326ec76-3d41-4066-8156-eac2ac41b255 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

/*
 * components/customer/account/cmp_5246f534-b4a4-4159-a05b-f9d1c729c5e7/component.css
 */

/*
 * components/customer/edit/cmp_9f30d887-7fe5-4a53-9ddd-32baa4ae42ec/component.css
 */

/*
 * components/customer/forgot_password/cmp_9d778657-5f32-4591-ae73-9077afef3043/component.css
 */
#cmp_9d778657-5f32-4591-ae73-9077afef3043 {
	padding: 0 0 120px 0;
}
/*
 * components/customer/forgot_password/cmp_b3eae49e-9652-454c-a564-a33210b7e8cd/component.css
 */
#cmp_b3eae49e-9652-454c-a564-a33210b7e8cd {
	background-color: rgb(238, 237, 237);
}

#cmp_b3eae49e-9652-454c-a564-a33210b7e8cd h1 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 48px;
}

#cmp_b3eae49e-9652-454c-a564-a33210b7e8cd h2 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 32px;
}

#cmp_b3eae49e-9652-454c-a564-a33210b7e8cd h3 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 24px;
}

#cmp_b3eae49e-9652-454c-a564-a33210b7e8cd p {
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

@media (min-width: 768px) {
	#cmp_b3eae49e-9652-454c-a564-a33210b7e8cd .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_b3eae49e-9652-454c-a564-a33210b7e8cd ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

#cmp_b3eae49e-9652-454c-a564-a33210b7e8cd ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

/*
 * components/customer/login/cmp_14c5fd8a-63ee-4fc9-95b7-8842f48c6b17/component.css
 */
#cmp_14c5fd8a-63ee-4fc9-95b7-8842f48c6b17 {
	background-color: rgb(238, 237, 237);
}

#cmp_14c5fd8a-63ee-4fc9-95b7-8842f48c6b17 h1 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 48px;
}

#cmp_14c5fd8a-63ee-4fc9-95b7-8842f48c6b17 h2 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 32px;
}

#cmp_14c5fd8a-63ee-4fc9-95b7-8842f48c6b17 h3 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 24px;
}

#cmp_14c5fd8a-63ee-4fc9-95b7-8842f48c6b17 p {
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

@media (min-width: 768px) {
	#cmp_14c5fd8a-63ee-4fc9-95b7-8842f48c6b17 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_14c5fd8a-63ee-4fc9-95b7-8842f48c6b17 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

#cmp_14c5fd8a-63ee-4fc9-95b7-8842f48c6b17 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

/*
 * components/customer/login/cmp_72f98958-2220-43f5-ad9d-dd4b3c10eb60/component.css
 */
#cmp_72f98958-2220-43f5-ad9d-dd4b3c10eb60 {
	padding: 0 0 120px 0;
}
/*
 * components/customer/order/cmp_f0fee85d-a213-4140-bb79-a8299bd3d331/component.css
 */

/*
 * components/customer/password_reset/cmp_298a8b8d-638f-479e-ab55-9c6110c3cd7d/component.css
 */
#cmp_298a8b8d-638f-479e-ab55-9c6110c3cd7d {
	background-color: rgb(238, 237, 237);
}

#cmp_298a8b8d-638f-479e-ab55-9c6110c3cd7d h1 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 48px;
}

#cmp_298a8b8d-638f-479e-ab55-9c6110c3cd7d h2 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 32px;
}

#cmp_298a8b8d-638f-479e-ab55-9c6110c3cd7d h3 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 24px;
}

#cmp_298a8b8d-638f-479e-ab55-9c6110c3cd7d p {
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

@media (min-width: 768px) {
	#cmp_298a8b8d-638f-479e-ab55-9c6110c3cd7d .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_298a8b8d-638f-479e-ab55-9c6110c3cd7d ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

#cmp_298a8b8d-638f-479e-ab55-9c6110c3cd7d ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

/*
 * components/customer/password_reset/cmp_fbfeb25e-5d6c-446d-995b-01b6ddb1934f/component.css
 */
#cmp_fbfeb25e-5d6c-446d-995b-01b6ddb1934f {
	padding: 0 0 120px 0;
}
/*
 * components/customer/thank_you/cmp_e5b51573-e7d5-45b4-b038-d8ea5a97f86d/component.css
 */

/*
 * components/faq/cmp_4dcf9d95-5f96-45ef-a839-fbbc272f8270/component.css
 */
#cmp_4dcf9d95-5f96-45ef-a839-fbbc272f8270 {
	background-color: rgb(238, 237, 237);
}

#cmp_4dcf9d95-5f96-45ef-a839-fbbc272f8270 h1 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 48px;
}

#cmp_4dcf9d95-5f96-45ef-a839-fbbc272f8270 h2 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 32px;
}

#cmp_4dcf9d95-5f96-45ef-a839-fbbc272f8270 h3 {
	color: #000000;
	font-family: Carter One;
	font-size: 24px;
}

#cmp_4dcf9d95-5f96-45ef-a839-fbbc272f8270 p {
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

@media (min-width: 768px) {
	#cmp_4dcf9d95-5f96-45ef-a839-fbbc272f8270 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_4dcf9d95-5f96-45ef-a839-fbbc272f8270 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

#cmp_4dcf9d95-5f96-45ef-a839-fbbc272f8270 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

#cmp_4dcf9d95-5f96-45ef-a839-fbbc272f8270 h2 {
	margin: 0 0 40px 0;
}
#cmp_4dcf9d95-5f96-45ef-a839-fbbc272f8270 p {
	border-bottom: 1px solid #EEEEEE;
	padding: 0 0 25px 0;
}
/*
 * components/faq/cmp_ad4b8de0-e003-41c4-b545-b30a4a084ad7/component.css
 */
#cmp_ad4b8de0-e003-41c4-b545-b30a4a084ad7 {
	background-color: #E8E4E2;
}

#cmp_ad4b8de0-e003-41c4-b545-b30a4a084ad7 h1 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 48px;
}

#cmp_ad4b8de0-e003-41c4-b545-b30a4a084ad7 h2 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 32px;
}

#cmp_ad4b8de0-e003-41c4-b545-b30a4a084ad7 h3 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 24px;
}

#cmp_ad4b8de0-e003-41c4-b545-b30a4a084ad7 p {
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}


#cmp_ad4b8de0-e003-41c4-b545-b30a4a084ad7 .btn {
	background-color: rgb(236, 88, 88);
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_ad4b8de0-e003-41c4-b545-b30a4a084ad7 .btn:hover {
	background-color: rgb(238, 152, 65);
	color: #FFFFFF;
}

#cmp_ad4b8de0-e003-41c4-b545-b30a4a084ad7 .component-rich-text-with-button__content-row,
#cmp_ad4b8de0-e003-41c4-b545-b30a4a084ad7 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_ad4b8de0-e003-41c4-b545-b30a4a084ad7 .component-rich-text-with-button__content-row,
	#cmp_ad4b8de0-e003-41c4-b545-b30a4a084ad7 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_ad4b8de0-e003-41c4-b545-b30a4a084ad7 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

#cmp_ad4b8de0-e003-41c4-b545-b30a4a084ad7 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

/*
 * components/global/cmp_263d38ec-2f50-4938-bb7b-b75f24c02cbc/component.css
 */
#cmp_263d38ec-2f50-4938-bb7b-b75f24c02cbc {
	border-bottom: 4px solid rgb(238, 237, 237);
	padding: 0;
}

#cmp_263d38ec-2f50-4938-bb7b-b75f24c02cbc .navbar {
	background-color: rgb(238, 237, 237);
	border-radius: 0;
	padding: 0;

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

#cmp_263d38ec-2f50-4938-bb7b-b75f24c02cbc .navbar a:hover,
#cmp_263d38ec-2f50-4938-bb7b-b75f24c02cbc .navbar a:focus,
#cmp_263d38ec-2f50-4938-bb7b-b75f24c02cbc .navbar a:active {
	color: rgb(238, 152, 65);
}

#cmp_263d38ec-2f50-4938-bb7b-b75f24c02cbc .navbar-brand {
	color: #000000;
	font-family: Open Sans;
	font-size: 24px;
	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_263d38ec-2f50-4938-bb7b-b75f24c02cbc .navbar-brand img {
	max-width: 100%;
}

#cmp_263d38ec-2f50-4938-bb7b-b75f24c02cbc .navbar .navbar-toggler {
	background-color: rgb(236, 88, 88);
	border-radius: 0;
	color: #FFFFFF;
	font-size: 14px;
	letter-spacing: 0.071em;
	padding: 15px;
	text-transform: uppercase;
}

#cmp_263d38ec-2f50-4938-bb7b-b75f24c02cbc .navbar .navbar-toggler:hover,
#cmp_263d38ec-2f50-4938-bb7b-b75f24c02cbc .navbar .navbar-toggler:focus,
#cmp_263d38ec-2f50-4938-bb7b-b75f24c02cbc .navbar .navbar-toggler:active {
	background-color: rgb(238, 152, 65);
	color: #FFFFFF;
}

#cmp_263d38ec-2f50-4938-bb7b-b75f24c02cbc .navbar-nav {
	background-color: rgb(236, 88, 88);
	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_263d38ec-2f50-4938-bb7b-b75f24c02cbc .navbar-nav li {
	padding-top: 10px;
	padding-bottom: 10px;
}

#cmp_263d38ec-2f50-4938-bb7b-b75f24c02cbc .navbar-nav .nav-link {
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 12px;;
	letter-spacing: 0.071em;
	padding: 15px;
	text-align: center;
	text-transform: uppercase;
}

@media (max-width: 767px) {
	#cmp_263d38ec-2f50-4938-bb7b-b75f24c02cbc {
		border-width: 0;
	}
	#cmp_263d38ec-2f50-4938-bb7b-b75f24c02cbc .dropdown-menu {
		background-color: rgb(236, 88, 88);
	}
}

@media (min-width: 768px) {
	#cmp_263d38ec-2f50-4938-bb7b-b75f24c02cbc .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_263d38ec-2f50-4938-bb7b-b75f24c02cbc .navbar-brand {
		padding: 0;
		padding-bottom: 15px;
	}
	#cmp_263d38ec-2f50-4938-bb7b-b75f24c02cbc .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_263d38ec-2f50-4938-bb7b-b75f24c02cbc .navbar-nav {
		background-color: rgb(238, 237, 237);
		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_263d38ec-2f50-4938-bb7b-b75f24c02cbc .navbar-nav li {
		padding: 0;
	}
	#cmp_263d38ec-2f50-4938-bb7b-b75f24c02cbc .navbar-nav .nav-link {
		color: rgb(66, 66, 66);
	}
	#cmp_263d38ec-2f50-4938-bb7b-b75f24c02cbc .navbar a:hover,
	#cmp_263d38ec-2f50-4938-bb7b-b75f24c02cbc .navbar a:focus,
	#cmp_263d38ec-2f50-4938-bb7b-b75f24c02cbc .navbar a:active {
		color: rgb(236, 88, 88);
	}
}

/*
 * components/global/cmp_a6fcc43e-0445-4508-b7a2-7e66b1385ab2/component.css
 */
#cmp_a6fcc43e-0445-4508-b7a2-7e66b1385ab2 {
	background-color: rgb(238, 237, 237);
}

#cmp_a6fcc43e-0445-4508-b7a2-7e66b1385ab2 h1 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 48px;
}

#cmp_a6fcc43e-0445-4508-b7a2-7e66b1385ab2 h2 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 32px;
}

#cmp_a6fcc43e-0445-4508-b7a2-7e66b1385ab2 h3 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 24px;
}

#cmp_a6fcc43e-0445-4508-b7a2-7e66b1385ab2 p {
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}


#cmp_a6fcc43e-0445-4508-b7a2-7e66b1385ab2 .btn {
	background-color: rgb(236, 88, 88);
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_a6fcc43e-0445-4508-b7a2-7e66b1385ab2 .btn:hover {
	background-color: rgb(238, 152, 65);
	color: #FFFFFF;
}

#cmp_a6fcc43e-0445-4508-b7a2-7e66b1385ab2 .component-rich-text-with-button__content-row,
#cmp_a6fcc43e-0445-4508-b7a2-7e66b1385ab2 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_a6fcc43e-0445-4508-b7a2-7e66b1385ab2 .component-rich-text-with-button__content-row,
	#cmp_a6fcc43e-0445-4508-b7a2-7e66b1385ab2 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_a6fcc43e-0445-4508-b7a2-7e66b1385ab2 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

#cmp_a6fcc43e-0445-4508-b7a2-7e66b1385ab2 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

#cmp_a6fcc43e-0445-4508-b7a2-7e66b1385ab2  {
	padding-top: 0;
}
/*
 * components/global/cmp_d22dc493-640f-4cd4-9a80-482c9547094c/component.css
 */
#cmp_d22dc493-640f-4cd4-9a80-482c9547094c.footer {
	background-color: rgb(74, 74, 74);
	color: #FFFFFF;
	font-family: Open Sans;
	padding: 25px 0;

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

#cmp_d22dc493-640f-4cd4-9a80-482c9547094c.footer p {
	color: #FFFFFF;
}

#cmp_d22dc493-640f-4cd4-9a80-482c9547094c .footer-subscribe {
	padding: 15px 0;
}

#cmp_d22dc493-640f-4cd4-9a80-482c9547094c .footer-subscribe .btn {
	border: 1px solid #FFFFFF;
}

#cmp_d22dc493-640f-4cd4-9a80-482c9547094c .footer-social {
	padding: 15px 0;
}

#cmp_d22dc493-640f-4cd4-9a80-482c9547094c .footer-social a {
	display: inline-block;
	padding: 0 5px;
}

#cmp_d22dc493-640f-4cd4-9a80-482c9547094c .footer-social svg path {
	fill: rgb(147, 171, 211);
}

#cmp_d22dc493-640f-4cd4-9a80-482c9547094c .footer-social a:hover svg path,
#cmp_d22dc493-640f-4cd4-9a80-482c9547094c .footer-social a:focus svg path,
#cmp_d22dc493-640f-4cd4-9a80-482c9547094c .footer-social a:active svg path {
	fill: rgb(238, 152, 65);
}

#cmp_d22dc493-640f-4cd4-9a80-482c9547094c .footer-contact {
	padding: 15px 0;

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

#cmp_d22dc493-640f-4cd4-9a80-482c9547094c .footer-contact p {
	margin: 0 0 0.5em 0;
}

@media (min-width: 768px) {
	#cmp_d22dc493-640f-4cd4-9a80-482c9547094c.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/howitworks/cmp_2f8d8e83-7d0b-4342-9bfe-0c1ea1bd4b3f/component.css
 */
#cmp_2f8d8e83-7d0b-4342-9bfe-0c1ea1bd4b3f {
	background-color: rgb(238, 237, 237);
}

#cmp_2f8d8e83-7d0b-4342-9bfe-0c1ea1bd4b3f h1 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 48px;
}

#cmp_2f8d8e83-7d0b-4342-9bfe-0c1ea1bd4b3f h2 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 32px;
}

#cmp_2f8d8e83-7d0b-4342-9bfe-0c1ea1bd4b3f h3 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 24px;
}

#cmp_2f8d8e83-7d0b-4342-9bfe-0c1ea1bd4b3f p {
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}


#cmp_2f8d8e83-7d0b-4342-9bfe-0c1ea1bd4b3f .btn {
	background-color: rgb(236, 88, 88);
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_2f8d8e83-7d0b-4342-9bfe-0c1ea1bd4b3f .btn:hover {
	background-color: rgb(238, 152, 65);
	color: #FFFFFF;
}

#cmp_2f8d8e83-7d0b-4342-9bfe-0c1ea1bd4b3f .component-rich-text-with-button__content-row,
#cmp_2f8d8e83-7d0b-4342-9bfe-0c1ea1bd4b3f .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_2f8d8e83-7d0b-4342-9bfe-0c1ea1bd4b3f .component-rich-text-with-button__content-row,
	#cmp_2f8d8e83-7d0b-4342-9bfe-0c1ea1bd4b3f .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_2f8d8e83-7d0b-4342-9bfe-0c1ea1bd4b3f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

#cmp_2f8d8e83-7d0b-4342-9bfe-0c1ea1bd4b3f ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

/*
 * components/howitworks/cmp_7093cbdd-264d-47da-9220-77771e4696a5/component.css
 */
#cmp_7093cbdd-264d-47da-9220-77771e4696a5 {
	background-color: rgb(232, 228, 226);
}

#cmp_7093cbdd-264d-47da-9220-77771e4696a5 h1 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 48px;
}

#cmp_7093cbdd-264d-47da-9220-77771e4696a5 h2 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 32px;
}

#cmp_7093cbdd-264d-47da-9220-77771e4696a5 h3 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 24px;
}

#cmp_7093cbdd-264d-47da-9220-77771e4696a5 p {
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}


#cmp_7093cbdd-264d-47da-9220-77771e4696a5 .btn {
	background-color: rgb(236, 88, 88);
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_7093cbdd-264d-47da-9220-77771e4696a5 .btn:hover {
	background-color: rgb(238, 152, 65);
	color: #FFFFFF;
}

#cmp_7093cbdd-264d-47da-9220-77771e4696a5 .component-rich-text-with-button__content-row,
#cmp_7093cbdd-264d-47da-9220-77771e4696a5 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_7093cbdd-264d-47da-9220-77771e4696a5 .component-rich-text-with-button__content-row,
	#cmp_7093cbdd-264d-47da-9220-77771e4696a5 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_7093cbdd-264d-47da-9220-77771e4696a5 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

#cmp_7093cbdd-264d-47da-9220-77771e4696a5 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

/*
 * components/howitworks/cmp_94de2459-0359-44ed-9e6b-0c8bcecbdd2e/component.css
 */
#cmp_94de2459-0359-44ed-9e6b-0c8bcecbdd2e {
	background-color: rgb(255, 255, 255);
}

#cmp_94de2459-0359-44ed-9e6b-0c8bcecbdd2e .content-row {
	margin: 0;

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

#cmp_94de2459-0359-44ed-9e6b-0c8bcecbdd2e .content {
	background-color: rgb(147, 171, 211);
	border: 5px solid rgb(147, 171, 211);
	margin: 15px 0;
	padding: 25px;

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

#cmp_94de2459-0359-44ed-9e6b-0c8bcecbdd2e .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_94de2459-0359-44ed-9e6b-0c8bcecbdd2e h1 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 48px;
}

#cmp_94de2459-0359-44ed-9e6b-0c8bcecbdd2e h2 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 32px;
}

#cmp_94de2459-0359-44ed-9e6b-0c8bcecbdd2e h3 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 24px;
}

#cmp_94de2459-0359-44ed-9e6b-0c8bcecbdd2e p {
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

@media (min-width: 768px) {
	#cmp_94de2459-0359-44ed-9e6b-0c8bcecbdd2e .content {
		margin: 15px;
	}
}
/*
 * components/howitworks/cmp_9ec98cc3-f448-4755-af19-f4386d8fb5c5/component.css
 */
#cmp_9ec98cc3-f448-4755-af19-f4386d8fb5c5 {
	background-color: rgb(238, 237, 237);
}

#cmp_9ec98cc3-f448-4755-af19-f4386d8fb5c5 h1 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 48px;
}

#cmp_9ec98cc3-f448-4755-af19-f4386d8fb5c5 h2 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 32px;
}

#cmp_9ec98cc3-f448-4755-af19-f4386d8fb5c5 h3 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 24px;
}

#cmp_9ec98cc3-f448-4755-af19-f4386d8fb5c5 p {
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

@media (min-width: 768px) {
	#cmp_9ec98cc3-f448-4755-af19-f4386d8fb5c5 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_9ec98cc3-f448-4755-af19-f4386d8fb5c5 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

#cmp_9ec98cc3-f448-4755-af19-f4386d8fb5c5 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

/*
 * components/howitworks/cmp_de07fabe-2cb6-43dc-859d-0cb5e6039dc6/component.css
 */
#cmp_de07fabe-2cb6-43dc-859d-0cb5e6039dc6 {
	background-color: rgb(232, 228, 226);
}

#cmp_de07fabe-2cb6-43dc-859d-0cb5e6039dc6 h1 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 48px;
}

#cmp_de07fabe-2cb6-43dc-859d-0cb5e6039dc6 h2 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 32px;
}

#cmp_de07fabe-2cb6-43dc-859d-0cb5e6039dc6 h3 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 24px;
}

#cmp_de07fabe-2cb6-43dc-859d-0cb5e6039dc6 p {
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

@media (min-width: 768px) {
	#cmp_de07fabe-2cb6-43dc-859d-0cb5e6039dc6 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_de07fabe-2cb6-43dc-859d-0cb5e6039dc6 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

#cmp_de07fabe-2cb6-43dc-859d-0cb5e6039dc6 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

/*
 * components/index/cmp_08edf578-9e03-46c6-95e7-226ce9bf2b78/component.css
 */
#cmp_08edf578-9e03-46c6-95e7-226ce9bf2b78 {
	background-color: rgb(232, 228, 226);
}

#cmp_08edf578-9e03-46c6-95e7-226ce9bf2b78 h1 {
	color: rgb(236, 88, 88);
	font-family: Carter One;
	font-size: 48px;
}

#cmp_08edf578-9e03-46c6-95e7-226ce9bf2b78 h2 {
	color: rgb(236, 88, 88);
	font-family: Carter One;
	font-size: 48px;
}

#cmp_08edf578-9e03-46c6-95e7-226ce9bf2b78 h3 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 24px;
}

#cmp_08edf578-9e03-46c6-95e7-226ce9bf2b78 p {
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

@media (min-width: 768px) {
	#cmp_08edf578-9e03-46c6-95e7-226ce9bf2b78 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_08edf578-9e03-46c6-95e7-226ce9bf2b78 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

#cmp_08edf578-9e03-46c6-95e7-226ce9bf2b78 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

/*
 * components/index/cmp_4917d391-3fc3-45e8-aa3e-a388646826a0/component.css
 */
#cmp_4917d391-3fc3-45e8-aa3e-a388646826a0 {
	background-color: rgb(232, 228, 226);
}

#cmp_4917d391-3fc3-45e8-aa3e-a388646826a0 .content-row {
	margin: 0;

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

#cmp_4917d391-3fc3-45e8-aa3e-a388646826a0 .content {
	background-color: rgb(232, 228, 226);
	border: 5px solid rgb(232, 228, 226);
	margin: 15px 0;
	padding: 25px;

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

#cmp_4917d391-3fc3-45e8-aa3e-a388646826a0 .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_4917d391-3fc3-45e8-aa3e-a388646826a0 h1 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 48px;
}

#cmp_4917d391-3fc3-45e8-aa3e-a388646826a0 h2 {
	color: rgb(236, 88, 88);
	font-family: Carter One;
	font-size: 32px;
}

#cmp_4917d391-3fc3-45e8-aa3e-a388646826a0 h3 {
	color: rgb(236, 88, 88);
	font-family: Carter One;
	font-size: 24px;
}

#cmp_4917d391-3fc3-45e8-aa3e-a388646826a0 p {
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

@media (min-width: 768px) {
	#cmp_4917d391-3fc3-45e8-aa3e-a388646826a0 .content {
		margin: 15px;
	}
}
#cmp_4917d391-3fc3-45e8-aa3e-a388646826a0  {
	padding-top: 0;
}
/*
 * components/index/cmp_5c809193-352f-46f4-9b5b-170b7c8f6a2a/component.css
 */
#cmp_5c809193-352f-46f4-9b5b-170b7c8f6a2a {
	padding: 0;

}

#cmp_5c809193-352f-46f4-9b5b-170b7c8f6a2a .hero-content {
	background-color: rgb(238, 237, 237);
	padding: 20px;
    text-align: left;
}

.hero-content div {
  	padding-left: 5px;
}

#cmp_5c809193-352f-46f4-9b5b-170b7c8f6a2a .hero-content h1 {
	color: rgb(236, 88, 88);
	font-family: Carter One;
	font-size: 60px;
}

#cmp_5c809193-352f-46f4-9b5b-170b7c8f6a2a .hero-content h2 {
	color: #FFFFFF;
	font-family: Carter One;
	font-size: 32px;
}

#cmp_5c809193-352f-46f4-9b5b-170b7c8f6a2a .hero-content h3 {
	color: #FFFFFF;
	font-family: Carter One;
	font-size: 24px;
}

#cmp_5c809193-352f-46f4-9b5b-170b7c8f6a2a .hero-content p {
	/*color: #FFFFFF;*/
    color: black;
	font-family: Open Sans;
	font-size: 18px;
}

#cmp_5c809193-352f-46f4-9b5b-170b7c8f6a2a .hero-content .btn {
	background-color: rgb(236, 88, 88);
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_5c809193-352f-46f4-9b5b-170b7c8f6a2a .hero-content .btn:hover {
	background-color: rgb(238, 152, 65);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_5c809193-352f-46f4-9b5b-170b7c8f6a2a .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_5c809193-352f-46f4-9b5b-170b7c8f6a2a .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_5c809193-352f-46f4-9b5b-170b7c8f6a2a .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_5c809193-352f-46f4-9b5b-170b7c8f6a2a .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_5c809193-352f-46f4-9b5b-170b7c8f6a2a .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_5c809193-352f-46f4-9b5b-170b7c8f6a2a .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_5c809193-352f-46f4-9b5b-170b7c8f6a2a .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/index/cmp_69db5956-bcc1-4d43-8d79-cbd91f20d1ac/component.css
 */
#cmp_69db5956-bcc1-4d43-8d79-cbd91f20d1ac {
	padding: 0;
}

#cmp_69db5956-bcc1-4d43-8d79-cbd91f20d1ac .hero-content {
	background-color: rgba(155, 155, 155, 0);
	padding: 20px;
}

#cmp_69db5956-bcc1-4d43-8d79-cbd91f20d1ac .hero-content h1 {
	color: rgb(236, 88, 88);
	font-family: Carter One;
	font-size: 60px;
}

#cmp_69db5956-bcc1-4d43-8d79-cbd91f20d1ac .hero-content h2 {
	color: rgb(236, 88, 88);
	font-family: Carter One;
	font-size: 32px;
}

#cmp_69db5956-bcc1-4d43-8d79-cbd91f20d1ac .hero-content h3 {
	color: rgb(236, 88, 88);
	font-family: Carter One;
	font-size: 24px;
}

#cmp_69db5956-bcc1-4d43-8d79-cbd91f20d1ac .hero-content p {
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 18px;
}

#cmp_69db5956-bcc1-4d43-8d79-cbd91f20d1ac .hero-content .btn {
	background-color: rgb(236, 88, 88);
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_69db5956-bcc1-4d43-8d79-cbd91f20d1ac .hero-content .btn:hover {
	background-color: rgb(238, 152, 65);
	color: #FFFFFF;
}


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

@media(min-width: 768px) {
	#cmp_69db5956-bcc1-4d43-8d79-cbd91f20d1ac .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_69db5956-bcc1-4d43-8d79-cbd91f20d1ac .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_69db5956-bcc1-4d43-8d79-cbd91f20d1ac .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_69db5956-bcc1-4d43-8d79-cbd91f20d1ac .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_69db5956-bcc1-4d43-8d79-cbd91f20d1ac .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_69db5956-bcc1-4d43-8d79-cbd91f20d1ac .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/index/cmp_8fcbdad0-b14e-49f0-bf8b-7fc7192756e4/component.css
 */
#cmp_8fcbdad0-b14e-49f0-bf8b-7fc7192756e4 {
	background-color: rgb(232, 228, 226);
}

#cmp_8fcbdad0-b14e-49f0-bf8b-7fc7192756e4 h1 {
	color: rgb(236, 88, 88);
	font-family: Carter One;
	font-size: 48px;
}

#cmp_8fcbdad0-b14e-49f0-bf8b-7fc7192756e4 h2 {
	color: rgb(147, 171, 211);
	font-family: Carter One;
	font-size: 32px;
}

#cmp_8fcbdad0-b14e-49f0-bf8b-7fc7192756e4 h3 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 24px;
}

#cmp_8fcbdad0-b14e-49f0-bf8b-7fc7192756e4 p {
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}


#cmp_8fcbdad0-b14e-49f0-bf8b-7fc7192756e4 .btn {
	background-color: rgb(236, 88, 88);
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_8fcbdad0-b14e-49f0-bf8b-7fc7192756e4 .btn:hover {
	background-color: rgb(238, 152, 65);
	color: #FFFFFF;
}

#cmp_8fcbdad0-b14e-49f0-bf8b-7fc7192756e4 .component-rich-text-with-button__content-row,
#cmp_8fcbdad0-b14e-49f0-bf8b-7fc7192756e4 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_8fcbdad0-b14e-49f0-bf8b-7fc7192756e4 .component-rich-text-with-button__content-row,
	#cmp_8fcbdad0-b14e-49f0-bf8b-7fc7192756e4 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_8fcbdad0-b14e-49f0-bf8b-7fc7192756e4 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

#cmp_8fcbdad0-b14e-49f0-bf8b-7fc7192756e4 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

/*
 * components/index/cmp_c5064f64-7cb3-4144-b638-e34ebe099dcf/component.css
 */
#cmp_c5064f64-7cb3-4144-b638-e34ebe099dcf {
	background-color: rgb(232, 228, 226);
}

#cmp_c5064f64-7cb3-4144-b638-e34ebe099dcf h1 {
	color: rgb(236, 88, 88);
	font-family: Carter One;
	font-size: 48px;
}

#cmp_c5064f64-7cb3-4144-b638-e34ebe099dcf h2 {
	color: rgb(236, 88, 88);
	font-family: Carter One;
	font-size: 32px;
}

#cmp_c5064f64-7cb3-4144-b638-e34ebe099dcf h3 {
	color: rgb(236, 88, 88);
	font-family: Carter One;
	font-size: 24px;
}

#cmp_c5064f64-7cb3-4144-b638-e34ebe099dcf p {
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

@media (min-width: 768px) {
	#cmp_c5064f64-7cb3-4144-b638-e34ebe099dcf .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_c5064f64-7cb3-4144-b638-e34ebe099dcf ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

#cmp_c5064f64-7cb3-4144-b638-e34ebe099dcf ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

#cmp_c5064f64-7cb3-4144-b638-e34ebe099dcf  {
	padding-bottom: 0;
}
/*
 * components/shop/listing/cmp_5c804e61-18d6-4c7b-b003-482b3f19db88/component.css
 */
#cmp_5c804e61-18d6-4c7b-b003-482b3f19db88 {
	background-color: rgb(238, 237, 237);
}

#cmp_5c804e61-18d6-4c7b-b003-482b3f19db88 h1 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 48px;
}

#cmp_5c804e61-18d6-4c7b-b003-482b3f19db88 h2 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 32px;
}

#cmp_5c804e61-18d6-4c7b-b003-482b3f19db88 h3 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 24px;
}

#cmp_5c804e61-18d6-4c7b-b003-482b3f19db88 p {
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

@media (min-width: 768px) {
	#cmp_5c804e61-18d6-4c7b-b003-482b3f19db88 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_5c804e61-18d6-4c7b-b003-482b3f19db88 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

#cmp_5c804e61-18d6-4c7b-b003-482b3f19db88 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

#cmp_5c804e61-18d6-4c7b-b003-482b3f19db88  {
	padding-bottom: 20px;
}
/*
 * components/shop/listing/cmp_8138ecbf-b60f-4b51-9527-7e458d2d6a15/component.css
 */
#cmp_8138ecbf-b60f-4b51-9527-7e458d2d6a15 {
	padding: 20px 0;
}

#cmp_8138ecbf-b60f-4b51-9527-7e458d2d6a15 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_b8f22b1e-3d8b-4e23-85f9-cfe1e42dcef0/component.css
 */
#cmp_b8f22b1e-3d8b-4e23-85f9-cfe1e42dcef0 {
	border-bottom: 1px solid #E1E1E1;
	padding: 20px 0 40px 0;
}

#cmp_b8f22b1e-3d8b-4e23-85f9-cfe1e42dcef0 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_e0ac74af-b1c4-42d1-98d3-4ce003321263/component.css
 */
.shop-listing-item {
	color: rgb(66, 66, 66);
}

.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/product/cmp_64e18928-606e-41fc-8a29-93a9b93c0ce1/component.css
 */
#cmp_64e18928-606e-41fc-8a29-93a9b93c0ce1 .shop-product select {
	width: auto;
}

#cmp_64e18928-606e-41fc-8a29-93a9b93c0ce1 .shop-product__name {
	margin-bottom: 20px;
}

#cmp_64e18928-606e-41fc-8a29-93a9b93c0ce1 .shop-product__price {
	margin-bottom: 20px;
}

#cmp_64e18928-606e-41fc-8a29-93a9b93c0ce1 .shop-product__add-to-cart {
	margin-bottom: 20px;
}

#cmp_64e18928-606e-41fc-8a29-93a9b93c0ce1 .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin-bottom: 40px;
}

#cmp_64e18928-606e-41fc-8a29-93a9b93c0ce1 .shop-product__review-share-desktop .rating,
#cmp_64e18928-606e-41fc-8a29-93a9b93c0ce1 .shop-product__review-share-desktop .sharing {
	padding-top: 10px;
}

#cmp_64e18928-606e-41fc-8a29-93a9b93c0ce1 .shop-product__review-share-desktop h3,
#cmp_64e18928-606e-41fc-8a29-93a9b93c0ce1 .shop-product__review-share-mobile h3 {
	margin: 10px 0;
}
#cmp_64e18928-606e-41fc-8a29-93a9b93c0ce1  {
	padding-top: 0;
}
/*
 * components/shop/product/cmp_6e150072-6159-4993-a2e9-3e45b7ddd59e/component.css
 */
#cmp_6e150072-6159-4993-a2e9-3e45b7ddd59e.shop-product-header {
	padding: 60px 0 20px 0;
}

/*
 * components/sold_out/cmp_117350ce-7a88-45d5-9d7b-411e5bc46ca9/component.css
 */
#cmp_117350ce-7a88-45d5-9d7b-411e5bc46ca9 {
	background-color: rgb(238, 237, 237);
}

#cmp_117350ce-7a88-45d5-9d7b-411e5bc46ca9 h1 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 48px;
}

#cmp_117350ce-7a88-45d5-9d7b-411e5bc46ca9 h2 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 32px;
}

#cmp_117350ce-7a88-45d5-9d7b-411e5bc46ca9 h3 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 24px;
}

#cmp_117350ce-7a88-45d5-9d7b-411e5bc46ca9 p {
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}


#cmp_117350ce-7a88-45d5-9d7b-411e5bc46ca9 .btn {
	background-color: rgb(236, 88, 88);
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_117350ce-7a88-45d5-9d7b-411e5bc46ca9 .btn:hover {
	background-color: rgb(238, 152, 65);
	color: #FFFFFF;
}

#cmp_117350ce-7a88-45d5-9d7b-411e5bc46ca9 .component-rich-text-with-button__content-row,
#cmp_117350ce-7a88-45d5-9d7b-411e5bc46ca9 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_117350ce-7a88-45d5-9d7b-411e5bc46ca9 .component-rich-text-with-button__content-row,
	#cmp_117350ce-7a88-45d5-9d7b-411e5bc46ca9 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_117350ce-7a88-45d5-9d7b-411e5bc46ca9 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

#cmp_117350ce-7a88-45d5-9d7b-411e5bc46ca9 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

#cmp_117350ce-7a88-45d5-9d7b-411e5bc46ca9  {
	padding-top: 0;
}
/*
 * components/sold_out/cmp_d5cff726-c531-44f8-8e1d-b12fc78de571/component.css
 */
#cmp_d5cff726-c531-44f8-8e1d-b12fc78de571 img {
	max-width: 100%;
}

/*
 * components/subscribe/cmp_080f8cb3-da5b-4a0f-b7d2-3c5a62e7c7d7/component.css
 */
#cmp_080f8cb3-da5b-4a0f-b7d2-3c5a62e7c7d7 {
	background-color: #E8E4E2;
}

#cmp_080f8cb3-da5b-4a0f-b7d2-3c5a62e7c7d7 h1 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 48px;
}

#cmp_080f8cb3-da5b-4a0f-b7d2-3c5a62e7c7d7 h2 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 32px;
}

#cmp_080f8cb3-da5b-4a0f-b7d2-3c5a62e7c7d7 h3 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 24px;
}

#cmp_080f8cb3-da5b-4a0f-b7d2-3c5a62e7c7d7 p {
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

@media (min-width: 768px) {
	#cmp_080f8cb3-da5b-4a0f-b7d2-3c5a62e7c7d7 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_080f8cb3-da5b-4a0f-b7d2-3c5a62e7c7d7 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

#cmp_080f8cb3-da5b-4a0f-b7d2-3c5a62e7c7d7 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

#cmp_080f8cb3-da5b-4a0f-b7d2-3c5a62e7c7d7  {
	padding-bottom: 0;
}
/*
 * components/subscribe/cmp_1a87b18d-f3fa-4c3b-b138-e3d2e7e6d44c/component.css
 */
#cmp_1a87b18d-f3fa-4c3b-b138-e3d2e7e6d44c {
	background-color: #E8E4E2;
	padding-bottom: 0;
}

#cmp_1a87b18d-f3fa-4c3b-b138-e3d2e7e6d44c .progress-bar-container {
	position: relative;
}

#cmp_1a87b18d-f3fa-4c3b-b138-e3d2e7e6d44c .progress-bar-filler {
	background: rgb(147, 171, 211);
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_1a87b18d-f3fa-4c3b-b138-e3d2e7e6d44c .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_1a87b18d-f3fa-4c3b-b138-e3d2e7e6d44c .progress-bar .step {
	color: rgb(66, 66, 66);

	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_1a87b18d-f3fa-4c3b-b138-e3d2e7e6d44c .progress-bar .step .point {
	background-color: #E8E4E2;
	border: 4px solid rgb(147, 171, 211);
	border-radius: 10px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_1a87b18d-f3fa-4c3b-b138-e3d2e7e6d44c .progress-bar .step.active .point {
	background-color: rgb(236, 88, 88);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_1a87b18d-f3fa-4c3b-b138-e3d2e7e6d44c .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe/cmp_623c50ce-14ae-4f04-9eb8-a9618e3f90e8/component.css
 */
#cmp_623c50ce-14ae-4f04-9eb8-a9618e3f90e8 {
	background-color: #E8E4E2;
}

#cmp_623c50ce-14ae-4f04-9eb8-a9618e3f90e8 h3 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 24px;
}

#cmp_623c50ce-14ae-4f04-9eb8-a9618e3f90e8 p {
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

#cmp_623c50ce-14ae-4f04-9eb8-a9618e3f90e8 .sf-item {
	background-color: rgb(238, 237, 237);
}
#cmp_623c50ce-14ae-4f04-9eb8-a9618e3f90e8  {
	padding-top: 0;
}
/*
 * components/subscribe/cmp_661520e0-8e46-48dd-aa46-22cf4ed66455/component.css
 */
#cmp_661520e0-8e46-48dd-aa46-22cf4ed66455 {
	background-color: #FFFFFF;
}

#cmp_661520e0-8e46-48dd-aa46-22cf4ed66455 .content-row {
	margin: 0;

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

#cmp_661520e0-8e46-48dd-aa46-22cf4ed66455 .content {
	background-color: rgb(147, 171, 211);
	border: 5px solid rgb(147, 171, 211);
	margin: 15px 0;
	padding: 25px;

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

#cmp_661520e0-8e46-48dd-aa46-22cf4ed66455 .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_661520e0-8e46-48dd-aa46-22cf4ed66455 h1 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 48px;
}

#cmp_661520e0-8e46-48dd-aa46-22cf4ed66455 h2 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 32px;
}

#cmp_661520e0-8e46-48dd-aa46-22cf4ed66455 h3 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 24px;
}

#cmp_661520e0-8e46-48dd-aa46-22cf4ed66455 p {
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

@media (min-width: 768px) {
	#cmp_661520e0-8e46-48dd-aa46-22cf4ed66455 .content {
		margin: 15px;
	}
}
#cmp_661520e0-8e46-48dd-aa46-22cf4ed66455  {
	padding-top: 0;
}
/*
 * components/subscribe/cmp_d3a1d8b9-dfa9-41c2-b4f1-1dc6d1289f4b/component.css
 */
#cmp_d3a1d8b9-dfa9-41c2-b4f1-1dc6d1289f4b {
	background-color: #FFFFFF;
}

#cmp_d3a1d8b9-dfa9-41c2-b4f1-1dc6d1289f4b h1 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 48px;
}

#cmp_d3a1d8b9-dfa9-41c2-b4f1-1dc6d1289f4b h2 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 32px;
}

#cmp_d3a1d8b9-dfa9-41c2-b4f1-1dc6d1289f4b h3 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 24px;
}

#cmp_d3a1d8b9-dfa9-41c2-b4f1-1dc6d1289f4b p {
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

@media (min-width: 768px) {
	#cmp_d3a1d8b9-dfa9-41c2-b4f1-1dc6d1289f4b .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_d3a1d8b9-dfa9-41c2-b4f1-1dc6d1289f4b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

#cmp_d3a1d8b9-dfa9-41c2-b4f1-1dc6d1289f4b ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

#cmp_d3a1d8b9-dfa9-41c2-b4f1-1dc6d1289f4b  {
	padding-bottom: 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: ;

	color: ;
	background-color: ;
}

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

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

	color: ;
	background-color: ;
}

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

@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_0b000b2f-eb1b-4a7e-80b0-2a8466d70e07/component.css
 */
#cmp_0b000b2f-eb1b-4a7e-80b0-2a8466d70e07 {
	background-color: #E8E4E2;
	padding-bottom: 0;
}

#cmp_0b000b2f-eb1b-4a7e-80b0-2a8466d70e07 h1 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 48px;
}

#cmp_0b000b2f-eb1b-4a7e-80b0-2a8466d70e07 p {
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}
#cmp_0b000b2f-eb1b-4a7e-80b0-2a8466d70e07  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_3221df9a-d059-476d-9a13-d7d47e89e099/component.css
 */
#cmp_3221df9a-d059-476d-9a13-d7d47e89e099 {
	background-color: #E8E4E2;
}

#cmp_3221df9a-d059-476d-9a13-d7d47e89e099 h3 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 24px;
}

#cmp_3221df9a-d059-476d-9a13-d7d47e89e099 p {
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

#cmp_3221df9a-d059-476d-9a13-d7d47e89e099  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_346fe223-0cba-473a-8644-19d20aed147e/component.css
 */
#cmp_346fe223-0cba-473a-8644-19d20aed147e {
	background-color: rgb(232, 228, 226);
}

#cmp_346fe223-0cba-473a-8644-19d20aed147e h1 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 48px;
}

#cmp_346fe223-0cba-473a-8644-19d20aed147e h2 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 32px;
}

#cmp_346fe223-0cba-473a-8644-19d20aed147e h3 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 24px;
}

#cmp_346fe223-0cba-473a-8644-19d20aed147e p {
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

@media (min-width: 768px) {
	#cmp_346fe223-0cba-473a-8644-19d20aed147e .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_346fe223-0cba-473a-8644-19d20aed147e ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

#cmp_346fe223-0cba-473a-8644-19d20aed147e ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

/*
 * components/subscribe_flow/survey_step/cmp_3740c5af-0000-4741-a693-b5f0668bb673/component.css
 */
#cmp_3740c5af-0000-4741-a693-b5f0668bb673 {
	background-color: #E8E4E2;
	padding-bottom: 0;
}

#cmp_3740c5af-0000-4741-a693-b5f0668bb673 .progress-bar-container {
	position: relative;
}

#cmp_3740c5af-0000-4741-a693-b5f0668bb673 .progress-bar-filler {
	background: rgb(147, 171, 211);
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_3740c5af-0000-4741-a693-b5f0668bb673 .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_3740c5af-0000-4741-a693-b5f0668bb673 .progress-bar .step {
	color: rgb(66, 66, 66);

	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_3740c5af-0000-4741-a693-b5f0668bb673 .progress-bar .step .point {
	background-color: #E8E4E2;
	border: 4px solid rgb(147, 171, 211);
	border-radius: 10px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_3740c5af-0000-4741-a693-b5f0668bb673 .progress-bar .step.active .point {
	background-color: rgb(236, 88, 88);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_3740c5af-0000-4741-a693-b5f0668bb673 .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe_flow/terms_step/cmp_3040d859-c01f-4207-929e-366ecce72f51/component.css
 */
#cmp_3040d859-c01f-4207-929e-366ecce72f51 {
	background-color: #E8E4E2;
	padding-bottom: 0;
}

#cmp_3040d859-c01f-4207-929e-366ecce72f51 h1 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 48px;
}

#cmp_3040d859-c01f-4207-929e-366ecce72f51 p {
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}
#cmp_3040d859-c01f-4207-929e-366ecce72f51  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/terms_step/cmp_dd0023e2-ab1f-44b9-854c-88149bb3ebf1/component.css
 */
#cmp_dd0023e2-ab1f-44b9-854c-88149bb3ebf1 {
	background-color: #E8E4E2;
	padding-bottom: 0;
}

#cmp_dd0023e2-ab1f-44b9-854c-88149bb3ebf1 .progress-bar-container {
	position: relative;
}

#cmp_dd0023e2-ab1f-44b9-854c-88149bb3ebf1 .progress-bar-filler {
	background: rgb(147, 171, 211);
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_dd0023e2-ab1f-44b9-854c-88149bb3ebf1 .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_dd0023e2-ab1f-44b9-854c-88149bb3ebf1 .progress-bar .step {
	color: rgb(66, 66, 66);

	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_dd0023e2-ab1f-44b9-854c-88149bb3ebf1 .progress-bar .step .point {
	background-color: #E8E4E2;
	border: 4px solid rgb(147, 171, 211);
	border-radius: 10px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_dd0023e2-ab1f-44b9-854c-88149bb3ebf1 .progress-bar .step.active .point {
	background-color: rgb(236, 88, 88);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_dd0023e2-ab1f-44b9-854c-88149bb3ebf1 .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe_flow/terms_step/cmp_e2fdbc99-78d1-49d8-b2cb-5dcb1618dff0/component.css
 */
#cmp_e2fdbc99-78d1-49d8-b2cb-5dcb1618dff0 {
	background-color: rgb(232, 228, 226);
}

#cmp_e2fdbc99-78d1-49d8-b2cb-5dcb1618dff0 h1 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 48px;
}

#cmp_e2fdbc99-78d1-49d8-b2cb-5dcb1618dff0 h2 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 32px;
}

#cmp_e2fdbc99-78d1-49d8-b2cb-5dcb1618dff0 h3 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 24px;
}

#cmp_e2fdbc99-78d1-49d8-b2cb-5dcb1618dff0 p {
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

@media (min-width: 768px) {
	#cmp_e2fdbc99-78d1-49d8-b2cb-5dcb1618dff0 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_e2fdbc99-78d1-49d8-b2cb-5dcb1618dff0 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

#cmp_e2fdbc99-78d1-49d8-b2cb-5dcb1618dff0 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

/*
 * components/subscribe_flow/terms_step/cmp_f298ac09-5d0e-4ac3-9291-5bca2de9247e/component.css
 */
#cmp_f298ac09-5d0e-4ac3-9291-5bca2de9247e {
	background-color: #E8E4E2;
}

#cmp_f298ac09-5d0e-4ac3-9291-5bca2de9247e h2 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 24px;
}

#cmp_f298ac09-5d0e-4ac3-9291-5bca2de9247e h3 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 32px;
}

#cmp_f298ac09-5d0e-4ac3-9291-5bca2de9247e p {
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

#cmp_f298ac09-5d0e-4ac3-9291-5bca2de9247e .sf-item {
	background-color: rgb(232, 228, 226);
}
#cmp_f298ac09-5d0e-4ac3-9291-5bca2de9247e  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_688d990e-f9bb-4037-8f8c-7c5fafd07fd5/component.css
 */
#cmp_688d990e-f9bb-4037-8f8c-7c5fafd07fd5 {
	background-color: #E8E4E2;
}

#cmp_688d990e-f9bb-4037-8f8c-7c5fafd07fd5 h3 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 24px;
}

#cmp_688d990e-f9bb-4037-8f8c-7c5fafd07fd5 p {
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

#cmp_688d990e-f9bb-4037-8f8c-7c5fafd07fd5 .sf-item {
	background-color: rgb(232, 228, 226);
}
#cmp_688d990e-f9bb-4037-8f8c-7c5fafd07fd5  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_adcda7a8-be57-4269-897d-e002ca453e21/component.css
 */
#cmp_adcda7a8-be57-4269-897d-e002ca453e21 {
	background-color: rgb(255, 255, 255);
	padding-bottom: 0;
}

#cmp_adcda7a8-be57-4269-897d-e002ca453e21 .progress-bar-container {
	position: relative;
}

#cmp_adcda7a8-be57-4269-897d-e002ca453e21 .progress-bar-filler {
	background: rgb(155, 155, 155);
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_adcda7a8-be57-4269-897d-e002ca453e21 .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_adcda7a8-be57-4269-897d-e002ca453e21 .progress-bar .step {
	color: rgb(66, 66, 66);

	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_adcda7a8-be57-4269-897d-e002ca453e21 .progress-bar .step .point {
	background-color: rgb(255, 255, 255);
	border: 4px solid rgb(155, 155, 155);
	border-radius: 10px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_adcda7a8-be57-4269-897d-e002ca453e21 .progress-bar .step.active .point {
	background-color: rgb(236, 88, 88);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_adcda7a8-be57-4269-897d-e002ca453e21 .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe_flow/variant_step/cmp_f8ceb079-6295-4163-9c3e-f3395202ef9e/component.css
 */
#cmp_f8ceb079-6295-4163-9c3e-f3395202ef9e {
	background-color: rgb(255, 255, 255);
	padding-bottom: 0;
}

#cmp_f8ceb079-6295-4163-9c3e-f3395202ef9e h1 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 48px;
}

#cmp_f8ceb079-6295-4163-9c3e-f3395202ef9e p {
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}
#cmp_f8ceb079-6295-4163-9c3e-f3395202ef9e  {
	padding-bottom: 0;
}
/*
 * components/view-cart/cmp_1ff8e730-857c-4c85-b030-a0879f2ed2cc/component.css
 */
#cmp_1ff8e730-857c-4c85-b030-a0879f2ed2cc {
	background-color: rgb(238, 237, 237);
}

#cmp_1ff8e730-857c-4c85-b030-a0879f2ed2cc h1 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 48px;
}

#cmp_1ff8e730-857c-4c85-b030-a0879f2ed2cc h2 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 32px;
}

#cmp_1ff8e730-857c-4c85-b030-a0879f2ed2cc h3 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 24px;
}

#cmp_1ff8e730-857c-4c85-b030-a0879f2ed2cc p {
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

@media (min-width: 768px) {
	#cmp_1ff8e730-857c-4c85-b030-a0879f2ed2cc .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_1ff8e730-857c-4c85-b030-a0879f2ed2cc ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

#cmp_1ff8e730-857c-4c85-b030-a0879f2ed2cc ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

/*
 * components/view-cart/cmp_b95740c4-0e98-4564-aa46-56cc5d07d642/component.css
 */
#cmp_b95740c4-0e98-4564-aa46-56cc5d07d642 {
	padding: 15px 15px 100px 15px;
}

#cmp_b95740c4-0e98-4564-aa46-56cc5d07d642 .cart-thead {
	border-bottom: 1px solid #E1E1E1;
	padding: 10px 0;
}

#cmp_b95740c4-0e98-4564-aa46-56cc5d07d642 .cart-thead h3 {
	text-transform: uppercase;
}

#cmp_b95740c4-0e98-4564-aa46-56cc5d07d642 .cart-item {
	border: 1px solid #E1E1E1;
	padding: 25px 0;
	position: relative;
}

#cmp_b95740c4-0e98-4564-aa46-56cc5d07d642 .product-main {
	margin: 0 0 15px 0;
}

#cmp_b95740c4-0e98-4564-aa46-56cc5d07d642 .product-label p {
	margin: 0;
}

#cmp_b95740c4-0e98-4564-aa46-56cc5d07d642 .product-label .info {
	color: rgb(208, 2, 27);
	text-align: right;
	text-transform: uppercase;
}

#cmp_b95740c4-0e98-4564-aa46-56cc5d07d642 .product-label .meta {
	color: rgb(66, 66, 66);
	font-size: 18px;
}

#cmp_b95740c4-0e98-4564-aa46-56cc5d07d642 .product-rem-btn {
	position: absolute;
	right: 1%;
	top: 1%;
}

#cmp_b95740c4-0e98-4564-aa46-56cc5d07d642 figure {
	margin: 0 0 15px 0;
}

#cmp_b95740c4-0e98-4564-aa46-56cc5d07d642 .cart-subtotal {
	margin: 50px 0 0 0;
}

#cmp_b95740c4-0e98-4564-aa46-56cc5d07d642 .cart-subtotal h2 {
	margin: 0 0 15px 0;
}

#cmp_b95740c4-0e98-4564-aa46-56cc5d07d642 .cart-subtotal h3 {
	margin: 0 0 25px 0;
	text-transform: uppercase;
}

#cmp_b95740c4-0e98-4564-aa46-56cc5d07d642 .cart-subtotal p {
	margin: 0 0 25px 0;
}

@media (min-width: 768px) {
	#cmp_b95740c4-0e98-4564-aa46-56cc5d07d642 .cart-item {
		border-width: 0 0 1px 0;
	}
	#cmp_b95740c4-0e98-4564-aa46-56cc5d07d642 .product-rem-btn {
		top: 40%;
	}
	#cmp_b95740c4-0e98-4564-aa46-56cc5d07d642 figure {
		margin: 0;
	}
}

/*
 * components/what_kind_of_box/cmp_067dc97a-37f9-4e61-801e-da3daba37e12/component.css
 */
#cmp_067dc97a-37f9-4e61-801e-da3daba37e12 {
	background-color: rgb(238, 237, 237);
}

#cmp_067dc97a-37f9-4e61-801e-da3daba37e12 h1 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 48px;
}

#cmp_067dc97a-37f9-4e61-801e-da3daba37e12 h2 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 32px;
}

#cmp_067dc97a-37f9-4e61-801e-da3daba37e12 h3 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 24px;
}

#cmp_067dc97a-37f9-4e61-801e-da3daba37e12 p {
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}


#cmp_067dc97a-37f9-4e61-801e-da3daba37e12 .btn {
	background-color: rgb(236, 88, 88);
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_067dc97a-37f9-4e61-801e-da3daba37e12 .btn:hover {
	background-color: rgb(238, 152, 65);
	color: #FFFFFF;
}

#cmp_067dc97a-37f9-4e61-801e-da3daba37e12 .component-rich-text-with-button__content-row,
#cmp_067dc97a-37f9-4e61-801e-da3daba37e12 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_067dc97a-37f9-4e61-801e-da3daba37e12 .component-rich-text-with-button__content-row,
	#cmp_067dc97a-37f9-4e61-801e-da3daba37e12 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_067dc97a-37f9-4e61-801e-da3daba37e12 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

#cmp_067dc97a-37f9-4e61-801e-da3daba37e12 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

/*
 * components/what_kind_of_box/cmp_0dfb8bc9-5b4f-4246-9e45-ac6f4718eeef/component.css
 */
#cmp_0dfb8bc9-5b4f-4246-9e45-ac6f4718eeef {
	background-color: rgb(238, 237, 237);
}

#cmp_0dfb8bc9-5b4f-4246-9e45-ac6f4718eeef h1 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 48px;
}

#cmp_0dfb8bc9-5b4f-4246-9e45-ac6f4718eeef h2 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 32px;
}

#cmp_0dfb8bc9-5b4f-4246-9e45-ac6f4718eeef h3 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 24px;
}

#cmp_0dfb8bc9-5b4f-4246-9e45-ac6f4718eeef p {
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}


#cmp_0dfb8bc9-5b4f-4246-9e45-ac6f4718eeef .btn {
	background-color: rgb(236, 88, 88);
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_0dfb8bc9-5b4f-4246-9e45-ac6f4718eeef .btn:hover {
	background-color: rgb(238, 152, 65);
	color: #FFFFFF;
}

#cmp_0dfb8bc9-5b4f-4246-9e45-ac6f4718eeef .component-rich-text-with-button__content-row,
#cmp_0dfb8bc9-5b4f-4246-9e45-ac6f4718eeef .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_0dfb8bc9-5b4f-4246-9e45-ac6f4718eeef .component-rich-text-with-button__content-row,
	#cmp_0dfb8bc9-5b4f-4246-9e45-ac6f4718eeef .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_0dfb8bc9-5b4f-4246-9e45-ac6f4718eeef ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

#cmp_0dfb8bc9-5b4f-4246-9e45-ac6f4718eeef ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

/*
 * components/what_kind_of_box/cmp_18c158e1-c0c2-42a6-b631-2af85f0eb15d/component.css
 */
#cmp_18c158e1-c0c2-42a6-b631-2af85f0eb15d {
	background-color: rgb(238, 237, 237);
}

#cmp_18c158e1-c0c2-42a6-b631-2af85f0eb15d h1 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 48px;
}

#cmp_18c158e1-c0c2-42a6-b631-2af85f0eb15d h2 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 32px;
}

#cmp_18c158e1-c0c2-42a6-b631-2af85f0eb15d h3 {
	color: rgb(208, 2, 27);
	font-family: Carter One;
	font-size: 24px;
}

#cmp_18c158e1-c0c2-42a6-b631-2af85f0eb15d p {
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

@media (min-width: 768px) {
	#cmp_18c158e1-c0c2-42a6-b631-2af85f0eb15d .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_18c158e1-c0c2-42a6-b631-2af85f0eb15d ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

#cmp_18c158e1-c0c2-42a6-b631-2af85f0eb15d ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(66, 66, 66);
	font-family: Open Sans;
	font-size: 18px;
}

/*
 * components/what_kind_of_box/cmp_3ee126c9-164f-462e-be1f-fb926130662f/component.css
 */
#cmp_3ee126c9-164f-462e-be1f-fb926130662f img {
	max-width: 100%;
}