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

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

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

h1 {
	color: 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(0, 0, 0);
}

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

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

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

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

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

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

.btn-secondary {
	background-color: rgb(0, 0, 0);
	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(0, 0, 0);
	color: #FFFFFF;
}

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

.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(0, 0, 0);
	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(0, 0, 0);
	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(0, 0, 0);
}

.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(0, 0, 0);
	color: rgb(0, 0, 0);
	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(0, 0, 0);
	border-color: rgb(0, 0, 0);
	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_0b0d385c-3b16-4170-9391-8deffbf5838f/component.css
 */
#cmp_0b0d385c-3b16-4170-9391-8deffbf5838f {
	background-color: #E8E4E2;
}

#cmp_0b0d385c-3b16-4170-9391-8deffbf5838f h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_0b0d385c-3b16-4170-9391-8deffbf5838f h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_0b0d385c-3b16-4170-9391-8deffbf5838f h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_0b0d385c-3b16-4170-9391-8deffbf5838f p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_0b0d385c-3b16-4170-9391-8deffbf5838f .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_0b0d385c-3b16-4170-9391-8deffbf5838f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_0b0d385c-3b16-4170-9391-8deffbf5838f ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/about/cmp_684ad407-bdc9-4aba-a94d-3222239d96e6/component.css
 */
#cmp_684ad407-bdc9-4aba-a94d-3222239d96e6 {
	background-color: #FFFFFF;
}

#cmp_684ad407-bdc9-4aba-a94d-3222239d96e6 h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_684ad407-bdc9-4aba-a94d-3222239d96e6 h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_684ad407-bdc9-4aba-a94d-3222239d96e6 h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_684ad407-bdc9-4aba-a94d-3222239d96e6 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_684ad407-bdc9-4aba-a94d-3222239d96e6 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_684ad407-bdc9-4aba-a94d-3222239d96e6 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_684ad407-bdc9-4aba-a94d-3222239d96e6 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/about/cmp_e1a19dba-d3ab-4193-bc33-2cf17e2d30d7/component.css
 */
#cmp_e1a19dba-d3ab-4193-bc33-2cf17e2d30d7 {
	background-color: #E8E4E2;
}

#cmp_e1a19dba-d3ab-4193-bc33-2cf17e2d30d7 h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_e1a19dba-d3ab-4193-bc33-2cf17e2d30d7 h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_e1a19dba-d3ab-4193-bc33-2cf17e2d30d7 h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_e1a19dba-d3ab-4193-bc33-2cf17e2d30d7 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}


#cmp_e1a19dba-d3ab-4193-bc33-2cf17e2d30d7 .btn {
	background-color: rgb(0, 0, 0);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_e1a19dba-d3ab-4193-bc33-2cf17e2d30d7 .btn:hover {
	background-color: rgb(0, 0, 0);
	color: #FFFFFF;
}

#cmp_e1a19dba-d3ab-4193-bc33-2cf17e2d30d7 .component-rich-text-with-button__content-row,
#cmp_e1a19dba-d3ab-4193-bc33-2cf17e2d30d7 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_e1a19dba-d3ab-4193-bc33-2cf17e2d30d7 .component-rich-text-with-button__content-row,
	#cmp_e1a19dba-d3ab-4193-bc33-2cf17e2d30d7 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_e1a19dba-d3ab-4193-bc33-2cf17e2d30d7 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_e1a19dba-d3ab-4193-bc33-2cf17e2d30d7 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/checkout/cmp_ca4206b2-8837-4334-b661-128d29d4148d/component.css
 */
#cmp_ca4206b2-8837-4334-b661-128d29d4148d .checkout_content {
	overflow: auto;
}

#cmp_ca4206b2-8837-4334-b661-128d29d4148d .checkout_content section {
	border-color: #F5F5F5;
}

#cmp_ca4206b2-8837-4334-b661-128d29d4148d .cart_listing table {
	border-color: #F5F5F5;
}

/*
 * components/customer/account/cmp_baf03d12-3562-4f0a-aec7-67bbc981acf7/component.css
 */

/*
 * components/customer/edit/cmp_2bdd69f2-583b-4b9c-adc6-e4d5b0956362/component.css
 */

/*
 * components/customer/forgot_password/cmp_c2cc10e0-f3b3-431d-9746-c43c66ab4c49/component.css
 */
#cmp_c2cc10e0-f3b3-431d-9746-c43c66ab4c49 {
	background-color: #FFFFFF;
}

#cmp_c2cc10e0-f3b3-431d-9746-c43c66ab4c49 h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_c2cc10e0-f3b3-431d-9746-c43c66ab4c49 h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_c2cc10e0-f3b3-431d-9746-c43c66ab4c49 h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_c2cc10e0-f3b3-431d-9746-c43c66ab4c49 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_c2cc10e0-f3b3-431d-9746-c43c66ab4c49 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_c2cc10e0-f3b3-431d-9746-c43c66ab4c49 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_c2cc10e0-f3b3-431d-9746-c43c66ab4c49 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/customer/forgot_password/cmp_efc40655-160e-4fad-bb6d-5e686f08c23e/component.css
 */
#cmp_efc40655-160e-4fad-bb6d-5e686f08c23e {
	padding: 0 0 120px 0;
}
/*
 * components/customer/login/cmp_1d9366b6-1ffb-4dae-b462-61f91238f160/component.css
 */
#cmp_1d9366b6-1ffb-4dae-b462-61f91238f160 {
	padding: 0 0 120px 0;
}
/*
 * components/customer/login/cmp_513cd237-7ee2-4bdc-af90-41a2ddee801c/component.css
 */
#cmp_513cd237-7ee2-4bdc-af90-41a2ddee801c {
	background-color: #FFFFFF;
}

