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

h1 {
	color: #333333;
	font-family: Libre Baskerville;
	font-size: 36px;
}

h2 {
	color: #333333;
	font-family: Libre Baskerville;
	font-size: 24px;
}

h3 {
	color: #333333;
	font-family: Lato;
	font-size: 16px;
}

p {
	line-height: 1.5em;
}

a,
.btn-link {
	color: rgb(138, 54, 212);
}

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

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

.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: 4px;
	border: none;
	padding: 14px 22px;
	letter-spacing: 2px;
	font-size: 14px;
}

.btn-small {
	padding: 0.6em 1.8em;
	border: 1px solid #938983;
	border-radius: 15px;
	color: #938983;
}

.btn-small:hover,
.btn-small:focus,
.btn-small:active,
.btn-small:active:focus {
	background-color: #333333;
	border: 1px solid #333333;
	color: #938983 !important;
}

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

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

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

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

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

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

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

/* 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(138, 54, 212);
	border: none;
	border-radius: 25px;
	color: #FFFFFF;
	font-family: Montserrat;
	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: #79706A;
	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: #938983;
}

.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(138, 54, 212);
	color: rgb(138, 54, 212);
	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: #79706A;
	border-color: #79706A;
	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;
	}
}

/* Slide panel
----------------------- */
.slidepanel {
  margin-top: 0;
  overflow: hidden;
  background-color: #fff;
  z-index: 20;
}

.slidepanel.top {
  left: 0;
  top: 0;
  width: 100%;
  background-position: center center;
  min-height: 700px;
  -webkit-background-size: 100%;
  -moz-background-size: 100%;
  -o-background-size: 100%;
  background-size: 100%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  z-index: 500;
}

.slidepanel.bottom {
  padding: 1px 0;
  box-shadow: 0 -10px 30px rgba(56, 52, 52, 0.2);
  z-index: 1000;
}

.viewport {
  margin-right: auto;
  margin-left: auto;
  overflow-x: hidden;
  padding-left: 0;
  padding-right: 0;
}

.row-offcanvas {
	display: flex;
  position: relative;
  -webkit-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  margin-left: -15px;
  margin-right: -15px;
}

.row-offcanvas .pagecontent {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.row-offcanvas.active .pagecontent {
  padding: 0;
}

.row-offcanvas.active:before {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(53, 53, 53, 0.35);
  content: "";
  z-index: 100;
}

.row-offcanvas-left {
  left: 0;
}

.row-offcanvas-left.active {
  left: 300px;
}

.row-offcanvas-left.active:before {
  right: 0;
}

.row-offcanvas-left .sidebar-offcanvas {
  left: -300px;
}

.row-offcanvas-right {
  right: 0;
}

.row-offcanvas-right.active {
  right: 300px;
}

.row-offcanvas-right.active:before {
  left: 0;
}

.row-offcanvas-right .sidebar-offcanvas {
  right: -300px;
}

.sidebar-offcanvas {
  float: left;
  width: 25%;
  min-height: 100vh;
  padding: 40px 50px 40px 35px;
  position: absolute;
  top: 0;
  bottom: 0;
  padding: 30px;
  height: 100%;
  width: 300px;
  z-index: 101;
	background: #FFFFFF;
}

.row-offcanvas.active .slidepanel {
  position: static;
}

.row-offcanvas.active .slidepanel.bottom {
  margin-top: 0 !important;
}

.sidebar-offcanvas {
}

/*
 * components/checkout/cmp_07ff08cd-c6d9-4ed2-931c-d298d83a4639/component.css
 */
#cmp_07ff08cd-c6d9-4ed2-931c-d298d83a4639 .checkout_content {
	overflow: auto;
}

#cmp_07ff08cd-c6d9-4ed2-931c-d298d83a4639 .checkout_content section {
	border-color: #F5F5F5;
}

#cmp_07ff08cd-c6d9-4ed2-931c-d298d83a4639 .cart_listing table {
	border-color: #F5F5F5;
}

/*
 * components/checkout/cmp_6ea4ae27-9be8-47fd-a2ac-7dbd536f7569/component.css
 */
#cmp_6ea4ae27-9be8-47fd-a2ac-7dbd536f7569 {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_6ea4ae27-9be8-47fd-a2ac-7dbd536f7569 h1 {
	color: #333333;
	font-family: Libre Baskerville;
	font-size: 36px;
}

#cmp_6ea4ae27-9be8-47fd-a2ac-7dbd536f7569 h2 {
	color: #333333;
	font-family: Libre Baskerville;
	font-size: 24px;
}

#cmp_6ea4ae27-9be8-47fd-a2ac-7dbd536f7569 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 16px;
}

#cmp_6ea4ae27-9be8-47fd-a2ac-7dbd536f7569 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/customer/account/cmp_13e02472-dd55-4dcf-a6c9-459d46f6f52f/component.css
 */

