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

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

h2 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 32px;
	margin: 0 0 25px 0;
}

h3 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 24px;
	margin: 0 0 25px 0;
}

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

a,
.btn-link {
	color: rgb(249, 156, 29);
}

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

/* General Component Styles */
section[class^="component"] {
	padding: 30px 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(249, 156, 29);
}

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

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

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

.btn-primary {
	background-color: rgb(249, 156, 29);
	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(229, 103, 67);
	color: #FFFFFF;
}

.btn-secondary {
	background-color: #FFD03D;
	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(249, 156, 29);
	color: #FFFFFF;
}

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

.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__content .matchImageHeight {
 	height: 188px; 
}

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

.survey .survey-error {
 	color: #FF0000;
  	font-weight:bold;
}

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

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

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

.checkout_content #checkout_button {
	background-color: rgb(249, 156, 29);
	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(229, 103, 67);
	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(249, 156, 29);
}

.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(249, 156, 29);
	color: rgb(249, 156, 29);
	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(229, 103, 67);
	border-color: rgb(229, 103, 67);
	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_498b1744-55be-4583-8f4c-973864e2c28e/component.css
 */
#cmp_498b1744-55be-4583-8f4c-973864e2c28e {
	background-color: #FFFFFF;
}

#cmp_498b1744-55be-4583-8f4c-973864e2c28e h1 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_498b1744-55be-4583-8f4c-973864e2c28e h2 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_498b1744-55be-4583-8f4c-973864e2c28e h3 {
	color: rgb(249, 156, 29);
	font-family: Lato;
	font-size: 24px;
}

#cmp_498b1744-55be-4583-8f4c-973864e2c28e p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_498b1744-55be-4583-8f4c-973864e2c28e .content {
		margin: 0 auto;
		width: 80%;
	}
}
/*
 * components/about/cmp_57720ba6-5387-47b0-932a-dc4e763c5115/component.css
 */
#cmp_57720ba6-5387-47b0-932a-dc4e763c5115 {
	background-color: #FFFFFF;
}

#cmp_57720ba6-5387-47b0-932a-dc4e763c5115 h1 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_57720ba6-5387-47b0-932a-dc4e763c5115 h2 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_57720ba6-5387-47b0-932a-dc4e763c5115 h3 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_57720ba6-5387-47b0-932a-dc4e763c5115 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_57720ba6-5387-47b0-932a-dc4e763c5115 .content {
		margin: 0 auto;
		width: 80%;
	}
}
/*
 * components/ambassador/cmp_64510e4b-93a0-4c30-a860-1de6d27d2a38/component.css
 */
#cmp_64510e4b-93a0-4c30-a860-1de6d27d2a38 {
	background-color: ;
}

#cmp_64510e4b-93a0-4c30-a860-1de6d27d2a38 h1 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_64510e4b-93a0-4c30-a860-1de6d27d2a38 h2 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_64510e4b-93a0-4c30-a860-1de6d27d2a38 h3 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_64510e4b-93a0-4c30-a860-1de6d27d2a38 p {
	color: ;
	font-family: ;
	font-size: ;
}

@media (min-width: 768px) {
	#cmp_64510e4b-93a0-4c30-a860-1de6d27d2a38 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_64510e4b-93a0-4c30-a860-1de6d27d2a38 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_64510e4b-93a0-4c30-a860-1de6d27d2a38 ul {
	list-style: disc;
	list-style-position: inside;
	color: ;
	font-family: ;
	font-size: ;
}

/*
 * components/ambassador/cmp_e9e8d11e-f5e0-42c0-acda-1e265840fbd6/component.css
 */
#cmp_e9e8d11e-f5e0-42c0-acda-1e265840fbd6 img {
	max-width: 100%;
}

/*
 * components/ambassador/cmp_f1c4bfcb-d4bc-4ad9-80b3-86208ee2b2b4/component.css
 */
#cmp_f1c4bfcb-d4bc-4ad9-80b3-86208ee2b2b4 {
	background-color: ;
}

#cmp_f1c4bfcb-d4bc-4ad9-80b3-86208ee2b2b4 h1 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_f1c4bfcb-d4bc-4ad9-80b3-86208ee2b2b4 h2 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_f1c4bfcb-d4bc-4ad9-80b3-86208ee2b2b4 h3 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_f1c4bfcb-d4bc-4ad9-80b3-86208ee2b2b4 p {
	color: ;
	font-family: ;
	font-size: ;
}


#cmp_f1c4bfcb-d4bc-4ad9-80b3-86208ee2b2b4 .btn {
	background-color: ;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_f1c4bfcb-d4bc-4ad9-80b3-86208ee2b2b4 .btn:hover {
	background-color: ;
	color: ;
}

#cmp_f1c4bfcb-d4bc-4ad9-80b3-86208ee2b2b4 .component-rich-text-with-button__content-row,
#cmp_f1c4bfcb-d4bc-4ad9-80b3-86208ee2b2b4 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_f1c4bfcb-d4bc-4ad9-80b3-86208ee2b2b4 .component-rich-text-with-button__content-row,
	#cmp_f1c4bfcb-d4bc-4ad9-80b3-86208ee2b2b4 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_f1c4bfcb-d4bc-4ad9-80b3-86208ee2b2b4 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_f1c4bfcb-d4bc-4ad9-80b3-86208ee2b2b4 ul {
	list-style: disc;
	list-style-position: inside;
	color: ;
	font-family: ;
	font-size: ;
}

/*
 * components/checkout/cmp_e8ce3737-a117-4909-931c-1484e70baec1/component.css
 */
#cmp_e8ce3737-a117-4909-931c-1484e70baec1 .checkout_content {
	overflow: auto;
}

#cmp_e8ce3737-a117-4909-931c-1484e70baec1 .checkout_content section {
	border-color: #F5F5F5;
}

#cmp_e8ce3737-a117-4909-931c-1484e70baec1 .cart_listing table {
	border-color: #F5F5F5;
}

/*
 * components/customer/account/cmp_07369314-23e8-4895-a0fc-3c4fd5e66f09/component.css
 */

/*
 * components/customer/edit/cmp_ebcf2823-2e58-4933-aa95-a4a3333d4de1/component.css
 */

/*
 * components/customer/forgot_password/cmp_4b341383-f949-4f4a-893b-1a9709911221/component.css
 */
#cmp_4b341383-f949-4f4a-893b-1a9709911221 {
	background-color: #FFFFFF;
}

#cmp_4b341383-f949-4f4a-893b-1a9709911221 h1 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_4b341383-f949-4f4a-893b-1a9709911221 h2 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_4b341383-f949-4f4a-893b-1a9709911221 h3 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_4b341383-f949-4f4a-893b-1a9709911221 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_4b341383-f949-4f4a-893b-1a9709911221 .content {
		margin: 0 auto;
		width: 80%;
	}
}
/*
 * components/customer/forgot_password/cmp_91e0afa2-5d21-419e-a4ea-0506c6beb9a4/component.css
 */
#cmp_91e0afa2-5d21-419e-a4ea-0506c6beb9a4 {
	padding: 0 0 120px 0;
}
/*
 * components/customer/login/cmp_62012e0c-5203-421b-a9ec-505416540f9e/component.css
 */
#cmp_62012e0c-5203-421b-a9ec-505416540f9e {
	padding: 0 0 120px 0;
}
/*
 * components/customer/login/cmp_c353bec4-8581-456e-945c-65adc28e5f2c/component.css
 */
