/*
 * css/style.css
 */
/* Globals
------------------------------*/
body {
	background-color: #FFFFFF;
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
	line-height: 1.5em;
}

.container-fluid {
	max-width: 90%;
  
}

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

h2 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 32px;
	margin: 0 0 25px 0;
}

h3 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 24px;
	margin: 0 0 25px 0;
}

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

a,
.btn-link {
	color: rgb(126, 31, 57);
}

a:hover,
a:focus,
a:active,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
	color: rgb(53, 81, 150);
}

/* 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 {
	padding: 0;
	position: relative;

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

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

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

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

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

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

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

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

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

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

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

.nav-pills .nav-link.active,
.nav-pills .nav-link.active:focus,
.nav-pills .nav-link.active:hover,
.nav-pills .nav-link.active:active,
.nav-pills .nav-item.open .nav-link,
.nav-pills .nav-item.open .nav-link:focus,
.nav-pills .nav-item.open .nav-link:hover,
.nav-pills .nav-item.open .nav-link:active {
	background-color: rgb(126, 31, 57);
}

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

.panel-body {
	padding: 15px;
}

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

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

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

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

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

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

.btn-small {
	border: 2px solid rgb(126, 31, 57);
	color: rgb(126, 31, 57);
	padding: 0.6em 1.8em;
}

.btn-small:hover,
.btn-small:focus,
.btn-small:active,
.btn-small:active:focus {
	background-color: rgb(126, 31, 57);
	border-color: rgb(126, 31, 57);
}

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

.btn-primary {
	background-color: rgb(126, 31, 57);
	color: #FFFFFF;
	font-family: Jost;
	font-size: 14px;
	letter-spacing: 0.167em;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus {
	background-color: rgb(53, 81, 150);
	color: #FFFFFF;
}

.btn-secondary {
	background-color: rgb(241, 143, 80);
	color: #FFFFFF;
	font-family: Jost;
	font-size: 14px;
	letter-spacing: 0.167em;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:active:focus {
	background-color: rgb(126, 31, 57);
	color: #FFFFFF;
}

.btn-empty {
	background-color: transparent;
	border: 1px solid rgb(126, 31, 57);
	color: rgb(126, 31, 57);
}

.btn-empty:hover,
.btn-empty:focus,
.btn-empty:active,
.btn-empty:active:focus {
	background-color: rgb(241, 143, 80);
}

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

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

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

	padding: .9375rem 0;
}

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

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

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

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

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

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

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

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

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

/* Orders List
------------------------------*/
.orders-list {
	width: 100%;
	margin: 25px 0;
}
.orders-list h1 {
	text-align: center;
	color: rgb(126, 31, 57);
}
.orders-list .panel {
	width: 100%;
}

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

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

.checkout_content #checkout_button {
	background-color: rgb(126, 31, 57);
	border: none;
	color: #FFFFFF;
	font-family: Jost;
	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(53, 81, 150);
	color: #FFFFFF;
}

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

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

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

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

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

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

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

.address-container {
	width: 100%;
}

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

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

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

.address-container {
	width: 100%;
}

.errors {
	margin: 25px 0;
}

.cratejoy-loading-icon {
	color: rgb(126, 31, 57);
}

.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(126, 31, 57);
	color: rgb(126, 31, 57);
	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(53, 81, 150);
	border-color: rgb(53, 81, 150);
	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;
	}
}
@media (min-width: 768px)
.col-md-4 {
  
    flex: 25%;
}

#cmp_f5c00c15-23c0-4d29-accc-45ce5df99c47 .navbar-brand {
    padding: 0;
    margin-bottom: -50px;
}

ul.navbar-nav {
    float: right!important;
    
}

#cmp_472c7ed1-2a0a-4a8d-863e-1e65c74ed9db {
    display: none;
}

.container-fluid {
    max-width: 100%;
}
.container-fluid {
    padding-right: 0px;
    padding-left: 0px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 768px)
.col-lg-6.col-md-8.col-sm-12.col-xs-12.hero-content {
padding-top: 350px;
}
@media (min-width: 768px) .hero-row.row {
background: linear-gradient(rgba(255,255,255,0) 0%, rgba(255,255,255,1) 85%);
}


/*
 * components/checkout/cmp_14058d0a-7b20-46c0-8f07-b0a527bdd2ca/component.css
 */
#cmp_14058d0a-7b20-46c0-8f07-b0a527bdd2ca .checkout_content {
	overflow: auto;
}

#cmp_14058d0a-7b20-46c0-8f07-b0a527bdd2ca .checkout_content section {
	border-color: #F5F5F5;
}

#cmp_14058d0a-7b20-46c0-8f07-b0a527bdd2ca .cart_listing table {
	border-color: #F5F5F5;
}

/*
 * components/customer/account/cmp_260eb096-9805-4b6e-a836-3b5bfca9e5c5/component.css
 */

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

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

#cmp_38656598-0d25-494e-835c-658ec0b9b146 .customer-product-rating {
	color: rgb(126, 31, 57);
	float: right;
}

/*
 * components/customer/edit/cmp_36d349e7-5226-42bf-8dc1-50624643e2de/component.css
 */

/*
 * components/customer/forgot_password/cmp_541a6c99-eca2-425f-86bf-a912435f1683/component.css
 */
#cmp_541a6c99-eca2-425f-86bf-a912435f1683 {
	padding: 0 0 120px 0;
}
/*
 * components/customer/forgot_password/cmp_cf772a33-19b9-4046-ad79-6cfc2dbf24ff/component.css
 */
#cmp_cf772a33-19b9-4046-ad79-6cfc2dbf24ff {
	background-color: #FFFFFF;
}

#cmp_cf772a33-19b9-4046-ad79-6cfc2dbf24ff h1 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 48px;
}

#cmp_cf772a33-19b9-4046-ad79-6cfc2dbf24ff h2 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 32px;
}

#cmp_cf772a33-19b9-4046-ad79-6cfc2dbf24ff h3 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 24px;
}

#cmp_cf772a33-19b9-4046-ad79-6cfc2dbf24ff p {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

@media (min-width: 768px) {
	#cmp_cf772a33-19b9-4046-ad79-6cfc2dbf24ff .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_cf772a33-19b9-4046-ad79-6cfc2dbf24ff ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

#cmp_cf772a33-19b9-4046-ad79-6cfc2dbf24ff ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

/*
 * components/customer/login/cmp_d7b6440a-680c-453a-8444-8c37b324abf0/component.css
 */
#cmp_d7b6440a-680c-453a-8444-8c37b324abf0 {
	padding: 0 0 120px 0;
}
/*
 * components/customer/login/cmp_f62544fa-0691-4bf8-b16b-44c82ae7e092/component.css
 */
#cmp_f62544fa-0691-4bf8-b16b-44c82ae7e092 {
	background-color: #FFFFFF;
}

#cmp_f62544fa-0691-4bf8-b16b-44c82ae7e092 h1 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 48px;
}

#cmp_f62544fa-0691-4bf8-b16b-44c82ae7e092 h2 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 32px;
}

#cmp_f62544fa-0691-4bf8-b16b-44c82ae7e092 h3 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 24px;
}

#cmp_f62544fa-0691-4bf8-b16b-44c82ae7e092 p {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

@media (min-width: 768px) {
	#cmp_f62544fa-0691-4bf8-b16b-44c82ae7e092 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_f62544fa-0691-4bf8-b16b-44c82ae7e092 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

#cmp_f62544fa-0691-4bf8-b16b-44c82ae7e092 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

#cmp_f62544fa-0691-4bf8-b16b-44c82ae7e092 {margin-bottom: 20px;
  background-image: url(https://s3.amazonaws.com/cratejoy_vendor_images/spicemadam/bold_mobile-copy-0/images/as_seen_in_bg.png);}

#cmp_f62544fa-0691-4bf8-b16b-44c82ae7e092 h1 {
    color: rgb(255, 255, 255);
    font-family: Cinzel;
    font-size: 48px;
}
#cmp_f62544fa-0691-4bf8-b16b-44c82ae7e092 p {
    color: rgb(255, 255, 255);
    font-family: Raleway;
    font-size: 16px;
}
/*
 * components/customer/order/cmp_6ad3d39a-3f8a-4040-b48c-fdcc56efc446/component.css
 */

/*
 * components/customer/orders/cmp_ae9a8277-d703-48e0-a1fc-d677c3be20f0/component.css
 */

/*
 * components/customer/password_reset/cmp_3c68d239-5313-4846-b4e9-1e0c795b97a9/component.css
 */
#cmp_3c68d239-5313-4846-b4e9-1e0c795b97a9 {
	padding: 0 0 120px 0;
}
/*
 * components/customer/password_reset/cmp_d91046f8-ae3e-427e-a3c9-950823ae3b0d/component.css
 */
#cmp_d91046f8-ae3e-427e-a3c9-950823ae3b0d {
	background-color: #FFFFFF;
}

#cmp_d91046f8-ae3e-427e-a3c9-950823ae3b0d h1 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 48px;
}

#cmp_d91046f8-ae3e-427e-a3c9-950823ae3b0d h2 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 32px;
}

#cmp_d91046f8-ae3e-427e-a3c9-950823ae3b0d h3 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 24px;
}

#cmp_d91046f8-ae3e-427e-a3c9-950823ae3b0d p {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

@media (min-width: 768px) {
	#cmp_d91046f8-ae3e-427e-a3c9-950823ae3b0d .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_d91046f8-ae3e-427e-a3c9-950823ae3b0d ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

#cmp_d91046f8-ae3e-427e-a3c9-950823ae3b0d ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

/*
 * components/customer/thank_you/cmp_211e367e-aa9c-4440-9b93-b5fd672b46a6/component.css
 */

/*
 * components/faq/cmp_2d8bce7f-c97f-4602-bef1-a7965b4bf3e7/component.css
 */
#cmp_2d8bce7f-c97f-4602-bef1-a7965b4bf3e7 {
  background-color: #FFFFFF;
}