/*
 * components/customer/edit/cmp_cc35fafe-b968-4434-86ad-97c481aeed5c/component.css
 */

/*
 * components/customer/forgot_password/cmp_8e8666e2-4f66-4a12-a26e-00014365d0da/component.css
 */

#cmp_8e8666e2-4f66-4a12-a26e-00014365d0da  {
	padding-bottom: 120px;
}
/*
 * components/customer/forgot_password/cmp_ff20d9bc-d859-49c6-8642-8c36a6c76c1b/component.css
 */
#cmp_ff20d9bc-d859-49c6-8642-8c36a6c76c1b {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_ff20d9bc-d859-49c6-8642-8c36a6c76c1b h1 {
	color: #333333;
	font-family: Libre Baskerville;
	font-size: 36px;
}

#cmp_ff20d9bc-d859-49c6-8642-8c36a6c76c1b h2 {
	color: #333333;
	font-family: Libre Baskerville;
	font-size: 24px;
}

#cmp_ff20d9bc-d859-49c6-8642-8c36a6c76c1b h3 {
	color: #333333;
	font-family: Lato;
	font-size: 16px;
}

#cmp_ff20d9bc-d859-49c6-8642-8c36a6c76c1b p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_ff20d9bc-d859-49c6-8642-8c36a6c76c1b  {
	padding: 50px 0;
}
#cmp_ff20d9bc-d859-49c6-8642-8c36a6c76c1b h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/login/cmp_2d1ebf5f-68ba-4d12-9266-44b6d19fc043/component.css
 */

#cmp_2d1ebf5f-68ba-4d12-9266-44b6d19fc043  {
	padding-bottom: 120px;
}
/*
 * components/customer/login/cmp_f84c4c5f-19ba-4237-830e-1a6aeb6be308/component.css
 */
#cmp_f84c4c5f-19ba-4237-830e-1a6aeb6be308 {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_f84c4c5f-19ba-4237-830e-1a6aeb6be308 h1 {
	color: #333333;
	font-family: Libre Baskerville;
	font-size: 36px;
}

#cmp_f84c4c5f-19ba-4237-830e-1a6aeb6be308 h2 {
	color: #333333;
	font-family: Libre Baskerville;
	font-size: 24px;
}

#cmp_f84c4c5f-19ba-4237-830e-1a6aeb6be308 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 16px;
}

#cmp_f84c4c5f-19ba-4237-830e-1a6aeb6be308 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_f84c4c5f-19ba-4237-830e-1a6aeb6be308  {
	padding: 50px 0;
}
#cmp_f84c4c5f-19ba-4237-830e-1a6aeb6be308 h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/order/cmp_998ef3a1-e039-4c12-ba96-6de154fec7dd/component.css
 */

/*
 * components/customer/password_reset/cmp_692f66ed-407b-44bf-a1e1-0114ceaed51f/component.css
 */

#cmp_692f66ed-407b-44bf-a1e1-0114ceaed51f  {
	padding-bottom: 120px;
}
/*
 * components/customer/password_reset/cmp_c5dd1112-63b9-483a-bde5-b8c9b8724423/component.css
 */
#cmp_c5dd1112-63b9-483a-bde5-b8c9b8724423 {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_c5dd1112-63b9-483a-bde5-b8c9b8724423 h1 {
	color: #333333;
	font-family: Libre Baskerville;
	font-size: 36px;
}

#cmp_c5dd1112-63b9-483a-bde5-b8c9b8724423 h2 {
	color: #333333;
	font-family: Libre Baskerville;
	font-size: 24px;
}

#cmp_c5dd1112-63b9-483a-bde5-b8c9b8724423 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 16px;
}

#cmp_c5dd1112-63b9-483a-bde5-b8c9b8724423 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_c5dd1112-63b9-483a-bde5-b8c9b8724423  {
	padding: 50px 0;
}
#cmp_c5dd1112-63b9-483a-bde5-b8c9b8724423 h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/thank_you/cmp_8f88276c-775a-40cb-aa27-eddd8e6b84af/component.css
 */
#cmp_8f88276c-775a-40cb-aa27-eddd8e6b84af img {
	max-width: 100%;
}

/*
 * components/customer/thank_you/cmp_a6c0b4fb-14ea-4bf4-9f0d-029363b89f03/component.css
 */

/*
 * components/global/cmp_a77a6f1f-b00f-4f13-a440-0746a0eb16d0/component.css
 */
#cmp_a77a6f1f-b00f-4f13-a440-0746a0eb16d0 {
	margin-top: 40px;
	margin-bottom: 40px;
}

#cmp_a77a6f1f-b00f-4f13-a440-0746a0eb16d0 .progress-bar-container {
	position: relative;
}