#cmp_c353bec4-8581-456e-945c-65adc28e5f2c {
	background-color: #FFFFFF;
}

#cmp_c353bec4-8581-456e-945c-65adc28e5f2c h1 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_c353bec4-8581-456e-945c-65adc28e5f2c h2 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_c353bec4-8581-456e-945c-65adc28e5f2c h3 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_c353bec4-8581-456e-945c-65adc28e5f2c p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_c353bec4-8581-456e-945c-65adc28e5f2c .content {
		margin: 0 auto;
		width: 80%;
	}
}
/*
 * components/customer/password_reset/cmp_9dd49c1d-10a1-4efa-b6e9-143267df764a/component.css
 */
#cmp_9dd49c1d-10a1-4efa-b6e9-143267df764a {
	padding: 0 0 120px 0;
}
/*
 * components/customer/password_reset/cmp_e8fa0499-f61f-436c-9b3f-1d8d23efc496/component.css
 */
#cmp_e8fa0499-f61f-436c-9b3f-1d8d23efc496 {
	background-color: #FFFFFF;
}

#cmp_e8fa0499-f61f-436c-9b3f-1d8d23efc496 h1 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_e8fa0499-f61f-436c-9b3f-1d8d23efc496 h2 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_e8fa0499-f61f-436c-9b3f-1d8d23efc496 h3 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_e8fa0499-f61f-436c-9b3f-1d8d23efc496 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_e8fa0499-f61f-436c-9b3f-1d8d23efc496 .content {
		margin: 0 auto;
		width: 80%;
	}
}
/*
 * components/customer/thank_you/cmp_0477a243-1572-4bd2-b4ae-1280483d309d/component.css
 */

/*
 * components/faq/cmp_6ec94226-cb88-467b-914d-ccd86cf277c5/component.css
 */
#cmp_6ec94226-cb88-467b-914d-ccd86cf277c5 {
	background-color: #FFFFFF;
}

#cmp_6ec94226-cb88-467b-914d-ccd86cf277c5 h1 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_6ec94226-cb88-467b-914d-ccd86cf277c5 h2 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_6ec94226-cb88-467b-914d-ccd86cf277c5 h3 {
	color: #000000;
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_6ec94226-cb88-467b-914d-ccd86cf277c5 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_6ec94226-cb88-467b-914d-ccd86cf277c5 .content {
		margin: 0 auto;
		width: 80%;
	}
}
#cmp_6ec94226-cb88-467b-914d-ccd86cf277c5 h2 {
	margin: 0 0 40px 0;
}
#cmp_6ec94226-cb88-467b-914d-ccd86cf277c5 p {
	border-bottom: 1px solid #EEEEEE;
	padding: 0 0 25px 0;
}
/*
 * components/global/cmp_0abccab4-eb8b-49b2-9f11-df60f5b6c319/component.css
 */
#cmp_0abccab4-eb8b-49b2-9f11-df60f5b6c319 {
	background-color: #FFFFFF;
}

#cmp_0abccab4-eb8b-49b2-9f11-df60f5b6c319 h1 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_0abccab4-eb8b-49b2-9f11-df60f5b6c319 h2 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_0abccab4-eb8b-49b2-9f11-df60f5b6c319 h3 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_0abccab4-eb8b-49b2-9f11-df60f5b6c319 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}


#cmp_0abccab4-eb8b-49b2-9f11-df60f5b6c319 .btn {
	background-color: rgb(249, 156, 29);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_0abccab4-eb8b-49b2-9f11-df60f5b6c319 .btn:hover {
	background-color: rgb(229, 103, 67);
	color: #FFFFFF;
}

#cmp_0abccab4-eb8b-49b2-9f11-df60f5b6c319 .component-rich-text-with-button__content-row,
#cmp_0abccab4-eb8b-49b2-9f11-df60f5b6c319 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_0abccab4-eb8b-49b2-9f11-df60f5b6c319 .component-rich-text-with-button__content-row,
	#cmp_0abccab4-eb8b-49b2-9f11-df60f5b6c319 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}
#cmp_0abccab4-eb8b-49b2-9f11-df60f5b6c319  {
	padding-top: 0;
}
/*
 * components/global/cmp_35bc6ce1-c46d-481c-9e3b-1901cfc0093f/component.css
 */
#cmp_35bc6ce1-c46d-481c-9e3b-1901cfc0093f.footer {
	background-color: rgb(249, 156, 29);
	color: #FFFFFF;
	font-family: Lato;
	padding: 25px 0;

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

#cmp_35bc6ce1-c46d-481c-9e3b-1901cfc0093f.footer p {
	color: #FFFFFF;
}

#cmp_35bc6ce1-c46d-481c-9e3b-1901cfc0093f .footer-subscribe {
	padding: 15px 0;
}

#cmp_35bc6ce1-c46d-481c-9e3b-1901cfc0093f .footer-subscribe .btn {
	border: 1px solid #FFFFFF;
}

#cmp_35bc6ce1-c46d-481c-9e3b-1901cfc0093f .footer-social {
	padding: 15px 0;
}

#cmp_35bc6ce1-c46d-481c-9e3b-1901cfc0093f .footer-social a {
	display: inline-block;
	padding: 0 5px;
}

#cmp_35bc6ce1-c46d-481c-9e3b-1901cfc0093f .footer-social svg path {
	fill: #FFFFFF;
}

#cmp_35bc6ce1-c46d-481c-9e3b-1901cfc0093f .footer-social a:hover svg path,
#cmp_35bc6ce1-c46d-481c-9e3b-1901cfc0093f .footer-social a:focus svg path,
#cmp_35bc6ce1-c46d-481c-9e3b-1901cfc0093f .footer-social a:active svg path {
	fill: rgb(229, 103, 67);
}

#cmp_35bc6ce1-c46d-481c-9e3b-1901cfc0093f .footer-contact {
	padding: 15px 0;

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

#cmp_35bc6ce1-c46d-481c-9e3b-1901cfc0093f .footer-contact p {
	margin: 0 0 0.5em 0;
}

@media (min-width: 768px) {
	#cmp_35bc6ce1-c46d-481c-9e3b-1901cfc0093f.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_fa6a16e4-bb1e-49d0-8c70-7942be90b65f/component.css
 */
#cmp_fa6a16e4-bb1e-49d0-8c70-7942be90b65f {
	border-bottom: 4px solid #F3F2F0;
	padding: 0;
}

#cmp_fa6a16e4-bb1e-49d0-8c70-7942be90b65f .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_fa6a16e4-bb1e-49d0-8c70-7942be90b65f .navbar a:hover,
#cmp_fa6a16e4-bb1e-49d0-8c70-7942be90b65f .navbar a:focus,
#cmp_fa6a16e4-bb1e-49d0-8c70-7942be90b65f .navbar a:active {
	color: #FFD03D;
}

#cmp_fa6a16e4-bb1e-49d0-8c70-7942be90b65f .navbar-brand {
	color: #000000;
	font-family: Permanent Marker;
	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_fa6a16e4-bb1e-49d0-8c70-7942be90b65f .navbar-brand img {
	max-width: 100%;
}

