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

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

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

h1 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 48px;
	letter-spacing: 1px;
	line-height: 1;
	margin: 0 0 25px 0;
}

h2 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 32px;
	margin: 0 0 25px 0;
}

h3 {
	color: rgb(83, 152, 190);
	font-family: Playfair Display;
	font-size: 24px;
	margin: 0 0 25px 0;
}

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

a,
.btn-link {
	color: rgb(58, 23, 114);
}

a:hover,
a:focus,
a:active,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
	color: rgb(83, 152, 190);
}

/* General Component Styles */
section[class^="component"] {
	padding: 60px 0;
}

section.headline {
	margin-bottom: 15px;
}

/* Utility Classes */
.hidden {
	display: none;
}

.text-center {
	text-align: center;
}

.flex-center {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

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

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

.row-reverse {
	-webkit-flex-direction: row-reverse;
	-moz-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.square-img-container {
	padding: 0;
	position: relative;

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

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

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

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

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

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

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

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

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

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

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

.nav-pills .nav-link.active,
.nav-pills .nav-link.active:focus,
.nav-pills .nav-link.active:hover,
.nav-pills .nav-link.active:active,
.nav-pills .nav-item.open .nav-link,
.nav-pills .nav-item.open .nav-link:focus,
.nav-pills .nav-item.open .nav-link:hover,
.nav-pills .nav-item.open .nav-link:active {
	background-color: rgb(58, 23, 114);
}

.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(58, 23, 114);
	color: rgb(58, 23, 114);
	padding: 0.6em 1.8em;
}

.btn-small:hover,
.btn-small:focus,
.btn-small:active,
.btn-small:active:focus {
	background-color: rgb(58, 23, 114);
	border-color: rgb(58, 23, 114);
}

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

.btn-primary {
	background-color: rgb(58, 23, 114);
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
	letter-spacing: 0.167em;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus {
	background-color: rgb(83, 152, 190);
	color: #FFFFFF;
}

.btn-secondary {
	background-color: rgb(215, 65, 167);
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
	letter-spacing: 0.167em;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:active:focus {
	background-color: rgb(83, 152, 190);
	color: #FFFFFF;
}

.btn-empty {
	background-color: transparent;
	border: 1px solid rgb(58, 23, 114);
	color: rgb(58, 23, 114);
}

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

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

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

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

	padding: .9375rem 0;
}

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

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

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

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

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

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

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

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

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

/* Orders List
------------------------------*/
.orders-list {
	width: 100%;
	margin: 25px 0;
}
.orders-list h1 {
	text-align: center;
	color: rgb(58, 23, 114);
}
.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(58, 23, 114);
	border: none;
	color: #FFFFFF;
	font-family: Open Sans;
	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(83, 152, 190);
	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(58, 23, 114);
}

.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(58, 23, 114);
	color: rgb(58, 23, 114);
	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(83, 152, 190);
	border-color: rgb(83, 152, 190);
	text-decoration: none;
}

/* Media Queries
------------------------------*/
@media (max-width: 767px) {
	section[class^="component"] {
		padding: 40px 0;
	}
	/* Used to reverse a row when it wraps on smaller screens */
	.row-sm-reverse {
		-webkit-flex-wrap: wrap-reverse;
		-moz-flex-wrap: wrap-reverse;
		-ms-flex-wrap: wrap-reverse;
		flex-wrap: wrap-reverse;
	}
	.panel-cratejoy .pull-right,
	.panel-cratejoy .pull-left,
	.skip-dialog .pull-right,
	.skip-dialog .pull-left,
	.subscription_cancel .pull-right,
	.subscription_cancel .pull-left,
	#edit-subscription-form .pull-right,
	#edit-subscription-form .pull-left {
		float: none;
		width: 100%;
		margin: 10px 0;
	}
}

@media (min-width: 768px) {
	.account-header .gift-card-container {
		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
	}
	.account-header .gift-card-balance {
		margin: 0;
	}
}

@media (min-width: 992px) {
	.account-header h1,
	.account-header h2 {
		margin: 0;
	}
}

/*
 * components/about/cmp_08229abf-a207-4e73-b664-9cd3ce92be38/component.css
 */
#cmp_08229abf-a207-4e73-b664-9cd3ce92be38 {
	background-color: rgb(215, 65, 167);
}

#cmp_08229abf-a207-4e73-b664-9cd3ce92be38 h1 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_08229abf-a207-4e73-b664-9cd3ce92be38 h2 {
	color: #FFFFFF;
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_08229abf-a207-4e73-b664-9cd3ce92be38 h3 {
	color: rgb(83, 152, 190);
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_08229abf-a207-4e73-b664-9cd3ce92be38 p {
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_08229abf-a207-4e73-b664-9cd3ce92be38 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_08229abf-a207-4e73-b664-9cd3ce92be38 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_08229abf-a207-4e73-b664-9cd3ce92be38 ul {
	list-style: disc;
	list-style-position: inside;
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

/*
 * components/about/cmp_71000b00-9dba-4b5a-ac13-6713adefad31/component.css
 */
#cmp_71000b00-9dba-4b5a-ac13-6713adefad31 {
	background-color: #FFFFFF;
}

#cmp_71000b00-9dba-4b5a-ac13-6713adefad31 h1 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_71000b00-9dba-4b5a-ac13-6713adefad31 h2 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_71000b00-9dba-4b5a-ac13-6713adefad31 h3 {
	color: rgb(83, 152, 190);
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_71000b00-9dba-4b5a-ac13-6713adefad31 p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_71000b00-9dba-4b5a-ac13-6713adefad31 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_71000b00-9dba-4b5a-ac13-6713adefad31 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_71000b00-9dba-4b5a-ac13-6713adefad31 ul {
	list-style: disc;
	list-style-position: inside;
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_71000b00-9dba-4b5a-ac13-6713adefad31  {
	padding-bottom: 0;
}
/*
 * components/about/cmp_74e7e5ce-bb87-4118-a190-eba569b833a2/component.css
 */
#cmp_74e7e5ce-bb87-4118-a190-eba569b833a2 {
	background-color: #FFFFFF;
}

#cmp_74e7e5ce-bb87-4118-a190-eba569b833a2 h1 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_74e7e5ce-bb87-4118-a190-eba569b833a2 h2 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_74e7e5ce-bb87-4118-a190-eba569b833a2 h3 {
	color: rgb(83, 152, 190);
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_74e7e5ce-bb87-4118-a190-eba569b833a2 p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_74e7e5ce-bb87-4118-a190-eba569b833a2 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_74e7e5ce-bb87-4118-a190-eba569b833a2 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_74e7e5ce-bb87-4118-a190-eba569b833a2 ul {
	list-style: disc;
	list-style-position: inside;
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

/*
 * components/about/cmp_75c4d5f8-f905-4cb9-874d-c6dc6ceb1d7e/component.css
 */
#cmp_75c4d5f8-f905-4cb9-874d-c6dc6ceb1d7e {
	background-color: rgb(215, 65, 167);
}

#cmp_75c4d5f8-f905-4cb9-874d-c6dc6ceb1d7e h1 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_75c4d5f8-f905-4cb9-874d-c6dc6ceb1d7e h2 {
	color: #FFFFFF;
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_75c4d5f8-f905-4cb9-874d-c6dc6ceb1d7e h3 {
	color: rgb(83, 152, 190);
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_75c4d5f8-f905-4cb9-874d-c6dc6ceb1d7e p {
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}


#cmp_75c4d5f8-f905-4cb9-874d-c6dc6ceb1d7e .btn {
	background-color: rgb(58, 23, 114);
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_75c4d5f8-f905-4cb9-874d-c6dc6ceb1d7e .btn:hover {
	background-color: rgb(83, 152, 190);
	color: #FFFFFF;
}

#cmp_75c4d5f8-f905-4cb9-874d-c6dc6ceb1d7e .component-rich-text-with-button__content-row,
#cmp_75c4d5f8-f905-4cb9-874d-c6dc6ceb1d7e .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_75c4d5f8-f905-4cb9-874d-c6dc6ceb1d7e .component-rich-text-with-button__content-row,
	#cmp_75c4d5f8-f905-4cb9-874d-c6dc6ceb1d7e .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_75c4d5f8-f905-4cb9-874d-c6dc6ceb1d7e ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_75c4d5f8-f905-4cb9-874d-c6dc6ceb1d7e ul {
	list-style: disc;
	list-style-position: inside;
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

/*
 * components/about/cmp_d91164d3-94b8-4513-80b2-70cac815b988/component.css
 */
#cmp_d91164d3-94b8-4513-80b2-70cac815b988 {
	background-color: #FFFFFF;
}

#cmp_d91164d3-94b8-4513-80b2-70cac815b988 .content-row {
	margin: 0;

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

#cmp_d91164d3-94b8-4513-80b2-70cac815b988 .content {
	background-color: #FFFFFF;
	border: 5px solid #FFFFFF;
	margin: 15px 0;
	padding: 25px;

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

#cmp_d91164d3-94b8-4513-80b2-70cac815b988 .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_d91164d3-94b8-4513-80b2-70cac815b988 h1 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_d91164d3-94b8-4513-80b2-70cac815b988 h2 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_d91164d3-94b8-4513-80b2-70cac815b988 h3 {
	color: rgb(83, 152, 190);
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_d91164d3-94b8-4513-80b2-70cac815b988 p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_d91164d3-94b8-4513-80b2-70cac815b988 .content {
		margin: 15px;
	}
}
#cmp_d91164d3-94b8-4513-80b2-70cac815b988  {
	padding-top: 0;
}
/*
 * components/checkout/cmp_3c8a0297-e112-4ea5-8809-2eed2f7dde5c/component.css
 */
