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

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

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

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

h2 {
	color: rgb(53, 59, 72);
	font-family: Adamina;
	font-size: 32px;
	margin: 0 0 25px 0;
}

h3 {
	color: rgb(35, 53, 110);
	font-family: Poppins;
	font-size: 24px;
	margin: 0 0 25px 0;
}

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

a,
.btn-link {
	color: rgb(212, 24, 111);
}

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

/* 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(212, 24, 111);
}

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

.panel-body {
	padding: 15px;
}

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

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

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

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

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

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

.btn-small {
	border: 2px solid rgb(212, 24, 111);
	color: rgb(212, 24, 111);
	padding: 0.6em 1.8em;
}

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

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

.btn-primary {
	background-color: rgb(212, 24, 111);
	color: #FFFFFF;
	font-family: Inter;
	font-size: 14px;
	letter-spacing: 0.167em;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus {
	background-color: rgb(250, 206, 225);
	color: #FFFFFF;
}

.btn-secondary {
	background-color: rgb(35, 53, 110);
	color: #FFFFFF;
	font-family: Inter;
	font-size: 14px;
	letter-spacing: 0.167em;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:active:focus {
	background-color: rgb(250, 206, 225);
	color: #FFFFFF;
}

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

.btn-empty:hover,
.btn-empty:focus,
.btn-empty:active,
.btn-empty:active:focus {
	background-color: rgb(246, 237, 222);
}

/* 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(103, 111, 126);
}
.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(212, 24, 111);
	border: none;
	color: #FFFFFF;
	font-family: Inter;
	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(250, 206, 225);
	color: #FFFFFF;
}

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

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

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

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

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

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

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

.address-container {
	width: 100%;
}

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

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

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

.address-container {
	width: 100%;
}

.errors {
	margin: 25px 0;
}

.cratejoy-loading-icon {
	color: rgb(212, 24, 111);
}

.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(212, 24, 111);
	color: rgb(212, 24, 111);
	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(250, 206, 225);
	border-color: rgb(250, 206, 225);
	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_7952892b-6385-4ee0-b3cc-78d28c31e001/component.css
 */
#cmp_7952892b-6385-4ee0-b3cc-78d28c31e001 {
	background-color: rgb(230, 208, 229);
}

#cmp_7952892b-6385-4ee0-b3cc-78d28c31e001 h1 {
	color: rgb(35, 53, 110);
	font-family: Comfortaa;
	font-size: 48px;
}

#cmp_7952892b-6385-4ee0-b3cc-78d28c31e001 h2 {
	color: #FFFFFF;
	font-family: Adamina;
	font-size: 32px;
}

#cmp_7952892b-6385-4ee0-b3cc-78d28c31e001 h3 {
	color: rgb(35, 53, 110);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_7952892b-6385-4ee0-b3cc-78d28c31e001 p {
	color: rgb(35, 53, 110);
	font-family: Inter;
	font-size: 14px;
}


#cmp_7952892b-6385-4ee0-b3cc-78d28c31e001 .btn {
	background-color: rgb(212, 24, 111);
	color: #FFFFFF;
	font-family: Inter;
	font-size: 14px;
}

#cmp_7952892b-6385-4ee0-b3cc-78d28c31e001 .btn:hover {
	background-color: rgb(250, 206, 225);
	color: #FFFFFF;
}

#cmp_7952892b-6385-4ee0-b3cc-78d28c31e001 .component-rich-text-with-button__content-row,
#cmp_7952892b-6385-4ee0-b3cc-78d28c31e001 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_7952892b-6385-4ee0-b3cc-78d28c31e001 .component-rich-text-with-button__content-row,
	#cmp_7952892b-6385-4ee0-b3cc-78d28c31e001 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_7952892b-6385-4ee0-b3cc-78d28c31e001 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(35, 53, 110);
	font-family: Inter;
	font-size: 14px;
}

#cmp_7952892b-6385-4ee0-b3cc-78d28c31e001 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(35, 53, 110);
	font-family: Inter;
	font-size: 14px;
}

/*
 * components/about/cmp_d0fa215d-5431-4943-a56f-aa59efd109db/component.css
 */
#cmp_d0fa215d-5431-4943-a56f-aa59efd109db {
	background-color: rgb(255, 255, 255);
}

#cmp_d0fa215d-5431-4943-a56f-aa59efd109db h1 {
	color: rgb(35, 53, 110);
	font-family: Comfortaa;
	font-size: 48px;
}

#cmp_d0fa215d-5431-4943-a56f-aa59efd109db h2 {
	color: rgb(35, 53, 110);
	font-family: Comfortaa;
	font-size: 36px;
}

#cmp_d0fa215d-5431-4943-a56f-aa59efd109db h3 {
	color: rgb(35, 53, 110);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_d0fa215d-5431-4943-a56f-aa59efd109db p {
	color: rgb(103, 111, 126);
	font-family: Inter;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_d0fa215d-5431-4943-a56f-aa59efd109db .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_d0fa215d-5431-4943-a56f-aa59efd109db ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(103, 111, 126);
	font-family: Inter;
	font-size: 14px;
}

#cmp_d0fa215d-5431-4943-a56f-aa59efd109db ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(103, 111, 126);
	font-family: Inter;
	font-size: 14px;
}

/*
 * components/ambassadors/cmp_168bed84-612e-4aa9-b6e8-9e0625f837c5/component.css
 */
#cmp_168bed84-612e-4aa9-b6e8-9e0625f837c5 {
	background-color: #FFFFFF;
}

#cmp_168bed84-612e-4aa9-b6e8-9e0625f837c5 h1 {
	color: rgb(103, 111, 126);
	font-family: Comfortaa;
	font-size: 48px;
}

#cmp_168bed84-612e-4aa9-b6e8-9e0625f837c5 h2 {
	color: rgb(53, 59, 72);
	font-family: Adamina;
	font-size: 32px;
}

#cmp_168bed84-612e-4aa9-b6e8-9e0625f837c5 h3 {
	color: rgb(35, 53, 110);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_168bed84-612e-4aa9-b6e8-9e0625f837c5 p {
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}


#cmp_168bed84-612e-4aa9-b6e8-9e0625f837c5 .btn {
	background-color: rgb(212, 24, 111);
	color: #FFFFFF;
	font-family: Inter;
	font-size: 14px;
}

#cmp_168bed84-612e-4aa9-b6e8-9e0625f837c5 .btn:hover {
	background-color: rgb(250, 206, 225);
	color: #FFFFFF;
}

#cmp_168bed84-612e-4aa9-b6e8-9e0625f837c5 .component-rich-text-with-button__content-row,
#cmp_168bed84-612e-4aa9-b6e8-9e0625f837c5 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_168bed84-612e-4aa9-b6e8-9e0625f837c5 .component-rich-text-with-button__content-row,
	#cmp_168bed84-612e-4aa9-b6e8-9e0625f837c5 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_168bed84-612e-4aa9-b6e8-9e0625f837c5 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}

#cmp_168bed84-612e-4aa9-b6e8-9e0625f837c5 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}

/*
 * components/ambassadors/cmp_8e76f1d7-7c9f-4313-9ae7-021ab9a41354/component.css
 */
#cmp_8e76f1d7-7c9f-4313-9ae7-021ab9a41354 {
	background-color: #FFFFFF;
}

#cmp_8e76f1d7-7c9f-4313-9ae7-021ab9a41354 h1 {
	color: rgb(91, 133, 196);
	font-family: Comfortaa;
	font-size: 48px;
}

#cmp_8e76f1d7-7c9f-4313-9ae7-021ab9a41354 h2 {
	color: rgb(53, 59, 72);
	font-family: Adamina;
	font-size: 32px;
}

#cmp_8e76f1d7-7c9f-4313-9ae7-021ab9a41354 h3 {
	color: rgb(35, 53, 110);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_8e76f1d7-7c9f-4313-9ae7-021ab9a41354 p {
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_8e76f1d7-7c9f-4313-9ae7-021ab9a41354 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_8e76f1d7-7c9f-4313-9ae7-021ab9a41354 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}

#cmp_8e76f1d7-7c9f-4313-9ae7-021ab9a41354 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}

/*
 * components/checkout/cmp_a5e26994-3190-408e-9438-959c9b6ca017/component.css
 */
#cmp_a5e26994-3190-408e-9438-959c9b6ca017 .checkout_content {
	overflow: auto;
}

#cmp_a5e26994-3190-408e-9438-959c9b6ca017 .checkout_content section {
	border-color: #F5F5F5;
}

#cmp_a5e26994-3190-408e-9438-959c9b6ca017 .cart_listing table {
	border-color: #F5F5F5;
}

/*
 * components/customer/account/cmp_f2584ea0-560f-4d46-b616-0d45130cd63a/component.css
 */

/*
 * components/customer/edit/cmp_1cd588e8-0595-4846-9073-b7d186f8c312/component.css
 */

/*
 * components/customer/forgot_password/cmp_aaaab9ff-a69c-4bf5-a8bd-a7a70506af7b/component.css
 */