#cmp_a77a6f1f-b00f-4f13-a440-0746a0eb16d0 .progress-bar-filler {
	height: 2px;
	width: 90%;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	left: 0;
	right: 0;
	z-index: -10;
	background: #E5E5E5;
}

#cmp_a77a6f1f-b00f-4f13-a440-0746a0eb16d0 .progress-bar {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	color: #E5E5E5;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_a77a6f1f-b00f-4f13-a440-0746a0eb16d0 .progress-bar::before {
		width: 86%;
		margin: 0 7%;
	}
}

#cmp_a77a6f1f-b00f-4f13-a440-0746a0eb16d0 .progress-bar .step {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#cmp_a77a6f1f-b00f-4f13-a440-0746a0eb16d0 .progress-bar .step .point {
	width: 20px;
	height: 20px;
	border-radius: 10px;
	background-color: #E5E5E5;
	border: 4px solid white;
}

#cmp_a77a6f1f-b00f-4f13-a440-0746a0eb16d0 .progress-bar .step.active {
	color: #4A4A4A;
}

#cmp_a77a6f1f-b00f-4f13-a440-0746a0eb16d0 .progress-bar .step.active .point {
	background-color: ;;
}

/*
 * components/global/cmp_d918b3af-b12d-4100-8b3c-95c499907eef/component.css
 */
#cmp_d918b3af-b12d-4100-8b3c-95c499907eef.footer {
	background-color: #FFFFFF;
	font-family: Lato;
	color: #4A4A4A;
	font-size: 11px;
	padding-top: 10px;
	padding-bottom: 10px;
	margin-top: 100px;
	text-align: center;
	border-top: 1px solid #DDDDDD;
}

#cmp_d918b3af-b12d-4100-8b3c-95c499907eef a,
#cmp_d918b3af-b12d-4100-8b3c-95c499907eef a:hover,
#cmp_d918b3af-b12d-4100-8b3c-95c499907eef a:focus {
	color: #4A4A4A;
}

#cmp_d918b3af-b12d-4100-8b3c-95c499907eef .footer-social {
	padding-top: 20px;
	padding-bottom: 15px;
	text-align: center;
}

#cmp_d918b3af-b12d-4100-8b3c-95c499907eef .footer-social a {
	display: inline-block;
	padding-left: 5px;
	padding-right: 5px;
}

#cmp_d918b3af-b12d-4100-8b3c-95c499907eef .footer-social svg path {
	stroke: #333333;
}

#cmp_d918b3af-b12d-4100-8b3c-95c499907eef .footer-social svg path + path {
	fill: #333333;
}

#cmp_d918b3af-b12d-4100-8b3c-95c499907eef .footer-social a:hover svg path,
#cmp_d918b3af-b12d-4100-8b3c-95c499907eef .footer-social a:focus svg path,
#cmp_d918b3af-b12d-4100-8b3c-95c499907eef .footer-social a:active svg path {
	stroke: #4A4A4A;
}

#cmp_d918b3af-b12d-4100-8b3c-95c499907eef .footer-social a:hover svg path + path,
#cmp_d918b3af-b12d-4100-8b3c-95c499907eef .footer-social a:focus svg path + path,
#cmp_d918b3af-b12d-4100-8b3c-95c499907eef .footer-social a:active svg path + path {
	fill: #4A4A4A;
}

@media(min-width: 1140px) {
	.footer-copyright {
		text-align: left;
	}

	.footer-tribute {
		text-align: right;
	}
}

/*
 * components/global/cmp_fedf077f-2bee-4bad-b78c-f96148c54d67/component.css
 */
#cmp_fedf077f-2bee-4bad-b78c-f96148c54d67 .navbar {
	background-color: rgba(0, 0, 0, 0.1);
	border-radius: 0;
	margin-bottom: 3rem;
}

#cmp_fedf077f-2bee-4bad-b78c-f96148c54d67 .navbar-brand {
	color: #938983;
	font-family: Libre Baskerville;
	font-size: 40px;
	margin: 0;
	line-height: 1;
	text-align: center;
}

#cmp_fedf077f-2bee-4bad-b78c-f96148c54d67 .navbar-brand > img {
	display: inline-block;
}

#cmp_fedf077f-2bee-4bad-b78c-f96148c54d67 .navbar-nav {
	display: -moz-flex;
	display: -webkit-flex;
	display: flex;

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

	margin: 0;
}

#cmp_fedf077f-2bee-4bad-b78c-f96148c54d67 .navbar a.nav-link,
#cmp_fedf077f-2bee-4bad-b78c-f96148c54d67 .navbar button {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 12px;;
	letter-spacing: 1px;
	padding: 8px 12px;
	text-align: center;
	text-transform: uppercase;
}