#cmp_3c8a0297-e112-4ea5-8809-2eed2f7dde5c .checkout_content {
	overflow: auto;
}

#cmp_3c8a0297-e112-4ea5-8809-2eed2f7dde5c .checkout_content section {
	border-color: #F5F5F5;
}

#cmp_3c8a0297-e112-4ea5-8809-2eed2f7dde5c .cart_listing table {
	border-color: #F5F5F5;
}

/*
 * components/customer/account/cmp_e7f071be-b136-4a1e-b767-1b61729ddf54/component.css
 */

/*
 * components/customer/edit/cmp_c4fdf0a6-4e06-4989-a938-d7482a5d8783/component.css
 */

/*
 * components/customer/forgot_password/cmp_188d6b3d-6778-4485-9c88-1f74c8592b18/component.css
 */
#cmp_188d6b3d-6778-4485-9c88-1f74c8592b18 {
	padding: 0 0 120px 0;
}
/*
 * components/customer/forgot_password/cmp_b50939db-3e6a-4281-864e-0ad904d8d635/component.css
 */
#cmp_b50939db-3e6a-4281-864e-0ad904d8d635 {
	background-color: #FFFFFF;
}

#cmp_b50939db-3e6a-4281-864e-0ad904d8d635 h1 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_b50939db-3e6a-4281-864e-0ad904d8d635 h2 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_b50939db-3e6a-4281-864e-0ad904d8d635 h3 {
	color: rgb(83, 152, 190);
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_b50939db-3e6a-4281-864e-0ad904d8d635 p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_b50939db-3e6a-4281-864e-0ad904d8d635 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_b50939db-3e6a-4281-864e-0ad904d8d635 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_b50939db-3e6a-4281-864e-0ad904d8d635 ul {
	list-style: disc;
	list-style-position: inside;
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

/*
 * components/customer/login/cmp_6b15a5a9-9d4c-47d3-a4ae-8965588e6b5b/component.css
 */
#cmp_6b15a5a9-9d4c-47d3-a4ae-8965588e6b5b {
	padding: 0 0 120px 0;
}
/*
 * components/customer/login/cmp_c51fcaf3-97a1-4c05-a923-31dd81c14ec5/component.css
 */
#cmp_c51fcaf3-97a1-4c05-a923-31dd81c14ec5 {
	background-color: #FFFFFF;
}

#cmp_c51fcaf3-97a1-4c05-a923-31dd81c14ec5 h1 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_c51fcaf3-97a1-4c05-a923-31dd81c14ec5 h2 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_c51fcaf3-97a1-4c05-a923-31dd81c14ec5 h3 {
	color: rgb(83, 152, 190);
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_c51fcaf3-97a1-4c05-a923-31dd81c14ec5 p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_c51fcaf3-97a1-4c05-a923-31dd81c14ec5 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_c51fcaf3-97a1-4c05-a923-31dd81c14ec5 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_c51fcaf3-97a1-4c05-a923-31dd81c14ec5 ul {
	list-style: disc;
	list-style-position: inside;
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

/*
 * components/customer/orders/cmp_09cc331a-1e6d-469c-9dcb-f4ddd7b09273/component.css
 */

/*
 * components/customer/password_reset/cmp_3c79768e-301e-4b8d-9d19-cd2e77a4f0ef/component.css
 */
#cmp_3c79768e-301e-4b8d-9d19-cd2e77a4f0ef {
	background-color: #FFFFFF;
}

#cmp_3c79768e-301e-4b8d-9d19-cd2e77a4f0ef h1 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_3c79768e-301e-4b8d-9d19-cd2e77a4f0ef h2 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_3c79768e-301e-4b8d-9d19-cd2e77a4f0ef h3 {
	color: rgb(83, 152, 190);
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_3c79768e-301e-4b8d-9d19-cd2e77a4f0ef p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_3c79768e-301e-4b8d-9d19-cd2e77a4f0ef .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_3c79768e-301e-4b8d-9d19-cd2e77a4f0ef ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_3c79768e-301e-4b8d-9d19-cd2e77a4f0ef ul {
	list-style: disc;
	list-style-position: inside;
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

/*
 * components/customer/password_reset/cmp_4a9b508f-80fa-46b9-a567-418dae575b63/component.css
 */
#cmp_4a9b508f-80fa-46b9-a567-418dae575b63 {
	padding: 0 0 120px 0;
}
/*
 * components/customer/thank_you/cmp_50f6fe9e-b3b5-4296-b908-85339586aa05/component.css
 */

/*
 * components/faq/cmp_774f729c-a193-444d-8acd-7cf88ba271dc/component.css
 */
#cmp_774f729c-a193-444d-8acd-7cf88ba271dc {
	background-color: rgb(0, 0, 0);
}

#cmp_774f729c-a193-444d-8acd-7cf88ba271dc h1 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_774f729c-a193-444d-8acd-7cf88ba271dc h2 {
	color: #FFFFFF;
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_774f729c-a193-444d-8acd-7cf88ba271dc h3 {
	color: rgb(83, 152, 190);
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_774f729c-a193-444d-8acd-7cf88ba271dc p {
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}


#cmp_774f729c-a193-444d-8acd-7cf88ba271dc .btn {
	background-color: rgb(58, 23, 114);
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_774f729c-a193-444d-8acd-7cf88ba271dc .btn:hover {
	background-color: rgb(83, 152, 190);
	color: #FFFFFF;
}

#cmp_774f729c-a193-444d-8acd-7cf88ba271dc .component-rich-text-with-button__content-row,
#cmp_774f729c-a193-444d-8acd-7cf88ba271dc .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_774f729c-a193-444d-8acd-7cf88ba271dc .component-rich-text-with-button__content-row,
	#cmp_774f729c-a193-444d-8acd-7cf88ba271dc .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_774f729c-a193-444d-8acd-7cf88ba271dc ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_774f729c-a193-444d-8acd-7cf88ba271dc ul {
	list-style: disc;
	list-style-position: inside;
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

/*
 * components/faq/cmp_d80ecbcc-d963-4dda-9455-9efcda6022a1/component.css
 */
#cmp_d80ecbcc-d963-4dda-9455-9efcda6022a1 {
	background-color: #FFFFFF;
}

