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

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

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

h1 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 48px;
	letter-spacing: 1px;
	line-height: 1;
	margin: 0 0 25px 0;
}

h2 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 32px;
	margin: 0 0 25px 0;
}

h3 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 24px;
	margin: 0 0 25px 0;
}

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

a,
.btn-link {
	color: #FD5381;
}

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

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

.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 #FD5381;
	color: #FD5381;
	padding: 0.6em 1.8em;
}

.btn-small:hover,
.btn-small:focus,
.btn-small:active,
.btn-small:active:focus {
	background-color: #FD5381;
	border-color: #FD5381;
}

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

.btn-primary {
	background-color: #FD5381;
	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(125, 240, 187);
	color: #FFFFFF;
}

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

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

.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: #FD5381;
}
.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: #FD5381;
	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(125, 240, 187);
	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: #FD5381;
}

.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 #FD5381;
	color: #FD5381;
	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(125, 240, 187);
	border-color: rgb(125, 240, 187);
	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_07346689-e367-4df7-a865-4b85311483e3/component.css
 */
#cmp_07346689-e367-4df7-a865-4b85311483e3 {
	padding: 0;
}

#cmp_07346689-e367-4df7-a865-4b85311483e3 .hero-content {
	background-color: #FFFFFF;
	padding: 20px;
}

#cmp_07346689-e367-4df7-a865-4b85311483e3 .hero-content h1 {
	color: rgb(253, 83, 129);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_07346689-e367-4df7-a865-4b85311483e3 .hero-content h2 {
	color: rgb(253, 83, 129);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_07346689-e367-4df7-a865-4b85311483e3 .hero-content h3 {
	color: rgb(0, 0, 0);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_07346689-e367-4df7-a865-4b85311483e3 .hero-content p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 14px;
}

#cmp_07346689-e367-4df7-a865-4b85311483e3 .hero-content .btn {
	background-color: #FD5381;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_07346689-e367-4df7-a865-4b85311483e3 .hero-content .btn:hover {
	background-color: rgb(125, 240, 187);
	color: #FFFFFF;
}


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

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

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

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

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

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

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

/*
 * components/checkout/cmp_f3434e8e-a18b-477b-a42f-e2ab65086cb8/component.css
 */
#cmp_f3434e8e-a18b-477b-a42f-e2ab65086cb8 .checkout_content {
	overflow: auto;
}

#cmp_f3434e8e-a18b-477b-a42f-e2ab65086cb8 .checkout_content section {
	border-color: #F5F5F5;
}

#cmp_f3434e8e-a18b-477b-a42f-e2ab65086cb8 .cart_listing table {
	border-color: #F5F5F5;
}

/*
 * components/customer/account/cmp_f11b7fe3-4a45-42cb-aa82-9d276c564e19/component.css
 */

/*
 * components/customer/edit/cmp_f76a849b-6c1c-4da6-b5be-ca9da557dc2f/component.css
 */

/*
 * components/customer/forgot_password/cmp_337a4123-c2f1-4c2e-a14a-9401228a3998/component.css
 */
#cmp_337a4123-c2f1-4c2e-a14a-9401228a3998 {
	padding: 0 0 120px 0;
}
/*
 * components/customer/forgot_password/cmp_b278fad8-5ca8-4043-8589-85594ff80dcf/component.css
 */
#cmp_b278fad8-5ca8-4043-8589-85594ff80dcf {
	background-color: #FFFFFF;
}

#cmp_b278fad8-5ca8-4043-8589-85594ff80dcf h1 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_b278fad8-5ca8-4043-8589-85594ff80dcf h2 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_b278fad8-5ca8-4043-8589-85594ff80dcf h3 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_b278fad8-5ca8-4043-8589-85594ff80dcf p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_b278fad8-5ca8-4043-8589-85594ff80dcf .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_b278fad8-5ca8-4043-8589-85594ff80dcf ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_b278fad8-5ca8-4043-8589-85594ff80dcf ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/customer/login/cmp_64239734-c8d1-4d54-a125-3cc77d4732f1/component.css
 */
#cmp_64239734-c8d1-4d54-a125-3cc77d4732f1 {
	padding: 0 0 120px 0;
}
/*
 * components/customer/login/cmp_ba125329-1bae-49ca-9609-abdd33b81fa8/component.css
 */
#cmp_ba125329-1bae-49ca-9609-abdd33b81fa8 {
	background-color: #FFFFFF;
}

#cmp_ba125329-1bae-49ca-9609-abdd33b81fa8 h1 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_ba125329-1bae-49ca-9609-abdd33b81fa8 h2 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_ba125329-1bae-49ca-9609-abdd33b81fa8 h3 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_ba125329-1bae-49ca-9609-abdd33b81fa8 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_ba125329-1bae-49ca-9609-abdd33b81fa8 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_ba125329-1bae-49ca-9609-abdd33b81fa8 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_ba125329-1bae-49ca-9609-abdd33b81fa8 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/customer/orders/cmp_fee2fc73-8d86-4554-b5ce-4ad806fbedcf/component.css
 */

/*
 * components/customer/password_reset/cmp_5ea454d3-669b-4e06-a731-ad88ec9364e3/component.css
 */
#cmp_5ea454d3-669b-4e06-a731-ad88ec9364e3 {
	padding: 0 0 120px 0;
}
/*
 * components/customer/password_reset/cmp_7afce734-c608-4b84-98f5-8d231a91ad25/component.css
 */
#cmp_7afce734-c608-4b84-98f5-8d231a91ad25 {
	background-color: #FFFFFF;
}

#cmp_7afce734-c608-4b84-98f5-8d231a91ad25 h1 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_7afce734-c608-4b84-98f5-8d231a91ad25 h2 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_7afce734-c608-4b84-98f5-8d231a91ad25 h3 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_7afce734-c608-4b84-98f5-8d231a91ad25 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_7afce734-c608-4b84-98f5-8d231a91ad25 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_7afce734-c608-4b84-98f5-8d231a91ad25 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_7afce734-c608-4b84-98f5-8d231a91ad25 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/customer/thank_you/cmp_c622b25d-92db-47e8-9821-13b202827021/component.css
 */

/*
 * components/faq/cmp_10e6eb0a-31b8-4a1f-8b92-93dfe9497594/component.css
 */
#cmp_10e6eb0a-31b8-4a1f-8b92-93dfe9497594 {
	background-color: #F3F2F0;
}

