/*
 * css/style.css
 */
/* Globals
------------------------------*/
body {
	background-color: #FFFFFF;
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 14px;
	line-height: 1.5em;
}

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

h1 {
	color: rgb(208, 2, 27);
	font-family: Open Sans;
	font-size: 40px;
}

h2 {
	color: rgb(208, 2, 27);
	font-family: Open Sans;
	font-size: 26px;
}

h3 {
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 22px;
}

p {
	line-height: 1.5em;
}

a,
.btn-link {
	color: rgb(0, 0, 0);
}

a:hover,
a:focus,
a:active,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
	color: rgb(208, 2, 27);
}

/* General Component Styles */
section {
	padding-top: 20px;
	padding-bottom: 20px;
}

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(0, 0, 0);
}

.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,
.checkout_content #checkout_button {
	border-radius: 2px;
	border: none;
	padding: 0.8em 4em;
	font-size: 12px;
	font-weight: bold;
	letter-spacing: 2px;
}

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

.btn-small:hover,
.btn-small:focus,
.btn-small:active,
.btn-small:active:focus {
	background-color: rgb(6, 0, 0);
	border: 1px solid rgb(6, 0, 0);
	color: #31458C !important;
}

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

.btn-primary,
.checkout_content #checkout_button {
	background-color: rgb(0, 0, 0);
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus
.checkout_content #checkout_button:hover,
.checkout_content #checkout_button:focus,
.checkout_content #checkout_button:active,
.checkout_content #checkout_button:active:focus {
	background-color: rgb(208, 2, 27);
	color: #FFFFFF;
}

.btn-secondary {
	background-color: rgb(6, 0, 0);
	color: #FAFAFA;
	font-family: Open Sans;
	font-size: 14px;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:active:focus {
	background-color: rgb(208, 2, 27);
	color: #FAFAFA;
}

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

.btn-empty:hover,
.btn-empty:focus,
.btn-empty:active,
.btn-empty:active:focus {
	background-color: rgb(6, 0, 0);
}

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

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

.sf-grid {
	display: -webkit-flex;
	display: -moz-flexbox;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;

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

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

	padding-top: .9375rem;
	padding-bottom: .9375rem;
}

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

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

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

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

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

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

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

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

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

/*.checkout_content #checkout_button {
	background-color: rgb(0, 0, 0);
	border: none;
	border-radius: 25px;
	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(208, 2, 27);
	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: #31458C;
}

.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(0, 0, 0);
	color: rgb(0, 0, 0);
	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(208, 2, 27);
	border-color: rgb(208, 2, 27);
	text-decoration: none;
}

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

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

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

/*
 * components/about/cmp_0f986a64-4e85-494a-a6d1-50273f99da67/component.css
 */
#cmp_0f986a64-4e85-494a-a6d1-50273f99da67 {
	background-color: #FFFFFF;
	padding-top: 80px;
	padding-bottom: 80px;
}

#cmp_0f986a64-4e85-494a-a6d1-50273f99da67 h1,
#cmp_0f986a64-4e85-494a-a6d1-50273f99da67 h2,
#cmp_0f986a64-4e85-494a-a6d1-50273f99da67 h3 {
	margin-bottom: 1em;
}

#cmp_0f986a64-4e85-494a-a6d1-50273f99da67 h1 {
	color: rgb(208, 2, 27);
	font-family: Open Sans;
	font-size: 40px;
}

#cmp_0f986a64-4e85-494a-a6d1-50273f99da67 h2 {
	color: rgb(208, 2, 27);
	font-family: Open Sans;
	font-size: 26px;
}

#cmp_0f986a64-4e85-494a-a6d1-50273f99da67 h3 {
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 22px;
}

#cmp_0f986a64-4e85-494a-a6d1-50273f99da67 p {
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_0f986a64-4e85-494a-a6d1-50273f99da67 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_0f986a64-4e85-494a-a6d1-50273f99da67 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 14px;
}

/*
 * components/checkout/cmp_d13f0868-997d-4eef-81f9-3a88a5afef82/component.css
 */
#cmp_d13f0868-997d-4eef-81f9-3a88a5afef82 .checkout_content {
  overflow: auto;
}

#cmp_d13f0868-997d-4eef-81f9-3a88a5afef82 .checkout_content section {
  border-color: #F5F5F5;
}

#cmp_d13f0868-997d-4eef-81f9-3a88a5afef82 .cart_listing table {
  border-color: #F5F5F5;
}

/*
 * components/customer/account/cmp_ba2bffdc-52f1-45e3-8877-ae71d9c62a1c/component.css
 */

/*
 * components/customer/edit/cmp_8317fbef-4ee5-450a-9990-ac7ce891f3e0/component.css
 */

/*
 * components/customer/forgot_password/cmp_a03b26ef-a811-4a9a-b538-b7805be31d6c/component.css
 */
#cmp_a03b26ef-a811-4a9a-b538-b7805be31d6c {
	background-color: #FFFFFF;
	padding-top: 80px;
	padding-bottom: 80px;
}

#cmp_a03b26ef-a811-4a9a-b538-b7805be31d6c h1,
#cmp_a03b26ef-a811-4a9a-b538-b7805be31d6c h2,
#cmp_a03b26ef-a811-4a9a-b538-b7805be31d6c h3 {
	margin-bottom: 1em;
}

#cmp_a03b26ef-a811-4a9a-b538-b7805be31d6c h1 {
	color: rgb(208, 2, 27);
	font-family: Open Sans;
	font-size: 40px;
}

#cmp_a03b26ef-a811-4a9a-b538-b7805be31d6c h2 {
	color: rgb(208, 2, 27);
	font-family: Open Sans;
	font-size: 26px;
}

#cmp_a03b26ef-a811-4a9a-b538-b7805be31d6c h3 {
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 22px;
}