#cmp_2d8bce7f-c97f-4602-bef1-a7965b4bf3e7 h1 {
  color: rgb(255, 255, 255);
  font-family: Jost;
  font-size: 45px;
  margin-bottom: 0;
}

#cmp_2d8bce7f-c97f-4602-bef1-a7965b4bf3e7 h2 {
  color: rgb(126, 31, 57);
  font-family: Jost;
  font-size: 32px;
}

#cmp_2d8bce7f-c97f-4602-bef1-a7965b4bf3e7 h3 {
  color: rgb(126, 31, 57);
  font-family: Jost;
  font-size: 24px;
}

#cmp_2d8bce7f-c97f-4602-bef1-a7965b4bf3e7 p {
  color: rgb(126, 31, 57);
  font-family: Jost;
  font-size: 16px;
}

@media (min-width: 768px) {
  #cmp_2d8bce7f-c97f-4602-bef1-a7965b4bf3e7 .content {
    margin: 0 auto;
    width: 80%;
  }
}

#cmp_2d8bce7f-c97f-4602-bef1-a7965b4bf3e7 ol {
  list-style: decimal;
  list-style-position: insidone for the;
  color: rgb(126, 31, 57);
  font-family: Jost;
  font-size: 16px;
}

#cmp_2d8bce7f-c97f-4602-bef1-a7965b4bf3e7 ul {
  list-style: disc;
  list-style-position: inside;
  color: rgb(126, 31, 57);
  font-family: Jost;
  font-size: 16px;
}

#cmp_2d8bce7f-c97f-4602-bef1-a7965b4bf3e7 .content { margin: 0 auto;
  width: 100%!important;
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url(https://s3.amazonaws.com/cratejoy_vendor_images/spicemadam/bold_mobile-copy-0/images/as_seen_in_bg.png);
}

#cmp_2d8bce7f-c97f-4602-bef1-a7965b4bf3e7 {
  padding-top: 0px;
}


/*
 * components/faq/cmp_cecd57d9-8076-4563-b6d4-b1304fa15eff/component.css
 */
#cmp_cecd57d9-8076-4563-b6d4-b1304fa15eff {
	background-color: #FFFFFF;
}

#cmp_cecd57d9-8076-4563-b6d4-b1304fa15eff h1 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 48px;
}

#cmp_cecd57d9-8076-4563-b6d4-b1304fa15eff h2 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 32px;
}

#cmp_cecd57d9-8076-4563-b6d4-b1304fa15eff h3 {
	color: #000000;
	font-family: Jost;
	font-size: 24px;
}

#cmp_cecd57d9-8076-4563-b6d4-b1304fa15eff p {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

@media (min-width: 768px) {
	#cmp_cecd57d9-8076-4563-b6d4-b1304fa15eff .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_cecd57d9-8076-4563-b6d4-b1304fa15eff ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

#cmp_cecd57d9-8076-4563-b6d4-b1304fa15eff ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

#cmp_cecd57d9-8076-4563-b6d4-b1304fa15eff h2 {
	margin: 0 0 40px 0;
}
#cmp_cecd57d9-8076-4563-b6d4-b1304fa15eff p {
	border-bottom: 1px solid #EEEEEE;
	padding: 0 0 25px 0;
}

/*
 * components/giving_back/cmp_003f5931-772c-4c05-9316-08e5b43612e3/component.css
 */
#cmp_003f5931-772c-4c05-9316-08e5b43612e3 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_003f5931-772c-4c05-9316-08e5b43612e3 .content {
	padding: 0;
}

#cmp_003f5931-772c-4c05-9316-08e5b43612e3 .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_003f5931-772c-4c05-9316-08e5b43612e3 .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/giving_back/cmp_7c0740e8-5fa5-4155-836f-7ae183254e49/component.css
 */
#cmp_7c0740e8-5fa5-4155-836f-7ae183254e49 {
	background-color: #FFFFFF;
  padding-top: 50px;
}

#cmp_7c0740e8-5fa5-4155-836f-7ae183254e49 h1 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 48px;
}

#cmp_7c0740e8-5fa5-4155-836f-7ae183254e49 h2 {
	color: rgb(53, 81, 150);
	font-family: Jost;
	font-size: 48px;
}

#cmp_7c0740e8-5fa5-4155-836f-7ae183254e49 h3 {
	color: rgb(176, 176, 176);
	font-family: Jost;
	font-size: 24px;
}

#cmp_7c0740e8-5fa5-4155-836f-7ae183254e49 p {
	color: rgb(176, 176, 176);
	font-family: Jost;
	font-size: 20px;
}

@media (min-width: 768px) {
	#cmp_7c0740e8-5fa5-4155-836f-7ae183254e49 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_7c0740e8-5fa5-4155-836f-7ae183254e49 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(176, 176, 176);
	font-family: Jost;
	font-size: 20px;
}

#cmp_7c0740e8-5fa5-4155-836f-7ae183254e49 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(176, 176, 176);
	font-family: Jost;
	font-size: 20px;
}

/*
 * components/giving_back/cmp_91bc45a1-e218-4e65-8be3-d81533d0f226/component.css
 */
#cmp_91bc45a1-e218-4e65-8be3-d81533d0f226 {
	background-color: #FFFFFF;
  padding: 0 0 60px;
}

#cmp_91bc45a1-e218-4e65-8be3-d81533d0f226 h1 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_91bc45a1-e218-4e65-8be3-d81533d0f226 h2 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_91bc45a1-e218-4e65-8be3-d81533d0f226 h3 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_91bc45a1-e218-4e65-8be3-d81533d0f226 p {
	color: ;
	font-family: ;
	font-size: ;
}


#cmp_91bc45a1-e218-4e65-8be3-d81533d0f226 .btn {
	background-color: rgb(53, 81, 150);
	color: #FFFFFF;
	font-family: Jost;
	font-size: 14px;
}

#cmp_91bc45a1-e218-4e65-8be3-d81533d0f226 .btn:hover {
	background-color: rgb(126, 31, 57);
	color: #FFFFFF;
}

#cmp_91bc45a1-e218-4e65-8be3-d81533d0f226 .component-rich-text-with-button__content-row,
#cmp_91bc45a1-e218-4e65-8be3-d81533d0f226 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_91bc45a1-e218-4e65-8be3-d81533d0f226 .component-rich-text-with-button__content-row,
	#cmp_91bc45a1-e218-4e65-8be3-d81533d0f226 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_91bc45a1-e218-4e65-8be3-d81533d0f226 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_91bc45a1-e218-4e65-8be3-d81533d0f226 ul {
	list-style: disc;
	list-style-position: inside;
	color: ;
	font-family: ;
	font-size: ;
}

/*
 * components/giving_back/cmp_f89dc9c6-f3d9-4230-b908-24581004d42c/component.css
 */
#cmp_f89dc9c6-f3d9-4230-b908-24581004d42c {
	background-color: #FFFFFF;
  padding-bottom: 60px;
}

#cmp_f89dc9c6-f3d9-4230-b908-24581004d42c h1 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 48px;
}

#cmp_f89dc9c6-f3d9-4230-b908-24581004d42c h2 {
	color: rgb(53, 81, 150);
	font-family: Jost;
	font-size: 30px;
}

#cmp_f89dc9c6-f3d9-4230-b908-24581004d42c h3 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 24px;
}

#cmp_f89dc9c6-f3d9-4230-b908-24581004d42c p {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

@media (min-width: 768px) {
	#cmp_f89dc9c6-f3d9-4230-b908-24581004d42c .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_f89dc9c6-f3d9-4230-b908-24581004d42c ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

#cmp_f89dc9c6-f3d9-4230-b908-24581004d42c ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

/*
 * components/global/cmp_9d99a5ee-565e-448b-9c8b-dd8113afa578/component.css
 */
#cmp_9d99a5ee-565e-448b-9c8b-dd8113afa578 {
	background-color: #FFFFFF;
}

#cmp_9d99a5ee-565e-448b-9c8b-dd8113afa578 h1 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 48px;
}

#cmp_9d99a5ee-565e-448b-9c8b-dd8113afa578 h2 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 32px;
}

#cmp_9d99a5ee-565e-448b-9c8b-dd8113afa578 h3 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 24px;
}

#cmp_9d99a5ee-565e-448b-9c8b-dd8113afa578 p {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}


#cmp_9d99a5ee-565e-448b-9c8b-dd8113afa578 .btn {
	background-color: rgb(126, 31, 57);
	color: #FFFFFF;
	font-family: Jost;
	font-size: 14px;
}

#cmp_9d99a5ee-565e-448b-9c8b-dd8113afa578 .btn:hover {
	background-color: rgb(53, 81, 150);
	color: #FFFFFF;
}

#cmp_9d99a5ee-565e-448b-9c8b-dd8113afa578 .component-rich-text-with-button__content-row,
#cmp_9d99a5ee-565e-448b-9c8b-dd8113afa578 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_9d99a5ee-565e-448b-9c8b-dd8113afa578 .component-rich-text-with-button__content-row,
	#cmp_9d99a5ee-565e-448b-9c8b-dd8113afa578 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_9d99a5ee-565e-448b-9c8b-dd8113afa578 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

#cmp_9d99a5ee-565e-448b-9c8b-dd8113afa578 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

#cmp_9d99a5ee-565e-448b-9c8b-dd8113afa578  {
	padding-top: 0;
}
/*
 * components/global/cmp_e97dc0a9-fd7a-440b-9bd1-f2c2f9afda32/component.css
 */
