/*
 * 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(44, 45, 60);
	font-family: Oswald;
	font-size: 48px;
	letter-spacing: 1px;
	line-height: 1;
	margin: 0 0 25px 0;
}

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

h3 {
	color: rgb(44, 45, 60);
	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(44, 45, 60);
}

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

/* General Component Styles */
section[class^="component"] {
	padding: 60px 0;
}

section.headline {
	margin-bottom: 15px;
}

/* Utility Classes */
.hidden {
	display: none;
}

.text-center {
	text-align: center;
}

.flex-center {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

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

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

.row-reverse {
	-webkit-flex-direction: row-reverse;
	-moz-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.square-img-container {
	padding: 0;
	position: relative;

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

/* Magical CSS hack to maintain 1:1 Aspect Ratio */
.square-img-container::before {
	content: "";
	display: block;
	padding-top: 100%;
}

.square-img-container .square-img-content {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

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

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

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

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

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

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

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

/* Other bootstrap overrides
------------------------------*/
.dropdown-menu {
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%)
}

.nav-pills .nav-link.active,
.nav-pills .nav-link.active:focus,
.nav-pills .nav-link.active:hover,
.nav-pills .nav-link.active:active,
.nav-pills .nav-item.open .nav-link,
.nav-pills .nav-item.open .nav-link:focus,
.nav-pills .nav-item.open .nav-link:hover,
.nav-pills .nav-item.open .nav-link:active {
	background-color: rgb(44, 45, 60);
}

.panel {
	background-color: #fff;
	border: 1px solid transparent;
	border-radius: 4px;
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
	box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
	margin: 0 0 20px 0;
}

.panel-body {
	padding: 15px;
}

.panel-heading {
	border-bottom: 1px solid transparent;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	padding: 10px 15px;
}

.panel-heading > .dropdown .dropdown-toggle {
	color: inherit;
}

.panel-title {
	color: inherit;
	font-size: 16px;
	margin: 0;
}

.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
	color: inherit;
}

.panel-footer {
	background-color: #f5f5f5;
	border-top: 1px solid #ddd;
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px;
	padding: 10px 15px;
}

/* Buttons */
.btn {
	border-radius: 0;
	border: none;
	font-size: 14px;
	letter-spacing: 0.077em;
	padding: 1em 3em;
}

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

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

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

.btn-primary {
	background-color: rgb(44, 45, 60);
	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(238, 65, 65);
	color: #FFFFFF;
}

.btn-secondary {
	background-color: rgb(44, 45, 60);
	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(238, 65, 65);
	color: #FFFFFF;
}

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

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

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

/* Subscribe Flow
------------------------------*/
.sf-grid {
	display: -webkit-flex;
	display: -moz-flexbox;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
}

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

	padding: .9375rem 0;
}

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

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

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

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

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

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

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

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

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

/* Orders List
------------------------------*/
.orders-list {
	width: 100%;
	margin: 25px 0;
}
.orders-list h1 {
	text-align: center;
	color: rgb(44, 45, 60);
}
.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(44, 45, 60);
	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(238, 65, 65);
	color: #FFFFFF;
}

/* Thank You
------------------------------*/
.checkout_content section {
	border-color: #F5F5F5;
}

.checkout_content h1 {
	margin: 0 0 25px 0;
	text-align: center;
}

.cart_listing table {
	border-color: #F5F5F5;
}

/* Account
------------------------------*/
.account-header h1,
.account-header h2 {
	margin: 0 0 15px 0;
}

.account-header .gift-card-container {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

.account-header .gift-card-balance {
	margin: 0 0 15px 0;
}

.my-account {
	margin: 25px 0;
}

.address-container {
	width: 100%;
}

.address-panel .inner-address-row {
	padding: 0;
}

.address-panel .address-edit-btn {
	min-width: auto;
	padding: 10px;
}

.address-info #is_primary {
	margin: 0;
	width: auto;
}

.address-container {
	width: 100%;
}

.errors {
	margin: 25px 0;
}

.cratejoy-loading-icon {
	color: #EE4141;
}

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

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

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

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

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

#skip_button:hover,
#skip_button:focus,
#skip_button:active,
input[type="radio"]:checked + label.cj-btn, #skip_button.skipped {
	background-color: rgb(238, 65, 65);
	border-color: rgb(238, 65, 65);
	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_2fe4958f-a218-469e-8c91-7112081f8dfe/component.css
 */
#cmp_2fe4958f-a218-469e-8c91-7112081f8dfe {
	background-color: rgba(232, 228, 226, 0.65);
}

#cmp_2fe4958f-a218-469e-8c91-7112081f8dfe h1 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_2fe4958f-a218-469e-8c91-7112081f8dfe h2 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_2fe4958f-a218-469e-8c91-7112081f8dfe h3 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_2fe4958f-a218-469e-8c91-7112081f8dfe p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_2fe4958f-a218-469e-8c91-7112081f8dfe .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_2fe4958f-a218-469e-8c91-7112081f8dfe ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_2fe4958f-a218-469e-8c91-7112081f8dfe ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/about/cmp_97c8f8a8-e217-444e-98ce-e514b856e0d3/component.css
 */
#cmp_97c8f8a8-e217-444e-98ce-e514b856e0d3 {
	padding: 0;
}

#cmp_97c8f8a8-e217-444e-98ce-e514b856e0d3 .hero-content {
	background-color: #FFFFFF;
	padding: 20px;
}

#cmp_97c8f8a8-e217-444e-98ce-e514b856e0d3 .hero-content h1 {
	color: #EE4141;
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_97c8f8a8-e217-444e-98ce-e514b856e0d3 .hero-content h2 {
	color: #FFFFFF;
	font-family: Oswald;
	font-size: 32px;
}

#cmp_97c8f8a8-e217-444e-98ce-e514b856e0d3 .hero-content h3 {
	color: #FFFFFF;
	font-family: Oswald;
	font-size: 24px;
}

#cmp_97c8f8a8-e217-444e-98ce-e514b856e0d3 .hero-content p {
	color: rgb(117, 117, 117);
	font-family: Lato;
	font-size: 14px;
}

#cmp_97c8f8a8-e217-444e-98ce-e514b856e0d3 .hero-content .btn {
	background-color: #EE4141;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 0px;
}

#cmp_97c8f8a8-e217-444e-98ce-e514b856e0d3 .hero-content .btn:hover {
	background-color: #B58A62;
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_97c8f8a8-e217-444e-98ce-e514b856e0d3 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_97c8f8a8-e217-444e-98ce-e514b856e0d3 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_97c8f8a8-e217-444e-98ce-e514b856e0d3 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_97c8f8a8-e217-444e-98ce-e514b856e0d3 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_97c8f8a8-e217-444e-98ce-e514b856e0d3 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_97c8f8a8-e217-444e-98ce-e514b856e0d3 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_97c8f8a8-e217-444e-98ce-e514b856e0d3 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/checkout/cmp_6033975e-be09-4cee-b1d1-961893fca070/component.css
 */
#cmp_6033975e-be09-4cee-b1d1-961893fca070 .checkout_content {
	overflow: auto;
}

#cmp_6033975e-be09-4cee-b1d1-961893fca070 .checkout_content section {
	border-color: #F5F5F5;
}

#cmp_6033975e-be09-4cee-b1d1-961893fca070 .cart_listing table {
	border-color: #F5F5F5;
}

/*
 * components/customer/account/cmp_38656598-0d25-494e-835c-658ec0b9b146/component.css
 */
#cmp_38656598-0d25-494e-835c-658ec0b9b146 .customer-product-review {
	border-bottom: 1px solid #ddd;
	padding: 15px;
}

#cmp_38656598-0d25-494e-835c-658ec0b9b146 .customer-product-review:last-child {
	border-bottom: 0;
}

#cmp_38656598-0d25-494e-835c-658ec0b9b146 .customer-product-rating {
	color: #EE4141;
	float: right;
}

/*
 * components/customer/account/cmp_b57c2197-6430-419c-9b25-e5c61748b4b0/component.css
 */

/*
 * components/customer/edit/cmp_aa215d6d-0ef9-4a21-b5bb-87a4f8340e7f/component.css
 */

/*
 * components/customer/forgot_password/cmp_5e7b4ffd-8662-444a-bd85-1975938f5712/component.css
 */
#cmp_5e7b4ffd-8662-444a-bd85-1975938f5712 {
	padding: 0 0 120px 0;
}
/*
 * components/customer/forgot_password/cmp_9308075c-bbe1-4cc1-8afd-e4e51a44a18e/component.css
 */
#cmp_9308075c-bbe1-4cc1-8afd-e4e51a44a18e {
	background-color: #FFFFFF;
}

#cmp_9308075c-bbe1-4cc1-8afd-e4e51a44a18e h1 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_9308075c-bbe1-4cc1-8afd-e4e51a44a18e h2 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_9308075c-bbe1-4cc1-8afd-e4e51a44a18e h3 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_9308075c-bbe1-4cc1-8afd-e4e51a44a18e p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_9308075c-bbe1-4cc1-8afd-e4e51a44a18e .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_9308075c-bbe1-4cc1-8afd-e4e51a44a18e ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_9308075c-bbe1-4cc1-8afd-e4e51a44a18e ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/customer/login/cmp_2e32fd62-ee92-4b1f-9874-21923d3f2aff/component.css
 */
#cmp_2e32fd62-ee92-4b1f-9874-21923d3f2aff {
	padding: 0 0 120px 0;
}
/*
 * components/customer/login/cmp_44af535b-6cc7-4682-ace8-bd1515815f7b/component.css
 */
#cmp_44af535b-6cc7-4682-ace8-bd1515815f7b {
	background-color: #FFFFFF;
}

#cmp_44af535b-6cc7-4682-ace8-bd1515815f7b h1 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_44af535b-6cc7-4682-ace8-bd1515815f7b h2 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_44af535b-6cc7-4682-ace8-bd1515815f7b h3 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_44af535b-6cc7-4682-ace8-bd1515815f7b p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_44af535b-6cc7-4682-ace8-bd1515815f7b .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_44af535b-6cc7-4682-ace8-bd1515815f7b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_44af535b-6cc7-4682-ace8-bd1515815f7b ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/customer/order/cmp_16334132-24c4-4aca-91d0-1192852acb7b/component.css
 */

/*
 * components/customer/orders/cmp_9fb4b79b-bb55-4cdf-9eb8-0c9219133445/component.css
 */

/*
 * components/customer/password_reset/cmp_45546c9a-bb8e-4a11-b6d5-841977e51da3/component.css
 */
#cmp_45546c9a-bb8e-4a11-b6d5-841977e51da3 {
	background-color: #FFFFFF;
}

#cmp_45546c9a-bb8e-4a11-b6d5-841977e51da3 h1 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_45546c9a-bb8e-4a11-b6d5-841977e51da3 h2 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_45546c9a-bb8e-4a11-b6d5-841977e51da3 h3 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_45546c9a-bb8e-4a11-b6d5-841977e51da3 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_45546c9a-bb8e-4a11-b6d5-841977e51da3 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_45546c9a-bb8e-4a11-b6d5-841977e51da3 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_45546c9a-bb8e-4a11-b6d5-841977e51da3 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/customer/password_reset/cmp_95a991e0-8a9a-42ff-8734-c1f922dc9bb5/component.css
 */