#cmp_a03b26ef-a811-4a9a-b538-b7805be31d6c p {
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_a03b26ef-a811-4a9a-b538-b7805be31d6c ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_a03b26ef-a811-4a9a-b538-b7805be31d6c ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_a03b26ef-a811-4a9a-b538-b7805be31d6c  {
	padding: 50px 0;
}
#cmp_a03b26ef-a811-4a9a-b538-b7805be31d6c h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/forgot_password/cmp_e0010a5f-51d7-4d6a-871d-85fed71f3397/component.css
 */

#cmp_e0010a5f-51d7-4d6a-871d-85fed71f3397  {
	padding-bottom: 120px;
}
/*
 * components/customer/login/cmp_6750366c-68a4-4a09-a8b5-52d454c2b7c0/component.css
 */

#cmp_6750366c-68a4-4a09-a8b5-52d454c2b7c0  {
	padding-bottom: 120px;
}
/*
 * components/customer/login/cmp_c0052f07-cf1c-4259-b0b8-918e52ad9507/component.css
 */
#cmp_c0052f07-cf1c-4259-b0b8-918e52ad9507 {
	background-color: #FFFFFF;
	padding-top: 80px;
	padding-bottom: 80px;
}

#cmp_c0052f07-cf1c-4259-b0b8-918e52ad9507 h1,
#cmp_c0052f07-cf1c-4259-b0b8-918e52ad9507 h2,
#cmp_c0052f07-cf1c-4259-b0b8-918e52ad9507 h3 {
	margin-bottom: 1em;
}

#cmp_c0052f07-cf1c-4259-b0b8-918e52ad9507 h1 {
	color: rgb(208, 2, 27);
	font-family: Open Sans;
	font-size: 40px;
}

#cmp_c0052f07-cf1c-4259-b0b8-918e52ad9507 h2 {
	color: rgb(208, 2, 27);
	font-family: Open Sans;
	font-size: 26px;
}

#cmp_c0052f07-cf1c-4259-b0b8-918e52ad9507 h3 {
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 22px;
}

#cmp_c0052f07-cf1c-4259-b0b8-918e52ad9507 p {
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_c0052f07-cf1c-4259-b0b8-918e52ad9507 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_c0052f07-cf1c-4259-b0b8-918e52ad9507 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_c0052f07-cf1c-4259-b0b8-918e52ad9507  {
	padding: 50px 0;
}
#cmp_c0052f07-cf1c-4259-b0b8-918e52ad9507 h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/order/cmp_29a1d5eb-dd2d-44ef-8031-4e589c2d9c4d/component.css
 */

/*
 * components/customer/orders/cmp_9106f61f-7e3f-4ddc-975a-01faa545bb44/component.css
 */

/*
 * components/customer/password_reset/cmp_8e9e6cf7-6a5a-4731-846a-f81ec3cd7467/component.css
 */

#cmp_8e9e6cf7-6a5a-4731-846a-f81ec3cd7467  {
	padding-bottom: 120px;
}
/*
 * components/customer/password_reset/cmp_8fe3ff8e-c440-4321-a61c-4c4159e6f6b6/component.css
 */
#cmp_8fe3ff8e-c440-4321-a61c-4c4159e6f6b6 {
	background-color: #FFFFFF;
	padding-top: 80px;
	padding-bottom: 80px;
}

#cmp_8fe3ff8e-c440-4321-a61c-4c4159e6f6b6 h1,
#cmp_8fe3ff8e-c440-4321-a61c-4c4159e6f6b6 h2,
#cmp_8fe3ff8e-c440-4321-a61c-4c4159e6f6b6 h3 {
	margin-bottom: 1em;
}

#cmp_8fe3ff8e-c440-4321-a61c-4c4159e6f6b6 h1 {
	color: rgb(208, 2, 27);
	font-family: Open Sans;
	font-size: 40px;
}

#cmp_8fe3ff8e-c440-4321-a61c-4c4159e6f6b6 h2 {
	color: rgb(208, 2, 27);
	font-family: Open Sans;
	font-size: 26px;
}

#cmp_8fe3ff8e-c440-4321-a61c-4c4159e6f6b6 h3 {
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 22px;
}

#cmp_8fe3ff8e-c440-4321-a61c-4c4159e6f6b6 p {
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_8fe3ff8e-c440-4321-a61c-4c4159e6f6b6 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_8fe3ff8e-c440-4321-a61c-4c4159e6f6b6 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_8fe3ff8e-c440-4321-a61c-4c4159e6f6b6  {
	padding: 50px 0;
}
#cmp_8fe3ff8e-c440-4321-a61c-4c4159e6f6b6 h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/thank_you/cmp_687567b8-929e-4842-9f48-6a513b6d696e/component.css
 */

/*
 * components/global/cmp_1a93a81e-ef9b-44a8-a87b-e8d1395756cc/component.css
 */
#cmp_1a93a81e-ef9b-44a8-a87b-e8d1395756cc {
	background-color: #FFFFFF;
	border-radius: 0;
	border: none;
	padding-top: 0;
	padding-bottom: 0;

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

#cmp_1a93a81e-ef9b-44a8-a87b-e8d1395756cc .navbar {
	padding-bottom: 0;
}

#cmp_1a93a81e-ef9b-44a8-a87b-e8d1395756cc .navbar-brand {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

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

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

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

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

	-webkit-flex-basis: 100%;
	-moz-flex-basis: 100%;
	-ms-flex-basis: 100%;
	flex-basis: 100%;

	max-width: 100%;
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: ;
	margin: 0;
	padding: 15px;
	text-align: center;
}

#cmp_1a93a81e-ef9b-44a8-a87b-e8d1395756cc .navbar-brand .store-name {
	padding: 6px 12px;
	border: 2px solid ;
}

#cmp_1a93a81e-ef9b-44a8-a87b-e8d1395756cc .navbar-brand:hover,
#cmp_1a93a81e-ef9b-44a8-a87b-e8d1395756cc .navbar-brand:focus,
#cmp_1a93a81e-ef9b-44a8-a87b-e8d1395756cc .navbar-brand:active {
	color: rgb(208, 2, 27);
}

