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

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

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

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

h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
	margin: 0 0 25px 0;
}

h3 {
	color: rgb(0, 0, 0);
	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: rgb(80, 227, 194);
}

a:hover,
a:focus,
a:active,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
	color: rgb(184, 233, 134);
}

/* 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(80, 227, 194);
}

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

.btn-small:hover,
.btn-small:focus,
.btn-small:active,
.btn-small:active:focus {
	background-color: rgb(80, 227, 194);
	border-color: rgb(80, 227, 194);
}

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

.btn-primary {
	background-color: rgb(80, 227, 194);
	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: rgb(184, 233, 134);
	color: #FFFFFF;
}

.btn-secondary {
	background-color: rgb(245, 166, 35);
	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: rgb(184, 233, 134);
	color: #FFFFFF;
}

.btn-empty {
	background-color: transparent;
	border: 1px solid rgb(80, 227, 194);
	color: rgb(80, 227, 194);
}

.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: rgb(0, 0, 0);
}
.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: rgb(80, 227, 194);
	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: rgb(184, 233, 134);
	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(80, 227, 194);
}

.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(80, 227, 194);
	color: rgb(80, 227, 194);
	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(184, 233, 134);
	border-color: rgb(184, 233, 134);
	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_0a23fe56-8ad8-4db8-bcfe-90175fe42390/component.css
 */
#cmp_0a23fe56-8ad8-4db8-bcfe-90175fe42390 {
	background-color: #FFFFFF;
}

#cmp_0a23fe56-8ad8-4db8-bcfe-90175fe42390 h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_0a23fe56-8ad8-4db8-bcfe-90175fe42390 h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_0a23fe56-8ad8-4db8-bcfe-90175fe42390 h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_0a23fe56-8ad8-4db8-bcfe-90175fe42390 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_0a23fe56-8ad8-4db8-bcfe-90175fe42390 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_0a23fe56-8ad8-4db8-bcfe-90175fe42390 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_0a23fe56-8ad8-4db8-bcfe-90175fe42390 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_0a23fe56-8ad8-4db8-bcfe-90175fe42390  {
	padding-bottom: 0;
}
/*
 * components/about/cmp_128f3159-3d0e-45e9-a41a-f1a1ed283053/component.css
 */
#cmp_128f3159-3d0e-45e9-a41a-f1a1ed283053 {
	background-color: #E8E4E2;
}

#cmp_128f3159-3d0e-45e9-a41a-f1a1ed283053 h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_128f3159-3d0e-45e9-a41a-f1a1ed283053 h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_128f3159-3d0e-45e9-a41a-f1a1ed283053 h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_128f3159-3d0e-45e9-a41a-f1a1ed283053 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}


#cmp_128f3159-3d0e-45e9-a41a-f1a1ed283053 .btn {
	background-color: rgb(80, 227, 194);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_128f3159-3d0e-45e9-a41a-f1a1ed283053 .btn:hover {
	background-color: rgb(184, 233, 134);
	color: #FFFFFF;
}

#cmp_128f3159-3d0e-45e9-a41a-f1a1ed283053 .component-rich-text-with-button__content-row,
#cmp_128f3159-3d0e-45e9-a41a-f1a1ed283053 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_128f3159-3d0e-45e9-a41a-f1a1ed283053 .component-rich-text-with-button__content-row,
	#cmp_128f3159-3d0e-45e9-a41a-f1a1ed283053 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_128f3159-3d0e-45e9-a41a-f1a1ed283053 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_128f3159-3d0e-45e9-a41a-f1a1ed283053 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/about/cmp_66972164-37d0-45ce-a73b-3cc85be90cb1/component.css
 */
#cmp_66972164-37d0-45ce-a73b-3cc85be90cb1 {
	background-color: #FFFFFF;
}

#cmp_66972164-37d0-45ce-a73b-3cc85be90cb1 h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_66972164-37d0-45ce-a73b-3cc85be90cb1 h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_66972164-37d0-45ce-a73b-3cc85be90cb1 h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_66972164-37d0-45ce-a73b-3cc85be90cb1 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_66972164-37d0-45ce-a73b-3cc85be90cb1 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_66972164-37d0-45ce-a73b-3cc85be90cb1 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_66972164-37d0-45ce-a73b-3cc85be90cb1 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/about/cmp_b488e0a3-f1cf-4cf5-8174-984af2141e24/component.css
 */
#cmp_b488e0a3-f1cf-4cf5-8174-984af2141e24 {
	background-color: #E8E4E2;
}

#cmp_b488e0a3-f1cf-4cf5-8174-984af2141e24 h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_b488e0a3-f1cf-4cf5-8174-984af2141e24 h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_b488e0a3-f1cf-4cf5-8174-984af2141e24 h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_b488e0a3-f1cf-4cf5-8174-984af2141e24 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_b488e0a3-f1cf-4cf5-8174-984af2141e24 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_b488e0a3-f1cf-4cf5-8174-984af2141e24 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_b488e0a3-f1cf-4cf5-8174-984af2141e24 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/about/cmp_b4d9f89c-d3c3-4b81-9cd5-d3086d400cda/component.css
 */
#cmp_b4d9f89c-d3c3-4b81-9cd5-d3086d400cda {
	padding: 0;
}

#cmp_b4d9f89c-d3c3-4b81-9cd5-d3086d400cda .hero-content {
	background-color: #FFFFFF;
	padding: 20px;
}

#cmp_b4d9f89c-d3c3-4b81-9cd5-d3086d400cda .hero-content h1 {
	color: rgb(0, 0, 0);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_b4d9f89c-d3c3-4b81-9cd5-d3086d400cda .hero-content h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_b4d9f89c-d3c3-4b81-9cd5-d3086d400cda .hero-content h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_b4d9f89c-d3c3-4b81-9cd5-d3086d400cda .hero-content p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_b4d9f89c-d3c3-4b81-9cd5-d3086d400cda .hero-content .btn {
	background-color: rgb(80, 227, 194);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_b4d9f89c-d3c3-4b81-9cd5-d3086d400cda .hero-content .btn:hover {
	background-color: rgb(245, 166, 35);
	color: #FFFFFF;
}


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

@media(min-width: 768px) {
	#cmp_b4d9f89c-d3c3-4b81-9cd5-d3086d400cda .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_b4d9f89c-d3c3-4b81-9cd5-d3086d400cda .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_b4d9f89c-d3c3-4b81-9cd5-d3086d400cda .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_b4d9f89c-d3c3-4b81-9cd5-d3086d400cda .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_b4d9f89c-d3c3-4b81-9cd5-d3086d400cda .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_b4d9f89c-d3c3-4b81-9cd5-d3086d400cda .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/checkout/cmp_1276105e-48df-4142-baca-b0fd42b204f9/component.css
 */
#cmp_1276105e-48df-4142-baca-b0fd42b204f9 .checkout_content {
	overflow: auto;
}

#cmp_1276105e-48df-4142-baca-b0fd42b204f9 .checkout_content section {
	border-color: #F5F5F5;
}

#cmp_1276105e-48df-4142-baca-b0fd42b204f9 .cart_listing table {
	border-color: #F5F5F5;
}

/*
 * components/checkout/cmp_7a7fd9da-9650-45ea-9368-a861457aa4df/component.css
 */
#cmp_7a7fd9da-9650-45ea-9368-a861457aa4df img {
	max-width: 100%;
}

/*
 * components/checkout/cmp_8faf6397-0fba-4526-8fbb-20b8c61825d6/component.css
 */
#cmp_8faf6397-0fba-4526-8fbb-20b8c61825d6 img {
	max-width: 100%;
}

/*
 * components/checkout/cmp_9292429b-654c-45c5-8546-5d5d0c5b43a8/component.css
 */
#cmp_9292429b-654c-45c5-8546-5d5d0c5b43a8 img {
	max-width: 100%;
}

/*
 * components/checkout/cmp_a6443a39-6f84-4d97-8f87-704462330944/component.css
 */
#cmp_a6443a39-6f84-4d97-8f87-704462330944 {
	background-color: rgba(155, 155, 155, 0.3);
}

#cmp_a6443a39-6f84-4d97-8f87-704462330944 h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_a6443a39-6f84-4d97-8f87-704462330944 h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_a6443a39-6f84-4d97-8f87-704462330944 h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_a6443a39-6f84-4d97-8f87-704462330944 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}


#cmp_a6443a39-6f84-4d97-8f87-704462330944 .btn {
	background-color: rgb(80, 227, 194);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_a6443a39-6f84-4d97-8f87-704462330944 .btn:hover {
	background-color: rgb(184, 233, 134);
	color: #FFFFFF;
}

#cmp_a6443a39-6f84-4d97-8f87-704462330944 .component-rich-text-with-button__content-row,
#cmp_a6443a39-6f84-4d97-8f87-704462330944 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_a6443a39-6f84-4d97-8f87-704462330944 .component-rich-text-with-button__content-row,
	#cmp_a6443a39-6f84-4d97-8f87-704462330944 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_a6443a39-6f84-4d97-8f87-704462330944 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_a6443a39-6f84-4d97-8f87-704462330944 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/checkout/cmp_db4b1936-822a-4b68-9a67-de2631f47ac0/component.css
 */
#cmp_db4b1936-822a-4b68-9a67-de2631f47ac0 img {
	max-width: 100%;
}

/*
 * components/customer/account/cmp_87811ddc-a9ba-4401-930c-66f51a344d7e/component.css
 */

/*
 * components/customer/edit/cmp_f711d7ec-f20b-487a-83b3-f3dce6f52bfd/component.css
 */

/*
 * components/customer/forgot_password/cmp_214d34df-2be8-4b08-83e0-58df7ade2f59/component.css
 */
#cmp_214d34df-2be8-4b08-83e0-58df7ade2f59 {
	background-color: #FFFFFF;
}

#cmp_214d34df-2be8-4b08-83e0-58df7ade2f59 h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_214d34df-2be8-4b08-83e0-58df7ade2f59 h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_214d34df-2be8-4b08-83e0-58df7ade2f59 h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_214d34df-2be8-4b08-83e0-58df7ade2f59 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_214d34df-2be8-4b08-83e0-58df7ade2f59 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_214d34df-2be8-4b08-83e0-58df7ade2f59 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_214d34df-2be8-4b08-83e0-58df7ade2f59 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/customer/forgot_password/cmp_846c05bc-9da4-4bdc-9853-c0eb304cc808/component.css
 */