#cmp_aaaab9ff-a69c-4bf5-a8bd-a7a70506af7b {
	padding: 0 0 120px 0;
}
/*
 * components/customer/forgot_password/cmp_b04ba657-8731-4239-b342-ba93290f6aa4/component.css
 */
#cmp_b04ba657-8731-4239-b342-ba93290f6aa4 {
	background-color: #FFFFFF;
}

#cmp_b04ba657-8731-4239-b342-ba93290f6aa4 h1 {
	color: rgb(103, 111, 126);
	font-family: Comfortaa;
	font-size: 48px;
}

#cmp_b04ba657-8731-4239-b342-ba93290f6aa4 h2 {
	color: rgb(53, 59, 72);
	font-family: Adamina;
	font-size: 32px;
}

#cmp_b04ba657-8731-4239-b342-ba93290f6aa4 h3 {
	color: rgb(35, 53, 110);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_b04ba657-8731-4239-b342-ba93290f6aa4 p {
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_b04ba657-8731-4239-b342-ba93290f6aa4 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_b04ba657-8731-4239-b342-ba93290f6aa4 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}

#cmp_b04ba657-8731-4239-b342-ba93290f6aa4 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}

/*
 * components/customer/login/cmp_54a90715-279d-43f4-9f77-3905e5597907/component.css
 */
#cmp_54a90715-279d-43f4-9f77-3905e5597907 {
	background-color: #FFFFFF;
}

#cmp_54a90715-279d-43f4-9f77-3905e5597907 h1 {
	color: rgb(103, 111, 126);
	font-family: Comfortaa;
	font-size: 48px;
}

#cmp_54a90715-279d-43f4-9f77-3905e5597907 h2 {
	color: rgb(53, 59, 72);
	font-family: Adamina;
	font-size: 32px;
}

#cmp_54a90715-279d-43f4-9f77-3905e5597907 h3 {
	color: rgb(35, 53, 110);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_54a90715-279d-43f4-9f77-3905e5597907 p {
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_54a90715-279d-43f4-9f77-3905e5597907 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_54a90715-279d-43f4-9f77-3905e5597907 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}

#cmp_54a90715-279d-43f4-9f77-3905e5597907 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}

/*
 * components/customer/login/cmp_a42e1782-cbf6-4658-bad6-9b05b438e059/component.css
 */
#cmp_a42e1782-cbf6-4658-bad6-9b05b438e059 {
	padding: 0 0 120px 0;
}
/*
 * components/customer/orders/cmp_87bff6ae-03e0-4622-ab5f-5e6337268ba9/component.css
 */

/*
 * components/customer/password_reset/cmp_8fec994f-8a1a-46c6-9d5c-5ca0370e1241/component.css
 */
#cmp_8fec994f-8a1a-46c6-9d5c-5ca0370e1241 {
	padding: 0 0 120px 0;
}
/*
 * components/customer/password_reset/cmp_c850720b-b945-4c05-925a-0b0395d8b756/component.css
 */
#cmp_c850720b-b945-4c05-925a-0b0395d8b756 {
	background-color: #FFFFFF;
}

#cmp_c850720b-b945-4c05-925a-0b0395d8b756 h1 {
	color: rgb(103, 111, 126);
	font-family: Comfortaa;
	font-size: 48px;
}

#cmp_c850720b-b945-4c05-925a-0b0395d8b756 h2 {
	color: rgb(53, 59, 72);
	font-family: Adamina;
	font-size: 32px;
}

#cmp_c850720b-b945-4c05-925a-0b0395d8b756 h3 {
	color: rgb(35, 53, 110);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_c850720b-b945-4c05-925a-0b0395d8b756 p {
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_c850720b-b945-4c05-925a-0b0395d8b756 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_c850720b-b945-4c05-925a-0b0395d8b756 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}

#cmp_c850720b-b945-4c05-925a-0b0395d8b756 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}

/*
 * components/customer/thank_you/cmp_9355e154-c6c3-4abc-ad36-bd2af38a8b89/component.css
 */
#cmp_9355e154-c6c3-4abc-ad36-bd2af38a8b89 {
	background-color: #FFFFFF;
}

#cmp_9355e154-c6c3-4abc-ad36-bd2af38a8b89 h1 {
	color: rgb(35, 53, 110);
	font-family: Comfortaa;
	font-size: 48px;
}

#cmp_9355e154-c6c3-4abc-ad36-bd2af38a8b89 h2 {
	color: rgb(53, 59, 72);
	font-family: Adamina;
	font-size: 32px;
}

#cmp_9355e154-c6c3-4abc-ad36-bd2af38a8b89 h3 {
	color: rgb(35, 53, 110);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_9355e154-c6c3-4abc-ad36-bd2af38a8b89 p {
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_9355e154-c6c3-4abc-ad36-bd2af38a8b89 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_9355e154-c6c3-4abc-ad36-bd2af38a8b89 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}

#cmp_9355e154-c6c3-4abc-ad36-bd2af38a8b89 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}

/*
 * components/customer/thank_you/cmp_c3a0df31-2fa2-4ee6-9777-b3c92aa305f2/component.css
 */

/*
 * components/faq/cmp_9c0a80e3-322b-4b6a-871f-b5e962b0e9e9/component.css
 */
#cmp_9c0a80e3-322b-4b6a-871f-b5e962b0e9e9 {
	background-color: #FFFFFF;
}

#cmp_9c0a80e3-322b-4b6a-871f-b5e962b0e9e9 h1 {
	color: rgb(35, 53, 110);
	font-family: Comfortaa;
	font-size: 48px;
}

#cmp_9c0a80e3-322b-4b6a-871f-b5e962b0e9e9 h2 {
	color: rgb(53, 59, 72);
	font-family: Adamina;
	font-size: 32px;
}

#cmp_9c0a80e3-322b-4b6a-871f-b5e962b0e9e9 h3 {
	color: rgb(134, 112, 178);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_9c0a80e3-322b-4b6a-871f-b5e962b0e9e9 p {
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_9c0a80e3-322b-4b6a-871f-b5e962b0e9e9 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_9c0a80e3-322b-4b6a-871f-b5e962b0e9e9 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}

#cmp_9c0a80e3-322b-4b6a-871f-b5e962b0e9e9 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}

#cmp_9c0a80e3-322b-4b6a-871f-b5e962b0e9e9 h2 {
	margin: 0 0 40px 0;
}
#cmp_9c0a80e3-322b-4b6a-871f-b5e962b0e9e9 p {
	border-bottom: 1px solid #EEEEEE;
	padding: 0 0 25px 0;
}
/*
 * components/get_started/cmp_7fa5b4dc-54b8-4673-b1ad-9d9c7f7cdd5c/component.css
 */
#cmp_7fa5b4dc-54b8-4673-b1ad-9d9c7f7cdd5c {
	background-color: #FFFFFF;
}

#cmp_7fa5b4dc-54b8-4673-b1ad-9d9c7f7cdd5c h1 {
	color: rgb(103, 111, 126);
	font-family: Comfortaa;
	font-size: 48px;
}

#cmp_7fa5b4dc-54b8-4673-b1ad-9d9c7f7cdd5c h2 {
	color: rgb(53, 59, 72);
	font-family: Adamina;
	font-size: 32px;
}

#cmp_7fa5b4dc-54b8-4673-b1ad-9d9c7f7cdd5c h3 {
	color: rgb(35, 53, 110);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_7fa5b4dc-54b8-4673-b1ad-9d9c7f7cdd5c p {
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}


#cmp_7fa5b4dc-54b8-4673-b1ad-9d9c7f7cdd5c .btn {
	background-color: rgb(212, 24, 111);
	color: #FFFFFF;
	font-family: Inter;
	font-size: 14px;
}

#cmp_7fa5b4dc-54b8-4673-b1ad-9d9c7f7cdd5c .btn:hover {
	background-color: rgb(250, 206, 225);
	color: #FFFFFF;
}

#cmp_7fa5b4dc-54b8-4673-b1ad-9d9c7f7cdd5c .component-rich-text-with-button__content-row,
#cmp_7fa5b4dc-54b8-4673-b1ad-9d9c7f7cdd5c .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_7fa5b4dc-54b8-4673-b1ad-9d9c7f7cdd5c .component-rich-text-with-button__content-row,
	#cmp_7fa5b4dc-54b8-4673-b1ad-9d9c7f7cdd5c .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_7fa5b4dc-54b8-4673-b1ad-9d9c7f7cdd5c ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}

#cmp_7fa5b4dc-54b8-4673-b1ad-9d9c7f7cdd5c ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}

/*
 * components/get_started/cmp_a251d21e-98d1-440f-9c1c-ceea1fa4db9d/component.css
 */
#cmp_a251d21e-98d1-440f-9c1c-ceea1fa4db9d {
	background-color: #FFFFFF;
}

#cmp_a251d21e-98d1-440f-9c1c-ceea1fa4db9d h1 {
	color: rgb(103, 111, 126);
	font-family: Comfortaa;
	font-size: 48px;
}