#cmp_1a93a81e-ef9b-44a8-a87b-e8d1395756cc .navbar-brand:hover .store-name,
#cmp_1a93a81e-ef9b-44a8-a87b-e8d1395756cc .navbar-brand:focus .store-name,
#cmp_1a93a81e-ef9b-44a8-a87b-e8d1395756cc .navbar-brand:active .store-name {
	color: rgb(208, 2, 27);
}

#cmp_1a93a81e-ef9b-44a8-a87b-e8d1395756cc .navbar-brand img {
	max-width: 100%;
}

#cmp_1a93a81e-ef9b-44a8-a87b-e8d1395756cc .navbar .navbar-toggler {
	color: rgb(6, 0, 0);
	font-family: Open Sans;
	font-size: 12px;
	border-radius: 0;
	padding: 15px;
	padding-top: 3px;

	-webkit-flex-basis: 100%;
	-moz-flex-basis: 100%;
	-ms-flex-basis: 100%;
	flex-basis: 100%;
}

#cmp_1a93a81e-ef9b-44a8-a87b-e8d1395756cc .navbar .navbar-toggler:hover,
#cmp_1a93a81e-ef9b-44a8-a87b-e8d1395756cc .navbar .navbar-toggler:focus,
#cmp_1a93a81e-ef9b-44a8-a87b-e8d1395756cc .navbar .navbar-toggler:active {
	color: #D4A747;
}

#cmp_1a93a81e-ef9b-44a8-a87b-e8d1395756cc .navbar-toggleable-sm {
	-webkit-flex-basis: 100vw;
	-moz-flex-basis: 100vw;
	-ms-flex-basis: 100vw;
	flex-basis: 100vw;

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

	margin: 0 -1rem -0.5rem;
}

#cmp_1a93a81e-ef9b-44a8-a87b-e8d1395756cc .navbar-nav {
	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;

	margin: 0;
	padding-top: 15px;
	padding-bottom: 15px;
}

#cmp_1a93a81e-ef9b-44a8-a87b-e8d1395756cc .navbar-nav li {
	padding-top: 10px;
	padding-bottom: 10px;
}

#cmp_1a93a81e-ef9b-44a8-a87b-e8d1395756cc .navbar .navbar-toggler,
#cmp_1a93a81e-ef9b-44a8-a87b-e8d1395756cc .navbar-nav .nav-link {
	font-family: Open Sans;
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

#cmp_1a93a81e-ef9b-44a8-a87b-e8d1395756cc .navbar-nav .nav-link {
	color: rgb(6, 0, 0);
	padding: 14px 18px;
	text-align: center;
}

#cmp_1a93a81e-ef9b-44a8-a87b-e8d1395756cc .navbar-nav .nav-link:hover,
#cmp_1a93a81e-ef9b-44a8-a87b-e8d1395756cc .navbar-nav .nav-link:active,
#cmp_1a93a81e-ef9b-44a8-a87b-e8d1395756cc .navbar-nav .nav-link:focus {
	color: #D4A747;
}

#cmp_1a93a81e-ef9b-44a8-a87b-e8d1395756cc .dropdown-menu {
	min-width: 160px;
}

@media (min-width: 768px) {
	#cmp_1a93a81e-ef9b-44a8-a87b-e8d1395756cc .navbar-brand {
		padding: 0;

		/*-webkit-justify-content: flex-start;
		-moz-justify-content: flex-start;
		-ms-justify-content: flex-start;
		justify-content: flex-start;*/

		-webkit-flex-basis: auto;
		-moz-flex-basis: auto;
		-ms-flex-basis: auto;
		flex-basis: auto;

		margin-bottom: .5rem;
	}
	#cmp_1a93a81e-ef9b-44a8-a87b-e8d1395756cc .navbar-toggleable-sm {
		-webkit-flex-basis: auto;
		-moz-flex-basis: auto;
		-ms-flex-basis: auto;
		flex-basis: auto;

		margin: 0;
		margin-bottom: .5rem;
	}
	#cmp_1a93a81e-ef9b-44a8-a87b-e8d1395756cc .navbar-nav {
		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;

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

		padding: 0;
		background-color: #FFFFFF;
	}
	#cmp_1a93a81e-ef9b-44a8-a87b-e8d1395756cc .navbar-nav li {
		padding: 0;
	}
}

/*
 * components/global/cmp_5a29f90b-eeee-4837-a0f7-8a913079c514/component.css
 */
#cmp_5a29f90b-eeee-4837-a0f7-8a913079c514 {
	background-color: rgb(255, 255, 255);
}

#cmp_5a29f90b-eeee-4837-a0f7-8a913079c514 h1 {
	color: rgb(6, 0, 0);
	font-family: Open Sans;
	font-size: 40px;
}

#cmp_5a29f90b-eeee-4837-a0f7-8a913079c514 h2 {
	color: rgb(6, 0, 0);
	font-family: Open Sans;
	font-size: 26px;
}

#cmp_5a29f90b-eeee-4837-a0f7-8a913079c514 h3 {
	color: rgb(6, 0, 0);
	font-family: Open Sans;
	font-size: 22px;
}

#cmp_5a29f90b-eeee-4837-a0f7-8a913079c514 p {
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_5a29f90b-eeee-4837-a0f7-8a913079c514 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_5a29f90b-eeee-4837-a0f7-8a913079c514 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_5a29f90b-eeee-4837-a0f7-8a913079c514 .btn {
	background-color: #31458C;
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_5a29f90b-eeee-4837-a0f7-8a913079c514 .btn:hover {
	background-color: #D4A747;
	color: #FFFFFF;
}

#cmp_5a29f90b-eeee-4837-a0f7-8a913079c514 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_5a29f90b-eeee-4837-a0f7-8a913079c514 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 14px;
}