#cmp_846c05bc-9da4-4bdc-9853-c0eb304cc808 {
	padding: 0 0 120px 0;
}
/*
 * components/customer/login/cmp_58ad1b2a-4cfc-4eed-9d3c-34c7d2fcdbb1/component.css
 */
#cmp_58ad1b2a-4cfc-4eed-9d3c-34c7d2fcdbb1 {
	padding: 0 0 120px 0;
}
/*
 * components/customer/login/cmp_63dda3e3-a3a9-4483-94bc-ce1dfe710b96/component.css
 */
#cmp_63dda3e3-a3a9-4483-94bc-ce1dfe710b96 {
	background-color: #FFFFFF;
}

#cmp_63dda3e3-a3a9-4483-94bc-ce1dfe710b96 h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_63dda3e3-a3a9-4483-94bc-ce1dfe710b96 h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_63dda3e3-a3a9-4483-94bc-ce1dfe710b96 h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_63dda3e3-a3a9-4483-94bc-ce1dfe710b96 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_63dda3e3-a3a9-4483-94bc-ce1dfe710b96 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_63dda3e3-a3a9-4483-94bc-ce1dfe710b96 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_63dda3e3-a3a9-4483-94bc-ce1dfe710b96 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/customer/order/cmp_56b8ab7f-9e42-4099-ae47-5a180b6d573b/component.css
 */

/*
 * components/customer/orders/cmp_a7adead6-cebe-41cc-8404-f3bcaf722cbd/component.css
 */

/*
 * components/customer/password_reset/cmp_194ebdb8-900d-475b-8a8b-43959873d37e/component.css
 */
#cmp_194ebdb8-900d-475b-8a8b-43959873d37e {
	padding: 0 0 120px 0;
}
/*
 * components/customer/password_reset/cmp_1e0bb708-05f2-4a11-93f5-0da9d3fbb135/component.css
 */
#cmp_1e0bb708-05f2-4a11-93f5-0da9d3fbb135 {
	background-color: #FFFFFF;
}

#cmp_1e0bb708-05f2-4a11-93f5-0da9d3fbb135 h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_1e0bb708-05f2-4a11-93f5-0da9d3fbb135 h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_1e0bb708-05f2-4a11-93f5-0da9d3fbb135 h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_1e0bb708-05f2-4a11-93f5-0da9d3fbb135 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_1e0bb708-05f2-4a11-93f5-0da9d3fbb135 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_1e0bb708-05f2-4a11-93f5-0da9d3fbb135 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_1e0bb708-05f2-4a11-93f5-0da9d3fbb135 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/customer/thank_you/cmp_6ba5fa47-df22-4dde-822d-17a938a5bb64/component.css
 */

/*
 * components/faq/cmp_3d83644d-91de-4914-b6ad-d9aa268ce508/component.css
 */
#cmp_3d83644d-91de-4914-b6ad-d9aa268ce508 {
	background-color: #E8E4E2;
}

#cmp_3d83644d-91de-4914-b6ad-d9aa268ce508 h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_3d83644d-91de-4914-b6ad-d9aa268ce508 h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_3d83644d-91de-4914-b6ad-d9aa268ce508 h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_3d83644d-91de-4914-b6ad-d9aa268ce508 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}


#cmp_3d83644d-91de-4914-b6ad-d9aa268ce508 .btn {
	background-color: rgb(80, 227, 194);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_3d83644d-91de-4914-b6ad-d9aa268ce508 .btn:hover {
	background-color: rgb(184, 233, 134);
	color: #FFFFFF;
}

#cmp_3d83644d-91de-4914-b6ad-d9aa268ce508 .component-rich-text-with-button__content-row,
#cmp_3d83644d-91de-4914-b6ad-d9aa268ce508 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_3d83644d-91de-4914-b6ad-d9aa268ce508 .component-rich-text-with-button__content-row,
	#cmp_3d83644d-91de-4914-b6ad-d9aa268ce508 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_3d83644d-91de-4914-b6ad-d9aa268ce508 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_3d83644d-91de-4914-b6ad-d9aa268ce508 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/faq/cmp_9403c470-5848-46f2-89a2-82c48f992e6d/component.css
 */
#cmp_9403c470-5848-46f2-89a2-82c48f992e6d {
	background-color: rgba(155, 155, 155, 0.08);
}

#cmp_9403c470-5848-46f2-89a2-82c48f992e6d h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_9403c470-5848-46f2-89a2-82c48f992e6d h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_9403c470-5848-46f2-89a2-82c48f992e6d h3 {
	color: #000000;
	font-family: Oswald;
	font-size: 24px;
}

#cmp_9403c470-5848-46f2-89a2-82c48f992e6d p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_9403c470-5848-46f2-89a2-82c48f992e6d .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_9403c470-5848-46f2-89a2-82c48f992e6d ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_9403c470-5848-46f2-89a2-82c48f992e6d ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_9403c470-5848-46f2-89a2-82c48f992e6d h2 {
	margin: 0 0 40px 0;
}
#cmp_9403c470-5848-46f2-89a2-82c48f992e6d p {
	border-bottom: 1px solid #EEEEEE;
	padding: 0 0 25px 0;
}
/*
 * components/global/cmp_3e7e6476-dbd4-4a5f-bc7f-198eb0ce6eb9/component.css
 */
#cmp_3e7e6476-dbd4-4a5f-bc7f-198eb0ce6eb9.footer {
	background-color: rgba(155, 155, 155, 0.25);
	color: rgb(0, 0, 0);
	font-family: Lato;
	padding: 25px 0;

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

#cmp_3e7e6476-dbd4-4a5f-bc7f-198eb0ce6eb9.footer p {
	color: rgb(0, 0, 0);
}

#cmp_3e7e6476-dbd4-4a5f-bc7f-198eb0ce6eb9 .footer-subscribe {
	padding: 15px 0;
}

#cmp_3e7e6476-dbd4-4a5f-bc7f-198eb0ce6eb9 .footer-subscribe .btn {
	border: 1px solid #FFFFFF;
}

#cmp_3e7e6476-dbd4-4a5f-bc7f-198eb0ce6eb9 .footer-social {
	padding: 15px 0;
}

#cmp_3e7e6476-dbd4-4a5f-bc7f-198eb0ce6eb9 .footer-social a {
	display: inline-block;
	padding: 0 5px;
}

#cmp_3e7e6476-dbd4-4a5f-bc7f-198eb0ce6eb9 .footer-social svg path {
	fill: #FFFFFF;
}

#cmp_3e7e6476-dbd4-4a5f-bc7f-198eb0ce6eb9 .footer-social a:hover svg path,
#cmp_3e7e6476-dbd4-4a5f-bc7f-198eb0ce6eb9 .footer-social a:focus svg path,
#cmp_3e7e6476-dbd4-4a5f-bc7f-198eb0ce6eb9 .footer-social a:active svg path {
	fill: rgb(80, 227, 194);
}

#cmp_3e7e6476-dbd4-4a5f-bc7f-198eb0ce6eb9 .footer-contact {
	padding: 15px 0;

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

#cmp_3e7e6476-dbd4-4a5f-bc7f-198eb0ce6eb9 .footer-contact p {
	margin: 0 0 0.5em 0;
}

@media (min-width: 768px) {
	#cmp_3e7e6476-dbd4-4a5f-bc7f-198eb0ce6eb9.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_586dfa2b-0ab3-419c-af49-be5a218bacbf/component.css
 */
#cmp_586dfa2b-0ab3-419c-af49-be5a218bacbf {
	border-bottom: 4px solid rgb(80, 227, 194);
	padding: 0;
}

#cmp_586dfa2b-0ab3-419c-af49-be5a218bacbf .navbar {
	background-color: rgb(255, 255, 255);
	border-radius: 0;
	padding: 0;

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

#cmp_586dfa2b-0ab3-419c-af49-be5a218bacbf .navbar a:hover,
#cmp_586dfa2b-0ab3-419c-af49-be5a218bacbf .navbar a:focus,
#cmp_586dfa2b-0ab3-419c-af49-be5a218bacbf .navbar a:active {
	color: rgb(245, 166, 35);
}

#cmp_586dfa2b-0ab3-419c-af49-be5a218bacbf .navbar-brand {
	color: rgb(80, 227, 194);
	font-family: Luckiest Guy;
	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_586dfa2b-0ab3-419c-af49-be5a218bacbf .navbar-brand img {
	max-width: 100%;
}

#cmp_586dfa2b-0ab3-419c-af49-be5a218bacbf .navbar .navbar-toggler {
	background-color: rgb(80, 227, 194);
	border-radius: 0;
	color: #FFFFFF;
	font-size: 14px;
	letter-spacing: 0.071em;
	padding: 15px;
	text-transform: uppercase;
}

#cmp_586dfa2b-0ab3-419c-af49-be5a218bacbf .navbar .navbar-toggler:hover,
#cmp_586dfa2b-0ab3-419c-af49-be5a218bacbf .navbar .navbar-toggler:focus,
#cmp_586dfa2b-0ab3-419c-af49-be5a218bacbf .navbar .navbar-toggler:active {
	background-color: rgb(184, 233, 134);
	color: #FFFFFF;
}

#cmp_586dfa2b-0ab3-419c-af49-be5a218bacbf .navbar-nav {
	background-color: rgb(80, 227, 194);
	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_586dfa2b-0ab3-419c-af49-be5a218bacbf .navbar-nav li {
	padding-top: 10px;
	padding-bottom: 10px;
}

#cmp_586dfa2b-0ab3-419c-af49-be5a218bacbf .navbar-nav .nav-link {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;;
	letter-spacing: 0.071em;
	padding: 15px;
	text-align: center;
	text-transform: uppercase;
}

@media (max-width: 767px) {
	#cmp_586dfa2b-0ab3-419c-af49-be5a218bacbf {
		border-width: 0;
	}
	#cmp_586dfa2b-0ab3-419c-af49-be5a218bacbf .dropdown-menu {
		background-color: rgb(80, 227, 194);
	}
}

