/*
 * css/style.css
 */
/* Globals
------------------------------*/
body {
	background-color: rgb(238, 238, 238);
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	letter-spacing: 0.077em;
	line-height: 1.5em;
}

body > .container-fluid {
	background-color: rgb(255, 255, 255);
	max-width: 1140px;
}

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

h1 {
	color: #333333;
	font-family: Satisfy;
	font-size: 40px;
}

h2 {
	color: #333333;
	font-family: Playfair Display;
	font-size: 22px;
}

h3 {
	color: #333333;
	font-family: Playfair Display;
	font-size: 15px;
}

p {
	line-height: 1.5em;
}

a,
.btn-link {
	color: rgb(224, 16, 132);
}

a:hover,
a:focus,
a:active,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
	color: #333333;
}

/* General Component Styles */
section[class^="component"] {
	padding: 20px 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 {
	position: relative;
	flex-grow: 1;
	padding: 0;
}

/* 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%;
	min-width: 130px;
	-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(224, 16, 132);
}

.panel {
	margin-bottom: 20px;
	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);
}

.panel-body {
	padding: 15px;
}

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

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

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

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

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

/* Buttons */
.btn {
	border-radius: 25px;
	border: none;
	padding: 1.2em 5em;
	letter-spacing: 2px;
	font-size: 12px;
}

.btn-small {
	padding: 0.6em 1.8em;
	border: 1px solid rgb(224, 16, 132);
	border-radius: 15px;
	color: rgb(224, 16, 132);
}

.btn-small:hover,
.btn-small:focus,
.btn-small:active,
.btn-small:active:focus {
	background-color: #333333;
	border: 1px solid #333333;
	color: rgb(224, 16, 132) !important;
}

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

.btn-primary {
	background-color: rgb(224, 16, 132);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 12px;
	letter-spacing: 0.167em;
}

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

.btn-secondary {
	background-color: #333333;
	color: #FAFAFA;
	font-family: Lato;
	font-size: 12px;
	letter-spacing: 0.167em;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:active:focus {
	background-color: #D7BEE5;
	color: #FAFAFA;
}

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

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

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

/* Subscribe Flow
------------------------------*/
.sf-header {
	padding: 50px 0 15px;
}

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

	margin-top: 20px;
	margin-bottom: 20px;
}

.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-top: .9375rem;
	padding-bottom: .9375rem;
}

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

	text-align: center;
	border: 1px solid #E1E1E1;
	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%;
}

/* Orders List
------------------------------*/
.orders-list {
	width: 100%;
	margin: 25px 0;
}
.orders-list h1 {
	text-align: center;
	color: #333333;
}
.orders-list .panel {
	width: 100%;
}

/* Checkout
------------------------------*/
.checkout_content {
	margin-top: 0;
	overflow: auto;
	padding: 50px 0 60px;
}

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

.checkout_content #checkout_button {
	background-color: rgb(224, 16, 132);
	border: none;
	border-radius: 25px;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 12px;
	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: #333333;
	color: #FFFFFF;
}

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

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

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

/* Account
------------------------------*/
.account-header {
	margin: 50px 0 25px 0;
	padding: 0 15px;
}

.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 50px 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(224, 16, 132);
}

.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(224, 16, 132);
	color: rgb(224, 16, 132);
	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: #333333;
	border-color: #333333;
	text-decoration: none;
}

/* Media Queries
------------------------------*/
@media (max-width: 767px) {
	/* 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_61bd8659-0d25-47d5-8a02-48aa8b3dbd96/component.css
 */
#cmp_61bd8659-0d25-47d5-8a02-48aa8b3dbd96 img {
	max-width: 100%;
}

/*
 * components/about/cmp_6c2cc900-647a-441b-9090-93c36f805db5/component.css
 */
#cmp_6c2cc900-647a-441b-9090-93c36f805db5 {
	background-color: rgb(255, 255, 255);
}

#cmp_6c2cc900-647a-441b-9090-93c36f805db5 h1 {
	color: #333333;
	font-family: Satisfy;
	font-size: 40px;
}

#cmp_6c2cc900-647a-441b-9090-93c36f805db5 h2 {
	color: #333333;
	font-family: Playfair Display;
	font-size: 22px;
}

#cmp_6c2cc900-647a-441b-9090-93c36f805db5 h3 {
	color: #333333;
	font-family: Playfair Display;
	font-size: 15px;
}

#cmp_6c2cc900-647a-441b-9090-93c36f805db5 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_6c2cc900-647a-441b-9090-93c36f805db5 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_6c2cc900-647a-441b-9090-93c36f805db5 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_6c2cc900-647a-441b-9090-93c36f805db5  {
	padding-top: 60px;
}
#cmp_6c2cc900-647a-441b-9090-93c36f805db5 h1 {
	margin-bottom: 15px;
}
/*
 * components/about/cmp_efd8c733-998e-4dd3-8479-949a6f715765/component.css
 */
#cmp_efd8c733-998e-4dd3-8479-949a6f715765 {
	background-color: rgb(255, 255, 255);
}

#cmp_efd8c733-998e-4dd3-8479-949a6f715765 h1 {
	color: #333333;
	font-family: Satisfy;
	font-size: 40px;
}

#cmp_efd8c733-998e-4dd3-8479-949a6f715765 h2 {
	color: #333333;
	font-family: Playfair Display;
	font-size: 22px;
}

#cmp_efd8c733-998e-4dd3-8479-949a6f715765 h3 {
	color: #333333;
	font-family: Playfair Display;
	font-size: 15px;
}

#cmp_efd8c733-998e-4dd3-8479-949a6f715765 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_efd8c733-998e-4dd3-8479-949a6f715765 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_efd8c733-998e-4dd3-8479-949a6f715765 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_efd8c733-998e-4dd3-8479-949a6f715765 .btn {
	background-color: rgb(224, 16, 132);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 12px;
}

#cmp_efd8c733-998e-4dd3-8479-949a6f715765 .btn:hover {
	background-color: #D7BEE5;
	color: #FFFFFF;
}