/*
 * components/global/cmp_6354b914-bfb7-4cf0-bf90-ca5d20f865a9/component.css
 */
#cmp_6354b914-bfb7-4cf0-bf90-ca5d20f865a9 {
	background-color: #ECF0F0;
	padding-top: 14px;
	padding-bottom: 0;
}

#cmp_6354b914-bfb7-4cf0-bf90-ca5d20f865a9 .progress-bar {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

@media(min-width: 768px) {
	#cmp_6354b914-bfb7-4cf0-bf90-ca5d20f865a9 .progress-bar {
		display: flex;
		justify-content: flex-start;
	}
}

#cmp_6354b914-bfb7-4cf0-bf90-ca5d20f865a9 .progress-bar .step {
	color: #31458C;
	text-transform: lowercase;
	padding-bottom: 14px;
}

#cmp_6354b914-bfb7-4cf0-bf90-ca5d20f865a9 .progress-bar .step .separator {
	opacity: 0.5;
	margin: 0 20px;
}

#cmp_6354b914-bfb7-4cf0-bf90-ca5d20f865a9 .progress-bar .step .title {
	opacity: 0.5;
}

#cmp_6354b914-bfb7-4cf0-bf90-ca5d20f865a9 .progress-bar .step.active .title {
	opacity: 1;
}

/*
 * components/global/cmp_c977bee3-7146-4580-91d9-62c94072db6a/component.css
 */
#cmp_c977bee3-7146-4580-91d9-62c94072db6a.footer {
	background-color: #31458C;
	padding-bottom: 22px;
}

#cmp_c977bee3-7146-4580-91d9-62c94072db6a,
#cmp_c977bee3-7146-4580-91d9-62c94072db6a p,
#cmp_c977bee3-7146-4580-91d9-62c94072db6a h1,
#cmp_c977bee3-7146-4580-91d9-62c94072db6a h2,
#cmp_c977bee3-7146-4580-91d9-62c94072db6a h3 {
	font-family: Open Sans;
	color: #FFFFFF;
}

#cmp_c977bee3-7146-4580-91d9-62c94072db6a,
#cmp_c977bee3-7146-4580-91d9-62c94072db6a p {
	font-weight: lighter;
}

#cmp_c977bee3-7146-4580-91d9-62c94072db6a .footer-list .footer-link {
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: ;
	text-transform: lowercase;
}

#cmp_c977bee3-7146-4580-91d9-62c94072db6a .footer-list .footer-link:hover,
#cmp_c977bee3-7146-4580-91d9-62c94072db6a .footer-list .footer-link:focus,
#cmp_c977bee3-7146-4580-91d9-62c94072db6a .footer-list .footer-link:active {
	color: #F36546;
	text-decoration: none;
}

#cmp_c977bee3-7146-4580-91d9-62c94072db6a .footer-list .footer-item {
	padding: 3px 0;
}

/* follow us column */
#cmp_c977bee3-7146-4580-91d9-62c94072db6a .footer-follow-us svg path {
	fill: #FFFFFF;
}

#cmp_c977bee3-7146-4580-91d9-62c94072db6a .footer-follow-us a:hover,
#cmp_c977bee3-7146-4580-91d9-62c94072db6a .footer-follow-us a:focus,
#cmp_c977bee3-7146-4580-91d9-62c94072db6a .footer-follow-us a:active {
	fill: #F36546;
	text-decoration: none;
}

#cmp_c977bee3-7146-4580-91d9-62c94072db6a .footer-follow-us a:hover svg path,
#cmp_c977bee3-7146-4580-91d9-62c94072db6a .footer-follow-us a:focus svg path,
#cmp_c977bee3-7146-4580-91d9-62c94072db6a .footer-follow-us a:active svg path {
	fill: #F36546;
}

#cmp_c977bee3-7146-4580-91d9-62c94072db6a .footer-follow-us {
	letter-spacing: 1px;
	text-align: center;

	border-top: 1px solid;
	border-color: #FFFFFF;

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

#cmp_c977bee3-7146-4580-91d9-62c94072db6a .footer-follow-us .social-icons-row {
	justify-content: center;
	margin-top: 18px;
	margin-bottom: 15px;
}

#cmp_c977bee3-7146-4580-91d9-62c94072db6a .footer-follow-us .social-icons-row a {
	margin: 0 8px;
}

#cmp_c977bee3-7146-4580-91d9-62c94072db6a .footer-follow-us p {
	padding-bottom: 15px;
	margin: 0;
}

/* contact us column */
#cmp_c977bee3-7146-4580-91d9-62c94072db6a .footer-contact-us a {
	display: inline-block;
}

#cmp_c977bee3-7146-4580-91d9-62c94072db6a .footer-bottom {
	text-align: center;

	border-top: 1px solid;
	border-color: #FFFFFF;
}

#cmp_c977bee3-7146-4580-91d9-62c94072db6a .footer-bottom > div {
	margin-top: 22px;
}

@media (min-width: 768px) {
	#cmp_c977bee3-7146-4580-91d9-62c94072db6a .footer-contact-us {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}

	#cmp_c977bee3-7146-4580-91d9-62c94072db6a .footer-follow-us {
		border-top: none;
		padding-top: 0;
	}

	#cmp_c977bee3-7146-4580-91d9-62c94072db6a .footer-bottom {
		text-align: left;
	}

	#cmp_c977bee3-7146-4580-91d9-62c94072db6a .footer-cards {
		float: right;
		padding-top: 0;
	}
}

/*
 * components/index/cmp_141e5ab5-b0cb-4f8a-b052-c3ce20362b46/component.css
 */
#cmp_141e5ab5-b0cb-4f8a-b052-c3ce20362b46 img {
	max-width: 100%;
}

/*
 * components/index/cmp_42d73f1f-e41c-47e5-96a5-c45d5d82095d/component.css
 */