#cmp_fedf077f-2bee-4bad-b78c-f96148c54d67 .navbar a.nav-link:hover,
#cmp_fedf077f-2bee-4bad-b78c-f96148c54d67 .navbar a.nav-link:focus,
#cmp_fedf077f-2bee-4bad-b78c-f96148c54d67 .navbar a.nav-link:active,
#cmp_fedf077f-2bee-4bad-b78c-f96148c54d67 .navbar button:hover,
#cmp_fedf077f-2bee-4bad-b78c-f96148c54d67 .navbar button:focus,
#cmp_fedf077f-2bee-4bad-b78c-f96148c54d67 .navbar button:active {
	color: #4A4A4A;
	outline: none;
}

#cmp_fedf077f-2bee-4bad-b78c-f96148c54d67 .navbar-nav .dropdown-menu a {
	color: #4A4A4A;
	padding: 10px 0;
}

#cmp_fedf077f-2bee-4bad-b78c-f96148c54d67 .navbar-toggler {
	padding: 1rem;
}

@media(min-width: 767px) {
	#cmp_fedf077f-2bee-4bad-b78c-f96148c54d67 .navbar-nav {
		-moz-flex-direction: row;
		-webkit-flex-direction: row;
		flex-direction: row;

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

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

	#cmp_fedf077f-2bee-4bad-b78c-f96148c54d67 .navbar-nav li {
		-moz-flex-shrink: 0;
		-webkit-flex-shrink: 0;
		flex-shrink: 0;
	}

	#cmp_fedf077f-2bee-4bad-b78c-f96148c54d67 .navbar-nav .nav-link {
		padding: 8px 0 8px 28px;
	}
}

/*
 * components/index/cmp_076d6dcb-3ade-49ba-8d4d-a1e8f1d4b759/component.css
 */
#cmp_076d6dcb-3ade-49ba-8d4d-a1e8f1d4b759 {
	background-color: #FFFFFF;
}

#cmp_076d6dcb-3ade-49ba-8d4d-a1e8f1d4b759 .title {
	margin-top: 40px;
}

#cmp_076d6dcb-3ade-49ba-8d4d-a1e8f1d4b759 .box-choose-row {
	justify-content: center;
}

#cmp_076d6dcb-3ade-49ba-8d4d-a1e8f1d4b759 .box-choose {
	margin-top: 40px;
	margin-bottom: 40px;
}

#cmp_076d6dcb-3ade-49ba-8d4d-a1e8f1d4b759 .box-choose img {
	margin-bottom: 20px;
}

#cmp_076d6dcb-3ade-49ba-8d4d-a1e8f1d4b759 h1 {
	color: #333333;
	font-family: Libre Baskerville;
	font-size: 36px;
}

#cmp_076d6dcb-3ade-49ba-8d4d-a1e8f1d4b759 h2 {
	color: #333333;
	font-family: Libre Baskerville;
	font-size: 24px;
}

#cmp_076d6dcb-3ade-49ba-8d4d-a1e8f1d4b759 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 16px;
}

#cmp_076d6dcb-3ade-49ba-8d4d-a1e8f1d4b759 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_076d6dcb-3ade-49ba-8d4d-a1e8f1d4b759 h3 {
	margin-bottom: 25px;
}
/*
 * components/index/cmp_209a07cf-8457-4792-a31a-79a87d4dda0b/component.css
 */
#cmp_209a07cf-8457-4792-a31a-79a87d4dda0b hr {
	border-top-color: #DDDDDD;
}

/*
 * components/index/cmp_4330f7fe-0279-4873-b341-982d07f421a4/component.css
 */
#cmp_4330f7fe-0279-4873-b341-982d07f421a4 img {
	max-width: 100%;
}

/*
 * components/index/cmp_791a23c3-5dff-4596-b65a-ecf63384012e/component.css
 */
#cmp_791a23c3-5dff-4596-b65a-ecf63384012e {
	background-color: #FFFFFF;
}

#cmp_791a23c3-5dff-4596-b65a-ecf63384012e h1 {
	color: #333333;
	font-family: Libre Baskerville;
	font-size: 36px;
}

#cmp_791a23c3-5dff-4596-b65a-ecf63384012e h2 {
	color: #333333;
	font-family: Libre Baskerville;
	font-size: 24px;
}

#cmp_791a23c3-5dff-4596-b65a-ecf63384012e h3 {
	color: #333333;
	font-family: Lato;
	font-size: 16px;
}

#cmp_791a23c3-5dff-4596-b65a-ecf63384012e p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_791a23c3-5dff-4596-b65a-ecf63384012e .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_791a23c3-5dff-4596-b65a-ecf63384012e .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_791a23c3-5dff-4596-b65a-ecf63384012e .btn {
	background-color: rgb(138, 54, 212);
	color: #FFFFFF;
	font-family: Montserrat;
	font-size: 14px;
}