#cmp_a251d21e-98d1-440f-9c1c-ceea1fa4db9d h2 {
	color: rgb(53, 59, 72);
	font-family: Adamina;
	font-size: 32px;
}

#cmp_a251d21e-98d1-440f-9c1c-ceea1fa4db9d h3 {
	color: rgb(35, 53, 110);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_a251d21e-98d1-440f-9c1c-ceea1fa4db9d p {
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_a251d21e-98d1-440f-9c1c-ceea1fa4db9d .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_a251d21e-98d1-440f-9c1c-ceea1fa4db9d ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}

#cmp_a251d21e-98d1-440f-9c1c-ceea1fa4db9d ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}

/*
 * components/get_started/cmp_f4312e85-cc86-4b70-9f13-9a62b78ad110/component.css
 */
#cmp_f4312e85-cc86-4b70-9f13-9a62b78ad110 img {
	max-width: 100%;
}

/*
 * components/global/cmp_01487b0f-86fe-4db3-89c4-1ec51d828ba9/component.css
 */
#cmp_01487b0f-86fe-4db3-89c4-1ec51d828ba9 {
	background-color: #FFFFFF;
}

#cmp_01487b0f-86fe-4db3-89c4-1ec51d828ba9 h1 {
	color: rgb(103, 111, 126);
	font-family: Comfortaa;
	font-size: 48px;
}

#cmp_01487b0f-86fe-4db3-89c4-1ec51d828ba9 h2 {
	color: rgb(53, 59, 72);
	font-family: Adamina;
	font-size: 32px;
}

#cmp_01487b0f-86fe-4db3-89c4-1ec51d828ba9 h3 {
	color: rgb(35, 53, 110);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_01487b0f-86fe-4db3-89c4-1ec51d828ba9 p {
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}


#cmp_01487b0f-86fe-4db3-89c4-1ec51d828ba9 .btn {
	background-color: rgb(212, 24, 111);
	color: #FFFFFF;
	font-family: Inter;
	font-size: 14px;
}

#cmp_01487b0f-86fe-4db3-89c4-1ec51d828ba9 .btn:hover {
	background-color: rgb(250, 206, 225);
	color: #FFFFFF;
}

#cmp_01487b0f-86fe-4db3-89c4-1ec51d828ba9 .component-rich-text-with-button__content-row,
#cmp_01487b0f-86fe-4db3-89c4-1ec51d828ba9 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_01487b0f-86fe-4db3-89c4-1ec51d828ba9 .component-rich-text-with-button__content-row,
	#cmp_01487b0f-86fe-4db3-89c4-1ec51d828ba9 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_01487b0f-86fe-4db3-89c4-1ec51d828ba9 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}

#cmp_01487b0f-86fe-4db3-89c4-1ec51d828ba9 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}

#cmp_01487b0f-86fe-4db3-89c4-1ec51d828ba9  {
	padding-top: 0;
}
/*
 * components/global/cmp_272d73a4-6f6d-4d8f-b8bc-03902040229b/component.css
 */
#cmp_272d73a4-6f6d-4d8f-b8bc-03902040229b.footer {
	background-color: rgb(255, 251, 244);
	color: rgb(53, 59, 72);
	font-family: Inter;
	padding: 25px 0;

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

#cmp_272d73a4-6f6d-4d8f-b8bc-03902040229b.footer p {
	color: rgb(53, 59, 72);
}

#cmp_272d73a4-6f6d-4d8f-b8bc-03902040229b .footer-subscribe {
	padding: 15px 0;
}

#cmp_272d73a4-6f6d-4d8f-b8bc-03902040229b .footer-subscribe .btn {
	border: 1px solid #FFFFFF;
}

#cmp_272d73a4-6f6d-4d8f-b8bc-03902040229b .footer-social {
	padding: 15px 0;
}

#cmp_272d73a4-6f6d-4d8f-b8bc-03902040229b .footer-social a {
	display: inline-block;
	padding: 0 5px;
}

#cmp_272d73a4-6f6d-4d8f-b8bc-03902040229b .footer-social svg path {
	fill: rgb(91, 133, 196);
}

#cmp_272d73a4-6f6d-4d8f-b8bc-03902040229b .footer-social a:hover svg path,
#cmp_272d73a4-6f6d-4d8f-b8bc-03902040229b .footer-social a:focus svg path,
#cmp_272d73a4-6f6d-4d8f-b8bc-03902040229b .footer-social a:active svg path {
	fill: rgb(250, 206, 225);
}

#cmp_272d73a4-6f6d-4d8f-b8bc-03902040229b .footer-contact {
	padding: 15px 0;

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

#cmp_272d73a4-6f6d-4d8f-b8bc-03902040229b .footer-contact p {
	margin: 0 0 0.5em 0;
}

@media (min-width: 768px) {
	#cmp_272d73a4-6f6d-4d8f-b8bc-03902040229b.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_38f2b8a3-9320-4763-b7f6-b9a59c2bc033/component.css
 */
#cmp_38f2b8a3-9320-4763-b7f6-b9a59c2bc033 {
	border-bottom: 4px solid rgb(91, 133, 196);
	padding: 0;
}

#cmp_38f2b8a3-9320-4763-b7f6-b9a59c2bc033 .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_38f2b8a3-9320-4763-b7f6-b9a59c2bc033 .navbar a:hover,
#cmp_38f2b8a3-9320-4763-b7f6-b9a59c2bc033 .navbar a:focus,
#cmp_38f2b8a3-9320-4763-b7f6-b9a59c2bc033 .navbar a:active {
	color: rgb(250, 206, 225);
}

#cmp_38f2b8a3-9320-4763-b7f6-b9a59c2bc033 .navbar-brand {
	color: #000000;
	font-family: Poppins;
	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_38f2b8a3-9320-4763-b7f6-b9a59c2bc033 .navbar-brand img {
	max-width: 100%;
}

#cmp_38f2b8a3-9320-4763-b7f6-b9a59c2bc033 .navbar .navbar-toggler {
	background-color: rgb(212, 24, 111);
	border-radius: 0;
	color: #FFFFFF;
	font-size: 14px;
	letter-spacing: 0.071em;
	padding: 15px;
	text-transform: uppercase;
}

#cmp_38f2b8a3-9320-4763-b7f6-b9a59c2bc033 .navbar .navbar-toggler:hover,
#cmp_38f2b8a3-9320-4763-b7f6-b9a59c2bc033 .navbar .navbar-toggler:focus,
#cmp_38f2b8a3-9320-4763-b7f6-b9a59c2bc033 .navbar .navbar-toggler:active {
	background-color: rgb(250, 206, 225);
	color: #FFFFFF;
}

#cmp_38f2b8a3-9320-4763-b7f6-b9a59c2bc033 .navbar-nav {
	background-color: rgb(212, 24, 111);
	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_38f2b8a3-9320-4763-b7f6-b9a59c2bc033 .navbar-nav li {
	padding-top: 10px;
	padding-bottom: 10px;
}

#cmp_38f2b8a3-9320-4763-b7f6-b9a59c2bc033 .navbar-nav .nav-link {
	color: #FFFFFF;
	font-family: Inter;
	font-size: 14px;;
	padding: 15px;
	text-align: center;
}

@media (max-width: 767px) {
	#cmp_38f2b8a3-9320-4763-b7f6-b9a59c2bc033 {
		border-width: 0;
	}
	#cmp_38f2b8a3-9320-4763-b7f6-b9a59c2bc033 .dropdown-menu {
		background-color: rgb(212, 24, 111);
	}
}

@media (min-width: 768px) {
	#cmp_38f2b8a3-9320-4763-b7f6-b9a59c2bc033 .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_38f2b8a3-9320-4763-b7f6-b9a59c2bc033 .navbar-brand {
		padding: 0;
		padding-bottom: 15px;
	}
	#cmp_38f2b8a3-9320-4763-b7f6-b9a59c2bc033 .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_38f2b8a3-9320-4763-b7f6-b9a59c2bc033 .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_38f2b8a3-9320-4763-b7f6-b9a59c2bc033 .navbar-nav li {
		padding: 0;
	}
	#cmp_38f2b8a3-9320-4763-b7f6-b9a59c2bc033 .navbar-nav .nav-link {
		color: rgb(103, 111, 126);
	}
	#cmp_38f2b8a3-9320-4763-b7f6-b9a59c2bc033 .navbar a:hover,
	#cmp_38f2b8a3-9320-4763-b7f6-b9a59c2bc033 .navbar a:focus,
	#cmp_38f2b8a3-9320-4763-b7f6-b9a59c2bc033 .navbar a:active {
		color: rgb(230, 208, 229);
	}
}

/*
 * components/howitworks/cmp_46357b11-6404-4894-a1a1-9946816f61e2/component.css
 */
#cmp_46357b11-6404-4894-a1a1-9946816f61e2 {
	background-color: #FFFFFF;
	padding: 0;
}

#cmp_46357b11-6404-4894-a1a1-9946816f61e2 .content {
	margin: 0 auto;
	padding: 25px;
}