@media (min-width: 768px) {
	#cmp_586dfa2b-0ab3-419c-af49-be5a218bacbf .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_586dfa2b-0ab3-419c-af49-be5a218bacbf .navbar-brand {
		padding: 0;
		padding-bottom: 15px;
	}
	#cmp_586dfa2b-0ab3-419c-af49-be5a218bacbf .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_586dfa2b-0ab3-419c-af49-be5a218bacbf .navbar-nav {
		background-color: rgb(255, 255, 255);
		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_586dfa2b-0ab3-419c-af49-be5a218bacbf .navbar-nav li {
		padding: 0;
	}
	#cmp_586dfa2b-0ab3-419c-af49-be5a218bacbf .navbar-nav .nav-link {
		color: rgb(0, 0, 0);
	}
	#cmp_586dfa2b-0ab3-419c-af49-be5a218bacbf .navbar a:hover,
	#cmp_586dfa2b-0ab3-419c-af49-be5a218bacbf .navbar a:focus,
	#cmp_586dfa2b-0ab3-419c-af49-be5a218bacbf .navbar a:active {
		color: rgb(80, 227, 194);
	}
}

/*
 * components/global/cmp_c45578a2-45a1-4b2e-946a-f834d37e54f2/component.css
 */
#cmp_c45578a2-45a1-4b2e-946a-f834d37e54f2 {
	background-color: #FFFFFF;
}

#cmp_c45578a2-45a1-4b2e-946a-f834d37e54f2 h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_c45578a2-45a1-4b2e-946a-f834d37e54f2 h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_c45578a2-45a1-4b2e-946a-f834d37e54f2 h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_c45578a2-45a1-4b2e-946a-f834d37e54f2 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}


#cmp_c45578a2-45a1-4b2e-946a-f834d37e54f2 .btn {
	background-color: rgb(80, 227, 194);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_c45578a2-45a1-4b2e-946a-f834d37e54f2 .btn:hover {
	background-color: rgb(184, 233, 134);
	color: #FFFFFF;
}

#cmp_c45578a2-45a1-4b2e-946a-f834d37e54f2 .component-rich-text-with-button__content-row,
#cmp_c45578a2-45a1-4b2e-946a-f834d37e54f2 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_c45578a2-45a1-4b2e-946a-f834d37e54f2 .component-rich-text-with-button__content-row,
	#cmp_c45578a2-45a1-4b2e-946a-f834d37e54f2 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_c45578a2-45a1-4b2e-946a-f834d37e54f2 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_c45578a2-45a1-4b2e-946a-f834d37e54f2 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_c45578a2-45a1-4b2e-946a-f834d37e54f2  {
	padding-top: 0;
}
/*
 * components/howitworks/cmp_31edb527-62ff-416b-beef-754e71227993/component.css
 */
#cmp_31edb527-62ff-416b-beef-754e71227993 {
	background-color: #FFFFFF;
	padding: 0;
}

#cmp_31edb527-62ff-416b-beef-754e71227993 .content {
	margin: 0 auto;
	padding: 25px;
}

#cmp_31edb527-62ff-416b-beef-754e71227993 .content .cta {
	border: 5px solid rgb(80, 227, 194);
	padding: 45px;
}

#cmp_31edb527-62ff-416b-beef-754e71227993 h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_31edb527-62ff-416b-beef-754e71227993 h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_31edb527-62ff-416b-beef-754e71227993 h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_31edb527-62ff-416b-beef-754e71227993 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/howitworks/cmp_a6a1337c-68c4-4c80-be0d-d6a23ad7cc8f/component.css
 */
#cmp_a6a1337c-68c4-4c80-be0d-d6a23ad7cc8f {
	background-color: #E8E4E2;
}

#cmp_a6a1337c-68c4-4c80-be0d-d6a23ad7cc8f .content-row {
	margin: 0;

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

#cmp_a6a1337c-68c4-4c80-be0d-d6a23ad7cc8f .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_a6a1337c-68c4-4c80-be0d-d6a23ad7cc8f .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_a6a1337c-68c4-4c80-be0d-d6a23ad7cc8f h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_a6a1337c-68c4-4c80-be0d-d6a23ad7cc8f h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_a6a1337c-68c4-4c80-be0d-d6a23ad7cc8f h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_a6a1337c-68c4-4c80-be0d-d6a23ad7cc8f p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_a6a1337c-68c4-4c80-be0d-d6a23ad7cc8f .content {
		margin: 15px;
	}
}
/*
 * components/howitworks/cmp_f0123029-d258-4b43-b136-22f15c4e63ea/component.css
 */
#cmp_f0123029-d258-4b43-b136-22f15c4e63ea {
	background-color: #FFFFFF;
}

#cmp_f0123029-d258-4b43-b136-22f15c4e63ea h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_f0123029-d258-4b43-b136-22f15c4e63ea h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_f0123029-d258-4b43-b136-22f15c4e63ea h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_f0123029-d258-4b43-b136-22f15c4e63ea p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_f0123029-d258-4b43-b136-22f15c4e63ea .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_f0123029-d258-4b43-b136-22f15c4e63ea ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_f0123029-d258-4b43-b136-22f15c4e63ea ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/index/cmp_0a4792d7-0cf3-4856-b370-5206c5cdd137/component.css
 */
#cmp_0a4792d7-0cf3-4856-b370-5206c5cdd137 {
	background-color: #FFFFFF;
}

#cmp_0a4792d7-0cf3-4856-b370-5206c5cdd137 h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_0a4792d7-0cf3-4856-b370-5206c5cdd137 h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_0a4792d7-0cf3-4856-b370-5206c5cdd137 h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_0a4792d7-0cf3-4856-b370-5206c5cdd137 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_0a4792d7-0cf3-4856-b370-5206c5cdd137 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_0a4792d7-0cf3-4856-b370-5206c5cdd137 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_0a4792d7-0cf3-4856-b370-5206c5cdd137 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/index/cmp_14766261-69ea-4326-82de-93c8099f7e4f/component.css
 */
#cmp_14766261-69ea-4326-82de-93c8099f7e4f img {
	max-width: 100%;
}

/*
 * components/index/cmp_18ada220-3bfd-49a3-9e96-d9170ee489e8/component.css
 */
#cmp_18ada220-3bfd-49a3-9e96-d9170ee489e8 {
	background-color: #FFFFFF;
}

#cmp_18ada220-3bfd-49a3-9e96-d9170ee489e8 h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_18ada220-3bfd-49a3-9e96-d9170ee489e8 h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_18ada220-3bfd-49a3-9e96-d9170ee489e8 h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_18ada220-3bfd-49a3-9e96-d9170ee489e8 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}


#cmp_18ada220-3bfd-49a3-9e96-d9170ee489e8 .btn {
	background-color: rgb(80, 227, 194);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_18ada220-3bfd-49a3-9e96-d9170ee489e8 .btn:hover {
	background-color: rgb(184, 233, 134);
	color: #FFFFFF;
}

#cmp_18ada220-3bfd-49a3-9e96-d9170ee489e8 .component-rich-text-with-button__content-row,
#cmp_18ada220-3bfd-49a3-9e96-d9170ee489e8 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_18ada220-3bfd-49a3-9e96-d9170ee489e8 .component-rich-text-with-button__content-row,
	#cmp_18ada220-3bfd-49a3-9e96-d9170ee489e8 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_18ada220-3bfd-49a3-9e96-d9170ee489e8 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_18ada220-3bfd-49a3-9e96-d9170ee489e8 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/index/cmp_23c13843-3f56-496f-b7c8-b21589cde834/component.css
 */
#cmp_23c13843-3f56-496f-b7c8-b21589cde834 img {
	max-width: 100%;
}

/*
 * components/index/cmp_2a778b9f-1fcb-46ae-8d02-e1f526bed363/component.css
 */
#cmp_2a778b9f-1fcb-46ae-8d02-e1f526bed363 {
	background-color: rgb(80, 227, 194);
}

#cmp_2a778b9f-1fcb-46ae-8d02-e1f526bed363 h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_2a778b9f-1fcb-46ae-8d02-e1f526bed363 h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_2a778b9f-1fcb-46ae-8d02-e1f526bed363 h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_2a778b9f-1fcb-46ae-8d02-e1f526bed363 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_2a778b9f-1fcb-46ae-8d02-e1f526bed363 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_2a778b9f-1fcb-46ae-8d02-e1f526bed363 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_2a778b9f-1fcb-46ae-8d02-e1f526bed363 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/index/cmp_3e52c63e-5aec-4297-b162-9345f0193478/component.css
 */
#cmp_3e52c63e-5aec-4297-b162-9345f0193478 img {
	max-width: 100%;
}

/*
 * components/index/cmp_5c56a9b6-75ab-44ed-afc8-e2b2194224e8/component.css
 */
#cmp_5c56a9b6-75ab-44ed-afc8-e2b2194224e8 {
	background-color: rgba(155, 155, 155, 0.25);
}

#cmp_5c56a9b6-75ab-44ed-afc8-e2b2194224e8 h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_5c56a9b6-75ab-44ed-afc8-e2b2194224e8 h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_5c56a9b6-75ab-44ed-afc8-e2b2194224e8 h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_5c56a9b6-75ab-44ed-afc8-e2b2194224e8 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_5c56a9b6-75ab-44ed-afc8-e2b2194224e8 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_5c56a9b6-75ab-44ed-afc8-e2b2194224e8 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_5c56a9b6-75ab-44ed-afc8-e2b2194224e8 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_5c56a9b6-75ab-44ed-afc8-e2b2194224e8  {
	padding-bottom: 0;
}
/*
 * components/index/cmp_65aea7a6-3ba2-4087-bd97-cff7cdf3b68c/component.css
 */
#cmp_65aea7a6-3ba2-4087-bd97-cff7cdf3b68c {
	padding: 0;
}

#cmp_65aea7a6-3ba2-4087-bd97-cff7cdf3b68c .hero-content {
	background-color: #FFFFFF;
	padding: 20px;
}