#cmp_95a991e0-8a9a-42ff-8734-c1f922dc9bb5 {
	padding: 0 0 120px 0;
}
/*
 * components/customer/thank_you/cmp_04d692aa-a6c5-4fad-b09f-132324428a07/component.css
 */

/*
 * components/faq/cmp_001733c0-0200-4aea-b0a9-2bc2c86fb097/component.css
 */
#cmp_001733c0-0200-4aea-b0a9-2bc2c86fb097 {
	background-color: rgba(232, 228, 226, 0.65);
}

#cmp_001733c0-0200-4aea-b0a9-2bc2c86fb097 h1 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_001733c0-0200-4aea-b0a9-2bc2c86fb097 h2 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_001733c0-0200-4aea-b0a9-2bc2c86fb097 h3 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_001733c0-0200-4aea-b0a9-2bc2c86fb097 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_001733c0-0200-4aea-b0a9-2bc2c86fb097 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_001733c0-0200-4aea-b0a9-2bc2c86fb097 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_001733c0-0200-4aea-b0a9-2bc2c86fb097 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/faq/cmp_fc8dc2bd-bdce-4333-9a03-a1ceb908916a/component.css
 */
#cmp_fc8dc2bd-bdce-4333-9a03-a1ceb908916a {
	background-color: #FFFFFF;
}

#cmp_fc8dc2bd-bdce-4333-9a03-a1ceb908916a h1 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_fc8dc2bd-bdce-4333-9a03-a1ceb908916a h2 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_fc8dc2bd-bdce-4333-9a03-a1ceb908916a h3 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_fc8dc2bd-bdce-4333-9a03-a1ceb908916a p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_fc8dc2bd-bdce-4333-9a03-a1ceb908916a .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_fc8dc2bd-bdce-4333-9a03-a1ceb908916a ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_fc8dc2bd-bdce-4333-9a03-a1ceb908916a ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_fc8dc2bd-bdce-4333-9a03-a1ceb908916a h2 {
	margin: 0 0 40px 0;
}
#cmp_fc8dc2bd-bdce-4333-9a03-a1ceb908916a p {
	border-bottom: 1px solid #EEEEEE;
	padding: 0 0 25px 0;
}
/*
 * components/get_started/cmp_532e3ba1-58ad-4de2-ad25-df011d1f1bd1/component.css
 */
#cmp_532e3ba1-58ad-4de2-ad25-df011d1f1bd1 {
	background-color: rgb(255, 255, 255);
}

#cmp_532e3ba1-58ad-4de2-ad25-df011d1f1bd1 h1 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_532e3ba1-58ad-4de2-ad25-df011d1f1bd1 h2 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_532e3ba1-58ad-4de2-ad25-df011d1f1bd1 h3 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_532e3ba1-58ad-4de2-ad25-df011d1f1bd1 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_532e3ba1-58ad-4de2-ad25-df011d1f1bd1 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_532e3ba1-58ad-4de2-ad25-df011d1f1bd1 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_532e3ba1-58ad-4de2-ad25-df011d1f1bd1 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/get_started/cmp_62d800c5-1436-40f5-bc47-df0af17aa3da/component.css
 */
#cmp_62d800c5-1436-40f5-bc47-df0af17aa3da {
 background-color: ;
}

#cmp_62d800c5-1436-40f5-bc47-df0af17aa3da .content-row {
 margin: 0;

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

#cmp_62d800c5-1436-40f5-bc47-df0af17aa3da .content {
 background-color: rgb(255, 255, 255);
 border: 5px solid rgb(44, 45, 60);
 margin: 15px 0;
 padding: 25px;

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

#cmp_62d800c5-1436-40f5-bc47-df0af17aa3da .square-image {
 background-repeat: no-repeat !important;
 background-size: contain !important;
 height: 350px;
 margin: 0 0 15px 0;
 width: 350px;
}

#cmp_62d800c5-1436-40f5-bc47-df0af17aa3da h1 {
 color: rgb(44, 45, 60);
 font-family: Oswald;
 font-size: 20px;
}

#cmp_62d800c5-1436-40f5-bc47-df0af17aa3da h2 {
 color: rgb(44, 45, 60);
 font-family: Oswald;
 font-size: 16px;
}

#cmp_62d800c5-1436-40f5-bc47-df0af17aa3da h3 {
 color: rgb(44, 45, 60);
 font-family: Oswald;
 font-size: 24px;
}

#cmp_62d800c5-1436-40f5-bc47-df0af17aa3da p {
 color: #757575;
 font-family: Lato;
 font-size: 14px;
}

@media (min-width: 768px) {
 #cmp_62d800c5-1436-40f5-bc47-df0af17aa3da .content {
  margin: 15px;
 }
}
#cmp_62d800c5-1436-40f5-bc47-df0af17aa3da  {
 padding-top: 0;
}
#cmp_62d800c5-1436-40f5-bc47-df0af17aa3da .btn {
 background-color: rgb(238, 65, 65);
 color: #FFFFFF;
 font-family: Lato;
 font-size: 14px;
}

#cmp_62d800c5-1436-40f5-bc47-df0af17aa3da .btn:hover {
 background-color: rgb(44, 45, 60);
 color: #FFFFFF;
}
/*
 * components/get_started/cmp_759fd711-cb18-4e9c-9190-328d60eef76a/component.css
 */
#cmp_759fd711-cb18-4e9c-9190-328d60eef76a {
	background-color: #FFFFFF;
}

#cmp_759fd711-cb18-4e9c-9190-328d60eef76a h1 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_759fd711-cb18-4e9c-9190-328d60eef76a h2 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_759fd711-cb18-4e9c-9190-328d60eef76a h3 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_759fd711-cb18-4e9c-9190-328d60eef76a p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}


#cmp_759fd711-cb18-4e9c-9190-328d60eef76a .btn {
	background-color: rgb(238, 65, 65);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_759fd711-cb18-4e9c-9190-328d60eef76a .btn:hover {
	background-color: rgb(44, 45, 60);
	color: #FFFFFF;
}

#cmp_759fd711-cb18-4e9c-9190-328d60eef76a .component-rich-text-with-button__content-row,
#cmp_759fd711-cb18-4e9c-9190-328d60eef76a .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_759fd711-cb18-4e9c-9190-328d60eef76a .component-rich-text-with-button__content-row,
	#cmp_759fd711-cb18-4e9c-9190-328d60eef76a .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_759fd711-cb18-4e9c-9190-328d60eef76a ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_759fd711-cb18-4e9c-9190-328d60eef76a ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/get_started/cmp_825e550d-9816-478d-ab3e-c5a9d204fbf9/component.css
 */
#cmp_825e550d-9816-478d-ab3e-c5a9d204fbf9 {
 background-color: rgba(232, 228, 226, 0.65);
}

#cmp_825e550d-9816-478d-ab3e-c5a9d204fbf9 .content {
 margin: 10px auto;
 max-width: 250px;
}

#cmp_825e550d-9816-478d-ab3e-c5a9d204fbf9 .content .propositions-title {
 -webkit-align-items: center;
 -moz-align-items: center;
 -ms-align-items: center;
 align-items: center;


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

#cmp_825e550d-9816-478d-ab3e-c5a9d204fbf9 .content .propositions-title h3 {
 margin: 0;
}

#cmp_825e550d-9816-478d-ab3e-c5a9d204fbf9 .content .propositions-image {
 background-repeat: no-repeat;
 background-size: contain !important;
 height: 40px;
 margin: 15px;
 width: 40px;
}

#cmp_825e550d-9816-478d-ab3e-c5a9d204fbf9 h1 {
 color: rgb(44, 45, 60);
 font-family: Oswald;
 font-size: 48px;
}

#cmp_825e550d-9816-478d-ab3e-c5a9d204fbf9 h2 {
 color: rgb(44, 45, 60);
 font-family: Oswald;
 font-size: 32px;
}

#cmp_825e550d-9816-478d-ab3e-c5a9d204fbf9 h3 {
 color: rgb(44, 45, 60);
 font-family: Oswald;
 font-size: 16px;
}

#cmp_825e550d-9816-478d-ab3e-c5a9d204fbf9 p {
 color: #757575;
 font-family: Lato;
 font-size: 13px;
     padding: 5px;
}
/*
 * components/get_started/cmp_8bdecbd8-0aad-4826-bfd4-cf76470cda2c/component.css
 */
#cmp_8bdecbd8-0aad-4826-bfd4-cf76470cda2c {
	background-color: rgba(232, 228, 226, 0.65);
}

#cmp_8bdecbd8-0aad-4826-bfd4-cf76470cda2c h1 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_8bdecbd8-0aad-4826-bfd4-cf76470cda2c h2 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_8bdecbd8-0aad-4826-bfd4-cf76470cda2c h3 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_8bdecbd8-0aad-4826-bfd4-cf76470cda2c p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_8bdecbd8-0aad-4826-bfd4-cf76470cda2c .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_8bdecbd8-0aad-4826-bfd4-cf76470cda2c ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_8bdecbd8-0aad-4826-bfd4-cf76470cda2c ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/get_started/cmp_c25c687b-6fbe-44ea-9f78-188df3a1d0c4/component.css
 */
#cmp_c25c687b-6fbe-44ea-9f78-188df3a1d0c4 {
 background-color: ;
}

#cmp_c25c687b-6fbe-44ea-9f78-188df3a1d0c4 .content-row {
 margin: 0;

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

#cmp_c25c687b-6fbe-44ea-9f78-188df3a1d0c4 .content {
 background-color: #FFFFFF;
 border: 5px solid #FFFFFF;
 margin: 15px 0;
 padding: 15px;

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

#cmp_c25c687b-6fbe-44ea-9f78-188df3a1d0c4 .square-image {
 background-repeat: no-repeat !important;
 background-size: contain !important;
 height: 170px;
 margin: 0 0 15px 0;
 width: 170px;
}

#cmp_c25c687b-6fbe-44ea-9f78-188df3a1d0c4 h1 {
 color: rgb(117, 117, 117);
 font-family: Lato;
 font-size: 14px;
}

#cmp_c25c687b-6fbe-44ea-9f78-188df3a1d0c4 h2 {
 color: rgb(44, 45, 60);
 font-family: Oswald;
 font-size: 32px;
}

#cmp_c25c687b-6fbe-44ea-9f78-188df3a1d0c4 h3 {
 color: rgb(84, 185, 72);
 font-family: Lato;
 font-size: 14px;
}

#cmp_c25c687b-6fbe-44ea-9f78-188df3a1d0c4 p {
 color: rgb(250, 188, 2);
 font-family: Lato;
 font-size: 22px;
}

@media (min-width: 768px) {
 #cmp_c25c687b-6fbe-44ea-9f78-188df3a1d0c4 .content {
  margin: 5px;
 }
}
#cmp_c25c687b-6fbe-44ea-9f78-188df3a1d0c4  {
 padding-top: 0;
}
/*
 * components/get_started/cmp_fc3508e2-6c19-4ade-9afb-c1a0b77c44fd/component.css
 */
#cmp_fc3508e2-6c19-4ade-9afb-c1a0b77c44fd {
 background-color: rgb(255, 255, 255);
 padding-bottom: 30px;
}

#cmp_fc3508e2-6c19-4ade-9afb-c1a0b77c44fd .progress-bar-container {
 position: relative;
}