#cmp_513cd237-7ee2-4bdc-af90-41a2ddee801c h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_513cd237-7ee2-4bdc-af90-41a2ddee801c h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_513cd237-7ee2-4bdc-af90-41a2ddee801c h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_513cd237-7ee2-4bdc-af90-41a2ddee801c p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_513cd237-7ee2-4bdc-af90-41a2ddee801c .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_513cd237-7ee2-4bdc-af90-41a2ddee801c ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_513cd237-7ee2-4bdc-af90-41a2ddee801c ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/customer/order/cmp_b96a22d4-197e-4fb6-bf3f-97847a3817d4/component.css
 */

/*
 * components/customer/orders/cmp_79d37076-e9f9-4917-b0c9-b475d3521f43/component.css
 */

/*
 * components/customer/password_reset/cmp_0b456eec-f477-40a2-9821-6fad00635fdf/component.css
 */
#cmp_0b456eec-f477-40a2-9821-6fad00635fdf {
	background-color: #FFFFFF;
}

#cmp_0b456eec-f477-40a2-9821-6fad00635fdf h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_0b456eec-f477-40a2-9821-6fad00635fdf h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_0b456eec-f477-40a2-9821-6fad00635fdf h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_0b456eec-f477-40a2-9821-6fad00635fdf p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_0b456eec-f477-40a2-9821-6fad00635fdf .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_0b456eec-f477-40a2-9821-6fad00635fdf ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_0b456eec-f477-40a2-9821-6fad00635fdf ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/customer/password_reset/cmp_4be11aec-c3c8-4339-b894-298109ac7f57/component.css
 */
#cmp_4be11aec-c3c8-4339-b894-298109ac7f57 {
	padding: 0 0 120px 0;
}
/*
 * components/customer/thank_you/cmp_503fcec0-5e14-4586-9059-b22538a3a35c/component.css
 */

/*
 * components/faq/cmp_9bcd845b-01f3-4936-987d-8aab68e38cd6/component.css
 */
#cmp_9bcd845b-01f3-4936-987d-8aab68e38cd6 {
	background-color: #FFFFFF;
}

#cmp_9bcd845b-01f3-4936-987d-8aab68e38cd6 h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_9bcd845b-01f3-4936-987d-8aab68e38cd6 h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_9bcd845b-01f3-4936-987d-8aab68e38cd6 h3 {
	color: #000000;
	font-family: Oswald;
	font-size: 24px;
}

#cmp_9bcd845b-01f3-4936-987d-8aab68e38cd6 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_9bcd845b-01f3-4936-987d-8aab68e38cd6 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_9bcd845b-01f3-4936-987d-8aab68e38cd6 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_9bcd845b-01f3-4936-987d-8aab68e38cd6 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_9bcd845b-01f3-4936-987d-8aab68e38cd6 h2 {
	margin: 0 0 40px 0;
}
#cmp_9bcd845b-01f3-4936-987d-8aab68e38cd6 p {
	border-bottom: 1px solid #EEEEEE;
	padding: 0 0 25px 0;
}
/*
 * components/faq/cmp_e2980138-bf80-46e5-96a6-c069de02b86a/component.css
 */
#cmp_e2980138-bf80-46e5-96a6-c069de02b86a {
	background-color: #E8E4E2;
}

#cmp_e2980138-bf80-46e5-96a6-c069de02b86a h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_e2980138-bf80-46e5-96a6-c069de02b86a h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_e2980138-bf80-46e5-96a6-c069de02b86a h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_e2980138-bf80-46e5-96a6-c069de02b86a p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}


#cmp_e2980138-bf80-46e5-96a6-c069de02b86a .btn {
	background-color: rgb(0, 0, 0);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_e2980138-bf80-46e5-96a6-c069de02b86a .btn:hover {
	background-color: rgb(0, 0, 0);
	color: #FFFFFF;
}

#cmp_e2980138-bf80-46e5-96a6-c069de02b86a .component-rich-text-with-button__content-row,
#cmp_e2980138-bf80-46e5-96a6-c069de02b86a .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_e2980138-bf80-46e5-96a6-c069de02b86a .component-rich-text-with-button__content-row,
	#cmp_e2980138-bf80-46e5-96a6-c069de02b86a .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_e2980138-bf80-46e5-96a6-c069de02b86a ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_e2980138-bf80-46e5-96a6-c069de02b86a ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/global/cmp_3f51379d-4008-493c-b505-007fa7b16453/component.css
 */
#cmp_3f51379d-4008-493c-b505-007fa7b16453 {
	background-color: #FFFFFF;
}

#cmp_3f51379d-4008-493c-b505-007fa7b16453 h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_3f51379d-4008-493c-b505-007fa7b16453 h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_3f51379d-4008-493c-b505-007fa7b16453 h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_3f51379d-4008-493c-b505-007fa7b16453 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}


#cmp_3f51379d-4008-493c-b505-007fa7b16453 .btn {
	background-color: rgb(0, 0, 0);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_3f51379d-4008-493c-b505-007fa7b16453 .btn:hover {
	background-color: rgb(0, 0, 0);
	color: #FFFFFF;
}

#cmp_3f51379d-4008-493c-b505-007fa7b16453 .component-rich-text-with-button__content-row,
#cmp_3f51379d-4008-493c-b505-007fa7b16453 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_3f51379d-4008-493c-b505-007fa7b16453 .component-rich-text-with-button__content-row,
	#cmp_3f51379d-4008-493c-b505-007fa7b16453 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_3f51379d-4008-493c-b505-007fa7b16453 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_3f51379d-4008-493c-b505-007fa7b16453 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_3f51379d-4008-493c-b505-007fa7b16453  {
	padding-top: 0;
}
/*
 * components/global/cmp_511cf02d-bf73-4d8b-9231-930cd5359612/component.css
 */
#cmp_511cf02d-bf73-4d8b-9231-930cd5359612.footer {
	background-color: rgb(65, 117, 5);
	color: #FFFFFF;
	font-family: Lato;
	padding: 25px 0;

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

#cmp_511cf02d-bf73-4d8b-9231-930cd5359612.footer p {
	color: #FFFFFF;
}

#cmp_511cf02d-bf73-4d8b-9231-930cd5359612 .footer-subscribe {
	padding: 15px 0;
}