#cmp_fa6a16e4-bb1e-49d0-8c70-7942be90b65f .navbar .navbar-toggler {
	background-color: rgb(249, 156, 29);
	border-radius: 0;
	color: #FFFFFF;
	font-size: 14px;
	letter-spacing: 0.071em;
	padding: 15px;
	text-transform: uppercase;
}

#cmp_fa6a16e4-bb1e-49d0-8c70-7942be90b65f .navbar .navbar-toggler:hover,
#cmp_fa6a16e4-bb1e-49d0-8c70-7942be90b65f .navbar .navbar-toggler:focus,
#cmp_fa6a16e4-bb1e-49d0-8c70-7942be90b65f .navbar .navbar-toggler:active {
	background-color: rgb(229, 103, 67);
	color: #FFFFFF;
}

#cmp_fa6a16e4-bb1e-49d0-8c70-7942be90b65f .navbar-nav {
	background-color: rgb(249, 156, 29);
	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_fa6a16e4-bb1e-49d0-8c70-7942be90b65f .navbar-nav li {
	padding-top: 10px;
	padding-bottom: 10px;
}

#cmp_fa6a16e4-bb1e-49d0-8c70-7942be90b65f .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_fa6a16e4-bb1e-49d0-8c70-7942be90b65f {
		border-width: 0;
	}
	#cmp_fa6a16e4-bb1e-49d0-8c70-7942be90b65f .dropdown-menu {
		background-color: rgb(249, 156, 29);
	}
}

@media (min-width: 768px) {
	#cmp_fa6a16e4-bb1e-49d0-8c70-7942be90b65f .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_fa6a16e4-bb1e-49d0-8c70-7942be90b65f .navbar-brand {
		padding: 0;
		padding-bottom: 15px;
	}
	#cmp_fa6a16e4-bb1e-49d0-8c70-7942be90b65f .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_fa6a16e4-bb1e-49d0-8c70-7942be90b65f .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_fa6a16e4-bb1e-49d0-8c70-7942be90b65f .navbar-nav li {
		padding: 0;
	}
	#cmp_fa6a16e4-bb1e-49d0-8c70-7942be90b65f .navbar-nav .nav-link {
		color: #757575;
	}
	#cmp_fa6a16e4-bb1e-49d0-8c70-7942be90b65f .navbar a:hover,
	#cmp_fa6a16e4-bb1e-49d0-8c70-7942be90b65f .navbar a:focus,
	#cmp_fa6a16e4-bb1e-49d0-8c70-7942be90b65f .navbar a:active {
		color: rgb(249, 156, 29);
	}
}

#cmp_fa6a16e4-bb1e-49d0-8c70-7942be90b65f ol {
    list-style: decimal;
    list-style-position: inside;
    color: ;
    font-family: ;
    font-size: ;
}

#cmp_fa6a16e4-bb1e-49d0-8c70-7942be90b65f ul {
    list-style: none;
    list-style-position: inside;
    color: ;
    font-family: ;
    font-size: ;
}

/*
 * components/howitworks/cmp_6dd5003f-3d7d-42bd-a246-be8723708272/component.css
 */
#cmp_6dd5003f-3d7d-42bd-a246-be8723708272 {
	background-color: #FFFFFF;
}

#cmp_6dd5003f-3d7d-42bd-a246-be8723708272 h1 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_6dd5003f-3d7d-42bd-a246-be8723708272 h2 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_6dd5003f-3d7d-42bd-a246-be8723708272 h3 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_6dd5003f-3d7d-42bd-a246-be8723708272 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_6dd5003f-3d7d-42bd-a246-be8723708272 .content {
		margin: 0 auto;
		width: 80%;
	}
}
/*
 * components/howitworks/cmp_c943a150-e2e0-40c3-9c06-1fbae8222f3b/component.css
 */
#cmp_c943a150-e2e0-40c3-9c06-1fbae8222f3b {
	background-color: #F3F2F0;
}

#cmp_c943a150-e2e0-40c3-9c06-1fbae8222f3b .content-row {
	margin: 0;

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

#cmp_c943a150-e2e0-40c3-9c06-1fbae8222f3b .content {
	background-color: #F3F2F0;
	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_c943a150-e2e0-40c3-9c06-1fbae8222f3b .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_c943a150-e2e0-40c3-9c06-1fbae8222f3b h1 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_c943a150-e2e0-40c3-9c06-1fbae8222f3b h2 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_c943a150-e2e0-40c3-9c06-1fbae8222f3b h3 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_c943a150-e2e0-40c3-9c06-1fbae8222f3b p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_c943a150-e2e0-40c3-9c06-1fbae8222f3b .content {
		margin: 15px;
	}
}
/*
 * components/howitworks/cmp_fb1d6f76-2d77-4604-bf9b-ff44891ea9e1/component.css
 */
#cmp_fb1d6f76-2d77-4604-bf9b-ff44891ea9e1 {
	background-color: #FFFFFF;
	padding: 0;
}

#cmp_fb1d6f76-2d77-4604-bf9b-ff44891ea9e1 .content {
	margin: 0 auto;
	padding: 25px;
}

#cmp_fb1d6f76-2d77-4604-bf9b-ff44891ea9e1 .content .cta {
	border: 5px solid rgb(249, 156, 29);
	padding: 45px;
}

#cmp_fb1d6f76-2d77-4604-bf9b-ff44891ea9e1 h1 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_fb1d6f76-2d77-4604-bf9b-ff44891ea9e1 h2 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_fb1d6f76-2d77-4604-bf9b-ff44891ea9e1 h3 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_fb1d6f76-2d77-4604-bf9b-ff44891ea9e1 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/index/cmp_55cf69ca-4e40-42bb-9c32-1e6ca38cd470/component.css
 */
#cmp_55cf69ca-4e40-42bb-9c32-1e6ca38cd470 {
	background-color: #FFFFFF;
}

#cmp_55cf69ca-4e40-42bb-9c32-1e6ca38cd470 .content-row {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

#cmp_55cf69ca-4e40-42bb-9c32-1e6ca38cd470 .content {
	margin: 10px auto;
	max-height: 250px;
	max-width: 250px;
	overflow: hidden;

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

#cmp_55cf69ca-4e40-42bb-9c32-1e6ca38cd470 h1 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_55cf69ca-4e40-42bb-9c32-1e6ca38cd470 h2 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_55cf69ca-4e40-42bb-9c32-1e6ca38cd470 h3 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_55cf69ca-4e40-42bb-9c32-1e6ca38cd470 p {
	color: #757575;
	font-family: Lato;
	font-size: 18px;
}

@media (min-width: 768px) {
	#cmp_55cf69ca-4e40-42bb-9c32-1e6ca38cd470 .content-row {
		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
	}
}
/*
 * components/index/cmp_6f5c84af-c4a7-4310-95b5-5c5d3fe1830e/component.css
 */
#cmp_6f5c84af-c4a7-4310-95b5-5c5d3fe1830e {
	background-position: right top !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_6f5c84af-c4a7-4310-95b5-5c5d3fe1830e .container-fluid {
	width: 100%;
}

#cmp_6f5c84af-c4a7-4310-95b5-5c5d3fe1830e .hero-row {
	margin: 0;
}

#cmp_6f5c84af-c4a7-4310-95b5-5c5d3fe1830e .hero-content {
	margin: 0;
	text-align: center;
}