#cmp_efd8c733-998e-4dd3-8479-949a6f715765 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_efd8c733-998e-4dd3-8479-949a6f715765 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_efd8c733-998e-4dd3-8479-949a6f715765  {
	padding-bottom: 60px;
}
#cmp_efd8c733-998e-4dd3-8479-949a6f715765 h3 {
	margin-bottom: 40px;
}
/*
 * components/checkout/cmp_26d3f221-f2c2-4b7d-a184-08e580d7aef5/component.css
 */
#cmp_26d3f221-f2c2-4b7d-a184-08e580d7aef5 .checkout_content {
  overflow: auto;
}

#cmp_26d3f221-f2c2-4b7d-a184-08e580d7aef5 .checkout_content section {
  border-color: #F5F5F5;
}

#cmp_26d3f221-f2c2-4b7d-a184-08e580d7aef5 .cart_listing table {
  border-color: #F5F5F5;
}

/*
 * components/customer/account/cmp_0755aea2-0452-4089-8e8f-4a6595f34ac0/component.css
 */

/*
 * components/customer/edit/cmp_fda98a87-db3a-42bf-adef-59ca82b5d97d/component.css
 */

/*
 * components/customer/forgot_password/cmp_279a9f38-4c66-4d2c-8d5c-43972a2a564f/component.css
 */
#cmp_279a9f38-4c66-4d2c-8d5c-43972a2a564f {
	background-color: rgb(255, 255, 255);
}

#cmp_279a9f38-4c66-4d2c-8d5c-43972a2a564f h1 {
	color: #333333;
	font-family: Satisfy;
	font-size: 40px;
}

#cmp_279a9f38-4c66-4d2c-8d5c-43972a2a564f h2 {
	color: #333333;
	font-family: Playfair Display;
	font-size: 22px;
}

#cmp_279a9f38-4c66-4d2c-8d5c-43972a2a564f h3 {
	color: #333333;
	font-family: Playfair Display;
	font-size: 15px;
}

#cmp_279a9f38-4c66-4d2c-8d5c-43972a2a564f p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_279a9f38-4c66-4d2c-8d5c-43972a2a564f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_279a9f38-4c66-4d2c-8d5c-43972a2a564f ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_279a9f38-4c66-4d2c-8d5c-43972a2a564f  {
	padding: 50px 0;
}
#cmp_279a9f38-4c66-4d2c-8d5c-43972a2a564f h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/forgot_password/cmp_36a6d55c-fa5a-445d-af94-5958e6b4eeda/component.css
 */

#cmp_36a6d55c-fa5a-445d-af94-5958e6b4eeda  {
	padding-bottom: 120px;
}
/*
 * components/customer/login/cmp_6aaeffd0-a19e-48a3-8f7a-103ab7f1c1fd/component.css
 */

#cmp_6aaeffd0-a19e-48a3-8f7a-103ab7f1c1fd  {
	padding-bottom: 120px;
}
/*
 * components/customer/login/cmp_e1d42003-34f8-46c8-b542-6da6de992a79/component.css
 */
#cmp_e1d42003-34f8-46c8-b542-6da6de992a79 {
	background-color: rgb(255, 255, 255);
}

#cmp_e1d42003-34f8-46c8-b542-6da6de992a79 h1 {
	color: #333333;
	font-family: Satisfy;
	font-size: 40px;
}

#cmp_e1d42003-34f8-46c8-b542-6da6de992a79 h2 {
	color: #333333;
	font-family: Playfair Display;
	font-size: 22px;
}

#cmp_e1d42003-34f8-46c8-b542-6da6de992a79 h3 {
	color: #333333;
	font-family: Playfair Display;
	font-size: 15px;
}

#cmp_e1d42003-34f8-46c8-b542-6da6de992a79 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_e1d42003-34f8-46c8-b542-6da6de992a79 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_e1d42003-34f8-46c8-b542-6da6de992a79 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_e1d42003-34f8-46c8-b542-6da6de992a79  {
	padding: 50px 0;
}
#cmp_e1d42003-34f8-46c8-b542-6da6de992a79 h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/order/cmp_56b3b5d8-0222-4ca0-9b4b-ce3e5bab7fed/component.css
 */

/*
 * components/customer/orders/cmp_43cba0ad-7497-4019-9e96-91d0b8edbc88/component.css
 */

/*
 * components/customer/password_reset/cmp_3726faf7-8919-4369-bd71-81d997c1d0a9/component.css
 */

#cmp_3726faf7-8919-4369-bd71-81d997c1d0a9  {
	padding-bottom: 120px;
}
/*
 * components/customer/password_reset/cmp_9cf64ca7-e490-4597-a3f1-59e18d58eff7/component.css
 */
#cmp_9cf64ca7-e490-4597-a3f1-59e18d58eff7 {
	background-color: rgb(255, 255, 255);
}

#cmp_9cf64ca7-e490-4597-a3f1-59e18d58eff7 h1 {
	color: #333333;
	font-family: Satisfy;
	font-size: 40px;
}

#cmp_9cf64ca7-e490-4597-a3f1-59e18d58eff7 h2 {
	color: #333333;
	font-family: Playfair Display;
	font-size: 22px;
}

#cmp_9cf64ca7-e490-4597-a3f1-59e18d58eff7 h3 {
	color: #333333;
	font-family: Playfair Display;
	font-size: 15px;
}

#cmp_9cf64ca7-e490-4597-a3f1-59e18d58eff7 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_9cf64ca7-e490-4597-a3f1-59e18d58eff7 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_9cf64ca7-e490-4597-a3f1-59e18d58eff7 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_9cf64ca7-e490-4597-a3f1-59e18d58eff7  {
	padding: 50px 0;
}
#cmp_9cf64ca7-e490-4597-a3f1-59e18d58eff7 h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/thank_you/cmp_5a085061-d7f4-46a3-8936-1488222158ba/component.css
 */

/*
 * components/global/cmp_e2360124-9842-4b77-b32a-624f76e24526/component.css
 */