#cmp_10e6eb0a-31b8-4a1f-8b92-93dfe9497594 h1 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_10e6eb0a-31b8-4a1f-8b92-93dfe9497594 h2 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_10e6eb0a-31b8-4a1f-8b92-93dfe9497594 h3 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_10e6eb0a-31b8-4a1f-8b92-93dfe9497594 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}


#cmp_10e6eb0a-31b8-4a1f-8b92-93dfe9497594 .btn {
	background-color: #FD5381;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_10e6eb0a-31b8-4a1f-8b92-93dfe9497594 .btn:hover {
	background-color: rgb(125, 240, 187);
	color: #FFFFFF;
}

#cmp_10e6eb0a-31b8-4a1f-8b92-93dfe9497594 .component-rich-text-with-button__content-row,
#cmp_10e6eb0a-31b8-4a1f-8b92-93dfe9497594 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_10e6eb0a-31b8-4a1f-8b92-93dfe9497594 .component-rich-text-with-button__content-row,
	#cmp_10e6eb0a-31b8-4a1f-8b92-93dfe9497594 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_10e6eb0a-31b8-4a1f-8b92-93dfe9497594 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_10e6eb0a-31b8-4a1f-8b92-93dfe9497594 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/faq/cmp_2ddcc239-faae-44f6-9537-4f6500561768/component.css
 */
#cmp_2ddcc239-faae-44f6-9537-4f6500561768 {
	background-color: #FFFFFF;
}

#cmp_2ddcc239-faae-44f6-9537-4f6500561768 h1 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_2ddcc239-faae-44f6-9537-4f6500561768 h2 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_2ddcc239-faae-44f6-9537-4f6500561768 h3 {
	color: #000000;
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_2ddcc239-faae-44f6-9537-4f6500561768 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_2ddcc239-faae-44f6-9537-4f6500561768 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_2ddcc239-faae-44f6-9537-4f6500561768 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_2ddcc239-faae-44f6-9537-4f6500561768 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_2ddcc239-faae-44f6-9537-4f6500561768 h2 {
	margin: 0 0 40px 0;
}
#cmp_2ddcc239-faae-44f6-9537-4f6500561768 p {
	border-bottom: 1px solid #EEEEEE;
	padding: 0 0 25px 0;
}
/*
 * components/global/cmp_6ab154cc-5c01-4818-b0cf-56d48115d906/component.css
 */
#cmp_6ab154cc-5c01-4818-b0cf-56d48115d906 {
	background-color: #FFFFFF;
}

#cmp_6ab154cc-5c01-4818-b0cf-56d48115d906 h1 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_6ab154cc-5c01-4818-b0cf-56d48115d906 h2 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_6ab154cc-5c01-4818-b0cf-56d48115d906 h3 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_6ab154cc-5c01-4818-b0cf-56d48115d906 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}


#cmp_6ab154cc-5c01-4818-b0cf-56d48115d906 .btn {
	background-color: #FD5381;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_6ab154cc-5c01-4818-b0cf-56d48115d906 .btn:hover {
	background-color: rgb(125, 240, 187);
	color: #FFFFFF;
}

#cmp_6ab154cc-5c01-4818-b0cf-56d48115d906 .component-rich-text-with-button__content-row,
#cmp_6ab154cc-5c01-4818-b0cf-56d48115d906 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_6ab154cc-5c01-4818-b0cf-56d48115d906 .component-rich-text-with-button__content-row,
	#cmp_6ab154cc-5c01-4818-b0cf-56d48115d906 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_6ab154cc-5c01-4818-b0cf-56d48115d906 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_6ab154cc-5c01-4818-b0cf-56d48115d906 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_6ab154cc-5c01-4818-b0cf-56d48115d906  {
	padding-top: 0;
}
/*
 * components/global/cmp_f3a2f11f-2ccb-4143-bfe3-cc4a872b9c69/component.css
 */
#cmp_f3a2f11f-2ccb-4143-bfe3-cc4a872b9c69 {
	border-bottom: 4px solid #F3F2F0;
	padding: 0;
}

#cmp_f3a2f11f-2ccb-4143-bfe3-cc4a872b9c69 .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_f3a2f11f-2ccb-4143-bfe3-cc4a872b9c69 .navbar a:hover,
#cmp_f3a2f11f-2ccb-4143-bfe3-cc4a872b9c69 .navbar a:focus,
#cmp_f3a2f11f-2ccb-4143-bfe3-cc4a872b9c69 .navbar a:active {
	color: rgb(125, 240, 187);
}

#cmp_f3a2f11f-2ccb-4143-bfe3-cc4a872b9c69 .navbar-brand {
	color: rgb(0, 0, 0);
	font-family: Permanent Marker;
	font-size: 24px;
	margin: 0;
	max-width: 100%;
	padding: 15px;
	text-align: center;

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

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

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

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

	-webkit-flex-shrink: 0;
	-moz-flex-shrink: 0;
	-ms-flex-shrink: 0;
	flex-shrink: 0;
}

#cmp_f3a2f11f-2ccb-4143-bfe3-cc4a872b9c69 .navbar-brand img {
	max-width: 100%;
}

#cmp_f3a2f11f-2ccb-4143-bfe3-cc4a872b9c69 .navbar .navbar-toggler {
	background-color: #FD5381;
	border-radius: 0;
	color: #FFFFFF;
	font-size: 14px;
	letter-spacing: 0.071em;
	padding: 15px;
	text-transform: uppercase;
}

#cmp_f3a2f11f-2ccb-4143-bfe3-cc4a872b9c69 .navbar .navbar-toggler:hover,
#cmp_f3a2f11f-2ccb-4143-bfe3-cc4a872b9c69 .navbar .navbar-toggler:focus,
#cmp_f3a2f11f-2ccb-4143-bfe3-cc4a872b9c69 .navbar .navbar-toggler:active {
	background-color: rgb(125, 240, 187);
	color: #FFFFFF;
}

#cmp_f3a2f11f-2ccb-4143-bfe3-cc4a872b9c69 .navbar-nav {
	background-color: #FD5381;
	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_f3a2f11f-2ccb-4143-bfe3-cc4a872b9c69 .navbar-nav li {
	padding-top: 10px;
	padding-bottom: 10px;
}