#cmp_6f5c84af-c4a7-4310-95b5-5c5d3fe1830e .hero-content h1 {
	color: #FFFFFF;
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_6f5c84af-c4a7-4310-95b5-5c5d3fe1830e .hero-content h2 {
	color: #FFFFFF;
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_6f5c84af-c4a7-4310-95b5-5c5d3fe1830e .hero-content h3 {
	color: #FFFFFF;
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_6f5c84af-c4a7-4310-95b5-5c5d3fe1830e .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_6f5c84af-c4a7-4310-95b5-5c5d3fe1830e .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_6f5c84af-c4a7-4310-95b5-5c5d3fe1830e .hero-content .btn {
	margin: 5px 0;
	padding: 1em;
	white-space: normal;
	width: 90%;
}

#cmp_6f5c84af-c4a7-4310-95b5-5c5d3fe1830e .hero-content .btn-primary {
	background-color: rgb(249, 156, 29);
	color: #FFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_6f5c84af-c4a7-4310-95b5-5c5d3fe1830e .hero-content .btn-primary:hover,
#cmp_6f5c84af-c4a7-4310-95b5-5c5d3fe1830e .hero-content .btn-primary:focus,
#cmp_6f5c84af-c4a7-4310-95b5-5c5d3fe1830e .hero-content .btn-primary:active {
	background-color: rgb(54, 112, 255);
	color: #FFFFFF;
}

#cmp_6f5c84af-c4a7-4310-95b5-5c5d3fe1830e .hero-content .btn-secondary {
	background-color: rgb(229, 103, 67);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_6f5c84af-c4a7-4310-95b5-5c5d3fe1830e .hero-content .btn-secondary:hover,
#cmp_6f5c84af-c4a7-4310-95b5-5c5d3fe1830e .hero-content .btn-secondary:focus,
#cmp_6f5c84af-c4a7-4310-95b5-5c5d3fe1830e .hero-content .btn-secondary:active {
	background-color: rgb(54, 112, 255);
	color: #FFFFFF;
}

@media (min-width: 768px) {
	#cmp_6f5c84af-c4a7-4310-95b5-5c5d3fe1830e {
		min-height: 40vw;
	}
	#cmp_6f5c84af-c4a7-4310-95b5-5c5d3fe1830e .hero-content {
		margin: 15px;
		text-align: left;
	}
	#cmp_6f5c84af-c4a7-4310-95b5-5c5d3fe1830e .hero-content .button-container {
		-webkit-justify-content: flex-start;
		-moz-justify-content: flex-start;
		-ms-justify-content: flex-start;
		justify-content: flex-start;
	}
	#cmp_6f5c84af-c4a7-4310-95b5-5c5d3fe1830e .hero-content .btn {
		margin: 0 15px 0 0;
		width: 45%;
	}
}

@media (min-width: 1200px) {
	#cmp_6f5c84af-c4a7-4310-95b5-5c5d3fe1830e {
		min-height: 533px;
	}
}
/*
 * components/index/cmp_7b179070-d94e-43aa-a9a5-d853bb746712/component.css
 */
#cmp_7b179070-d94e-43aa-a9a5-d853bb746712 {
	background-color: #FFFFFF;
}

#cmp_7b179070-d94e-43aa-a9a5-d853bb746712 h1 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_7b179070-d94e-43aa-a9a5-d853bb746712 h2 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_7b179070-d94e-43aa-a9a5-d853bb746712 h3 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_7b179070-d94e-43aa-a9a5-d853bb746712 p {
	color: #757575;
	font-family: Lato;
	font-size: 20px;
}

@media (min-width: 768px) {
	#cmp_7b179070-d94e-43aa-a9a5-d853bb746712 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_7b179070-d94e-43aa-a9a5-d853bb746712 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 20px;
}

#cmp_7b179070-d94e-43aa-a9a5-d853bb746712 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 20px;
}

/*
 * components/index/cmp_b687232e-9bf6-4cac-a852-bb1a104755cb/component.css
 */
#cmp_b687232e-9bf6-4cac-a852-bb1a104755cb {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_b687232e-9bf6-4cac-a852-bb1a104755cb .content {
	padding: 0;
}

#cmp_b687232e-9bf6-4cac-a852-bb1a104755cb .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_b687232e-9bf6-4cac-a852-bb1a104755cb .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/index/cmp_dc0fffc8-5660-4239-a175-8705ac585425/component.css
 */
#cmp_dc0fffc8-5660-4239-a175-8705ac585425 {
	background-color: #FFFFFF;
}

#cmp_dc0fffc8-5660-4239-a175-8705ac585425 h1 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_dc0fffc8-5660-4239-a175-8705ac585425 h2 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_dc0fffc8-5660-4239-a175-8705ac585425 h3 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_dc0fffc8-5660-4239-a175-8705ac585425 p {
	color: rgb(117, 117, 117);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_dc0fffc8-5660-4239-a175-8705ac585425 .content {
		margin: 0 auto;
		width: 80%;
	}
}
/*
 * components/index/cmp_f12a0e51-056a-4d0e-bc36-4975ce02c7d4/component.css
 */
#cmp_f12a0e51-056a-4d0e-bc36-4975ce02c7d4 {
	background-color: #F3F2F0;
}

#cmp_f12a0e51-056a-4d0e-bc36-4975ce02c7d4 .content-row {
	margin: 0;

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

#cmp_f12a0e51-056a-4d0e-bc36-4975ce02c7d4 .content {
	background-color: #F3F2F0;
	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_f12a0e51-056a-4d0e-bc36-4975ce02c7d4 .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_f12a0e51-056a-4d0e-bc36-4975ce02c7d4 h1 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_f12a0e51-056a-4d0e-bc36-4975ce02c7d4 h2 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_f12a0e51-056a-4d0e-bc36-4975ce02c7d4 h3 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_f12a0e51-056a-4d0e-bc36-4975ce02c7d4 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_f12a0e51-056a-4d0e-bc36-4975ce02c7d4 .content {
		margin: 15px;
	}
}
/*
 * components/privacy_notice/cmp_46aa24c8-4d95-4f95-912c-4a59dc87ad05/component.css
 */
#cmp_46aa24c8-4d95-4f95-912c-4a59dc87ad05 {
	background-color: #FFFFFF;
}

#cmp_46aa24c8-4d95-4f95-912c-4a59dc87ad05 h1 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_46aa24c8-4d95-4f95-912c-4a59dc87ad05 h2 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_46aa24c8-4d95-4f95-912c-4a59dc87ad05 h3 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_46aa24c8-4d95-4f95-912c-4a59dc87ad05 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_46aa24c8-4d95-4f95-912c-4a59dc87ad05 .content {
		margin: 0 auto;
		width: 80%;
	}
}
/*
 * components/reward_programs/cmp_8f6d30c9-5e28-4eae-a2c7-c8f61c64ec28/component.css
 */
#cmp_8f6d30c9-5e28-4eae-a2c7-c8f61c64ec28 {
	background-color: #FFFFFF;
}

#cmp_8f6d30c9-5e28-4eae-a2c7-c8f61c64ec28 h1 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_8f6d30c9-5e28-4eae-a2c7-c8f61c64ec28 h2 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_8f6d30c9-5e28-4eae-a2c7-c8f61c64ec28 h3 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_8f6d30c9-5e28-4eae-a2c7-c8f61c64ec28 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_8f6d30c9-5e28-4eae-a2c7-c8f61c64ec28 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_8f6d30c9-5e28-4eae-a2c7-c8f61c64ec28 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_8f6d30c9-5e28-4eae-a2c7-c8f61c64ec28 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/reward_programs/cmp_ac36fee3-b2cd-4c02-854c-44389a4e3b7c/component.css
 */