#cmp_791a23c3-5dff-4596-b65a-ecf63384012e .btn:hover {
	background-color: #79706A;
	color: #FFFFFF;
}

#cmp_791a23c3-5dff-4596-b65a-ecf63384012e  {
	padding: 60px 0;
}
#cmp_791a23c3-5dff-4596-b65a-ecf63384012e h1 {
	margin-bottom: 15px;
}
#cmp_791a23c3-5dff-4596-b65a-ecf63384012e p {
	margin-bottom: 20px;
}
/*
 * components/index/cmp_e5a4d32b-2744-49d1-a669-79825e5d0b7e/component.css
 */
/**********
Navigation
**********/
#cmp_e5a4d32b-2744-49d1-a669-79825e5d0b7e .navbar {
	background-color: rgba(0, 0, 0, 0.1);
	border-radius: 0;
	margin-bottom: 3rem;
}

#cmp_e5a4d32b-2744-49d1-a669-79825e5d0b7e .navbar-brand {
	color: #938983;
	font-family: Libre Baskerville;
	font-size: 40px;
	margin: 0;
	line-height: 1;
	text-align: center;
}

#cmp_e5a4d32b-2744-49d1-a669-79825e5d0b7e .navbar-brand > img {
	display: inline-block;
}

#cmp_e5a4d32b-2744-49d1-a669-79825e5d0b7e .navbar-nav {
	display: -moz-flex;
	display: -webkit-flex;
	display: flex;

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

	margin: 20px 0;
}

#cmp_e5a4d32b-2744-49d1-a669-79825e5d0b7e .navbar a.nav-link,
#cmp_e5a4d32b-2744-49d1-a669-79825e5d0b7e .navbar button {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 12px;;
	letter-spacing: 1px;
	padding: 8px 12px;
	text-align: center;
	text-transform: uppercase;
}

#cmp_e5a4d32b-2744-49d1-a669-79825e5d0b7e .navbar a.nav-link:hover,
#cmp_e5a4d32b-2744-49d1-a669-79825e5d0b7e .navbar a.nav-link:focus,
#cmp_e5a4d32b-2744-49d1-a669-79825e5d0b7e .navbar a.nav-link:active,
#cmp_e5a4d32b-2744-49d1-a669-79825e5d0b7e .navbar button:hover,
#cmp_e5a4d32b-2744-49d1-a669-79825e5d0b7e .navbar button:focus,
#cmp_e5a4d32b-2744-49d1-a669-79825e5d0b7e .navbar button:active {
	color: #4A4A4A;
	outline: none;
}

#cmp_e5a4d32b-2744-49d1-a669-79825e5d0b7e .navbar-nav .dropdown-menu a {
	color: #4A4A4A;
	padding: 10px 0;
}

#cmp_e5a4d32b-2744-49d1-a669-79825e5d0b7e .navbar-toggler {
	padding: 1rem;
}

@media(min-width: 767px) {
	#cmp_e5a4d32b-2744-49d1-a669-79825e5d0b7e .navbar {
		background-color: transparent;
		margin-bottom: 0;
	}

	#cmp_e5a4d32b-2744-49d1-a669-79825e5d0b7e .navbar-nav {
		-moz-flex-direction: row;
		-webkit-flex-direction: row;
		flex-direction: row;

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

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

	#cmp_e5a4d32b-2744-49d1-a669-79825e5d0b7e .navbar-nav li {
		-moz-flex-shrink: 0;
		-webkit-flex-shrink: 0;
		flex-shrink: 0;
	}

	#cmp_e5a4d32b-2744-49d1-a669-79825e5d0b7e .navbar-nav .nav-link {
		padding: 8px 0 8px 28px;
	}
}


/**********
Hero
**********/
#cmp_e5a4d32b-2744-49d1-a669-79825e5d0b7e .hero-content {
	padding: 20px;
}

@media(min-width: 768px) {
	#cmp_e5a4d32b-2744-49d1-a669-79825e5d0b7e .hero-content {
		min-height: 700px;
	}
}

#cmp_e5a4d32b-2744-49d1-a669-79825e5d0b7e .hero-content h1 {
	color: #FFFFFF;
	font-family: Libre Baskerville;
	font-size: 50px;
	letter-spacing: 2px;
}

#cmp_e5a4d32b-2744-49d1-a669-79825e5d0b7e .hero-content h2 {
	color: #FFFFFF;
	font-family: Libre Baskerville;
	font-size: 24px;
}

#cmp_e5a4d32b-2744-49d1-a669-79825e5d0b7e .hero-content h3 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 16px;
}

#cmp_e5a4d32b-2744-49d1-a669-79825e5d0b7e .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_e5a4d32b-2744-49d1-a669-79825e5d0b7e .hero-content .btn {
	margin-bottom: 10px;
}