#cmp_fc3508e2-6c19-4ade-9afb-c1a0b77c44fd .progress-bar-filler {
 background: rgb(44, 45, 60);
 width: 90%;
 height: 2px;
 margin: 0 5%;
 position: absolute;
 top: 8px;
 right: 0;
 left: 0;
 z-index: 10;
}

#cmp_fc3508e2-6c19-4ade-9afb-c1a0b77c44fd .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_fc3508e2-6c19-4ade-9afb-c1a0b77c44fd .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_fc3508e2-6c19-4ade-9afb-c1a0b77c44fd .progress-bar .step .point {
 background-color: rgb(255, 255, 255);
 border: 4px solid rgb(44, 45, 60);
 border-radius: 10px;
 width: 20px;
 height: 20px;
 z-index: 20;
}

#cmp_fc3508e2-6c19-4ade-9afb-c1a0b77c44fd .progress-bar .step.active .point {
 background-color: rgb(238, 65, 65);;
}

@media(min-width: 768px) and (max-width: 991px) {
 #cmp_fc3508e2-6c19-4ade-9afb-c1a0b77c44fd .progress-bar::before {
  margin: 0 7%;
  width: 86%;
 }
}
/*
 * components/global/cmp_0e3899a6-779e-45c2-a799-3148b844c611/component.css
 */
#cmp_0e3899a6-779e-45c2-a799-3148b844c611 {
	border-bottom: 4px solid rgb(255, 255, 255);
	padding: 0;
}

#cmp_0e3899a6-779e-45c2-a799-3148b844c611 .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_0e3899a6-779e-45c2-a799-3148b844c611 .navbar a:hover,
#cmp_0e3899a6-779e-45c2-a799-3148b844c611 .navbar a:focus,
#cmp_0e3899a6-779e-45c2-a799-3148b844c611 .navbar a:active {
	color: rgb(238, 65, 65);
}

#cmp_0e3899a6-779e-45c2-a799-3148b844c611 .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_0e3899a6-779e-45c2-a799-3148b844c611 .navbar-brand img {
	max-width: 100%;
}

#cmp_0e3899a6-779e-45c2-a799-3148b844c611 .navbar .navbar-toggler {
	background-color: rgb(44, 45, 60);
	border-radius: 0;
	color: #FFFFFF;
	font-size: 14px;
	letter-spacing: 0.071em;
	padding: 15px;
	text-transform: uppercase;
}

#cmp_0e3899a6-779e-45c2-a799-3148b844c611 .navbar .navbar-toggler:hover,
#cmp_0e3899a6-779e-45c2-a799-3148b844c611 .navbar .navbar-toggler:focus,
#cmp_0e3899a6-779e-45c2-a799-3148b844c611 .navbar .navbar-toggler:active {
	background-color: rgb(238, 65, 65);
	color: #FFFFFF;
}

#cmp_0e3899a6-779e-45c2-a799-3148b844c611 .navbar-nav {
	background-color: rgb(44, 45, 60);
	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_0e3899a6-779e-45c2-a799-3148b844c611 .navbar-nav li {
	padding-top: 10px;
	padding-bottom: 10px;
}

#cmp_0e3899a6-779e-45c2-a799-3148b844c611 .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_0e3899a6-779e-45c2-a799-3148b844c611 {
		border-width: 0;
	}
	#cmp_0e3899a6-779e-45c2-a799-3148b844c611 .dropdown-menu {
		background-color: rgb(44, 45, 60);
	}
}

@media (min-width: 768px) {
	#cmp_0e3899a6-779e-45c2-a799-3148b844c611 .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_0e3899a6-779e-45c2-a799-3148b844c611 .navbar-brand {
		padding: 0;
		padding-bottom: 15px;
	}
	#cmp_0e3899a6-779e-45c2-a799-3148b844c611 .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_0e3899a6-779e-45c2-a799-3148b844c611 .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_0e3899a6-779e-45c2-a799-3148b844c611 .navbar-nav li {
		padding: 0;
	}
	#cmp_0e3899a6-779e-45c2-a799-3148b844c611 .navbar-nav .nav-link {
		color: rgb(0, 0, 0);
	}
	#cmp_0e3899a6-779e-45c2-a799-3148b844c611 .navbar a:hover,
	#cmp_0e3899a6-779e-45c2-a799-3148b844c611 .navbar a:focus,
	#cmp_0e3899a6-779e-45c2-a799-3148b844c611 .navbar a:active {
		color: #EE4141;
	}
}

/*
 * components/global/cmp_71e85f80-e7d6-4e87-a669-e226212f98ad/component.css
 */
#cmp_71e85f80-e7d6-4e87-a669-e226212f98ad.footer {
	background-color: rgba(232, 228, 226, 0.65);
	color: rgb(44, 45, 60);
	font-family: Lato;
	padding: 25px 0;

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

#cmp_71e85f80-e7d6-4e87-a669-e226212f98ad.footer p {
	color: rgb(44, 45, 60);
}

#cmp_71e85f80-e7d6-4e87-a669-e226212f98ad .footer-subscribe {
	padding: 15px 0;
}

#cmp_71e85f80-e7d6-4e87-a669-e226212f98ad .footer-subscribe .btn {
	border: 1px solid #FFFFFF;
}

#cmp_71e85f80-e7d6-4e87-a669-e226212f98ad .footer-social {
	padding: 15px 0;
}

#cmp_71e85f80-e7d6-4e87-a669-e226212f98ad .footer-social a {
	display: inline-block;
	padding: 0 5px;
}

#cmp_71e85f80-e7d6-4e87-a669-e226212f98ad .footer-social svg path {
	fill: rgb(44, 45, 60);
}

#cmp_71e85f80-e7d6-4e87-a669-e226212f98ad .footer-social a:hover svg path,
#cmp_71e85f80-e7d6-4e87-a669-e226212f98ad .footer-social a:focus svg path,
#cmp_71e85f80-e7d6-4e87-a669-e226212f98ad .footer-social a:active svg path {
	fill: rgb(238, 65, 65);
}

#cmp_71e85f80-e7d6-4e87-a669-e226212f98ad .footer-contact {
	padding: 15px 0;

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

#cmp_71e85f80-e7d6-4e87-a669-e226212f98ad .footer-contact p {
	margin: 0 0 0.5em 0;
}

@media (min-width: 768px) {
	#cmp_71e85f80-e7d6-4e87-a669-e226212f98ad.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_b22840d8-2391-4d10-ad6d-8ecf3fdf5d31/component.css
 */
#cmp_b22840d8-2391-4d10-ad6d-8ecf3fdf5d31 {
	background-color: #FFFFFF;
}

#cmp_b22840d8-2391-4d10-ad6d-8ecf3fdf5d31 h1 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_b22840d8-2391-4d10-ad6d-8ecf3fdf5d31 h2 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_b22840d8-2391-4d10-ad6d-8ecf3fdf5d31 h3 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_b22840d8-2391-4d10-ad6d-8ecf3fdf5d31 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}


#cmp_b22840d8-2391-4d10-ad6d-8ecf3fdf5d31 .btn {
	background-color: rgb(44, 45, 60);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_b22840d8-2391-4d10-ad6d-8ecf3fdf5d31 .btn:hover {
	background-color: rgb(238, 65, 65);
	color: #FFFFFF;
}

#cmp_b22840d8-2391-4d10-ad6d-8ecf3fdf5d31 .component-rich-text-with-button__content-row,
#cmp_b22840d8-2391-4d10-ad6d-8ecf3fdf5d31 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_b22840d8-2391-4d10-ad6d-8ecf3fdf5d31 .component-rich-text-with-button__content-row,
	#cmp_b22840d8-2391-4d10-ad6d-8ecf3fdf5d31 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_b22840d8-2391-4d10-ad6d-8ecf3fdf5d31 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_b22840d8-2391-4d10-ad6d-8ecf3fdf5d31 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_b22840d8-2391-4d10-ad6d-8ecf3fdf5d31  {
	padding-top: 0;
}
/*
 * components/howitworks/cmp_2a13bd30-6fc7-4d27-837f-10bb37af5da3/component.css
 */
#cmp_2a13bd30-6fc7-4d27-837f-10bb37af5da3 {
	background-color: rgba(232, 228, 226, 0.65);
}

#cmp_2a13bd30-6fc7-4d27-837f-10bb37af5da3 h1 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_2a13bd30-6fc7-4d27-837f-10bb37af5da3 h2 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_2a13bd30-6fc7-4d27-837f-10bb37af5da3 h3 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_2a13bd30-6fc7-4d27-837f-10bb37af5da3 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_2a13bd30-6fc7-4d27-837f-10bb37af5da3 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_2a13bd30-6fc7-4d27-837f-10bb37af5da3 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_2a13bd30-6fc7-4d27-837f-10bb37af5da3 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/howitworks/cmp_522c79bd-ba16-4d24-854b-fa04887a00de/component.css
 */
#cmp_522c79bd-ba16-4d24-854b-fa04887a00de {
	background-color: rgb(255, 255, 255);
}

#cmp_522c79bd-ba16-4d24-854b-fa04887a00de .content-row {
	margin: 0;

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

#cmp_522c79bd-ba16-4d24-854b-fa04887a00de .content {
	background-color: #FFFFFF;
	border: 5px solid #FFFFFF;
	margin: 15px 0;
	padding: 15px;

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

#cmp_522c79bd-ba16-4d24-854b-fa04887a00de .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 170px;
	margin: 0 0 15px 0;
	width: 170px;
}

#cmp_522c79bd-ba16-4d24-854b-fa04887a00de h1 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_522c79bd-ba16-4d24-854b-fa04887a00de h2 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 20px;
}

#cmp_522c79bd-ba16-4d24-854b-fa04887a00de h3 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_522c79bd-ba16-4d24-854b-fa04887a00de p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_522c79bd-ba16-4d24-854b-fa04887a00de .content {
		margin: 5px;
	}
}
#cmp_522c79bd-ba16-4d24-854b-fa04887a00de  {
	padding-top: 10;
}
/*
 * components/howitworks/cmp_5e2fbe24-05ba-4f32-bf18-1abdacd03c6f/component.css
 */
#cmp_5e2fbe24-05ba-4f32-bf18-1abdacd03c6f {
	background-color: rgb(255, 255, 255);
}

#cmp_5e2fbe24-05ba-4f32-bf18-1abdacd03c6f h1 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_5e2fbe24-05ba-4f32-bf18-1abdacd03c6f h2 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_5e2fbe24-05ba-4f32-bf18-1abdacd03c6f h3 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_5e2fbe24-05ba-4f32-bf18-1abdacd03c6f p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}


#cmp_5e2fbe24-05ba-4f32-bf18-1abdacd03c6f .btn {
	background-color: rgb(238, 65, 65);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_5e2fbe24-05ba-4f32-bf18-1abdacd03c6f .btn:hover {
	background-color: rgb(44, 45, 60);
	color: #FFFFFF;
}

#cmp_5e2fbe24-05ba-4f32-bf18-1abdacd03c6f .component-rich-text-with-button__content-row,
#cmp_5e2fbe24-05ba-4f32-bf18-1abdacd03c6f .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_5e2fbe24-05ba-4f32-bf18-1abdacd03c6f .component-rich-text-with-button__content-row,
	#cmp_5e2fbe24-05ba-4f32-bf18-1abdacd03c6f .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_5e2fbe24-05ba-4f32-bf18-1abdacd03c6f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_5e2fbe24-05ba-4f32-bf18-1abdacd03c6f ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/index/cmp_261f4efb-a204-4a00-8a7b-1bc331d3ff02/component.css
 */