#cmp_d80ecbcc-d963-4dda-9455-9efcda6022a1 h1 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_d80ecbcc-d963-4dda-9455-9efcda6022a1 h2 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_d80ecbcc-d963-4dda-9455-9efcda6022a1 h3 {
	color: #000000;
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_d80ecbcc-d963-4dda-9455-9efcda6022a1 p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_d80ecbcc-d963-4dda-9455-9efcda6022a1 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_d80ecbcc-d963-4dda-9455-9efcda6022a1 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_d80ecbcc-d963-4dda-9455-9efcda6022a1 ul {
	list-style: disc;
	list-style-position: inside;
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_d80ecbcc-d963-4dda-9455-9efcda6022a1 h2 {
	margin: 0 0 40px 0;
}
#cmp_d80ecbcc-d963-4dda-9455-9efcda6022a1 p {
	border-bottom: 1px solid #EEEEEE;
	padding: 0 0 25px 0;
}
/*
 * components/global/cmp_07507f38-6e62-4671-b8c5-6c0f608fc502/component.css
 */
#cmp_07507f38-6e62-4671-b8c5-6c0f608fc502 {
	background-color: #FFFFFF;
}

#cmp_07507f38-6e62-4671-b8c5-6c0f608fc502 h1 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_07507f38-6e62-4671-b8c5-6c0f608fc502 h2 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_07507f38-6e62-4671-b8c5-6c0f608fc502 h3 {
	color: rgb(83, 152, 190);
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_07507f38-6e62-4671-b8c5-6c0f608fc502 p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}


#cmp_07507f38-6e62-4671-b8c5-6c0f608fc502 .btn {
	background-color: rgb(58, 23, 114);
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_07507f38-6e62-4671-b8c5-6c0f608fc502 .btn:hover {
	background-color: rgb(83, 152, 190);
	color: #FFFFFF;
}

#cmp_07507f38-6e62-4671-b8c5-6c0f608fc502 .component-rich-text-with-button__content-row,
#cmp_07507f38-6e62-4671-b8c5-6c0f608fc502 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_07507f38-6e62-4671-b8c5-6c0f608fc502 .component-rich-text-with-button__content-row,
	#cmp_07507f38-6e62-4671-b8c5-6c0f608fc502 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_07507f38-6e62-4671-b8c5-6c0f608fc502 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_07507f38-6e62-4671-b8c5-6c0f608fc502 ul {
	list-style: disc;
	list-style-position: inside;
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_07507f38-6e62-4671-b8c5-6c0f608fc502  {
	padding-top: 0;
}
/*
 * components/global/cmp_1b391381-f4fc-44fa-aadf-c4afe7b2cf5a/component.css
 */
#cmp_1b391381-f4fc-44fa-aadf-c4afe7b2cf5a {
	border-bottom: 4px solid #E7E6E5;
	padding: 0;
}

#cmp_1b391381-f4fc-44fa-aadf-c4afe7b2cf5a .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_1b391381-f4fc-44fa-aadf-c4afe7b2cf5a .navbar a:hover,
#cmp_1b391381-f4fc-44fa-aadf-c4afe7b2cf5a .navbar a:focus,
#cmp_1b391381-f4fc-44fa-aadf-c4afe7b2cf5a .navbar a:active {
	color: rgb(215, 65, 167);
}

#cmp_1b391381-f4fc-44fa-aadf-c4afe7b2cf5a .navbar-brand {
	color: #000000;
	font-family: Playfair Display;
	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_1b391381-f4fc-44fa-aadf-c4afe7b2cf5a .navbar-brand img {
	max-width: 100%;
}

#cmp_1b391381-f4fc-44fa-aadf-c4afe7b2cf5a .navbar .navbar-toggler {
	background-color: rgb(58, 23, 114);
	border-radius: 0;
	color: #FFFFFF;
	font-size: 14px;
	letter-spacing: 0.071em;
	padding: 15px;
	text-transform: uppercase;
}

#cmp_1b391381-f4fc-44fa-aadf-c4afe7b2cf5a .navbar .navbar-toggler:hover,
#cmp_1b391381-f4fc-44fa-aadf-c4afe7b2cf5a .navbar .navbar-toggler:focus,
#cmp_1b391381-f4fc-44fa-aadf-c4afe7b2cf5a .navbar .navbar-toggler:active {
	background-color: rgb(83, 152, 190);
	color: #FFFFFF;
}

#cmp_1b391381-f4fc-44fa-aadf-c4afe7b2cf5a .navbar-nav {
	background-color: rgb(58, 23, 114);
	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_1b391381-f4fc-44fa-aadf-c4afe7b2cf5a .navbar-nav li {
	padding-top: 10px;
	padding-bottom: 10px;
}

#cmp_1b391381-f4fc-44fa-aadf-c4afe7b2cf5a .navbar-nav .nav-link {
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;;
	padding: 15px;
	text-align: center;
}

@media (max-width: 767px) {
	#cmp_1b391381-f4fc-44fa-aadf-c4afe7b2cf5a {
		border-width: 0;
	}
	#cmp_1b391381-f4fc-44fa-aadf-c4afe7b2cf5a .dropdown-menu {
		background-color: rgb(58, 23, 114);
	}
}

@media (min-width: 768px) {
	#cmp_1b391381-f4fc-44fa-aadf-c4afe7b2cf5a .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_1b391381-f4fc-44fa-aadf-c4afe7b2cf5a .navbar-brand {
		padding: 0;
		padding-bottom: 15px;
	}
	#cmp_1b391381-f4fc-44fa-aadf-c4afe7b2cf5a .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_1b391381-f4fc-44fa-aadf-c4afe7b2cf5a .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_1b391381-f4fc-44fa-aadf-c4afe7b2cf5a .navbar-nav li {
		padding: 0;
	}
	#cmp_1b391381-f4fc-44fa-aadf-c4afe7b2cf5a .navbar-nav .nav-link {
		color: #7B7770;
	}
	#cmp_1b391381-f4fc-44fa-aadf-c4afe7b2cf5a .navbar a:hover,
	#cmp_1b391381-f4fc-44fa-aadf-c4afe7b2cf5a .navbar a:focus,
	#cmp_1b391381-f4fc-44fa-aadf-c4afe7b2cf5a .navbar a:active {
		color: rgb(58, 23, 114);
	}
}

/*
 * components/global/cmp_1e6ff66c-975b-4d64-9587-19b11ceb5338/component.css
 */
#cmp_1e6ff66c-975b-4d64-9587-19b11ceb5338.footer {
	background-color: rgb(83, 152, 190);
	color: #7B7770;
	font-family: Open Sans;
	padding: 25px 0;

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

#cmp_1e6ff66c-975b-4d64-9587-19b11ceb5338.footer p {
	color: #7B7770;
}

#cmp_1e6ff66c-975b-4d64-9587-19b11ceb5338 .footer-subscribe {
	padding: 15px 0;
}

#cmp_1e6ff66c-975b-4d64-9587-19b11ceb5338 .footer-subscribe .btn {
	border: 1px solid #FFFFFF;
}

#cmp_1e6ff66c-975b-4d64-9587-19b11ceb5338 .footer-social {
	padding: 15px 0;
}