#cmp_e2360124-9842-4b77-b32a-624f76e24526.navbar {
	background-color: rgb(254, 245, 250);
	border-radius: 0;
	border-top: 4px solid rgb(224, 16, 132);
	padding: 0;

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

#cmp_e2360124-9842-4b77-b32a-624f76e24526.navbar a:hover,
#cmp_e2360124-9842-4b77-b32a-624f76e24526.navbar a:focus,
#cmp_e2360124-9842-4b77-b32a-624f76e24526.navbar a:active {
	color: #333333;
}

#cmp_e2360124-9842-4b77-b32a-624f76e24526 .navbar-brand {
	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;

	max-width: 100%;
	color: #333333;
	font-family: Josefin Sans;
	font-size: 28px;
	margin: 0;
	padding: 15px;
	text-align: center;
}

#cmp_e2360124-9842-4b77-b32a-624f76e24526 .navbar-brand img {
	max-width: 100%;
}

#cmp_e2360124-9842-4b77-b32a-624f76e24526.navbar .navbar-toggler {
	background-color: rgb(224, 16, 132);
	border-radius: 0;
	color: #FFFFFF;
	font-size: 12px;
	letter-spacing: 0.167em;
	padding: 15px;
	text-transform: uppercase;
}

#cmp_e2360124-9842-4b77-b32a-624f76e24526.navbar .navbar-toggler:hover,
#cmp_e2360124-9842-4b77-b32a-624f76e24526.navbar .navbar-toggler:focus,
#cmp_e2360124-9842-4b77-b32a-624f76e24526.navbar .navbar-toggler:active {
	background-color: #333333;
	color: #FFFFFF;
}

#cmp_e2360124-9842-4b77-b32a-624f76e24526 .navbar-nav {
	align-items: center;
	display: flex;
	flex-direction: column;
	margin: 0;
	padding-top: 15px;
	padding-bottom: 15px;
}

#cmp_e2360124-9842-4b77-b32a-624f76e24526 .navbar-nav li {
	padding-top: 10px;
	padding-bottom: 10px;
}

#cmp_e2360124-9842-4b77-b32a-624f76e24526 .navbar-nav .nav-link {
	color: rgb(224, 16, 132);
	font-family: Lato;
	font-size: 12px;;
	letter-spacing: 1px;
	padding: 8px 18px;
	text-align: center;
	text-transform: uppercase;
}

@media (min-width: 768px) {
	#cmp_e2360124-9842-4b77-b32a-624f76e24526.navbar {
		-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;

		padding: 15px;
		padding-bottom: 0;
	}
	#cmp_e2360124-9842-4b77-b32a-624f76e24526 .navbar-brand {
		padding: 0;
		padding-bottom: 15px;
	}
	#cmp_e2360124-9842-4b77-b32a-624f76e24526 .navbar-toggleable-sm {
		-webkit-flex-shrink: 0;
		-moz-flex-shrink: 0;
		-ms-flex-shrink: 0;
		flex-shrink: 0;

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

	}
	#cmp_e2360124-9842-4b77-b32a-624f76e24526 .navbar-nav {
		-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;

		padding: 0;
		padding-bottom: 15px;
	}
	#cmp_e2360124-9842-4b77-b32a-624f76e24526 .navbar-nav li {
		padding: 0;
	}
}

/*
 * components/global/cmp_e7500021-c8ba-415b-90f9-6d9e9fbc8b6e/component.css
 */
#cmp_e7500021-c8ba-415b-90f9-6d9e9fbc8b6e.footer {
	background-color: rgb(250, 250, 250);
	font-family: Lato;
	color: #B0B0B0;
	padding-top: 10px;
	padding-bottom: 10px;

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

#cmp_e7500021-c8ba-415b-90f9-6d9e9fbc8b6e .footer-social {
	padding-top: 15px;
	padding-bottom: 15px;
	text-align: center;
}

#cmp_e7500021-c8ba-415b-90f9-6d9e9fbc8b6e .footer-social a {
	display: inline-block;
	padding-left: 5px;
	padding-right: 5px;
}

#cmp_e7500021-c8ba-415b-90f9-6d9e9fbc8b6e .footer-social svg path {
	fill: rgb(224, 16, 132);
}

#cmp_e7500021-c8ba-415b-90f9-6d9e9fbc8b6e .footer-social a:hover svg path,
#cmp_e7500021-c8ba-415b-90f9-6d9e9fbc8b6e .footer-social a:focus svg path,
#cmp_e7500021-c8ba-415b-90f9-6d9e9fbc8b6e .footer-social a:active svg path {
	fill: #333333;
}

#cmp_e7500021-c8ba-415b-90f9-6d9e9fbc8b6e.footer .toggler-container {
	padding-top: 15px;
	padding-bottom: 15px;
	text-align: center;
}

#cmp_e7500021-c8ba-415b-90f9-6d9e9fbc8b6e.footer .navbar-toggler {
	color: rgb(224, 16, 132);
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

#cmp_e7500021-c8ba-415b-90f9-6d9e9fbc8b6e .footer-cc {
	border-top: 1px solid #e1e1e1;
	letter-spacing: 1px;
	text-align: center;
}

#cmp_e7500021-c8ba-415b-90f9-6d9e9fbc8b6e .footer-cc img {
	padding-top: 15px;
	padding-bottom: 15px;
}

#cmp_e7500021-c8ba-415b-90f9-6d9e9fbc8b6e .footer-cc p,
#cmp_e7500021-c8ba-415b-90f9-6d9e9fbc8b6e .footer-tributes p {
	padding-top: 15px;
	padding-bottom: 15px;
	margin: 0;
}

#cmp_e7500021-c8ba-415b-90f9-6d9e9fbc8b6e .footer-tributes p a {
	color: #B0B0B0;
	padding: 0;
}