#cmp_511cf02d-bf73-4d8b-9231-930cd5359612 .footer-subscribe .btn {
	border: 1px solid #FFFFFF;
}

#cmp_511cf02d-bf73-4d8b-9231-930cd5359612 .footer-social {
	padding: 15px 0;
}

#cmp_511cf02d-bf73-4d8b-9231-930cd5359612 .footer-social a {
	display: inline-block;
	padding: 0 5px;
}

#cmp_511cf02d-bf73-4d8b-9231-930cd5359612 .footer-social svg path {
	fill: #FFFFFF;
}

#cmp_511cf02d-bf73-4d8b-9231-930cd5359612 .footer-social a:hover svg path,
#cmp_511cf02d-bf73-4d8b-9231-930cd5359612 .footer-social a:focus svg path,
#cmp_511cf02d-bf73-4d8b-9231-930cd5359612 .footer-social a:active svg path {
	fill: rgb(0, 0, 0);
}

#cmp_511cf02d-bf73-4d8b-9231-930cd5359612 .footer-contact {
	padding: 15px 0;

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

#cmp_511cf02d-bf73-4d8b-9231-930cd5359612 .footer-contact p {
	margin: 0 0 0.5em 0;
}

@media (min-width: 768px) {
	#cmp_511cf02d-bf73-4d8b-9231-930cd5359612.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_c60bdbbf-bd63-495d-8001-71633d3f4d0e/component.css
 */
#cmp_c60bdbbf-bd63-495d-8001-71633d3f4d0e {
	border-bottom: 4px solid #E8E4E2;
	padding: 0;
}

#cmp_c60bdbbf-bd63-495d-8001-71633d3f4d0e .navbar {
	background-color: #FFFFFF;
	border-radius: 0;
	padding: 0;

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

#cmp_c60bdbbf-bd63-495d-8001-71633d3f4d0e .navbar a:hover,
#cmp_c60bdbbf-bd63-495d-8001-71633d3f4d0e .navbar a:focus,
#cmp_c60bdbbf-bd63-495d-8001-71633d3f4d0e .navbar a:active {
	color: rgb(0, 0, 0);
}

#cmp_c60bdbbf-bd63-495d-8001-71633d3f4d0e .navbar-brand {
	color: #000000;
	font-family: Oswald;
	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_c60bdbbf-bd63-495d-8001-71633d3f4d0e .navbar-brand img {
	max-width: 100%;
}

#cmp_c60bdbbf-bd63-495d-8001-71633d3f4d0e .navbar .navbar-toggler {
	background-color: rgb(0, 0, 0);
	border-radius: 0;
	color: #FFFFFF;
	font-size: 14px;
	letter-spacing: 0.071em;
	padding: 15px;
	text-transform: uppercase;
}

#cmp_c60bdbbf-bd63-495d-8001-71633d3f4d0e .navbar .navbar-toggler:hover,
#cmp_c60bdbbf-bd63-495d-8001-71633d3f4d0e .navbar .navbar-toggler:focus,
#cmp_c60bdbbf-bd63-495d-8001-71633d3f4d0e .navbar .navbar-toggler:active {
	background-color: rgb(0, 0, 0);
	color: #FFFFFF;
}

#cmp_c60bdbbf-bd63-495d-8001-71633d3f4d0e .navbar-nav {
	background-color: rgb(0, 0, 0);
	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_c60bdbbf-bd63-495d-8001-71633d3f4d0e .navbar-nav li {
	padding-top: 10px;
	padding-bottom: 10px;
}

#cmp_c60bdbbf-bd63-495d-8001-71633d3f4d0e .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_c60bdbbf-bd63-495d-8001-71633d3f4d0e {
		border-width: 0;
	}
	#cmp_c60bdbbf-bd63-495d-8001-71633d3f4d0e .dropdown-menu {
		background-color: rgb(0, 0, 0);
	}
}

@media (min-width: 768px) {
	#cmp_c60bdbbf-bd63-495d-8001-71633d3f4d0e .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_c60bdbbf-bd63-495d-8001-71633d3f4d0e .navbar-brand {
		padding: 0;
		padding-bottom: 15px;
	}
	#cmp_c60bdbbf-bd63-495d-8001-71633d3f4d0e .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_c60bdbbf-bd63-495d-8001-71633d3f4d0e .navbar-nav {
		background-color: #FFFFFF;
		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_c60bdbbf-bd63-495d-8001-71633d3f4d0e .navbar-nav li {
		padding: 0;
	}
	#cmp_c60bdbbf-bd63-495d-8001-71633d3f4d0e .navbar-nav .nav-link {
		color: #757575;
	}
	#cmp_c60bdbbf-bd63-495d-8001-71633d3f4d0e .navbar a:hover,
	#cmp_c60bdbbf-bd63-495d-8001-71633d3f4d0e .navbar a:focus,
	#cmp_c60bdbbf-bd63-495d-8001-71633d3f4d0e .navbar a:active {
		color: rgb(0, 0, 0);
	}
}

/*
 * components/howitworks/cmp_0474ea58-02e8-49c3-9f14-b28a524cb2a4/component.css
 */
#cmp_0474ea58-02e8-49c3-9f14-b28a524cb2a4 {
	background-color: #E8E4E2;
}

#cmp_0474ea58-02e8-49c3-9f14-b28a524cb2a4 .content-row {
	margin: 0;

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

#cmp_0474ea58-02e8-49c3-9f14-b28a524cb2a4 .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_0474ea58-02e8-49c3-9f14-b28a524cb2a4 .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_0474ea58-02e8-49c3-9f14-b28a524cb2a4 h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_0474ea58-02e8-49c3-9f14-b28a524cb2a4 h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_0474ea58-02e8-49c3-9f14-b28a524cb2a4 h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_0474ea58-02e8-49c3-9f14-b28a524cb2a4 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_0474ea58-02e8-49c3-9f14-b28a524cb2a4 .content {
		margin: 15px;
	}
}
/*
 * components/howitworks/cmp_32a893f6-2c32-49b6-a479-9ba3f160a79a/component.css
 */