#cmp_1e6ff66c-975b-4d64-9587-19b11ceb5338 .footer-social a {
	display: inline-block;
	padding: 0 5px;
}

#cmp_1e6ff66c-975b-4d64-9587-19b11ceb5338 .footer-social svg path {
	fill: rgb(58, 23, 114);
}

#cmp_1e6ff66c-975b-4d64-9587-19b11ceb5338 .footer-social a:hover svg path,
#cmp_1e6ff66c-975b-4d64-9587-19b11ceb5338 .footer-social a:focus svg path,
#cmp_1e6ff66c-975b-4d64-9587-19b11ceb5338 .footer-social a:active svg path {
	fill: rgb(215, 65, 167);
}

#cmp_1e6ff66c-975b-4d64-9587-19b11ceb5338 .footer-contact {
	padding: 15px 0;

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

#cmp_1e6ff66c-975b-4d64-9587-19b11ceb5338 .footer-contact p {
	margin: 0 0 0.5em 0;
}

@media (min-width: 768px) {
	#cmp_1e6ff66c-975b-4d64-9587-19b11ceb5338.footer {
		padding: 40px 0;

		-webkit-align-items: flex-start;
		-moz-align-items: flex-start;
		-ms-align-items: flex-start;
		align-items: flex-start;

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

/*
 * components/howitworks/cmp_607da4df-4a05-4626-a8e1-ae810b8bca49/component.css
 */
#cmp_607da4df-4a05-4626-a8e1-ae810b8bca49 {
	background-color: rgb(0, 0, 0);
}

#cmp_607da4df-4a05-4626-a8e1-ae810b8bca49 .content-row {
	margin: 0;

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

#cmp_607da4df-4a05-4626-a8e1-ae810b8bca49 .content {
	background-color: #FFFFFF;
	border: 5px solid #FFFFFF;
	margin: 15px 0;
	padding: 25px;

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

#cmp_607da4df-4a05-4626-a8e1-ae810b8bca49 h1 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 48px;
	margin-bottom: 0;
}

#cmp_607da4df-4a05-4626-a8e1-ae810b8bca49 h2 {
	color: #C7C3C2;
	font-family: Playfair Display;
	font-size: 32px;
	margin-bottom: 0;
}

#cmp_607da4df-4a05-4626-a8e1-ae810b8bca49 h3 {
	color: rgb(83, 152, 190);
	font-family: Open Sans;
	font-size: 14px;
	margin-bottom: 15px;
}

#cmp_607da4df-4a05-4626-a8e1-ae810b8bca49 p {
	color: #C7C3C2;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_607da4df-4a05-4626-a8e1-ae810b8bca49 hr {
	border-top: 1px solid #EEE;
	width: 100%;
}

@media (min-width: 768px) {
	#cmp_607da4df-4a05-4626-a8e1-ae810b8bca49 .content {
		margin: 15px;
	}
}
#cmp_607da4df-4a05-4626-a8e1-ae810b8bca49  {
	padding-top: 0;
}
/*
 * components/howitworks/cmp_b99fd075-97ce-42a1-8f90-67d87165d366/component.css
 */
#cmp_b99fd075-97ce-42a1-8f90-67d87165d366 {
	background-color: rgb(0, 0, 0);
}

#cmp_b99fd075-97ce-42a1-8f90-67d87165d366 h1 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_b99fd075-97ce-42a1-8f90-67d87165d366 h2 {
	color: #FFFFFF;
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_b99fd075-97ce-42a1-8f90-67d87165d366 h3 {
	color: rgb(83, 152, 190);
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_b99fd075-97ce-42a1-8f90-67d87165d366 p {
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_b99fd075-97ce-42a1-8f90-67d87165d366 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_b99fd075-97ce-42a1-8f90-67d87165d366 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_b99fd075-97ce-42a1-8f90-67d87165d366 ul {
	list-style: disc;
	list-style-position: inside;
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_b99fd075-97ce-42a1-8f90-67d87165d366  {
	padding-bottom: 0;
}
/*
 * components/howitworks/cmp_bab6e21f-54ed-49cb-8a84-bcde3a42484d/component.css
 */
#cmp_bab6e21f-54ed-49cb-8a84-bcde3a42484d {
	background-color: #FFFFFF;
}

#cmp_bab6e21f-54ed-49cb-8a84-bcde3a42484d h1 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_bab6e21f-54ed-49cb-8a84-bcde3a42484d h2 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_bab6e21f-54ed-49cb-8a84-bcde3a42484d h3 {
	color: rgb(83, 152, 190);
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_bab6e21f-54ed-49cb-8a84-bcde3a42484d p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}


#cmp_bab6e21f-54ed-49cb-8a84-bcde3a42484d .btn {
	background-color: rgb(58, 23, 114);
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_bab6e21f-54ed-49cb-8a84-bcde3a42484d .btn:hover {
	background-color: rgb(83, 152, 190);
	color: #FFFFFF;
}

#cmp_bab6e21f-54ed-49cb-8a84-bcde3a42484d .component-rich-text-with-button__content-row,
#cmp_bab6e21f-54ed-49cb-8a84-bcde3a42484d .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_bab6e21f-54ed-49cb-8a84-bcde3a42484d .component-rich-text-with-button__content-row,
	#cmp_bab6e21f-54ed-49cb-8a84-bcde3a42484d .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_bab6e21f-54ed-49cb-8a84-bcde3a42484d ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_bab6e21f-54ed-49cb-8a84-bcde3a42484d ul {
	list-style: disc;
	list-style-position: inside;
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

/*
 * components/index/cmp_15fecec5-e28b-4ab5-96fa-946cbe0b8642/component.css
 */
#cmp_15fecec5-e28b-4ab5-96fa-946cbe0b8642 {
	background-position: right bottom !important;
	background-repeat: no-repeat !important;
	margin: 0;
	min-height: calc(100vh - 100px);
	padding: 0;

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

#cmp_15fecec5-e28b-4ab5-96fa-946cbe0b8642 .container-fluid {
	width: 100%;
}

#cmp_15fecec5-e28b-4ab5-96fa-946cbe0b8642 .hero-row {
	margin: 0;
}

#cmp_15fecec5-e28b-4ab5-96fa-946cbe0b8642 .hero-content {
	margin: 0;
	text-align: center;
}

#cmp_15fecec5-e28b-4ab5-96fa-946cbe0b8642 .hero-content h1 {
	color: #FFFFFF;
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_15fecec5-e28b-4ab5-96fa-946cbe0b8642 .hero-content h2 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_15fecec5-e28b-4ab5-96fa-946cbe0b8642 .hero-content h3 {
	color: rgb(83, 152, 190);
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_15fecec5-e28b-4ab5-96fa-946cbe0b8642 .hero-content p {
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_15fecec5-e28b-4ab5-96fa-946cbe0b8642 .hero-content .button-container {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

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

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

#cmp_15fecec5-e28b-4ab5-96fa-946cbe0b8642 .hero-content .btn {
	margin: 5px 0;
	padding: 1em;
	white-space: normal;
	width: 90%;
}

#cmp_15fecec5-e28b-4ab5-96fa-946cbe0b8642 .hero-content .btn-primary {
	background-color: rgb(58, 23, 114);
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_15fecec5-e28b-4ab5-96fa-946cbe0b8642 .hero-content .btn-primary:hover,
#cmp_15fecec5-e28b-4ab5-96fa-946cbe0b8642 .hero-content .btn-primary:focus,
#cmp_15fecec5-e28b-4ab5-96fa-946cbe0b8642 .hero-content .btn-primary:active {
	background-color: rgb(83, 152, 190);
	color: #FFFFFF;
}

#cmp_15fecec5-e28b-4ab5-96fa-946cbe0b8642 .hero-content .btn-secondary {
	background-color: rgb(215, 65, 167);
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_15fecec5-e28b-4ab5-96fa-946cbe0b8642 .hero-content .btn-secondary:hover,
#cmp_15fecec5-e28b-4ab5-96fa-946cbe0b8642 .hero-content .btn-secondary:focus,
#cmp_15fecec5-e28b-4ab5-96fa-946cbe0b8642 .hero-content .btn-secondary:active {
	background-color: rgb(83, 152, 190);
	color: #FFFFFF;
}