#cmp_e7500021-c8ba-415b-90f9-6d9e9fbc8b6e .footer-tributes p a:hover,
#cmp_e7500021-c8ba-415b-90f9-6d9e9fbc8b6e .footer-tributes p a:focus,
#cmp_e7500021-c8ba-415b-90f9-6d9e9fbc8b6e .footer-tributes p a:active {
	color: #B0B0B0;
	text-decoration: none;
}

#cmp_e7500021-c8ba-415b-90f9-6d9e9fbc8b6e .footer-directory {
	text-align: center;
}

#cmp_e7500021-c8ba-415b-90f9-6d9e9fbc8b6e .footer-list {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

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

#cmp_e7500021-c8ba-415b-90f9-6d9e9fbc8b6e .footer-list .footer-item {
	-webkit-flex: 0 0 50%;
	-moz-flex: 0 0 50%;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;

	padding: 8px 18px;
	position: relative;
}

#cmp_e7500021-c8ba-415b-90f9-6d9e9fbc8b6e .footer-list .footer-link {
	color: rgb(224, 16, 132);
	font-family: Lato;
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

#cmp_e7500021-c8ba-415b-90f9-6d9e9fbc8b6e .footer-list .footer-link:hover,
#cmp_e7500021-c8ba-415b-90f9-6d9e9fbc8b6e .footer-list .footer-link:focus,
#cmp_e7500021-c8ba-415b-90f9-6d9e9fbc8b6e .footer-list .footer-link:active {
	color: #333333;
	text-decoration: none;
}

@media (max-width: 767px) {
	#cmp_e7500021-c8ba-415b-90f9-6d9e9fbc8b6e .col-sm-12,
	#cmp_e7500021-c8ba-415b-90f9-6d9e9fbc8b6e .col-xs-12 {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 auto;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
	}
}

@media (min-width: 768px) {
	#cmp_e7500021-c8ba-415b-90f9-6d9e9fbc8b6e.footer {
		-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;

		padding-top: 25px;
		padding-bottom: 25px;
	}
	#cmp_e7500021-c8ba-415b-90f9-6d9e9fbc8b6e .footer-directory {
		-webkit-order: 1;
		-moz-order: 1;
		-ms-order: 1;
		order: 1;

		text-align: left;
	}
	#cmp_e7500021-c8ba-415b-90f9-6d9e9fbc8b6e .footer-social {
		-webkit-order: 2;
		-moz-order: 2;
		-ms-order: 2;
		order: 2;

		padding-top: 0;
		padding-bottom: 0;
		text-align: right;
	}
	#cmp_e7500021-c8ba-415b-90f9-6d9e9fbc8b6e .footer-cc {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}
	#cmp_e7500021-c8ba-415b-90f9-6d9e9fbc8b6e .footer-cc p {
		display: inline-block;
	}
}

@media (min-width: 992px) {
	#cmp_e7500021-c8ba-415b-90f9-6d9e9fbc8b6e .footer-cc {
		-webkit-order: 2;
		-moz-order: 2;
		-ms-order: 2;
		order: 2;

		border-top: none;
	}
	#cmp_e7500021-c8ba-415b-90f9-6d9e9fbc8b6e .footer-cc p {
		display: block;
	}
	#cmp_e7500021-c8ba-415b-90f9-6d9e9fbc8b6e .footer-social {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}
}

/*
 * components/global/cmp_fa2e8a04-745a-418f-ac7a-79f0aa9db80f/component.css
 */
#cmp_fa2e8a04-745a-418f-ac7a-79f0aa9db80f {
	background-color: rgb(255, 255, 255);
}

#cmp_fa2e8a04-745a-418f-ac7a-79f0aa9db80f h1 {
	color: rgb(74, 74, 74);
	font-family: Satisfy;
	font-size: 40px;
}

#cmp_fa2e8a04-745a-418f-ac7a-79f0aa9db80f h2 {
	color: rgb(74, 74, 74);
	font-family: Montserrat;
	font-size: 22px;
}

#cmp_fa2e8a04-745a-418f-ac7a-79f0aa9db80f h3 {
	color: rgb(74, 74, 74);
	font-family: Montserrat;
	font-size: 15px;
}

#cmp_fa2e8a04-745a-418f-ac7a-79f0aa9db80f p {
	color: rgb(74, 74, 74);
	font-family: Montserrat;
	font-size: 13px;
}

#cmp_fa2e8a04-745a-418f-ac7a-79f0aa9db80f .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_fa2e8a04-745a-418f-ac7a-79f0aa9db80f .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_fa2e8a04-745a-418f-ac7a-79f0aa9db80f .btn {
	background-color: rgb(224, 16, 132);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 12px;
}

#cmp_fa2e8a04-745a-418f-ac7a-79f0aa9db80f .btn:hover {
	background-color: #D7BEE5;
	color: #FFFFFF;
}

#cmp_fa2e8a04-745a-418f-ac7a-79f0aa9db80f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Montserrat;
	font-size: 13px;
}

#cmp_fa2e8a04-745a-418f-ac7a-79f0aa9db80f ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Montserrat;
	font-size: 13px;
}

/*
 * components/index/cmp_94ede6d7-340c-4109-8f64-df61a1fe1518/component.css
 */
#cmp_94ede6d7-340c-4109-8f64-df61a1fe1518 {
	padding: 0;
}

#cmp_94ede6d7-340c-4109-8f64-df61a1fe1518 .hero-content {
	background-color: rgb(64, 5, 116);
	padding: 20px;
}

#cmp_94ede6d7-340c-4109-8f64-df61a1fe1518 .hero-content h1 {
	color: rgb(249, 215, 233);
	font-family: Bangers;
	font-size: 45px;
}

#cmp_94ede6d7-340c-4109-8f64-df61a1fe1518 .hero-content h2 {
	color: rgb(249, 215, 233);
	font-family: Playfair Display;
	font-size: 22px;
}

#cmp_94ede6d7-340c-4109-8f64-df61a1fe1518 .hero-content h3 {
	color: rgb(249, 215, 233);
	font-family: Playfair Display;
	font-size: 15px;
}