#cmp_32a893f6-2c32-49b6-a479-9ba3f160a79a {
	background-color: #FFFFFF;
}

#cmp_32a893f6-2c32-49b6-a479-9ba3f160a79a h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_32a893f6-2c32-49b6-a479-9ba3f160a79a h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_32a893f6-2c32-49b6-a479-9ba3f160a79a h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_32a893f6-2c32-49b6-a479-9ba3f160a79a p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_32a893f6-2c32-49b6-a479-9ba3f160a79a .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_32a893f6-2c32-49b6-a479-9ba3f160a79a ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_32a893f6-2c32-49b6-a479-9ba3f160a79a ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/index/cmp_45b27464-6cba-4b00-939b-3cc8169df80c/component.css
 */
#cmp_45b27464-6cba-4b00-939b-3cc8169df80c {
	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_45b27464-6cba-4b00-939b-3cc8169df80c .container-fluid {
	width: 100%;
}

#cmp_45b27464-6cba-4b00-939b-3cc8169df80c .hero-row {
	margin: 0;
}

#cmp_45b27464-6cba-4b00-939b-3cc8169df80c .hero-content {
	margin: 0;
	text-align: center;
}

#cmp_45b27464-6cba-4b00-939b-3cc8169df80c .hero-content h1 {
	color: #FFFFFF;
	font-family: Oswald;
	font-size: 48px;
}

#cmp_45b27464-6cba-4b00-939b-3cc8169df80c .hero-content h2 {
	color: #FFFFFF;
	font-family: Oswald;
	font-size: 32px;
}

#cmp_45b27464-6cba-4b00-939b-3cc8169df80c .hero-content h3 {
	color: #FFFFFF;
	font-family: Oswald;
	font-size: 24px;
}

#cmp_45b27464-6cba-4b00-939b-3cc8169df80c .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_45b27464-6cba-4b00-939b-3cc8169df80c .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_45b27464-6cba-4b00-939b-3cc8169df80c .hero-content .btn {
	margin: 5px 0;
	padding: 1em;
	white-space: normal;
	width: 90%;
}

#cmp_45b27464-6cba-4b00-939b-3cc8169df80c .hero-content .btn-primary {
	background-color: rgb(0, 0, 0);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_45b27464-6cba-4b00-939b-3cc8169df80c .hero-content .btn-primary:hover,
#cmp_45b27464-6cba-4b00-939b-3cc8169df80c .hero-content .btn-primary:focus,
#cmp_45b27464-6cba-4b00-939b-3cc8169df80c .hero-content .btn-primary:active {
	background-color: rgb(0, 0, 0);
	color: #FFFFFF;
}

#cmp_45b27464-6cba-4b00-939b-3cc8169df80c .hero-content .btn-secondary {
	background-color: rgb(0, 0, 0);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_45b27464-6cba-4b00-939b-3cc8169df80c .hero-content .btn-secondary:hover,
#cmp_45b27464-6cba-4b00-939b-3cc8169df80c .hero-content .btn-secondary:focus,
#cmp_45b27464-6cba-4b00-939b-3cc8169df80c .hero-content .btn-secondary:active {
	background-color: rgb(0, 0, 0);
	color: #FFFFFF;
}

@media (min-width: 768px) {
	#cmp_45b27464-6cba-4b00-939b-3cc8169df80c {
		min-height: 40vw;
	}
	#cmp_45b27464-6cba-4b00-939b-3cc8169df80c .hero-content {
		margin: 15px;
		text-align: left;
	}
	#cmp_45b27464-6cba-4b00-939b-3cc8169df80c .hero-content .button-container {
		-webkit-justify-content: flex-start;
		-moz-justify-content: flex-start;
		-ms-justify-content: flex-start;
		justify-content: flex-start;
	}
	#cmp_45b27464-6cba-4b00-939b-3cc8169df80c .hero-content .btn {
		margin: 0 15px 0 0;
		width: 45%;
	}
}

@media (min-width: 1200px) {
	#cmp_45b27464-6cba-4b00-939b-3cc8169df80c {
		min-height: 533px;
	}
}
/*
 * components/index/cmp_6277bb86-f445-4e75-a20f-b457e34167bc/component.css
 */
#cmp_6277bb86-f445-4e75-a20f-b457e34167bc {
	background-color: #E8E4E2;
}

#cmp_6277bb86-f445-4e75-a20f-b457e34167bc .content-row {
	margin: 0;

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

#cmp_6277bb86-f445-4e75-a20f-b457e34167bc .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_6277bb86-f445-4e75-a20f-b457e34167bc .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_6277bb86-f445-4e75-a20f-b457e34167bc h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_6277bb86-f445-4e75-a20f-b457e34167bc h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_6277bb86-f445-4e75-a20f-b457e34167bc h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_6277bb86-f445-4e75-a20f-b457e34167bc p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_6277bb86-f445-4e75-a20f-b457e34167bc .content {
		margin: 15px;
	}
}
#cmp_6277bb86-f445-4e75-a20f-b457e34167bc  {
	padding-top: 0;
}
/*
 * components/index/cmp_d22c7aaa-2a26-4770-84b6-27eb59915c2a/component.css
 */
#cmp_d22c7aaa-2a26-4770-84b6-27eb59915c2a {
	background-color: #E8E4E2;
}

#cmp_d22c7aaa-2a26-4770-84b6-27eb59915c2a h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_d22c7aaa-2a26-4770-84b6-27eb59915c2a h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_d22c7aaa-2a26-4770-84b6-27eb59915c2a h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_d22c7aaa-2a26-4770-84b6-27eb59915c2a p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_d22c7aaa-2a26-4770-84b6-27eb59915c2a .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_d22c7aaa-2a26-4770-84b6-27eb59915c2a ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_d22c7aaa-2a26-4770-84b6-27eb59915c2a ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_d22c7aaa-2a26-4770-84b6-27eb59915c2a  {
	padding-bottom: 0;
}
/*
 * components/shop/listing/cmp_62e4b300-27e4-4acd-89d0-817571fe4877/component.css
 */