#cmp_46357b11-6404-4894-a1a1-9946816f61e2 .content .cta {
	border: 5px solid rgb(212, 24, 111);
	padding: 45px;
}

#cmp_46357b11-6404-4894-a1a1-9946816f61e2 h1 {
	color: rgb(103, 111, 126);
	font-family: Comfortaa;
	font-size: 48px;
}

#cmp_46357b11-6404-4894-a1a1-9946816f61e2 h2 {
	color: rgb(53, 59, 72);
	font-family: Adamina;
	font-size: 32px;
}

#cmp_46357b11-6404-4894-a1a1-9946816f61e2 h3 {
	color: rgb(35, 53, 110);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_46357b11-6404-4894-a1a1-9946816f61e2 p {
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}

/*
 * components/howitworks/cmp_8f2c4ac4-747c-4067-8dd4-f9ba3e59e7b8/component.css
 */
#cmp_8f2c4ac4-747c-4067-8dd4-f9ba3e59e7b8 {
	background-color: #D5CEC2;
}

#cmp_8f2c4ac4-747c-4067-8dd4-f9ba3e59e7b8 .content-row {
	margin: 0;

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

#cmp_8f2c4ac4-747c-4067-8dd4-f9ba3e59e7b8 .content {
	background-color: #FFFFFF;
	border: 5px solid rgb(246, 237, 222);
	margin: 15px 0;
	padding: 25px;

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

#cmp_8f2c4ac4-747c-4067-8dd4-f9ba3e59e7b8 h1 {
	color: rgb(103, 111, 126);
	font-family: Comfortaa;
	font-size: 48px;
	margin-bottom: 0;
}

#cmp_8f2c4ac4-747c-4067-8dd4-f9ba3e59e7b8 h2 {
	color: #C7C3C2;
	font-family: Adamina;
	font-size: 32px;
	margin-bottom: 0;
}

#cmp_8f2c4ac4-747c-4067-8dd4-f9ba3e59e7b8 h3 {
	color: rgb(35, 53, 110);
	font-family: Inter;
	font-size: 14px;
	margin-bottom: 15px;
}

#cmp_8f2c4ac4-747c-4067-8dd4-f9ba3e59e7b8 p {
	color: #C7C3C2;
	font-family: Inter;
	font-size: 14px;
}

#cmp_8f2c4ac4-747c-4067-8dd4-f9ba3e59e7b8 hr {
	border-top: 1px solid #EEE;
	width: 100%;
}

@media (min-width: 768px) {
	#cmp_8f2c4ac4-747c-4067-8dd4-f9ba3e59e7b8 .content {
		margin: 15px;
	}
}
#cmp_8f2c4ac4-747c-4067-8dd4-f9ba3e59e7b8  {
	padding-top: 0;
}
/*
 * components/howitworks/cmp_b75b0180-cc70-40d2-aa27-ef47b0cc587e/component.css
 */
#cmp_b75b0180-cc70-40d2-aa27-ef47b0cc587e {
	background-color: #D5CEC2;
}

#cmp_b75b0180-cc70-40d2-aa27-ef47b0cc587e h1 {
	color: rgb(103, 111, 126);
	font-family: Comfortaa;
	font-size: 48px;
}

#cmp_b75b0180-cc70-40d2-aa27-ef47b0cc587e h2 {
	color: #FFFFFF;
	font-family: Adamina;
	font-size: 32px;
}

#cmp_b75b0180-cc70-40d2-aa27-ef47b0cc587e h3 {
	color: rgb(35, 53, 110);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_b75b0180-cc70-40d2-aa27-ef47b0cc587e p {
	color: #FFFFFF;
	font-family: Inter;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_b75b0180-cc70-40d2-aa27-ef47b0cc587e .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_b75b0180-cc70-40d2-aa27-ef47b0cc587e ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #FFFFFF;
	font-family: Inter;
	font-size: 14px;
}

#cmp_b75b0180-cc70-40d2-aa27-ef47b0cc587e ul {
	list-style: disc;
	list-style-position: inside;
	color: #FFFFFF;
	font-family: Inter;
	font-size: 14px;
}

#cmp_b75b0180-cc70-40d2-aa27-ef47b0cc587e  {
	padding-bottom: 0;
}
/*
 * components/index/cmp_02592c0f-8075-406b-af9a-af405e817932/component.css
 */
#cmp_02592c0f-8075-406b-af9a-af405e817932 {
	background-color: #FFFFFF;
}

#cmp_02592c0f-8075-406b-af9a-af405e817932 h1 {
	color: rgb(91, 133, 196);
	font-family: Comfortaa;
	font-size: 48px;
}

#cmp_02592c0f-8075-406b-af9a-af405e817932 h2 {
	color: rgb(35, 53, 110);
	font-family: Adamina;
	font-size: 32px;
}

#cmp_02592c0f-8075-406b-af9a-af405e817932 h3 {
	color: rgb(35, 53, 110);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_02592c0f-8075-406b-af9a-af405e817932 p {
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_02592c0f-8075-406b-af9a-af405e817932 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_02592c0f-8075-406b-af9a-af405e817932 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}

#cmp_02592c0f-8075-406b-af9a-af405e817932 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}

/*
 * components/index/cmp_063eb1ef-5a62-4e44-873b-3503be7cf2af/component.css
 */
#cmp_063eb1ef-5a62-4e44-873b-3503be7cf2af {
	background-color: #FFFFFF;
}

#cmp_063eb1ef-5a62-4e44-873b-3503be7cf2af .content-row {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

#cmp_063eb1ef-5a62-4e44-873b-3503be7cf2af .content {
	margin: 25px auto;
	max-height: 250px;
	max-width: 250px;
	overflow: hidden;

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

#cmp_063eb1ef-5a62-4e44-873b-3503be7cf2af h1 {
	color: rgb(103, 111, 126);
	font-family: Comfortaa;
	font-size: 48px;
}

#cmp_063eb1ef-5a62-4e44-873b-3503be7cf2af h2 {
	color: rgb(53, 59, 72);
	font-family: Adamina;
	font-size: 32px;
}

#cmp_063eb1ef-5a62-4e44-873b-3503be7cf2af h3 {
	color: rgb(35, 53, 110);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_063eb1ef-5a62-4e44-873b-3503be7cf2af p {
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 18px;
}

@media (min-width: 768px) {
	#cmp_063eb1ef-5a62-4e44-873b-3503be7cf2af .content-row {
		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
	}
}
/*
 * components/index/cmp_785ce5f3-a31f-43e1-89f7-043e458a2757/component.css
 */
#cmp_785ce5f3-a31f-43e1-89f7-043e458a2757 {
	background-color: rgb(255, 255, 255);
}

#cmp_785ce5f3-a31f-43e1-89f7-043e458a2757 .content-row {
	margin: 0;

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

#cmp_785ce5f3-a31f-43e1-89f7-043e458a2757 .content {
	background-color: rgb(255, 255, 255);
	border: 5px solid rgb(212, 24, 111);
	margin: 15px 0;
	padding: 25px;

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

#cmp_785ce5f3-a31f-43e1-89f7-043e458a2757 h1 {
	color: rgb(91, 133, 196);
	font-family: Comfortaa;
	font-size: 48px;
	margin-bottom: 0;
}

#cmp_785ce5f3-a31f-43e1-89f7-043e458a2757 h2 {
	color: #C7C3C2;
	font-family: Adamina;
	font-size: 32px;
	margin-bottom: 0;
}

#cmp_785ce5f3-a31f-43e1-89f7-043e458a2757 h3 {
	color: rgb(91, 133, 196);
	font-family: Poppins;
	font-size: 20px;
	margin-bottom: 15px;
}

#cmp_785ce5f3-a31f-43e1-89f7-043e458a2757 p {
	color: rgb(35, 53, 110);
	font-family: Inter;
	font-size: 14px;
}

#cmp_785ce5f3-a31f-43e1-89f7-043e458a2757 hr {
	border-top: 1px solid #EEE;
	width: 100%;
}

@media (min-width: 768px) {
	#cmp_785ce5f3-a31f-43e1-89f7-043e458a2757 .content {
		margin: 15px;
	}
}
#cmp_785ce5f3-a31f-43e1-89f7-043e458a2757  {
	padding-top: 0;
}
/*
 * components/index/cmp_91f65f35-4ddb-455f-b5b7-cb023ebae976/component.css
 */
#cmp_91f65f35-4ddb-455f-b5b7-cb023ebae976 {
	padding: 0;
}

#cmp_91f65f35-4ddb-455f-b5b7-cb023ebae976 .hero-content {
	background-color: rgb(246, 237, 222);
	padding: 20px;
}

#cmp_91f65f35-4ddb-455f-b5b7-cb023ebae976 .hero-content h1 {
	color: rgb(212, 24, 111);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_91f65f35-4ddb-455f-b5b7-cb023ebae976 .hero-content h2 {
	color: rgb(0, 0, 0);
	font-family: Adamina;
	font-size: 32px;
}