#cmp_e97dc0a9-fd7a-440b-9bd1-f2c2f9afda32.footer {
  background-color: rgb(255, 255, 255);
  color: rgb(126, 31, 57);
  font-family: Jost;
  padding: 15px 0;

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

#cmp_e97dc0a9-fd7a-440b-9bd1-f2c2f9afda32.footer p {
  color: rgb(126, 31, 57);
}

#cmp_e97dc0a9-fd7a-440b-9bd1-f2c2f9afda32 .footer-subscribe {
  padding: 15px 0;
}

#cmp_e97dc0a9-fd7a-440b-9bd1-f2c2f9afda32 .footer-subscribe .btn {
  border: 1px solid #FFFFFF;
}

#cmp_e97dc0a9-fd7a-440b-9bd1-f2c2f9afda32 .footer-social {
  padding: 15px 0;
}

#cmp_e97dc0a9-fd7a-440b-9bd1-f2c2f9afda32 .footer-social a {
  display: inline-block;
  padding: 0 5px;
}

#cmp_e97dc0a9-fd7a-440b-9bd1-f2c2f9afda32 .footer-social svg path {
  fill: rgb(241, 143, 80);
}

#cmp_e97dc0a9-fd7a-440b-9bd1-f2c2f9afda32 .footer-social a:hover svg path,
#cmp_e97dc0a9-fd7a-440b-9bd1-f2c2f9afda32 .footer-social a:focus svg path,
#cmp_e97dc0a9-fd7a-440b-9bd1-f2c2f9afda32 .footer-social a:active svg path {
  fill: rgb(53, 81, 150);
}

#cmp_e97dc0a9-fd7a-440b-9bd1-f2c2f9afda32 .footer-contact {
  padding: 15px 0;

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

#cmp_e97dc0a9-fd7a-440b-9bd1-f2c2f9afda32 .footer-contact p {
  margin: 0 0 0.5em 0;
}

@media (min-width: 768px) {
  #cmp_e97dc0a9-fd7a-440b-9bd1-f2c2f9afda32.footer {
    padding: 20px 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;
  }
}

#cmp_e97dc0a9-fd7a-440b-9bd1-f2c2f9afda32 {
  border-top: 1px solid #7e1f39;

}
.container-fluid {
  font-size: 12px;
}

#cmp_e97dc0a9-fd7a-440b-9bd1-f2c2f9afda32 h3 {
  margin-bottom: 15px; 
}

#mc_embed_signup .button {
  background-color: rgb(126, 31, 57);
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.167em;
  border: 0;
  border-radius: 0;
  padding: 1em 3em;
  margin: 0;
  line-height: 1.5;
  height: 49px;
}

#mc_embed_signup .button:hover {
  background-color: rgb(26, 64, 135)
}
/*
 * components/global/cmp_f5c00c15-23c0-4d29-accc-45ce5df99c47/component.css
 */
#cmp_f5c00c15-23c0-4d29-accc-45ce5df99c47 {
	border-bottom: 4px solid rgb(255, 255, 255);
	padding: 0;
}

#cmp_f5c00c15-23c0-4d29-accc-45ce5df99c47 .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_f5c00c15-23c0-4d29-accc-45ce5df99c47 .navbar a:hover,
#cmp_f5c00c15-23c0-4d29-accc-45ce5df99c47 .navbar a:focus,
#cmp_f5c00c15-23c0-4d29-accc-45ce5df99c47 .navbar a:active {
	color: rgb(126, 31, 57);
}

#cmp_f5c00c15-23c0-4d29-accc-45ce5df99c47 .navbar-brand {
	color: #000000;
	font-family: Jost;
	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_f5c00c15-23c0-4d29-accc-45ce5df99c47 .navbar-brand img {
	max-width: 100%;
}

#cmp_f5c00c15-23c0-4d29-accc-45ce5df99c47 .navbar .navbar-toggler {
	background-color: rgb(126, 31, 57);
	border-radius: 0;
	color: #FFFFFF;
	font-size: 14px;
	letter-spacing: 0.071em;
	padding: 15px;
	text-transform: uppercase;
  font-weight: 700;
}

#cmp_f5c00c15-23c0-4d29-accc-45ce5df99c47 .navbar .navbar-toggler:hover,
#cmp_f5c00c15-23c0-4d29-accc-45ce5df99c47 .navbar .navbar-toggler:focus,
#cmp_f5c00c15-23c0-4d29-accc-45ce5df99c47 .navbar .navbar-toggler:active {
	background-color: rgb(53, 81, 150);
	color: #FFFFFF;
}

#cmp_f5c00c15-23c0-4d29-accc-45ce5df99c47 .navbar-nav {
	background-color: rgb(126, 31, 57);
	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_f5c00c15-23c0-4d29-accc-45ce5df99c47 .navbar-nav li {
	padding-top: 10px;
	padding-bottom: 10px;
}

#cmp_f5c00c15-23c0-4d29-accc-45ce5df99c47 .navbar-nav .nav-link {
	color: #FFFFFF;
	font-family: Jost;
	font-size: 14px;;
	letter-spacing: 0.071em;
	padding: 15px;
	text-align: center;
	text-transform: uppercase;
}

@media (max-width: 767px) {
	#cmp_f5c00c15-23c0-4d29-accc-45ce5df99c47 {
		border-width: 0;
	}
	#cmp_f5c00c15-23c0-4d29-accc-45ce5df99c47 .dropdown-menu {
		background-color: rgb(126, 31, 57);
	}
}

@media (min-width: 768px) {
	#cmp_f5c00c15-23c0-4d29-accc-45ce5df99c47 .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_f5c00c15-23c0-4d29-accc-45ce5df99c47 .navbar-brand {
		padding: 0;
		padding-bottom: 15px;
	}
	#cmp_f5c00c15-23c0-4d29-accc-45ce5df99c47 .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_f5c00c15-23c0-4d29-accc-45ce5df99c47 .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_f5c00c15-23c0-4d29-accc-45ce5df99c47 .navbar-nav li {
		padding: 0;
	}
	#cmp_f5c00c15-23c0-4d29-accc-45ce5df99c47 .navbar-nav .nav-link {
		color: rgb(126, 31, 57);
	}
	#cmp_f5c00c15-23c0-4d29-accc-45ce5df99c47 .navbar a:hover,
	#cmp_f5c00c15-23c0-4d29-accc-45ce5df99c47 .navbar a:focus,
	#cmp_f5c00c15-23c0-4d29-accc-45ce5df99c47 .navbar a:active {
		color: rgb(126, 31, 57);
	}
}
@media (min-width: 768px)
.col-md-4 {
  
    flex: 25%;
}
#cmp_f5c00c15-23c0-4d29-accc-45ce5df99c47 .navbar-nav .nav-link {
 
    font-weight: bold;
}
#cmp_f5c00c15-23c0-4d29-accc-45ce5df99c47 {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0;
   
}

#cmp_f5c00c15-23c0-4d29-accc-45ce5df99c47 .navbar .navbar-toggler {
    background-color: rgb(255, 255, 255);
    border-radius: 0;
    color: rgb(126, 31, 57);
    font-size: 14px;
    letter-spacing: 0.071em;
    padding: 15px;
    text-transform: uppercase;
    font-weight: 700;
}
#cmp_f5c00c15-23c0-4d29-accc-45ce5df99c47 .navbar .navbar-toggler:hover, #cmp_f5c00c15-23c0-4d29-accc-45ce5df99c47 .navbar .navbar-toggler:focus, #cmp_f5c00c15-23c0-4d29-accc-45ce5df99c47 .navbar .navbar-toggler:active {
    background-color: rgb(255, 255, 255);
    color: rgb(126, 31, 57);
}
ul.navbar-nav {
    float: inherit!important;
}

/*
 * components/howitworks/cmp_5827e2ca-5ba3-46e6-ba1f-a8feb3b72621/component.css
 */
#cmp_5827e2ca-5ba3-46e6-ba1f-a8feb3b72621 {
	background-color: #FFFFFF;
}

#cmp_5827e2ca-5ba3-46e6-ba1f-a8feb3b72621 h1 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 48px;
}

#cmp_5827e2ca-5ba3-46e6-ba1f-a8feb3b72621 h2 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 32px;
}

#cmp_5827e2ca-5ba3-46e6-ba1f-a8feb3b72621 h3 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 24px;
}

#cmp_5827e2ca-5ba3-46e6-ba1f-a8feb3b72621 p {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

@media (min-width: 768px) {
	#cmp_5827e2ca-5ba3-46e6-ba1f-a8feb3b72621 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_5827e2ca-5ba3-46e6-ba1f-a8feb3b72621 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

#cmp_5827e2ca-5ba3-46e6-ba1f-a8feb3b72621 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

/*
 * components/howitworks/cmp_c7c96217-e9e1-4b07-9f7d-ada09244f9c2/component.css
 */
#cmp_c7c96217-e9e1-4b07-9f7d-ada09244f9c2 {
	background-color: #E8E4E2;
}

#cmp_c7c96217-e9e1-4b07-9f7d-ada09244f9c2 .content-row {
	margin: 0;

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

#cmp_c7c96217-e9e1-4b07-9f7d-ada09244f9c2 .content {
	background-color: rgb(241, 143, 80);
	border: 5px solid rgb(241, 143, 80);
	margin: 15px 0;
	padding: 25px;

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

#cmp_c7c96217-e9e1-4b07-9f7d-ada09244f9c2 .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_c7c96217-e9e1-4b07-9f7d-ada09244f9c2 h1 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 48px;
}

#cmp_c7c96217-e9e1-4b07-9f7d-ada09244f9c2 h2 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 32px;
}

#cmp_c7c96217-e9e1-4b07-9f7d-ada09244f9c2 h3 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 24px;
}