#cmp_62e4b300-27e4-4acd-89d0-817571fe4877 {
	padding: 20px 0;
}

#cmp_62e4b300-27e4-4acd-89d0-817571fe4877 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_9041be2d-10db-4c5a-a621-c79398cf5501/component.css
 */
#cmp_9041be2d-10db-4c5a-a621-c79398cf5501 {
	border-bottom: 1px solid #E1E1E1;
	padding: 20px 0 40px 0;
}

#cmp_9041be2d-10db-4c5a-a621-c79398cf5501 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_a53230e9-e9f8-4300-a581-2a4d022017e8/component.css
 */
#cmp_a53230e9-e9f8-4300-a581-2a4d022017e8 {
	background-color: #FFFFFF;
}

#cmp_a53230e9-e9f8-4300-a581-2a4d022017e8 h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_a53230e9-e9f8-4300-a581-2a4d022017e8 h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_a53230e9-e9f8-4300-a581-2a4d022017e8 h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_a53230e9-e9f8-4300-a581-2a4d022017e8 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_a53230e9-e9f8-4300-a581-2a4d022017e8 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_a53230e9-e9f8-4300-a581-2a4d022017e8 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_a53230e9-e9f8-4300-a581-2a4d022017e8 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_a53230e9-e9f8-4300-a581-2a4d022017e8  {
	padding-bottom: 20px;
}
/*
 * components/shop/listing/cmp_d65bcb01-730a-4472-856f-a89542a96884/component.css
 */
.shop-listing-item {
	color: #757575;
}

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

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

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

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

.product_paging {
	margin: 20px 0;

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

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

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

.product_page.active a,
.product_page a:hover, .product_page a:focus,
.next_page a:hover, .next_page a:focus,
.prev_page a:hover, .prev_page a:focus {
	background-color: #F9F9F9;
	text-decoration: none;
}

.product_page.active a {
	color: black;
}

/*
 * components/shop/product/cmp_00454bf8-6288-45b1-afe9-696cd8e50cc2/component.css
 */
#cmp_00454bf8-6288-45b1-afe9-696cd8e50cc2.shop-product-header {
	padding: 60px 0 20px 0;
}

/*
 * components/shop/product/cmp_257a6494-986c-447a-9f7d-37298a407f53/component.css
 */
#cmp_257a6494-986c-447a-9f7d-37298a407f53 {
	background-color: #FFFFFF;
}

#cmp_257a6494-986c-447a-9f7d-37298a407f53 h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_257a6494-986c-447a-9f7d-37298a407f53 h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_257a6494-986c-447a-9f7d-37298a407f53 h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_257a6494-986c-447a-9f7d-37298a407f53 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}


#cmp_257a6494-986c-447a-9f7d-37298a407f53 .btn {
	background-color: rgb(0, 0, 0);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_257a6494-986c-447a-9f7d-37298a407f53 .btn:hover {
	background-color: rgb(0, 0, 0);
	color: #FFFFFF;
}

#cmp_257a6494-986c-447a-9f7d-37298a407f53 .component-rich-text-with-button__content-row,
#cmp_257a6494-986c-447a-9f7d-37298a407f53 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_257a6494-986c-447a-9f7d-37298a407f53 .component-rich-text-with-button__content-row,
	#cmp_257a6494-986c-447a-9f7d-37298a407f53 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_257a6494-986c-447a-9f7d-37298a407f53 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_257a6494-986c-447a-9f7d-37298a407f53 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/shop/product/cmp_7a09b7e4-b031-4c81-9699-a6e317a1551e/component.css
 */
#cmp_7a09b7e4-b031-4c81-9699-a6e317a1551e .shop-product select {
	width: auto;
}

#cmp_7a09b7e4-b031-4c81-9699-a6e317a1551e .shop-product__name {
	margin-bottom: 20px;
}

#cmp_7a09b7e4-b031-4c81-9699-a6e317a1551e .shop-product__price {
	margin-bottom: 20px;
}

#cmp_7a09b7e4-b031-4c81-9699-a6e317a1551e .shop-product__add-to-cart {
	margin-bottom: 20px;
}

#cmp_7a09b7e4-b031-4c81-9699-a6e317a1551e .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin-bottom: 40px;
}

#cmp_7a09b7e4-b031-4c81-9699-a6e317a1551e .shop-product__review-share-desktop .rating,
#cmp_7a09b7e4-b031-4c81-9699-a6e317a1551e .shop-product__review-share-desktop .sharing {
	padding-top: 10px;
}

#cmp_7a09b7e4-b031-4c81-9699-a6e317a1551e .shop-product__review-share-desktop h3,
#cmp_7a09b7e4-b031-4c81-9699-a6e317a1551e .shop-product__review-share-mobile h3 {
	margin: 10px 0;
}
#cmp_7a09b7e4-b031-4c81-9699-a6e317a1551e  {
	padding-top: 0;
}
/*
 * components/sold_out/cmp_4fa37535-6cda-4e6c-8c2e-85ce822f941f/component.css
 */
#cmp_4fa37535-6cda-4e6c-8c2e-85ce822f941f {
	background-color: #FFFFFF;
}

#cmp_4fa37535-6cda-4e6c-8c2e-85ce822f941f h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_4fa37535-6cda-4e6c-8c2e-85ce822f941f h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_4fa37535-6cda-4e6c-8c2e-85ce822f941f h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_4fa37535-6cda-4e6c-8c2e-85ce822f941f p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}


#cmp_4fa37535-6cda-4e6c-8c2e-85ce822f941f .btn {
	background-color: rgb(0, 0, 0);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_4fa37535-6cda-4e6c-8c2e-85ce822f941f .btn:hover {
	background-color: rgb(0, 0, 0);
	color: #FFFFFF;
}