@media (min-width: 768px) {
	#cmp_15fecec5-e28b-4ab5-96fa-946cbe0b8642 {
		min-height: 40vw;
	}
	#cmp_15fecec5-e28b-4ab5-96fa-946cbe0b8642 .hero-content {
		margin: 15px;
		text-align: left;
	}
	#cmp_15fecec5-e28b-4ab5-96fa-946cbe0b8642 .hero-content .button-container {
		-webkit-justify-content: flex-start;
		-moz-justify-content: flex-start;
		-ms-justify-content: flex-start;
		justify-content: flex-start;
	}
	#cmp_15fecec5-e28b-4ab5-96fa-946cbe0b8642 .hero-content .btn {
		margin: 0 15px 0 0;
		width: 45%;
	}
}

@media (min-width: 1200px) {
	#cmp_15fecec5-e28b-4ab5-96fa-946cbe0b8642 {
		min-height: 533px;
	}
}

/*
 * components/index/cmp_1f910e96-fdb8-4abd-ba9e-462bdaba754c/component.css
 */
#cmp_1f910e96-fdb8-4abd-ba9e-462bdaba754c {
	background-color: #FFFFFF;
}

#cmp_1f910e96-fdb8-4abd-ba9e-462bdaba754c .content-row {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

#cmp_1f910e96-fdb8-4abd-ba9e-462bdaba754c .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_1f910e96-fdb8-4abd-ba9e-462bdaba754c h1 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_1f910e96-fdb8-4abd-ba9e-462bdaba754c h2 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_1f910e96-fdb8-4abd-ba9e-462bdaba754c h3 {
	color: rgb(83, 152, 190);
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_1f910e96-fdb8-4abd-ba9e-462bdaba754c p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 18px;
}

@media (min-width: 768px) {
	#cmp_1f910e96-fdb8-4abd-ba9e-462bdaba754c .content-row {
		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
	}
}
/*
 * components/index/cmp_26ffbb49-aed5-4a1c-afe6-2a1e19857794/component.css
 */
#cmp_26ffbb49-aed5-4a1c-afe6-2a1e19857794 {
	background-color: rgb(0, 0, 0);
}

#cmp_26ffbb49-aed5-4a1c-afe6-2a1e19857794 h1 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_26ffbb49-aed5-4a1c-afe6-2a1e19857794 h2 {
	color: #FFFFFF;
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_26ffbb49-aed5-4a1c-afe6-2a1e19857794 h3 {
	color: rgb(83, 152, 190);
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_26ffbb49-aed5-4a1c-afe6-2a1e19857794 p {
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_26ffbb49-aed5-4a1c-afe6-2a1e19857794 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_26ffbb49-aed5-4a1c-afe6-2a1e19857794 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_26ffbb49-aed5-4a1c-afe6-2a1e19857794 ul {
	list-style: disc;
	list-style-position: inside;
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_26ffbb49-aed5-4a1c-afe6-2a1e19857794  {
	padding-bottom: 0;
}
/*
 * components/index/cmp_5285e57c-0f07-4602-8b6c-21b176e85d5c/component.css
 */
#cmp_5285e57c-0f07-4602-8b6c-21b176e85d5c {
	background-color: rgb(0, 0, 0);
}

#cmp_5285e57c-0f07-4602-8b6c-21b176e85d5c .content-row {
	margin: 0;

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

#cmp_5285e57c-0f07-4602-8b6c-21b176e85d5c .content {
	background-color: #FFFFFF;
	border: 5px solid #FFFFFF;
	margin: 15px 0;
	padding: 25px;

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

#cmp_5285e57c-0f07-4602-8b6c-21b176e85d5c h1 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 48px;
	margin-bottom: 0;
}

#cmp_5285e57c-0f07-4602-8b6c-21b176e85d5c h2 {
	color: #C7C3C2;
	font-family: Playfair Display;
	font-size: 32px;
	margin-bottom: 0;
}

#cmp_5285e57c-0f07-4602-8b6c-21b176e85d5c h3 {
	color: rgb(83, 152, 190);
	font-family: Open Sans;
	font-size: 14px;
	margin-bottom: 15px;
}

#cmp_5285e57c-0f07-4602-8b6c-21b176e85d5c p {
	color: #C7C3C2;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_5285e57c-0f07-4602-8b6c-21b176e85d5c hr {
	border-top: 1px solid #EEE;
	width: 100%;
}

@media (min-width: 768px) {
	#cmp_5285e57c-0f07-4602-8b6c-21b176e85d5c .content {
		margin: 15px;
	}
}
#cmp_5285e57c-0f07-4602-8b6c-21b176e85d5c  {
	padding-top: 0;
}
/*
 * components/index/cmp_8df59e2c-894a-46b2-8ff1-a753e0cb486a/component.css
 */
#cmp_8df59e2c-894a-46b2-8ff1-a753e0cb486a {
	padding: 0;
}

#cmp_8df59e2c-894a-46b2-8ff1-a753e0cb486a .hero-content {
	background-color: rgb(215, 65, 167);
	padding: 20px;
}

#cmp_8df59e2c-894a-46b2-8ff1-a753e0cb486a .hero-content h1 {
	color: rgb(58, 23, 114);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_8df59e2c-894a-46b2-8ff1-a753e0cb486a .hero-content h2 {
	color: #FFFFFF;
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_8df59e2c-894a-46b2-8ff1-a753e0cb486a .hero-content h3 {
	color: #FFFFFF;
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_8df59e2c-894a-46b2-8ff1-a753e0cb486a .hero-content p {
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_8df59e2c-894a-46b2-8ff1-a753e0cb486a .hero-content .btn {
	background-color: rgb(58, 23, 114);
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_8df59e2c-894a-46b2-8ff1-a753e0cb486a .hero-content .btn:hover {
	background-color: rgb(215, 65, 167);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_8df59e2c-894a-46b2-8ff1-a753e0cb486a .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_8df59e2c-894a-46b2-8ff1-a753e0cb486a .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_8df59e2c-894a-46b2-8ff1-a753e0cb486a .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_8df59e2c-894a-46b2-8ff1-a753e0cb486a .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_8df59e2c-894a-46b2-8ff1-a753e0cb486a .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_8df59e2c-894a-46b2-8ff1-a753e0cb486a .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_8df59e2c-894a-46b2-8ff1-a753e0cb486a .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/shop/listing/cmp_4750408d-7377-40ad-88d0-5f3f5f8d715e/component.css
 */
#cmp_4750408d-7377-40ad-88d0-5f3f5f8d715e {
	background-color: #FFFFFF;
}

#cmp_4750408d-7377-40ad-88d0-5f3f5f8d715e h1 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_4750408d-7377-40ad-88d0-5f3f5f8d715e h2 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_4750408d-7377-40ad-88d0-5f3f5f8d715e h3 {
	color: rgb(83, 152, 190);
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_4750408d-7377-40ad-88d0-5f3f5f8d715e p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_4750408d-7377-40ad-88d0-5f3f5f8d715e .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_4750408d-7377-40ad-88d0-5f3f5f8d715e ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_4750408d-7377-40ad-88d0-5f3f5f8d715e ul {
	list-style: disc;
	list-style-position: inside;
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_4750408d-7377-40ad-88d0-5f3f5f8d715e  {
	padding-bottom: 20px;
}
/*
 * components/shop/listing/cmp_944de5fc-83bc-47ab-8a19-74544655b12c/component.css
 */
#cmp_944de5fc-83bc-47ab-8a19-74544655b12c {
	padding: 20px 0;
}

#cmp_944de5fc-83bc-47ab-8a19-74544655b12c ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_ae9571da-6dbb-47af-a129-1962ef2e5779/component.css
 */
#cmp_ae9571da-6dbb-47af-a129-1962ef2e5779 {
	border-bottom: 1px solid #E1E1E1;
	padding: 20px 0 40px 0;
}

#cmp_ae9571da-6dbb-47af-a129-1962ef2e5779 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_f91046f3-847e-4b69-aaa1-74b15b0388a4/component.css
 */
.shop-listing-item {
	color: #7B7770;
}

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

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

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

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

.product_paging {
	margin: 20px 0;

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

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

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

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

.product_page.active a {
	color: black;
}

/*
 * components/shop/product/cmp_3790f647-0a28-4eec-b2e5-6d927def5aa0/component.css
 */
#cmp_3790f647-0a28-4eec-b2e5-6d927def5aa0.shop-product-header {
	padding: 60px 0 20px 0;
}

/*
 * components/shop/product/cmp_580c0e52-0f98-4e4b-a9b1-9180c5a46219/component.css
 */
#cmp_580c0e52-0f98-4e4b-a9b1-9180c5a46219 .shop-product select {
	width: auto;
}

#cmp_580c0e52-0f98-4e4b-a9b1-9180c5a46219 .shop-product__name {
	margin-bottom: 20px;
}

#cmp_580c0e52-0f98-4e4b-a9b1-9180c5a46219 .shop-product__price {
	margin-bottom: 20px;
}