#cmp_f3a2f11f-2ccb-4143-bfe3-cc4a872b9c69 .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_f3a2f11f-2ccb-4143-bfe3-cc4a872b9c69 {
		border-width: 0;
	}
	#cmp_f3a2f11f-2ccb-4143-bfe3-cc4a872b9c69 .dropdown-menu {
		background-color: #FD5381;
	}
}

@media (min-width: 768px) {
	#cmp_f3a2f11f-2ccb-4143-bfe3-cc4a872b9c69 .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_f3a2f11f-2ccb-4143-bfe3-cc4a872b9c69 .navbar-brand {
		padding: 0;
		padding-bottom: 15px;
	}
	#cmp_f3a2f11f-2ccb-4143-bfe3-cc4a872b9c69 .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_f3a2f11f-2ccb-4143-bfe3-cc4a872b9c69 .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_f3a2f11f-2ccb-4143-bfe3-cc4a872b9c69 .navbar-nav li {
		padding: 0;
	}
	#cmp_f3a2f11f-2ccb-4143-bfe3-cc4a872b9c69 .navbar-nav .nav-link {
		color: #757575;
	}
	#cmp_f3a2f11f-2ccb-4143-bfe3-cc4a872b9c69 .navbar a:hover,
	#cmp_f3a2f11f-2ccb-4143-bfe3-cc4a872b9c69 .navbar a:focus,
	#cmp_f3a2f11f-2ccb-4143-bfe3-cc4a872b9c69 .navbar a:active {
		color: rgb(253, 83, 129);
	}
}

/*
 * components/global/cmp_f8072233-92ff-46e7-ae0c-35bfed42dbb8/component.css
 */
#cmp_f8072233-92ff-46e7-ae0c-35bfed42dbb8.footer {
	background-color: rgb(41, 6, 76);
	color: #FFFFFF;
	font-family: Lato;
	padding: 25px 0;

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

#cmp_f8072233-92ff-46e7-ae0c-35bfed42dbb8.footer p {
	color: #FFFFFF;
}

#cmp_f8072233-92ff-46e7-ae0c-35bfed42dbb8 .footer-subscribe {
	padding: 15px 0;
}

#cmp_f8072233-92ff-46e7-ae0c-35bfed42dbb8 .footer-subscribe .btn {
	border: 1px solid #FFFFFF;
}

#cmp_f8072233-92ff-46e7-ae0c-35bfed42dbb8 .footer-social {
	padding: 15px 0;
}

#cmp_f8072233-92ff-46e7-ae0c-35bfed42dbb8 .footer-social a {
	display: inline-block;
	padding: 0 5px;
}

#cmp_f8072233-92ff-46e7-ae0c-35bfed42dbb8 .footer-social svg path {
	fill: #FFFFFF;
}

#cmp_f8072233-92ff-46e7-ae0c-35bfed42dbb8 .footer-social a:hover svg path,
#cmp_f8072233-92ff-46e7-ae0c-35bfed42dbb8 .footer-social a:focus svg path,
#cmp_f8072233-92ff-46e7-ae0c-35bfed42dbb8 .footer-social a:active svg path {
	fill: rgb(125, 240, 187);
}

#cmp_f8072233-92ff-46e7-ae0c-35bfed42dbb8 .footer-contact {
	padding: 15px 0;

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

#cmp_f8072233-92ff-46e7-ae0c-35bfed42dbb8 .footer-contact p {
	margin: 0 0 0.5em 0;
}

@media (min-width: 768px) {
	#cmp_f8072233-92ff-46e7-ae0c-35bfed42dbb8.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/holiday_sale/cmp_008ae5ce-dce9-444c-bd29-973b8e77a692/component.css
 */
#cmp_008ae5ce-dce9-444c-bd29-973b8e77a692 img {
	max-width: 100%;
}

/*
 * components/holiday_sale/cmp_4252cca3-8869-451a-b27e-94bce23d75ba/component.css
 */
#cmp_4252cca3-8869-451a-b27e-94bce23d75ba {
	background-color: #FFFFFF;
}

#cmp_4252cca3-8869-451a-b27e-94bce23d75ba h1 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_4252cca3-8869-451a-b27e-94bce23d75ba h2 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_4252cca3-8869-451a-b27e-94bce23d75ba h3 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_4252cca3-8869-451a-b27e-94bce23d75ba p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}


#cmp_4252cca3-8869-451a-b27e-94bce23d75ba .btn {
	background-color: #FD5381;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_4252cca3-8869-451a-b27e-94bce23d75ba .btn:hover {
	background-color: rgb(125, 240, 187);
	color: #FFFFFF;
}

#cmp_4252cca3-8869-451a-b27e-94bce23d75ba .component-rich-text-with-button__content-row,
#cmp_4252cca3-8869-451a-b27e-94bce23d75ba .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_4252cca3-8869-451a-b27e-94bce23d75ba .component-rich-text-with-button__content-row,
	#cmp_4252cca3-8869-451a-b27e-94bce23d75ba .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_4252cca3-8869-451a-b27e-94bce23d75ba ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_4252cca3-8869-451a-b27e-94bce23d75ba ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/holiday_sale/cmp_b01da0c3-907d-4de6-be1a-38d1e9fc715a/component.css
 */
#cmp_b01da0c3-907d-4de6-be1a-38d1e9fc715a {
	background-color: #FFFFFF;
}

#cmp_b01da0c3-907d-4de6-be1a-38d1e9fc715a h1 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_b01da0c3-907d-4de6-be1a-38d1e9fc715a h2 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_b01da0c3-907d-4de6-be1a-38d1e9fc715a h3 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_b01da0c3-907d-4de6-be1a-38d1e9fc715a p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_b01da0c3-907d-4de6-be1a-38d1e9fc715a .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_b01da0c3-907d-4de6-be1a-38d1e9fc715a ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_b01da0c3-907d-4de6-be1a-38d1e9fc715a ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/howitworks/cmp_a01f7e23-e8e1-415f-8d9e-1f4ec57b74af/component.css
 */
#cmp_a01f7e23-e8e1-415f-8d9e-1f4ec57b74af {
	background-color: #F3F2F0;
}

#cmp_a01f7e23-e8e1-415f-8d9e-1f4ec57b74af .content-row {
	margin: 0;

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

#cmp_a01f7e23-e8e1-415f-8d9e-1f4ec57b74af .content {
	background-color: #F3F2F0;
	border: 5px solid #FFFFFF;
	margin: 15px 0;
	padding: 25px;

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