#cmp_4fa37535-6cda-4e6c-8c2e-85ce822f941f .component-rich-text-with-button__content-row,
#cmp_4fa37535-6cda-4e6c-8c2e-85ce822f941f .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_4fa37535-6cda-4e6c-8c2e-85ce822f941f .component-rich-text-with-button__content-row,
	#cmp_4fa37535-6cda-4e6c-8c2e-85ce822f941f .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_4fa37535-6cda-4e6c-8c2e-85ce822f941f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_4fa37535-6cda-4e6c-8c2e-85ce822f941f ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_4fa37535-6cda-4e6c-8c2e-85ce822f941f  {
	padding-top: 0;
}
/*
 * components/sold_out/cmp_87de564b-57b9-431a-adcd-fa89b819810d/component.css
 */
#cmp_87de564b-57b9-431a-adcd-fa89b819810d img {
	max-width: 100%;
}

/*
 * components/subscribe/cmp_0bf82ff4-d904-4e1d-beed-75998955649a/component.css
 */
#cmp_0bf82ff4-d904-4e1d-beed-75998955649a {
	background-color: #E8E4E2;
	padding-bottom: 0;
}

#cmp_0bf82ff4-d904-4e1d-beed-75998955649a .progress-bar-container {
	position: relative;
}

#cmp_0bf82ff4-d904-4e1d-beed-75998955649a .progress-bar-filler {
	background: #FFFFFF;
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_0bf82ff4-d904-4e1d-beed-75998955649a .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_0bf82ff4-d904-4e1d-beed-75998955649a .progress-bar .step {
	color: #757575;

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

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

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

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

#cmp_0bf82ff4-d904-4e1d-beed-75998955649a .progress-bar .step .point {
	background-color: #E8E4E2;
	border: 4px solid #FFFFFF;
	border-radius: 10px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_0bf82ff4-d904-4e1d-beed-75998955649a .progress-bar .step.active .point {
	background-color: rgb(0, 0, 0);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_0bf82ff4-d904-4e1d-beed-75998955649a .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe/cmp_0c6285ec-1d66-478e-834e-7f4fc3867019/component.css
 */
#cmp_0c6285ec-1d66-478e-834e-7f4fc3867019 {
	background-color: #E8E4E2;
}

#cmp_0c6285ec-1d66-478e-834e-7f4fc3867019 h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_0c6285ec-1d66-478e-834e-7f4fc3867019 h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_0c6285ec-1d66-478e-834e-7f4fc3867019 h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_0c6285ec-1d66-478e-834e-7f4fc3867019 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_0c6285ec-1d66-478e-834e-7f4fc3867019 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_0c6285ec-1d66-478e-834e-7f4fc3867019 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_0c6285ec-1d66-478e-834e-7f4fc3867019 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_0c6285ec-1d66-478e-834e-7f4fc3867019  {
	padding-bottom: 0;
}
/*
 * components/subscribe/cmp_155c2ac6-6d9b-4033-a185-758835df6219/component.css
 */
#cmp_155c2ac6-6d9b-4033-a185-758835df6219 {
	background-color: #FFFFFF;
}

#cmp_155c2ac6-6d9b-4033-a185-758835df6219 h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_155c2ac6-6d9b-4033-a185-758835df6219 h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_155c2ac6-6d9b-4033-a185-758835df6219 h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_155c2ac6-6d9b-4033-a185-758835df6219 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}


#cmp_155c2ac6-6d9b-4033-a185-758835df6219 .btn {
	background-color: rgb(0, 0, 0);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_155c2ac6-6d9b-4033-a185-758835df6219 .btn:hover {
	background-color: rgb(0, 0, 0);
	color: #FFFFFF;
}

#cmp_155c2ac6-6d9b-4033-a185-758835df6219 .component-rich-text-with-button__content-row,
#cmp_155c2ac6-6d9b-4033-a185-758835df6219 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_155c2ac6-6d9b-4033-a185-758835df6219 .component-rich-text-with-button__content-row,
	#cmp_155c2ac6-6d9b-4033-a185-758835df6219 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_155c2ac6-6d9b-4033-a185-758835df6219 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_155c2ac6-6d9b-4033-a185-758835df6219 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/subscribe/cmp_caaab72b-323e-4f44-bb84-71100b57cc11/component.css
 */
#cmp_caaab72b-323e-4f44-bb84-71100b57cc11 {
	background-color: #E8E4E2;
}

#cmp_caaab72b-323e-4f44-bb84-71100b57cc11 h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_caaab72b-323e-4f44-bb84-71100b57cc11 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_caaab72b-323e-4f44-bb84-71100b57cc11 .sf-item {
	background-color: #FFFFFF;
}
#cmp_caaab72b-323e-4f44-bb84-71100b57cc11  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_66693d00-2404-49e1-99a5-16a66e0bab37/component.css
 */
#cmp_66693d00-2404-49e1-99a5-16a66e0bab37 {
	background-color: #E8E4E2;
	padding-bottom: 0;
}

#cmp_66693d00-2404-49e1-99a5-16a66e0bab37 h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_66693d00-2404-49e1-99a5-16a66e0bab37 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}
#cmp_66693d00-2404-49e1-99a5-16a66e0bab37  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_723a71ad-9a0a-4bf4-993f-58fcfe12d6fb/component.css
 */
#cmp_723a71ad-9a0a-4bf4-993f-58fcfe12d6fb {
	background-color: #E8E4E2;
	padding-bottom: 0;
}

#cmp_723a71ad-9a0a-4bf4-993f-58fcfe12d6fb .progress-bar-container {
	position: relative;
}