#cmp_ac36fee3-b2cd-4c02-854c-44389a4e3b7c {
	background-color: #FFFFFF;
}

#cmp_ac36fee3-b2cd-4c02-854c-44389a4e3b7c h1 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_ac36fee3-b2cd-4c02-854c-44389a4e3b7c h2 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_ac36fee3-b2cd-4c02-854c-44389a4e3b7c h3 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_ac36fee3-b2cd-4c02-854c-44389a4e3b7c p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_ac36fee3-b2cd-4c02-854c-44389a4e3b7c .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_ac36fee3-b2cd-4c02-854c-44389a4e3b7c ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_ac36fee3-b2cd-4c02-854c-44389a4e3b7c ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/selecting_games/cmp_70f24528-6c21-40ee-9c79-faa17fdf20aa/component.css
 */
#cmp_70f24528-6c21-40ee-9c79-faa17fdf20aa .content-row {
	margin: 0;

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

#cmp_70f24528-6c21-40ee-9c79-faa17fdf20aa .content {
	border: 5px none;
	margin: 15px 0;
	padding: 25px;

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

#cmp_70f24528-6c21-40ee-9c79-faa17fdf20aa .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

@media (min-width: 768px) {
	#cmp_70f24528-6c21-40ee-9c79-faa17fdf20aa .content {
		margin: 15px;
	}
}
#cmp_70f24528-6c21-40ee-9c79-faa17fdf20aa  {
	padding-top: 0;
}

/*
 * components/selecting_games/cmp_86d13da4-24f7-40e0-8164-a330f105c225/component.css
 */
#cmp_86d13da4-24f7-40e0-8164-a330f105c225 {
	background-color: #FFFFFF;
}

#cmp_86d13da4-24f7-40e0-8164-a330f105c225 h1 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_86d13da4-24f7-40e0-8164-a330f105c225 h2 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_86d13da4-24f7-40e0-8164-a330f105c225 h3 {
	color: rgb(229, 103, 67);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_86d13da4-24f7-40e0-8164-a330f105c225 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_86d13da4-24f7-40e0-8164-a330f105c225 .content {
		margin: 0 auto;
		width: 80%;
	}
}
/*
 * components/selecting_games/cmp_fdfd8af6-5ef7-4fbc-92f8-833c0d82c9c6/component.css
 */
#cmp_fdfd8af6-5ef7-4fbc-92f8-833c0d82c9c6 {
	background-color: #FFFFFF;
}

#cmp_fdfd8af6-5ef7-4fbc-92f8-833c0d82c9c6 h1 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_fdfd8af6-5ef7-4fbc-92f8-833c0d82c9c6 h2 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_fdfd8af6-5ef7-4fbc-92f8-833c0d82c9c6 h3 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_fdfd8af6-5ef7-4fbc-92f8-833c0d82c9c6 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_fdfd8af6-5ef7-4fbc-92f8-833c0d82c9c6 .content {
		margin: 0 auto;
		width: 80%;
	}
}
/*
 * components/shop/listing/cmp_017e72f8-2b44-4326-aa9e-8ab91b08432d/component.css
 */
#cmp_017e72f8-2b44-4326-aa9e-8ab91b08432d {
	padding: 20px 0;
}

#cmp_017e72f8-2b44-4326-aa9e-8ab91b08432d ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_1ea078ef-7d15-4411-962f-668797995e0e/component.css
 */
#cmp_1ea078ef-7d15-4411-962f-668797995e0e {
	border-bottom: 1px solid #E1E1E1;
	padding: 20px 0 40px 0;
}

#cmp_1ea078ef-7d15-4411-962f-668797995e0e ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_8061c6e4-e1e2-48c0-8b40-a2755ad436a1/component.css
 */
#cmp_8061c6e4-e1e2-48c0-8b40-a2755ad436a1 {
	background-color: #FFFFFF;
}

#cmp_8061c6e4-e1e2-48c0-8b40-a2755ad436a1 h1 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_8061c6e4-e1e2-48c0-8b40-a2755ad436a1 h2 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_8061c6e4-e1e2-48c0-8b40-a2755ad436a1 h3 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_8061c6e4-e1e2-48c0-8b40-a2755ad436a1 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_8061c6e4-e1e2-48c0-8b40-a2755ad436a1 .content {
		margin: 0 auto;
		width: 80%;
	}
}
#cmp_8061c6e4-e1e2-48c0-8b40-a2755ad436a1  {
	padding-bottom: 20px;
}
/*
 * components/shop/listing/cmp_b1141451-64c0-44d7-b5d3-0a77434ca405/component.css
 */
#cmp_b1141451-64c0-44d7-b5d3-0a77434ca405 {
	background-color: #FFFFFF;
}

#cmp_b1141451-64c0-44d7-b5d3-0a77434ca405 h1 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_b1141451-64c0-44d7-b5d3-0a77434ca405 h2 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_b1141451-64c0-44d7-b5d3-0a77434ca405 h3 {
	color: rgb(117, 117, 117);
	font-family: Lato;
	font-size: 24px;
}

#cmp_b1141451-64c0-44d7-b5d3-0a77434ca405 p {
	color: #757575;
	font-family: Lato;
	font-size: 24px;
}

@media (min-width: 768px) {
	#cmp_b1141451-64c0-44d7-b5d3-0a77434ca405 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_b1141451-64c0-44d7-b5d3-0a77434ca405 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 24px;
}

#cmp_b1141451-64c0-44d7-b5d3-0a77434ca405 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 24px;
}

/*
 * components/shop/listing/cmp_d4990d12-e41f-4af4-bf56-42d0895e24fd/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_6ccdf002-1ac4-4c13-840c-7a6f279bd19b/component.css
 */
#cmp_6ccdf002-1ac4-4c13-840c-7a6f279bd19b.shop-product-header {
	padding: 60px 0 20px 0;
}

/*
 * components/shop/product/cmp_7ccc5a16-85c0-4672-baa1-bc8f8432093b/component.css
 */
#cmp_7ccc5a16-85c0-4672-baa1-bc8f8432093b .shop-product select {
	width: auto;
}

#cmp_7ccc5a16-85c0-4672-baa1-bc8f8432093b .shop-product__name {
	margin-bottom: 20px;
}

#cmp_7ccc5a16-85c0-4672-baa1-bc8f8432093b .shop-product__price {
	margin-bottom: 20px;
}

#cmp_7ccc5a16-85c0-4672-baa1-bc8f8432093b .shop-product__add-to-cart {
	margin-bottom: 20px;
}

#cmp_7ccc5a16-85c0-4672-baa1-bc8f8432093b .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin-bottom: 40px;
}

#cmp_7ccc5a16-85c0-4672-baa1-bc8f8432093b .shop-product__review-share-desktop .rating,
#cmp_7ccc5a16-85c0-4672-baa1-bc8f8432093b .shop-product__review-share-desktop .sharing {
	padding-top: 10px;
}