#cmp_c7c96217-e9e1-4b07-9f7d-ada09244f9c2 p {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

@media (min-width: 768px) {
	#cmp_c7c96217-e9e1-4b07-9f7d-ada09244f9c2 .content {
		margin: 15px;
	}
}
/*
 * components/howitworks/cmp_e554429a-6602-4b7d-9943-8006f17df283/component.css
 */
#cmp_e554429a-6602-4b7d-9943-8006f17df283 {
	background-color: #FFFFFF;
	padding: 0;
}

#cmp_e554429a-6602-4b7d-9943-8006f17df283 .content {
	margin: 0 auto;
	padding: 25px;
}

#cmp_e554429a-6602-4b7d-9943-8006f17df283 .content .cta {
	border: 5px solid rgb(126, 31, 57);
	padding: 45px;
}

#cmp_e554429a-6602-4b7d-9943-8006f17df283 h1 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 48px;
}

#cmp_e554429a-6602-4b7d-9943-8006f17df283 h2 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 32px;
}

#cmp_e554429a-6602-4b7d-9943-8006f17df283 h3 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 24px;
}

#cmp_e554429a-6602-4b7d-9943-8006f17df283 p {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

/*
 * components/index/cmp_21b65d14-52d9-4ab8-8ecc-e7101da4c255/component.css
 */
#cmp_21b65d14-52d9-4ab8-8ecc-e7101da4c255 {
	padding: 0;
}

#cmp_21b65d14-52d9-4ab8-8ecc-e7101da4c255 .hero-content {
	background-color: rgb(241, 143, 80);
	padding: 20px;
}

#cmp_21b65d14-52d9-4ab8-8ecc-e7101da4c255 .hero-content h1 {
	color: rgb(126, 31, 57);
	font-family: Cormorant Garamond;
	font-size: 48px;
}

#cmp_21b65d14-52d9-4ab8-8ecc-e7101da4c255 .hero-content h2 {
	color: #FFFFFF;
	font-family: Jost;
	font-size: 30px;
}

#cmp_21b65d14-52d9-4ab8-8ecc-e7101da4c255 .hero-content h3 {
	color: #FFFFFF;
	font-family: Jost;
	font-size: 24px;
}

#cmp_21b65d14-52d9-4ab8-8ecc-e7101da4c255 .hero-content p {
	color: #FFFFFF;
	font-family: Jost;
	font-size: 16px;
}

#cmp_21b65d14-52d9-4ab8-8ecc-e7101da4c255 .hero-content .btn {
	background-color: rgb(126, 31, 57);
	color: #FFFFFF;
	font-family: Jost;
	font-size: 14px;
}

#cmp_21b65d14-52d9-4ab8-8ecc-e7101da4c255 .hero-content .btn:hover {
	background-color: rgb(53, 81, 150);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_21b65d14-52d9-4ab8-8ecc-e7101da4c255 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_21b65d14-52d9-4ab8-8ecc-e7101da4c255 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_21b65d14-52d9-4ab8-8ecc-e7101da4c255 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_21b65d14-52d9-4ab8-8ecc-e7101da4c255 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_21b65d14-52d9-4ab8-8ecc-e7101da4c255 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_21b65d14-52d9-4ab8-8ecc-e7101da4c255 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_21b65d14-52d9-4ab8-8ecc-e7101da4c255 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/index/cmp_6e8175e9-0761-4156-9dc4-b100c0b883ff/component.css
 */
#cmp_6e8175e9-0761-4156-9dc4-b100c0b883ff {
  padding: 0;
}

#cmp_6e8175e9-0761-4156-9dc4-b100c0b883ff .hero-content {
  background-color: rgb(242, 243, 247);
  padding: 20px;
}

#cmp_6e8175e9-0761-4156-9dc4-b100c0b883ff .hero-content h1 {
  color: rgb(126, 31, 57);
  font-family: Cormorant Garamond;
  font-size: 48px;
}

#cmp_6e8175e9-0761-4156-9dc4-b100c0b883ff .hero-content h2 {
  color: rgb(188, 184, 185);
  font-family: Jost;
  font-size: 28px;
}

#cmp_6e8175e9-0761-4156-9dc4-b100c0b883ff .hero-content h3 {
  color: #FFFFFF;
  font-family: Jost;
  font-size: 24px;
}

#cmp_6e8175e9-0761-4156-9dc4-b100c0b883ff .hero-content p {
  color: rgb(126, 31, 57);
  font-family: Barlow Condensed;
  font-size: 20px;
}

#cmp_6e8175e9-0761-4156-9dc4-b100c0b883ff .hero-content .btn {
  background-color: rgb(126, 31, 57);
  color: #FFFFFF;
  font-family: Jost;
  font-size: 14px;
}

#cmp_6e8175e9-0761-4156-9dc4-b100c0b883ff .hero-content .btn:not(:last-child) {
  margin-right: 10px; 
}

#cmp_6e8175e9-0761-4156-9dc4-b100c0b883ff .hero-content .btn:hover {
  background-color: rgb(225, 223, 221);
  color: #FFFFFF;
}


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

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

  #cmp_6e8175e9-0761-4156-9dc4-b100c0b883ff .square-row > .col-md-4 {
    min-height: calc(100vw / 3); /* third the view width */
  }

  #cmp_6e8175e9-0761-4156-9dc4-b100c0b883ff .square-row > .col-md-3 {
    min-height: calc(100vw / 4); /* fourth the view width */
  }
}

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

  #cmp_6e8175e9-0761-4156-9dc4-b100c0b883ff .square-row > .col-md-4 {
    min-height: calc(1140px / 3); /* third the container width */
  }

  #cmp_6e8175e9-0761-4156-9dc4-b100c0b883ff .square-row > .col-md-3 {
    min-height: calc(1140px / 4); /* fourth the container width */
  }
}

@media(max-width: 835px) {
  #cmp_6e8175e9-0761-4156-9dc4-b100c0b883ff .hero-content .btn {
    display: inline-block;
    margin: 0 auto 12px !important;
    width: 192px;
  }
}

@media(max-width: 428px) {
  #cmp_6e8175e9-0761-4156-9dc4-b100c0b883ff .hero-content h1 {
    font-size: 42px;
  }
}

@media(max-width: 414px) {
  #cmp_6e8175e9-0761-4156-9dc4-b100c0b883ff .hero-content h1 {
    font-size: 40px;
  }
}


/*
 * components/index/cmp_7476c6cb-f920-4738-88a9-64b6eeafd657/component.css
 */
#cmp_7476c6cb-f920-4738-88a9-64b6eeafd657 {
	background-color: #FFFFFF;
}

#cmp_7476c6cb-f920-4738-88a9-64b6eeafd657 h1 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 48px;
}

#cmp_7476c6cb-f920-4738-88a9-64b6eeafd657 h2 {
	color: rgb(126, 31, 57);
	font-family: Cormorant Garamond;
	font-size: 32px;
}

#cmp_7476c6cb-f920-4738-88a9-64b6eeafd657 h3 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 24px;
}

#cmp_7476c6cb-f920-4738-88a9-64b6eeafd657 p {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

@media (min-width: 768px) {
	#cmp_7476c6cb-f920-4738-88a9-64b6eeafd657 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_7476c6cb-f920-4738-88a9-64b6eeafd657 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

#cmp_7476c6cb-f920-4738-88a9-64b6eeafd657 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

/*
 * components/index/cmp_b8acce44-19b7-48bf-91bc-7f208d9c721c/component.css
 */
#cmp_b8acce44-19b7-48bf-91bc-7f208d9c721c {
  background-color: rgb(127, 31, 58);
  padding: 50px 0;
}

#cmp_b8acce44-19b7-48bf-91bc-7f208d9c721c h1 {
  color: rgb(126, 31, 57);
  font-family: Jost;
  font-size: 48px;
}

#cmp_b8acce44-19b7-48bf-91bc-7f208d9c721c h2 {
  color: rgb(255, 255, 255);
  font-family: Jost;
  font-size: 42px;
}

#cmp_b8acce44-19b7-48bf-91bc-7f208d9c721c h3 {
  color: rgb(255, 255, 255);
  font-family: Jost;
  font-size: 22px;
}

#cmp_b8acce44-19b7-48bf-91bc-7f208d9c721c p {
  color: rgb(255, 255, 255);
  font-family: Jost;
  font-size: 16px;
}


#cmp_b8acce44-19b7-48bf-91bc-7f208d9c721c .btn {
  background-color: ;
  color: ;
  font-family: ;
  font-size: ;
}

#cmp_b8acce44-19b7-48bf-91bc-7f208d9c721c .btn:hover {
  background-color: ;
  color: ;
}

#cmp_b8acce44-19b7-48bf-91bc-7f208d9c721c .component-rich-text-with-button__content-row,
#cmp_b8acce44-19b7-48bf-91bc-7f208d9c721c .component-rich-text-with-button__button-row {
  padding: 10px 0;
}

@media (min-width: 768px) {
  #cmp_b8acce44-19b7-48bf-91bc-7f208d9c721c .component-rich-text-with-button__content-row,
  #cmp_b8acce44-19b7-48bf-91bc-7f208d9c721c .component-rich-text-with-button__button-row {
    margin: 0 auto;
    width: 80%;
  }
}

#cmp_b8acce44-19b7-48bf-91bc-7f208d9c721c ol {
  list-style: decimal;
  list-style-position: insidone for the;
  color: rgb(255, 255, 255);
  font-family: Jost;
  font-size: 16px;
}

#cmp_b8acce44-19b7-48bf-91bc-7f208d9c721c ul {
  list-style: disc;
  list-style-position: inside;
  color: rgb(255, 255, 255);
  font-family: Jost;
  font-size: 16px;
}

/*
 * components/index/cmp_c44908c7-1e82-4fa7-af11-ce32f685586a/component.css
 */