#cmp_a01f7e23-e8e1-415f-8d9e-1f4ec57b74af .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_a01f7e23-e8e1-415f-8d9e-1f4ec57b74af h1 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_a01f7e23-e8e1-415f-8d9e-1f4ec57b74af h2 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_a01f7e23-e8e1-415f-8d9e-1f4ec57b74af h3 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_a01f7e23-e8e1-415f-8d9e-1f4ec57b74af p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_a01f7e23-e8e1-415f-8d9e-1f4ec57b74af .content {
		margin: 15px;
	}
}
/*
 * components/howitworks/cmp_dd5a808c-c918-4a81-87a7-efa96a91a79e/component.css
 */
#cmp_dd5a808c-c918-4a81-87a7-efa96a91a79e {
	background-color: #FFFFFF;
}

#cmp_dd5a808c-c918-4a81-87a7-efa96a91a79e h1 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_dd5a808c-c918-4a81-87a7-efa96a91a79e h2 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_dd5a808c-c918-4a81-87a7-efa96a91a79e h3 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_dd5a808c-c918-4a81-87a7-efa96a91a79e p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_dd5a808c-c918-4a81-87a7-efa96a91a79e .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_dd5a808c-c918-4a81-87a7-efa96a91a79e ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_dd5a808c-c918-4a81-87a7-efa96a91a79e ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/howitworks/cmp_f78f18e2-c303-43c8-99df-4d5a8a396ad1/component.css
 */
#cmp_f78f18e2-c303-43c8-99df-4d5a8a396ad1 {
	background-color: #FFFFFF;
	padding: 0;
}

#cmp_f78f18e2-c303-43c8-99df-4d5a8a396ad1 .content {
	margin: 0 auto;
	padding: 25px;
}

#cmp_f78f18e2-c303-43c8-99df-4d5a8a396ad1 .content .cta {
	border: 5px solid #FD5381;
	padding: 45px;
}

#cmp_f78f18e2-c303-43c8-99df-4d5a8a396ad1 h1 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_f78f18e2-c303-43c8-99df-4d5a8a396ad1 h2 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_f78f18e2-c303-43c8-99df-4d5a8a396ad1 h3 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_f78f18e2-c303-43c8-99df-4d5a8a396ad1 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/index/cmp_30ef2bc7-2aea-4b28-b3d9-f8108ee8b998/component.css
 */
#cmp_30ef2bc7-2aea-4b28-b3d9-f8108ee8b998 {
	background-position: right top !important;
	background-repeat: no-repeat !important;
	margin: 0;
	min-height: calc(100vh - 100px);
	padding: 0;

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

#cmp_30ef2bc7-2aea-4b28-b3d9-f8108ee8b998 .container-fluid {
	width: 100%;
}

#cmp_30ef2bc7-2aea-4b28-b3d9-f8108ee8b998 .hero-row {
	margin: 0;
}

#cmp_30ef2bc7-2aea-4b28-b3d9-f8108ee8b998 .hero-content {
	margin: 0;
	text-align: center;
}

#cmp_30ef2bc7-2aea-4b28-b3d9-f8108ee8b998 .hero-content h1 {
	color: rgb(41, 6, 76);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_30ef2bc7-2aea-4b28-b3d9-f8108ee8b998 .hero-content h2 {
	color: rgb(41, 6, 76);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_30ef2bc7-2aea-4b28-b3d9-f8108ee8b998 .hero-content h3 {
	color: rgb(41, 6, 76);
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_30ef2bc7-2aea-4b28-b3d9-f8108ee8b998 .hero-content p {
	color: rgb(41, 6, 76);
	font-family: Lato;
	font-size: 18px;
}

#cmp_30ef2bc7-2aea-4b28-b3d9-f8108ee8b998 .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_30ef2bc7-2aea-4b28-b3d9-f8108ee8b998 .hero-content .btn {
	margin: 5px 0;
	padding: 1em;
	white-space: normal;
	width: 90%;
}

#cmp_30ef2bc7-2aea-4b28-b3d9-f8108ee8b998 .hero-content .btn-primary {
	background-color: #FD5381;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_30ef2bc7-2aea-4b28-b3d9-f8108ee8b998 .hero-content .btn-primary:hover,
#cmp_30ef2bc7-2aea-4b28-b3d9-f8108ee8b998 .hero-content .btn-primary:focus,
#cmp_30ef2bc7-2aea-4b28-b3d9-f8108ee8b998 .hero-content .btn-primary:active {
	background-color: rgb(125, 240, 187);
	color: #FFFFFF;
}

#cmp_30ef2bc7-2aea-4b28-b3d9-f8108ee8b998 .hero-content .btn-secondary {
	background-color: rgb(89, 221, 145);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_30ef2bc7-2aea-4b28-b3d9-f8108ee8b998 .hero-content .btn-secondary:hover,
#cmp_30ef2bc7-2aea-4b28-b3d9-f8108ee8b998 .hero-content .btn-secondary:focus,
#cmp_30ef2bc7-2aea-4b28-b3d9-f8108ee8b998 .hero-content .btn-secondary:active {
	background-color: #FD5381;
	color: #FFFFFF;
}

@media (min-width: 768px) {
	#cmp_30ef2bc7-2aea-4b28-b3d9-f8108ee8b998 {
		min-height: 40vw;
	}
	#cmp_30ef2bc7-2aea-4b28-b3d9-f8108ee8b998 .hero-content {
		margin: 15px;
		text-align: left;
	}
	#cmp_30ef2bc7-2aea-4b28-b3d9-f8108ee8b998 .hero-content .button-container {
		-webkit-justify-content: flex-start;
		-moz-justify-content: flex-start;
		-ms-justify-content: flex-start;
		justify-content: flex-start;
	}
	#cmp_30ef2bc7-2aea-4b28-b3d9-f8108ee8b998 .hero-content .btn {
		margin: 0 15px 0 0;
		width: 45%;
	}
}

@media (min-width: 1200px) {
	#cmp_30ef2bc7-2aea-4b28-b3d9-f8108ee8b998 {
		min-height: 533px;
	}
}
/*
 * components/index/cmp_463939e4-9d70-4bba-87e8-082f0f0ad16b/component.css
 */
#cmp_463939e4-9d70-4bba-87e8-082f0f0ad16b {
	background-color: rgb(255, 18, 137);
}

#cmp_463939e4-9d70-4bba-87e8-082f0f0ad16b .content-row {
	margin: 0;

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