#cmp_94ede6d7-340c-4109-8f64-df61a1fe1518 .hero-content p {
	color: rgb(249, 215, 233);
	font-family: Lato;
	font-size: 13px;
}

#cmp_94ede6d7-340c-4109-8f64-df61a1fe1518 .hero-content .btn {
	background-color: rgb(249, 39, 152);
	color: #FFFFFF;
	font-family: Montserrat;
	font-size: 12px;
}

#cmp_94ede6d7-340c-4109-8f64-df61a1fe1518 .hero-content .btn:hover {
	background-color: #D7BEE5;
	color: rgb(249, 215, 233);
}

#cmp_94ede6d7-340c-4109-8f64-df61a1fe1518 h1 {
	margin-top: 20px;
	margin-bottom: 10px;
}
#cmp_94ede6d7-340c-4109-8f64-df61a1fe1518 p {
	margin-bottom: 25px;
}
/*
 * components/index/cmp_9b5c3deb-3167-4972-a11d-196b10fb232c/component.css
 */
#cmp_9b5c3deb-3167-4972-a11d-196b10fb232c {
	background-color: rgb(249, 215, 233);
}

#cmp_9b5c3deb-3167-4972-a11d-196b10fb232c h1 {
	color: #333333;
	font-family: Satisfy;
	font-size: 40px;
}

#cmp_9b5c3deb-3167-4972-a11d-196b10fb232c h2 {
	color: #333333;
	font-family: Playfair Display;
	font-size: 22px;
}

#cmp_9b5c3deb-3167-4972-a11d-196b10fb232c h3 {
	color: #333333;
	font-family: Playfair Display;
	font-size: 15px;
}

#cmp_9b5c3deb-3167-4972-a11d-196b10fb232c p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 13px;
}

#cmp_9b5c3deb-3167-4972-a11d-196b10fb232c .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_9b5c3deb-3167-4972-a11d-196b10fb232c .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_9b5c3deb-3167-4972-a11d-196b10fb232c .btn {
	background-color: rgb(224, 16, 132);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 12px;
}

#cmp_9b5c3deb-3167-4972-a11d-196b10fb232c .btn:hover {
	background-color: #D7BEE5;
	color: #FFFFFF;
}

#cmp_9b5c3deb-3167-4972-a11d-196b10fb232c ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 13px;
}

#cmp_9b5c3deb-3167-4972-a11d-196b10fb232c ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 13px;
}

#cmp_9b5c3deb-3167-4972-a11d-196b10fb232c  {
	padding: 60px 0;
}
#cmp_9b5c3deb-3167-4972-a11d-196b10fb232c h1 {
	margin-bottom: 15px;
}
#cmp_9b5c3deb-3167-4972-a11d-196b10fb232c p {
	margin-bottom: 20px;
}
/*
 * components/shop/listing/cmp_0c60a3a1-a2ef-4f1f-9057-1be9867816b8/component.css
 */
#cmp_0c60a3a1-a2ef-4f1f-9057-1be9867816b8 .shop-listing-item {
	color: #B0B0B0;
}

#cmp_0c60a3a1-a2ef-4f1f-9057-1be9867816b8 .shop-listing-item:hover,
#cmp_0c60a3a1-a2ef-4f1f-9057-1be9867816b8 .shop-listing-item:focus {
	text-decoration: none;
}

#cmp_0c60a3a1-a2ef-4f1f-9057-1be9867816b8 .shop-listing-item__image {
	background-size: cover;
	background-position: center center;
}

#cmp_0c60a3a1-a2ef-4f1f-9057-1be9867816b8 .shop-listing-item__name {
	margin: 10px 0;
}

#cmp_0c60a3a1-a2ef-4f1f-9057-1be9867816b8 .shop-listing-item__price {
	margin: 10px 0 30px;
}

#cmp_0c60a3a1-a2ef-4f1f-9057-1be9867816b8 .product_paging {
	-webkit-display: flex;
	-ms-display: flex;
	display: flex;
	justify-content: center;

	margin: 20px 0;
}

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

#cmp_0c60a3a1-a2ef-4f1f-9057-1be9867816b8 .product_page.active a,
#cmp_0c60a3a1-a2ef-4f1f-9057-1be9867816b8 .product_page a:hover,
#cmp_0c60a3a1-a2ef-4f1f-9057-1be9867816b8 .product_page a:focus,
#cmp_0c60a3a1-a2ef-4f1f-9057-1be9867816b8 .next_page a:hover,
#cmp_0c60a3a1-a2ef-4f1f-9057-1be9867816b8 .next_page a:focus,
#cmp_0c60a3a1-a2ef-4f1f-9057-1be9867816b8 .prev_page a:hover,
#cmp_0c60a3a1-a2ef-4f1f-9057-1be9867816b8 .prev_page a:focus {
	text-decoration: none;
	background-color: #F9F9F9;
}

#cmp_0c60a3a1-a2ef-4f1f-9057-1be9867816b8 .product_page.active a {
	color: black;
}

/*
 * components/shop/listing/cmp_41dd4d96-cb0d-4067-a158-b2be73c25464/component.css
 */
#cmp_41dd4d96-cb0d-4067-a158-b2be73c25464 {
	justify-content: center;
}

#cmp_41dd4d96-cb0d-4067-a158-b2be73c25464 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

#cmp_41dd4d96-cb0d-4067-a158-b2be73c25464  {
	border-bottom: 1px solid #E1E1E1;
	margin-bottom: 35px;
	padding-bottom: 35px;
}
/*
 * components/shop/listing/cmp_88e958ea-c6a9-4a21-84fd-1838f92ff478/component.css
 */
#cmp_88e958ea-c6a9-4a21-84fd-1838f92ff478 {
	background-color: rgb(255, 255, 255);
}

#cmp_88e958ea-c6a9-4a21-84fd-1838f92ff478 h1 {
	color: #333333;
	font-family: Satisfy;
	font-size: 40px;
}

#cmp_88e958ea-c6a9-4a21-84fd-1838f92ff478 h2 {
	color: #333333;
	font-family: Playfair Display;
	font-size: 22px;
}