#cmp_91f65f35-4ddb-455f-b5b7-cb023ebae976 .hero-content h3 {
	color: #FFFFFF;
	font-family: Poppins;
	font-size: 24px;
}

#cmp_91f65f35-4ddb-455f-b5b7-cb023ebae976 .hero-content p {
	color: #FFFFFF;
	font-family: Inter;
	font-size: 14px;
}

#cmp_91f65f35-4ddb-455f-b5b7-cb023ebae976 .hero-content .btn {
	background-color: rgb(212, 24, 111);
	color: #FFFFFF;
	font-family: Inter;
	font-size: 14px;
}

#cmp_91f65f35-4ddb-455f-b5b7-cb023ebae976 .hero-content .btn:hover {
	background-color: rgb(250, 206, 225);
	color: #FFFFFF;
}


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

@media(min-width: 768px) {
	#cmp_91f65f35-4ddb-455f-b5b7-cb023ebae976 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_91f65f35-4ddb-455f-b5b7-cb023ebae976 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_91f65f35-4ddb-455f-b5b7-cb023ebae976 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_91f65f35-4ddb-455f-b5b7-cb023ebae976 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_91f65f35-4ddb-455f-b5b7-cb023ebae976 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_91f65f35-4ddb-455f-b5b7-cb023ebae976 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/index/cmp_948c3da8-6600-4932-a817-8f69802e55fe/component.css
 */
#cmp_948c3da8-6600-4932-a817-8f69802e55fe {
	background-position: right bottom !important;
	background-repeat: no-repeat !important;
	margin: 0;
	min-height: calc(100vh - 100px);
	padding: 0;

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

#cmp_948c3da8-6600-4932-a817-8f69802e55fe .container-fluid {
	width: 100%;
}

#cmp_948c3da8-6600-4932-a817-8f69802e55fe .hero-row {
	margin: 0;
}

#cmp_948c3da8-6600-4932-a817-8f69802e55fe .hero-content {
	margin: 0;
	text-align: center;
}

#cmp_948c3da8-6600-4932-a817-8f69802e55fe .hero-content h1 {
	color: rgb(35, 53, 110);
	font-family: Comfortaa;
	font-size: 36px;
}

#cmp_948c3da8-6600-4932-a817-8f69802e55fe .hero-content h2 {
	color: rgb(53, 59, 72);
	font-family: Adamina;
	font-size: 32px;
}

#cmp_948c3da8-6600-4932-a817-8f69802e55fe .hero-content h3 {
	color: rgb(35, 53, 110);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_948c3da8-6600-4932-a817-8f69802e55fe .hero-content p {
	color: rgb(84, 84, 84);
	font-family: Inter;
	font-size: 16px;
}

#cmp_948c3da8-6600-4932-a817-8f69802e55fe .hero-content .button-container {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

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

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

#cmp_948c3da8-6600-4932-a817-8f69802e55fe .hero-content .btn {
	margin: 5px 0;
	padding: 1em;
	white-space: normal;
	width: 90%;
}

#cmp_948c3da8-6600-4932-a817-8f69802e55fe .hero-content .btn-primary {
	background-color: rgb(211, 23, 110);
	color: #FFFFFF;
	font-family: Inter;
	font-size: 14px;
}

#cmp_948c3da8-6600-4932-a817-8f69802e55fe .hero-content .btn-primary:hover,
#cmp_948c3da8-6600-4932-a817-8f69802e55fe .hero-content .btn-primary:focus,
#cmp_948c3da8-6600-4932-a817-8f69802e55fe .hero-content .btn-primary:active {
	background-color: rgb(250, 206, 225);
	color: #FFFFFF;
}

#cmp_948c3da8-6600-4932-a817-8f69802e55fe .hero-content .btn-secondary {
	background-color: rgb(35, 53, 110);
	color: #FFFFFF;
	font-family: Inter;
	font-size: 14px;
}

#cmp_948c3da8-6600-4932-a817-8f69802e55fe .hero-content .btn-secondary:hover,
#cmp_948c3da8-6600-4932-a817-8f69802e55fe .hero-content .btn-secondary:focus,
#cmp_948c3da8-6600-4932-a817-8f69802e55fe .hero-content .btn-secondary:active {
	background-color: rgb(250, 206, 225);
	color: #FFFFFF;
}

@media (min-width: 768px) {
	#cmp_948c3da8-6600-4932-a817-8f69802e55fe {
		min-height: 40vw;
	}
	#cmp_948c3da8-6600-4932-a817-8f69802e55fe .hero-content {
		margin: 15px;
		text-align: left;
	}
	#cmp_948c3da8-6600-4932-a817-8f69802e55fe .hero-content .button-container {
		-webkit-justify-content: flex-start;
		-moz-justify-content: flex-start;
		-ms-justify-content: flex-start;
		justify-content: flex-start;
	}
	#cmp_948c3da8-6600-4932-a817-8f69802e55fe .hero-content .btn {
		margin: 0 15px 0 0;
		width: 45%;
	}
}

@media (min-width: 1200px) {
	#cmp_948c3da8-6600-4932-a817-8f69802e55fe {
		min-height: 533px;
	}
}

/*
 * components/index/cmp_e98bfc38-9d55-4118-a954-4fb23589d1fa/component.css
 */
#cmp_e98bfc38-9d55-4118-a954-4fb23589d1fa {
	background-color: rgb(255, 255, 255);
}

#cmp_e98bfc38-9d55-4118-a954-4fb23589d1fa h1 {
	color: rgb(35, 53, 110);
	font-family: Comfortaa;
	font-size: 48px;
}

#cmp_e98bfc38-9d55-4118-a954-4fb23589d1fa h2 {
	color: rgb(242, 111, 99);
	font-family: Poppins;
	font-size: 32px;
}

#cmp_e98bfc38-9d55-4118-a954-4fb23589d1fa h3 {
	color: rgb(242, 111, 99);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_e98bfc38-9d55-4118-a954-4fb23589d1fa p {
	color: rgb(84, 84, 84);
	font-family: Inter;
	font-size: 16px;
}

@media (min-width: 768px) {
	#cmp_e98bfc38-9d55-4118-a954-4fb23589d1fa .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_e98bfc38-9d55-4118-a954-4fb23589d1fa ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(84, 84, 84);
	font-family: Inter;
	font-size: 16px;
}

#cmp_e98bfc38-9d55-4118-a954-4fb23589d1fa ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(84, 84, 84);
	font-family: Inter;
	font-size: 16px;
}

#cmp_e98bfc38-9d55-4118-a954-4fb23589d1fa  {
	padding-bottom: 0;
}
/*
 * components/shop/listing/cmp_01db3d6c-4fec-41a2-8a65-eab7094eca27/component.css
 */
#cmp_01db3d6c-4fec-41a2-8a65-eab7094eca27 {
	border-bottom: 1px solid #E1E1E1;
	padding: 20px 0 40px 0;
}

#cmp_01db3d6c-4fec-41a2-8a65-eab7094eca27 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_9cc0b14b-3da2-445d-81d9-10c30ec6a7fb/component.css
 */
.shop-listing-item {
	color: rgb(53, 59, 72);
}

.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_caa7ef22-b269-4e77-ab6d-7601c72df70b/component.css
 */
#cmp_caa7ef22-b269-4e77-ab6d-7601c72df70b {
	background-color: #FFFFFF;
}

#cmp_caa7ef22-b269-4e77-ab6d-7601c72df70b h1 {
	color: rgb(35, 53, 110);
	font-family: Comfortaa;
	font-size: 48px;
}

#cmp_caa7ef22-b269-4e77-ab6d-7601c72df70b h2 {
	color: rgb(53, 59, 72);
	font-family: Adamina;
	font-size: 32px;
}

#cmp_caa7ef22-b269-4e77-ab6d-7601c72df70b h3 {
	color: rgb(35, 53, 110);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_caa7ef22-b269-4e77-ab6d-7601c72df70b p {
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_caa7ef22-b269-4e77-ab6d-7601c72df70b .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_caa7ef22-b269-4e77-ab6d-7601c72df70b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}

#cmp_caa7ef22-b269-4e77-ab6d-7601c72df70b ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}

#cmp_caa7ef22-b269-4e77-ab6d-7601c72df70b  {
	padding-bottom: 20px;
}
/*
 * components/shop/product/cmp_aad9c321-2594-4513-bbe2-6020d2623f2e/component.css
 */
#cmp_aad9c321-2594-4513-bbe2-6020d2623f2e.shop-product-header {
	padding: 60px 0 20px 0;
}

/*
 * components/shop/product/cmp_bf709a9a-4547-48ea-ac34-2b7fe0bec700/component.css
 */
#cmp_bf709a9a-4547-48ea-ac34-2b7fe0bec700 .shop-product select {
	width: auto;
}

#cmp_bf709a9a-4547-48ea-ac34-2b7fe0bec700 .shop-product__name {
	margin-bottom: 20px;
}

#cmp_bf709a9a-4547-48ea-ac34-2b7fe0bec700 .shop-product__price {
	margin-bottom: 20px;
}