#cmp_c44908c7-1e82-4fa7-af11-ce32f685586a {
	padding: 0;
}

#cmp_c44908c7-1e82-4fa7-af11-ce32f685586a .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_c44908c7-1e82-4fa7-af11-ce32f685586a .hero-content h1 {
	color: rgb(126, 31, 57);
	font-family: Cormorant Garamond;
	font-size: 38px;
}

#cmp_c44908c7-1e82-4fa7-af11-ce32f685586a .hero-content h2 {
	color: rgb(126, 31, 57);
	font-family: Cormorant Garamond;
	font-size: 23px;
}

#cmp_c44908c7-1e82-4fa7-af11-ce32f685586a .hero-content h3 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 45px;
}

#cmp_c44908c7-1e82-4fa7-af11-ce32f685586a .hero-content p {
	color: #FFFFFF;
	font-family: Jost;
	font-size: 16px;
}

#cmp_c44908c7-1e82-4fa7-af11-ce32f685586a .hero-content .btn {
	background-color: rgb(126, 31, 57);
	color: #FFFFFF;
	font-family: Jost;
	font-size: 14px;
}

#cmp_c44908c7-1e82-4fa7-af11-ce32f685586a .hero-content .btn:hover {
	background-color: rgb(53, 81, 150);
	color: #FFFFFF;
}


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

@media(min-width: 768px) {
	#cmp_c44908c7-1e82-4fa7-af11-ce32f685586a .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_c44908c7-1e82-4fa7-af11-ce32f685586a .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_c44908c7-1e82-4fa7-af11-ce32f685586a .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_c44908c7-1e82-4fa7-af11-ce32f685586a .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_c44908c7-1e82-4fa7-af11-ce32f685586a .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_c44908c7-1e82-4fa7-af11-ce32f685586a .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/index/cmp_eaae99ff-4eb3-4a1e-907a-8fdd90b536aa/component.css
 */
#cmp_eaae99ff-4eb3-4a1e-907a-8fdd90b536aa {
	background-color: #FFFFFF;
}

#cmp_eaae99ff-4eb3-4a1e-907a-8fdd90b536aa h1 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 48px;
}

#cmp_eaae99ff-4eb3-4a1e-907a-8fdd90b536aa h2 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 32px;
}

#cmp_eaae99ff-4eb3-4a1e-907a-8fdd90b536aa h3 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 24px;
}

#cmp_eaae99ff-4eb3-4a1e-907a-8fdd90b536aa p {
	color: rgb(255, 255, 255);
	font-family: Jost;
	font-size: 16px;
}

@media (min-width: 768px) {
	#cmp_eaae99ff-4eb3-4a1e-907a-8fdd90b536aa .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_eaae99ff-4eb3-4a1e-907a-8fdd90b536aa ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(255, 255, 255);
	font-family: Jost;
	font-size: 16px;
}

#cmp_eaae99ff-4eb3-4a1e-907a-8fdd90b536aa ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(255, 255, 255);
	font-family: Jost;
	font-size: 16px;
}

/*
 * components/index/cmp_f785c976-4646-4a47-a410-0cf3f68bab71/component.css
 */
#cmp_f785c976-4646-4a47-a410-0cf3f68bab71 {
	background-color: rgb(126, 31, 57);
}

#cmp_f785c976-4646-4a47-a410-0cf3f68bab71 .content-row {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

#cmp_f785c976-4646-4a47-a410-0cf3f68bab71 .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_f785c976-4646-4a47-a410-0cf3f68bab71 h1 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 48px;
}

#cmp_f785c976-4646-4a47-a410-0cf3f68bab71 h2 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 32px;
}

#cmp_f785c976-4646-4a47-a410-0cf3f68bab71 h3 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 24px;
}

#cmp_f785c976-4646-4a47-a410-0cf3f68bab71 p {
	color: rgb(255, 255, 255);
	font-family: Raleway;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_f785c976-4646-4a47-a410-0cf3f68bab71 .content-row {
		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
	}
}
/*
 * components/index/cmp_fe8621f2-f434-4d06-9c0a-8470b50741f2/component.css
 */
#cmp_fe8621f2-f434-4d06-9c0a-8470b50741f2 {
	background-color: rgb(234, 234, 234);
}

#cmp_fe8621f2-f434-4d06-9c0a-8470b50741f2 h1 {
	color: rgb(126, 31, 57);
	font-family: Barlow Condensed;
	font-size: 48px;
}

#cmp_fe8621f2-f434-4d06-9c0a-8470b50741f2 h2 {
	color: rgb(26, 64, 135);
	font-family: Barlow Condensed;
	font-size: 32px;
}

#cmp_fe8621f2-f434-4d06-9c0a-8470b50741f2 h3 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 24px;
}

#cmp_fe8621f2-f434-4d06-9c0a-8470b50741f2 p {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}


#cmp_fe8621f2-f434-4d06-9c0a-8470b50741f2 .btn {
	background-color: rgb(26, 64, 135);
	color: rgb(255, 255, 255);
	font-family: Jost;
	font-size: 14px;
}

#cmp_fe8621f2-f434-4d06-9c0a-8470b50741f2 .btn:hover {
	background-color: rgb(201, 201, 201);
	color: #FFFFFF;
}

#cmp_fe8621f2-f434-4d06-9c0a-8470b50741f2 .component-rich-text-with-button__content-row,
#cmp_fe8621f2-f434-4d06-9c0a-8470b50741f2 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_fe8621f2-f434-4d06-9c0a-8470b50741f2 .component-rich-text-with-button__content-row,
	#cmp_fe8621f2-f434-4d06-9c0a-8470b50741f2 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_fe8621f2-f434-4d06-9c0a-8470b50741f2 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

#cmp_fe8621f2-f434-4d06-9c0a-8470b50741f2 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

/*
 * components/privacy_policy/cmp_65e27a63-f9bb-4c0d-8acd-c6b42951a493/component.css
 */
#cmp_65e27a63-f9bb-4c0d-8acd-c6b42951a493 {
	background-color: #FFFFFF;
}

#cmp_65e27a63-f9bb-4c0d-8acd-c6b42951a493 h1 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 48px;
}

#cmp_65e27a63-f9bb-4c0d-8acd-c6b42951a493 h2 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 32px;
}

#cmp_65e27a63-f9bb-4c0d-8acd-c6b42951a493 h3 {
	color: rgb(126, 31, 57);
	font-family: Raleway;
	font-size: 24px;
}

#cmp_65e27a63-f9bb-4c0d-8acd-c6b42951a493 p {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

@media (min-width: 768px) {
	#cmp_65e27a63-f9bb-4c0d-8acd-c6b42951a493 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_65e27a63-f9bb-4c0d-8acd-c6b42951a493 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

#cmp_65e27a63-f9bb-4c0d-8acd-c6b42951a493 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}





/*
 * components/privacy_policy/cmp_de2b448c-a169-4389-960b-4b7aeb00a134/component.css
 */
#cmp_de2b448c-a169-4389-960b-4b7aeb00a134 {
	background-color: rgba(255, 255, 255, 0);
}

#cmp_de2b448c-a169-4389-960b-4b7aeb00a134 h1 {
	color: rgb(255, 255, 255);
	font-family: Jost;
	font-size: 48px;
}

#cmp_de2b448c-a169-4389-960b-4b7aeb00a134 h2 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 32px;
}

#cmp_de2b448c-a169-4389-960b-4b7aeb00a134 h3 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 24px;
}

#cmp_de2b448c-a169-4389-960b-4b7aeb00a134 p {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

@media (min-width: 768px) {
	#cmp_de2b448c-a169-4389-960b-4b7aeb00a134 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_de2b448c-a169-4389-960b-4b7aeb00a134 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

#cmp_de2b448c-a169-4389-960b-4b7aeb00a134 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

#cmp_de2b448c-a169-4389-960b-4b7aeb00a134 .content { margin: 0 auto;
    width: 100%!important;
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url(https://s3.amazonaws.com/cratejoy_vendor_images/spicemadam/bold_mobile-copy-0/images/as_seen_in_bg.png);
}

#cmp_de2b448c-a169-4389-960b-4b7aeb00a134 {
    padding-top: 0px;
}


/*
 * components/shop/listing/cmp_0200e9b1-2764-484e-924e-0566b5da8295/component.css
 */
.shop-listing-item {
	color: rgb(126, 31, 57);
}

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

#cmp_0200e9b1-2764-484e-924e-0566b5da8295 {
    padding: 25px;
}
/*
 * components/shop/listing/cmp_17bb8987-29a4-4767-ae9b-412fc2ff54b1/component.css
 */
#cmp_17bb8987-29a4-4767-ae9b-412fc2ff54b1 {
	background-color: #FFFFFF;
}

#cmp_17bb8987-29a4-4767-ae9b-412fc2ff54b1 h1 {
	color: rgb(255, 255, 255);
	font-family: Jost;
	font-size: 48px;
}

#cmp_17bb8987-29a4-4767-ae9b-412fc2ff54b1 h2 {
	color: rgb(255, 255, 255);
	font-family: Jost;
	font-size: 32px;
}

#cmp_17bb8987-29a4-4767-ae9b-412fc2ff54b1 h3 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 24px;
}

#cmp_17bb8987-29a4-4767-ae9b-412fc2ff54b1 p {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

@media (min-width: 768px) {
	#cmp_17bb8987-29a4-4767-ae9b-412fc2ff54b1 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_17bb8987-29a4-4767-ae9b-412fc2ff54b1 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

#cmp_17bb8987-29a4-4767-ae9b-412fc2ff54b1 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

#cmp_17bb8987-29a4-4767-ae9b-412fc2ff54b1  {
	padding-bottom: 20px;
}