#cmp_65aea7a6-3ba2-4087-bd97-cff7cdf3b68c .hero-content h1 {
	color: rgb(0, 0, 0);
	font-family: Luckiest Guy;
	font-size: 36px;
}

#cmp_65aea7a6-3ba2-4087-bd97-cff7cdf3b68c .hero-content h2 {
	color: #FFFFFF;
	font-family: Oswald;
	font-size: 32px;
}

#cmp_65aea7a6-3ba2-4087-bd97-cff7cdf3b68c .hero-content h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_65aea7a6-3ba2-4087-bd97-cff7cdf3b68c .hero-content p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_65aea7a6-3ba2-4087-bd97-cff7cdf3b68c .hero-content .btn {
	background-color: rgb(227, 80, 188);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_65aea7a6-3ba2-4087-bd97-cff7cdf3b68c .hero-content .btn:hover {
	background-color: rgb(80, 227, 194);
	color: #FFFFFF;
}


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

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

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

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

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

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

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

/*
 * components/index/cmp_6bde2eba-2ea6-4e2b-ab06-46331d7cc992/component.css
 */
#cmp_6bde2eba-2ea6-4e2b-ab06-46331d7cc992 {
	padding: 0;
}

#cmp_6bde2eba-2ea6-4e2b-ab06-46331d7cc992 .hero-content {
	background-color: #FFFFFF;
	padding: 20px;
}

#cmp_6bde2eba-2ea6-4e2b-ab06-46331d7cc992 .hero-content h1 {
	color: rgb(0, 0, 0);
	font-family: Luckiest Guy;
	font-size: 36px;
}

#cmp_6bde2eba-2ea6-4e2b-ab06-46331d7cc992 .hero-content h2 {
	color: #FFFFFF;
	font-family: Oswald;
	font-size: 32px;
}

#cmp_6bde2eba-2ea6-4e2b-ab06-46331d7cc992 .hero-content h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_6bde2eba-2ea6-4e2b-ab06-46331d7cc992 .hero-content p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_6bde2eba-2ea6-4e2b-ab06-46331d7cc992 .hero-content .btn {
	background-color: rgb(74, 144, 226);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_6bde2eba-2ea6-4e2b-ab06-46331d7cc992 .hero-content .btn:hover {
	background-color: rgb(184, 233, 134);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_6bde2eba-2ea6-4e2b-ab06-46331d7cc992 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_6bde2eba-2ea6-4e2b-ab06-46331d7cc992 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_6bde2eba-2ea6-4e2b-ab06-46331d7cc992 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_6bde2eba-2ea6-4e2b-ab06-46331d7cc992 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_6bde2eba-2ea6-4e2b-ab06-46331d7cc992 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_6bde2eba-2ea6-4e2b-ab06-46331d7cc992 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_6bde2eba-2ea6-4e2b-ab06-46331d7cc992 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/index/cmp_742149e3-aaa0-4cc1-b205-69f7a689c9bc/component.css
 */
#cmp_742149e3-aaa0-4cc1-b205-69f7a689c9bc img {
	max-width: 100%;
}

/*
 * components/index/cmp_779b218f-4b14-484f-b00f-60800e89b3fc/component.css
 */
#cmp_779b218f-4b14-484f-b00f-60800e89b3fc {
	background-position: right bottom !important;
	background-repeat: no-repeat !important;
	margin: 0;
	min-height: calc(100vh - 100px);
	padding: 0;

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

#cmp_779b218f-4b14-484f-b00f-60800e89b3fc .container-fluid {
	width: 100%;
}

#cmp_779b218f-4b14-484f-b00f-60800e89b3fc .hero-row {
	margin: 0;
}

#cmp_779b218f-4b14-484f-b00f-60800e89b3fc .hero-content {
	margin: 0;
	text-align: center;
}

#cmp_779b218f-4b14-484f-b00f-60800e89b3fc .hero-content h1 {
	color: rgb(255, 255, 255);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_779b218f-4b14-484f-b00f-60800e89b3fc .hero-content h2 {
	color: #FFFFFF;
	font-family: Oswald;
	font-size: 32px;
}

#cmp_779b218f-4b14-484f-b00f-60800e89b3fc .hero-content h3 {
	color: #FFFFFF;
	font-family: Oswald;
	font-size: 24px;
}

#cmp_779b218f-4b14-484f-b00f-60800e89b3fc .hero-content p {
	color: rgb(255, 255, 255);
	font-family: Lato;
	font-size: 14px;
}

#cmp_779b218f-4b14-484f-b00f-60800e89b3fc .hero-content .button-container {
	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;

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

#cmp_779b218f-4b14-484f-b00f-60800e89b3fc .hero-content .btn {
	margin: 5px 0;
	padding: 1em;
	white-space: normal;
	width: 90%;
}

#cmp_779b218f-4b14-484f-b00f-60800e89b3fc .hero-content .btn-primary {
	background-color: rgb(80, 227, 194);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_779b218f-4b14-484f-b00f-60800e89b3fc .hero-content .btn-primary:hover,
#cmp_779b218f-4b14-484f-b00f-60800e89b3fc .hero-content .btn-primary:focus,
#cmp_779b218f-4b14-484f-b00f-60800e89b3fc .hero-content .btn-primary:active {
	background-color: rgb(184, 233, 134);
	color: #FFFFFF;
}

#cmp_779b218f-4b14-484f-b00f-60800e89b3fc .hero-content .btn-secondary {
	background-color: rgb(74, 144, 226);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_779b218f-4b14-484f-b00f-60800e89b3fc .hero-content .btn-secondary:hover,
#cmp_779b218f-4b14-484f-b00f-60800e89b3fc .hero-content .btn-secondary:focus,
#cmp_779b218f-4b14-484f-b00f-60800e89b3fc .hero-content .btn-secondary:active {
	background-color: rgb(184, 233, 134);
	color: #FFFFFF;
}

@media (min-width: 768px) {
	#cmp_779b218f-4b14-484f-b00f-60800e89b3fc {
		min-height: 40vw;
	}
	#cmp_779b218f-4b14-484f-b00f-60800e89b3fc .hero-content {
		margin: 15px;
		text-align: left;
	}
	#cmp_779b218f-4b14-484f-b00f-60800e89b3fc .hero-content .button-container {
		-webkit-justify-content: flex-start;
		-moz-justify-content: flex-start;
		-ms-justify-content: flex-start;
		justify-content: flex-start;
	}
	#cmp_779b218f-4b14-484f-b00f-60800e89b3fc .hero-content .btn {
		margin: 0 15px 0 0;
		width: 45%;
	}
}

@media (min-width: 1200px) {
	#cmp_779b218f-4b14-484f-b00f-60800e89b3fc {
		min-height: 533px;
	}
}
/*
 * components/index/cmp_887ba955-be53-49bc-b671-9da9e99c95ac/component.css
 */
#cmp_887ba955-be53-49bc-b671-9da9e99c95ac {
	padding: 0;
}

#cmp_887ba955-be53-49bc-b671-9da9e99c95ac .hero-content {
	background-color: #FFFFFF;
	padding: 20px;
}

#cmp_887ba955-be53-49bc-b671-9da9e99c95ac .hero-content h1 {
	color: rgb(80, 227, 194);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_887ba955-be53-49bc-b671-9da9e99c95ac .hero-content h2 {
	color: #FFFFFF;
	font-family: Oswald;
	font-size: 32px;
}

#cmp_887ba955-be53-49bc-b671-9da9e99c95ac .hero-content h3 {
	color: #FFFFFF;
	font-family: Oswald;
	font-size: 24px;
}

#cmp_887ba955-be53-49bc-b671-9da9e99c95ac .hero-content p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_887ba955-be53-49bc-b671-9da9e99c95ac .hero-content .btn {
	background-color: rgb(80, 227, 194);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_887ba955-be53-49bc-b671-9da9e99c95ac .hero-content .btn:hover {
	background-color: rgb(245, 166, 35);
	color: #FFFFFF;
}


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

@media(min-width: 768px) {
	#cmp_887ba955-be53-49bc-b671-9da9e99c95ac .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_887ba955-be53-49bc-b671-9da9e99c95ac .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_887ba955-be53-49bc-b671-9da9e99c95ac .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_887ba955-be53-49bc-b671-9da9e99c95ac .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_887ba955-be53-49bc-b671-9da9e99c95ac .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_887ba955-be53-49bc-b671-9da9e99c95ac .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/index/cmp_96fdf574-8bd9-4335-9497-284f05b6cd9f/component.css
 */
#cmp_96fdf574-8bd9-4335-9497-284f05b6cd9f {
	background-color: rgb(255, 255, 255);
}

#cmp_96fdf574-8bd9-4335-9497-284f05b6cd9f .content-row {
	margin: 0;

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

#cmp_96fdf574-8bd9-4335-9497-284f05b6cd9f .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_96fdf574-8bd9-4335-9497-284f05b6cd9f .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_96fdf574-8bd9-4335-9497-284f05b6cd9f h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_96fdf574-8bd9-4335-9497-284f05b6cd9f h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_96fdf574-8bd9-4335-9497-284f05b6cd9f h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_96fdf574-8bd9-4335-9497-284f05b6cd9f p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_96fdf574-8bd9-4335-9497-284f05b6cd9f .content {
		margin: 15px;
	}
}
#cmp_96fdf574-8bd9-4335-9497-284f05b6cd9f  {
	padding-top: 0;
}
/*
 * components/index/cmp_a2c743df-0607-4849-9380-c32f8a1b5268/component.css
 */
#cmp_a2c743df-0607-4849-9380-c32f8a1b5268 {
	padding: 0;
}

#cmp_a2c743df-0607-4849-9380-c32f8a1b5268 .hero-content {
	background-color: rgba(155, 155, 155, 0.25);
	padding: 20px;
}

#cmp_a2c743df-0607-4849-9380-c32f8a1b5268 .hero-content h1 {
	color: rgb(0, 0, 0);
	font-family: Luckiest Guy;
	font-size: 36px;
}