#cmp_42d73f1f-e41c-47e5-96a5-c45d5d82095d {
	background-color: #FFFFFF;
	padding-top: 80px;
	padding-bottom: 80px;
}

#cmp_42d73f1f-e41c-47e5-96a5-c45d5d82095d h1,
#cmp_42d73f1f-e41c-47e5-96a5-c45d5d82095d h2,
#cmp_42d73f1f-e41c-47e5-96a5-c45d5d82095d h3 {
	margin-bottom: 1em;
}

#cmp_42d73f1f-e41c-47e5-96a5-c45d5d82095d h1 {
	color: rgb(208, 2, 27);
	font-family: Open Sans;
	font-size: 40px;
}

#cmp_42d73f1f-e41c-47e5-96a5-c45d5d82095d h2 {
	color: rgb(208, 2, 27);
	font-family: Open Sans;
	font-size: 26px;
}

#cmp_42d73f1f-e41c-47e5-96a5-c45d5d82095d h3 {
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 22px;
}

#cmp_42d73f1f-e41c-47e5-96a5-c45d5d82095d p {
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_42d73f1f-e41c-47e5-96a5-c45d5d82095d ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_42d73f1f-e41c-47e5-96a5-c45d5d82095d ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 14px;
}

/*
 * components/index/cmp_526a54be-c9ec-46f4-97d0-3be7fd89259a/component.css
 */
#cmp_526a54be-c9ec-46f4-97d0-3be7fd89259a {
	background-color: #FFFFFF;
}

#cmp_526a54be-c9ec-46f4-97d0-3be7fd89259a .content {
	display: flex;
	align-items: center;
}

#cmp_526a54be-c9ec-46f4-97d0-3be7fd89259a .content {
	padding: 20px;
}

#cmp_526a54be-c9ec-46f4-97d0-3be7fd89259a .content .main-caption {
	flex-grow: 1;
}

#cmp_526a54be-c9ec-46f4-97d0-3be7fd89259a .image-block div {
	width: 100%;
	height: 100%;
}

@media (min-width: 768px) {
	#cmp_526a54be-c9ec-46f4-97d0-3be7fd89259a .content {
		order: 1;
	}

	#cmp_526a54be-c9ec-46f4-97d0-3be7fd89259a .image-block {
		order: 0;
		height: 275px;
	}
}

/*
* Make the height of the images be proportional to the image aspect ratio and the view or container width
*/
#cmp_526a54be-c9ec-46f4-97d0-3be7fd89259a .image-block {
	padding: 0;
	height: 1px;
	min-height: calc((329 / 425) * 100vw); /* full view width */
}

@media(min-width: 544px) {
	#cmp_526a54be-c9ec-46f4-97d0-3be7fd89259a .image-block {
		padding: 0 20px;
		min-height: calc((329 / 425) * (576px - 20px * 2)); /* full container width */
	}
}

@media(min-width: 768px) {
	#cmp_526a54be-c9ec-46f4-97d0-3be7fd89259a .image-block {
		padding: 0 20px;
		min-height: calc((329 / 425) * ((720px / 2) - 20px * 2)); /* half the container width */
	}
}

@media(min-width: 992px) {
	#cmp_526a54be-c9ec-46f4-97d0-3be7fd89259a .image-block {
		padding: 0 20px;
		min-height: calc((329 / 425) * ((940px / 2) - 20px * 2)); /* half the container width */
	}
}

@media(min-width: 1200px) {
	#cmp_526a54be-c9ec-46f4-97d0-3be7fd89259a .image-block {
		min-height: calc((329 / 425) * ((1140px / 2) - 20px * 2)); /* half the container width */
	}
}

#cmp_526a54be-c9ec-46f4-97d0-3be7fd89259a h1 {
	color: rgb(6, 0, 0);
	font-family: Open Sans;
	font-size: 40px;
}

#cmp_526a54be-c9ec-46f4-97d0-3be7fd89259a h2 {
	color: rgb(6, 0, 0);
	font-family: Open Sans;
	font-size: 26px;
}

#cmp_526a54be-c9ec-46f4-97d0-3be7fd89259a h3 {
	color: rgb(6, 0, 0);
	font-family: Open Sans;
	font-size: 22px;
}

#cmp_526a54be-c9ec-46f4-97d0-3be7fd89259a p {
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 14px;
}

/*
 * components/index/cmp_5bbfcee8-8939-4f66-b177-47a43745f3de/component.css
 */
#cmp_5bbfcee8-8939-4f66-b177-47a43745f3de img {
	max-width: 100%;
}

/*
 * components/index/cmp_ad722fad-0c5f-4bbe-8327-57e7b6cdaee1/component.css
 */
#cmp_ad722fad-0c5f-4bbe-8327-57e7b6cdaee1 {
	background-color: #FFFFFF;
}

#cmp_ad722fad-0c5f-4bbe-8327-57e7b6cdaee1 h1 {
	color: rgb(6, 0, 0);
	font-family: Open Sans;
	font-size: 40px;
}

#cmp_ad722fad-0c5f-4bbe-8327-57e7b6cdaee1 h2 {
	color: rgb(6, 0, 0);
	font-family: Open Sans;
	font-size: 26px;
}

#cmp_ad722fad-0c5f-4bbe-8327-57e7b6cdaee1 h3 {
	color: rgb(6, 0, 0);
	font-family: Open Sans;
	font-size: 22px;
}

#cmp_ad722fad-0c5f-4bbe-8327-57e7b6cdaee1 p {
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_ad722fad-0c5f-4bbe-8327-57e7b6cdaee1 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_ad722fad-0c5f-4bbe-8327-57e7b6cdaee1 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_ad722fad-0c5f-4bbe-8327-57e7b6cdaee1 .btn {
	background-color: #31458C;
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_ad722fad-0c5f-4bbe-8327-57e7b6cdaee1 .btn:hover {
	background-color: #D4A747;
	color: #FFFFFF;
}

#cmp_ad722fad-0c5f-4bbe-8327-57e7b6cdaee1 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_ad722fad-0c5f-4bbe-8327-57e7b6cdaee1 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 14px;
}