#cmp_723a71ad-9a0a-4bf4-993f-58fcfe12d6fb .progress-bar-filler {
	background: #FFFFFF;
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_723a71ad-9a0a-4bf4-993f-58fcfe12d6fb .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_723a71ad-9a0a-4bf4-993f-58fcfe12d6fb .progress-bar .step {
	color: #757575;

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

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

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

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

#cmp_723a71ad-9a0a-4bf4-993f-58fcfe12d6fb .progress-bar .step .point {
	background-color: #E8E4E2;
	border: 4px solid #FFFFFF;
	border-radius: 10px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_723a71ad-9a0a-4bf4-993f-58fcfe12d6fb .progress-bar .step.active .point {
	background-color: rgb(0, 0, 0);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_723a71ad-9a0a-4bf4-993f-58fcfe12d6fb .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe_flow/survey_step/cmp_7bf8b440-d3c0-473f-a723-7286c341cfd4/component.css
 */
#cmp_7bf8b440-d3c0-473f-a723-7286c341cfd4 {
	background-color: #E8E4E2;
}

#cmp_7bf8b440-d3c0-473f-a723-7286c341cfd4 h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_7bf8b440-d3c0-473f-a723-7286c341cfd4 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_7bf8b440-d3c0-473f-a723-7286c341cfd4  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/terms_step/cmp_34ad0ec2-59ff-4628-8e80-0f6675479a5a/component.css
 */
#cmp_34ad0ec2-59ff-4628-8e80-0f6675479a5a {
	background-color: #E8E4E2;
}

#cmp_34ad0ec2-59ff-4628-8e80-0f6675479a5a h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_34ad0ec2-59ff-4628-8e80-0f6675479a5a h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_34ad0ec2-59ff-4628-8e80-0f6675479a5a p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_34ad0ec2-59ff-4628-8e80-0f6675479a5a .sf-item {
	background-color: #FFFFFF;
}
#cmp_34ad0ec2-59ff-4628-8e80-0f6675479a5a  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/terms_step/cmp_551f971c-fb35-4997-91b8-66795fa5862f/component.css
 */
#cmp_551f971c-fb35-4997-91b8-66795fa5862f {
	background-color: #E8E4E2;
	padding-bottom: 0;
}

#cmp_551f971c-fb35-4997-91b8-66795fa5862f h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_551f971c-fb35-4997-91b8-66795fa5862f p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}
#cmp_551f971c-fb35-4997-91b8-66795fa5862f  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/terms_step/cmp_5d3dec3a-797f-4346-9273-7c6dfcf51792/component.css
 */
#cmp_5d3dec3a-797f-4346-9273-7c6dfcf51792 {
	background-color: #E8E4E2;
	padding-bottom: 0;
}

#cmp_5d3dec3a-797f-4346-9273-7c6dfcf51792 .progress-bar-container {
	position: relative;
}

#cmp_5d3dec3a-797f-4346-9273-7c6dfcf51792 .progress-bar-filler {
	background: #FFFFFF;
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_5d3dec3a-797f-4346-9273-7c6dfcf51792 .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_5d3dec3a-797f-4346-9273-7c6dfcf51792 .progress-bar .step {
	color: #757575;

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

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

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

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

#cmp_5d3dec3a-797f-4346-9273-7c6dfcf51792 .progress-bar .step .point {
	background-color: #E8E4E2;
	border: 4px solid #FFFFFF;
	border-radius: 10px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_5d3dec3a-797f-4346-9273-7c6dfcf51792 .progress-bar .step.active .point {
	background-color: rgb(0, 0, 0);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_5d3dec3a-797f-4346-9273-7c6dfcf51792 .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe_flow/variant_step/cmp_14d1d497-10c9-46d8-bc16-6eadeab1bf1a/component.css
 */
#cmp_14d1d497-10c9-46d8-bc16-6eadeab1bf1a {
	background-color: #E8E4E2;
	padding-bottom: 0;
}

#cmp_14d1d497-10c9-46d8-bc16-6eadeab1bf1a .progress-bar-container {
	position: relative;
}

#cmp_14d1d497-10c9-46d8-bc16-6eadeab1bf1a .progress-bar-filler {
	background: #FFFFFF;
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_14d1d497-10c9-46d8-bc16-6eadeab1bf1a .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_14d1d497-10c9-46d8-bc16-6eadeab1bf1a .progress-bar .step {
	color: #757575;

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

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

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

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

#cmp_14d1d497-10c9-46d8-bc16-6eadeab1bf1a .progress-bar .step .point {
	background-color: #E8E4E2;
	border: 4px solid #FFFFFF;
	border-radius: 10px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_14d1d497-10c9-46d8-bc16-6eadeab1bf1a .progress-bar .step.active .point {
	background-color: rgb(0, 0, 0);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_14d1d497-10c9-46d8-bc16-6eadeab1bf1a .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe_flow/variant_step/cmp_2c86eb21-00a4-44da-9c8b-d53941f2caa3/component.css
 */
#cmp_2c86eb21-00a4-44da-9c8b-d53941f2caa3 {
	background-color: #FFFFFF;
}

#cmp_2c86eb21-00a4-44da-9c8b-d53941f2caa3 h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_2c86eb21-00a4-44da-9c8b-d53941f2caa3 h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_2c86eb21-00a4-44da-9c8b-d53941f2caa3 h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_2c86eb21-00a4-44da-9c8b-d53941f2caa3 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_2c86eb21-00a4-44da-9c8b-d53941f2caa3 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_2c86eb21-00a4-44da-9c8b-d53941f2caa3 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_2c86eb21-00a4-44da-9c8b-d53941f2caa3 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_2c86eb21-00a4-44da-9c8b-d53941f2caa3  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_4860381c-f2a5-4ff6-bc34-613c488fea48/component.css
 */
#cmp_4860381c-f2a5-4ff6-bc34-613c488fea48 {
	background-color: #E8E4E2;
}

#cmp_4860381c-f2a5-4ff6-bc34-613c488fea48 h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_4860381c-f2a5-4ff6-bc34-613c488fea48 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_4860381c-f2a5-4ff6-bc34-613c488fea48 .sf-item {
	background-color: #FFFFFF;
}
#cmp_4860381c-f2a5-4ff6-bc34-613c488fea48  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_769f2949-7bcf-4330-a499-2fa0a705ed11/component.css
 */
#cmp_769f2949-7bcf-4330-a499-2fa0a705ed11 {
	background-color: #E8E4E2;
	padding-bottom: 0;
}

#cmp_769f2949-7bcf-4330-a499-2fa0a705ed11 h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_769f2949-7bcf-4330-a499-2fa0a705ed11 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}
#cmp_769f2949-7bcf-4330-a499-2fa0a705ed11  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_86922415-d84c-4c9a-8cf7-06cfeb371d7a/component.css
 */