#cmp_a2c743df-0607-4849-9380-c32f8a1b5268 .hero-content h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_a2c743df-0607-4849-9380-c32f8a1b5268 .hero-content h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_a2c743df-0607-4849-9380-c32f8a1b5268 .hero-content p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_a2c743df-0607-4849-9380-c32f8a1b5268 .hero-content .btn {
	background-color: rgb(245, 166, 35);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_a2c743df-0607-4849-9380-c32f8a1b5268 .hero-content .btn:hover {
	background-color: rgb(184, 233, 134);
	color: #FFFFFF;
}


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

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

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

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

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

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

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

/*
 * components/index/cmp_b0234fc8-62a3-4f54-89ea-1495ef3576b6/component.css
 */
#cmp_b0234fc8-62a3-4f54-89ea-1495ef3576b6 {
	background-color: rgba(155, 155, 155, 0.25);
}

#cmp_b0234fc8-62a3-4f54-89ea-1495ef3576b6 h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_b0234fc8-62a3-4f54-89ea-1495ef3576b6 h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_b0234fc8-62a3-4f54-89ea-1495ef3576b6 h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_b0234fc8-62a3-4f54-89ea-1495ef3576b6 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}


#cmp_b0234fc8-62a3-4f54-89ea-1495ef3576b6 .btn {
	background-color: rgb(80, 227, 194);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_b0234fc8-62a3-4f54-89ea-1495ef3576b6 .btn:hover {
	background-color: rgb(184, 233, 134);
	color: #FFFFFF;
}

#cmp_b0234fc8-62a3-4f54-89ea-1495ef3576b6 .component-rich-text-with-button__content-row,
#cmp_b0234fc8-62a3-4f54-89ea-1495ef3576b6 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_b0234fc8-62a3-4f54-89ea-1495ef3576b6 .component-rich-text-with-button__content-row,
	#cmp_b0234fc8-62a3-4f54-89ea-1495ef3576b6 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_b0234fc8-62a3-4f54-89ea-1495ef3576b6 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_b0234fc8-62a3-4f54-89ea-1495ef3576b6 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/index/cmp_b2723499-5e5d-454f-8a1b-2bbc9dfaa8ff/component.css
 */
#cmp_b2723499-5e5d-454f-8a1b-2bbc9dfaa8ff img {
	max-width: 100%;
}

/*
 * components/index/cmp_bbf3b6f1-903f-4754-9168-0674b2dd311b/component.css
 */
#cmp_bbf3b6f1-903f-4754-9168-0674b2dd311b img {
	max-width: 100%;
}

/*
 * components/index/cmp_d81f7e96-6b27-422e-b7ec-e5f51c9fe26d/component.css
 */
#cmp_d81f7e96-6b27-422e-b7ec-e5f51c9fe26d {
	background-color: rgb(255, 255, 255);
}

#cmp_d81f7e96-6b27-422e-b7ec-e5f51c9fe26d h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_d81f7e96-6b27-422e-b7ec-e5f51c9fe26d h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_d81f7e96-6b27-422e-b7ec-e5f51c9fe26d h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_d81f7e96-6b27-422e-b7ec-e5f51c9fe26d p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}


#cmp_d81f7e96-6b27-422e-b7ec-e5f51c9fe26d .btn {
	background-color: rgb(80, 227, 194);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_d81f7e96-6b27-422e-b7ec-e5f51c9fe26d .btn:hover {
	background-color: rgb(184, 233, 134);
	color: #FFFFFF;
}

#cmp_d81f7e96-6b27-422e-b7ec-e5f51c9fe26d .component-rich-text-with-button__content-row,
#cmp_d81f7e96-6b27-422e-b7ec-e5f51c9fe26d .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_d81f7e96-6b27-422e-b7ec-e5f51c9fe26d .component-rich-text-with-button__content-row,
	#cmp_d81f7e96-6b27-422e-b7ec-e5f51c9fe26d .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_d81f7e96-6b27-422e-b7ec-e5f51c9fe26d ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_d81f7e96-6b27-422e-b7ec-e5f51c9fe26d ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/index/cmp_d8451006-7827-48f0-8013-09145249b72e/component.css
 */
#cmp_d8451006-7827-48f0-8013-09145249b72e {
	padding: 0;
}

#cmp_d8451006-7827-48f0-8013-09145249b72e .hero-content {
	background-color: rgba(155, 155, 155, 0.25);
	padding: 20px;
}

#cmp_d8451006-7827-48f0-8013-09145249b72e .hero-content h1 {
	color: rgb(0, 0, 0);
	font-family: Luckiest Guy;
	font-size: 36px;
}

#cmp_d8451006-7827-48f0-8013-09145249b72e .hero-content h2 {
	color: #FFFFFF;
	font-family: Oswald;
	font-size: 32px;
}

#cmp_d8451006-7827-48f0-8013-09145249b72e .hero-content h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_d8451006-7827-48f0-8013-09145249b72e .hero-content p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_d8451006-7827-48f0-8013-09145249b72e .hero-content .btn {
	background-color: rgb(126, 211, 33);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_d8451006-7827-48f0-8013-09145249b72e .hero-content .btn:hover {
	background-color: rgb(184, 233, 134);
	color: #FFFFFF;
}


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

@media(min-width: 768px) {
	#cmp_d8451006-7827-48f0-8013-09145249b72e .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_d8451006-7827-48f0-8013-09145249b72e .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_d8451006-7827-48f0-8013-09145249b72e .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_d8451006-7827-48f0-8013-09145249b72e .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_d8451006-7827-48f0-8013-09145249b72e .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_d8451006-7827-48f0-8013-09145249b72e .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/index/cmp_ec64119e-854a-4671-92f0-5ee32c895514/component.css
 */
#cmp_ec64119e-854a-4671-92f0-5ee32c895514 {
	padding: 0;
}

#cmp_ec64119e-854a-4671-92f0-5ee32c895514 .hero-content {
	background-color: #FFFFFF;
	padding: 20px;
}

#cmp_ec64119e-854a-4671-92f0-5ee32c895514 .hero-content h1 {
	color: rgb(0, 0, 0);
	font-family: Luckiest Guy;
	font-size: 36px;
}

#cmp_ec64119e-854a-4671-92f0-5ee32c895514 .hero-content h2 {
	color: rgb(0, 0, 0);
	font-family: Acme;
	font-size: 32px;
}

#cmp_ec64119e-854a-4671-92f0-5ee32c895514 .hero-content h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_ec64119e-854a-4671-92f0-5ee32c895514 .hero-content p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_ec64119e-854a-4671-92f0-5ee32c895514 .hero-content .btn {
	background-color: rgba(208, 2, 27, 0.75);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_ec64119e-854a-4671-92f0-5ee32c895514 .hero-content .btn:hover {
	background-color: rgb(184, 233, 134);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_ec64119e-854a-4671-92f0-5ee32c895514 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_ec64119e-854a-4671-92f0-5ee32c895514 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_ec64119e-854a-4671-92f0-5ee32c895514 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_ec64119e-854a-4671-92f0-5ee32c895514 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_ec64119e-854a-4671-92f0-5ee32c895514 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_ec64119e-854a-4671-92f0-5ee32c895514 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_ec64119e-854a-4671-92f0-5ee32c895514 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/privacy_statement/cmp_65847586-0484-44c9-a45b-84516bf3c8aa/component.css
 */
#cmp_65847586-0484-44c9-a45b-84516bf3c8aa {
	background-color: #FFFFFF;
}

#cmp_65847586-0484-44c9-a45b-84516bf3c8aa h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_65847586-0484-44c9-a45b-84516bf3c8aa h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_65847586-0484-44c9-a45b-84516bf3c8aa h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_65847586-0484-44c9-a45b-84516bf3c8aa p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_65847586-0484-44c9-a45b-84516bf3c8aa .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_65847586-0484-44c9-a45b-84516bf3c8aa ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_65847586-0484-44c9-a45b-84516bf3c8aa ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/shipping_policy/cmp_1914743b-d65d-4846-b22e-d9aaa156c70a/component.css
 */
#cmp_1914743b-d65d-4846-b22e-d9aaa156c70a {
	background-color: #FFFFFF;
}

#cmp_1914743b-d65d-4846-b22e-d9aaa156c70a h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_1914743b-d65d-4846-b22e-d9aaa156c70a h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_1914743b-d65d-4846-b22e-d9aaa156c70a h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_1914743b-d65d-4846-b22e-d9aaa156c70a p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_1914743b-d65d-4846-b22e-d9aaa156c70a .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_1914743b-d65d-4846-b22e-d9aaa156c70a ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_1914743b-d65d-4846-b22e-d9aaa156c70a ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/shop/listing/cmp_55c021a0-a185-4078-bf14-6bde7f58f602/component.css
 */
#cmp_55c021a0-a185-4078-bf14-6bde7f58f602 {
	border-bottom: 1px solid #E1E1E1;
	padding: 20px 0 40px 0;
}

#cmp_55c021a0-a185-4078-bf14-6bde7f58f602 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_5de86d00-bfab-4e47-9e6e-6f1a3e0a1f60/component.css
 */
#cmp_5de86d00-bfab-4e47-9e6e-6f1a3e0a1f60 {
	background-color: rgb(80, 227, 194);
}

#cmp_5de86d00-bfab-4e47-9e6e-6f1a3e0a1f60 h1 {
	color: rgb(0, 0, 0);
	font-family: Luckiest Guy;
	font-size: 48px;
}

#cmp_5de86d00-bfab-4e47-9e6e-6f1a3e0a1f60 h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_5de86d00-bfab-4e47-9e6e-6f1a3e0a1f60 h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_5de86d00-bfab-4e47-9e6e-6f1a3e0a1f60 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_5de86d00-bfab-4e47-9e6e-6f1a3e0a1f60 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_5de86d00-bfab-4e47-9e6e-6f1a3e0a1f60 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_5de86d00-bfab-4e47-9e6e-6f1a3e0a1f60 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_5de86d00-bfab-4e47-9e6e-6f1a3e0a1f60  {
	padding-bottom: 20px;
}
/*
 * components/shop/listing/cmp_f10903c8-851b-413f-a62c-659b918dc540/component.css
 */
#cmp_f10903c8-851b-413f-a62c-659b918dc540 {
	padding: 20px 0;
}