#cmp_17bb8987-29a4-4767-ae9b-412fc2ff54b1 {
    background-image: url(https://s3.amazonaws.com/cratejoy_vendor_images/spicemadam/bold_mobile-copy-0/images/as_seen_in_bg.png);
}
/*
 * components/shop/listing/cmp_9305be71-d406-4695-bd5e-ae6820a38358/component.css
 */
#cmp_9305be71-d406-4695-bd5e-ae6820a38358 {
	border-bottom: 1px solid #E1E1E1;
	padding: 20px 0 40px 0;
}

#cmp_9305be71-d406-4695-bd5e-ae6820a38358 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_d4f4c53f-91e2-4843-bf91-c5508ed68077/component.css
 */
#cmp_d4f4c53f-91e2-4843-bf91-c5508ed68077 {
	padding: 20px 0;
}

#cmp_d4f4c53f-91e2-4843-bf91-c5508ed68077 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

#cmp_d4f4c53f-91e2-4843-bf91-c5508ed68077 {
    padding: 25px;
}
/*
 * components/shop/product/cmp_46e4b17b-d64a-40dd-ab04-e4e95c7853f5/component.css
 */
#cmp_46e4b17b-d64a-40dd-ab04-e4e95c7853f5.shop-product-header {
	padding: 60px 0 20px 0;  
}
h1 {
    color: rgb(255, 255, 255);
    font-family: Cinzel;
    font-size: 48px;
    letter-spacing: 1px;
    line-height: 1;
    margin: 0 0 25px 0;
}



#cmp_46e4b17b-d64a-40dd-ab04-e4e95c7853f5 {background-image: url(https://spice.vermillioncreativeagency.com/wp-content/uploads/2019/11/as-seen-in-bg.png);}

#cmp_46e4b17b-d64a-40dd-ab04-e4e95c7853f5 {
   
    margin-bottom: 30px;
}
/*
 * components/shop/product/cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107/component.css
 */
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-avg-rating {
	margin-top: 3px;
	margin-bottom: 10px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-rating-text {
	color: rgb(126, 31, 57);
	margin-left: 10px;
}

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

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-reviews-list-heading {
	border-bottom: 1px solid #eee;
	font-family: Jost;
	font-size: 32px;
	color: rgb(241, 143, 80);
	padding-bottom: 10px;
}

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

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

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

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

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

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-review-title {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 15px;
	letter-spacing: 1px;
}

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

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-rating .cancel-on-png,
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-rating .cancel-off-png,
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-rating .star-on-png,
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-rating .star-off-png,
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-rating .star-half-png {
	color: rgb(126, 31, 57);
}

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

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

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

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

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

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

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

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

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .write-review-title {
	border: 1px solid rgb(126, 31, 57);
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 14px;
	font-weight: 300;
	padding-left: 5px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .write-review-body {
	border: 1px solid rgb(126, 31, 57);
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 14px;
}

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

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

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .customer-product-rating {
	color: rgb(126, 31, 57);
	float: right;
}

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

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

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

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

/*
 * components/shop/product/cmp_8b0611aa-28f1-4c9b-8795-e6a1dcfc8487/component.css
 */
#cmp_8b0611aa-28f1-4c9b-8795-e6a1dcfc8487 .shop-product select {
	width: auto;
}

#cmp_8b0611aa-28f1-4c9b-8795-e6a1dcfc8487 .shop-product__name {
	margin-bottom: 20px;
}

#cmp_8b0611aa-28f1-4c9b-8795-e6a1dcfc8487 .shop-product__price {
	margin-bottom: 20px;
}

#cmp_8b0611aa-28f1-4c9b-8795-e6a1dcfc8487 .shop-product__add-to-cart {
	margin-bottom: 20px;
}

#cmp_8b0611aa-28f1-4c9b-8795-e6a1dcfc8487 .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin-bottom: 40px;
}

#cmp_8b0611aa-28f1-4c9b-8795-e6a1dcfc8487 .shop-product__review-share-desktop .rating,
#cmp_8b0611aa-28f1-4c9b-8795-e6a1dcfc8487 .shop-product__review-share-desktop .sharing {
	padding-top: 10px;
}

#cmp_8b0611aa-28f1-4c9b-8795-e6a1dcfc8487 .shop-product__review-share-desktop h3,
#cmp_8b0611aa-28f1-4c9b-8795-e6a1dcfc8487 .shop-product__review-share-mobile h3 {
	margin: 10px 0;
}
#cmp_8b0611aa-28f1-4c9b-8795-e6a1dcfc8487  {
	padding-top: 0;
}
/*
 * components/sold_out/cmp_17c15f80-f274-432e-ba18-820a96b77352/component.css
 */
#cmp_17c15f80-f274-432e-ba18-820a96b77352 {
	background-color: #FFFFFF;
}

#cmp_17c15f80-f274-432e-ba18-820a96b77352 h1 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 48px;
}

#cmp_17c15f80-f274-432e-ba18-820a96b77352 h2 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 32px;
}

#cmp_17c15f80-f274-432e-ba18-820a96b77352 h3 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 24px;
}

#cmp_17c15f80-f274-432e-ba18-820a96b77352 p {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}


#cmp_17c15f80-f274-432e-ba18-820a96b77352 .btn {
	background-color: rgb(126, 31, 57);
	color: #FFFFFF;
	font-family: Jost;
	font-size: 14px;
}

#cmp_17c15f80-f274-432e-ba18-820a96b77352 .btn:hover {
	background-color: rgb(53, 81, 150);
	color: #FFFFFF;
}

#cmp_17c15f80-f274-432e-ba18-820a96b77352 .component-rich-text-with-button__content-row,
#cmp_17c15f80-f274-432e-ba18-820a96b77352 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_17c15f80-f274-432e-ba18-820a96b77352 .component-rich-text-with-button__content-row,
	#cmp_17c15f80-f274-432e-ba18-820a96b77352 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_17c15f80-f274-432e-ba18-820a96b77352 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

#cmp_17c15f80-f274-432e-ba18-820a96b77352 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

#cmp_17c15f80-f274-432e-ba18-820a96b77352  {
	padding-top: 0;
}
/*
 * components/sold_out/cmp_51aaa3fe-49d1-45e4-9b8b-27aed68bde9d/component.css
 */
#cmp_51aaa3fe-49d1-45e4-9b8b-27aed68bde9d img {
	max-width: 100%;
}

/*
 * components/subscribe/cmp_07a4a613-d2ec-48c2-9cf8-e8661d67f800/component.css
 */
#cmp_07a4a613-d2ec-48c2-9cf8-e8661d67f800 {
	background-color: rgb(255, 255, 255);
}

#cmp_07a4a613-d2ec-48c2-9cf8-e8661d67f800 h1 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 48px;
}

#cmp_07a4a613-d2ec-48c2-9cf8-e8661d67f800 h2 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 32px;
}

#cmp_07a4a613-d2ec-48c2-9cf8-e8661d67f800 h3 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 24px;
}

#cmp_07a4a613-d2ec-48c2-9cf8-e8661d67f800 p {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

@media (min-width: 768px) {
	#cmp_07a4a613-d2ec-48c2-9cf8-e8661d67f800 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_07a4a613-d2ec-48c2-9cf8-e8661d67f800 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

#cmp_07a4a613-d2ec-48c2-9cf8-e8661d67f800 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

#cmp_07a4a613-d2ec-48c2-9cf8-e8661d67f800  {
	padding-bottom: 0;
}



/*
 * components/subscribe/cmp_66c843e9-fbe2-4be7-ba4a-9763a7acf4af/component.css
 */
#cmp_66c843e9-fbe2-4be7-ba4a-9763a7acf4af {
	background-color: rgb(255, 255, 255);
	padding-bottom: 0;
}

#cmp_66c843e9-fbe2-4be7-ba4a-9763a7acf4af .progress-bar-container {
	position: relative;
}

#cmp_66c843e9-fbe2-4be7-ba4a-9763a7acf4af .progress-bar-filler {
	background: rgb(241, 143, 80);
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_66c843e9-fbe2-4be7-ba4a-9763a7acf4af .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_66c843e9-fbe2-4be7-ba4a-9763a7acf4af .progress-bar .step {
	color: rgb(126, 31, 57);

	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_66c843e9-fbe2-4be7-ba4a-9763a7acf4af .progress-bar .step .point {
	background-color: rgb(255, 255, 255);
	border: 4px solid rgb(241, 143, 80);
	border-radius: 10px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_66c843e9-fbe2-4be7-ba4a-9763a7acf4af .progress-bar .step.active .point {
	background-color: rgb(126, 31, 57);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_66c843e9-fbe2-4be7-ba4a-9763a7acf4af .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe/cmp_9fa8e822-6f37-48a2-9d1c-c489fb55f4c6/component.css
 */
#cmp_9fa8e822-6f37-48a2-9d1c-c489fb55f4c6 {
	background-color: rgb(255, 255, 255);
}

#cmp_9fa8e822-6f37-48a2-9d1c-c489fb55f4c6 h3 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 24px;
}

#cmp_9fa8e822-6f37-48a2-9d1c-c489fb55f4c6 p {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

#cmp_9fa8e822-6f37-48a2-9d1c-c489fb55f4c6 .sf-item {
	background-color: #FFFFFF;
}
#cmp_9fa8e822-6f37-48a2-9d1c-c489fb55f4c6  {
	padding-top: 0;
}
.col-md-4.col-xs-12.sf-grid__container {
  
    flex: 25%;
}
/*
 * components/subscribe_flow/addons_step/cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9/component.css
 */