#cmp_e5a4d32b-2744-49d1-a669-79825e5d0b7e .hero-content .btn.btn-primary {
	border: 2px solid transparent;
	background-color: rgb(138, 54, 212);
	color: #FFFFFF;
	font-family: Montserrat;
	font-size: 14px;
}

#cmp_e5a4d32b-2744-49d1-a669-79825e5d0b7e .hero-content .btn.btn-primary:hover,
#cmp_e5a4d32b-2744-49d1-a669-79825e5d0b7e .hero-content .btn.btn-primary:focus,
#cmp_e5a4d32b-2744-49d1-a669-79825e5d0b7e .hero-content .btn.btn-primary:active,
#cmp_e5a4d32b-2744-49d1-a669-79825e5d0b7e .hero-content .btn.btn-primary:active:focus {
	background-color: #79706A;
	color: #FFFFFF;
}

#cmp_e5a4d32b-2744-49d1-a669-79825e5d0b7e .hero-content .btn-secondary {
	border: 2px solid;

	background-color: rgba(255, 255, 255, 0);
	border-color: #FFFFFF;
	color: #FFFFFF;
	font-family: Montserrat;
	font-size: 14px;
}

#cmp_e5a4d32b-2744-49d1-a669-79825e5d0b7e .hero-content .btn.btn-secondary:hover,
#cmp_e5a4d32b-2744-49d1-a669-79825e5d0b7e .hero-content .btn.btn-secondary:focus,
#cmp_e5a4d32b-2744-49d1-a669-79825e5d0b7e .hero-content .btn.btn-secondary:active,
#cmp_e5a4d32b-2744-49d1-a669-79825e5d0b7e .hero-content .btn.btn-secondary:active:focus {
	background-color: rgba(255, 255, 255, 0);
	border-color: #FFFFFF;
	color: #FFFFFF;
}

#cmp_e5a4d32b-2744-49d1-a669-79825e5d0b7e h1 {
	margin-top: 20px;
	margin-bottom: 10px;
}
#cmp_e5a4d32b-2744-49d1-a669-79825e5d0b7e p {
	margin-bottom: 25px;
}
/*
 * components/index/cmp_e6b097cb-4952-418f-9edf-55a09b436945/component.css
 */
#cmp_e6b097cb-4952-418f-9edf-55a09b436945 img {
	max-width: 100%;
}

/*
 * components/shop/listing/cmp_1ec3c5a5-e286-4c1c-b9f0-7935193d55b2/component.css
 */
#cmp_1ec3c5a5-e286-4c1c-b9f0-7935193d55b2 {
	justify-content: center;
	margin-bottom: 35px;
}

#cmp_1ec3c5a5-e286-4c1c-b9f0-7935193d55b2 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_5f6fc372-3bd6-453a-9326-82f4dfa781fd/component.css
 */
#cmp_5f6fc372-3bd6-453a-9326-82f4dfa781fd {
	justify-content: center;
}

#cmp_5f6fc372-3bd6-453a-9326-82f4dfa781fd ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

#cmp_5f6fc372-3bd6-453a-9326-82f4dfa781fd  {
	border-bottom: 1px solid #E1E1E1;
	margin-bottom: 35px;
	padding-bottom: 35px;
}
/*
 * components/shop/listing/cmp_924a7650-7045-4abe-a731-f53b5753fea2/component.css
 */
#cmp_924a7650-7045-4abe-a731-f53b5753fea2 {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_924a7650-7045-4abe-a731-f53b5753fea2 h1 {
	color: #333333;
	font-family: Libre Baskerville;
	font-size: 36px;
}

#cmp_924a7650-7045-4abe-a731-f53b5753fea2 h2 {
	color: #333333;
	font-family: Libre Baskerville;
	font-size: 24px;
}

#cmp_924a7650-7045-4abe-a731-f53b5753fea2 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 16px;
}

#cmp_924a7650-7045-4abe-a731-f53b5753fea2 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_924a7650-7045-4abe-a731-f53b5753fea2  {
	padding: 50px 0 15px;
}
#cmp_924a7650-7045-4abe-a731-f53b5753fea2 h1 {
	margin-bottom: 15px;
}
/*
 * components/shop/listing/cmp_b58c266c-6ee8-4cd8-8fde-103bbe5d51ab/component.css
 */
#cmp_b58c266c-6ee8-4cd8-8fde-103bbe5d51ab .shop-listing-item {
	color: #4A4A4A;
}

#cmp_b58c266c-6ee8-4cd8-8fde-103bbe5d51ab .shop-listing-item:hover,
#cmp_b58c266c-6ee8-4cd8-8fde-103bbe5d51ab .shop-listing-item:focus {
	text-decoration: none;
}