#cmp_261f4efb-a204-4a00-8a7b-1bc331d3ff02 {
 background-color: #FFFFFF;
}

#cmp_261f4efb-a204-4a00-8a7b-1bc331d3ff02 h1 {
 color: rgb(44, 45, 60);
 font-family: Oswald;
 font-size: 48px;
}

#cmp_261f4efb-a204-4a00-8a7b-1bc331d3ff02 h2 {
 color: rgb(44, 45, 60);
 font-family: Oswald;
 font-size: 32px;
}

#cmp_261f4efb-a204-4a00-8a7b-1bc331d3ff02 h3 {
 color: rgb(44, 45, 60);
 font-family: Oswald;
 font-size: 24px;
}

#cmp_261f4efb-a204-4a00-8a7b-1bc331d3ff02 p {
 color: #757575;
 font-family: Lato;
 font-size: 14px;
}

@media (min-width: 768px) {
 #cmp_261f4efb-a204-4a00-8a7b-1bc331d3ff02 .content {
  margin: 0 auto;
  width: 80%;
 }
}

#cmp_261f4efb-a204-4a00-8a7b-1bc331d3ff02 ol {
 list-style: decimal;
 list-style-position: insidone for the;
 color: #757575;
 font-family: Lato;
 font-size: 14px;
}

#cmp_261f4efb-a204-4a00-8a7b-1bc331d3ff02 ul {
 list-style: disc;
 list-style-position: inside;
 color: #757575;
 font-family: Lato;
 font-size: 14px;
}

#cmp_261f4efb-a204-4a00-8a7b-1bc331d3ff02  {
 padding-bottom: 0;
}
/*
 * components/index/cmp_2c952134-0065-4fc3-b40e-50f3827ebdc1/component.css
 */
#cmp_2c952134-0065-4fc3-b40e-50f3827ebdc1 {
	background-color: rgba(232, 228, 226, 0.65);
}

#cmp_2c952134-0065-4fc3-b40e-50f3827ebdc1 h1 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_2c952134-0065-4fc3-b40e-50f3827ebdc1 h2 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_2c952134-0065-4fc3-b40e-50f3827ebdc1 h3 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_2c952134-0065-4fc3-b40e-50f3827ebdc1 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}


#cmp_2c952134-0065-4fc3-b40e-50f3827ebdc1 .btn {
	background-color: rgb(238, 65, 65);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_2c952134-0065-4fc3-b40e-50f3827ebdc1 .btn:hover {
	background-color: rgb(44, 45, 60);
	color: #FFFFFF;
}

#cmp_2c952134-0065-4fc3-b40e-50f3827ebdc1 .component-rich-text-with-button__content-row,
#cmp_2c952134-0065-4fc3-b40e-50f3827ebdc1 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_2c952134-0065-4fc3-b40e-50f3827ebdc1 .component-rich-text-with-button__content-row,
	#cmp_2c952134-0065-4fc3-b40e-50f3827ebdc1 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_2c952134-0065-4fc3-b40e-50f3827ebdc1 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_2c952134-0065-4fc3-b40e-50f3827ebdc1 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/index/cmp_30938653-3d90-4777-b8a6-7dde39d1f4c0/component.css
 */
#cmp_30938653-3d90-4777-b8a6-7dde39d1f4c0 {
	background-color: #FFFFFF;
}

#cmp_30938653-3d90-4777-b8a6-7dde39d1f4c0 h1 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_30938653-3d90-4777-b8a6-7dde39d1f4c0 h2 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_30938653-3d90-4777-b8a6-7dde39d1f4c0 h3 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_30938653-3d90-4777-b8a6-7dde39d1f4c0 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_30938653-3d90-4777-b8a6-7dde39d1f4c0 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_30938653-3d90-4777-b8a6-7dde39d1f4c0 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_30938653-3d90-4777-b8a6-7dde39d1f4c0 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/index/cmp_3ab75757-f69d-42e9-bd15-20cb8e052338/component.css
 */
#cmp_3ab75757-f69d-42e9-bd15-20cb8e052338 {
	background-color: rgb(255, 255, 255);
}

#cmp_3ab75757-f69d-42e9-bd15-20cb8e052338 .content-row {
	margin: 0;

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

#cmp_3ab75757-f69d-42e9-bd15-20cb8e052338 .content {
	background-color: #FFFFFF;
	border: 5px solid #FFFFFF;
	margin: 15px 0;
	padding: 15px;

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

#cmp_3ab75757-f69d-42e9-bd15-20cb8e052338 .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 170px;
	margin: 0 0 15px 0;
	width: 170px;
}

#cmp_3ab75757-f69d-42e9-bd15-20cb8e052338 h1 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_3ab75757-f69d-42e9-bd15-20cb8e052338 h2 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_3ab75757-f69d-42e9-bd15-20cb8e052338 h3 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_3ab75757-f69d-42e9-bd15-20cb8e052338 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_3ab75757-f69d-42e9-bd15-20cb8e052338 .content {
		margin: 5px;
	}
}
#cmp_3ab75757-f69d-42e9-bd15-20cb8e052338  {
	padding-top: 10;
}
/*
 * components/index/cmp_3cec5c2d-5c47-4a24-9d5f-3c648422336b/component.css
 */
#cmp_3cec5c2d-5c47-4a24-9d5f-3c648422336b {
	background-color: #FFFFFF;
}

#cmp_3cec5c2d-5c47-4a24-9d5f-3c648422336b h1 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_3cec5c2d-5c47-4a24-9d5f-3c648422336b h2 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_3cec5c2d-5c47-4a24-9d5f-3c648422336b h3 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_3cec5c2d-5c47-4a24-9d5f-3c648422336b p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_3cec5c2d-5c47-4a24-9d5f-3c648422336b .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_3cec5c2d-5c47-4a24-9d5f-3c648422336b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_3cec5c2d-5c47-4a24-9d5f-3c648422336b ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/index/cmp_4448f1fd-cad4-48fa-a63d-9c8657d67fd9/component.css
 */
#cmp_4448f1fd-cad4-48fa-a63d-9c8657d67fd9 {
 background-color: rgb(255, 255, 255);
}

#cmp_4448f1fd-cad4-48fa-a63d-9c8657d67fd9 .content {
 margin: 10px auto;
 max-width: 250px;
}

#cmp_4448f1fd-cad4-48fa-a63d-9c8657d67fd9 .content .propositions-title {
 -webkit-align-items: center;
 -moz-align-items: center;
 -ms-align-items: center;
 align-items: center;

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

#cmp_4448f1fd-cad4-48fa-a63d-9c8657d67fd9 .content .propositions-title h3 {
 margin: 0;
}

#cmp_4448f1fd-cad4-48fa-a63d-9c8657d67fd9 .content .propositions-image {
 background-repeat: no-repeat;
 background-size: contain !important;
 height: 100px;
 margin: 10px;
 width: 100px;
}

#cmp_4448f1fd-cad4-48fa-a63d-9c8657d67fd9 h1 {
 color: rgb(44, 45, 60);
 font-family: Oswald;
 font-size: 48px;
}

#cmp_4448f1fd-cad4-48fa-a63d-9c8657d67fd9 h2 {
 color: rgb(44, 45, 60);
 font-family: Oswald;
 font-size: 32px;
}

#cmp_4448f1fd-cad4-48fa-a63d-9c8657d67fd9 h3 {
 color: rgb(44, 45, 60);
 font-family: Oswald;
 font-size: 24px;
}

#cmp_4448f1fd-cad4-48fa-a63d-9c8657d67fd9 p {
 color: #757575;
 font-family: Lato;
 font-size: 14px;
}
/*
 * components/index/cmp_5a54e068-19f0-404e-94ca-5313ee55a8dc/component.css
 */
#cmp_5a54e068-19f0-404e-94ca-5313ee55a8dc {
 background-color: ;
}

#cmp_5a54e068-19f0-404e-94ca-5313ee55a8dc .content-row {
 margin: 0;

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

#cmp_5a54e068-19f0-404e-94ca-5313ee55a8dc .content {
 background-color: #FFFFFF;
 border: 5px solid #FFFFFF;
 margin: 15px 0;
 padding: 15px;

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

#cmp_5a54e068-19f0-404e-94ca-5313ee55a8dc .square-image {
 background-repeat: no-repeat !important;
 background-size: contain !important;
 height: 170px;
 margin: 0 0 15px 0;
 width: 170px;
}

#cmp_5a54e068-19f0-404e-94ca-5313ee55a8dc h1 {
 color: rgb(250, 188, 2);
 font-family: Oswald;
 font-size: 22px;
}

#cmp_5a54e068-19f0-404e-94ca-5313ee55a8dc h2 {
 color: rgb(44, 45, 60);
 font-family: Oswald;
 font-size: 32px;
}

#cmp_5a54e068-19f0-404e-94ca-5313ee55a8dc h3 {
 color: rgb(44, 45, 60);
 font-family: Oswald;
 font-size: 24px;
}

#cmp_5a54e068-19f0-404e-94ca-5313ee55a8dc p {
 color: #757575;
 font-family: Lato;
 font-size: 14px;
}

@media (min-width: 768px) {
 #cmp_5a54e068-19f0-404e-94ca-5313ee55a8dc .content {
  margin: 5px;
 }
}
#cmp_5a54e068-19f0-404e-94ca-5313ee55a8dc  {
 padding-top: 0;
}
/*
 * components/index/cmp_5f02cf75-d9d2-41e9-833d-05e13415f233/component.css
 */
#cmp_5f02cf75-d9d2-41e9-833d-05e13415f233 {
 background-color: rgb(255, 255, 255);
}

#cmp_5f02cf75-d9d2-41e9-833d-05e13415f233 .content {
 margin: 10px auto;
 max-width: 250px;
}

#cmp_5f02cf75-d9d2-41e9-833d-05e13415f233 .content .propositions-title {
 -webkit-align-items: center;
 -moz-align-items: center;
 -ms-align-items: center;
 align-items: center;

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

#cmp_5f02cf75-d9d2-41e9-833d-05e13415f233 .content .propositions-title h3 {
 margin: 0;
}

#cmp_5f02cf75-d9d2-41e9-833d-05e13415f233 .content .propositions-image {
 background-repeat: no-repeat;
 background-size: contain !important;
 height: 100px;
 margin: 10px;
 width: 100px;
}

#cmp_5f02cf75-d9d2-41e9-833d-05e13415f233 h1 {
 color: rgb(44, 45, 60);
 font-family: Oswald;
 font-size: 48px;
}

#cmp_5f02cf75-d9d2-41e9-833d-05e13415f233 h2 {
 color: rgb(44, 45, 60);
 font-family: Oswald;
 font-size: 32px;
}

#cmp_5f02cf75-d9d2-41e9-833d-05e13415f233 h3 {
 color: rgb(44, 45, 60);
 font-family: Oswald;
 font-size: 24px;
}

#cmp_5f02cf75-d9d2-41e9-833d-05e13415f233 p {
 color: #757575;
 font-family: Lato;
 font-size: 14px;
}
/*
 * components/index/cmp_6abdcf04-6a48-4129-9f09-0b5a30ddbaf3/component.css
 */