#cmp_bf709a9a-4547-48ea-ac34-2b7fe0bec700 .shop-product__add-to-cart {
	margin-bottom: 20px;
}

#cmp_bf709a9a-4547-48ea-ac34-2b7fe0bec700 .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin-bottom: 40px;
}

#cmp_bf709a9a-4547-48ea-ac34-2b7fe0bec700 .shop-product__review-share-desktop .rating,
#cmp_bf709a9a-4547-48ea-ac34-2b7fe0bec700 .shop-product__review-share-desktop .sharing {
	padding-top: 10px;
}

#cmp_bf709a9a-4547-48ea-ac34-2b7fe0bec700 .shop-product__review-share-desktop h3,
#cmp_bf709a9a-4547-48ea-ac34-2b7fe0bec700 .shop-product__review-share-mobile h3 {
	margin: 10px 0;
}
#cmp_bf709a9a-4547-48ea-ac34-2b7fe0bec700  {
	padding-top: 0;
}
/*
 * components/sold_out/cmp_684d8f3b-a2fd-451b-8a47-f729ef4a339f/component.css
 */
#cmp_684d8f3b-a2fd-451b-8a47-f729ef4a339f {
	background-color: #FFFFFF;
}

#cmp_684d8f3b-a2fd-451b-8a47-f729ef4a339f h1 {
	color: rgb(103, 111, 126);
	font-family: Comfortaa;
	font-size: 48px;
}

#cmp_684d8f3b-a2fd-451b-8a47-f729ef4a339f h2 {
	color: rgb(53, 59, 72);
	font-family: Adamina;
	font-size: 32px;
}

#cmp_684d8f3b-a2fd-451b-8a47-f729ef4a339f h3 {
	color: rgb(35, 53, 110);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_684d8f3b-a2fd-451b-8a47-f729ef4a339f p {
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}


#cmp_684d8f3b-a2fd-451b-8a47-f729ef4a339f .btn {
	background-color: rgb(212, 24, 111);
	color: #FFFFFF;
	font-family: Inter;
	font-size: 14px;
}

#cmp_684d8f3b-a2fd-451b-8a47-f729ef4a339f .btn:hover {
	background-color: rgb(250, 206, 225);
	color: #FFFFFF;
}

#cmp_684d8f3b-a2fd-451b-8a47-f729ef4a339f .component-rich-text-with-button__content-row,
#cmp_684d8f3b-a2fd-451b-8a47-f729ef4a339f .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_684d8f3b-a2fd-451b-8a47-f729ef4a339f .component-rich-text-with-button__content-row,
	#cmp_684d8f3b-a2fd-451b-8a47-f729ef4a339f .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_684d8f3b-a2fd-451b-8a47-f729ef4a339f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}

#cmp_684d8f3b-a2fd-451b-8a47-f729ef4a339f ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}

#cmp_684d8f3b-a2fd-451b-8a47-f729ef4a339f  {
	padding-top: 0;
}
/*
 * components/sold_out/cmp_cad90611-64ef-43e9-9eb9-5e09a9e3d969/component.css
 */
#cmp_cad90611-64ef-43e9-9eb9-5e09a9e3d969 img {
	max-width: 100%;
}

/*
 * components/subscribe/cmp_2282bd6f-2c11-42f9-b4f5-a0150857d607/component.css
 */
#cmp_2282bd6f-2c11-42f9-b4f5-a0150857d607 {
	background-color: rgb(255, 251, 244);
}

#cmp_2282bd6f-2c11-42f9-b4f5-a0150857d607 h1 {
	color: rgb(35, 53, 110);
	font-family: Comfortaa;
	font-size: 48px;
}

#cmp_2282bd6f-2c11-42f9-b4f5-a0150857d607 h2 {
	color: rgb(53, 59, 72);
	font-family: Adamina;
	font-size: 32px;
}

#cmp_2282bd6f-2c11-42f9-b4f5-a0150857d607 h3 {
	color: rgb(35, 53, 110);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_2282bd6f-2c11-42f9-b4f5-a0150857d607 p {
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_2282bd6f-2c11-42f9-b4f5-a0150857d607 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_2282bd6f-2c11-42f9-b4f5-a0150857d607 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}

#cmp_2282bd6f-2c11-42f9-b4f5-a0150857d607 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}

#cmp_2282bd6f-2c11-42f9-b4f5-a0150857d607  {
	padding-bottom: 0;
}
/*
 * components/subscribe/cmp_48fe5725-89e7-4b37-bbd0-aca666597800/component.css
 */
#cmp_48fe5725-89e7-4b37-bbd0-aca666597800 {
	background-color: rgb(230, 208, 229);
}

#cmp_48fe5725-89e7-4b37-bbd0-aca666597800 h1 {
	color: rgb(35, 53, 110);
	font-family: Comfortaa;
	font-size: 48px;
}

#cmp_48fe5725-89e7-4b37-bbd0-aca666597800 h2 {
	color: rgb(53, 59, 72);
	font-family: Adamina;
	font-size: 32px;
}

#cmp_48fe5725-89e7-4b37-bbd0-aca666597800 h3 {
	color: rgb(35, 53, 110);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_48fe5725-89e7-4b37-bbd0-aca666597800 p {
	color: rgb(35, 53, 110);
	font-family: Inter;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_48fe5725-89e7-4b37-bbd0-aca666597800 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_48fe5725-89e7-4b37-bbd0-aca666597800 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(35, 53, 110);
	font-family: Inter;
	font-size: 14px;
}

#cmp_48fe5725-89e7-4b37-bbd0-aca666597800 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(35, 53, 110);
	font-family: Inter;
	font-size: 14px;
}

#cmp_48fe5725-89e7-4b37-bbd0-aca666597800  {
	padding-bottom: 0;
}
/*
 * components/subscribe/cmp_8145ebe9-865e-4d3b-9ac0-d6465886655d/component.css
 */
#cmp_8145ebe9-865e-4d3b-9ac0-d6465886655d {
	background-color: rgb(246, 237, 222);
}

#cmp_8145ebe9-865e-4d3b-9ac0-d6465886655d .content-row {
	margin: 0;

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

#cmp_8145ebe9-865e-4d3b-9ac0-d6465886655d .content {
	background-color: #FFFFFF;
	border: 5px solid rgb(72, 47, 86);
	margin: 15px 0;
	padding: 25px;

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

#cmp_8145ebe9-865e-4d3b-9ac0-d6465886655d .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_8145ebe9-865e-4d3b-9ac0-d6465886655d h1 {
	color: rgb(103, 111, 126);
	font-family: Comfortaa;
	font-size: 48px;
}

#cmp_8145ebe9-865e-4d3b-9ac0-d6465886655d h2 {
	color: rgb(53, 59, 72);
	font-family: Adamina;
	font-size: 32px;
}

#cmp_8145ebe9-865e-4d3b-9ac0-d6465886655d h3 {
	color: rgb(35, 53, 110);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_8145ebe9-865e-4d3b-9ac0-d6465886655d p {
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_8145ebe9-865e-4d3b-9ac0-d6465886655d .content {
		margin: 15px;
	}
}
#cmp_8145ebe9-865e-4d3b-9ac0-d6465886655d  {
	padding-top: 0;
}
/*
 * components/subscribe/cmp_bf855645-fe7a-4fac-b74a-69e4226cdb48/component.css
 */
#cmp_bf855645-fe7a-4fac-b74a-69e4226cdb48 {
	background-color: #FFFFFF;
}

#cmp_bf855645-fe7a-4fac-b74a-69e4226cdb48 h1 {
	color: rgb(35, 53, 110);
	font-family: Comfortaa;
	font-size: 48px;
}

#cmp_bf855645-fe7a-4fac-b74a-69e4226cdb48 h2 {
	color: rgb(53, 59, 72);
	font-family: Adamina;
	font-size: 32px;
}

#cmp_bf855645-fe7a-4fac-b74a-69e4226cdb48 h3 {
	color: rgb(35, 53, 110);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_bf855645-fe7a-4fac-b74a-69e4226cdb48 p {
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}


#cmp_bf855645-fe7a-4fac-b74a-69e4226cdb48 .btn {
	background-color: rgb(212, 24, 111);
	color: #FFFFFF;
	font-family: Inter;
	font-size: 14px;
}

#cmp_bf855645-fe7a-4fac-b74a-69e4226cdb48 .btn:hover {
	background-color: rgb(250, 206, 225);
	color: #FFFFFF;
}

#cmp_bf855645-fe7a-4fac-b74a-69e4226cdb48 .component-rich-text-with-button__content-row,
#cmp_bf855645-fe7a-4fac-b74a-69e4226cdb48 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_bf855645-fe7a-4fac-b74a-69e4226cdb48 .component-rich-text-with-button__content-row,
	#cmp_bf855645-fe7a-4fac-b74a-69e4226cdb48 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_bf855645-fe7a-4fac-b74a-69e4226cdb48 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}

#cmp_bf855645-fe7a-4fac-b74a-69e4226cdb48 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}