#cmp_463939e4-9d70-4bba-87e8-082f0f0ad16b .content {
	background-color: rgb(255, 234, 236);
	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_463939e4-9d70-4bba-87e8-082f0f0ad16b .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_463939e4-9d70-4bba-87e8-082f0f0ad16b h1 {
	color: rgb(41, 6, 76);
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_463939e4-9d70-4bba-87e8-082f0f0ad16b h2 {
	color: rgb(41, 6, 76);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_463939e4-9d70-4bba-87e8-082f0f0ad16b h3 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_463939e4-9d70-4bba-87e8-082f0f0ad16b p {
	color: rgb(41, 6, 76);
	font-family: Lato;
	font-size: 20px;
}

@media (min-width: 768px) {
	#cmp_463939e4-9d70-4bba-87e8-082f0f0ad16b .content {
		margin: 15px;
	}
}
/*
 * components/index/cmp_71932fa6-2e2d-4cb6-92a7-acd54805cec9/component.css
 */
#cmp_71932fa6-2e2d-4cb6-92a7-acd54805cec9 img {
	max-width: 100%;
}

/*
 * components/index/cmp_7fbaf4a7-ce81-44c0-a227-c933e9771cd4/component.css
 */
#cmp_7fbaf4a7-ce81-44c0-a227-c933e9771cd4 {
	padding: 0;
}

#cmp_7fbaf4a7-ce81-44c0-a227-c933e9771cd4 .hero-content {
	background-color: #FFFFFF;
	padding: 20px;
}

#cmp_7fbaf4a7-ce81-44c0-a227-c933e9771cd4 .hero-content h1 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 45px;
}

#cmp_7fbaf4a7-ce81-44c0-a227-c933e9771cd4 .hero-content h2 {
	color: rgb(253, 83, 129);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_7fbaf4a7-ce81-44c0-a227-c933e9771cd4 .hero-content h3 {
	color: #FFFFFF;
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_7fbaf4a7-ce81-44c0-a227-c933e9771cd4 .hero-content p {
	color: rgb(41, 6, 76);
	font-family: Lato;
	font-size: 18px;
}

#cmp_7fbaf4a7-ce81-44c0-a227-c933e9771cd4 .hero-content .btn {
	background-color: #FD5381;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_7fbaf4a7-ce81-44c0-a227-c933e9771cd4 .hero-content .btn:hover {
	background-color: rgb(125, 240, 187);
	color: #FFFFFF;
}


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

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

	#cmp_7fbaf4a7-ce81-44c0-a227-c933e9771cd4 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_7fbaf4a7-ce81-44c0-a227-c933e9771cd4 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

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

	#cmp_7fbaf4a7-ce81-44c0-a227-c933e9771cd4 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_7fbaf4a7-ce81-44c0-a227-c933e9771cd4 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/index/cmp_b6ebe9fb-1c63-40e6-ae89-e9c185b11bd2/component.css
 */
#cmp_b6ebe9fb-1c63-40e6-ae89-e9c185b11bd2 {
	background-color: #FFFFFF;
}

#cmp_b6ebe9fb-1c63-40e6-ae89-e9c185b11bd2 h1 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_b6ebe9fb-1c63-40e6-ae89-e9c185b11bd2 h2 {
	color: rgb(253, 83, 129);
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_b6ebe9fb-1c63-40e6-ae89-e9c185b11bd2 h3 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_b6ebe9fb-1c63-40e6-ae89-e9c185b11bd2 p {
	color: rgb(41, 6, 76);
	font-family: Lato;
	font-size: 18px;
}

@media (min-width: 768px) {
	#cmp_b6ebe9fb-1c63-40e6-ae89-e9c185b11bd2 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_b6ebe9fb-1c63-40e6-ae89-e9c185b11bd2 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(41, 6, 76);
	font-family: Lato;
	font-size: 18px;
}

#cmp_b6ebe9fb-1c63-40e6-ae89-e9c185b11bd2 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(41, 6, 76);
	font-family: Lato;
	font-size: 18px;
}

/*
 * components/index/cmp_c79f5b47-286d-40a6-94cb-a86a8720554c/component.css
 */
#cmp_c79f5b47-286d-40a6-94cb-a86a8720554c {
	background-color: #FFFFFF;
}

#cmp_c79f5b47-286d-40a6-94cb-a86a8720554c .content-row {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

#cmp_c79f5b47-286d-40a6-94cb-a86a8720554c .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_c79f5b47-286d-40a6-94cb-a86a8720554c h1 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_c79f5b47-286d-40a6-94cb-a86a8720554c h2 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_c79f5b47-286d-40a6-94cb-a86a8720554c h3 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_c79f5b47-286d-40a6-94cb-a86a8720554c p {
	color: #757575;
	font-family: Lato;
	font-size: 18px;
}

@media (min-width: 768px) {
	#cmp_c79f5b47-286d-40a6-94cb-a86a8720554c .content-row {
		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
	}
}
/*
 * components/shop/listing/cmp_2a7a1393-cbf0-460d-9db7-7eed47a11a6d/component.css
 */
#cmp_2a7a1393-cbf0-460d-9db7-7eed47a11a6d {
	border-bottom: 1px solid #E1E1E1;
	padding: 20px 0 40px 0;
}

#cmp_2a7a1393-cbf0-460d-9db7-7eed47a11a6d ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_6c9fda1f-8646-402f-bc7d-4ba0178056ba/component.css
 */
#cmp_6c9fda1f-8646-402f-bc7d-4ba0178056ba {
	padding: 20px 0;
}

#cmp_6c9fda1f-8646-402f-bc7d-4ba0178056ba ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_7c4cf1c0-69d9-4936-ad82-6307cc0f821e/component.css
 */
#cmp_7c4cf1c0-69d9-4936-ad82-6307cc0f821e {
	background-color: #FFFFFF;
}

#cmp_7c4cf1c0-69d9-4936-ad82-6307cc0f821e h1 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_7c4cf1c0-69d9-4936-ad82-6307cc0f821e h2 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_7c4cf1c0-69d9-4936-ad82-6307cc0f821e h3 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_7c4cf1c0-69d9-4936-ad82-6307cc0f821e p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_7c4cf1c0-69d9-4936-ad82-6307cc0f821e .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_7c4cf1c0-69d9-4936-ad82-6307cc0f821e ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_7c4cf1c0-69d9-4936-ad82-6307cc0f821e ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_7c4cf1c0-69d9-4936-ad82-6307cc0f821e  {
	padding-bottom: 20px;
}
/*
 * components/shop/listing/cmp_be4efa1f-9411-4c62-be2d-c3002b4159b2/component.css
 */