/*
 * components/shop/listing/cmp_52f6cd06-a322-4909-a8a1-a9d92636bd6f/component.css
 */
#cmp_52f6cd06-a322-4909-a8a1-a9d92636bd6f {
	background-color: #FFFFFF;
	padding-top: 80px;
	padding-bottom: 80px;
}

#cmp_52f6cd06-a322-4909-a8a1-a9d92636bd6f h1,
#cmp_52f6cd06-a322-4909-a8a1-a9d92636bd6f h2,
#cmp_52f6cd06-a322-4909-a8a1-a9d92636bd6f h3 {
	margin-bottom: 1em;
}

#cmp_52f6cd06-a322-4909-a8a1-a9d92636bd6f h1 {
	color: rgb(208, 2, 27);
	font-family: Open Sans;
	font-size: 40px;
}

#cmp_52f6cd06-a322-4909-a8a1-a9d92636bd6f h2 {
	color: rgb(208, 2, 27);
	font-family: Open Sans;
	font-size: 26px;
}

#cmp_52f6cd06-a322-4909-a8a1-a9d92636bd6f h3 {
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 22px;
}

#cmp_52f6cd06-a322-4909-a8a1-a9d92636bd6f p {
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_52f6cd06-a322-4909-a8a1-a9d92636bd6f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_52f6cd06-a322-4909-a8a1-a9d92636bd6f ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_52f6cd06-a322-4909-a8a1-a9d92636bd6f  {
	padding: 50px 0 15px;
}
#cmp_52f6cd06-a322-4909-a8a1-a9d92636bd6f h1 {
	margin-bottom: 15px;
}
/*
 * components/shop/listing/cmp_62cd39a6-872e-4cb9-a321-55985f434fa6/component.css
 */
#cmp_62cd39a6-872e-4cb9-a321-55985f434fa6 .row {
	justify-content: center;
}

#cmp_62cd39a6-872e-4cb9-a321-55985f434fa6 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_79092d2b-af53-466e-8bdc-d86cd4eee419/component.css
 */
#cmp_79092d2b-af53-466e-8bdc-d86cd4eee419 .row {
	justify-content: center;
}

#cmp_79092d2b-af53-466e-8bdc-d86cd4eee419 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

#cmp_79092d2b-af53-466e-8bdc-d86cd4eee419  {
	border-bottom: 1px solid #E1E1E1;
	margin-bottom: 35px;
	padding-bottom: 35px;
}
/*
 * components/shop/listing/cmp_88f734df-bcd6-49e2-9f6c-610fdebcb156/component.css
 */
#cmp_88f734df-bcd6-49e2-9f6c-610fdebcb156 .shop-listing-item {
	color: rgb(0, 0, 0);
}

#cmp_88f734df-bcd6-49e2-9f6c-610fdebcb156 .shop-listing-item:hover,
#cmp_88f734df-bcd6-49e2-9f6c-610fdebcb156 .shop-listing-item:focus {
	text-decoration: none;
}

#cmp_88f734df-bcd6-49e2-9f6c-610fdebcb156 .shop-listing-item__image {
	background-size: cover;
	background-position: center center;
}

#cmp_88f734df-bcd6-49e2-9f6c-610fdebcb156 .shop-listing-item__name {
	margin: 10px 0;
}

#cmp_88f734df-bcd6-49e2-9f6c-610fdebcb156 .shop-listing-item__price {
	margin: 10px 0 30px;
}

#cmp_88f734df-bcd6-49e2-9f6c-610fdebcb156 .product_paging {
	-webkit-display: flex;
	-ms-display: flex;
	display: flex;
	justify-content: center;

	margin: 20px 0;
}

#cmp_88f734df-bcd6-49e2-9f6c-610fdebcb156 .product_page a,
#cmp_88f734df-bcd6-49e2-9f6c-610fdebcb156 .next_page a,
#cmp_88f734df-bcd6-49e2-9f6c-610fdebcb156 .prev_page a {
	display: block;
	padding: 12px 15px;
	margin: 0 2px;
	border: 1px solid #E0E0E0;
	border-radius: 5px;
}

#cmp_88f734df-bcd6-49e2-9f6c-610fdebcb156 .product_page.active a,
#cmp_88f734df-bcd6-49e2-9f6c-610fdebcb156 .product_page a:hover,
#cmp_88f734df-bcd6-49e2-9f6c-610fdebcb156 .product_page a:focus,
#cmp_88f734df-bcd6-49e2-9f6c-610fdebcb156 .next_page a:hover,
#cmp_88f734df-bcd6-49e2-9f6c-610fdebcb156 .next_page a:focus,
#cmp_88f734df-bcd6-49e2-9f6c-610fdebcb156 .prev_page a:hover,
#cmp_88f734df-bcd6-49e2-9f6c-610fdebcb156 .prev_page a:focus {
	text-decoration: none;
	background-color: #F9F9F9;
}

#cmp_88f734df-bcd6-49e2-9f6c-610fdebcb156 .product_page.active a {
	color: black;
}

/*
 * components/shop_policies/cmp_2d02409b-ac9a-44a6-99ef-37a182da573d/component.css
 */
#cmp_2d02409b-ac9a-44a6-99ef-37a182da573d {
	background-color: #FFFFFF;
}

#cmp_2d02409b-ac9a-44a6-99ef-37a182da573d h1 {
	color: rgb(6, 0, 0);
	font-family: Open Sans;
	font-size: 40px;
}

#cmp_2d02409b-ac9a-44a6-99ef-37a182da573d h2 {
	color: rgb(6, 0, 0);
	font-family: Open Sans;
	font-size: 26px;
}