#cmp_88e958ea-c6a9-4a21-84fd-1838f92ff478 h3 {
	color: #333333;
	font-family: Playfair Display;
	font-size: 15px;
}

#cmp_88e958ea-c6a9-4a21-84fd-1838f92ff478 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_88e958ea-c6a9-4a21-84fd-1838f92ff478 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_88e958ea-c6a9-4a21-84fd-1838f92ff478 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_88e958ea-c6a9-4a21-84fd-1838f92ff478  {
	padding: 50px 0 15px;
}
#cmp_88e958ea-c6a9-4a21-84fd-1838f92ff478 h1 {
	margin-bottom: 15px;
}
/*
 * components/shop/listing/cmp_e4b866fb-bb25-4167-8847-b4660425016f/component.css
 */
#cmp_e4b866fb-bb25-4167-8847-b4660425016f {
	justify-content: center;
}

#cmp_e4b866fb-bb25-4167-8847-b4660425016f ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/product/cmp_80f1e348-3dc6-4011-a293-d5cce4739686/component.css
 */
#cmp_80f1e348-3dc6-4011-a293-d5cce4739686.shop-product-header {
	padding: 50px 0 15px;
}

/*
 * components/shop/product/cmp_c4a9ea4f-0638-4f6a-84ae-c7803dbd7857/component.css
 */
#cmp_c4a9ea4f-0638-4f6a-84ae-c7803dbd7857 .shop-product__name {
	margin-bottom: 10px;
}

#cmp_c4a9ea4f-0638-4f6a-84ae-c7803dbd7857 .shop-product__price {
	margin-bottom: 20px;
}

#cmp_c4a9ea4f-0638-4f6a-84ae-c7803dbd7857 .shop-product select {
	width: auto;
}

#cmp_c4a9ea4f-0638-4f6a-84ae-c7803dbd7857 .shop-product__add-to-cart {
	margin-bottom: 20px;
}

#cmp_c4a9ea4f-0638-4f6a-84ae-c7803dbd7857 .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin-bottom: 40px;
}

#cmp_c4a9ea4f-0638-4f6a-84ae-c7803dbd7857 .shop-product__review-share-desktop .col-xs-6 {
	padding-top: 10px;
}

#cmp_c4a9ea4f-0638-4f6a-84ae-c7803dbd7857 .shop-product__review-share-desktop .col-xs-6 + .col-xs-6 {
	border-left: 1px solid #E1E1E1;
}

#cmp_c4a9ea4f-0638-4f6a-84ae-c7803dbd7857 .shop-product__social-share-buttons {
	-webkit-display: flex;
	-ms-display: flex;
	display: flex;
	justify-content: start;
}

#cmp_c4a9ea4f-0638-4f6a-84ae-c7803dbd7857 .shop-product__social-share-buttons > * {
	margin-right: 8px;
}

/*
 * components/sold_out/cmp_b822f793-ad3a-440d-a549-9ecc9d0068eb/component.css
 */
#cmp_b822f793-ad3a-440d-a549-9ecc9d0068eb img {
	max-width: 100%;
}

#cmp_b822f793-ad3a-440d-a549-9ecc9d0068eb  {
	padding-top: 50px;
}
/*
 * components/sold_out/cmp_e71fe279-53ca-4073-943a-7571e201d34d/component.css
 */
#cmp_e71fe279-53ca-4073-943a-7571e201d34d {
	background-color: rgb(255, 255, 255);
}

#cmp_e71fe279-53ca-4073-943a-7571e201d34d h1 {
	color: #333333;
	font-family: Satisfy;
	font-size: 40px;
}

#cmp_e71fe279-53ca-4073-943a-7571e201d34d h2 {
	color: #333333;
	font-family: Playfair Display;
	font-size: 22px;
}

#cmp_e71fe279-53ca-4073-943a-7571e201d34d h3 {
	color: #333333;
	font-family: Playfair Display;
	font-size: 15px;
}

#cmp_e71fe279-53ca-4073-943a-7571e201d34d p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_e71fe279-53ca-4073-943a-7571e201d34d .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_e71fe279-53ca-4073-943a-7571e201d34d .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_e71fe279-53ca-4073-943a-7571e201d34d .btn {
	background-color: rgb(224, 16, 132);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 12px;
}

#cmp_e71fe279-53ca-4073-943a-7571e201d34d .btn:hover {
	background-color: #D7BEE5;
	color: #FFFFFF;
}

#cmp_e71fe279-53ca-4073-943a-7571e201d34d ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_e71fe279-53ca-4073-943a-7571e201d34d ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_e71fe279-53ca-4073-943a-7571e201d34d  {
	padding-bottom: 50px;
}
/*
 * components/subscribe/cmp_66e7ab53-c4a0-43ed-80b5-7de4acbb92d9/component.css
 */
#cmp_66e7ab53-c4a0-43ed-80b5-7de4acbb92d9 {
	background-color: rgb(255, 255, 255);
}

#cmp_66e7ab53-c4a0-43ed-80b5-7de4acbb92d9 h1 {
	color: rgb(74, 74, 74);
	font-family: Satisfy;
	font-size: 40px;
}

#cmp_66e7ab53-c4a0-43ed-80b5-7de4acbb92d9 h2 {
	color: rgb(74, 74, 74);
	font-family: Playfair Display;
	font-size: 22px;
}

#cmp_66e7ab53-c4a0-43ed-80b5-7de4acbb92d9 h3 {
	color: rgb(74, 74, 74);
	font-family: Playfair Display;
	font-size: 15px;
}

#cmp_66e7ab53-c4a0-43ed-80b5-7de4acbb92d9 p {
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 13px;
}

#cmp_66e7ab53-c4a0-43ed-80b5-7de4acbb92d9 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 13px;
}

#cmp_66e7ab53-c4a0-43ed-80b5-7de4acbb92d9 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/subscribe/cmp_841344a5-e0bb-4eb7-9d28-ca9dab476efd/component.css
 */