.shop-listing-item {
	color: #757575;
}

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

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

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

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

.product_paging {
	margin: 20px 0;

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

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

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

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

.product_page.active a {
	color: black;
}

/*
 * components/shop/product/cmp_49c48478-0497-4e4d-b294-39d39472dc7c/component.css
 */
#cmp_49c48478-0497-4e4d-b294-39d39472dc7c .shop-product select {
	width: auto;
}

#cmp_49c48478-0497-4e4d-b294-39d39472dc7c .shop-product__name {
	margin-bottom: 20px;
}

#cmp_49c48478-0497-4e4d-b294-39d39472dc7c .shop-product__price {
	margin-bottom: 20px;
}

#cmp_49c48478-0497-4e4d-b294-39d39472dc7c .shop-product__add-to-cart {
	margin-bottom: 20px;
}

#cmp_49c48478-0497-4e4d-b294-39d39472dc7c .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin-bottom: 40px;
}

#cmp_49c48478-0497-4e4d-b294-39d39472dc7c .shop-product__review-share-desktop .rating,
#cmp_49c48478-0497-4e4d-b294-39d39472dc7c .shop-product__review-share-desktop .sharing {
	padding-top: 10px;
}

#cmp_49c48478-0497-4e4d-b294-39d39472dc7c .shop-product__review-share-desktop h3,
#cmp_49c48478-0497-4e4d-b294-39d39472dc7c .shop-product__review-share-mobile h3 {
	margin: 10px 0;
}
#cmp_49c48478-0497-4e4d-b294-39d39472dc7c  {
	padding-top: 0;
}
/*
 * components/shop/product/cmp_d08d95cb-2c80-49d1-abc8-79205bdb0461/component.css
 */
#cmp_d08d95cb-2c80-49d1-abc8-79205bdb0461.shop-product-header {
	padding: 60px 0 20px 0;
}

/*
 * components/sold_out/cmp_57f4f823-3ab9-4fe4-abd5-d5b1f1a72177/component.css
 */
#cmp_57f4f823-3ab9-4fe4-abd5-d5b1f1a72177 {
	background-color: #FFFFFF;
}

#cmp_57f4f823-3ab9-4fe4-abd5-d5b1f1a72177 h1 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_57f4f823-3ab9-4fe4-abd5-d5b1f1a72177 h2 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_57f4f823-3ab9-4fe4-abd5-d5b1f1a72177 h3 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_57f4f823-3ab9-4fe4-abd5-d5b1f1a72177 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}


#cmp_57f4f823-3ab9-4fe4-abd5-d5b1f1a72177 .btn {
	background-color: #FD5381;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_57f4f823-3ab9-4fe4-abd5-d5b1f1a72177 .btn:hover {
	background-color: rgb(125, 240, 187);
	color: #FFFFFF;
}

#cmp_57f4f823-3ab9-4fe4-abd5-d5b1f1a72177 .component-rich-text-with-button__content-row,
#cmp_57f4f823-3ab9-4fe4-abd5-d5b1f1a72177 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_57f4f823-3ab9-4fe4-abd5-d5b1f1a72177 .component-rich-text-with-button__content-row,
	#cmp_57f4f823-3ab9-4fe4-abd5-d5b1f1a72177 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_57f4f823-3ab9-4fe4-abd5-d5b1f1a72177 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_57f4f823-3ab9-4fe4-abd5-d5b1f1a72177 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_57f4f823-3ab9-4fe4-abd5-d5b1f1a72177  {
	padding-top: 0;
}
/*
 * components/sold_out/cmp_80565f1a-c1d8-4d09-baae-7a3d21756a36/component.css
 */
#cmp_80565f1a-c1d8-4d09-baae-7a3d21756a36 img {
	max-width: 100%;
}

/*
 * components/subscribe/cmp_39ca9f1e-9c4b-4a1a-b3de-d9a68117f616/component.css
 */
#cmp_39ca9f1e-9c4b-4a1a-b3de-d9a68117f616 {
	background-color: #F3F2F0;
}

#cmp_39ca9f1e-9c4b-4a1a-b3de-d9a68117f616 h3 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_39ca9f1e-9c4b-4a1a-b3de-d9a68117f616 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_39ca9f1e-9c4b-4a1a-b3de-d9a68117f616 .sf-item {
	background-color: #FFFFFF;
}
/*
 * components/subscribe/cmp_4bcd87df-1845-43e5-9b5b-6974920c88f3/component.css
 */
#cmp_4bcd87df-1845-43e5-9b5b-6974920c88f3 {
	background-color: #FFFFFF;
	padding-bottom: 0;
}

#cmp_4bcd87df-1845-43e5-9b5b-6974920c88f3 .progress-bar-container {
	position: relative;
}

#cmp_4bcd87df-1845-43e5-9b5b-6974920c88f3 .progress-bar-filler {
	background: #F3F2F0;
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_4bcd87df-1845-43e5-9b5b-6974920c88f3 .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_4bcd87df-1845-43e5-9b5b-6974920c88f3 .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_4bcd87df-1845-43e5-9b5b-6974920c88f3 .progress-bar .step .point {
	background-color: #FFFFFF;
	border: 4px solid #F3F2F0;
	border-radius: 10px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_4bcd87df-1845-43e5-9b5b-6974920c88f3 .progress-bar .step.active .point {
	background-color: #FD5381;;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_4bcd87df-1845-43e5-9b5b-6974920c88f3 .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe/cmp_c22d81bf-a797-4fa8-8b55-207b6de1eb33/component.css
 */
#cmp_c22d81bf-a797-4fa8-8b55-207b6de1eb33 {
	background-color: #FFFFFF;
}

#cmp_c22d81bf-a797-4fa8-8b55-207b6de1eb33 h1 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_c22d81bf-a797-4fa8-8b55-207b6de1eb33 h2 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_c22d81bf-a797-4fa8-8b55-207b6de1eb33 h3 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_c22d81bf-a797-4fa8-8b55-207b6de1eb33 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_c22d81bf-a797-4fa8-8b55-207b6de1eb33 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_c22d81bf-a797-4fa8-8b55-207b6de1eb33 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_c22d81bf-a797-4fa8-8b55-207b6de1eb33 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

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

	max-width: 940px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

	margin-bottom: 15px;
}

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

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

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

	color: #FFFFFF;
	background-color: #FD5381;
}

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

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-name {
	font-size: 20px;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-price {
	margin-bottom: 20px;

	font-size: 16px;
	color: #38BFC3;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-form-group .control-label {
	font-size: 12px;
	color: #9B9B9B;

	margin-bottom: 2px;
}

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

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

	text-align: center;
}


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

	color: #FFFFFF;
	background-color: #FD5381;
}

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