#cmp_2d02409b-ac9a-44a6-99ef-37a182da573d h3 {
	color: rgb(6, 0, 0);
	font-family: Open Sans;
	font-size: 22px;
}

#cmp_2d02409b-ac9a-44a6-99ef-37a182da573d p {
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_2d02409b-ac9a-44a6-99ef-37a182da573d .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_2d02409b-ac9a-44a6-99ef-37a182da573d .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_2d02409b-ac9a-44a6-99ef-37a182da573d .btn {
	background-color: #31458C;
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_2d02409b-ac9a-44a6-99ef-37a182da573d .btn:hover {
	background-color: #D4A747;
	color: #FFFFFF;
}

#cmp_2d02409b-ac9a-44a6-99ef-37a182da573d ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_2d02409b-ac9a-44a6-99ef-37a182da573d ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 14px;
}

/*
 * components/shop_policies/cmp_2de50bce-d2f3-4b45-b38e-4f4e69f9147d/component.css
 */
#cmp_2de50bce-d2f3-4b45-b38e-4f4e69f9147d img {
	max-width: 100%;
}

/*
 * components/shop_policies/cmp_b0d39f7b-197d-4d72-b076-1a9ba79a7546/component.css
 */
#cmp_b0d39f7b-197d-4d72-b076-1a9ba79a7546 img {
	max-width: 100%;
}

/*
 * components/shop/product/cmp_aaadf63a-62ee-4e0e-91d5-973608be2020/component.css
 */
#cmp_aaadf63a-62ee-4e0e-91d5-973608be2020.shop-product-header {
	padding: 50px 0 15px;
}

/*
 * components/shop/product/cmp_aef50fe4-5e99-4f92-92ff-ed792a6f1b40/component.css
 */
#cmp_aef50fe4-5e99-4f92-92ff-ed792a6f1b40 .shop-product__name {
	margin-bottom: 10px;
}

#cmp_aef50fe4-5e99-4f92-92ff-ed792a6f1b40 .shop-product__price {
	margin-bottom: 20px;
}

#cmp_aef50fe4-5e99-4f92-92ff-ed792a6f1b40 .shop-product select {
	width: auto;
}

#cmp_aef50fe4-5e99-4f92-92ff-ed792a6f1b40 .shop-product__add-to-cart {
	margin-bottom: 20px;
}

#cmp_aef50fe4-5e99-4f92-92ff-ed792a6f1b40 .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin-bottom: 40px;
}

#cmp_aef50fe4-5e99-4f92-92ff-ed792a6f1b40 .shop-product__review-share-desktop .col-xs-6 {
	padding-top: 10px;
}

#cmp_aef50fe4-5e99-4f92-92ff-ed792a6f1b40 .shop-product__review-share-desktop .col-xs-6 + .col-xs-6 {
	border-left: 1px solid #E1E1E1;
}

/*
 * components/sold_out/cmp_04cdce18-6004-458f-bd8b-3be24b66b25a/component.css
 */
#cmp_04cdce18-6004-458f-bd8b-3be24b66b25a img {
	max-width: 100%;
}

#cmp_04cdce18-6004-458f-bd8b-3be24b66b25a  {
	padding-top: 50px;
}
/*
 * components/sold_out/cmp_13535229-6629-48d9-aa4f-04a3cef9907c/component.css
 */
#cmp_13535229-6629-48d9-aa4f-04a3cef9907c {
	background-color: #FFFFFF;
}

#cmp_13535229-6629-48d9-aa4f-04a3cef9907c h1 {
	color: rgb(6, 0, 0);
	font-family: Open Sans;
	font-size: 40px;
}

#cmp_13535229-6629-48d9-aa4f-04a3cef9907c h2 {
	color: rgb(6, 0, 0);
	font-family: Open Sans;
	font-size: 26px;
}

#cmp_13535229-6629-48d9-aa4f-04a3cef9907c h3 {
	color: rgb(6, 0, 0);
	font-family: Open Sans;
	font-size: 22px;
}

#cmp_13535229-6629-48d9-aa4f-04a3cef9907c p {
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_13535229-6629-48d9-aa4f-04a3cef9907c .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_13535229-6629-48d9-aa4f-04a3cef9907c .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_13535229-6629-48d9-aa4f-04a3cef9907c .btn {
	background-color: #31458C;
	color: #FFFFFF;
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_13535229-6629-48d9-aa4f-04a3cef9907c .btn:hover {
	background-color: #D4A747;
	color: #FFFFFF;
}

#cmp_13535229-6629-48d9-aa4f-04a3cef9907c ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_13535229-6629-48d9-aa4f-04a3cef9907c ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_13535229-6629-48d9-aa4f-04a3cef9907c  {
	padding-bottom: 50px;
}
/*
 * components/subscribe/cmp_a672a87d-f566-4721-b57a-251c0f2031e6/component.css
 */
#cmp_a672a87d-f566-4721-b57a-251c0f2031e6 {
	background-color: #FFFFFF;
	padding-top: 80px;
	padding-bottom: 80px;
}

#cmp_a672a87d-f566-4721-b57a-251c0f2031e6 h1,
#cmp_a672a87d-f566-4721-b57a-251c0f2031e6 h2,
#cmp_a672a87d-f566-4721-b57a-251c0f2031e6 h3 {
	margin-bottom: 1em;
}

#cmp_a672a87d-f566-4721-b57a-251c0f2031e6 h1 {
	color: rgb(208, 2, 27);
	font-family: Open Sans;
	font-size: 40px;
}

#cmp_a672a87d-f566-4721-b57a-251c0f2031e6 h2 {
	color: rgb(208, 2, 27);
	font-family: Open Sans;
	font-size: 26px;
}

#cmp_a672a87d-f566-4721-b57a-251c0f2031e6 h3 {
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 22px;
}

#cmp_a672a87d-f566-4721-b57a-251c0f2031e6 p {
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_a672a87d-f566-4721-b57a-251c0f2031e6 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_a672a87d-f566-4721-b57a-251c0f2031e6 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 14px;
}