#cmp_580c0e52-0f98-4e4b-a9b1-9180c5a46219 .shop-product__add-to-cart {
	margin-bottom: 20px;
}

#cmp_580c0e52-0f98-4e4b-a9b1-9180c5a46219 .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin-bottom: 40px;
}

#cmp_580c0e52-0f98-4e4b-a9b1-9180c5a46219 .shop-product__review-share-desktop .rating,
#cmp_580c0e52-0f98-4e4b-a9b1-9180c5a46219 .shop-product__review-share-desktop .sharing {
	padding-top: 10px;
}

#cmp_580c0e52-0f98-4e4b-a9b1-9180c5a46219 .shop-product__review-share-desktop h3,
#cmp_580c0e52-0f98-4e4b-a9b1-9180c5a46219 .shop-product__review-share-mobile h3 {
	margin: 10px 0;
}
#cmp_580c0e52-0f98-4e4b-a9b1-9180c5a46219  {
	padding-top: 0;
}
/*
 * components/sold_out/cmp_2e686f51-fa3d-4a8e-a9b0-004cad9c58df/component.css
 */
#cmp_2e686f51-fa3d-4a8e-a9b0-004cad9c58df {
	background-color: #FFFFFF;
}

#cmp_2e686f51-fa3d-4a8e-a9b0-004cad9c58df h1 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_2e686f51-fa3d-4a8e-a9b0-004cad9c58df h2 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_2e686f51-fa3d-4a8e-a9b0-004cad9c58df h3 {
	color: rgb(83, 152, 190);
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_2e686f51-fa3d-4a8e-a9b0-004cad9c58df p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}


#cmp_2e686f51-fa3d-4a8e-a9b0-004cad9c58df .btn {
	background-color: rgb(58, 23, 114);
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_2e686f51-fa3d-4a8e-a9b0-004cad9c58df .btn:hover {
	background-color: rgb(83, 152, 190);
	color: #FFFFFF;
}

#cmp_2e686f51-fa3d-4a8e-a9b0-004cad9c58df .component-rich-text-with-button__content-row,
#cmp_2e686f51-fa3d-4a8e-a9b0-004cad9c58df .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_2e686f51-fa3d-4a8e-a9b0-004cad9c58df .component-rich-text-with-button__content-row,
	#cmp_2e686f51-fa3d-4a8e-a9b0-004cad9c58df .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_2e686f51-fa3d-4a8e-a9b0-004cad9c58df ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_2e686f51-fa3d-4a8e-a9b0-004cad9c58df ul {
	list-style: disc;
	list-style-position: inside;
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_2e686f51-fa3d-4a8e-a9b0-004cad9c58df  {
	padding-top: 0;
}
/*
 * components/sold_out/cmp_5749a360-e4b3-4cda-b1ed-6da7433d10a9/component.css
 */
#cmp_5749a360-e4b3-4cda-b1ed-6da7433d10a9 img {
	max-width: 100%;
}

/*
 * components/subscribe/cmp_09b448de-2e2b-4b41-bce8-6c754ece9ea5/component.css
 */
#cmp_09b448de-2e2b-4b41-bce8-6c754ece9ea5 {
	background-color: #D5CEC2;
	padding-bottom: 0;
}

#cmp_09b448de-2e2b-4b41-bce8-6c754ece9ea5 .progress-bar-container {
	position: relative;
}

#cmp_09b448de-2e2b-4b41-bce8-6c754ece9ea5 .progress-bar-filler {
	background: #FFFFFF;
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_09b448de-2e2b-4b41-bce8-6c754ece9ea5 .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_09b448de-2e2b-4b41-bce8-6c754ece9ea5 .progress-bar .step {
	color: #FFFFFF;

	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_09b448de-2e2b-4b41-bce8-6c754ece9ea5 .progress-bar .step .point {
	background-color: #D5CEC2;
	border: 4px solid #FFFFFF;
	border-radius: 10px;
	margin-bottom: 5px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_09b448de-2e2b-4b41-bce8-6c754ece9ea5 .progress-bar .step.active .point {
	background-color: rgb(58, 23, 114);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_09b448de-2e2b-4b41-bce8-6c754ece9ea5 .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe/cmp_1b8e6dd0-0ced-40a3-a244-e5b3e5f1f0b0/component.css
 */
#cmp_1b8e6dd0-0ced-40a3-a244-e5b3e5f1f0b0 {
	background-color: #FFFFFF;
}

#cmp_1b8e6dd0-0ced-40a3-a244-e5b3e5f1f0b0 h1 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_1b8e6dd0-0ced-40a3-a244-e5b3e5f1f0b0 h2 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_1b8e6dd0-0ced-40a3-a244-e5b3e5f1f0b0 h3 {
	color: rgb(83, 152, 190);
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_1b8e6dd0-0ced-40a3-a244-e5b3e5f1f0b0 p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_1b8e6dd0-0ced-40a3-a244-e5b3e5f1f0b0 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_1b8e6dd0-0ced-40a3-a244-e5b3e5f1f0b0 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_1b8e6dd0-0ced-40a3-a244-e5b3e5f1f0b0 ul {
	list-style: disc;
	list-style-position: inside;
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_1b8e6dd0-0ced-40a3-a244-e5b3e5f1f0b0  {
	padding-bottom: 0;
}
/*
 * components/subscribe/cmp_2b00f40b-226c-46d2-9ece-2278443ff6b1/component.css
 */
#cmp_2b00f40b-226c-46d2-9ece-2278443ff6b1 {
	background-color: #FFFFFF;
}

#cmp_2b00f40b-226c-46d2-9ece-2278443ff6b1 .content-row {
	margin: 0;

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

#cmp_2b00f40b-226c-46d2-9ece-2278443ff6b1 .content {
	background-color: #FFFFFF;
	border: 5px solid #FFFFFF;
	margin: 15px 0;
	padding: 25px;

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

#cmp_2b00f40b-226c-46d2-9ece-2278443ff6b1 .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_2b00f40b-226c-46d2-9ece-2278443ff6b1 h1 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_2b00f40b-226c-46d2-9ece-2278443ff6b1 h2 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_2b00f40b-226c-46d2-9ece-2278443ff6b1 h3 {
	color: rgb(83, 152, 190);
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_2b00f40b-226c-46d2-9ece-2278443ff6b1 p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_2b00f40b-226c-46d2-9ece-2278443ff6b1 .content {
		margin: 15px;
	}
}
#cmp_2b00f40b-226c-46d2-9ece-2278443ff6b1  {
	padding-top: 0;
}
/*
 * components/subscribe/cmp_7e5ba87f-519e-4205-9e3b-c351adef3567/component.css
 */