#cmp_6abdcf04-6a48-4129-9f09-0b5a30ddbaf3 {
	padding: 0;
}

#cmp_6abdcf04-6a48-4129-9f09-0b5a30ddbaf3 .hero-content {
	background-color: rgba(232, 228, 226, 0.65);
	padding: 20px;
}

#cmp_6abdcf04-6a48-4129-9f09-0b5a30ddbaf3 .hero-content h1 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 100px;
}

#cmp_6abdcf04-6a48-4129-9f09-0b5a30ddbaf3 .hero-content h2 {
	color: #FFFFFF;
	font-family: Oswald;
	font-size: 32px;
}

#cmp_6abdcf04-6a48-4129-9f09-0b5a30ddbaf3 .hero-content h3 {
	color: #FFFFFF;
	font-family: Oswald;
	font-size: 24px;
}

#cmp_6abdcf04-6a48-4129-9f09-0b5a30ddbaf3 .hero-content p {
	color: rgb(117, 117, 117);
	font-family: Lato;
	font-size: 18px;
}

#cmp_6abdcf04-6a48-4129-9f09-0b5a30ddbaf3 .hero-content .btn {
	background-color: rgb(238, 65, 65);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_6abdcf04-6a48-4129-9f09-0b5a30ddbaf3 .hero-content .btn:hover {
	background-color: rgb(44, 45, 60);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_6abdcf04-6a48-4129-9f09-0b5a30ddbaf3 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_6abdcf04-6a48-4129-9f09-0b5a30ddbaf3 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_6abdcf04-6a48-4129-9f09-0b5a30ddbaf3 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_6abdcf04-6a48-4129-9f09-0b5a30ddbaf3 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_6abdcf04-6a48-4129-9f09-0b5a30ddbaf3 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_6abdcf04-6a48-4129-9f09-0b5a30ddbaf3 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_6abdcf04-6a48-4129-9f09-0b5a30ddbaf3 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/index/cmp_6b39545c-bb9a-446d-8e3b-5dfa990b8617/component.css
 */
#cmp_6b39545c-bb9a-446d-8e3b-5dfa990b8617 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_6b39545c-bb9a-446d-8e3b-5dfa990b8617 .content {
	padding: 0;
}

#cmp_6b39545c-bb9a-446d-8e3b-5dfa990b8617 .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_6b39545c-bb9a-446d-8e3b-5dfa990b8617 .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/index/cmp_93bf015f-f931-41c3-997f-c7ad9f87aa25/component.css
 */
#cmp_93bf015f-f931-41c3-997f-c7ad9f87aa25 {
 background-color: #FFFFFF;
}

#cmp_93bf015f-f931-41c3-997f-c7ad9f87aa25 h1 {
 color: rgb(44, 45, 60);
 font-family: Oswald;
 font-size: 48px;
}

#cmp_93bf015f-f931-41c3-997f-c7ad9f87aa25 h2 {
 color: rgb(44, 45, 60);
 font-family: Oswald;
 font-size: 32px;
}

#cmp_93bf015f-f931-41c3-997f-c7ad9f87aa25 h3 {
 color: rgb(44, 45, 60);
 font-family: Oswald;
 font-size: 24px;
}

#cmp_93bf015f-f931-41c3-997f-c7ad9f87aa25 p {
 color: #757575;
 font-family: Lato;
 font-size: 14px;
}

@media (min-width: 768px) {
 #cmp_93bf015f-f931-41c3-997f-c7ad9f87aa25 .content {
  margin: 0 auto;
  width: 80%;
 }
}

#cmp_93bf015f-f931-41c3-997f-c7ad9f87aa25 ol {
 list-style: decimal;
 list-style-position: insidone for the;
 color: #757575;
 font-family: Lato;
 font-size: 14px;
}

#cmp_93bf015f-f931-41c3-997f-c7ad9f87aa25 ul {
 list-style: disc;
 list-style-position: inside;
 color: #757575;
 font-family: Lato;
 font-size: 14px;
}

#cmp_93bf015f-f931-41c3-997f-c7ad9f87aa25  {
 padding-bottom: 0;
}
/*
 * components/index/cmp_b0097b66-b428-4e2e-9118-bd6518753ae8/component.css
 */
#cmp_b0097b66-b428-4e2e-9118-bd6518753ae8 {
	padding: 0;
}

#cmp_b0097b66-b428-4e2e-9118-bd6518753ae8 .hero-content {
	background-color: rgba(232, 228, 226, 0.65);
	padding: 20px;
}

#cmp_b0097b66-b428-4e2e-9118-bd6518753ae8 .hero-content h1 {
	color: #EE4141;
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_b0097b66-b428-4e2e-9118-bd6518753ae8 .hero-content h2 {
	color: #FFFFFF;
	font-family: Oswald;
	font-size: 32px;
}

#cmp_b0097b66-b428-4e2e-9118-bd6518753ae8 .hero-content h3 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_b0097b66-b428-4e2e-9118-bd6518753ae8 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_b0097b66-b428-4e2e-9118-bd6518753ae8 .hero-content .btn {
	background-color: #EE4141;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_b0097b66-b428-4e2e-9118-bd6518753ae8 .hero-content .btn:hover {
	background-color: rgb(44, 45, 60);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_b0097b66-b428-4e2e-9118-bd6518753ae8 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_b0097b66-b428-4e2e-9118-bd6518753ae8 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_b0097b66-b428-4e2e-9118-bd6518753ae8 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_b0097b66-b428-4e2e-9118-bd6518753ae8 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_b0097b66-b428-4e2e-9118-bd6518753ae8 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_b0097b66-b428-4e2e-9118-bd6518753ae8 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_b0097b66-b428-4e2e-9118-bd6518753ae8 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/index/cmp_cebdf05d-7c84-48ea-81bc-02df4472f42c/component.css
 */
#cmp_cebdf05d-7c84-48ea-81bc-02df4472f42c {
	padding: 0;
}

#cmp_cebdf05d-7c84-48ea-81bc-02df4472f42c .hero-content {
	background-color: rgba(232, 228, 226, 0.65);
	padding: 20px;
}

#cmp_cebdf05d-7c84-48ea-81bc-02df4472f42c .hero-content h1 {
	color: #EE4141;
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_cebdf05d-7c84-48ea-81bc-02df4472f42c .hero-content h2 {
	color: #FFFFFF;
	font-family: Oswald;
	font-size: 32px;
}

#cmp_cebdf05d-7c84-48ea-81bc-02df4472f42c .hero-content h3 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_cebdf05d-7c84-48ea-81bc-02df4472f42c .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_cebdf05d-7c84-48ea-81bc-02df4472f42c .hero-content .btn {
	background-color: #EE4141;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_cebdf05d-7c84-48ea-81bc-02df4472f42c .hero-content .btn:hover {
	background-color: rgb(44, 45, 60);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_cebdf05d-7c84-48ea-81bc-02df4472f42c .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_cebdf05d-7c84-48ea-81bc-02df4472f42c .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_cebdf05d-7c84-48ea-81bc-02df4472f42c .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_cebdf05d-7c84-48ea-81bc-02df4472f42c .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_cebdf05d-7c84-48ea-81bc-02df4472f42c .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_cebdf05d-7c84-48ea-81bc-02df4472f42c .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_cebdf05d-7c84-48ea-81bc-02df4472f42c .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/index/cmp_f96cbd21-60ac-4e0b-ac41-6b55a8ecf84b/component.css
 */
#cmp_f96cbd21-60ac-4e0b-ac41-6b55a8ecf84b {
	background-color: rgba(232, 228, 226, 0.65);
}

#cmp_f96cbd21-60ac-4e0b-ac41-6b55a8ecf84b h1 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_f96cbd21-60ac-4e0b-ac41-6b55a8ecf84b h2 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_f96cbd21-60ac-4e0b-ac41-6b55a8ecf84b h3 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_f96cbd21-60ac-4e0b-ac41-6b55a8ecf84b p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}


#cmp_f96cbd21-60ac-4e0b-ac41-6b55a8ecf84b .btn {
	background-color: rgb(238, 65, 65);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_f96cbd21-60ac-4e0b-ac41-6b55a8ecf84b .btn:hover {
	background-color: rgb(44, 45, 60);
	color: #FFFFFF;
}

#cmp_f96cbd21-60ac-4e0b-ac41-6b55a8ecf84b .component-rich-text-with-button__content-row,
#cmp_f96cbd21-60ac-4e0b-ac41-6b55a8ecf84b .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_f96cbd21-60ac-4e0b-ac41-6b55a8ecf84b .component-rich-text-with-button__content-row,
	#cmp_f96cbd21-60ac-4e0b-ac41-6b55a8ecf84b .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_f96cbd21-60ac-4e0b-ac41-6b55a8ecf84b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_f96cbd21-60ac-4e0b-ac41-6b55a8ecf84b ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/shop/listing/cmp_643fe014-c9bc-42a7-a0ab-fab7239895e5/component.css
 */
.shop-listing-item {
	color: #757575;
}

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

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

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

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

.product_paging {
	margin: 20px 0;

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

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

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

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

.product_page.active a {
	color: black;
}

/*
 * components/shop/listing/cmp_ae0d00a7-b533-4df1-9d58-b433a68b7c7c/component.css
 */
#cmp_ae0d00a7-b533-4df1-9d58-b433a68b7c7c {
	padding: 20px 0;
}

#cmp_ae0d00a7-b533-4df1-9d58-b433a68b7c7c ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_e34cd3b5-786f-4f4b-bd3c-f0b9d24ab617/component.css
 */
#cmp_e34cd3b5-786f-4f4b-bd3c-f0b9d24ab617 {
	border-bottom: 1px solid #E1E1E1;
	padding: 20px 0 40px 0;
}

#cmp_e34cd3b5-786f-4f4b-bd3c-f0b9d24ab617 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_e99bfae6-9833-491c-9fa4-283ddb4dc47d/component.css
 */
#cmp_e99bfae6-9833-491c-9fa4-283ddb4dc47d {
	background-color: rgba(232, 228, 226, 0.65);
}

#cmp_e99bfae6-9833-491c-9fa4-283ddb4dc47d h1 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_e99bfae6-9833-491c-9fa4-283ddb4dc47d h2 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_e99bfae6-9833-491c-9fa4-283ddb4dc47d h3 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_e99bfae6-9833-491c-9fa4-283ddb4dc47d p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_e99bfae6-9833-491c-9fa4-283ddb4dc47d .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_e99bfae6-9833-491c-9fa4-283ddb4dc47d ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_e99bfae6-9833-491c-9fa4-283ddb4dc47d ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_e99bfae6-9833-491c-9fa4-283ddb4dc47d  {
	padding-bottom: 20px;
}
/*
 * components/shop/product/cmp_23342c19-30ac-4cda-81e1-a86bd7777455/component.css
 */
#cmp_23342c19-30ac-4cda-81e1-a86bd7777455.shop-product-header {
	padding: 60px 0 20px 0;
}

/*
 * components/shop/product/cmp_58c79441-ac58-48dc-baca-6ce375b81c41/component.css
 */
#cmp_58c79441-ac58-48dc-baca-6ce375b81c41 .shop-product select {
	width: auto;
}

#cmp_58c79441-ac58-48dc-baca-6ce375b81c41 .shop-product__name {
	margin-bottom: 20px;
}