@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_5188be03-364f-4834-a2d2-44d6bb62cc9e/component.css
 */
#cmp_5188be03-364f-4834-a2d2-44d6bb62cc9e {
	background-color: #FFFFFF;
	padding-bottom: 0;
}

#cmp_5188be03-364f-4834-a2d2-44d6bb62cc9e .progress-bar-container {
	position: relative;
}

#cmp_5188be03-364f-4834-a2d2-44d6bb62cc9e .progress-bar-filler {
	background: #F3F2F0;
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_5188be03-364f-4834-a2d2-44d6bb62cc9e .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_5188be03-364f-4834-a2d2-44d6bb62cc9e .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_5188be03-364f-4834-a2d2-44d6bb62cc9e .progress-bar .step .point {
	background-color: #FFFFFF;
	border: 4px solid #F3F2F0;
	border-radius: 10px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_5188be03-364f-4834-a2d2-44d6bb62cc9e .progress-bar .step.active .point {
	background-color: #FD5381;;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_5188be03-364f-4834-a2d2-44d6bb62cc9e .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe_flow/survey_step/cmp_8adbae5f-cfff-4145-b181-1e289b07ebc9/component.css
 */
#cmp_8adbae5f-cfff-4145-b181-1e289b07ebc9 {
	background-color: #F3F2F0;
}

#cmp_8adbae5f-cfff-4145-b181-1e289b07ebc9 h3 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_8adbae5f-cfff-4145-b181-1e289b07ebc9 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/subscribe_flow/survey_step/cmp_a22811e8-7845-4b0a-aea7-4154897df35d/component.css
 */
#cmp_a22811e8-7845-4b0a-aea7-4154897df35d {
	background-color: #FFFFFF;
}

#cmp_a22811e8-7845-4b0a-aea7-4154897df35d h1 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_a22811e8-7845-4b0a-aea7-4154897df35d p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}
/*
 * components/subscribe_flow/terms_step/cmp_483a48ec-ddbc-47f2-aa34-5d23cc58eb2f/component.css
 */
#cmp_483a48ec-ddbc-47f2-aa34-5d23cc58eb2f {
	background-color: #FFFFFF;
}

#cmp_483a48ec-ddbc-47f2-aa34-5d23cc58eb2f h1 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_483a48ec-ddbc-47f2-aa34-5d23cc58eb2f p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}
/*
 * components/subscribe_flow/terms_step/cmp_73773088-1546-4bb6-9d05-2a057252b31d/component.css
 */
#cmp_73773088-1546-4bb6-9d05-2a057252b31d {
	background-color: #F3F2F0;
}

#cmp_73773088-1546-4bb6-9d05-2a057252b31d h2 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_73773088-1546-4bb6-9d05-2a057252b31d h3 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_73773088-1546-4bb6-9d05-2a057252b31d p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_73773088-1546-4bb6-9d05-2a057252b31d .sf-item {
	background-color: #FFFFFF;
}
/*
 * components/subscribe_flow/terms_step/cmp_a04cbaf3-3583-4b00-bec2-b43b7be617e0/component.css
 */
#cmp_a04cbaf3-3583-4b00-bec2-b43b7be617e0 {
	background-color: #FFFFFF;
	padding-bottom: 0;
}

#cmp_a04cbaf3-3583-4b00-bec2-b43b7be617e0 .progress-bar-container {
	position: relative;
}

#cmp_a04cbaf3-3583-4b00-bec2-b43b7be617e0 .progress-bar-filler {
	background: #F3F2F0;
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_a04cbaf3-3583-4b00-bec2-b43b7be617e0 .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_a04cbaf3-3583-4b00-bec2-b43b7be617e0 .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_a04cbaf3-3583-4b00-bec2-b43b7be617e0 .progress-bar .step .point {
	background-color: #FFFFFF;
	border: 4px solid #F3F2F0;
	border-radius: 10px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_a04cbaf3-3583-4b00-bec2-b43b7be617e0 .progress-bar .step.active .point {
	background-color: #FD5381;;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_a04cbaf3-3583-4b00-bec2-b43b7be617e0 .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe_flow/variant_step/cmp_3e628585-e282-4d13-a9e5-7fc05566a1a7/component.css
 */
#cmp_3e628585-e282-4d13-a9e5-7fc05566a1a7 {
	background-color: #FFFFFF;
	padding-bottom: 0;
}

#cmp_3e628585-e282-4d13-a9e5-7fc05566a1a7 .progress-bar-container {
	position: relative;
}

#cmp_3e628585-e282-4d13-a9e5-7fc05566a1a7 .progress-bar-filler {
	background: #F3F2F0;
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_3e628585-e282-4d13-a9e5-7fc05566a1a7 .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_3e628585-e282-4d13-a9e5-7fc05566a1a7 .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_3e628585-e282-4d13-a9e5-7fc05566a1a7 .progress-bar .step .point {
	background-color: #FFFFFF;
	border: 4px solid #F3F2F0;
	border-radius: 10px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_3e628585-e282-4d13-a9e5-7fc05566a1a7 .progress-bar .step.active .point {
	background-color: #FD5381;;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_3e628585-e282-4d13-a9e5-7fc05566a1a7 .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe_flow/variant_step/cmp_4a0bcf4d-e31b-457e-9d02-c99a95af5f9d/component.css
 */
#cmp_4a0bcf4d-e31b-457e-9d02-c99a95af5f9d {
	background-color: #F3F2F0;
}

#cmp_4a0bcf4d-e31b-457e-9d02-c99a95af5f9d h3 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_4a0bcf4d-e31b-457e-9d02-c99a95af5f9d p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_4a0bcf4d-e31b-457e-9d02-c99a95af5f9d .sf-item {
	background-color: #FFFFFF;
}
/*
 * components/subscribe_flow/variant_step/cmp_993529ea-5fdb-41f0-b23d-69a0a4c2bfce/component.css
 */