#cmp_7e5ba87f-519e-4205-9e3b-c351adef3567 {
	background-color: rgb(83, 152, 190);
}

#cmp_7e5ba87f-519e-4205-9e3b-c351adef3567 h3 {
	color: rgb(83, 152, 190);
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_7e5ba87f-519e-4205-9e3b-c351adef3567 p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_7e5ba87f-519e-4205-9e3b-c351adef3567 .sf-item {
	background-color: #FFFFFF;
}
#cmp_7e5ba87f-519e-4205-9e3b-c351adef3567  {
	padding-top: 0;
}
/*
 * components/subscribe/cmp_906942ad-6c40-4907-9f90-b79171ea3e62/component.css
 */
#cmp_906942ad-6c40-4907-9f90-b79171ea3e62 {
	background-color: #D5CEC2;
}

#cmp_906942ad-6c40-4907-9f90-b79171ea3e62 h1 {
	color: #FFFFFF;
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_906942ad-6c40-4907-9f90-b79171ea3e62 h2 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_906942ad-6c40-4907-9f90-b79171ea3e62 h3 {
	color: rgb(83, 152, 190);
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_906942ad-6c40-4907-9f90-b79171ea3e62 p {
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_906942ad-6c40-4907-9f90-b79171ea3e62 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_906942ad-6c40-4907-9f90-b79171ea3e62 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_906942ad-6c40-4907-9f90-b79171ea3e62 ul {
	list-style: disc;
	list-style-position: inside;
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_906942ad-6c40-4907-9f90-b79171ea3e62  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_63eed61a-e260-4bef-b71e-e766a4daf65e/component.css
 */
#cmp_63eed61a-e260-4bef-b71e-e766a4daf65e {
	background-color: #D5CEC2;
}

#cmp_63eed61a-e260-4bef-b71e-e766a4daf65e h3 {
	color: rgb(83, 152, 190);
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_63eed61a-e260-4bef-b71e-e766a4daf65e p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_63eed61a-e260-4bef-b71e-e766a4daf65e  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_71ac71c1-6943-44bc-a3dd-3d274e1afb12/component.css
 */
#cmp_71ac71c1-6943-44bc-a3dd-3d274e1afb12 {
	background-color: #D5CEC2;
	padding-bottom: 0;
}

#cmp_71ac71c1-6943-44bc-a3dd-3d274e1afb12 .progress-bar-container {
	position: relative;
}

#cmp_71ac71c1-6943-44bc-a3dd-3d274e1afb12 .progress-bar-filler {
	background: #FFFFFF;
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_71ac71c1-6943-44bc-a3dd-3d274e1afb12 .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_71ac71c1-6943-44bc-a3dd-3d274e1afb12 .progress-bar .step {
	color: #FFFFFF;

	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_71ac71c1-6943-44bc-a3dd-3d274e1afb12 .progress-bar .step .point {
	background-color: #D5CEC2;
	border: 4px solid #FFFFFF;
	border-radius: 10px;
	margin-bottom: 5px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_71ac71c1-6943-44bc-a3dd-3d274e1afb12 .progress-bar .step.active .point {
	background-color: rgb(58, 23, 114);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_71ac71c1-6943-44bc-a3dd-3d274e1afb12 .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe_flow/survey_step/cmp_d0c44dba-86ad-4fc9-8653-176e0f5e77a3/component.css
 */
#cmp_d0c44dba-86ad-4fc9-8653-176e0f5e77a3 {
	background-color: #D5CEC2;
}

#cmp_d0c44dba-86ad-4fc9-8653-176e0f5e77a3 h1 {
	color: #FFFFFF;
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_d0c44dba-86ad-4fc9-8653-176e0f5e77a3 p {
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}
#cmp_d0c44dba-86ad-4fc9-8653-176e0f5e77a3  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/terms_step/cmp_03f5a6ad-89ad-4f8f-bc48-7295879791ce/component.css
 */
#cmp_03f5a6ad-89ad-4f8f-bc48-7295879791ce {
	background-color: #D5CEC2;
	padding-bottom: 0;
}

#cmp_03f5a6ad-89ad-4f8f-bc48-7295879791ce .progress-bar-container {
	position: relative;
}

#cmp_03f5a6ad-89ad-4f8f-bc48-7295879791ce .progress-bar-filler {
	background: #FFFFFF;
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_03f5a6ad-89ad-4f8f-bc48-7295879791ce .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_03f5a6ad-89ad-4f8f-bc48-7295879791ce .progress-bar .step {
	color: #FFFFFF;

	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_03f5a6ad-89ad-4f8f-bc48-7295879791ce .progress-bar .step .point {
	background-color: #D5CEC2;
	border: 4px solid #FFFFFF;
	border-radius: 10px;
	margin-bottom: 5px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_03f5a6ad-89ad-4f8f-bc48-7295879791ce .progress-bar .step.active .point {
	background-color: rgb(58, 23, 114);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_03f5a6ad-89ad-4f8f-bc48-7295879791ce .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe_flow/terms_step/cmp_b7f24b6c-a08e-46c0-9e22-0d42c0519fa0/component.css
 */
#cmp_b7f24b6c-a08e-46c0-9e22-0d42c0519fa0 {
	background-color: #D5CEC2;
}

#cmp_b7f24b6c-a08e-46c0-9e22-0d42c0519fa0 h1 {
	color: #FFFFFF;
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_b7f24b6c-a08e-46c0-9e22-0d42c0519fa0 p {
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}
#cmp_b7f24b6c-a08e-46c0-9e22-0d42c0519fa0  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/terms_step/cmp_e2c5217c-9a06-4cec-b1a3-724018d0dbc0/component.css
 */
#cmp_e2c5217c-9a06-4cec-b1a3-724018d0dbc0 {
	background-color: rgb(0, 0, 0);
}

#cmp_e2c5217c-9a06-4cec-b1a3-724018d0dbc0 h2 {
	color: rgb(83, 152, 190);
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_e2c5217c-9a06-4cec-b1a3-724018d0dbc0 h3 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_e2c5217c-9a06-4cec-b1a3-724018d0dbc0 p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_e2c5217c-9a06-4cec-b1a3-724018d0dbc0 .sf-item {
	background-color: #FFFFFF;
}
#cmp_e2c5217c-9a06-4cec-b1a3-724018d0dbc0  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_1884d412-a34e-4b57-95e8-c2470273c6e9/component.css
 */
#cmp_1884d412-a34e-4b57-95e8-c2470273c6e9 {
	background-color: #D5CEC2;
	padding-bottom: 0;
}

#cmp_1884d412-a34e-4b57-95e8-c2470273c6e9 .progress-bar-container {
	position: relative;
}