#cmp_58c79441-ac58-48dc-baca-6ce375b81c41 .shop-product__price {
	margin-bottom: 20px;
}

#cmp_58c79441-ac58-48dc-baca-6ce375b81c41 .shop-product__add-to-cart {
	margin-bottom: 20px;
}

#cmp_58c79441-ac58-48dc-baca-6ce375b81c41 .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin-bottom: 40px;
}

#cmp_58c79441-ac58-48dc-baca-6ce375b81c41 .shop-product__review-share-desktop .rating,
#cmp_58c79441-ac58-48dc-baca-6ce375b81c41 .shop-product__review-share-desktop .sharing {
	padding-top: 10px;
}

#cmp_58c79441-ac58-48dc-baca-6ce375b81c41 .shop-product__review-share-desktop h3,
#cmp_58c79441-ac58-48dc-baca-6ce375b81c41 .shop-product__review-share-mobile h3 {
	margin: 10px 0;
}
#cmp_58c79441-ac58-48dc-baca-6ce375b81c41  {
	padding-top: 0;
}
/*
 * components/shop/product/cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107/component.css
 */
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-avg-rating {
	margin-top: 3px;
	margin-bottom: 10px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-rating-text {
	color: #757575;
	margin-left: 10px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 #product-reviews-list-row {
	margin-top: 25px;
	margin-bottom: 50px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-reviews-list-heading {
	border-bottom: 1px solid #eee;
	font-family: Oswald;
	font-size: 32px;
	color: #FFFFFF;
	padding-bottom: 10px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-review {
	padding-top: 20px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-review-info {
	margin-bottom: 15px;
	overflow: auto;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-review-meta {
	float: left;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-review-rating {
	float: right;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-review-content {
	border-bottom: 1px solid #eee;
	padding-bottom: 5px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-review-title {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 15px;
	letter-spacing: 1px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-review-body {
	font-family: Lato;
	font-size: 14px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-rating .cancel-on-png,
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-rating .cancel-off-png,
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-rating .star-on-png,
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-rating .star-off-png,
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-rating .star-half-png {
	color: #EE4141;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 #reviews-show-more {
	color: rgb(44, 45, 60);
	display: inline-block;
	margin-top: 15px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .write-review-heading {
	border-bottom: 1px solid #eee;
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 15px;
	letter-spacing: 1px;
	padding-bottom: 10px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .write-review-message {
	font-family: Oswald;
	margin: 15px 0;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .write-review-message a {
	color: ;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .write-review-rating-row {
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .write-review-rating-label {
	font-family: Oswald;
	font-size: 14px;
	margin-right: 20px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 #write-review-rating {
	display: inline-block;
	line-height: 22px;
	vertical-align: middle;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 #write-review-rating .cancel-on-png,
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 #write-review-rating .cancel-off-png,
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 #write-review-rating .star-on-png,
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 #write-review-rating .star-off-png,
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 #write-review-rating .star-half-png {
	color: rgb(44, 45, 60);
	font-size: 22px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .write-review-title {
	border: 1px solid #757575;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
	font-weight: 300;
	padding-left: 5px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .write-review-body {
	border: 1px solid #757575;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .customer-product-review {
	border-bottom: 1px solid #ddd;
	padding: 15px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .customer-product-review:last-child {
	border-bottom: 0;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .customer-product-rating {
	color: #EE4141;
	float: right;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .customer-product-review.customer-product-review-hidden {
	display: none;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .customer-product-review h4 {
	font-size: 13px;
	margin-top: 6px;
	margin-bottom: 10px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .ecom-product-page .rating {
	border-right: 1px solid #eee;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-reviews-list-heading {
	margin-bottom: 20px;
}

/*
 * components/shop/product/cmp_c21695c0-a022-4cd8-8b64-dc228fc659a7/component.css
 */
#cmp_c21695c0-a022-4cd8-8b64-dc228fc659a7 {
 background-color: rgb(255, 255, 255);
}

#cmp_c21695c0-a022-4cd8-8b64-dc228fc659a7 .content {
 margin: 10px auto;
 max-width: 250px;
}

#cmp_c21695c0-a022-4cd8-8b64-dc228fc659a7 .content .propositions-title {
 -webkit-align-items: center;
 -moz-align-items: center;
 -ms-align-items: center;
 align-items: center;


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

#cmp_c21695c0-a022-4cd8-8b64-dc228fc659a7 .content .propositions-title h3 {
 margin: 0;
}

#cmp_c21695c0-a022-4cd8-8b64-dc228fc659a7 .content .propositions-image {
 background-repeat: no-repeat;
 background-size: contain !important;
 height: 40px;
 margin: 15px;
 width: 40px;
}

#cmp_c21695c0-a022-4cd8-8b64-dc228fc659a7 h1 {
 color: rgb(44, 45, 60);
 font-family: Oswald;
 font-size: 48px;
}

#cmp_c21695c0-a022-4cd8-8b64-dc228fc659a7 h2 {
 color: rgb(44, 45, 60);
 font-family: Oswald;
 font-size: 32px;
}

#cmp_c21695c0-a022-4cd8-8b64-dc228fc659a7 h3 {
 color: rgb(44, 45, 60);
 font-family: Oswald;
 font-size: 18px;
}

#cmp_c21695c0-a022-4cd8-8b64-dc228fc659a7 p {
 color: #757575;
 font-family: Lato;
 font-size: 12px;
     padding: 5px;
}
/*
 * components/sold_out/cmp_be6cf3ec-727b-4d90-8f8e-9113d4755850/component.css
 */
#cmp_be6cf3ec-727b-4d90-8f8e-9113d4755850 img {
	max-width: 100%;
}

/*
 * components/sold_out/cmp_ce5b8ad3-3805-485c-b6e9-20159d302a36/component.css
 */
#cmp_ce5b8ad3-3805-485c-b6e9-20159d302a36 {
	background-color: #FFFFFF;
}

#cmp_ce5b8ad3-3805-485c-b6e9-20159d302a36 h1 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_ce5b8ad3-3805-485c-b6e9-20159d302a36 h2 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_ce5b8ad3-3805-485c-b6e9-20159d302a36 h3 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_ce5b8ad3-3805-485c-b6e9-20159d302a36 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}


#cmp_ce5b8ad3-3805-485c-b6e9-20159d302a36 .btn {
	background-color: rgb(44, 45, 60);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_ce5b8ad3-3805-485c-b6e9-20159d302a36 .btn:hover {
	background-color: rgb(238, 65, 65);
	color: #FFFFFF;
}

#cmp_ce5b8ad3-3805-485c-b6e9-20159d302a36 .component-rich-text-with-button__content-row,
#cmp_ce5b8ad3-3805-485c-b6e9-20159d302a36 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_ce5b8ad3-3805-485c-b6e9-20159d302a36 .component-rich-text-with-button__content-row,
	#cmp_ce5b8ad3-3805-485c-b6e9-20159d302a36 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_ce5b8ad3-3805-485c-b6e9-20159d302a36 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_ce5b8ad3-3805-485c-b6e9-20159d302a36 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_ce5b8ad3-3805-485c-b6e9-20159d302a36  {
	padding-top: 0;
}
/*
 * components/subscribe/cmp_2ceddfff-a0d6-461f-91d3-fd10fa2b0fba/component.css
 */
#cmp_2ceddfff-a0d6-461f-91d3-fd10fa2b0fba {
	background-color: rgb(255, 255, 255);
}

#cmp_2ceddfff-a0d6-461f-91d3-fd10fa2b0fba h3 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_2ceddfff-a0d6-461f-91d3-fd10fa2b0fba p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_2ceddfff-a0d6-461f-91d3-fd10fa2b0fba .sf-item {
	background-color: #FFFFFF;
}
#cmp_2ceddfff-a0d6-461f-91d3-fd10fa2b0fba  {
	padding-top: 0;
}
/*
 * components/subscribe/cmp_2fefb085-d85f-4378-9692-ae065fff56be/component.css
 */
#cmp_2fefb085-d85f-4378-9692-ae065fff56be {
	background-color: rgba(232, 228, 226, 0.65);
}

#cmp_2fefb085-d85f-4378-9692-ae065fff56be .content-row {
	margin: 0;

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

#cmp_2fefb085-d85f-4378-9692-ae065fff56be .content {
	background-color: rgba(232, 228, 226, 0);
	border: 5px solid rgba(232, 228, 226, 0);
	margin: 15px 0;
	padding: 25px;

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

#cmp_2fefb085-d85f-4378-9692-ae065fff56be .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_2fefb085-d85f-4378-9692-ae065fff56be h1 {
	color: rgb(117, 117, 117);
	font-family: Lato;
	font-size: 14px;
}

#cmp_2fefb085-d85f-4378-9692-ae065fff56be h2 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_2fefb085-d85f-4378-9692-ae065fff56be h3 {
	color: rgb(84, 185, 72);
	font-family: Lato;
	font-size: 14px;
}

#cmp_2fefb085-d85f-4378-9692-ae065fff56be p {
	color: rgb(250, 188, 2);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_2fefb085-d85f-4378-9692-ae065fff56be .content {
		margin: 15px;
	}
}
#cmp_2fefb085-d85f-4378-9692-ae065fff56be  {
	padding-top: 0;
}
/*
 * components/subscribe/cmp_55dbb3fd-ba90-4c57-911c-cd8053986b36/component.css
 */
#cmp_55dbb3fd-ba90-4c57-911c-cd8053986b36 {
	background-color: #FFFFFF;
}

#cmp_55dbb3fd-ba90-4c57-911c-cd8053986b36 h1 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_55dbb3fd-ba90-4c57-911c-cd8053986b36 h2 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_55dbb3fd-ba90-4c57-911c-cd8053986b36 h3 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_55dbb3fd-ba90-4c57-911c-cd8053986b36 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}


#cmp_55dbb3fd-ba90-4c57-911c-cd8053986b36 .btn {
	background-color: rgb(238, 65, 65);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_55dbb3fd-ba90-4c57-911c-cd8053986b36 .btn:hover {
	background-color: rgb(44, 45, 60);
	color: #FFFFFF;
}

#cmp_55dbb3fd-ba90-4c57-911c-cd8053986b36 .component-rich-text-with-button__content-row,
#cmp_55dbb3fd-ba90-4c57-911c-cd8053986b36 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_55dbb3fd-ba90-4c57-911c-cd8053986b36 .component-rich-text-with-button__content-row,
	#cmp_55dbb3fd-ba90-4c57-911c-cd8053986b36 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_55dbb3fd-ba90-4c57-911c-cd8053986b36 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_55dbb3fd-ba90-4c57-911c-cd8053986b36 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/subscribe/cmp_5e7cbe24-667f-492a-bbfd-c6ea22d11272/component.css
 */
#cmp_5e7cbe24-667f-492a-bbfd-c6ea22d11272 {
	background-color: rgba(232, 228, 226, 0.65);
}

#cmp_5e7cbe24-667f-492a-bbfd-c6ea22d11272 h1 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_5e7cbe24-667f-492a-bbfd-c6ea22d11272 h2 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_5e7cbe24-667f-492a-bbfd-c6ea22d11272 h3 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_5e7cbe24-667f-492a-bbfd-c6ea22d11272 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_5e7cbe24-667f-492a-bbfd-c6ea22d11272 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_5e7cbe24-667f-492a-bbfd-c6ea22d11272 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_5e7cbe24-667f-492a-bbfd-c6ea22d11272 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_5e7cbe24-667f-492a-bbfd-c6ea22d11272  {
	padding-bottom: 0;
}
/*
 * components/subscribe/cmp_7bf53172-e9e0-4c92-8fff-95868ecf7941/component.css
 */