/*
 * components/subscribe/cmp_c5c74ba7-f347-44c0-8377-1969e15d239f/component.css
 */
#cmp_c5c74ba7-f347-44c0-8377-1969e15d239f {
	background-color: rgb(230, 208, 229);
	padding-bottom: 0;
}

#cmp_c5c74ba7-f347-44c0-8377-1969e15d239f .progress-bar-container {
	position: relative;
}

#cmp_c5c74ba7-f347-44c0-8377-1969e15d239f .progress-bar-filler {
	background: rgb(35, 53, 110);
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_c5c74ba7-f347-44c0-8377-1969e15d239f .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_c5c74ba7-f347-44c0-8377-1969e15d239f .progress-bar .step {
	color: rgb(35, 53, 110);

	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_c5c74ba7-f347-44c0-8377-1969e15d239f .progress-bar .step .point {
	background-color: rgb(230, 208, 229);
	border: 4px solid rgb(35, 53, 110);
	border-radius: 10px;
	margin-bottom: 5px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_c5c74ba7-f347-44c0-8377-1969e15d239f .progress-bar .step.active .point {
	background-color: rgb(212, 24, 111);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_c5c74ba7-f347-44c0-8377-1969e15d239f .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe/cmp_e6891770-4ea3-4e1a-b5e0-0cf4c85ed9c4/component.css
 */
#cmp_e6891770-4ea3-4e1a-b5e0-0cf4c85ed9c4 {
	background-color: rgb(230, 208, 229);
}

#cmp_e6891770-4ea3-4e1a-b5e0-0cf4c85ed9c4 h3 {
	color: rgb(35, 53, 110);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_e6891770-4ea3-4e1a-b5e0-0cf4c85ed9c4 p {
	color: rgb(35, 53, 110);
	font-family: Inter;
	font-size: 14px;
}

#cmp_e6891770-4ea3-4e1a-b5e0-0cf4c85ed9c4 .sf-item {
	background-color: #FFFFFF;
}
#cmp_e6891770-4ea3-4e1a-b5e0-0cf4c85ed9c4  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_6450c659-a42c-40b9-8fd4-11d72dbefea3/component.css
 */
#cmp_6450c659-a42c-40b9-8fd4-11d72dbefea3 {
	background-color: rgb(230, 208, 229);
}

#cmp_6450c659-a42c-40b9-8fd4-11d72dbefea3 h1 {
	color: rgb(35, 53, 110);
	font-family: Comfortaa;
	font-size: 48px;
}

#cmp_6450c659-a42c-40b9-8fd4-11d72dbefea3 p {
	color: #FFFFFF;
	font-family: Inter;
	font-size: 14px;
}
#cmp_6450c659-a42c-40b9-8fd4-11d72dbefea3  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_87e5b4d1-b3e2-436b-ab4d-02baeba11622/component.css
 */
#cmp_87e5b4d1-b3e2-436b-ab4d-02baeba11622 {
	background-color: rgb(230, 208, 229);
	padding-bottom: 0;
}

#cmp_87e5b4d1-b3e2-436b-ab4d-02baeba11622 .progress-bar-container {
	position: relative;
}

#cmp_87e5b4d1-b3e2-436b-ab4d-02baeba11622 .progress-bar-filler {
	background: rgb(35, 53, 110);
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_87e5b4d1-b3e2-436b-ab4d-02baeba11622 .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_87e5b4d1-b3e2-436b-ab4d-02baeba11622 .progress-bar .step {
	color: rgb(35, 53, 110);

	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_87e5b4d1-b3e2-436b-ab4d-02baeba11622 .progress-bar .step .point {
	background-color: rgb(230, 208, 229);
	border: 4px solid rgb(35, 53, 110);
	border-radius: 10px;
	margin-bottom: 5px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_87e5b4d1-b3e2-436b-ab4d-02baeba11622 .progress-bar .step.active .point {
	background-color: rgb(212, 24, 111);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_87e5b4d1-b3e2-436b-ab4d-02baeba11622 .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe_flow/survey_step/cmp_89bdd603-a436-495e-8498-a808b92616d1/component.css
 */
#cmp_89bdd603-a436-495e-8498-a808b92616d1 {
	background-color: rgb(255, 255, 255);
}

#cmp_89bdd603-a436-495e-8498-a808b92616d1 h3 {
	color: rgb(35, 53, 110);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_89bdd603-a436-495e-8498-a808b92616d1 p {
	color: rgb(212, 24, 111);
	font-family: Inter;
	font-size: 14px;
}

#cmp_89bdd603-a436-495e-8498-a808b92616d1  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_be6f509e-5f3e-42e5-a3f2-57598ae8978b/component.css
 */
#cmp_be6f509e-5f3e-42e5-a3f2-57598ae8978b {
	background-color: rgb(255, 255, 255);
}

#cmp_be6f509e-5f3e-42e5-a3f2-57598ae8978b h1 {
	color: rgb(103, 111, 126);
	font-family: Comfortaa;
	font-size: 48px;
}

#cmp_be6f509e-5f3e-42e5-a3f2-57598ae8978b h2 {
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 32px;
}

#cmp_be6f509e-5f3e-42e5-a3f2-57598ae8978b h3 {
	color: rgb(35, 53, 110);
	font-family: Poppins;
	font-size: 20px;
}

#cmp_be6f509e-5f3e-42e5-a3f2-57598ae8978b p {
	color: rgb(74, 74, 74);
	font-family: Inter;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_be6f509e-5f3e-42e5-a3f2-57598ae8978b .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_be6f509e-5f3e-42e5-a3f2-57598ae8978b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Inter;
	font-size: 14px;
}

#cmp_be6f509e-5f3e-42e5-a3f2-57598ae8978b ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Inter;
	font-size: 14px;
}

/*
 * components/subscribe_flow/terms_step/cmp_93505f8b-3c6a-4cb7-997c-1fa8b56e230f/component.css
 */
#cmp_93505f8b-3c6a-4cb7-997c-1fa8b56e230f {
	background-color: rgb(230, 208, 229);
	padding-bottom: 0;
}

#cmp_93505f8b-3c6a-4cb7-997c-1fa8b56e230f .progress-bar-container {
	position: relative;
}

#cmp_93505f8b-3c6a-4cb7-997c-1fa8b56e230f .progress-bar-filler {
	background: rgb(35, 53, 110);
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_93505f8b-3c6a-4cb7-997c-1fa8b56e230f .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_93505f8b-3c6a-4cb7-997c-1fa8b56e230f .progress-bar .step {
	color: rgb(35, 53, 110);

	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_93505f8b-3c6a-4cb7-997c-1fa8b56e230f .progress-bar .step .point {
	background-color: rgb(230, 208, 229);
	border: 4px solid rgb(35, 53, 110);
	border-radius: 10px;
	margin-bottom: 5px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_93505f8b-3c6a-4cb7-997c-1fa8b56e230f .progress-bar .step.active .point {
	background-color: rgb(212, 24, 111);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_93505f8b-3c6a-4cb7-997c-1fa8b56e230f .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe_flow/terms_step/cmp_a7ba2b8c-1b8f-4b18-bd44-f1f94131dd27/component.css
 */
#cmp_a7ba2b8c-1b8f-4b18-bd44-f1f94131dd27 {
	background-color: rgb(230, 208, 229);
}

#cmp_a7ba2b8c-1b8f-4b18-bd44-f1f94131dd27 h1 {
	color: rgb(35, 53, 110);
	font-family: Comfortaa;
	font-size: 48px;
}

#cmp_a7ba2b8c-1b8f-4b18-bd44-f1f94131dd27 p {
	color: #FFFFFF;
	font-family: Inter;
	font-size: 14px;
}
#cmp_a7ba2b8c-1b8f-4b18-bd44-f1f94131dd27  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/terms_step/cmp_c9097f55-c2c9-4822-824b-2059e68cb375/component.css
 */
#cmp_c9097f55-c2c9-4822-824b-2059e68cb375 {
	background-color: #FFFFFF;
}

#cmp_c9097f55-c2c9-4822-824b-2059e68cb375 .content-row {
	margin: 0;

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

#cmp_c9097f55-c2c9-4822-824b-2059e68cb375 .content {
	background-color: #FFFFFF;
	border: 5px solid rgb(212, 24, 111);
	margin: 15px 0;
	padding: 25px;

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

#cmp_c9097f55-c2c9-4822-824b-2059e68cb375 .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_c9097f55-c2c9-4822-824b-2059e68cb375 h1 {
	color: rgb(103, 111, 126);
	font-family: Comfortaa;
	font-size: 48px;
}

#cmp_c9097f55-c2c9-4822-824b-2059e68cb375 h2 {
	color: rgb(53, 59, 72);
	font-family: Adamina;
	font-size: 32px;
}