/*
 * 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: 12px;

	color: #FFFFFF;
	background-color: rgb(224, 16, 132);
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-btn-cart:hover {
	color: #FFFFFF;
	background-color: #333333;
}

#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: 12px;

	color: #FFFFFF;
	background-color: rgb(224, 16, 132);
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-continue-btn:hover {
	color: #FFFFFF;
	background-color: #333333;
}

@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_b2118eac-07e7-4f8c-8087-166292f17e37/component.css
 */
#cmp_b2118eac-07e7-4f8c-8087-166292f17e37.survey h2 {
	margin-bottom: 1em;
}

#cmp_b2118eac-07e7-4f8c-8087-166292f17e37.survey .radio input[type="radio"],
#cmp_b2118eac-07e7-4f8c-8087-166292f17e37.survey .checkbox input[type="checkbox"] {
	margin-right: 0.5em;
}

/*
 * components/subscribe_flow/survey_step/cmp_fbe1e23d-d719-4d35-909d-22c30b02b5c5/component.css
 */
#cmp_fbe1e23d-d719-4d35-909d-22c30b02b5c5 {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/terms_step/cmp_36c8e3c1-cff6-4ef7-a34f-764aada36a68/component.css
 */

/*
 * components/subscribe_flow/terms_step/cmp_d8d16f57-7f44-4425-9d07-a82007ba9ec8/component.css
 */
#cmp_d8d16f57-7f44-4425-9d07-a82007ba9ec8 {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/variant_step/cmp_d1c2bde0-0e9f-4f89-8c60-2dddc735959f/component.css
 */

/*
 * components/subscribe_flow/variant_step/cmp_da633f92-0359-4038-89b8-95a7dd35ed2b/component.css
 */
#cmp_da633f92-0359-4038-89b8-95a7dd35ed2b {
	padding: 50px 0 15px;
}

/*
 * components/view-cart/cmp_08c16535-2e39-4f07-b97d-4fdbb7a307fc/component.css
 */
#cmp_08c16535-2e39-4f07-b97d-4fdbb7a307fc {
	padding: 15px 15px 100px 15px;
}

#cmp_08c16535-2e39-4f07-b97d-4fdbb7a307fc .cart-thead {
	border-bottom: 1px solid #E1E1E1;
	padding: 10px 0;
}

#cmp_08c16535-2e39-4f07-b97d-4fdbb7a307fc .cart-thead h3 {
	text-transform: uppercase;
}

#cmp_08c16535-2e39-4f07-b97d-4fdbb7a307fc .cart-item {
	border: 1px solid #E1E1E1;
	padding: 25px 0;
	position: relative;
}

#cmp_08c16535-2e39-4f07-b97d-4fdbb7a307fc .product-main {
	margin-bottom: 15px;
}

#cmp_08c16535-2e39-4f07-b97d-4fdbb7a307fc .product-label p {
	margin: 0;
}

#cmp_08c16535-2e39-4f07-b97d-4fdbb7a307fc .product-label .info {
	color: #333333;
	text-align: right;
	text-transform: uppercase;
}

#cmp_08c16535-2e39-4f07-b97d-4fdbb7a307fc .product-label .meta {
	color: #333333;
	font-size: 15px;
}

#cmp_08c16535-2e39-4f07-b97d-4fdbb7a307fc .product-rem-btn {
	position: absolute;
	right: 1%;
	top: 1%;
}

#cmp_08c16535-2e39-4f07-b97d-4fdbb7a307fc figure {
	margin: 0 0 15px 0;
}

#cmp_08c16535-2e39-4f07-b97d-4fdbb7a307fc .cart-subtotal {
	margin: 50px 0 0 0;
}

#cmp_08c16535-2e39-4f07-b97d-4fdbb7a307fc .cart-subtotal h1 {
	margin: 0 0 15px 0;
}

#cmp_08c16535-2e39-4f07-b97d-4fdbb7a307fc .cart-subtotal h3 {
	margin: 0 0 25px 0;
	text-transform: uppercase;
}

#cmp_08c16535-2e39-4f07-b97d-4fdbb7a307fc .cart-subtotal p {
	margin: 0 0 25px 0;
}

@media (min-width: 768px) {
	#cmp_08c16535-2e39-4f07-b97d-4fdbb7a307fc .cart-item {
		border-width: 0 0 1px 0;
	}
	#cmp_08c16535-2e39-4f07-b97d-4fdbb7a307fc .product-rem-btn {
		top: 40%;
	}
	#cmp_08c16535-2e39-4f07-b97d-4fdbb7a307fc figure {
		margin: 0;
	}
}

/*
 * components/view-cart/cmp_f672eca8-b2c1-443d-9d35-dd2de9db30a4/component.css
 */
#cmp_f672eca8-b2c1-443d-9d35-dd2de9db30a4 {
	background-color: rgb(255, 255, 255);
}

#cmp_f672eca8-b2c1-443d-9d35-dd2de9db30a4 h1 {
	color: #333333;
	font-family: Satisfy;
	font-size: 40px;
}

#cmp_f672eca8-b2c1-443d-9d35-dd2de9db30a4 h2 {
	color: #333333;
	font-family: Playfair Display;
	font-size: 22px;
}

#cmp_f672eca8-b2c1-443d-9d35-dd2de9db30a4 h3 {
	color: #333333;
	font-family: Playfair Display;
	font-size: 15px;
}

#cmp_f672eca8-b2c1-443d-9d35-dd2de9db30a4 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_f672eca8-b2c1-443d-9d35-dd2de9db30a4 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_f672eca8-b2c1-443d-9d35-dd2de9db30a4 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_f672eca8-b2c1-443d-9d35-dd2de9db30a4  {
	padding: 50px 0;;
}
#cmp_f672eca8-b2c1-443d-9d35-dd2de9db30a4 h1 {
	margin-bottom: 15px;
}
/*
 * components/whats_inside/cmp_6abeb40c-6828-41ba-92b4-57a995cb4712/component.css
 */