#cmp_7ccc5a16-85c0-4672-baa1-bc8f8432093b .shop-product__review-share-desktop h3,
#cmp_7ccc5a16-85c0-4672-baa1-bc8f8432093b .shop-product__review-share-mobile h3 {
	margin: 10px 0;
}
#cmp_7ccc5a16-85c0-4672-baa1-bc8f8432093b  {
	padding-top: 0;
}
/*
 * components/sold_out/cmp_689ec693-229b-46af-af29-b4d1022e6d9d/component.css
 */
#cmp_689ec693-229b-46af-af29-b4d1022e6d9d {
	background-color: #FFFFFF;
}

#cmp_689ec693-229b-46af-af29-b4d1022e6d9d h1 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_689ec693-229b-46af-af29-b4d1022e6d9d h2 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_689ec693-229b-46af-af29-b4d1022e6d9d h3 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_689ec693-229b-46af-af29-b4d1022e6d9d p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}


#cmp_689ec693-229b-46af-af29-b4d1022e6d9d .btn {
	background-color: rgb(249, 156, 29);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_689ec693-229b-46af-af29-b4d1022e6d9d .btn:hover {
	background-color: rgb(229, 103, 67);
	color: #FFFFFF;
}

#cmp_689ec693-229b-46af-af29-b4d1022e6d9d .component-rich-text-with-button__content-row,
#cmp_689ec693-229b-46af-af29-b4d1022e6d9d .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_689ec693-229b-46af-af29-b4d1022e6d9d .component-rich-text-with-button__content-row,
	#cmp_689ec693-229b-46af-af29-b4d1022e6d9d .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}
#cmp_689ec693-229b-46af-af29-b4d1022e6d9d  {
	padding-top: 0;
}
/*
 * components/sold_out/cmp_b0e8f37c-2014-4875-b96d-b84e9c1e922a/component.css
 */
#cmp_b0e8f37c-2014-4875-b96d-b84e9c1e922a img {
	max-width: 100%;
}

/*
 * components/subscribe/cmp_356c7a52-55a0-4c45-92ba-900815fa085e/component.css
 */
#cmp_356c7a52-55a0-4c45-92ba-900815fa085e {
	background-color: #F3F2F0;
}

#cmp_356c7a52-55a0-4c45-92ba-900815fa085e h3 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_356c7a52-55a0-4c45-92ba-900815fa085e p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_356c7a52-55a0-4c45-92ba-900815fa085e .sf-item {
	background-color: #FFFFFF;
}
/*
 * components/subscribe/cmp_63b75f0b-e8cb-4c15-919f-718527648d0f/component.css
 */
#cmp_63b75f0b-e8cb-4c15-919f-718527648d0f {
	background-color: #FFFFFF;
	padding-bottom: 0;
}

#cmp_63b75f0b-e8cb-4c15-919f-718527648d0f .progress-bar-container {
	position: relative;
}

#cmp_63b75f0b-e8cb-4c15-919f-718527648d0f .progress-bar-filler {
	background: #F3F2F0;
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_63b75f0b-e8cb-4c15-919f-718527648d0f .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_63b75f0b-e8cb-4c15-919f-718527648d0f .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_63b75f0b-e8cb-4c15-919f-718527648d0f .progress-bar .step .point {
	background-color: #FFFFFF;
	border: 4px solid #F3F2F0;
	border-radius: 10px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_63b75f0b-e8cb-4c15-919f-718527648d0f .progress-bar .step.active .point {
	background-color: rgb(249, 156, 29);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_63b75f0b-e8cb-4c15-919f-718527648d0f .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe/cmp_666aa08d-cd66-4238-bfd4-5c1c9f73a4ec/component.css
 */
#cmp_666aa08d-cd66-4238-bfd4-5c1c9f73a4ec {
	background-color: #FFFFFF;
}

#cmp_666aa08d-cd66-4238-bfd4-5c1c9f73a4ec h1 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_666aa08d-cd66-4238-bfd4-5c1c9f73a4ec h2 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_666aa08d-cd66-4238-bfd4-5c1c9f73a4ec h3 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_666aa08d-cd66-4238-bfd4-5c1c9f73a4ec p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_666aa08d-cd66-4238-bfd4-5c1c9f73a4ec .content {
		margin: 0 auto;
		width: 80%;
	}
}
#cmp_666aa08d-cd66-4238-bfd4-5c1c9f73a4ec  {
	padding-bottom: 0;
}
/*
 * components/subscribe/cmp_8f4f967e-e2a2-437e-be67-9988c071da48/component.css
 */
#cmp_8f4f967e-e2a2-437e-be67-9988c071da48 {
	background-color: #FFFFFF;
}

#cmp_8f4f967e-e2a2-437e-be67-9988c071da48 h1 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_8f4f967e-e2a2-437e-be67-9988c071da48 h2 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_8f4f967e-e2a2-437e-be67-9988c071da48 h3 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_8f4f967e-e2a2-437e-be67-9988c071da48 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_8f4f967e-e2a2-437e-be67-9988c071da48 .content {
		margin: 0 auto;
		width: 80%;
	}
}
/*
 * components/subscribe/cmp_fa211111-984f-4f13-9072-7a3f88ad900c/component.css
 */
#cmp_fa211111-984f-4f13-9072-7a3f88ad900c {
	background-color: #FFFFFF;
}

#cmp_fa211111-984f-4f13-9072-7a3f88ad900c .content-row {
	margin: 0;

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

#cmp_fa211111-984f-4f13-9072-7a3f88ad900c .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_fa211111-984f-4f13-9072-7a3f88ad900c .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_fa211111-984f-4f13-9072-7a3f88ad900c h1 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_fa211111-984f-4f13-9072-7a3f88ad900c h2 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_fa211111-984f-4f13-9072-7a3f88ad900c h3 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_fa211111-984f-4f13-9072-7a3f88ad900c p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_fa211111-984f-4f13-9072-7a3f88ad900c .content {
		margin: 15px;
	}
}
#cmp_fa211111-984f-4f13-9072-7a3f88ad900c  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/addons_step/cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9/component.css
 */
#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9.addons-container {
	margin-right: auto;
	margin-left: auto;

	max-width: 940px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

	margin-bottom: 15px;
}

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

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

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

	color: #FFFFFF;
	background-color: rgb(249, 156, 29);
}

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

#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(249, 156, 29);
}

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

@media only screen and (max-width : 768px) {
	#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

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

	.addons-product-right {
		margin-top: 40px;
	}

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

/*
 * components/subscribe_flow/survey_step/cmp_23cadd5d-a334-47e1-967a-27d5139f8470/component.css
 */
#cmp_23cadd5d-a334-47e1-967a-27d5139f8470 {
	background-color: #FFFFFF;
}

#cmp_23cadd5d-a334-47e1-967a-27d5139f8470 .content-row {
	margin: 0;

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

#cmp_23cadd5d-a334-47e1-967a-27d5139f8470 .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_23cadd5d-a334-47e1-967a-27d5139f8470 .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_23cadd5d-a334-47e1-967a-27d5139f8470 h1 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_23cadd5d-a334-47e1-967a-27d5139f8470 h2 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_23cadd5d-a334-47e1-967a-27d5139f8470 h3 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_23cadd5d-a334-47e1-967a-27d5139f8470 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_23cadd5d-a334-47e1-967a-27d5139f8470 .content {
		margin: 15px;
	}
}
#cmp_23cadd5d-a334-47e1-967a-27d5139f8470  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_56b8c9b6-17f2-42ea-ab4a-ffcd1a606450/component.css
 */