#cmp_f10903c8-851b-413f-a62c-659b918dc540 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_fd11e2ca-d55e-4e1a-81c5-7ce7f211ee05/component.css
 */
.shop-listing-item {
	color: rgb(0, 0, 0);
}

.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_55b5aa81-2392-425d-8ce6-b3b91493faa2/component.css
 */
#cmp_55b5aa81-2392-425d-8ce6-b3b91493faa2 .shop-product select {
	width: auto;
}

#cmp_55b5aa81-2392-425d-8ce6-b3b91493faa2 .shop-product__name {
	margin-bottom: 20px;
}

#cmp_55b5aa81-2392-425d-8ce6-b3b91493faa2 .shop-product__price {
	margin-bottom: 20px;
}

#cmp_55b5aa81-2392-425d-8ce6-b3b91493faa2 .shop-product__add-to-cart {
	margin-bottom: 20px;
}

#cmp_55b5aa81-2392-425d-8ce6-b3b91493faa2 .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin-bottom: 40px;
}

#cmp_55b5aa81-2392-425d-8ce6-b3b91493faa2 .shop-product__review-share-desktop .rating,
#cmp_55b5aa81-2392-425d-8ce6-b3b91493faa2 .shop-product__review-share-desktop .sharing {
	padding-top: 10px;
}

#cmp_55b5aa81-2392-425d-8ce6-b3b91493faa2 .shop-product__review-share-desktop h3,
#cmp_55b5aa81-2392-425d-8ce6-b3b91493faa2 .shop-product__review-share-mobile h3 {
	margin: 10px 0;
}
#cmp_55b5aa81-2392-425d-8ce6-b3b91493faa2  {
	padding-top: 0;
}
/*
 * components/shop/product/cmp_ec351c42-04c4-49a2-8577-e69327c0a0ab/component.css
 */
#cmp_ec351c42-04c4-49a2-8577-e69327c0a0ab.shop-product-header {
	padding: 60px 0 20px 0;
}

/*
 * components/sold_out/cmp_85c2c7de-fd6b-4969-a059-a29d15606271/component.css
 */
#cmp_85c2c7de-fd6b-4969-a059-a29d15606271 {
	background-color: #FFFFFF;
}

#cmp_85c2c7de-fd6b-4969-a059-a29d15606271 h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_85c2c7de-fd6b-4969-a059-a29d15606271 h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_85c2c7de-fd6b-4969-a059-a29d15606271 h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_85c2c7de-fd6b-4969-a059-a29d15606271 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}


#cmp_85c2c7de-fd6b-4969-a059-a29d15606271 .btn {
	background-color: rgb(80, 227, 194);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_85c2c7de-fd6b-4969-a059-a29d15606271 .btn:hover {
	background-color: rgb(184, 233, 134);
	color: #FFFFFF;
}

#cmp_85c2c7de-fd6b-4969-a059-a29d15606271 .component-rich-text-with-button__content-row,
#cmp_85c2c7de-fd6b-4969-a059-a29d15606271 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_85c2c7de-fd6b-4969-a059-a29d15606271 .component-rich-text-with-button__content-row,
	#cmp_85c2c7de-fd6b-4969-a059-a29d15606271 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_85c2c7de-fd6b-4969-a059-a29d15606271 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_85c2c7de-fd6b-4969-a059-a29d15606271 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_85c2c7de-fd6b-4969-a059-a29d15606271  {
	padding-top: 0;
}
/*
 * components/sold_out/cmp_9c899329-fca6-469d-af98-beca760029cd/component.css
 */
#cmp_9c899329-fca6-469d-af98-beca760029cd img {
	max-width: 100%;
}

/*
 * components/subscribe/cmp_0724a4ba-a947-40a3-82ae-9e28467b0e71/component.css
 */
#cmp_0724a4ba-a947-40a3-82ae-9e28467b0e71 {
	background-color: #E8E4E2;
	padding-bottom: 0;
}

#cmp_0724a4ba-a947-40a3-82ae-9e28467b0e71 .progress-bar-container {
	position: relative;
}

#cmp_0724a4ba-a947-40a3-82ae-9e28467b0e71 .progress-bar-filler {
	background: #FFFFFF;
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_0724a4ba-a947-40a3-82ae-9e28467b0e71 .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_0724a4ba-a947-40a3-82ae-9e28467b0e71 .progress-bar .step {
	color: rgb(0, 0, 0);

	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_0724a4ba-a947-40a3-82ae-9e28467b0e71 .progress-bar .step .point {
	background-color: #E8E4E2;
	border: 4px solid #FFFFFF;
	border-radius: 10px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_0724a4ba-a947-40a3-82ae-9e28467b0e71 .progress-bar .step.active .point {
	background-color: rgb(80, 227, 194);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_0724a4ba-a947-40a3-82ae-9e28467b0e71 .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe/cmp_09e12444-57cb-432f-8d02-3eb01cd339b4/component.css
 */
#cmp_09e12444-57cb-432f-8d02-3eb01cd339b4 {
	background-color: #FFFFFF;
}

#cmp_09e12444-57cb-432f-8d02-3eb01cd339b4 h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_09e12444-57cb-432f-8d02-3eb01cd339b4 h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_09e12444-57cb-432f-8d02-3eb01cd339b4 h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_09e12444-57cb-432f-8d02-3eb01cd339b4 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_09e12444-57cb-432f-8d02-3eb01cd339b4 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_09e12444-57cb-432f-8d02-3eb01cd339b4 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_09e12444-57cb-432f-8d02-3eb01cd339b4 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/subscribe/cmp_2bfe024c-41e7-4a89-89ea-b8e30a080ef0/component.css
 */
#cmp_2bfe024c-41e7-4a89-89ea-b8e30a080ef0 {
	background-color: #E8E4E2;
}

#cmp_2bfe024c-41e7-4a89-89ea-b8e30a080ef0 h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_2bfe024c-41e7-4a89-89ea-b8e30a080ef0 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_2bfe024c-41e7-4a89-89ea-b8e30a080ef0 .sf-item {
	background-color: #FFFFFF;
}
#cmp_2bfe024c-41e7-4a89-89ea-b8e30a080ef0  {
	padding-top: 0;
}
/*
 * components/subscribe/cmp_3d460308-4e3e-4f06-b0b3-53bd9f2171cf/component.css
 */
#cmp_3d460308-4e3e-4f06-b0b3-53bd9f2171cf {
	background-color: rgb(80, 227, 194);
}

#cmp_3d460308-4e3e-4f06-b0b3-53bd9f2171cf h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_3d460308-4e3e-4f06-b0b3-53bd9f2171cf h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_3d460308-4e3e-4f06-b0b3-53bd9f2171cf h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_3d460308-4e3e-4f06-b0b3-53bd9f2171cf p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_3d460308-4e3e-4f06-b0b3-53bd9f2171cf .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_3d460308-4e3e-4f06-b0b3-53bd9f2171cf ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_3d460308-4e3e-4f06-b0b3-53bd9f2171cf ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/subscribe/cmp_4ce17124-5696-4a96-aa88-745589addbfa/component.css
 */
#cmp_4ce17124-5696-4a96-aa88-745589addbfa img {
	max-width: 100%;
}

/*
 * components/subscribe/cmp_5f1b57c2-8cab-4d74-9b13-36b2b5322c23/component.css
 */
#cmp_5f1b57c2-8cab-4d74-9b13-36b2b5322c23 img {
	max-width: 100%;
}

/*
 * components/subscribe/cmp_a7be9547-1cb4-4371-be58-c4edffbb1a6f/component.css
 */
#cmp_a7be9547-1cb4-4371-be58-c4edffbb1a6f {
	background-color: #E8E4E2;
}

#cmp_a7be9547-1cb4-4371-be58-c4edffbb1a6f h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_a7be9547-1cb4-4371-be58-c4edffbb1a6f h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_a7be9547-1cb4-4371-be58-c4edffbb1a6f h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_a7be9547-1cb4-4371-be58-c4edffbb1a6f p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_a7be9547-1cb4-4371-be58-c4edffbb1a6f .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_a7be9547-1cb4-4371-be58-c4edffbb1a6f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_a7be9547-1cb4-4371-be58-c4edffbb1a6f ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_a7be9547-1cb4-4371-be58-c4edffbb1a6f  {
	padding-bottom: 0;
}
/*
 * components/subscribe/cmp_bb60d029-5754-4d46-af95-a37ce46211ff/component.css
 */
#cmp_bb60d029-5754-4d46-af95-a37ce46211ff img {
	max-width: 100%;
}

/*
 * components/subscribe/cmp_cdec779a-a11d-4a13-a659-5e6197d4edc6/component.css
 */
#cmp_cdec779a-a11d-4a13-a659-5e6197d4edc6 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_cdec779a-a11d-4a13-a659-5e6197d4edc6 .content {
	padding: 0;
}

#cmp_cdec779a-a11d-4a13-a659-5e6197d4edc6 .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_cdec779a-a11d-4a13-a659-5e6197d4edc6 .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/subscribe/cmp_d79ffb19-73bc-4a1b-bef4-657ddc6dbd63/component.css
 */
#cmp_d79ffb19-73bc-4a1b-bef4-657ddc6dbd63 img {
	max-width: 100%;
}

/*
 * components/subscribe/cmp_eaaa376a-eeda-4533-94db-a05f006fa7aa/component.css
 */
#cmp_eaaa376a-eeda-4533-94db-a05f006fa7aa {
	background-color: rgb(80, 227, 194);
}

#cmp_eaaa376a-eeda-4533-94db-a05f006fa7aa h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_eaaa376a-eeda-4533-94db-a05f006fa7aa h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_eaaa376a-eeda-4533-94db-a05f006fa7aa h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_eaaa376a-eeda-4533-94db-a05f006fa7aa p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_eaaa376a-eeda-4533-94db-a05f006fa7aa .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_eaaa376a-eeda-4533-94db-a05f006fa7aa ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_eaaa376a-eeda-4533-94db-a05f006fa7aa ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/subscribe/cmp_f3526918-e6f4-4de9-bca8-eebc68ad027d/component.css
 */
#cmp_f3526918-e6f4-4de9-bca8-eebc68ad027d img {
	max-width: 100%;
}