#cmp_7bf53172-e9e0-4c92-8fff-95868ecf7941 {
	background-color: rgba(232, 228, 226, 0.65);
	padding-bottom: 0;
}

#cmp_7bf53172-e9e0-4c92-8fff-95868ecf7941 .progress-bar-container {
	position: relative;
}

#cmp_7bf53172-e9e0-4c92-8fff-95868ecf7941 .progress-bar-filler {
	background: #FFFFFF;
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_7bf53172-e9e0-4c92-8fff-95868ecf7941 .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_7bf53172-e9e0-4c92-8fff-95868ecf7941 .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_7bf53172-e9e0-4c92-8fff-95868ecf7941 .progress-bar .step .point {
	background-color: rgba(232, 228, 226, 0.65);
	border: 4px solid #FFFFFF;
	border-radius: 10px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_7bf53172-e9e0-4c92-8fff-95868ecf7941 .progress-bar .step.active .point {
	background-color: #EE4141;;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_7bf53172-e9e0-4c92-8fff-95868ecf7941 .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe/cmp_8c6f058b-b692-4c64-89b2-9bbd24b13bc1/component.css
 */
#cmp_8c6f058b-b692-4c64-89b2-9bbd24b13bc1 {
	background-color: rgba(232, 228, 226, 0.65);
}

#cmp_8c6f058b-b692-4c64-89b2-9bbd24b13bc1 h1 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_8c6f058b-b692-4c64-89b2-9bbd24b13bc1 h2 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_8c6f058b-b692-4c64-89b2-9bbd24b13bc1 h3 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_8c6f058b-b692-4c64-89b2-9bbd24b13bc1 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_8c6f058b-b692-4c64-89b2-9bbd24b13bc1 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_8c6f058b-b692-4c64-89b2-9bbd24b13bc1 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_8c6f058b-b692-4c64-89b2-9bbd24b13bc1 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_8c6f058b-b692-4c64-89b2-9bbd24b13bc1  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/addons_step/cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9/component.css
 */
#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9.addons-container {
	margin-right: auto;
	margin-left: auto;

	max-width: 940px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

	margin-bottom: 15px;
}

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

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

	font-family: ;
	font-size: ;

	color: ;
	background-color: rgb(238, 65, 65);
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-btn-cart:hover {
	color: ;
	background-color: rgb(44, 45, 60);
}

#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: rgb(155, 155, 155);

	margin-bottom: 2px;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-form-group select {
	height: 30px;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-cta-row {
	margin-top: 40px;

	text-align: center;
}


#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-continue-btn {
	font-family: ;
	font-size: ;

	color: ;
	background-color: rgb(238, 65, 65);
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-continue-btn:hover {
	color: ;
	background-color: rgb(44, 45, 60);
}

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

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

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

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

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

	max-width: 940px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

	margin-bottom: 15px;
}

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

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

	font-family: ;
	font-size: ;

	color: ;
	background-color: rgb(238, 65, 65);
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-btn-cart:hover {
	color: ;
	background-color: rgb(44, 45, 60);
}

#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: rgb(155, 155, 155);

	margin-bottom: 2px;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-form-group select {
	height: 30px;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-cta-row {
	margin-top: 40px;

	text-align: center;
}


#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-continue-btn {
	font-family: ;
	font-size: ;

	color: ;
	background-color: rgb(238, 65, 65);
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-continue-btn:hover {
	color: ;
	background-color: rgb(44, 45, 60);
}

@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_07be5cb5-cf41-4e4e-bc2c-23a93e7fc964/component.css
 */
#cmp_07be5cb5-cf41-4e4e-bc2c-23a93e7fc964 {
	background-color: #E8E4E2;
	padding-bottom: 0;
}

#cmp_07be5cb5-cf41-4e4e-bc2c-23a93e7fc964 h1 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_07be5cb5-cf41-4e4e-bc2c-23a93e7fc964 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}
#cmp_07be5cb5-cf41-4e4e-bc2c-23a93e7fc964  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_d77a9492-07cc-4855-ac00-54532ac506cb/component.css
 */
#cmp_d77a9492-07cc-4855-ac00-54532ac506cb {
	background-color: rgb(255, 255, 255);
}

#cmp_d77a9492-07cc-4855-ac00-54532ac506cb h3 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_d77a9492-07cc-4855-ac00-54532ac506cb p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_d77a9492-07cc-4855-ac00-54532ac506cb  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/terms_step/cmp_18c86df0-8ada-4b07-8881-40faac578e2e/component.css
 */
#cmp_18c86df0-8ada-4b07-8881-40faac578e2e {
	background-color: #E8E4E2;
	padding-bottom: 0;
}

#cmp_18c86df0-8ada-4b07-8881-40faac578e2e .progress-bar-container {
	position: relative;
}

#cmp_18c86df0-8ada-4b07-8881-40faac578e2e .progress-bar-filler {
	background: #FFFFFF;
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_18c86df0-8ada-4b07-8881-40faac578e2e .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_18c86df0-8ada-4b07-8881-40faac578e2e .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_18c86df0-8ada-4b07-8881-40faac578e2e .progress-bar .step .point {
	background-color: #E8E4E2;
	border: 4px solid #FFFFFF;
	border-radius: 10px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_18c86df0-8ada-4b07-8881-40faac578e2e .progress-bar .step.active .point {
	background-color: #EE4141;;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_18c86df0-8ada-4b07-8881-40faac578e2e .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe_flow/terms_step/cmp_49251026-1f89-43bf-b4a7-b4f073baac59/component.css
 */
#cmp_49251026-1f89-43bf-b4a7-b4f073baac59 {
	background-color: #E8E4E2;
	padding-bottom: 0;
}

#cmp_49251026-1f89-43bf-b4a7-b4f073baac59 h1 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_49251026-1f89-43bf-b4a7-b4f073baac59 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}
#cmp_49251026-1f89-43bf-b4a7-b4f073baac59  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/terms_step/cmp_78ed2fa5-197e-4cc4-981c-68c2c060c754/component.css
 */
#cmp_78ed2fa5-197e-4cc4-981c-68c2c060c754 {
	background-color: #E8E4E2;
}

#cmp_78ed2fa5-197e-4cc4-981c-68c2c060c754 h2 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_78ed2fa5-197e-4cc4-981c-68c2c060c754 h3 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_78ed2fa5-197e-4cc4-981c-68c2c060c754 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_78ed2fa5-197e-4cc4-981c-68c2c060c754 .sf-item {
	background-color: #FFFFFF;
}
#cmp_78ed2fa5-197e-4cc4-981c-68c2c060c754  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/terms_step/cmp_7b38b71d-fd68-4c5c-8b16-8bcbfa67fe7f/component.css
 */
#cmp_7b38b71d-fd68-4c5c-8b16-8bcbfa67fe7f {
	background-color: #FFFFFF;
}

#cmp_7b38b71d-fd68-4c5c-8b16-8bcbfa67fe7f .content-row {
	margin: 0;

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

#cmp_7b38b71d-fd68-4c5c-8b16-8bcbfa67fe7f .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_7b38b71d-fd68-4c5c-8b16-8bcbfa67fe7f .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_7b38b71d-fd68-4c5c-8b16-8bcbfa67fe7f h1 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_7b38b71d-fd68-4c5c-8b16-8bcbfa67fe7f h2 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_7b38b71d-fd68-4c5c-8b16-8bcbfa67fe7f h3 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_7b38b71d-fd68-4c5c-8b16-8bcbfa67fe7f p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_7b38b71d-fd68-4c5c-8b16-8bcbfa67fe7f .content {
		margin: 15px;
	}
}
#cmp_7b38b71d-fd68-4c5c-8b16-8bcbfa67fe7f  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/terms_step/cmp_be93e21d-c6ea-4035-b46e-35706d904ecc/component.css
 */
#cmp_be93e21d-c6ea-4035-b46e-35706d904ecc {
	background-color: #FFFFFF;
}

#cmp_be93e21d-c6ea-4035-b46e-35706d904ecc h1 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_be93e21d-c6ea-4035-b46e-35706d904ecc h2 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_be93e21d-c6ea-4035-b46e-35706d904ecc h3 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_be93e21d-c6ea-4035-b46e-35706d904ecc p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_be93e21d-c6ea-4035-b46e-35706d904ecc .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_be93e21d-c6ea-4035-b46e-35706d904ecc ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_be93e21d-c6ea-4035-b46e-35706d904ecc ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_be93e21d-c6ea-4035-b46e-35706d904ecc  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_71adabe3-3b85-409b-b274-c513e1137bbf/component.css
 */
#cmp_71adabe3-3b85-409b-b274-c513e1137bbf {
	background-color: rgba(255, 255, 255, 0.65);
	padding-bottom: 0;
}

#cmp_71adabe3-3b85-409b-b274-c513e1137bbf h1 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_71adabe3-3b85-409b-b274-c513e1137bbf p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}
#cmp_71adabe3-3b85-409b-b274-c513e1137bbf  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_8e7ba8c5-6471-4288-a350-f99c76baa67b/component.css
 */
#cmp_8e7ba8c5-6471-4288-a350-f99c76baa67b {
	background-color: rgb(255, 255, 255);
}

#cmp_8e7ba8c5-6471-4288-a350-f99c76baa67b h3 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_8e7ba8c5-6471-4288-a350-f99c76baa67b p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_8e7ba8c5-6471-4288-a350-f99c76baa67b .sf-item {
	background-color: rgb(255, 255, 255);
}
#cmp_8e7ba8c5-6471-4288-a350-f99c76baa67b  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_fb6f3b79-db3c-406c-8229-5baa28683b7b/component.css
 */
#cmp_fb6f3b79-db3c-406c-8229-5baa28683b7b {
	background-color: rgba(232, 228, 226, 0.65);
	padding-bottom: 8;
}

#cmp_fb6f3b79-db3c-406c-8229-5baa28683b7b .progress-bar-container {
	position: relative;
}

#cmp_fb6f3b79-db3c-406c-8229-5baa28683b7b .progress-bar-filler {
	background: rgb(44, 45, 60);
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_fb6f3b79-db3c-406c-8229-5baa28683b7b .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_fb6f3b79-db3c-406c-8229-5baa28683b7b .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_fb6f3b79-db3c-406c-8229-5baa28683b7b .progress-bar .step .point {
	background-color: rgba(232, 228, 226, 0.65);
	border: 4px solid rgb(44, 45, 60);
	border-radius: 10px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_fb6f3b79-db3c-406c-8229-5baa28683b7b .progress-bar .step.active .point {
	background-color: #EE4141;;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_fb6f3b79-db3c-406c-8229-5baa28683b7b .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/terms_of_service/cmp_70729c65-fd66-4d81-81dd-b09d8984d831/component.css
 */
#cmp_70729c65-fd66-4d81-81dd-b09d8984d831 {
	background-color: rgba(232, 228, 226, 0.65);
}

#cmp_70729c65-fd66-4d81-81dd-b09d8984d831 h1 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_70729c65-fd66-4d81-81dd-b09d8984d831 h2 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_70729c65-fd66-4d81-81dd-b09d8984d831 h3 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_70729c65-fd66-4d81-81dd-b09d8984d831 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_70729c65-fd66-4d81-81dd-b09d8984d831 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_70729c65-fd66-4d81-81dd-b09d8984d831 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_70729c65-fd66-4d81-81dd-b09d8984d831 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/terms_of_service/cmp_e47e92b8-02d2-4199-aff8-1d3e16d1f91b/component.css
 */
#cmp_e47e92b8-02d2-4199-aff8-1d3e16d1f91b {
	background-color: #FFFFFF;
}