#cmp_56b8c9b6-17f2-42ea-ab4a-ffcd1a606450 {
	background-color: #F3F2F0;
}

#cmp_56b8c9b6-17f2-42ea-ab4a-ffcd1a606450 h3 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_56b8c9b6-17f2-42ea-ab4a-ffcd1a606450 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/subscribe_flow/survey_step/cmp_5f7151e1-5302-44e7-b749-632022748572/component.css
 */
#cmp_5f7151e1-5302-44e7-b749-632022748572 {
	background-color: #FFFFFF;
}

#cmp_5f7151e1-5302-44e7-b749-632022748572 h1 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_5f7151e1-5302-44e7-b749-632022748572 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}
/*
 * components/subscribe_flow/survey_step/cmp_c6b49443-b537-4456-a783-97ed32930376/component.css
 */
#cmp_c6b49443-b537-4456-a783-97ed32930376 {
	background-color: #FFFFFF;
	padding-bottom: 0;
}

#cmp_c6b49443-b537-4456-a783-97ed32930376 .progress-bar-container {
	position: relative;
}

#cmp_c6b49443-b537-4456-a783-97ed32930376 .progress-bar-filler {
	background: #F3F2F0;
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_c6b49443-b537-4456-a783-97ed32930376 .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_c6b49443-b537-4456-a783-97ed32930376 .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_c6b49443-b537-4456-a783-97ed32930376 .progress-bar .step .point {
	background-color: #FFFFFF;
	border: 4px solid #F3F2F0;
	border-radius: 10px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_c6b49443-b537-4456-a783-97ed32930376 .progress-bar .step.active .point {
	background-color: rgb(249, 156, 29);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_c6b49443-b537-4456-a783-97ed32930376 .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe_flow/survey_step/cmp_e488d7a8-632e-447c-8212-e350a380dcf5/component.css
 */
#cmp_e488d7a8-632e-447c-8212-e350a380dcf5 {
	background-color: #FFFFFF;
}

#cmp_e488d7a8-632e-447c-8212-e350a380dcf5 h1 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_e488d7a8-632e-447c-8212-e350a380dcf5 h2 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_e488d7a8-632e-447c-8212-e350a380dcf5 h3 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_e488d7a8-632e-447c-8212-e350a380dcf5 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_e488d7a8-632e-447c-8212-e350a380dcf5 .content {
		margin: 0 auto;
		width: 80%;
	}
}
#cmp_e488d7a8-632e-447c-8212-e350a380dcf5  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/terms_step/cmp_089011d4-ab23-4950-b8e4-81e251b34d1a/component.css
 */
#cmp_089011d4-ab23-4950-b8e4-81e251b34d1a {
	background-color: #FFFFFF;
	padding-bottom: 0;
}

#cmp_089011d4-ab23-4950-b8e4-81e251b34d1a .progress-bar-container {
	position: relative;
}

#cmp_089011d4-ab23-4950-b8e4-81e251b34d1a .progress-bar-filler {
	background: #F3F2F0;
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_089011d4-ab23-4950-b8e4-81e251b34d1a .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_089011d4-ab23-4950-b8e4-81e251b34d1a .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_089011d4-ab23-4950-b8e4-81e251b34d1a .progress-bar .step .point {
	background-color: #FFFFFF;
	border: 4px solid #F3F2F0;
	border-radius: 10px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_089011d4-ab23-4950-b8e4-81e251b34d1a .progress-bar .step.active .point {
	background-color: rgb(249, 156, 29);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_089011d4-ab23-4950-b8e4-81e251b34d1a .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe_flow/terms_step/cmp_0e2c48b5-b05f-4329-bec9-2ed74025f670/component.css
 */
#cmp_0e2c48b5-b05f-4329-bec9-2ed74025f670 {
	background-color: #F3F2F0;
}

#cmp_0e2c48b5-b05f-4329-bec9-2ed74025f670 h2 {
	color: rgb(249, 156, 29);
	font-family: Lato;
	font-size: 24px;
}

#cmp_0e2c48b5-b05f-4329-bec9-2ed74025f670 h3 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_0e2c48b5-b05f-4329-bec9-2ed74025f670 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_0e2c48b5-b05f-4329-bec9-2ed74025f670 .sf-item {
	background-color: #FFFFFF;
}
/*
 * components/subscribe_flow/terms_step/cmp_7fc40e20-d250-4e97-a094-fcb092973683/component.css
 */
#cmp_7fc40e20-d250-4e97-a094-fcb092973683 {
	background-color: #FFFFFF;
}

#cmp_7fc40e20-d250-4e97-a094-fcb092973683 h1 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_7fc40e20-d250-4e97-a094-fcb092973683 h2 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_7fc40e20-d250-4e97-a094-fcb092973683 h3 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_7fc40e20-d250-4e97-a094-fcb092973683 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_7fc40e20-d250-4e97-a094-fcb092973683 .content {
		margin: 0 auto;
		width: 80%;
	}
}
/*
 * components/subscribe_flow/terms_step/cmp_a4aa5bca-4947-42ab-9c31-52c3c3a35b0f/component.css
 */
#cmp_a4aa5bca-4947-42ab-9c31-52c3c3a35b0f {
	background-color: #FFFFFF;
}

#cmp_a4aa5bca-4947-42ab-9c31-52c3c3a35b0f .content-row {
	margin: 0;

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

#cmp_a4aa5bca-4947-42ab-9c31-52c3c3a35b0f .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_a4aa5bca-4947-42ab-9c31-52c3c3a35b0f .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_a4aa5bca-4947-42ab-9c31-52c3c3a35b0f h1 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_a4aa5bca-4947-42ab-9c31-52c3c3a35b0f h2 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_a4aa5bca-4947-42ab-9c31-52c3c3a35b0f h3 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_a4aa5bca-4947-42ab-9c31-52c3c3a35b0f p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_a4aa5bca-4947-42ab-9c31-52c3c3a35b0f .content {
		margin: 15px;
	}
}
#cmp_a4aa5bca-4947-42ab-9c31-52c3c3a35b0f  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/terms_step/cmp_f2eeb996-dbc3-4d18-88b5-f899887e61d3/component.css
 */
#cmp_f2eeb996-dbc3-4d18-88b5-f899887e61d3 {
	background-color: #FFFFFF;
}

#cmp_f2eeb996-dbc3-4d18-88b5-f899887e61d3 h1 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_f2eeb996-dbc3-4d18-88b5-f899887e61d3 h2 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_f2eeb996-dbc3-4d18-88b5-f899887e61d3 h3 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_f2eeb996-dbc3-4d18-88b5-f899887e61d3 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_f2eeb996-dbc3-4d18-88b5-f899887e61d3 .content {
		margin: 0 auto;
		width: 80%;
	}
}
#cmp_f2eeb996-dbc3-4d18-88b5-f899887e61d3  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_12db038f-c370-4f41-905e-ae5aee4719b5/component.css
 */
#cmp_12db038f-c370-4f41-905e-ae5aee4719b5 {
	background-color: #FFFFFF;
	padding-bottom: 0;
}

#cmp_12db038f-c370-4f41-905e-ae5aee4719b5 .progress-bar-container {
	position: relative;
}