#cmp_993529ea-5fdb-41f0-b23d-69a0a4c2bfce {
	background-color: #FFFFFF;
}

#cmp_993529ea-5fdb-41f0-b23d-69a0a4c2bfce h1 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_993529ea-5fdb-41f0-b23d-69a0a4c2bfce h2 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_993529ea-5fdb-41f0-b23d-69a0a4c2bfce h3 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_993529ea-5fdb-41f0-b23d-69a0a4c2bfce p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_993529ea-5fdb-41f0-b23d-69a0a4c2bfce .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_993529ea-5fdb-41f0-b23d-69a0a4c2bfce ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_993529ea-5fdb-41f0-b23d-69a0a4c2bfce ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_993529ea-5fdb-41f0-b23d-69a0a4c2bfce  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_a21d6894-59d7-43dc-b2af-4025abffea2d/component.css
 */
#cmp_a21d6894-59d7-43dc-b2af-4025abffea2d {
	background-color: #FFFFFF;
}

#cmp_a21d6894-59d7-43dc-b2af-4025abffea2d h1 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_a21d6894-59d7-43dc-b2af-4025abffea2d p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}
/*
 * components/subscribe_flow/variant_step/cmp_f5f8ddfc-f8a2-473b-ae4a-96c4fa8ac451/component.css
 */
#cmp_f5f8ddfc-f8a2-473b-ae4a-96c4fa8ac451 {
	background-color: #FFFFFF;
}

#cmp_f5f8ddfc-f8a2-473b-ae4a-96c4fa8ac451 .content-row {
	margin: 0;

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

#cmp_f5f8ddfc-f8a2-473b-ae4a-96c4fa8ac451 .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_f5f8ddfc-f8a2-473b-ae4a-96c4fa8ac451 .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_f5f8ddfc-f8a2-473b-ae4a-96c4fa8ac451 h1 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_f5f8ddfc-f8a2-473b-ae4a-96c4fa8ac451 h2 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_f5f8ddfc-f8a2-473b-ae4a-96c4fa8ac451 h3 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_f5f8ddfc-f8a2-473b-ae4a-96c4fa8ac451 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_f5f8ddfc-f8a2-473b-ae4a-96c4fa8ac451 .content {
		margin: 15px;
	}
}
#cmp_f5f8ddfc-f8a2-473b-ae4a-96c4fa8ac451  {
	padding-top: 0;
}
/*
 * components/view-cart/cmp_40059ddc-ccd8-42c7-8577-eb12b543bc95/component.css
 */
#cmp_40059ddc-ccd8-42c7-8577-eb12b543bc95 {
	padding: 15px 15px 100px 15px;
}

#cmp_40059ddc-ccd8-42c7-8577-eb12b543bc95 .cart-thead {
	border-bottom: 1px solid #E1E1E1;
	padding: 10px 0;
}

#cmp_40059ddc-ccd8-42c7-8577-eb12b543bc95 .cart-thead h3 {
	text-transform: uppercase;
}

#cmp_40059ddc-ccd8-42c7-8577-eb12b543bc95 .cart-item {
	border: 1px solid #E1E1E1;
	padding: 25px 0;
	position: relative;
}

#cmp_40059ddc-ccd8-42c7-8577-eb12b543bc95 .product-main {
	margin: 0 0 15px 0;
}

#cmp_40059ddc-ccd8-42c7-8577-eb12b543bc95 .product-label p {
	margin: 0;
}

#cmp_40059ddc-ccd8-42c7-8577-eb12b543bc95 .product-label .info {
	color: #FD5381;
	text-align: right;
	text-transform: uppercase;
}

#cmp_40059ddc-ccd8-42c7-8577-eb12b543bc95 .product-label .meta {
	color: #757575;
	font-size: 14px;
}

#cmp_40059ddc-ccd8-42c7-8577-eb12b543bc95 .product-rem-btn {
	position: absolute;
	right: 1%;
	top: 1%;
}

#cmp_40059ddc-ccd8-42c7-8577-eb12b543bc95 figure {
	margin: 0 0 15px 0;
}

#cmp_40059ddc-ccd8-42c7-8577-eb12b543bc95 .cart-subtotal {
	margin: 50px 0 0 0;
}

#cmp_40059ddc-ccd8-42c7-8577-eb12b543bc95 .cart-subtotal h2 {
	margin: 0 0 15px 0;
}

#cmp_40059ddc-ccd8-42c7-8577-eb12b543bc95 .cart-subtotal h3 {
	margin: 0 0 25px 0;
	text-transform: uppercase;
}

#cmp_40059ddc-ccd8-42c7-8577-eb12b543bc95 .cart-subtotal p {
	margin: 0 0 25px 0;
}

@media (min-width: 768px) {
	#cmp_40059ddc-ccd8-42c7-8577-eb12b543bc95 .cart-item {
		border-width: 0 0 1px 0;
	}
	#cmp_40059ddc-ccd8-42c7-8577-eb12b543bc95 .product-rem-btn {
		top: 40%;
	}
	#cmp_40059ddc-ccd8-42c7-8577-eb12b543bc95 figure {
		margin: 0;
	}
}

/*
 * components/view-cart/cmp_c535dc20-0d0e-417f-b7ac-dd7482df1e71/component.css
 */
#cmp_c535dc20-0d0e-417f-b7ac-dd7482df1e71 {
	background-color: #FFFFFF;
}

#cmp_c535dc20-0d0e-417f-b7ac-dd7482df1e71 h1 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 48px;
}

#cmp_c535dc20-0d0e-417f-b7ac-dd7482df1e71 h2 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 32px;
}

#cmp_c535dc20-0d0e-417f-b7ac-dd7482df1e71 h3 {
	color: #FD5381;
	font-family: Permanent Marker;
	font-size: 24px;
}

#cmp_c535dc20-0d0e-417f-b7ac-dd7482df1e71 p {
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_c535dc20-0d0e-417f-b7ac-dd7482df1e71 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_c535dc20-0d0e-417f-b7ac-dd7482df1e71 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}

#cmp_c535dc20-0d0e-417f-b7ac-dd7482df1e71 ul {
	list-style: disc;
	list-style-position: inside;
	color: #757575;
	font-family: Lato;
	font-size: 14px;
}