#cmp_86922415-d84c-4c9a-8cf7-06cfeb371d7a {
	background-color: #FFFFFF;
}

#cmp_86922415-d84c-4c9a-8cf7-06cfeb371d7a .content-row {
	margin: 0;

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

#cmp_86922415-d84c-4c9a-8cf7-06cfeb371d7a .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_86922415-d84c-4c9a-8cf7-06cfeb371d7a .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_86922415-d84c-4c9a-8cf7-06cfeb371d7a h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_86922415-d84c-4c9a-8cf7-06cfeb371d7a h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_86922415-d84c-4c9a-8cf7-06cfeb371d7a h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_86922415-d84c-4c9a-8cf7-06cfeb371d7a p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_86922415-d84c-4c9a-8cf7-06cfeb371d7a .content {
		margin: 15px;
	}
}
#cmp_86922415-d84c-4c9a-8cf7-06cfeb371d7a  {
	padding-top: 0;
}
/*
 * components/view-cart/cmp_083d7541-5539-4c0c-918a-b2d6b7474406/component.css
 */
#cmp_083d7541-5539-4c0c-918a-b2d6b7474406 {
	padding: 15px 15px 100px 15px;
}

#cmp_083d7541-5539-4c0c-918a-b2d6b7474406 .cart-thead {
	border-bottom: 1px solid #E1E1E1;
	padding: 10px 0;
}

#cmp_083d7541-5539-4c0c-918a-b2d6b7474406 .cart-thead h3 {
	text-transform: uppercase;
}

#cmp_083d7541-5539-4c0c-918a-b2d6b7474406 .cart-item {
	border: 1px solid #E1E1E1;
	padding: 25px 0;
	position: relative;
}

#cmp_083d7541-5539-4c0c-918a-b2d6b7474406 .product-main {
	margin: 0 0 15px 0;
}

#cmp_083d7541-5539-4c0c-918a-b2d6b7474406 .product-label p {
	margin: 0;
}

#cmp_083d7541-5539-4c0c-918a-b2d6b7474406 .product-label .info {
	color: rgb(0, 0, 0);
	text-align: right;
	text-transform: uppercase;
}

#cmp_083d7541-5539-4c0c-918a-b2d6b7474406 .product-label .meta {
	color: #757575;
	font-size: 14px;
}

#cmp_083d7541-5539-4c0c-918a-b2d6b7474406 .product-rem-btn {
	position: absolute;
	right: 1%;
	top: 1%;
}

#cmp_083d7541-5539-4c0c-918a-b2d6b7474406 figure {
	margin: 0 0 15px 0;
}

#cmp_083d7541-5539-4c0c-918a-b2d6b7474406 .cart-subtotal {
	margin: 50px 0 0 0;
}

#cmp_083d7541-5539-4c0c-918a-b2d6b7474406 .cart-subtotal h2 {
	margin: 0 0 15px 0;
}

#cmp_083d7541-5539-4c0c-918a-b2d6b7474406 .cart-subtotal h3 {
	margin: 0 0 25px 0;
	text-transform: uppercase;
}

#cmp_083d7541-5539-4c0c-918a-b2d6b7474406 .cart-subtotal p {
	margin: 0 0 25px 0;
}

@media (min-width: 768px) {
	#cmp_083d7541-5539-4c0c-918a-b2d6b7474406 .cart-item {
		border-width: 0 0 1px 0;
	}
	#cmp_083d7541-5539-4c0c-918a-b2d6b7474406 .product-rem-btn {
		top: 40%;
	}
	#cmp_083d7541-5539-4c0c-918a-b2d6b7474406 figure {
		margin: 0;
	}
}

/*
 * components/view-cart/cmp_b5f0a2e3-8551-4576-adff-d06a8cfda17b/component.css
 */
#cmp_b5f0a2e3-8551-4576-adff-d06a8cfda17b {
	background-color: #FFFFFF;
}

#cmp_b5f0a2e3-8551-4576-adff-d06a8cfda17b h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_b5f0a2e3-8551-4576-adff-d06a8cfda17b h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_b5f0a2e3-8551-4576-adff-d06a8cfda17b h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_b5f0a2e3-8551-4576-adff-d06a8cfda17b p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_b5f0a2e3-8551-4576-adff-d06a8cfda17b .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_b5f0a2e3-8551-4576-adff-d06a8cfda17b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_b5f0a2e3-8551-4576-adff-d06a8cfda17b ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/shop/listing/cmp_78486bcf-83e5-4edc-b822-4b6edc4eb74e/component.css
 */
#cmp_78486bcf-83e5-4edc-b822-4b6edc4eb74e {
	background-color: #FFFFFF;
}

#cmp_78486bcf-83e5-4edc-b822-4b6edc4eb74e h1 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_78486bcf-83e5-4edc-b822-4b6edc4eb74e h2 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_78486bcf-83e5-4edc-b822-4b6edc4eb74e h3 {
	color: rgb(0, 0, 0);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_78486bcf-83e5-4edc-b822-4b6edc4eb74e p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}


#cmp_78486bcf-83e5-4edc-b822-4b6edc4eb74e .btn {
	background-color: rgb(0, 0, 0);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_78486bcf-83e5-4edc-b822-4b6edc4eb74e .btn:hover {
	background-color: rgb(0, 0, 0);
	color: #FFFFFF;
}

#cmp_78486bcf-83e5-4edc-b822-4b6edc4eb74e .component-rich-text-with-button__content-row,
#cmp_78486bcf-83e5-4edc-b822-4b6edc4eb74e .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_78486bcf-83e5-4edc-b822-4b6edc4eb74e .component-rich-text-with-button__content-row,
	#cmp_78486bcf-83e5-4edc-b822-4b6edc4eb74e .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_78486bcf-83e5-4edc-b822-4b6edc4eb74e ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_78486bcf-83e5-4edc-b822-4b6edc4eb74e ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}