#cmp_12db038f-c370-4f41-905e-ae5aee4719b5 .progress-bar-filler {
	background: #F3F2F0;
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_12db038f-c370-4f41-905e-ae5aee4719b5 .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_12db038f-c370-4f41-905e-ae5aee4719b5 .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_12db038f-c370-4f41-905e-ae5aee4719b5 .progress-bar .step .point {
	background-color: #FFFFFF;
	border: 4px solid #F3F2F0;
	border-radius: 10px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_12db038f-c370-4f41-905e-ae5aee4719b5 .progress-bar .step.active .point {
	background-color: rgb(249, 156, 29);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_12db038f-c370-4f41-905e-ae5aee4719b5 .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe_flow/variant_step/cmp_234a152d-5f92-4e97-bc93-8d7d374fb4f6/component.css
 */
#cmp_234a152d-5f92-4e97-bc93-8d7d374fb4f6 {
	background-color: #FFFFFF;
}

#cmp_234a152d-5f92-4e97-bc93-8d7d374fb4f6 h1 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_234a152d-5f92-4e97-bc93-8d7d374fb4f6 h2 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_234a152d-5f92-4e97-bc93-8d7d374fb4f6 h3 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_234a152d-5f92-4e97-bc93-8d7d374fb4f6 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_234a152d-5f92-4e97-bc93-8d7d374fb4f6 .content {
		margin: 0 auto;
		width: 80%;
	}
}
#cmp_234a152d-5f92-4e97-bc93-8d7d374fb4f6  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_641e7454-9c80-409d-bd88-9bc3403ecffc/component.css
 */
#cmp_641e7454-9c80-409d-bd88-9bc3403ecffc {
	background-color: #FFFFFF;
}

#cmp_641e7454-9c80-409d-bd88-9bc3403ecffc .content-row {
	margin: 0;

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

#cmp_641e7454-9c80-409d-bd88-9bc3403ecffc .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_641e7454-9c80-409d-bd88-9bc3403ecffc .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_641e7454-9c80-409d-bd88-9bc3403ecffc h1 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_641e7454-9c80-409d-bd88-9bc3403ecffc h2 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_641e7454-9c80-409d-bd88-9bc3403ecffc h3 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_641e7454-9c80-409d-bd88-9bc3403ecffc p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_641e7454-9c80-409d-bd88-9bc3403ecffc .content {
		margin: 15px;
	}
}
#cmp_641e7454-9c80-409d-bd88-9bc3403ecffc  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_6a5d0422-4f1c-46b6-8e3e-704e9ec6d6f9/component.css
 */
#cmp_6a5d0422-4f1c-46b6-8e3e-704e9ec6d6f9 {
	background-color: #FFFFFF;
}

#cmp_6a5d0422-4f1c-46b6-8e3e-704e9ec6d6f9 h1 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_6a5d0422-4f1c-46b6-8e3e-704e9ec6d6f9 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}
/*
 * components/subscribe_flow/variant_step/cmp_87e56b42-1fed-425c-b1df-8e5683d3717f/component.css
 */
#cmp_87e56b42-1fed-425c-b1df-8e5683d3717f {
	background-color: #F3F2F0;
}

#cmp_87e56b42-1fed-425c-b1df-8e5683d3717f h3 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_87e56b42-1fed-425c-b1df-8e5683d3717f p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_87e56b42-1fed-425c-b1df-8e5683d3717f .sf-item {
	background-color: #FFFFFF;
}
/*
 * components/terms/cmp_4b9af128-b8a5-4e08-a362-0eabc725fa40/component.css
 */
#cmp_4b9af128-b8a5-4e08-a362-0eabc725fa40 {
	background-color: #FFFFFF;
}

#cmp_4b9af128-b8a5-4e08-a362-0eabc725fa40 h1 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_4b9af128-b8a5-4e08-a362-0eabc725fa40 h2 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_4b9af128-b8a5-4e08-a362-0eabc725fa40 h3 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_4b9af128-b8a5-4e08-a362-0eabc725fa40 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_4b9af128-b8a5-4e08-a362-0eabc725fa40 .content {
		margin: 0 auto;
		width: 80%;
	}
}
/*
 * components/view-cart/cmp_6e6d1f30-edba-4af3-b598-a02c0cbb0a21/component.css
 */
#cmp_6e6d1f30-edba-4af3-b598-a02c0cbb0a21 {
	background-color: #FFFFFF;
}

#cmp_6e6d1f30-edba-4af3-b598-a02c0cbb0a21 h1 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_6e6d1f30-edba-4af3-b598-a02c0cbb0a21 h2 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_6e6d1f30-edba-4af3-b598-a02c0cbb0a21 h3 {
	color: rgb(249, 156, 29);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_6e6d1f30-edba-4af3-b598-a02c0cbb0a21 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_6e6d1f30-edba-4af3-b598-a02c0cbb0a21 .content {
		margin: 0 auto;
		width: 80%;
	}
}
/*
 * components/view-cart/cmp_ccecda08-7030-464a-9693-cb340d99c565/component.css
 */
#cmp_ccecda08-7030-464a-9693-cb340d99c565 {
	padding: 15px 15px 100px 15px;
}

#cmp_ccecda08-7030-464a-9693-cb340d99c565 .cart-thead {
	border-bottom: 1px solid #E1E1E1;
	padding: 10px 0;
}

#cmp_ccecda08-7030-464a-9693-cb340d99c565 .cart-thead h3 {
	text-transform: uppercase;
}

#cmp_ccecda08-7030-464a-9693-cb340d99c565 .cart-item {
	border: 1px solid #E1E1E1;
	padding: 25px 0;
	position: relative;
}

#cmp_ccecda08-7030-464a-9693-cb340d99c565 .product-main {
	margin: 0 0 15px 0;
}

#cmp_ccecda08-7030-464a-9693-cb340d99c565 .product-label p {
	margin: 0;
}

#cmp_ccecda08-7030-464a-9693-cb340d99c565 .product-label .info {
	color: rgb(249, 156, 29);
	text-align: right;
	text-transform: uppercase;
}

#cmp_ccecda08-7030-464a-9693-cb340d99c565 .product-label .meta {
	color: #757575;
	font-size: 14px;
}

#cmp_ccecda08-7030-464a-9693-cb340d99c565 .product-rem-btn {
	position: absolute;
	right: 1%;
	top: 1%;
}

#cmp_ccecda08-7030-464a-9693-cb340d99c565 figure {
	margin: 0 0 15px 0;
}

#cmp_ccecda08-7030-464a-9693-cb340d99c565 .cart-subtotal {
	margin: 50px 0 0 0;
}

#cmp_ccecda08-7030-464a-9693-cb340d99c565 .cart-subtotal h2 {
	margin: 0 0 15px 0;
}

#cmp_ccecda08-7030-464a-9693-cb340d99c565 .cart-subtotal h3 {
	margin: 0 0 25px 0;
	text-transform: uppercase;
}

#cmp_ccecda08-7030-464a-9693-cb340d99c565 .cart-subtotal p {
	margin: 0 0 25px 0;
}

@media (min-width: 768px) {
	#cmp_ccecda08-7030-464a-9693-cb340d99c565 .cart-item {
		border-width: 0 0 1px 0;
	}
	#cmp_ccecda08-7030-464a-9693-cb340d99c565 .product-rem-btn {
		top: 40%;
	}
	#cmp_ccecda08-7030-464a-9693-cb340d99c565 figure {
		margin: 0;
	}
}