/*
 * components/subscribe_flow/addons_step/cmp_4fc6b974-2dad-4289-ac40-71831c1d65e6/component.css
 */
#cmp_4fc6b974-2dad-4289-ac40-71831c1d65e6 {
	background-color: rgb(80, 227, 194);
}

#cmp_4fc6b974-2dad-4289-ac40-71831c1d65e6 h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_4fc6b974-2dad-4289-ac40-71831c1d65e6 h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_4fc6b974-2dad-4289-ac40-71831c1d65e6 h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_4fc6b974-2dad-4289-ac40-71831c1d65e6 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_4fc6b974-2dad-4289-ac40-71831c1d65e6 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_4fc6b974-2dad-4289-ac40-71831c1d65e6 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_4fc6b974-2dad-4289-ac40-71831c1d65e6 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/subscribe_flow/addons_step/cmp_7e6644f5-9844-420a-87e6-11049ad28218/component.css
 */
#cmp_7e6644f5-9844-420a-87e6-11049ad28218 {
	background-color: rgba(155, 155, 155, 0.26);
}

#cmp_7e6644f5-9844-420a-87e6-11049ad28218 h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_7e6644f5-9844-420a-87e6-11049ad28218 h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_7e6644f5-9844-420a-87e6-11049ad28218 h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_7e6644f5-9844-420a-87e6-11049ad28218 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_7e6644f5-9844-420a-87e6-11049ad28218 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_7e6644f5-9844-420a-87e6-11049ad28218 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_7e6644f5-9844-420a-87e6-11049ad28218 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/subscribe_flow/addons_step/cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9/component.css
 */
#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9.addons-container {
	margin-right: auto;
	margin-left: auto;

	max-width: 940px;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-products-row {
	border: 1px solid #D3D3D3;

	padding-left: 40px;
	padding-right: 40px;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

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

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product + .addons-product {
	border-top: 1px solid #D3D3D3;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-left {
	padding-right: 30px;

	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-image {
	width: 100%;
	height: 100%;
	min-height: 275px;

	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-right {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;

	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;

	margin-bottom: 15px;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-top-right {
	text-align: right;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-btn-cart {
	padding: 7px 12px;

	font-family: ;
	font-size: 14px;

	color: #FFFFFF;
	background-color: rgb(80, 227, 194);
}

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

#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: rgb(80, 227, 194);
}

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

@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/addons_step/cmp_a255ac62-cab8-49fe-926d-24876e7224cc/component.css
 */
#cmp_a255ac62-cab8-49fe-926d-24876e7224cc img {
	max-width: 100%;
}

/*
 * components/subscribe_flow/addons_step/cmp_e4beb3bf-41f1-4b64-85e9-89ed002d8acc/component.css
 */
#cmp_e4beb3bf-41f1-4b64-85e9-89ed002d8acc img {
	max-width: 100%;
}

/*
 * components/subscribe_flow/survey_step/cmp_0bfe9a1f-d08c-4f97-8725-e3fe8cd8ce91/component.css
 */
#cmp_0bfe9a1f-d08c-4f97-8725-e3fe8cd8ce91 {
	background-color: #E8E4E2;
}

#cmp_0bfe9a1f-d08c-4f97-8725-e3fe8cd8ce91 h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_0bfe9a1f-d08c-4f97-8725-e3fe8cd8ce91 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_0bfe9a1f-d08c-4f97-8725-e3fe8cd8ce91  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_1f9108ce-21e2-4e35-a1ce-e81329c5b517/component.css
 */
#cmp_1f9108ce-21e2-4e35-a1ce-e81329c5b517 {
	background-color: rgb(80, 227, 194);
}

#cmp_1f9108ce-21e2-4e35-a1ce-e81329c5b517 h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_1f9108ce-21e2-4e35-a1ce-e81329c5b517 h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_1f9108ce-21e2-4e35-a1ce-e81329c5b517 h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_1f9108ce-21e2-4e35-a1ce-e81329c5b517 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_1f9108ce-21e2-4e35-a1ce-e81329c5b517 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_1f9108ce-21e2-4e35-a1ce-e81329c5b517 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_1f9108ce-21e2-4e35-a1ce-e81329c5b517 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/subscribe_flow/survey_step/cmp_4c7aeb75-80d4-45fa-8aff-fea054bd48ad/component.css
 */
#cmp_4c7aeb75-80d4-45fa-8aff-fea054bd48ad img {
	max-width: 100%;
}

/*
 * components/subscribe_flow/survey_step/cmp_5c9b5aa9-8f80-4e65-bb10-53022f1c8aa7/component.css
 */
#cmp_5c9b5aa9-8f80-4e65-bb10-53022f1c8aa7 {
	background-color: rgb(255, 255, 255);
	padding-bottom: 0;
}

#cmp_5c9b5aa9-8f80-4e65-bb10-53022f1c8aa7 h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_5c9b5aa9-8f80-4e65-bb10-53022f1c8aa7 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}
#cmp_5c9b5aa9-8f80-4e65-bb10-53022f1c8aa7  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_67afbae5-c67b-4b46-b6a8-a6aa46d5630e/component.css
 */
#cmp_67afbae5-c67b-4b46-b6a8-a6aa46d5630e {
	background-color: #E8E4E2;
	padding-bottom: 0;
}

#cmp_67afbae5-c67b-4b46-b6a8-a6aa46d5630e .progress-bar-container {
	position: relative;
}

#cmp_67afbae5-c67b-4b46-b6a8-a6aa46d5630e .progress-bar-filler {
	background: #FFFFFF;
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_67afbae5-c67b-4b46-b6a8-a6aa46d5630e .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_67afbae5-c67b-4b46-b6a8-a6aa46d5630e .progress-bar .step {
	color: rgb(0, 0, 0);

	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_67afbae5-c67b-4b46-b6a8-a6aa46d5630e .progress-bar .step .point {
	background-color: #E8E4E2;
	border: 4px solid #FFFFFF;
	border-radius: 10px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_67afbae5-c67b-4b46-b6a8-a6aa46d5630e .progress-bar .step.active .point {
	background-color: rgb(80, 227, 194);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_67afbae5-c67b-4b46-b6a8-a6aa46d5630e .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe_flow/survey_step/cmp_a1616a5e-6405-4676-8c7d-def0d2db0b8d/component.css
 */
#cmp_a1616a5e-6405-4676-8c7d-def0d2db0b8d img {
	max-width: 100%;
}

/*
 * components/subscribe_flow/survey_step/cmp_bcef43e1-c8b3-4834-a633-423d0e329aa3/component.css
 */
#cmp_bcef43e1-c8b3-4834-a633-423d0e329aa3 img {
	max-width: 100%;
}

/*
 * components/subscribe_flow/survey_step/cmp_c5a075e1-47f0-4f8b-a07d-b440aa6cc090/component.css
 */
#cmp_c5a075e1-47f0-4f8b-a07d-b440aa6cc090 img {
	max-width: 100%;
}

/*
 * components/subscribe_flow/terms_step/cmp_0885695e-1be1-49a9-8606-1d186144b066/component.css
 */
#cmp_0885695e-1be1-49a9-8606-1d186144b066 {
	background-color: #FFFFFF;
}

#cmp_0885695e-1be1-49a9-8606-1d186144b066 h1 {
	color: rgb(208, 2, 27);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_0885695e-1be1-49a9-8606-1d186144b066 h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_0885695e-1be1-49a9-8606-1d186144b066 h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_0885695e-1be1-49a9-8606-1d186144b066 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_0885695e-1be1-49a9-8606-1d186144b066 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_0885695e-1be1-49a9-8606-1d186144b066 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_0885695e-1be1-49a9-8606-1d186144b066 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/subscribe_flow/terms_step/cmp_0cfbedfa-5fe9-4123-8e3f-ae268e9ae42a/component.css
 */
#cmp_0cfbedfa-5fe9-4123-8e3f-ae268e9ae42a img {
	max-width: 100%;
}

/*
 * components/subscribe_flow/terms_step/cmp_33ee335d-d37c-4f83-bb1a-c1bf0dfe1ab4/component.css
 */
#cmp_33ee335d-d37c-4f83-bb1a-c1bf0dfe1ab4 img {
	max-width: 100%;
}

/*
 * components/subscribe_flow/terms_step/cmp_3b727549-6a77-4318-95c3-a246b764e21e/component.css
 */
#cmp_3b727549-6a77-4318-95c3-a246b764e21e {
	background-color: #E8E4E2;
}

#cmp_3b727549-6a77-4318-95c3-a246b764e21e h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_3b727549-6a77-4318-95c3-a246b764e21e h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_3b727549-6a77-4318-95c3-a246b764e21e p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_3b727549-6a77-4318-95c3-a246b764e21e .sf-item {
	background-color: #FFFFFF;
}
#cmp_3b727549-6a77-4318-95c3-a246b764e21e  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/terms_step/cmp_5bcb27f2-1bd1-46a4-8009-76a2cf6880c9/component.css
 */
#cmp_5bcb27f2-1bd1-46a4-8009-76a2cf6880c9 {
	background-color: #E8E4E2;
	padding-bottom: 0;
}

#cmp_5bcb27f2-1bd1-46a4-8009-76a2cf6880c9 .progress-bar-container {
	position: relative;
}

#cmp_5bcb27f2-1bd1-46a4-8009-76a2cf6880c9 .progress-bar-filler {
	background: #FFFFFF;
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_5bcb27f2-1bd1-46a4-8009-76a2cf6880c9 .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_5bcb27f2-1bd1-46a4-8009-76a2cf6880c9 .progress-bar .step {
	color: rgb(0, 0, 0);

	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_5bcb27f2-1bd1-46a4-8009-76a2cf6880c9 .progress-bar .step .point {
	background-color: #E8E4E2;
	border: 4px solid #FFFFFF;
	border-radius: 10px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_5bcb27f2-1bd1-46a4-8009-76a2cf6880c9 .progress-bar .step.active .point {
	background-color: rgb(80, 227, 194);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_5bcb27f2-1bd1-46a4-8009-76a2cf6880c9 .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe_flow/terms_step/cmp_6d78310b-7b7b-49ca-94c1-36d2490d0e2c/component.css
 */
#cmp_6d78310b-7b7b-49ca-94c1-36d2490d0e2c {
	background-color: rgb(255, 255, 255);
	padding-bottom: 0;
}

#cmp_6d78310b-7b7b-49ca-94c1-36d2490d0e2c h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_6d78310b-7b7b-49ca-94c1-36d2490d0e2c p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}
#cmp_6d78310b-7b7b-49ca-94c1-36d2490d0e2c  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/terms_step/cmp_8f76c367-09f5-4d1b-8a29-eb6af19e1840/component.css
 */
#cmp_8f76c367-09f5-4d1b-8a29-eb6af19e1840 img {
	max-width: 100%;
}

/*
 * components/subscribe_flow/terms_step/cmp_a032e4ae-444a-4b2d-839c-cfa39e9d36fc/component.css
 */
#cmp_a032e4ae-444a-4b2d-839c-cfa39e9d36fc img {
	max-width: 100%;
}