/*
 * components/subscribe/cmp_b1e0d931-c25c-4321-92c7-5396a88bcdb8/component.css
 */

/*
 * components/subscribe_flow/survey_step/cmp_4aa89003-0ad1-4730-b405-c19a059f8f5e/component.css
 */
#cmp_4aa89003-0ad1-4730-b405-c19a059f8f5e.survey h2 {
	margin-bottom: 1em;
}

#cmp_4aa89003-0ad1-4730-b405-c19a059f8f5e.survey .radio input[type="radio"],
#cmp_4aa89003-0ad1-4730-b405-c19a059f8f5e.survey .checkbox input[type="checkbox"] {
	margin-right: 0.5em;
}

/*
 * components/subscribe_flow/survey_step/cmp_8eb2263b-6664-442a-9c95-c5b5a7605a14/component.css
 */
#cmp_8eb2263b-6664-442a-9c95-c5b5a7605a14 {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/terms_step/cmp_c5f84849-96ee-4fb6-a551-3a47bf69bdee/component.css
 */

/*
 * components/subscribe_flow/terms_step/cmp_efac50ab-07ce-4e9c-9ba8-29ce77a9312b/component.css
 */
#cmp_efac50ab-07ce-4e9c-9ba8-29ce77a9312b {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/variant_step/cmp_36fe2044-19b5-4e18-9e1b-673f08991630/component.css
 */
#cmp_36fe2044-19b5-4e18-9e1b-673f08991630 {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/variant_step/cmp_611f1634-8b2f-4a0c-8c48-65347106abab/component.css
 */

/*
 * components/view-cart/cmp_78575fce-7deb-4081-8967-09435ea052f1/component.css
 */
#cmp_78575fce-7deb-4081-8967-09435ea052f1 {
	padding: 15px 15px 100px 15px;
}

#cmp_78575fce-7deb-4081-8967-09435ea052f1 .cart-thead {
	border-bottom: 1px solid #E1E1E1;
	padding: 10px 0;
}

#cmp_78575fce-7deb-4081-8967-09435ea052f1 .cart-thead h3 {
	text-transform: uppercase;
}

#cmp_78575fce-7deb-4081-8967-09435ea052f1 .cart-item {
	border: 1px solid #E1E1E1;
	padding: 25px 0;
	position: relative;
}

#cmp_78575fce-7deb-4081-8967-09435ea052f1 .product-main {
	margin-bottom: 15px;
}

#cmp_78575fce-7deb-4081-8967-09435ea052f1 .product-label p {
	margin: 0;
}

#cmp_78575fce-7deb-4081-8967-09435ea052f1 .product-label .info {
	color: rgb(0, 0, 0);
	text-align: right;
	text-transform: uppercase;
}

#cmp_78575fce-7deb-4081-8967-09435ea052f1 .product-label .meta {
	color: rgb(0, 0, 0);
	font-size: 22px;
}

#cmp_78575fce-7deb-4081-8967-09435ea052f1 .product-rem-btn {
	position: absolute;
	right: 1%;
	top: 1%;
}

#cmp_78575fce-7deb-4081-8967-09435ea052f1 figure {
	margin: 0 0 15px 0;
}

#cmp_78575fce-7deb-4081-8967-09435ea052f1 .cart-subtotal {
	margin: 50px 0 0 0;
}

#cmp_78575fce-7deb-4081-8967-09435ea052f1 .cart-subtotal h1 {
	margin: 0 0 15px 0;
}

#cmp_78575fce-7deb-4081-8967-09435ea052f1 .cart-subtotal h3 {
	margin: 0 0 25px 0;
	text-transform: uppercase;
}

#cmp_78575fce-7deb-4081-8967-09435ea052f1 .cart-subtotal p {
	margin: 0 0 25px 0;
}

@media (min-width: 768px) {
	#cmp_78575fce-7deb-4081-8967-09435ea052f1 .cart-item {
		border-width: 0 0 1px 0;
	}
	#cmp_78575fce-7deb-4081-8967-09435ea052f1 .product-rem-btn {
		top: 40%;
	}
	#cmp_78575fce-7deb-4081-8967-09435ea052f1 figure {
		margin: 0;
	}
}

/*
 * components/view-cart/cmp_7f25faf9-f013-430f-9ca9-cc9e63948884/component.css
 */
#cmp_7f25faf9-f013-430f-9ca9-cc9e63948884 {
	background-color: #FFFFFF;
	padding-top: 80px;
	padding-bottom: 80px;
}

#cmp_7f25faf9-f013-430f-9ca9-cc9e63948884 h1,
#cmp_7f25faf9-f013-430f-9ca9-cc9e63948884 h2,
#cmp_7f25faf9-f013-430f-9ca9-cc9e63948884 h3 {
	margin-bottom: 1em;
}

#cmp_7f25faf9-f013-430f-9ca9-cc9e63948884 h1 {
	color: rgb(208, 2, 27);
	font-family: Open Sans;
	font-size: 40px;
}

#cmp_7f25faf9-f013-430f-9ca9-cc9e63948884 h2 {
	color: rgb(208, 2, 27);
	font-family: Open Sans;
	font-size: 26px;
}

#cmp_7f25faf9-f013-430f-9ca9-cc9e63948884 h3 {
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 22px;
}

#cmp_7f25faf9-f013-430f-9ca9-cc9e63948884 p {
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_7f25faf9-f013-430f-9ca9-cc9e63948884 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_7f25faf9-f013-430f-9ca9-cc9e63948884 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Open Sans;
	font-size: 14px;
}

#cmp_7f25faf9-f013-430f-9ca9-cc9e63948884  {
	padding: 50px 0;;
}
#cmp_7f25faf9-f013-430f-9ca9-cc9e63948884 h1 {
	margin-bottom: 15px;
}