#cmp_b58c266c-6ee8-4cd8-8fde-103bbe5d51ab .shop-listing-item__image {
	background-size: cover;
	background-position: center center;
}

#cmp_b58c266c-6ee8-4cd8-8fde-103bbe5d51ab .shop-listing-item__name {
	margin: 10px 0;
}

#cmp_b58c266c-6ee8-4cd8-8fde-103bbe5d51ab .shop-listing-item__price {
	margin: 10px 0 30px;
}

#cmp_b58c266c-6ee8-4cd8-8fde-103bbe5d51ab .product_paging {
	-webkit-display: flex;
	-ms-display: flex;
	display: flex;
	justify-content: center;

	margin: 20px 0;
}

#cmp_b58c266c-6ee8-4cd8-8fde-103bbe5d51ab .product_page a,
#cmp_b58c266c-6ee8-4cd8-8fde-103bbe5d51ab .next_page a,
#cmp_b58c266c-6ee8-4cd8-8fde-103bbe5d51ab .prev_page a {
	display: block;
	padding: 12px 15px;
	margin: 0 2px;
	border: 1px solid #E0E0E0;
	border-radius: 5px;
}

#cmp_b58c266c-6ee8-4cd8-8fde-103bbe5d51ab .product_page.active a,
#cmp_b58c266c-6ee8-4cd8-8fde-103bbe5d51ab .product_page a:hover,
#cmp_b58c266c-6ee8-4cd8-8fde-103bbe5d51ab .product_page a:focus,
#cmp_b58c266c-6ee8-4cd8-8fde-103bbe5d51ab .next_page a:hover,
#cmp_b58c266c-6ee8-4cd8-8fde-103bbe5d51ab .next_page a:focus,
#cmp_b58c266c-6ee8-4cd8-8fde-103bbe5d51ab .prev_page a:hover,
#cmp_b58c266c-6ee8-4cd8-8fde-103bbe5d51ab .prev_page a:focus {
	text-decoration: none;
	background-color: #F9F9F9;
}

#cmp_b58c266c-6ee8-4cd8-8fde-103bbe5d51ab .product_page.active a {
	color: black;
}

/*
 * components/shop/product/cmp_1ada234e-4dd2-4bf4-a9e5-146841e09196/component.css
 */
#cmp_1ada234e-4dd2-4bf4-a9e5-146841e09196 .shop-product__name {
	margin-bottom: 10px;
}

#cmp_1ada234e-4dd2-4bf4-a9e5-146841e09196 .shop-product__price {
	margin-bottom: 20px;
}

#cmp_1ada234e-4dd2-4bf4-a9e5-146841e09196 .shop-product select {
	width: auto;
}

#cmp_1ada234e-4dd2-4bf4-a9e5-146841e09196 .shop-product__add-to-cart {
	margin-bottom: 20px;
}

#cmp_1ada234e-4dd2-4bf4-a9e5-146841e09196 .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin-bottom: 40px;
}

#cmp_1ada234e-4dd2-4bf4-a9e5-146841e09196 .shop-product__review-share-desktop .col-xs-6 {
	padding-top: 10px;
}

#cmp_1ada234e-4dd2-4bf4-a9e5-146841e09196 .shop-product__review-share-desktop .col-xs-6 + .col-xs-6 {
	border-left: 1px solid #E1E1E1;
}

/*
 * components/shop/product/cmp_5fca9257-f34a-4d82-84cf-a90a717f5f56/component.css
 */
#cmp_5fca9257-f34a-4d82-84cf-a90a717f5f56.shop-product-header {
	padding: 50px 0 15px;
}

/*
 * components/sidebar/cmp_1352b635-2ae6-4415-a78b-987453c88fbf/component.css
 */
#cmp_1352b635-2ae6-4415-a78b-987453c88fbf > header {
	margin-bottom: 40px;
}
#cmp_1352b635-2ae6-4415-a78b-987453c88fbf .item {
	position: relative;
	margin-bottom: 30px;
}
#cmp_1352b635-2ae6-4415-a78b-987453c88fbf .item > .pull-left {
	margin-right: 20px;
	width: 65px;
}
#cmp_1352b635-2ae6-4415-a78b-987453c88fbf .item .meta {
	margin: 0;
	line-height: 120%;
}
#cmp_1352b635-2ae6-4415-a78b-987453c88fbf .item .media-heading {
	padding-right: 15px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
#cmp_1352b635-2ae6-4415-a78b-987453c88fbf .item .close {
	position: absolute;
	top: 0;
	right: 0;
	opacity: 1;
	filter: alpha(opacity=100);
	color: #fff;
	text-shadow: none;
}
#cmp_1352b635-2ae6-4415-a78b-987453c88fbf .total {
	margin-bottom: 25px;
	padding: 25px 0;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}