#cmp_1884d412-a34e-4b57-95e8-c2470273c6e9 .progress-bar-filler {
	background: #FFFFFF;
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_1884d412-a34e-4b57-95e8-c2470273c6e9 .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_1884d412-a34e-4b57-95e8-c2470273c6e9 .progress-bar .step {
	color: #FFFFFF;

	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_1884d412-a34e-4b57-95e8-c2470273c6e9 .progress-bar .step .point {
	background-color: #D5CEC2;
	border: 4px solid #FFFFFF;
	border-radius: 10px;
	margin-bottom: 5px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_1884d412-a34e-4b57-95e8-c2470273c6e9 .progress-bar .step.active .point {
	background-color: rgb(58, 23, 114);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_1884d412-a34e-4b57-95e8-c2470273c6e9 .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe_flow/variant_step/cmp_757aac8f-91c7-4161-929d-8fea081e002f/component.css
 */
#cmp_757aac8f-91c7-4161-929d-8fea081e002f {
	background-color: #FFFFFF;
}

#cmp_757aac8f-91c7-4161-929d-8fea081e002f .content-row {
	margin: 0;

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

#cmp_757aac8f-91c7-4161-929d-8fea081e002f .content {
	background-color: #FFFFFF;
	border: 5px solid #FFFFFF;
	margin: 15px 0;
	padding: 25px;

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

#cmp_757aac8f-91c7-4161-929d-8fea081e002f .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_757aac8f-91c7-4161-929d-8fea081e002f h1 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_757aac8f-91c7-4161-929d-8fea081e002f h2 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_757aac8f-91c7-4161-929d-8fea081e002f h3 {
	color: rgb(83, 152, 190);
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_757aac8f-91c7-4161-929d-8fea081e002f p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_757aac8f-91c7-4161-929d-8fea081e002f .content {
		margin: 15px;
	}
}
#cmp_757aac8f-91c7-4161-929d-8fea081e002f  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_82eba9c3-edbe-4801-91b3-fcb209464e36/component.css
 */
#cmp_82eba9c3-edbe-4801-91b3-fcb209464e36 {
	background-color: #D5CEC2;
}

#cmp_82eba9c3-edbe-4801-91b3-fcb209464e36 h1 {
	color: #FFFFFF;
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_82eba9c3-edbe-4801-91b3-fcb209464e36 p {
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}
#cmp_82eba9c3-edbe-4801-91b3-fcb209464e36  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_87fc66e7-fba1-469a-9c76-86679b6cf51b/component.css
 */
#cmp_87fc66e7-fba1-469a-9c76-86679b6cf51b {
	background-color: #FFFFFF;
}

#cmp_87fc66e7-fba1-469a-9c76-86679b6cf51b h1 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_87fc66e7-fba1-469a-9c76-86679b6cf51b h2 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_87fc66e7-fba1-469a-9c76-86679b6cf51b h3 {
	color: rgb(83, 152, 190);
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_87fc66e7-fba1-469a-9c76-86679b6cf51b p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_87fc66e7-fba1-469a-9c76-86679b6cf51b .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_87fc66e7-fba1-469a-9c76-86679b6cf51b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_87fc66e7-fba1-469a-9c76-86679b6cf51b ul {
	list-style: disc;
	list-style-position: inside;
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_87fc66e7-fba1-469a-9c76-86679b6cf51b  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_96dcba2a-5bd1-4e4c-bb83-06b56489c14d/component.css
 */
#cmp_96dcba2a-5bd1-4e4c-bb83-06b56489c14d {
	background-color: #D5CEC2;
}

#cmp_96dcba2a-5bd1-4e4c-bb83-06b56489c14d h3 {
	color: rgb(83, 152, 190);
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_96dcba2a-5bd1-4e4c-bb83-06b56489c14d p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_96dcba2a-5bd1-4e4c-bb83-06b56489c14d .sf-item {
	background-color: #FFFFFF;
}
#cmp_96dcba2a-5bd1-4e4c-bb83-06b56489c14d  {
	padding-top: 0;
}
/*
 * components/view-cart/cmp_5c09825d-4af4-43b3-8980-66f111e97ddd/component.css
 */
#cmp_5c09825d-4af4-43b3-8980-66f111e97ddd {
	padding: 15px 15px 100px 15px;
}

#cmp_5c09825d-4af4-43b3-8980-66f111e97ddd .cart-thead {
	border-bottom: 1px solid #E1E1E1;
	padding: 10px 0;
}

#cmp_5c09825d-4af4-43b3-8980-66f111e97ddd .cart-thead h3 {
	text-transform: uppercase;
}

#cmp_5c09825d-4af4-43b3-8980-66f111e97ddd .cart-item {
	border: 1px solid #E1E1E1;
	padding: 25px 0;
	position: relative;
}

#cmp_5c09825d-4af4-43b3-8980-66f111e97ddd .product-main {
	margin: 0 0 15px 0;
}

#cmp_5c09825d-4af4-43b3-8980-66f111e97ddd .product-label p {
	margin: 0;
}

#cmp_5c09825d-4af4-43b3-8980-66f111e97ddd .product-label .info {
	color: rgb(58, 23, 114);
	text-align: right;
	text-transform: uppercase;
}

#cmp_5c09825d-4af4-43b3-8980-66f111e97ddd .product-label .meta {
	color: #7B7770;
	font-size: 14px;
}

#cmp_5c09825d-4af4-43b3-8980-66f111e97ddd .product-rem-btn {
	position: absolute;
	right: 1%;
	top: 1%;
}

#cmp_5c09825d-4af4-43b3-8980-66f111e97ddd figure {
	margin: 0 0 15px 0;
}

#cmp_5c09825d-4af4-43b3-8980-66f111e97ddd .cart-subtotal {
	margin: 50px 0 0 0;
}

#cmp_5c09825d-4af4-43b3-8980-66f111e97ddd .cart-subtotal h2 {
	margin: 0 0 15px 0;
}

#cmp_5c09825d-4af4-43b3-8980-66f111e97ddd .cart-subtotal h3 {
	margin: 0 0 25px 0;
	text-transform: uppercase;
}

#cmp_5c09825d-4af4-43b3-8980-66f111e97ddd .cart-subtotal p {
	margin: 0 0 25px 0;
}

@media (min-width: 768px) {
	#cmp_5c09825d-4af4-43b3-8980-66f111e97ddd .cart-item {
		border-width: 0 0 1px 0;
	}
	#cmp_5c09825d-4af4-43b3-8980-66f111e97ddd .product-rem-btn {
		top: 40%;
	}
	#cmp_5c09825d-4af4-43b3-8980-66f111e97ddd figure {
		margin: 0;
	}
}

/*
 * components/view-cart/cmp_b762b884-b76f-43d3-a209-687c51a3edc1/component.css
 */
#cmp_b762b884-b76f-43d3-a209-687c51a3edc1 {
	background-color: #FFFFFF;
}

#cmp_b762b884-b76f-43d3-a209-687c51a3edc1 h1 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 48px;
}

#cmp_b762b884-b76f-43d3-a209-687c51a3edc1 h2 {
	color: rgb(58, 23, 114);
	font-family: Playfair Display;
	font-size: 32px;
}

#cmp_b762b884-b76f-43d3-a209-687c51a3edc1 h3 {
	color: rgb(83, 152, 190);
	font-family: Playfair Display;
	font-size: 24px;
}

#cmp_b762b884-b76f-43d3-a209-687c51a3edc1 p {
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_b762b884-b76f-43d3-a209-687c51a3edc1 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_b762b884-b76f-43d3-a209-687c51a3edc1 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_b762b884-b76f-43d3-a209-687c51a3edc1 ul {
	list-style: disc;
	list-style-position: inside;
	color: #7B7770;
	font-family: Open Sans;
	font-size: 14px;
}