#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9.addons-container {
	margin-right: auto;
	margin-left: auto;

	max-width: 940px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

	margin-bottom: 15px;
}

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

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

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

	color: #FFFFFF;
	background-color: rgb(126, 31, 57);
}

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

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

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

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

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

	margin-bottom: 2px;
}

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

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

	text-align: center;
}


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

	color: #FFFFFF;
	background-color: rgb(126, 31, 57);
}

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

@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_2c0660fc-118e-44e9-8116-b989163ce2ba/component.css
 */
#cmp_2c0660fc-118e-44e9-8116-b989163ce2ba {
	background-color: #FFFFFF;
}

#cmp_2c0660fc-118e-44e9-8116-b989163ce2ba h1 {
	color: rgb(255, 255, 255);
	font-family: Jost;
	font-size: 48px;
}

#cmp_2c0660fc-118e-44e9-8116-b989163ce2ba h2 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 32px;
}

#cmp_2c0660fc-118e-44e9-8116-b989163ce2ba h3 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 24px;
}

#cmp_2c0660fc-118e-44e9-8116-b989163ce2ba p {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

@media (min-width: 768px) {
	#cmp_2c0660fc-118e-44e9-8116-b989163ce2ba .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_2c0660fc-118e-44e9-8116-b989163ce2ba ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

#cmp_2c0660fc-118e-44e9-8116-b989163ce2ba ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}
#cmp_d161d8fd-fbf6-4dbb-807e-74be0d0122cf {
    background-image: url(https://spice.vermillioncreativeagency.com/wp-content/uploads/2019/11/as-seen-in-bg.png);
}

#cmp_2c0660fc-118e-44e9-8116-b989163ce2ba {
    background-image: url(https://spice.vermillioncreativeagency.com/wp-content/uploads/2019/11/as-seen-in-bg.png);
}
/*
 * components/subscribe_flow/survey_step/cmp_8ff5b725-b693-4da8-b6c7-ae3ca9829c30/component.css
 */
#cmp_8ff5b725-b693-4da8-b6c7-ae3ca9829c30 {
	background-color: #FFFFFF;
}

#cmp_8ff5b725-b693-4da8-b6c7-ae3ca9829c30 h1 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 48px;
}

#cmp_8ff5b725-b693-4da8-b6c7-ae3ca9829c30 h2 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 32px;
}

#cmp_8ff5b725-b693-4da8-b6c7-ae3ca9829c30 h3 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 24px;
}

#cmp_8ff5b725-b693-4da8-b6c7-ae3ca9829c30 p {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

@media (min-width: 768px) {
	#cmp_8ff5b725-b693-4da8-b6c7-ae3ca9829c30 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_8ff5b725-b693-4da8-b6c7-ae3ca9829c30 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

#cmp_8ff5b725-b693-4da8-b6c7-ae3ca9829c30 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}
#cmp_d161d8fd-fbf6-4dbb-807e-74be0d0122cf {

  background-image: url("https://spice.vermillioncreativeagency.com/wp-content/uploads/2019/11/as-seen-in-bg.png");

}
/*
 * components/subscribe_flow/survey_step/cmp_b7776ac6-e6d4-4b31-8b2d-daf297d8bd6e/component.css
 */
#cmp_b7776ac6-e6d4-4b31-8b2d-daf297d8bd6e {
	background-color: rgb(255, 255, 255);
}

#cmp_b7776ac6-e6d4-4b31-8b2d-daf297d8bd6e h3 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 24px;
}

#cmp_b7776ac6-e6d4-4b31-8b2d-daf297d8bd6e p {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

#cmp_b7776ac6-e6d4-4b31-8b2d-daf297d8bd6e  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_bffcd544-d4b0-4a29-9ec8-42beec1be476/component.css
 */
#cmp_bffcd544-d4b0-4a29-9ec8-42beec1be476 {
	background-color: rgb(255, 255, 255);
	padding-bottom: 0;
}

#cmp_bffcd544-d4b0-4a29-9ec8-42beec1be476 .progress-bar-container {
	position: relative;
}

#cmp_bffcd544-d4b0-4a29-9ec8-42beec1be476 .progress-bar-filler {
	background: rgb(241, 143, 80);
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_bffcd544-d4b0-4a29-9ec8-42beec1be476 .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_bffcd544-d4b0-4a29-9ec8-42beec1be476 .progress-bar .step {
	color: rgb(126, 31, 57);

	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_bffcd544-d4b0-4a29-9ec8-42beec1be476 .progress-bar .step .point {
	background-color: rgb(255, 255, 255);
	border: 4px solid rgb(241, 143, 80);
	border-radius: 10px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_bffcd544-d4b0-4a29-9ec8-42beec1be476 .progress-bar .step.active .point {
	background-color: rgb(126, 31, 57);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_bffcd544-d4b0-4a29-9ec8-42beec1be476 .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe_flow/terms_step/cmp_472c7ed1-2a0a-4a8d-863e-1e65c74ed9db/component.css
 */
#cmp_472c7ed1-2a0a-4a8d-863e-1e65c74ed9db {
	background-color: rgb(255, 255, 255);
	padding-bottom: 0;
}

#cmp_472c7ed1-2a0a-4a8d-863e-1e65c74ed9db h1 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 48px;
}

#cmp_472c7ed1-2a0a-4a8d-863e-1e65c74ed9db p {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}
#cmp_472c7ed1-2a0a-4a8d-863e-1e65c74ed9db  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/terms_step/cmp_481d5855-d063-4d0e-b9e4-515b95dae1a9/component.css
 */
#cmp_481d5855-d063-4d0e-b9e4-515b95dae1a9 {
	background-color: rgb(255, 255, 255);
}

#cmp_481d5855-d063-4d0e-b9e4-515b95dae1a9 h2 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 24px;
}

#cmp_481d5855-d063-4d0e-b9e4-515b95dae1a9 h3 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 32px;
}

#cmp_481d5855-d063-4d0e-b9e4-515b95dae1a9 p {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

#cmp_481d5855-d063-4d0e-b9e4-515b95dae1a9 .sf-item {
	background-color: rgb(255, 255, 255);
}
#cmp_481d5855-d063-4d0e-b9e4-515b95dae1a9  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/terms_step/cmp_81eac974-7fe9-4135-a980-9add90bf3f9c/component.css
 */
#cmp_81eac974-7fe9-4135-a980-9add90bf3f9c {
	background-color: rgb(255, 255, 255);
	padding-bottom: 0;
}

#cmp_81eac974-7fe9-4135-a980-9add90bf3f9c .progress-bar-container {
	position: relative;
}

#cmp_81eac974-7fe9-4135-a980-9add90bf3f9c .progress-bar-filler {
	background: rgb(241, 143, 80);
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_81eac974-7fe9-4135-a980-9add90bf3f9c .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_81eac974-7fe9-4135-a980-9add90bf3f9c .progress-bar .step {
	color: rgb(126, 31, 57);

	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_81eac974-7fe9-4135-a980-9add90bf3f9c .progress-bar .step .point {
	background-color: rgb(255, 255, 255);
	border: 4px solid rgb(241, 143, 80);
	border-radius: 10px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_81eac974-7fe9-4135-a980-9add90bf3f9c .progress-bar .step.active .point {
	background-color: rgb(126, 31, 57);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_81eac974-7fe9-4135-a980-9add90bf3f9c .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe_flow/terms_step/cmp_c5209303-7a16-4882-986b-9a88725d3752/component.css
 */
#cmp_c5209303-7a16-4882-986b-9a88725d3752 {
	background-color: #FFFFFF;
}

#cmp_c5209303-7a16-4882-986b-9a88725d3752 h1 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 48px;
}

#cmp_c5209303-7a16-4882-986b-9a88725d3752 h2 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 36px;
}

#cmp_c5209303-7a16-4882-986b-9a88725d3752 h3 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 22px;
}

#cmp_c5209303-7a16-4882-986b-9a88725d3752 p {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

@media (min-width: 768px) {
	#cmp_c5209303-7a16-4882-986b-9a88725d3752 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_c5209303-7a16-4882-986b-9a88725d3752 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

#cmp_c5209303-7a16-4882-986b-9a88725d3752 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

/*
 * components/subscribe_flow/terms_step/cmp_e2e4303d-aace-48b3-ad76-62f0620d2778/component.css
 */
#cmp_e2e4303d-aace-48b3-ad76-62f0620d2778 img {
	max-width: 100%;
}

/*
 * components/subscribe_flow/variant_step/cmp_19adf153-f598-4556-b970-9359b9c4f24c/component.css
 */
#cmp_19adf153-f598-4556-b970-9359b9c4f24c {
	background-color: #FFFFFF;
}

#cmp_19adf153-f598-4556-b970-9359b9c4f24c h1 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 48px;
}

#cmp_19adf153-f598-4556-b970-9359b9c4f24c h2 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 32px;
}

#cmp_19adf153-f598-4556-b970-9359b9c4f24c h3 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 24px;
}

#cmp_19adf153-f598-4556-b970-9359b9c4f24c p {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

@media (min-width: 768px) {
	#cmp_19adf153-f598-4556-b970-9359b9c4f24c .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_19adf153-f598-4556-b970-9359b9c4f24c ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

#cmp_19adf153-f598-4556-b970-9359b9c4f24c ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

#cmp_19adf153-f598-4556-b970-9359b9c4f24c  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_37550a28-2c2b-4538-80d3-5eebae0d23b8/component.css
 */
#cmp_37550a28-2c2b-4538-80d3-5eebae0d23b8 {
	background-color: #E8E4E2;
	padding-bottom: 0;
}

#cmp_37550a28-2c2b-4538-80d3-5eebae0d23b8 .progress-bar-container {
	position: relative;
}