#cmp_1352b635-2ae6-4415-a78b-987453c88fbf .total .dt {
	text-align: right;
}
#cmp_1352b635-2ae6-4415-a78b-987453c88fbf .total .strong {
	font-size: 15px;
}

/*
 * components/sold_out/cmp_80418b35-8db9-484d-9711-5da946d7c7ea/component.css
 */
#cmp_80418b35-8db9-484d-9711-5da946d7c7ea {
	background-color: #FFFFFF;
}

#cmp_80418b35-8db9-484d-9711-5da946d7c7ea h1 {
	color: #333333;
	font-family: Libre Baskerville;
	font-size: 36px;
}

#cmp_80418b35-8db9-484d-9711-5da946d7c7ea h2 {
	color: #333333;
	font-family: Libre Baskerville;
	font-size: 24px;
}

#cmp_80418b35-8db9-484d-9711-5da946d7c7ea h3 {
	color: #333333;
	font-family: Lato;
	font-size: 16px;
}

#cmp_80418b35-8db9-484d-9711-5da946d7c7ea p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_80418b35-8db9-484d-9711-5da946d7c7ea .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_80418b35-8db9-484d-9711-5da946d7c7ea .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_80418b35-8db9-484d-9711-5da946d7c7ea .btn {
	background-color: rgb(138, 54, 212);
	color: #FFFFFF;
	font-family: Montserrat;
	font-size: 14px;
}

#cmp_80418b35-8db9-484d-9711-5da946d7c7ea .btn:hover {
	background-color: #79706A;
	color: #FFFFFF;
}

#cmp_80418b35-8db9-484d-9711-5da946d7c7ea  {
	padding-bottom: 50px;
}
/*
 * components/sold_out/cmp_fb12d13b-0e15-4148-9840-d53278a752a9/component.css
 */
#cmp_fb12d13b-0e15-4148-9840-d53278a752a9 img {
	max-width: 100%;
}

#cmp_fb12d13b-0e15-4148-9840-d53278a752a9  {
	padding-top: 50px;
}
/*
 * components/subscribe/cmp_1127540c-1847-4c23-a862-80cbe2cf0e0a/component.css
 */
#cmp_1127540c-1847-4c23-a862-80cbe2cf0e0a {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_1127540c-1847-4c23-a862-80cbe2cf0e0a h1 {
	color: #333333;
	font-family: Libre Baskerville;
	font-size: 36px;
}

#cmp_1127540c-1847-4c23-a862-80cbe2cf0e0a h2 {
	color: #333333;
	font-family: Libre Baskerville;
	font-size: 24px;
}

#cmp_1127540c-1847-4c23-a862-80cbe2cf0e0a h3 {
	color: #333333;
	font-family: Lato;
	font-size: 16px;
}

#cmp_1127540c-1847-4c23-a862-80cbe2cf0e0a p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/subscribe/cmp_39754f5d-f626-45c0-aead-7c5098e5eb34/component.css
 */
#cmp_39754f5d-f626-45c0-aead-7c5098e5eb34 img {
	max-width: 100%;
}

/*
 * components/subscribe/cmp_f0b8cd06-3189-4f7c-87a3-33fe377619f1/component.css
 */

/*
 * components/subscribe_flow/survey_step/cmp_ec8db86a-3d36-4f09-8183-25ec9e6de60f/component.css
 */
#cmp_ec8db86a-3d36-4f09-8183-25ec9e6de60f.survey h2 {
	margin-bottom: 0.5em;
}

#cmp_ec8db86a-3d36-4f09-8183-25ec9e6de60f.survey .radio input[type="radio"],
#cmp_ec8db86a-3d36-4f09-8183-25ec9e6de60f.survey .checkbox input[type="checkbox"] {
	margin-right: 0.5em;
}

#cmp_ec8db86a-3d36-4f09-8183-25ec9e6de60f.survey .survey-field {
	margin-bottom: 2em;
}

/*
 * components/subscribe_flow/survey_step/cmp_f30ac21e-25a1-42a8-ab66-ebd2978c289d/component.css
 */
#cmp_f30ac21e-25a1-42a8-ab66-ebd2978c289d {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/terms_step/cmp_b82ee98c-4f9c-46d6-a39a-4b206cd89af6/component.css
 */
#cmp_b82ee98c-4f9c-46d6-a39a-4b206cd89af6 {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/terms_step/cmp_c43a6105-15f0-4a75-9be4-6b38059c777e/component.css
 */

/*
 * components/subscribe_flow/variant_step/cmp_3d4378ce-0777-4ef6-8aec-75434b1c9fda/component.css
 */
#cmp_3d4378ce-0777-4ef6-8aec-75434b1c9fda {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/variant_step/cmp_963a1530-250d-4ffa-b8d9-21d17c0d88c8/component.css
 */