/*
 * components/subscribe_flow/terms_step/cmp_acade421-5fcc-492c-be3c-4449043f42d7/component.css
 */
#cmp_acade421-5fcc-492c-be3c-4449043f42d7 {
	background-color: rgb(80, 227, 194);
}

#cmp_acade421-5fcc-492c-be3c-4449043f42d7 h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_acade421-5fcc-492c-be3c-4449043f42d7 h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_acade421-5fcc-492c-be3c-4449043f42d7 h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_acade421-5fcc-492c-be3c-4449043f42d7 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_acade421-5fcc-492c-be3c-4449043f42d7 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_acade421-5fcc-492c-be3c-4449043f42d7 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_acade421-5fcc-492c-be3c-4449043f42d7 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/subscribe_flow/variant_step/cmp_12b71e2a-f5c0-4a8f-b16f-81c748e5fb90/component.css
 */
#cmp_12b71e2a-f5c0-4a8f-b16f-81c748e5fb90 {
	background-color: #E8E4E2;
	padding-bottom: 0;
}

#cmp_12b71e2a-f5c0-4a8f-b16f-81c748e5fb90 .progress-bar-container {
	position: relative;
}

#cmp_12b71e2a-f5c0-4a8f-b16f-81c748e5fb90 .progress-bar-filler {
	background: #FFFFFF;
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_12b71e2a-f5c0-4a8f-b16f-81c748e5fb90 .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_12b71e2a-f5c0-4a8f-b16f-81c748e5fb90 .progress-bar .step {
	color: rgb(0, 0, 0);

	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_12b71e2a-f5c0-4a8f-b16f-81c748e5fb90 .progress-bar .step .point {
	background-color: #E8E4E2;
	border: 4px solid #FFFFFF;
	border-radius: 10px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_12b71e2a-f5c0-4a8f-b16f-81c748e5fb90 .progress-bar .step.active .point {
	background-color: rgb(80, 227, 194);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_12b71e2a-f5c0-4a8f-b16f-81c748e5fb90 .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe_flow/variant_step/cmp_3b7e15de-3ca0-41b3-a624-16be39f32e7a/component.css
 */
#cmp_3b7e15de-3ca0-41b3-a624-16be39f32e7a {
	background-color: #E8E4E2;
}

#cmp_3b7e15de-3ca0-41b3-a624-16be39f32e7a h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_3b7e15de-3ca0-41b3-a624-16be39f32e7a p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_3b7e15de-3ca0-41b3-a624-16be39f32e7a .sf-item {
	background-color: #FFFFFF;
}
#cmp_3b7e15de-3ca0-41b3-a624-16be39f32e7a  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_7931a8e7-4fcd-42f3-bc89-6f3eca2d5110/component.css
 */
#cmp_7931a8e7-4fcd-42f3-bc89-6f3eca2d5110 img {
	max-width: 100%;
}

/*
 * components/subscribe_flow/variant_step/cmp_a8a71a2d-360f-43f9-8403-cebcf13e8ed1/component.css
 */
#cmp_a8a71a2d-360f-43f9-8403-cebcf13e8ed1 {
	background-color: rgb(255, 255, 255);
	padding-bottom: 0;
}

#cmp_a8a71a2d-360f-43f9-8403-cebcf13e8ed1 h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_a8a71a2d-360f-43f9-8403-cebcf13e8ed1 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}
#cmp_a8a71a2d-360f-43f9-8403-cebcf13e8ed1  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_ada01286-80fe-4d89-b0ff-766c2edf4ece/component.css
 */
#cmp_ada01286-80fe-4d89-b0ff-766c2edf4ece {
	background-color: rgb(80, 227, 194);
}

#cmp_ada01286-80fe-4d89-b0ff-766c2edf4ece h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_ada01286-80fe-4d89-b0ff-766c2edf4ece h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_ada01286-80fe-4d89-b0ff-766c2edf4ece h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_ada01286-80fe-4d89-b0ff-766c2edf4ece p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_ada01286-80fe-4d89-b0ff-766c2edf4ece .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_ada01286-80fe-4d89-b0ff-766c2edf4ece ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_ada01286-80fe-4d89-b0ff-766c2edf4ece ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/subscribe_flow/variant_step/cmp_b1ef492d-d0df-4cb6-86c1-0158cd8d3913/component.css
 */
#cmp_b1ef492d-d0df-4cb6-86c1-0158cd8d3913 img {
	max-width: 100%;
}

/*
 * components/subscribe_flow/variant_step/cmp_d6b400ba-40d6-402d-8751-02310cbe6223/component.css
 */
#cmp_d6b400ba-40d6-402d-8751-02310cbe6223 img {
	max-width: 100%;
}

/*
 * components/subscribe_flow/variant_step/cmp_edf32b20-fca8-4694-9c4f-d96ba728a01f/component.css
 */
#cmp_edf32b20-fca8-4694-9c4f-d96ba728a01f img {
	max-width: 100%;
}

/*
 * components/terms_of_service/cmp_3e13185f-aedb-4ec7-8cd8-44587e454ddc/component.css
 */
#cmp_3e13185f-aedb-4ec7-8cd8-44587e454ddc {
	background-color: #FFFFFF;
}

#cmp_3e13185f-aedb-4ec7-8cd8-44587e454ddc h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_3e13185f-aedb-4ec7-8cd8-44587e454ddc h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_3e13185f-aedb-4ec7-8cd8-44587e454ddc h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_3e13185f-aedb-4ec7-8cd8-44587e454ddc p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_3e13185f-aedb-4ec7-8cd8-44587e454ddc .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_3e13185f-aedb-4ec7-8cd8-44587e454ddc ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_3e13185f-aedb-4ec7-8cd8-44587e454ddc ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/view-cart/cmp_4c8b3907-67a7-4e57-94d6-7cddeb1206ba/component.css
 */
#cmp_4c8b3907-67a7-4e57-94d6-7cddeb1206ba {
	background-color: #FFFFFF;
}

#cmp_4c8b3907-67a7-4e57-94d6-7cddeb1206ba h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_4c8b3907-67a7-4e57-94d6-7cddeb1206ba h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_4c8b3907-67a7-4e57-94d6-7cddeb1206ba h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_4c8b3907-67a7-4e57-94d6-7cddeb1206ba p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_4c8b3907-67a7-4e57-94d6-7cddeb1206ba .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_4c8b3907-67a7-4e57-94d6-7cddeb1206ba ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_4c8b3907-67a7-4e57-94d6-7cddeb1206ba ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/view-cart/cmp_5de5cf90-5f1c-48ab-8507-e2e44f205d76/component.css
 */
#cmp_5de5cf90-5f1c-48ab-8507-e2e44f205d76 {
	padding: 15px 15px 100px 15px;
}

#cmp_5de5cf90-5f1c-48ab-8507-e2e44f205d76 .cart-thead {
	border-bottom: 1px solid #E1E1E1;
	padding: 10px 0;
}

#cmp_5de5cf90-5f1c-48ab-8507-e2e44f205d76 .cart-thead h3 {
	text-transform: uppercase;
}

#cmp_5de5cf90-5f1c-48ab-8507-e2e44f205d76 .cart-item {
	border: 1px solid #E1E1E1;
	padding: 25px 0;
	position: relative;
}

#cmp_5de5cf90-5f1c-48ab-8507-e2e44f205d76 .product-main {
	margin: 0 0 15px 0;
}

#cmp_5de5cf90-5f1c-48ab-8507-e2e44f205d76 .product-label p {
	margin: 0;
}

#cmp_5de5cf90-5f1c-48ab-8507-e2e44f205d76 .product-label .info {
	color: rgb(0, 0, 0);
	text-align: right;
	text-transform: uppercase;
}

#cmp_5de5cf90-5f1c-48ab-8507-e2e44f205d76 .product-label .meta {
	color: rgb(0, 0, 0);
	font-size: 14px;
}

#cmp_5de5cf90-5f1c-48ab-8507-e2e44f205d76 .product-rem-btn {
	position: absolute;
	right: 1%;
	top: 1%;
}

#cmp_5de5cf90-5f1c-48ab-8507-e2e44f205d76 figure {
	margin: 0 0 15px 0;
}

#cmp_5de5cf90-5f1c-48ab-8507-e2e44f205d76 .cart-subtotal {
	margin: 50px 0 0 0;
}

#cmp_5de5cf90-5f1c-48ab-8507-e2e44f205d76 .cart-subtotal h2 {
	margin: 0 0 15px 0;
}

#cmp_5de5cf90-5f1c-48ab-8507-e2e44f205d76 .cart-subtotal h3 {
	margin: 0 0 25px 0;
	text-transform: uppercase;
}

#cmp_5de5cf90-5f1c-48ab-8507-e2e44f205d76 .cart-subtotal p {
	margin: 0 0 25px 0;
}

@media (min-width: 768px) {
	#cmp_5de5cf90-5f1c-48ab-8507-e2e44f205d76 .cart-item {
		border-width: 0 0 1px 0;
	}
	#cmp_5de5cf90-5f1c-48ab-8507-e2e44f205d76 .product-rem-btn {
		top: 40%;
	}
	#cmp_5de5cf90-5f1c-48ab-8507-e2e44f205d76 figure {
		margin: 0;
	}
}