#cmp_c9097f55-c2c9-4822-824b-2059e68cb375 h3 {
	color: rgb(35, 53, 110);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_c9097f55-c2c9-4822-824b-2059e68cb375 p {
	color: rgb(35, 53, 110);
	font-family: Inter;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_c9097f55-c2c9-4822-824b-2059e68cb375 .content {
		margin: 15px;
	}
}
#cmp_c9097f55-c2c9-4822-824b-2059e68cb375  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/terms_step/cmp_d72e43be-f836-42ab-b999-4f264b4e993e/component.css
 */
#cmp_d72e43be-f836-42ab-b999-4f264b4e993e {
	background-color: rgb(230, 208, 229);
}

#cmp_d72e43be-f836-42ab-b999-4f264b4e993e h2 {
	color: rgb(35, 53, 110);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_d72e43be-f836-42ab-b999-4f264b4e993e h3 {
	color: #233356E;
	font-family: Comfortaa;
	font-size: 32px;
}

#cmp_d72e43be-f836-42ab-b999-4f264b4e993e p {
	color: rgb(35, 53, 110);
	font-family: Inter;
	font-size: 14px;
}

#cmp_d72e43be-f836-42ab-b999-4f264b4e993e .sf-item {
	background-color: #FFFFFF;
}
#cmp_d72e43be-f836-42ab-b999-4f264b4e993e  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/terms_step/cmp_f0cbd8ea-37c7-425d-9672-0894a4f09556/component.css
 */
#cmp_f0cbd8ea-37c7-425d-9672-0894a4f09556 {
	background-color: #FFFFFF;
}

#cmp_f0cbd8ea-37c7-425d-9672-0894a4f09556 h1 {
	color: rgb(35, 53, 110);
	font-family: Comfortaa;
	font-size: 48px;
}

#cmp_f0cbd8ea-37c7-425d-9672-0894a4f09556 h2 {
	color: rgb(53, 59, 72);
	font-family: Adamina;
	font-size: 32px;
}

#cmp_f0cbd8ea-37c7-425d-9672-0894a4f09556 h3 {
	color: rgb(35, 53, 110);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_f0cbd8ea-37c7-425d-9672-0894a4f09556 p {
	color: rgb(35, 53, 110);
	font-family: Inter;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_f0cbd8ea-37c7-425d-9672-0894a4f09556 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_f0cbd8ea-37c7-425d-9672-0894a4f09556 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(35, 53, 110);
	font-family: Inter;
	font-size: 14px;
}

#cmp_f0cbd8ea-37c7-425d-9672-0894a4f09556 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(35, 53, 110);
	font-family: Inter;
	font-size: 14px;
}

#cmp_f0cbd8ea-37c7-425d-9672-0894a4f09556  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_883c3822-0ede-4c80-8b65-0ee0f373b37b/component.css
 */
#cmp_883c3822-0ede-4c80-8b65-0ee0f373b37b {
	background-color: rgb(230, 208, 229);
}

#cmp_883c3822-0ede-4c80-8b65-0ee0f373b37b h1 {
	color: rgb(35, 53, 110);
	font-family: Comfortaa;
	font-size: 48px;
}

#cmp_883c3822-0ede-4c80-8b65-0ee0f373b37b p {
	color: #FFFFFF;
	font-family: Inter;
	font-size: 14px;
}
#cmp_883c3822-0ede-4c80-8b65-0ee0f373b37b  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_aa03ed71-dc3c-4b40-ab2c-cd653978be3d/component.css
 */
#cmp_aa03ed71-dc3c-4b40-ab2c-cd653978be3d {
	background-color: rgb(230, 208, 229);
	padding-bottom: 0;
}

#cmp_aa03ed71-dc3c-4b40-ab2c-cd653978be3d .progress-bar-container {
	position: relative;
}

#cmp_aa03ed71-dc3c-4b40-ab2c-cd653978be3d .progress-bar-filler {
	background: rgb(35, 53, 110);
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_aa03ed71-dc3c-4b40-ab2c-cd653978be3d .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_aa03ed71-dc3c-4b40-ab2c-cd653978be3d .progress-bar .step {
	color: rgb(35, 53, 110);

	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_aa03ed71-dc3c-4b40-ab2c-cd653978be3d .progress-bar .step .point {
	background-color: rgb(230, 208, 229);
	border: 4px solid rgb(35, 53, 110);
	border-radius: 10px;
	margin-bottom: 5px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_aa03ed71-dc3c-4b40-ab2c-cd653978be3d .progress-bar .step.active .point {
	background-color: rgb(212, 24, 111);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_aa03ed71-dc3c-4b40-ab2c-cd653978be3d .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe_flow/variant_step/cmp_ed0d30fb-8659-4cee-8b4e-27deb591511f/component.css
 */
#cmp_ed0d30fb-8659-4cee-8b4e-27deb591511f {
	background-color: rgb(230, 208, 229);
}

#cmp_ed0d30fb-8659-4cee-8b4e-27deb591511f h3 {
	color: rgb(35, 53, 110);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_ed0d30fb-8659-4cee-8b4e-27deb591511f p {
	color: rgb(35, 53, 110);
	font-family: Inter;
	font-size: 14px;
}

#cmp_ed0d30fb-8659-4cee-8b4e-27deb591511f .sf-item {
	background-color: #FFFFFF;
}
#cmp_ed0d30fb-8659-4cee-8b4e-27deb591511f  {
	padding-top: 0;
}
/*
 * components/view-cart/cmp_23c39966-bdd8-48ff-9874-8dac1de2925f/component.css
 */
#cmp_23c39966-bdd8-48ff-9874-8dac1de2925f {
	padding: 15px 15px 100px 15px;
}

#cmp_23c39966-bdd8-48ff-9874-8dac1de2925f .cart-thead {
	border-bottom: 1px solid #E1E1E1;
	padding: 10px 0;
}

#cmp_23c39966-bdd8-48ff-9874-8dac1de2925f .cart-thead h3 {
	text-transform: uppercase;
}

#cmp_23c39966-bdd8-48ff-9874-8dac1de2925f .cart-item {
	border: 1px solid #E1E1E1;
	padding: 25px 0;
	position: relative;
}

#cmp_23c39966-bdd8-48ff-9874-8dac1de2925f .product-main {
	margin: 0 0 15px 0;
}

#cmp_23c39966-bdd8-48ff-9874-8dac1de2925f .product-label p {
	margin: 0;
}

#cmp_23c39966-bdd8-48ff-9874-8dac1de2925f .product-label .info {
	color: rgb(53, 59, 72);
	text-align: right;
	text-transform: uppercase;
}

#cmp_23c39966-bdd8-48ff-9874-8dac1de2925f .product-label .meta {
	color: rgb(53, 59, 72);
	font-size: 14px;
}

#cmp_23c39966-bdd8-48ff-9874-8dac1de2925f .product-rem-btn {
	position: absolute;
	right: 1%;
	top: 1%;
}

#cmp_23c39966-bdd8-48ff-9874-8dac1de2925f figure {
	margin: 0 0 15px 0;
}

#cmp_23c39966-bdd8-48ff-9874-8dac1de2925f .cart-subtotal {
	margin: 50px 0 0 0;
}

#cmp_23c39966-bdd8-48ff-9874-8dac1de2925f .cart-subtotal h2 {
	margin: 0 0 15px 0;
}

#cmp_23c39966-bdd8-48ff-9874-8dac1de2925f .cart-subtotal h3 {
	margin: 0 0 25px 0;
	text-transform: uppercase;
}

#cmp_23c39966-bdd8-48ff-9874-8dac1de2925f .cart-subtotal p {
	margin: 0 0 25px 0;
}

@media (min-width: 768px) {
	#cmp_23c39966-bdd8-48ff-9874-8dac1de2925f .cart-item {
		border-width: 0 0 1px 0;
	}
	#cmp_23c39966-bdd8-48ff-9874-8dac1de2925f .product-rem-btn {
		top: 40%;
	}
	#cmp_23c39966-bdd8-48ff-9874-8dac1de2925f figure {
		margin: 0;
	}
}

/*
 * components/view-cart/cmp_c16d7f4d-a62d-4021-b973-ba99cd81bf91/component.css
 */
#cmp_c16d7f4d-a62d-4021-b973-ba99cd81bf91 {
	background-color: #FFFFFF;
}

#cmp_c16d7f4d-a62d-4021-b973-ba99cd81bf91 h1 {
	color: rgb(35, 53, 110);
	font-family: Comfortaa;
	font-size: 48px;
}

#cmp_c16d7f4d-a62d-4021-b973-ba99cd81bf91 h2 {
	color: rgb(53, 59, 72);
	font-family: Adamina;
	font-size: 32px;
}

#cmp_c16d7f4d-a62d-4021-b973-ba99cd81bf91 h3 {
	color: rgb(35, 53, 110);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_c16d7f4d-a62d-4021-b973-ba99cd81bf91 p {
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_c16d7f4d-a62d-4021-b973-ba99cd81bf91 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_c16d7f4d-a62d-4021-b973-ba99cd81bf91 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}

#cmp_c16d7f4d-a62d-4021-b973-ba99cd81bf91 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(53, 59, 72);
	font-family: Inter;
	font-size: 14px;
}