#cmp_37550a28-2c2b-4538-80d3-5eebae0d23b8 .progress-bar-filler {
	background: rgb(241, 143, 80);
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_37550a28-2c2b-4538-80d3-5eebae0d23b8 .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_37550a28-2c2b-4538-80d3-5eebae0d23b8 .progress-bar .step {
	color: rgb(126, 31, 57);

	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_37550a28-2c2b-4538-80d3-5eebae0d23b8 .progress-bar .step .point {
	background-color: #E8E4E2;
	border: 4px solid rgb(241, 143, 80);
	border-radius: 10px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_37550a28-2c2b-4538-80d3-5eebae0d23b8 .progress-bar .step.active .point {
	background-color: rgb(126, 31, 57);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_37550a28-2c2b-4538-80d3-5eebae0d23b8 .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe_flow/variant_step/cmp_3d86226e-74d9-46b6-a949-88ce573f38b1/component.css
 */
#cmp_3d86226e-74d9-46b6-a949-88ce573f38b1 {
	background-color: #E8E4E2;
}

#cmp_3d86226e-74d9-46b6-a949-88ce573f38b1 h3 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 24px;
}

#cmp_3d86226e-74d9-46b6-a949-88ce573f38b1 p {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

#cmp_3d86226e-74d9-46b6-a949-88ce573f38b1 .sf-item {
	background-color: #FFFFFF;
}
#cmp_3d86226e-74d9-46b6-a949-88ce573f38b1  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_64af8f09-8e3e-44cc-a08a-b70ffdc6221e/component.css
 */
#cmp_64af8f09-8e3e-44cc-a08a-b70ffdc6221e {
	background-color: #FFFFFF;
}

#cmp_64af8f09-8e3e-44cc-a08a-b70ffdc6221e .content-row {
	margin: 0;

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

#cmp_64af8f09-8e3e-44cc-a08a-b70ffdc6221e .content {
	background-color: rgb(241, 143, 80);
	border: 5px solid rgb(241, 143, 80);
	margin: 15px 0;
	padding: 25px;

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

#cmp_64af8f09-8e3e-44cc-a08a-b70ffdc6221e .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_64af8f09-8e3e-44cc-a08a-b70ffdc6221e h1 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 48px;
}

#cmp_64af8f09-8e3e-44cc-a08a-b70ffdc6221e h2 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 32px;
}

#cmp_64af8f09-8e3e-44cc-a08a-b70ffdc6221e h3 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 24px;
}

#cmp_64af8f09-8e3e-44cc-a08a-b70ffdc6221e p {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

@media (min-width: 768px) {
	#cmp_64af8f09-8e3e-44cc-a08a-b70ffdc6221e .content {
		margin: 15px;
	}
}
#cmp_64af8f09-8e3e-44cc-a08a-b70ffdc6221e  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_9c85c856-d571-4b9d-ba92-72e900a4d2e9/component.css
 */
#cmp_9c85c856-d571-4b9d-ba92-72e900a4d2e9 {
	background-color: #E8E4E2;
	padding-bottom: 0;
}

#cmp_9c85c856-d571-4b9d-ba92-72e900a4d2e9 h1 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 48px;
}

#cmp_9c85c856-d571-4b9d-ba92-72e900a4d2e9 p {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}
#cmp_9c85c856-d571-4b9d-ba92-72e900a4d2e9  {
	padding-bottom: 0;
}
/*
 * components/terms__conditions/cmp_02dfc9aa-bfb7-424c-ac06-8113ca15a923/component.css
 */
#cmp_02dfc9aa-bfb7-424c-ac06-8113ca15a923 {
	background-color: #FFFFFF;
}

#cmp_02dfc9aa-bfb7-424c-ac06-8113ca15a923 h1 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 48px;
}

#cmp_02dfc9aa-bfb7-424c-ac06-8113ca15a923 h2 {
	color: rgb(126, 31, 57);
	font-family: Raleway;
	font-size: 28px;
}

#cmp_02dfc9aa-bfb7-424c-ac06-8113ca15a923 h3 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 24px;
}

#cmp_02dfc9aa-bfb7-424c-ac06-8113ca15a923 p {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

@media (min-width: 768px) {
	#cmp_02dfc9aa-bfb7-424c-ac06-8113ca15a923 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_02dfc9aa-bfb7-424c-ac06-8113ca15a923 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

#cmp_02dfc9aa-bfb7-424c-ac06-8113ca15a923 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

/*
 * components/terms__conditions/cmp_396148d1-14cb-451a-b47c-991f7d06a461/component.css
 */
#cmp_396148d1-14cb-451a-b47c-991f7d06a461 {
	background-color: rgba(255, 255, 255, 0);
}

#cmp_396148d1-14cb-451a-b47c-991f7d06a461 h1 {
	color: rgb(255, 255, 255);
	font-family: Jost;
	font-size: 48px;
}

#cmp_396148d1-14cb-451a-b47c-991f7d06a461 h2 {
	color: rgb(255, 255, 255);
	font-family: Raleway;
	font-size: 16px;
}

#cmp_396148d1-14cb-451a-b47c-991f7d06a461 h3 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 24px;
}

#cmp_396148d1-14cb-451a-b47c-991f7d06a461 p {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

@media (min-width: 768px) {
	#cmp_396148d1-14cb-451a-b47c-991f7d06a461 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_396148d1-14cb-451a-b47c-991f7d06a461 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

#cmp_396148d1-14cb-451a-b47c-991f7d06a461 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

#cmp_396148d1-14cb-451a-b47c-991f7d06a461 .content { margin: 0 auto;
    width: 100%!important;
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url(https://s3.amazonaws.com/cratejoy_vendor_images/spicemadam/bold_mobile-copy-0/images/as_seen_in_bg.png);
}

#cmp_396148d1-14cb-451a-b47c-991f7d06a461 {
    padding-top: 0px;
}


/*
 * components/view-cart/cmp_f001aec9-87a2-4b27-b144-969e3fe0da48/component.css
 */
#cmp_f001aec9-87a2-4b27-b144-969e3fe0da48 {
	background-color: #FFFFFF;
}

#cmp_f001aec9-87a2-4b27-b144-969e3fe0da48 h1 {
	color: rgb(255, 255, 255);
	font-family: Jost;
	font-size: 48px;
}

#cmp_f001aec9-87a2-4b27-b144-969e3fe0da48 h2 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 32px;
}

#cmp_f001aec9-87a2-4b27-b144-969e3fe0da48 h3 {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 24px;
}

#cmp_f001aec9-87a2-4b27-b144-969e3fe0da48 p {
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

@media (min-width: 768px) {
	#cmp_f001aec9-87a2-4b27-b144-969e3fe0da48 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_f001aec9-87a2-4b27-b144-969e3fe0da48 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

#cmp_f001aec9-87a2-4b27-b144-969e3fe0da48 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(126, 31, 57);
	font-family: Jost;
	font-size: 16px;
}

/*
 * components/view-cart/cmp_f2526cdc-66ff-4132-b8f1-f749ffa04dff/component.css
 */
#cmp_f2526cdc-66ff-4132-b8f1-f749ffa04dff {
	padding: 15px 15px 100px 15px;
}

#cmp_f2526cdc-66ff-4132-b8f1-f749ffa04dff .cart-thead {
	border-bottom: 1px solid #E1E1E1;
	padding: 10px 0;
}

#cmp_f2526cdc-66ff-4132-b8f1-f749ffa04dff .cart-thead h3 {
	text-transform: uppercase;
}

#cmp_f2526cdc-66ff-4132-b8f1-f749ffa04dff .cart-item {
	border: 1px solid #E1E1E1;
	padding: 25px 0;
	position: relative;
}

#cmp_f2526cdc-66ff-4132-b8f1-f749ffa04dff .product-main {
	margin: 0 0 15px 0;
}

#cmp_f2526cdc-66ff-4132-b8f1-f749ffa04dff .product-label p {
	margin: 0;
}

#cmp_f2526cdc-66ff-4132-b8f1-f749ffa04dff .product-label .info {
	color: rgb(126, 31, 57);
	text-align: right;
	text-transform: uppercase;
}

#cmp_f2526cdc-66ff-4132-b8f1-f749ffa04dff .product-label .meta {
	color: rgb(126, 31, 57);
	font-size: 16px;
}

#cmp_f2526cdc-66ff-4132-b8f1-f749ffa04dff .product-rem-btn {
	position: absolute;
	right: 1%;
	top: 1%;
}

#cmp_f2526cdc-66ff-4132-b8f1-f749ffa04dff figure {
	margin: 0 0 15px 0;
}

#cmp_f2526cdc-66ff-4132-b8f1-f749ffa04dff .cart-subtotal {
	margin: 50px 0 0 0;
}

#cmp_f2526cdc-66ff-4132-b8f1-f749ffa04dff .cart-subtotal h2 {
	margin: 0 0 15px 0;
}

#cmp_f2526cdc-66ff-4132-b8f1-f749ffa04dff .cart-subtotal h3 {
	margin: 0 0 25px 0;
	text-transform: uppercase;
}

#cmp_f2526cdc-66ff-4132-b8f1-f749ffa04dff .cart-subtotal p {
	margin: 0 0 25px 0;
}

@media (min-width: 768px) {
	#cmp_f2526cdc-66ff-4132-b8f1-f749ffa04dff .cart-item {
		border-width: 0 0 1px 0;
	}
	#cmp_f2526cdc-66ff-4132-b8f1-f749ffa04dff .product-rem-btn {
		top: 40%;
	}
	#cmp_f2526cdc-66ff-4132-b8f1-f749ffa04dff figure {
		margin: 0;
	}
}




#cmp_f001aec9-87a2-4b27-b144-969e3fe0da48 { padding:20px;}

#cmp_f001aec9-87a2-4b27-b144-969e3fe0da48{background-image: url(https://s3.amazonaws.com/cratejoy_vendor_images/spicemadam/bold_mobile-copy-0/images/as_seen_in_bg.png);

}