#cmp_e47e92b8-02d2-4199-aff8-1d3e16d1f91b h1 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_e47e92b8-02d2-4199-aff8-1d3e16d1f91b h2 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_e47e92b8-02d2-4199-aff8-1d3e16d1f91b h3 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_e47e92b8-02d2-4199-aff8-1d3e16d1f91b p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_e47e92b8-02d2-4199-aff8-1d3e16d1f91b .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_e47e92b8-02d2-4199-aff8-1d3e16d1f91b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_e47e92b8-02d2-4199-aff8-1d3e16d1f91b ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/view-cart/cmp_73908b13-2cdb-42d0-8b85-9dfbf1a3706d/component.css
 */
#cmp_73908b13-2cdb-42d0-8b85-9dfbf1a3706d {
	background-color: rgba(232, 228, 226, 0.65);
}

#cmp_73908b13-2cdb-42d0-8b85-9dfbf1a3706d h1 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_73908b13-2cdb-42d0-8b85-9dfbf1a3706d h2 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_73908b13-2cdb-42d0-8b85-9dfbf1a3706d h3 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_73908b13-2cdb-42d0-8b85-9dfbf1a3706d p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_73908b13-2cdb-42d0-8b85-9dfbf1a3706d .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_73908b13-2cdb-42d0-8b85-9dfbf1a3706d ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_73908b13-2cdb-42d0-8b85-9dfbf1a3706d ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/view-cart/cmp_af440ef4-3ee3-4a5a-9c36-1a9f0193da97/component.css
 */
#cmp_af440ef4-3ee3-4a5a-9c36-1a9f0193da97 {
	padding: 15px 15px 100px 15px;
}

#cmp_af440ef4-3ee3-4a5a-9c36-1a9f0193da97 .cart-thead {
	border-bottom: 1px solid #E1E1E1;
	padding: 10px 0;
}

#cmp_af440ef4-3ee3-4a5a-9c36-1a9f0193da97 .cart-thead h3 {
	text-transform: uppercase;
}

#cmp_af440ef4-3ee3-4a5a-9c36-1a9f0193da97 .cart-item {
	border: 1px solid #E1E1E1;
	padding: 25px 0;
	position: relative;
}

#cmp_af440ef4-3ee3-4a5a-9c36-1a9f0193da97 .product-main {
	margin: 0 0 15px 0;
}

#cmp_af440ef4-3ee3-4a5a-9c36-1a9f0193da97 .product-label p {
	margin: 0;
}

#cmp_af440ef4-3ee3-4a5a-9c36-1a9f0193da97 .product-label .info {
	color: rgb(44, 45, 60);
	text-align: right;
	text-transform: uppercase;
}

#cmp_af440ef4-3ee3-4a5a-9c36-1a9f0193da97 .product-label .meta {
	color: #757575;
	font-size: 14px;
}

#cmp_af440ef4-3ee3-4a5a-9c36-1a9f0193da97 .product-rem-btn {
	position: absolute;
	right: 1%;
	top: 1%;
}

#cmp_af440ef4-3ee3-4a5a-9c36-1a9f0193da97 figure {
	margin: 0 0 15px 0;
}

#cmp_af440ef4-3ee3-4a5a-9c36-1a9f0193da97 .cart-subtotal {
	margin: 50px 0 0 0;
}

#cmp_af440ef4-3ee3-4a5a-9c36-1a9f0193da97 .cart-subtotal h2 {
	margin: 0 0 15px 0;
}

#cmp_af440ef4-3ee3-4a5a-9c36-1a9f0193da97 .cart-subtotal h3 {
	margin: 0 0 25px 0;
	text-transform: uppercase;
}

#cmp_af440ef4-3ee3-4a5a-9c36-1a9f0193da97 .cart-subtotal p {
	margin: 0 0 25px 0;
}

@media (min-width: 768px) {
	#cmp_af440ef4-3ee3-4a5a-9c36-1a9f0193da97 .cart-item {
		border-width: 0 0 1px 0;
	}
	#cmp_af440ef4-3ee3-4a5a-9c36-1a9f0193da97 .product-rem-btn {
		top: 40%;
	}
	#cmp_af440ef4-3ee3-4a5a-9c36-1a9f0193da97 figure {
		margin: 0;
	}
}

/*
 * components/whats_inside/cmp_8aea8d1e-0e2e-42fe-b8f0-71c379c3bba9/component.css
 */
#cmp_8aea8d1e-0e2e-42fe-b8f0-71c379c3bba9 {
	padding: 0;
}

#cmp_8aea8d1e-0e2e-42fe-b8f0-71c379c3bba9 .hero-content {
	background-color: #FFFFFF;
	padding: 20px;
}

#cmp_8aea8d1e-0e2e-42fe-b8f0-71c379c3bba9 .hero-content h1 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 45px;
}

#cmp_8aea8d1e-0e2e-42fe-b8f0-71c379c3bba9 .hero-content h2 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_8aea8d1e-0e2e-42fe-b8f0-71c379c3bba9 .hero-content h3 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_8aea8d1e-0e2e-42fe-b8f0-71c379c3bba9 .hero-content p {
	color: rgb(117, 117, 117);
	font-family: Lato;
	font-size: 14px;
}

#cmp_8aea8d1e-0e2e-42fe-b8f0-71c379c3bba9 .hero-content .btn {
	background-color: rgb(238, 65, 65);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 0px;
}

#cmp_8aea8d1e-0e2e-42fe-b8f0-71c379c3bba9 .hero-content .btn:hover {
	background-color: rgb(44, 45, 60);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_8aea8d1e-0e2e-42fe-b8f0-71c379c3bba9 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_8aea8d1e-0e2e-42fe-b8f0-71c379c3bba9 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_8aea8d1e-0e2e-42fe-b8f0-71c379c3bba9 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_8aea8d1e-0e2e-42fe-b8f0-71c379c3bba9 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_8aea8d1e-0e2e-42fe-b8f0-71c379c3bba9 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_8aea8d1e-0e2e-42fe-b8f0-71c379c3bba9 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_8aea8d1e-0e2e-42fe-b8f0-71c379c3bba9 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/whats_inside/cmp_8c45f542-aac1-44d7-86d1-6438dde4ddaa/component.css
 */
#cmp_8c45f542-aac1-44d7-86d1-6438dde4ddaa {
	padding: 0;
}

#cmp_8c45f542-aac1-44d7-86d1-6438dde4ddaa .hero-content {
	background-color: #FFFFFF;
	padding: 20px;
}

#cmp_8c45f542-aac1-44d7-86d1-6438dde4ddaa .hero-content h1 {
	color: ##2C2D3C;
	font-family: Oswald;
	font-size: 45px;
}

#cmp_8c45f542-aac1-44d7-86d1-6438dde4ddaa .hero-content h2 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_8c45f542-aac1-44d7-86d1-6438dde4ddaa .hero-content h3 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_8c45f542-aac1-44d7-86d1-6438dde4ddaa .hero-content p {
	color: rgb(117, 117, 117);
	font-family: Lato;
	font-size: 14px;
}

#cmp_8c45f542-aac1-44d7-86d1-6438dde4ddaa .hero-content .btn {
	background-color: rgb(238, 65, 65);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 0px;
}

#cmp_8c45f542-aac1-44d7-86d1-6438dde4ddaa .hero-content .btn:hover {
	background-color: rgb(44, 45, 60);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_8c45f542-aac1-44d7-86d1-6438dde4ddaa .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_8c45f542-aac1-44d7-86d1-6438dde4ddaa .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_8c45f542-aac1-44d7-86d1-6438dde4ddaa .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_8c45f542-aac1-44d7-86d1-6438dde4ddaa .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_8c45f542-aac1-44d7-86d1-6438dde4ddaa .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_8c45f542-aac1-44d7-86d1-6438dde4ddaa .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_8c45f542-aac1-44d7-86d1-6438dde4ddaa .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/whats_inside/cmp_a578158d-3211-41e2-87d9-5ab0b7f3fbe6/component.css
 */
#cmp_a578158d-3211-41e2-87d9-5ab0b7f3fbe6 {
	padding: 0;
}

#cmp_a578158d-3211-41e2-87d9-5ab0b7f3fbe6 .hero-content {
	background-color: #FFFFFF;
	padding: 20px;
}

#cmp_a578158d-3211-41e2-87d9-5ab0b7f3fbe6 .hero-content h1 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 45px;
}

#cmp_a578158d-3211-41e2-87d9-5ab0b7f3fbe6 .hero-content h2 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_a578158d-3211-41e2-87d9-5ab0b7f3fbe6 .hero-content h3 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_a578158d-3211-41e2-87d9-5ab0b7f3fbe6 .hero-content p {
	color: rgb(117, 117, 117);
	font-family: Lato;
	font-size: 14px;
}

#cmp_a578158d-3211-41e2-87d9-5ab0b7f3fbe6 .hero-content .btn {
	background-color: rgb(238, 65, 65);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_a578158d-3211-41e2-87d9-5ab0b7f3fbe6 .hero-content .btn:hover {
	background-color: rgb(44, 45, 60);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_a578158d-3211-41e2-87d9-5ab0b7f3fbe6 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_a578158d-3211-41e2-87d9-5ab0b7f3fbe6 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_a578158d-3211-41e2-87d9-5ab0b7f3fbe6 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_a578158d-3211-41e2-87d9-5ab0b7f3fbe6 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_a578158d-3211-41e2-87d9-5ab0b7f3fbe6 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_a578158d-3211-41e2-87d9-5ab0b7f3fbe6 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_a578158d-3211-41e2-87d9-5ab0b7f3fbe6 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/whats_inside/cmp_eb591cd6-2ba9-4fc6-9ddd-9fc830bb1869/component.css
 */
#cmp_eb591cd6-2ba9-4fc6-9ddd-9fc830bb1869 {
	background-color: rgba(232, 228, 226, 0.65);
}

#cmp_eb591cd6-2ba9-4fc6-9ddd-9fc830bb1869 h1 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_eb591cd6-2ba9-4fc6-9ddd-9fc830bb1869 h2 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 32px;
}

#cmp_eb591cd6-2ba9-4fc6-9ddd-9fc830bb1869 h3 {
	color: rgb(44, 45, 60);
	font-family: Oswald;
	font-size: 24px;
}

#cmp_eb591cd6-2ba9-4fc6-9ddd-9fc830bb1869 p {
	color: rgb(117, 117, 117);
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_eb591cd6-2ba9-4fc6-9ddd-9fc830bb1869 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_eb591cd6-2ba9-4fc6-9ddd-9fc830bb1869 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(117, 117, 117);
	font-family: Lato;
	font-size: 14px;
}

#cmp_eb591cd6-2ba9-4fc6-9ddd-9fc830bb1869 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(117, 117, 117);
	font-family: Lato;
	font-size: 14px;
}