#cmp_6abeb40c-6828-41ba-92b4-57a995cb4712 {
	background-color: rgb(255, 255, 255);
}

#cmp_6abeb40c-6828-41ba-92b4-57a995cb4712 h1 {
	color: #333333;
	font-family: Satisfy;
	font-size: 40px;
}

#cmp_6abeb40c-6828-41ba-92b4-57a995cb4712 h2 {
	color: #333333;
	font-family: Playfair Display;
	font-size: 22px;
}

#cmp_6abeb40c-6828-41ba-92b4-57a995cb4712 h3 {
	color: #333333;
	font-family: Playfair Display;
	font-size: 15px;
}

#cmp_6abeb40c-6828-41ba-92b4-57a995cb4712 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_6abeb40c-6828-41ba-92b4-57a995cb4712 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_6abeb40c-6828-41ba-92b4-57a995cb4712 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_6abeb40c-6828-41ba-92b4-57a995cb4712 .btn {
	background-color: rgb(224, 16, 132);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 12px;
}

#cmp_6abeb40c-6828-41ba-92b4-57a995cb4712 .btn:hover {
	background-color: #D7BEE5;
	color: #FFFFFF;
}

#cmp_6abeb40c-6828-41ba-92b4-57a995cb4712 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_6abeb40c-6828-41ba-92b4-57a995cb4712 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_6abeb40c-6828-41ba-92b4-57a995cb4712  {
	padding: 60px 0;
}
#cmp_6abeb40c-6828-41ba-92b4-57a995cb4712 h3 {
	margin-bottom: 35px;
}
#cmp_6abeb40c-6828-41ba-92b4-57a995cb4712 p {
	margin-bottom: 35px;
}
/*
 * components/whats_inside/cmp_75da845f-3199-4ef6-ab42-dfdbb53c3347/component.css
 */
#cmp_75da845f-3199-4ef6-ab42-dfdbb53c3347 {
	background-color: rgb(255, 255, 255);
}

#cmp_75da845f-3199-4ef6-ab42-dfdbb53c3347 h1 {
	color: #333333;
	font-family: Satisfy;
	font-size: 40px;
}

#cmp_75da845f-3199-4ef6-ab42-dfdbb53c3347 h2 {
	color: #333333;
	font-family: Playfair Display;
	font-size: 22px;
}

#cmp_75da845f-3199-4ef6-ab42-dfdbb53c3347 h3 {
	color: #333333;
	font-family: Playfair Display;
	font-size: 15px;
}

#cmp_75da845f-3199-4ef6-ab42-dfdbb53c3347 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_75da845f-3199-4ef6-ab42-dfdbb53c3347 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_75da845f-3199-4ef6-ab42-dfdbb53c3347 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_75da845f-3199-4ef6-ab42-dfdbb53c3347  {
	padding-top: 60px;
}
#cmp_75da845f-3199-4ef6-ab42-dfdbb53c3347 h1 {
	margin-bottom: 15px;
}
/*
 * components/whats_inside/cmp_81f04e9c-749a-43de-ba37-1c4c778da855/component.css
 */
#cmp_81f04e9c-749a-43de-ba37-1c4c778da855 {
	padding: 0;
}

#cmp_81f04e9c-749a-43de-ba37-1c4c778da855 .hero-content {
	background-color: #FAFAFA;
	padding: 20px;
}

#cmp_81f04e9c-749a-43de-ba37-1c4c778da855 .hero-content h1 {
	color: rgb(224, 16, 132);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_81f04e9c-749a-43de-ba37-1c4c778da855 .hero-content h2 {
	color: #FFFFFF;
	font-family: Playfair Display;
	font-size: 22px;
}

#cmp_81f04e9c-749a-43de-ba37-1c4c778da855 .hero-content h3 {
	color: #FFFFFF;
	font-family: Playfair Display;
	font-size: 15px;
}

#cmp_81f04e9c-749a-43de-ba37-1c4c778da855 .hero-content p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_81f04e9c-749a-43de-ba37-1c4c778da855 .hero-content .btn {
	background-color: rgb(224, 16, 132);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 12px;
}

#cmp_81f04e9c-749a-43de-ba37-1c4c778da855 .hero-content .btn:hover {
	background-color: #D7BEE5;
	color: #FFFFFF;
}

#cmp_81f04e9c-749a-43de-ba37-1c4c778da855 h3 {
	margin-bottom: 35px;
}
#cmp_81f04e9c-749a-43de-ba37-1c4c778da855 p {
	margin-bottom: 35px;
}
/*
 * components/whats_inside/cmp_89e4a489-57af-425d-966a-f7603043e3f9/component.css
 */
#cmp_89e4a489-57af-425d-966a-f7603043e3f9 {
	padding: 0;
}

#cmp_89e4a489-57af-425d-966a-f7603043e3f9 .hero-content {
	background-color: #FAFAFA;
	padding: 20px;
}

#cmp_89e4a489-57af-425d-966a-f7603043e3f9 .hero-content h1 {
	color: rgb(224, 16, 132);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_89e4a489-57af-425d-966a-f7603043e3f9 .hero-content h2 {
	color: #FFFFFF;
	font-family: Playfair Display;
	font-size: 22px;
}

#cmp_89e4a489-57af-425d-966a-f7603043e3f9 .hero-content h3 {
	color: #FFFFFF;
	font-family: Playfair Display;
	font-size: 15px;
}

#cmp_89e4a489-57af-425d-966a-f7603043e3f9 .hero-content p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_89e4a489-57af-425d-966a-f7603043e3f9 .hero-content .btn {
	background-color: #333333;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 12px;
}

#cmp_89e4a489-57af-425d-966a-f7603043e3f9 .hero-content .btn:hover {
	background-color: #D7BEE5;
	color: #FFFFFF;
}

#cmp_89e4a489-57af-425d-966a-f7603043e3f9 h3 {
	margin-bottom: 35px;
}
#cmp_89e4a489-57af-425d-966a-f7603043e3f9 p {
	margin-bottom: 35px;
}