/*
 * css/style.css
 */
/* Globals
------------------------------*/
body {
	background-color: rgb(255, 249, 240);
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
	line-height: 1.5em;
}

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

h1 {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 40px;
}

h2 {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 26px;
}

h3 {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 22px;
}

p {
	line-height: 1.5em;
}

a,
.btn-link {
	color: rgb(46, 49, 51);
}

a:hover,
a:focus,
a:active,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
	color: rgb(46, 49, 51);
}

/* 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(46, 49, 51);
}

.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 rgb(255, 249, 240);
	border-radius: 15px;
	color: rgb(255, 249, 240);
}

.btn-small:hover,
.btn-small:focus,
.btn-small:active,
.btn-small:active:focus {
	background-color: rgb(61, 68, 29);
	border: 1px solid rgb(61, 68, 29);
	color: rgb(255, 249, 240) !important;
}

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

.btn-primary,
.checkout_content #checkout_button {
	background-color: rgb(46, 49, 51);
	color: rgb(255, 249, 240);
	font-family: Josefin 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(46, 49, 51);
	color: #FFFFFF;
}

.btn-secondary {
	background-color: rgb(51, 66, 31);
	color: rgb(255, 249, 240);
	font-family: Josefin Sans;
	font-size: 14px;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:active:focus {
	background-color: rgb(46, 49, 51);
	color: #FAFAFA;
}

.btn-empty {
	background-color: transparent;
	color: rgb(255, 249, 240);
	border: 1px solid rgb(255, 249, 240);
}

.btn-empty:hover,
.btn-empty:focus,
.btn-empty:active,
.btn-empty:active:focus {
	background-color: rgb(61, 68, 29);
}

/* 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(49, 66, 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(46, 49, 51);
	border: none;
	border-radius: 25px;
	color: rgb(255, 249, 240);
	font-family: Josefin 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(46, 49, 51);
	color: #FFFFFF;
}

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

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

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

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

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

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

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

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

.address-container {
	width: 100%;
}

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

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

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

.address-container {
	width: 100%;
}

.errors {
	margin: 25px 0;
}

.cratejoy-loading-icon {
	color: rgb(255, 249, 240);
}

.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(46, 49, 51);
	color: rgb(46, 49, 51);
	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(46, 49, 51);
	border-color: rgb(46, 49, 51);
	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_4875c5be-e8c5-4935-b7d0-ddf5a18724bc/component.css
 */
#cmp_4875c5be-e8c5-4935-b7d0-ddf5a18724bc {
	background-color: rgb(255, 249, 240);
	padding-top: 80px;
	padding-bottom: 80px;
}

#cmp_4875c5be-e8c5-4935-b7d0-ddf5a18724bc h1,
#cmp_4875c5be-e8c5-4935-b7d0-ddf5a18724bc h2,
#cmp_4875c5be-e8c5-4935-b7d0-ddf5a18724bc h3 {
	margin-bottom: 1em;
}

#cmp_4875c5be-e8c5-4935-b7d0-ddf5a18724bc h1 {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 40px;
}

#cmp_4875c5be-e8c5-4935-b7d0-ddf5a18724bc h2 {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 26px;
}

#cmp_4875c5be-e8c5-4935-b7d0-ddf5a18724bc h3 {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 22px;
}

#cmp_4875c5be-e8c5-4935-b7d0-ddf5a18724bc p {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_4875c5be-e8c5-4935-b7d0-ddf5a18724bc ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_4875c5be-e8c5-4935-b7d0-ddf5a18724bc ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

/*
 * components/about/cmp_ef7e44a0-c541-436b-b507-f261690fd99b/component.css
 */
#cmp_ef7e44a0-c541-436b-b507-f261690fd99b {
	padding: 0;
}

#cmp_ef7e44a0-c541-436b-b507-f261690fd99b .hero-content {
	padding: 20px;
	min-height: calc(100vh - 120px); /* view height - navbar height */
}

@media(min-width: 767px) {
	#cmp_ef7e44a0-c541-436b-b507-f261690fd99b .hero-content {
		min-height: 750px;
	}
}

#cmp_ef7e44a0-c541-436b-b507-f261690fd99b .hero-content h1 {
	color: #FFFFFF;
	font-family: Playfair Display;
	font-size: 52px;
}

#cmp_ef7e44a0-c541-436b-b507-f261690fd99b .hero-content h2 {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 26px;
}

#cmp_ef7e44a0-c541-436b-b507-f261690fd99b .hero-content h3 {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 22px;
}

#cmp_ef7e44a0-c541-436b-b507-f261690fd99b .hero-content p {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_ef7e44a0-c541-436b-b507-f261690fd99b .hero-content .btn {
	margin-top: 40px;

	background-color: #FFFFFF;
	color: rgb(255, 249, 240);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_ef7e44a0-c541-436b-b507-f261690fd99b .hero-content .btn:hover {
	background-color: rgb(255, 249, 240);
	color: #FFFFFF;
}

#cmp_ef7e44a0-c541-436b-b507-f261690fd99b .hero-content {
	min-height: 480px;
}
/*
 * components/checkout/cmp_6815b31d-197b-46c2-bf7f-5e5a86d6fc54/component.css
 */
#cmp_6815b31d-197b-46c2-bf7f-5e5a86d6fc54 .checkout_content {
  overflow: auto;
}

#cmp_6815b31d-197b-46c2-bf7f-5e5a86d6fc54 .checkout_content section {
  border-color: #F5F5F5;
}

#cmp_6815b31d-197b-46c2-bf7f-5e5a86d6fc54 .cart_listing table {
  border-color: #F5F5F5;
}

/*
 * components/customer/account/cmp_dc402e99-7db8-46bf-aad6-9ee5e0297d58/component.css
 */

/*
 * components/customer/edit/cmp_518ddfcb-b74d-4fa6-b7bb-acbac6bf9d4b/component.css
 */

/*
 * components/customer/forgot_password/cmp_16713b31-9686-457a-bb5e-c821045470e4/component.css
 */

#cmp_16713b31-9686-457a-bb5e-c821045470e4  {
	padding-bottom: 120px;
}
/*
 * components/customer/forgot_password/cmp_e481190a-7d9b-49df-a824-f7d94f2c0405/component.css
 */
#cmp_e481190a-7d9b-49df-a824-f7d94f2c0405 {
	background-color: rgb(255, 249, 240);
	padding-top: 80px;
	padding-bottom: 80px;
}

#cmp_e481190a-7d9b-49df-a824-f7d94f2c0405 h1,
#cmp_e481190a-7d9b-49df-a824-f7d94f2c0405 h2,
#cmp_e481190a-7d9b-49df-a824-f7d94f2c0405 h3 {
	margin-bottom: 1em;
}

#cmp_e481190a-7d9b-49df-a824-f7d94f2c0405 h1 {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 40px;
}

#cmp_e481190a-7d9b-49df-a824-f7d94f2c0405 h2 {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 26px;
}

#cmp_e481190a-7d9b-49df-a824-f7d94f2c0405 h3 {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 22px;
}

#cmp_e481190a-7d9b-49df-a824-f7d94f2c0405 p {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_e481190a-7d9b-49df-a824-f7d94f2c0405 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_e481190a-7d9b-49df-a824-f7d94f2c0405 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_e481190a-7d9b-49df-a824-f7d94f2c0405  {
	padding: 50px 0;
}
#cmp_e481190a-7d9b-49df-a824-f7d94f2c0405 h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/login/cmp_5d5c34b9-8a05-4d0b-80f5-45a0b404e1d6/component.css
 */

#cmp_5d5c34b9-8a05-4d0b-80f5-45a0b404e1d6  {
	padding-bottom: 120px;
}
/*
 * components/customer/login/cmp_a387ec67-0c55-48e4-bebb-ccb339a972aa/component.css
 */
#cmp_a387ec67-0c55-48e4-bebb-ccb339a972aa {
	background-color: rgb(255, 249, 240);
	padding-top: 80px;
	padding-bottom: 80px;
}

#cmp_a387ec67-0c55-48e4-bebb-ccb339a972aa h1,
#cmp_a387ec67-0c55-48e4-bebb-ccb339a972aa h2,
#cmp_a387ec67-0c55-48e4-bebb-ccb339a972aa h3 {
	margin-bottom: 1em;
}

#cmp_a387ec67-0c55-48e4-bebb-ccb339a972aa h1 {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 40px;
}

#cmp_a387ec67-0c55-48e4-bebb-ccb339a972aa h2 {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 26px;
}

#cmp_a387ec67-0c55-48e4-bebb-ccb339a972aa h3 {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 22px;
}

#cmp_a387ec67-0c55-48e4-bebb-ccb339a972aa p {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_a387ec67-0c55-48e4-bebb-ccb339a972aa ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_a387ec67-0c55-48e4-bebb-ccb339a972aa ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_a387ec67-0c55-48e4-bebb-ccb339a972aa  {
	padding: 50px 0;
}
#cmp_a387ec67-0c55-48e4-bebb-ccb339a972aa h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/order/cmp_dcbf8073-aa67-412d-be2d-a883531ab10b/component.css
 */

/*
 * components/customer/orders/cmp_3cfae456-464b-4483-b437-5a5ec25c3591/component.css
 */

/*
 * components/customer/password_reset/cmp_66215123-e809-4494-bedf-8b9179acc046/component.css
 */

#cmp_66215123-e809-4494-bedf-8b9179acc046  {
	padding-bottom: 120px;
}
/*
 * components/customer/password_reset/cmp_fe089492-2b79-415a-912d-4a59d4f37c4f/component.css
 */
#cmp_fe089492-2b79-415a-912d-4a59d4f37c4f {
	background-color: rgb(255, 249, 240);
	padding-top: 80px;
	padding-bottom: 80px;
}

#cmp_fe089492-2b79-415a-912d-4a59d4f37c4f h1,
#cmp_fe089492-2b79-415a-912d-4a59d4f37c4f h2,
#cmp_fe089492-2b79-415a-912d-4a59d4f37c4f h3 {
	margin-bottom: 1em;
}

#cmp_fe089492-2b79-415a-912d-4a59d4f37c4f h1 {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 40px;
}

#cmp_fe089492-2b79-415a-912d-4a59d4f37c4f h2 {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 26px;
}

#cmp_fe089492-2b79-415a-912d-4a59d4f37c4f h3 {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 22px;
}

#cmp_fe089492-2b79-415a-912d-4a59d4f37c4f p {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_fe089492-2b79-415a-912d-4a59d4f37c4f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_fe089492-2b79-415a-912d-4a59d4f37c4f ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_fe089492-2b79-415a-912d-4a59d4f37c4f  {
	padding: 50px 0;
}
#cmp_fe089492-2b79-415a-912d-4a59d4f37c4f h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/thank_you/cmp_38afc105-4700-47ca-ae9d-12a5e61975b8/component.css
 */

/*
 * components/faqs/cmp_36b97639-65ba-480f-afda-9c0d0ad807ba/component.css
 */
#cmp_36b97639-65ba-480f-afda-9c0d0ad807ba img {
	max-width: 100%;
}

/*
 * components/faqs/cmp_c2e92091-4403-4dda-92eb-eb3192133e77/component.css
 */
#cmp_c2e92091-4403-4dda-92eb-eb3192133e77 img {
	max-width: 100%;
}

/*
 * components/faqs/cmp_dda55680-886c-4e9f-94ba-58de5b27515f/component.css
 */
#cmp_dda55680-886c-4e9f-94ba-58de5b27515f {
	background-color: rgb(255, 249, 240);
}

#cmp_dda55680-886c-4e9f-94ba-58de5b27515f h1 {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 40px;
}

#cmp_dda55680-886c-4e9f-94ba-58de5b27515f h2 {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 26px;
}

#cmp_dda55680-886c-4e9f-94ba-58de5b27515f h3 {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 22px;
}

#cmp_dda55680-886c-4e9f-94ba-58de5b27515f p {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_dda55680-886c-4e9f-94ba-58de5b27515f .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_dda55680-886c-4e9f-94ba-58de5b27515f .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_dda55680-886c-4e9f-94ba-58de5b27515f .btn {
	background-color: rgb(255, 249, 240);
	color: rgb(255, 249, 240);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_dda55680-886c-4e9f-94ba-58de5b27515f .btn:hover {
	background-color: rgb(46, 49, 51);
	color: #FFFFFF;
}

#cmp_dda55680-886c-4e9f-94ba-58de5b27515f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_dda55680-886c-4e9f-94ba-58de5b27515f ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

/*
 * components/global/cmp_692c2b82-4a08-4a08-8642-e58fa3bfbd56/component.css
 */
#cmp_692c2b82-4a08-4a08-8642-e58fa3bfbd56 {
	background-color: rgb(255, 249, 240);
}

#cmp_692c2b82-4a08-4a08-8642-e58fa3bfbd56 h1 {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 40px;
}

#cmp_692c2b82-4a08-4a08-8642-e58fa3bfbd56 h2 {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 26px;
}

#cmp_692c2b82-4a08-4a08-8642-e58fa3bfbd56 h3 {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 22px;
}

#cmp_692c2b82-4a08-4a08-8642-e58fa3bfbd56 p {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_692c2b82-4a08-4a08-8642-e58fa3bfbd56 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_692c2b82-4a08-4a08-8642-e58fa3bfbd56 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_692c2b82-4a08-4a08-8642-e58fa3bfbd56 .btn {
	background-color: rgb(61, 68, 29);
	color: rgb(255, 249, 240);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_692c2b82-4a08-4a08-8642-e58fa3bfbd56 .btn:hover {
	background-color: rgb(46, 49, 51);
	color: rgb(61, 68, 29);
}

#cmp_692c2b82-4a08-4a08-8642-e58fa3bfbd56 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_692c2b82-4a08-4a08-8642-e58fa3bfbd56 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 14px;
}

/*
 * components/global/cmp_76eac048-6ee7-4ed8-b0f2-0a22a9ed421a/component.css
 */
#cmp_76eac048-6ee7-4ed8-b0f2-0a22a9ed421a {
	background-color: rgb(255, 249, 240);
	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_76eac048-6ee7-4ed8-b0f2-0a22a9ed421a .navbar {
	padding-bottom: 0;
}

#cmp_76eac048-6ee7-4ed8-b0f2-0a22a9ed421a .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(255, 249, 240);
	font-family: Josefin Sans;
	font-size: ;
	margin: 0;
	padding: 15px;
	text-align: center;
}

#cmp_76eac048-6ee7-4ed8-b0f2-0a22a9ed421a .navbar-brand .store-name {
	padding: 6px 12px;
	border: 2px solid ;
}

#cmp_76eac048-6ee7-4ed8-b0f2-0a22a9ed421a .navbar-brand:hover,
#cmp_76eac048-6ee7-4ed8-b0f2-0a22a9ed421a .navbar-brand:focus,
#cmp_76eac048-6ee7-4ed8-b0f2-0a22a9ed421a .navbar-brand:active {
	color: rgb(46, 49, 51);
}

#cmp_76eac048-6ee7-4ed8-b0f2-0a22a9ed421a .navbar-brand:hover .store-name,
#cmp_76eac048-6ee7-4ed8-b0f2-0a22a9ed421a .navbar-brand:focus .store-name,
#cmp_76eac048-6ee7-4ed8-b0f2-0a22a9ed421a .navbar-brand:active .store-name {
	color: rgb(46, 49, 51);
}

#cmp_76eac048-6ee7-4ed8-b0f2-0a22a9ed421a .navbar-brand img {
	max-width: 100%;
}

#cmp_76eac048-6ee7-4ed8-b0f2-0a22a9ed421a .navbar .navbar-toggler {
	color: rgb(61, 68, 29);
	font-family: Josefin 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_76eac048-6ee7-4ed8-b0f2-0a22a9ed421a .navbar .navbar-toggler:hover,
#cmp_76eac048-6ee7-4ed8-b0f2-0a22a9ed421a .navbar .navbar-toggler:focus,
#cmp_76eac048-6ee7-4ed8-b0f2-0a22a9ed421a .navbar .navbar-toggler:active {
	color: rgb(46, 49, 51);
}

#cmp_76eac048-6ee7-4ed8-b0f2-0a22a9ed421a .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_76eac048-6ee7-4ed8-b0f2-0a22a9ed421a .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_76eac048-6ee7-4ed8-b0f2-0a22a9ed421a .navbar-nav li {
	padding-top: 10px;
	padding-bottom: 10px;
}

#cmp_76eac048-6ee7-4ed8-b0f2-0a22a9ed421a .navbar .navbar-toggler,
#cmp_76eac048-6ee7-4ed8-b0f2-0a22a9ed421a .navbar-nav .nav-link {
	font-family: Josefin Sans;
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

#cmp_76eac048-6ee7-4ed8-b0f2-0a22a9ed421a .navbar-nav .nav-link {
	color: rgb(61, 68, 29);
	padding: 14px 18px;
	text-align: center;
}

#cmp_76eac048-6ee7-4ed8-b0f2-0a22a9ed421a .navbar-nav .nav-link:hover,
#cmp_76eac048-6ee7-4ed8-b0f2-0a22a9ed421a .navbar-nav .nav-link:active,
#cmp_76eac048-6ee7-4ed8-b0f2-0a22a9ed421a .navbar-nav .nav-link:focus {
	color: rgb(46, 49, 51);
}

#cmp_76eac048-6ee7-4ed8-b0f2-0a22a9ed421a .dropdown-menu {
	min-width: 160px;
}

@media (min-width: 768px) {
	#cmp_76eac048-6ee7-4ed8-b0f2-0a22a9ed421a .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_76eac048-6ee7-4ed8-b0f2-0a22a9ed421a .navbar-toggleable-sm {
		-webkit-flex-basis: auto;
		-moz-flex-basis: auto;
		-ms-flex-basis: auto;
		flex-basis: auto;

		margin: 0;
		margin-bottom: .5rem;
	}
	#cmp_76eac048-6ee7-4ed8-b0f2-0a22a9ed421a .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: rgb(255, 249, 240);
	}
	#cmp_76eac048-6ee7-4ed8-b0f2-0a22a9ed421a .navbar-nav li {
		padding: 0;
	}
}

/*
 * components/global/cmp_8e3f50b5-5fc7-459a-b40b-b143588b2db5/component.css
 */
#cmp_8e3f50b5-5fc7-459a-b40b-b143588b2db5.footer {
	background-color: rgb(61, 68, 29);
	padding-bottom: 22px;
}

#cmp_8e3f50b5-5fc7-459a-b40b-b143588b2db5,
#cmp_8e3f50b5-5fc7-459a-b40b-b143588b2db5 p,
#cmp_8e3f50b5-5fc7-459a-b40b-b143588b2db5 h1,
#cmp_8e3f50b5-5fc7-459a-b40b-b143588b2db5 h2,
#cmp_8e3f50b5-5fc7-459a-b40b-b143588b2db5 h3 {
	font-family: Josefin Sans;
	color: rgb(255, 249, 240);
}

#cmp_8e3f50b5-5fc7-459a-b40b-b143588b2db5,
#cmp_8e3f50b5-5fc7-459a-b40b-b143588b2db5 p {
	font-weight: lighter;
}

#cmp_8e3f50b5-5fc7-459a-b40b-b143588b2db5 .footer-list .footer-link {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: ;
	text-transform: lowercase;
}

#cmp_8e3f50b5-5fc7-459a-b40b-b143588b2db5 .footer-list .footer-link:hover,
#cmp_8e3f50b5-5fc7-459a-b40b-b143588b2db5 .footer-list .footer-link:focus,
#cmp_8e3f50b5-5fc7-459a-b40b-b143588b2db5 .footer-list .footer-link:active {
	color: rgb(46, 49, 51);
	text-decoration: none;
}

#cmp_8e3f50b5-5fc7-459a-b40b-b143588b2db5 .footer-list .footer-item {
	padding: 3px 0;
}

/* follow us column */
#cmp_8e3f50b5-5fc7-459a-b40b-b143588b2db5 .footer-follow-us svg path {
	fill: rgb(255, 249, 240);
}

#cmp_8e3f50b5-5fc7-459a-b40b-b143588b2db5 .footer-follow-us a:hover,
#cmp_8e3f50b5-5fc7-459a-b40b-b143588b2db5 .footer-follow-us a:focus,
#cmp_8e3f50b5-5fc7-459a-b40b-b143588b2db5 .footer-follow-us a:active {
	fill: rgb(46, 49, 51);
	text-decoration: none;
}

#cmp_8e3f50b5-5fc7-459a-b40b-b143588b2db5 .footer-follow-us a:hover svg path,
#cmp_8e3f50b5-5fc7-459a-b40b-b143588b2db5 .footer-follow-us a:focus svg path,
#cmp_8e3f50b5-5fc7-459a-b40b-b143588b2db5 .footer-follow-us a:active svg path {
	fill: rgb(46, 49, 51);
}

#cmp_8e3f50b5-5fc7-459a-b40b-b143588b2db5 .footer-follow-us {
	letter-spacing: 1px;
	text-align: center;

	border-top: 1px solid;
	border-color: rgb(255, 249, 240);

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

#cmp_8e3f50b5-5fc7-459a-b40b-b143588b2db5 .footer-follow-us .social-icons-row {
	justify-content: center;
	margin-top: 18px;
	margin-bottom: 15px;
}

#cmp_8e3f50b5-5fc7-459a-b40b-b143588b2db5 .footer-follow-us .social-icons-row a {
	margin: 0 8px;
}

#cmp_8e3f50b5-5fc7-459a-b40b-b143588b2db5 .footer-follow-us p {
	padding-bottom: 15px;
	margin: 0;
}

/* contact us column */
#cmp_8e3f50b5-5fc7-459a-b40b-b143588b2db5 .footer-contact-us a {
	display: inline-block;
}

#cmp_8e3f50b5-5fc7-459a-b40b-b143588b2db5 .footer-bottom {
	text-align: center;

	border-top: 1px solid;
	border-color: rgb(255, 249, 240);
}

#cmp_8e3f50b5-5fc7-459a-b40b-b143588b2db5 .footer-bottom > div {
	margin-top: 22px;
}

@media (min-width: 768px) {
	#cmp_8e3f50b5-5fc7-459a-b40b-b143588b2db5 .footer-contact-us {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}

	#cmp_8e3f50b5-5fc7-459a-b40b-b143588b2db5 .footer-follow-us {
		border-top: none;
		padding-top: 0;
	}

	#cmp_8e3f50b5-5fc7-459a-b40b-b143588b2db5 .footer-bottom {
		text-align: left;
	}

	#cmp_8e3f50b5-5fc7-459a-b40b-b143588b2db5 .footer-cards {
		float: right;
		padding-top: 0;
	}
}

/*
 * components/global/cmp_e9c67f1c-ef6e-45ed-a603-c8f7b76f96bb/component.css
 */
#cmp_e9c67f1c-ef6e-45ed-a603-c8f7b76f96bb {
	background-color: #ECF0F0;
	padding-top: 14px;
	padding-bottom: 0;
}

#cmp_e9c67f1c-ef6e-45ed-a603-c8f7b76f96bb .progress-bar {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

@media(min-width: 768px) {
	#cmp_e9c67f1c-ef6e-45ed-a603-c8f7b76f96bb .progress-bar {
		display: flex;
		justify-content: flex-start;
	}
}

#cmp_e9c67f1c-ef6e-45ed-a603-c8f7b76f96bb .progress-bar .step {
	color: rgb(255, 249, 240);
	text-transform: lowercase;
	padding-bottom: 14px;
}

#cmp_e9c67f1c-ef6e-45ed-a603-c8f7b76f96bb .progress-bar .step .separator {
	opacity: 0.5;
	margin: 0 20px;
}

#cmp_e9c67f1c-ef6e-45ed-a603-c8f7b76f96bb .progress-bar .step .title {
	opacity: 0.5;
}

#cmp_e9c67f1c-ef6e-45ed-a603-c8f7b76f96bb .progress-bar .step.active .title {
	opacity: 1;
}

/*
 * components/index/cmp_030d45a9-b6e3-4eea-a60b-ea4ccab4956b/component.css
 */
#cmp_030d45a9-b6e3-4eea-a60b-ea4ccab4956b {
	padding: 0;
}

#cmp_030d45a9-b6e3-4eea-a60b-ea4ccab4956b .hero-content {
	background-color: rgb(124, 152, 179);
	padding: 20px;
}

#cmp_030d45a9-b6e3-4eea-a60b-ea4ccab4956b .hero-content h1 {
	color: rgb(255, 249, 240);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_030d45a9-b6e3-4eea-a60b-ea4ccab4956b .hero-content h2 {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 26px;
}

#cmp_030d45a9-b6e3-4eea-a60b-ea4ccab4956b .hero-content h3 {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 22px;
}

#cmp_030d45a9-b6e3-4eea-a60b-ea4ccab4956b .hero-content p {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_030d45a9-b6e3-4eea-a60b-ea4ccab4956b .hero-content .btn {
	background-color: rgb(255, 249, 240);
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_030d45a9-b6e3-4eea-a60b-ea4ccab4956b .hero-content .btn:hover {
	background-color: rgb(46, 49, 51);
	color: #FFFFFF;
}


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

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

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

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

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

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

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

/*
 * components/index/cmp_5db3005d-1db5-4aaf-8c22-21f1bb85f6da/component.css
 */
#cmp_5db3005d-1db5-4aaf-8c22-21f1bb85f6da {
	background-color: rgb(255, 249, 240);
	padding-top: 80px;
	padding-bottom: 80px;
}

#cmp_5db3005d-1db5-4aaf-8c22-21f1bb85f6da h1,
#cmp_5db3005d-1db5-4aaf-8c22-21f1bb85f6da h2,
#cmp_5db3005d-1db5-4aaf-8c22-21f1bb85f6da h3 {
	margin-bottom: 1em;
}

#cmp_5db3005d-1db5-4aaf-8c22-21f1bb85f6da h1 {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 40px;
}

#cmp_5db3005d-1db5-4aaf-8c22-21f1bb85f6da h2 {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 26px;
}

#cmp_5db3005d-1db5-4aaf-8c22-21f1bb85f6da h3 {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 22px;
}

#cmp_5db3005d-1db5-4aaf-8c22-21f1bb85f6da p {
	color: rgb(49, 66, 27);
	font-family: Playfair Display;
	font-size: 16px;
}

#cmp_5db3005d-1db5-4aaf-8c22-21f1bb85f6da ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(49, 66, 27);
	font-family: Playfair Display;
	font-size: 16px;
}

#cmp_5db3005d-1db5-4aaf-8c22-21f1bb85f6da ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(49, 66, 27);
	font-family: Playfair Display;
	font-size: 16px;
}

/*
 * components/index/cmp_803d8b83-2940-44f3-b1aa-adee7471a5a4/component.css
 */
#cmp_803d8b83-2940-44f3-b1aa-adee7471a5a4 {
	padding: 0;
}

#cmp_803d8b83-2940-44f3-b1aa-adee7471a5a4 .hero-content {
	background-color: rgb(61, 68, 29);
	padding: 20px;
}

#cmp_803d8b83-2940-44f3-b1aa-adee7471a5a4 .hero-content h1 {
	color: rgb(255, 249, 240);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_803d8b83-2940-44f3-b1aa-adee7471a5a4 .hero-content h2 {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 26px;
}

#cmp_803d8b83-2940-44f3-b1aa-adee7471a5a4 .hero-content h3 {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 22px;
}

#cmp_803d8b83-2940-44f3-b1aa-adee7471a5a4 .hero-content p {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_803d8b83-2940-44f3-b1aa-adee7471a5a4 .hero-content .btn {
	background-color: rgb(255, 249, 240);
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_803d8b83-2940-44f3-b1aa-adee7471a5a4 .hero-content .btn:hover {
	background-color: rgb(46, 49, 51);
	color: #FFFFFF;
}


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

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

	#cmp_803d8b83-2940-44f3-b1aa-adee7471a5a4 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_803d8b83-2940-44f3-b1aa-adee7471a5a4 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

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

	#cmp_803d8b83-2940-44f3-b1aa-adee7471a5a4 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_803d8b83-2940-44f3-b1aa-adee7471a5a4 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/index/cmp_d00f36ae-31e9-4167-a121-c5fe111c8cc4/component.css
 */
#cmp_d00f36ae-31e9-4167-a121-c5fe111c8cc4 {
	background-color: rgb(255, 249, 240);
}

#cmp_d00f36ae-31e9-4167-a121-c5fe111c8cc4 .content {
	display: flex;
	align-items: center;
}

#cmp_d00f36ae-31e9-4167-a121-c5fe111c8cc4 .content {
	padding: 20px;
}

#cmp_d00f36ae-31e9-4167-a121-c5fe111c8cc4 .content .main-caption {
	flex-grow: 1;
}

#cmp_d00f36ae-31e9-4167-a121-c5fe111c8cc4 .image-block div {
	width: 100%;
	height: 100%;
}

@media (min-width: 768px) {
	#cmp_d00f36ae-31e9-4167-a121-c5fe111c8cc4 .content {
		order: 1;
	}

	#cmp_d00f36ae-31e9-4167-a121-c5fe111c8cc4 .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_d00f36ae-31e9-4167-a121-c5fe111c8cc4 .image-block {
	padding: 0;
	height: 1px;
	min-height: calc((329 / 425) * 100vw); /* full view width */
}

@media(min-width: 544px) {
	#cmp_d00f36ae-31e9-4167-a121-c5fe111c8cc4 .image-block {
		padding: 0 20px;
		min-height: calc((329 / 425) * (576px - 20px * 2)); /* full container width */
	}
}

@media(min-width: 768px) {
	#cmp_d00f36ae-31e9-4167-a121-c5fe111c8cc4 .image-block {
		padding: 0 20px;
		min-height: calc((329 / 425) * ((720px / 2) - 20px * 2)); /* half the container width */
	}
}

@media(min-width: 992px) {
	#cmp_d00f36ae-31e9-4167-a121-c5fe111c8cc4 .image-block {
		padding: 0 20px;
		min-height: calc((329 / 425) * ((940px / 2) - 20px * 2)); /* half the container width */
	}
}

@media(min-width: 1200px) {
	#cmp_d00f36ae-31e9-4167-a121-c5fe111c8cc4 .image-block {
		min-height: calc((329 / 425) * ((1140px / 2) - 20px * 2)); /* half the container width */
	}
}

#cmp_d00f36ae-31e9-4167-a121-c5fe111c8cc4 h1 {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 40px;
}

#cmp_d00f36ae-31e9-4167-a121-c5fe111c8cc4 h2 {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 26px;
}

#cmp_d00f36ae-31e9-4167-a121-c5fe111c8cc4 h3 {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 22px;
}

#cmp_d00f36ae-31e9-4167-a121-c5fe111c8cc4 p {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

/*
 * components/index/cmp_d8ef2ab7-35a1-47a5-8959-7d429122d1c3/component.css
 */
#cmp_d8ef2ab7-35a1-47a5-8959-7d429122d1c3 {
	padding: 0;
}

#cmp_d8ef2ab7-35a1-47a5-8959-7d429122d1c3 .hero-content {
	background-color: rgb(74, 74, 74);
	padding: 20px;
}

#cmp_d8ef2ab7-35a1-47a5-8959-7d429122d1c3 .hero-content h1 {
	color: rgb(255, 249, 240);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_d8ef2ab7-35a1-47a5-8959-7d429122d1c3 .hero-content h2 {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 26px;
}

#cmp_d8ef2ab7-35a1-47a5-8959-7d429122d1c3 .hero-content h3 {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 22px;
}

#cmp_d8ef2ab7-35a1-47a5-8959-7d429122d1c3 .hero-content p {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_d8ef2ab7-35a1-47a5-8959-7d429122d1c3 .hero-content .btn {
	background-color: rgb(255, 249, 240);
	color: rgb(74, 74, 74);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_d8ef2ab7-35a1-47a5-8959-7d429122d1c3 .hero-content .btn:hover {
	background-color: rgb(46, 49, 51);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_d8ef2ab7-35a1-47a5-8959-7d429122d1c3 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_d8ef2ab7-35a1-47a5-8959-7d429122d1c3 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_d8ef2ab7-35a1-47a5-8959-7d429122d1c3 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_d8ef2ab7-35a1-47a5-8959-7d429122d1c3 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_d8ef2ab7-35a1-47a5-8959-7d429122d1c3 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_d8ef2ab7-35a1-47a5-8959-7d429122d1c3 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_d8ef2ab7-35a1-47a5-8959-7d429122d1c3 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/index/cmp_e3d29931-c99a-49b8-98d5-e2945a3201bd/component.css
 */
#cmp_e3d29931-c99a-49b8-98d5-e2945a3201bd {
	padding: 0;
}

#cmp_e3d29931-c99a-49b8-98d5-e2945a3201bd .hero-content {
	padding: 20px;
	min-height: calc(100vh - 120px); /* view height - navbar height */
}

@media(min-width: 767px) {
	#cmp_e3d29931-c99a-49b8-98d5-e2945a3201bd .hero-content {
		min-height: 750px;
	}
}

#cmp_e3d29931-c99a-49b8-98d5-e2945a3201bd .hero-content h1 {
	color: #FFFFFF;
	font-family: Playfair Display;
	font-size: 52px;
}

#cmp_e3d29931-c99a-49b8-98d5-e2945a3201bd .hero-content h2 {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 26px;
}

#cmp_e3d29931-c99a-49b8-98d5-e2945a3201bd .hero-content h3 {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 22px;
}

#cmp_e3d29931-c99a-49b8-98d5-e2945a3201bd .hero-content p {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 16px;
}

#cmp_e3d29931-c99a-49b8-98d5-e2945a3201bd .hero-content .btn {
	margin-top: 40px;

	background-color: rgb(255, 249, 240);
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_e3d29931-c99a-49b8-98d5-e2945a3201bd .hero-content .btn:hover {
	background-color: rgb(255, 249, 240);
	color: #FFFFFF;
}

/*
 * components/past_kid_picks/cmp_14b217e6-07fa-4a71-8859-7625ec72d1dd/component.css
 */
#cmp_14b217e6-07fa-4a71-8859-7625ec72d1dd {
	padding: 0;
}

#cmp_14b217e6-07fa-4a71-8859-7625ec72d1dd .hero-content {
	background-color: rgb(125, 118, 155);
	padding: 20px;
}

#cmp_14b217e6-07fa-4a71-8859-7625ec72d1dd .hero-content h1 {
	color: rgb(255, 249, 240);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_14b217e6-07fa-4a71-8859-7625ec72d1dd .hero-content h2 {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 26px;
}

#cmp_14b217e6-07fa-4a71-8859-7625ec72d1dd .hero-content h3 {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 22px;
}

#cmp_14b217e6-07fa-4a71-8859-7625ec72d1dd .hero-content p {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_14b217e6-07fa-4a71-8859-7625ec72d1dd .hero-content .btn {
	background-color: rgb(255, 249, 240);
	color: rgb(125, 118, 155);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_14b217e6-07fa-4a71-8859-7625ec72d1dd .hero-content .btn:hover {
	background-color: rgb(46, 49, 51);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_14b217e6-07fa-4a71-8859-7625ec72d1dd .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_14b217e6-07fa-4a71-8859-7625ec72d1dd .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_14b217e6-07fa-4a71-8859-7625ec72d1dd .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_14b217e6-07fa-4a71-8859-7625ec72d1dd .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_14b217e6-07fa-4a71-8859-7625ec72d1dd .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_14b217e6-07fa-4a71-8859-7625ec72d1dd .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_14b217e6-07fa-4a71-8859-7625ec72d1dd .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/past_kid_picks/cmp_435d741d-a465-4ad1-ac0d-84765a04981e/component.css
 */
#cmp_435d741d-a465-4ad1-ac0d-84765a04981e {
	padding: 0;
}

#cmp_435d741d-a465-4ad1-ac0d-84765a04981e .hero-content {
	background-color: rgb(124, 154, 181);
	padding: 20px;
}

#cmp_435d741d-a465-4ad1-ac0d-84765a04981e .hero-content h1 {
	color: rgb(255, 249, 240);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_435d741d-a465-4ad1-ac0d-84765a04981e .hero-content h2 {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 26px;
}

#cmp_435d741d-a465-4ad1-ac0d-84765a04981e .hero-content h3 {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 22px;
}

#cmp_435d741d-a465-4ad1-ac0d-84765a04981e .hero-content p {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_435d741d-a465-4ad1-ac0d-84765a04981e .hero-content .btn {
	background-color: rgb(255, 249, 240);
	color: rgb(124, 154, 181);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_435d741d-a465-4ad1-ac0d-84765a04981e .hero-content .btn:hover {
	background-color: rgb(46, 49, 51);
	color: #FFFFFF;
}


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

@media(min-width: 768px) {
	#cmp_435d741d-a465-4ad1-ac0d-84765a04981e .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_435d741d-a465-4ad1-ac0d-84765a04981e .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_435d741d-a465-4ad1-ac0d-84765a04981e .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_435d741d-a465-4ad1-ac0d-84765a04981e .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_435d741d-a465-4ad1-ac0d-84765a04981e .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_435d741d-a465-4ad1-ac0d-84765a04981e .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/past_kid_picks/cmp_4647bf14-5cf2-42e8-961e-9bf31361295a/component.css
 */
#cmp_4647bf14-5cf2-42e8-961e-9bf31361295a {
	padding: 0;
}

#cmp_4647bf14-5cf2-42e8-961e-9bf31361295a .hero-content {
	background-color: rgb(227, 115, 119);
	padding: 20px;
}

#cmp_4647bf14-5cf2-42e8-961e-9bf31361295a .hero-content h1 {
	color: rgb(255, 249, 240);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_4647bf14-5cf2-42e8-961e-9bf31361295a .hero-content h2 {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 26px;
}

#cmp_4647bf14-5cf2-42e8-961e-9bf31361295a .hero-content h3 {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 22px;
}

#cmp_4647bf14-5cf2-42e8-961e-9bf31361295a .hero-content p {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_4647bf14-5cf2-42e8-961e-9bf31361295a .hero-content .btn {
	background-color: rgb(255, 249, 240);
	color: rgb(227, 115, 119);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_4647bf14-5cf2-42e8-961e-9bf31361295a .hero-content .btn:hover {
	background-color: rgb(46, 49, 51);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_4647bf14-5cf2-42e8-961e-9bf31361295a .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_4647bf14-5cf2-42e8-961e-9bf31361295a .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_4647bf14-5cf2-42e8-961e-9bf31361295a .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_4647bf14-5cf2-42e8-961e-9bf31361295a .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_4647bf14-5cf2-42e8-961e-9bf31361295a .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_4647bf14-5cf2-42e8-961e-9bf31361295a .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_4647bf14-5cf2-42e8-961e-9bf31361295a .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/past_kid_picks/cmp_7abc6eaf-0aa6-42b2-ba70-175b7806b2a1/component.css
 */
#cmp_7abc6eaf-0aa6-42b2-ba70-175b7806b2a1 {
	padding: 0;
}

#cmp_7abc6eaf-0aa6-42b2-ba70-175b7806b2a1 .hero-content {
	background-color: rgb(99, 137, 120);
	padding: 20px;
}

#cmp_7abc6eaf-0aa6-42b2-ba70-175b7806b2a1 .hero-content h1 {
	color: rgb(255, 249, 240);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_7abc6eaf-0aa6-42b2-ba70-175b7806b2a1 .hero-content h2 {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 26px;
}

#cmp_7abc6eaf-0aa6-42b2-ba70-175b7806b2a1 .hero-content h3 {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 22px;
}

#cmp_7abc6eaf-0aa6-42b2-ba70-175b7806b2a1 .hero-content p {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_7abc6eaf-0aa6-42b2-ba70-175b7806b2a1 .hero-content .btn {
	background-color: rgb(255, 249, 240);
	color: rgb(99, 137, 120);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_7abc6eaf-0aa6-42b2-ba70-175b7806b2a1 .hero-content .btn:hover {
	background-color: rgb(46, 49, 51);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_7abc6eaf-0aa6-42b2-ba70-175b7806b2a1 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_7abc6eaf-0aa6-42b2-ba70-175b7806b2a1 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_7abc6eaf-0aa6-42b2-ba70-175b7806b2a1 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_7abc6eaf-0aa6-42b2-ba70-175b7806b2a1 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_7abc6eaf-0aa6-42b2-ba70-175b7806b2a1 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_7abc6eaf-0aa6-42b2-ba70-175b7806b2a1 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_7abc6eaf-0aa6-42b2-ba70-175b7806b2a1 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/past_kid_picks/cmp_c3ab6727-b159-48c0-981b-57fa82293125/component.css
 */
#cmp_c3ab6727-b159-48c0-981b-57fa82293125 {
	padding: 0;
}

#cmp_c3ab6727-b159-48c0-981b-57fa82293125 .hero-content {
	background-color: rgb(176, 180, 104);
	padding: 20px;
}

#cmp_c3ab6727-b159-48c0-981b-57fa82293125 .hero-content h1 {
	color: rgb(255, 249, 240);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_c3ab6727-b159-48c0-981b-57fa82293125 .hero-content h2 {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 26px;
}

#cmp_c3ab6727-b159-48c0-981b-57fa82293125 .hero-content h3 {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 22px;
}

#cmp_c3ab6727-b159-48c0-981b-57fa82293125 .hero-content p {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_c3ab6727-b159-48c0-981b-57fa82293125 .hero-content .btn {
	background-color: rgb(255, 249, 240);
	color: rgb(176, 180, 104);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_c3ab6727-b159-48c0-981b-57fa82293125 .hero-content .btn:hover {
	background-color: rgb(46, 49, 51);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_c3ab6727-b159-48c0-981b-57fa82293125 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_c3ab6727-b159-48c0-981b-57fa82293125 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_c3ab6727-b159-48c0-981b-57fa82293125 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_c3ab6727-b159-48c0-981b-57fa82293125 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_c3ab6727-b159-48c0-981b-57fa82293125 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_c3ab6727-b159-48c0-981b-57fa82293125 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_c3ab6727-b159-48c0-981b-57fa82293125 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/past_kid_picks/cmp_eda66562-fd6b-4c1d-a4a3-cc78d120823e/component.css
 */
#cmp_eda66562-fd6b-4c1d-a4a3-cc78d120823e {
	background-color: rgb(255, 249, 240);
	padding-top: 80px;
	padding-bottom: 80px;
}

#cmp_eda66562-fd6b-4c1d-a4a3-cc78d120823e h1,
#cmp_eda66562-fd6b-4c1d-a4a3-cc78d120823e h2,
#cmp_eda66562-fd6b-4c1d-a4a3-cc78d120823e h3 {
	margin-bottom: 1em;
}

#cmp_eda66562-fd6b-4c1d-a4a3-cc78d120823e h1 {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 40px;
}

#cmp_eda66562-fd6b-4c1d-a4a3-cc78d120823e h2 {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 26px;
}

#cmp_eda66562-fd6b-4c1d-a4a3-cc78d120823e h3 {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 22px;
}

#cmp_eda66562-fd6b-4c1d-a4a3-cc78d120823e p {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_eda66562-fd6b-4c1d-a4a3-cc78d120823e ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_eda66562-fd6b-4c1d-a4a3-cc78d120823e ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

/*
 * components/past_picks/cmp_18ae0617-bf63-4179-a001-946edf76e45f/component.css
 */
#cmp_18ae0617-bf63-4179-a001-946edf76e45f {
	padding: 0;
}

#cmp_18ae0617-bf63-4179-a001-946edf76e45f .hero-content {
	background-color: rgb(61, 68, 29);
	padding: 20px;
}

#cmp_18ae0617-bf63-4179-a001-946edf76e45f .hero-content h1 {
	color: rgb(255, 249, 240);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_18ae0617-bf63-4179-a001-946edf76e45f .hero-content h2 {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 26px;
}

#cmp_18ae0617-bf63-4179-a001-946edf76e45f .hero-content h3 {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 22px;
}

#cmp_18ae0617-bf63-4179-a001-946edf76e45f .hero-content p {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_18ae0617-bf63-4179-a001-946edf76e45f .hero-content .btn {
	background-color: rgb(255, 249, 240);
	color: rgb(46, 49, 51);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_18ae0617-bf63-4179-a001-946edf76e45f .hero-content .btn:hover {
	background-color: rgb(46, 49, 51);
	color: #FFFFFF;
}


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

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

	#cmp_18ae0617-bf63-4179-a001-946edf76e45f .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_18ae0617-bf63-4179-a001-946edf76e45f .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

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

	#cmp_18ae0617-bf63-4179-a001-946edf76e45f .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_18ae0617-bf63-4179-a001-946edf76e45f .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/past_picks/cmp_dfec4f87-c47a-404e-8cda-a83be78398ae/component.css
 */
#cmp_dfec4f87-c47a-404e-8cda-a83be78398ae {
	background-color: rgb(255, 249, 240);
	padding-top: 80px;
	padding-bottom: 80px;
}

#cmp_dfec4f87-c47a-404e-8cda-a83be78398ae h1,
#cmp_dfec4f87-c47a-404e-8cda-a83be78398ae h2,
#cmp_dfec4f87-c47a-404e-8cda-a83be78398ae h3 {
	margin-bottom: 1em;
}

#cmp_dfec4f87-c47a-404e-8cda-a83be78398ae h1 {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 40px;
}

#cmp_dfec4f87-c47a-404e-8cda-a83be78398ae h2 {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 26px;
}

#cmp_dfec4f87-c47a-404e-8cda-a83be78398ae h3 {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 22px;
}

#cmp_dfec4f87-c47a-404e-8cda-a83be78398ae p {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_dfec4f87-c47a-404e-8cda-a83be78398ae ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_dfec4f87-c47a-404e-8cda-a83be78398ae ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

/*
 * components/past_picks/cmp_ea2aad78-9f49-4e27-b432-c1e5ab13ac71/component.css
 */
#cmp_ea2aad78-9f49-4e27-b432-c1e5ab13ac71 {
	padding: 0;
}

#cmp_ea2aad78-9f49-4e27-b432-c1e5ab13ac71 .hero-content {
	background-color: rgb(46, 49, 51);
	padding: 20px;
}

#cmp_ea2aad78-9f49-4e27-b432-c1e5ab13ac71 .hero-content h1 {
	color: rgb(255, 249, 240);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_ea2aad78-9f49-4e27-b432-c1e5ab13ac71 .hero-content h2 {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 26px;
}

#cmp_ea2aad78-9f49-4e27-b432-c1e5ab13ac71 .hero-content h3 {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 22px;
}

#cmp_ea2aad78-9f49-4e27-b432-c1e5ab13ac71 .hero-content p {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_ea2aad78-9f49-4e27-b432-c1e5ab13ac71 .hero-content .btn {
	background-color: rgb(255, 249, 240);
	color: rgb(46, 49, 51);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_ea2aad78-9f49-4e27-b432-c1e5ab13ac71 .hero-content .btn:hover {
	background-color: rgb(46, 49, 51);
	color: #FFFFFF;
}


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

@media(min-width: 768px) {
	#cmp_ea2aad78-9f49-4e27-b432-c1e5ab13ac71 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_ea2aad78-9f49-4e27-b432-c1e5ab13ac71 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_ea2aad78-9f49-4e27-b432-c1e5ab13ac71 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_ea2aad78-9f49-4e27-b432-c1e5ab13ac71 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_ea2aad78-9f49-4e27-b432-c1e5ab13ac71 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_ea2aad78-9f49-4e27-b432-c1e5ab13ac71 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/past_picks/cmp_f3e8a81f-1f76-4fd6-863c-c3662018f237/component.css
 */
#cmp_f3e8a81f-1f76-4fd6-863c-c3662018f237 {
	padding: 0;
}

#cmp_f3e8a81f-1f76-4fd6-863c-c3662018f237 .hero-content {
	background-color: rgb(61, 68, 29);
	padding: 20px;
}

#cmp_f3e8a81f-1f76-4fd6-863c-c3662018f237 .hero-content h1 {
	color: rgb(255, 249, 240);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_f3e8a81f-1f76-4fd6-863c-c3662018f237 .hero-content h2 {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 26px;
}

#cmp_f3e8a81f-1f76-4fd6-863c-c3662018f237 .hero-content h3 {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 22px;
}

#cmp_f3e8a81f-1f76-4fd6-863c-c3662018f237 .hero-content p {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_f3e8a81f-1f76-4fd6-863c-c3662018f237 .hero-content .btn {
	background-color: rgb(255, 249, 240);
	color: rgb(46, 49, 51);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_f3e8a81f-1f76-4fd6-863c-c3662018f237 .hero-content .btn:hover {
	background-color: HTTPS://FABLEDBOOKSHOP.COM/?Q=H.TVIEWER&amp;E_DEF_ID=QARLOBW6BBI;
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_f3e8a81f-1f76-4fd6-863c-c3662018f237 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_f3e8a81f-1f76-4fd6-863c-c3662018f237 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_f3e8a81f-1f76-4fd6-863c-c3662018f237 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_f3e8a81f-1f76-4fd6-863c-c3662018f237 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_f3e8a81f-1f76-4fd6-863c-c3662018f237 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_f3e8a81f-1f76-4fd6-863c-c3662018f237 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_f3e8a81f-1f76-4fd6-863c-c3662018f237 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/past_picks/cmp_f852edb5-0704-4ede-aea2-e8e6a37137f8/component.css
 */
#cmp_f852edb5-0704-4ede-aea2-e8e6a37137f8 {
	padding: 0;
}

#cmp_f852edb5-0704-4ede-aea2-e8e6a37137f8 .hero-content {
	background-color: rgb(46, 49, 51);
	padding: 20px;
}

#cmp_f852edb5-0704-4ede-aea2-e8e6a37137f8 .hero-content h1 {
	color: rgb(255, 249, 240);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_f852edb5-0704-4ede-aea2-e8e6a37137f8 .hero-content h2 {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 26px;
}

#cmp_f852edb5-0704-4ede-aea2-e8e6a37137f8 .hero-content h3 {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 22px;
}

#cmp_f852edb5-0704-4ede-aea2-e8e6a37137f8 .hero-content p {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_f852edb5-0704-4ede-aea2-e8e6a37137f8 .hero-content .btn {
	background-color: rgb(255, 249, 240);
	color: rgb(46, 49, 51);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_f852edb5-0704-4ede-aea2-e8e6a37137f8 .hero-content .btn:hover {
	background-color: rgb(46, 49, 51);
	color: #FFFFFF;
}


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

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

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

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

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

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

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

/*
 * components/previous_boxes/cmp_0bc93391-16fd-4871-9f30-725cf60afb6c/component.css
 */
#cmp_0bc93391-16fd-4871-9f30-725cf60afb6c img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_7b46d8af-fa99-4c40-95d9-ff102aeef852/component.css
 */
#cmp_7b46d8af-fa99-4c40-95d9-ff102aeef852 img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_c0a604aa-e220-48fd-b339-9ff4c362f596/component.css
 */
#cmp_c0a604aa-e220-48fd-b339-9ff4c362f596 {
	background-color: rgb(255, 249, 240);
}

#cmp_c0a604aa-e220-48fd-b339-9ff4c362f596 h1 {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 40px;
}

#cmp_c0a604aa-e220-48fd-b339-9ff4c362f596 h2 {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 26px;
}

#cmp_c0a604aa-e220-48fd-b339-9ff4c362f596 h3 {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 22px;
}

#cmp_c0a604aa-e220-48fd-b339-9ff4c362f596 p {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_c0a604aa-e220-48fd-b339-9ff4c362f596 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_c0a604aa-e220-48fd-b339-9ff4c362f596 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_c0a604aa-e220-48fd-b339-9ff4c362f596 .btn {
	background-color: rgb(255, 249, 240);
	color: rgb(255, 249, 240);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_c0a604aa-e220-48fd-b339-9ff4c362f596 .btn:hover {
	background-color: rgb(46, 49, 51);
	color: #FFFFFF;
}

#cmp_c0a604aa-e220-48fd-b339-9ff4c362f596 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_c0a604aa-e220-48fd-b339-9ff4c362f596 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

/*
 * components/previous_boxes/cmp_cacc0659-1364-4535-b837-9349914433f9/component.css
 */
#cmp_cacc0659-1364-4535-b837-9349914433f9 {
	background-color: rgb(255, 249, 240);
	padding-top: 80px;
	padding-bottom: 80px;
}

#cmp_cacc0659-1364-4535-b837-9349914433f9 h1,
#cmp_cacc0659-1364-4535-b837-9349914433f9 h2,
#cmp_cacc0659-1364-4535-b837-9349914433f9 h3 {
	margin-bottom: 1em;
}

#cmp_cacc0659-1364-4535-b837-9349914433f9 h1 {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 40px;
}

#cmp_cacc0659-1364-4535-b837-9349914433f9 h2 {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 26px;
}

#cmp_cacc0659-1364-4535-b837-9349914433f9 h3 {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 22px;
}

#cmp_cacc0659-1364-4535-b837-9349914433f9 p {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_cacc0659-1364-4535-b837-9349914433f9 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_cacc0659-1364-4535-b837-9349914433f9 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

/*
 * components/shop/listing/cmp_0529e257-eb0a-4bc7-962f-4db3bfc035bd/component.css
 */
#cmp_0529e257-eb0a-4bc7-962f-4db3bfc035bd .row {
	justify-content: center;
}

#cmp_0529e257-eb0a-4bc7-962f-4db3bfc035bd ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

#cmp_0529e257-eb0a-4bc7-962f-4db3bfc035bd  {
	border-bottom: 1px solid #E1E1E1;
	margin-bottom: 35px;
	padding-bottom: 35px;
}
/*
 * components/shop/listing/cmp_7eefd771-cab5-4536-8fd0-5feb4b35ad38/component.css
 */
#cmp_7eefd771-cab5-4536-8fd0-5feb4b35ad38 .shop-listing-item {
	color: rgb(49, 66, 27);
}

#cmp_7eefd771-cab5-4536-8fd0-5feb4b35ad38 .shop-listing-item:hover,
#cmp_7eefd771-cab5-4536-8fd0-5feb4b35ad38 .shop-listing-item:focus {
	text-decoration: none;
}

#cmp_7eefd771-cab5-4536-8fd0-5feb4b35ad38 .shop-listing-item__image {
	background-size: cover;
	background-position: center center;
}

#cmp_7eefd771-cab5-4536-8fd0-5feb4b35ad38 .shop-listing-item__name {
	margin: 10px 0;
}

#cmp_7eefd771-cab5-4536-8fd0-5feb4b35ad38 .shop-listing-item__price {
	margin: 10px 0 30px;
}

#cmp_7eefd771-cab5-4536-8fd0-5feb4b35ad38 .product_paging {
	-webkit-display: flex;
	-ms-display: flex;
	display: flex;
	justify-content: center;

	margin: 20px 0;
}

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

#cmp_7eefd771-cab5-4536-8fd0-5feb4b35ad38 .product_page.active a,
#cmp_7eefd771-cab5-4536-8fd0-5feb4b35ad38 .product_page a:hover,
#cmp_7eefd771-cab5-4536-8fd0-5feb4b35ad38 .product_page a:focus,
#cmp_7eefd771-cab5-4536-8fd0-5feb4b35ad38 .next_page a:hover,
#cmp_7eefd771-cab5-4536-8fd0-5feb4b35ad38 .next_page a:focus,
#cmp_7eefd771-cab5-4536-8fd0-5feb4b35ad38 .prev_page a:hover,
#cmp_7eefd771-cab5-4536-8fd0-5feb4b35ad38 .prev_page a:focus {
	text-decoration: none;
	background-color: #F9F9F9;
}

#cmp_7eefd771-cab5-4536-8fd0-5feb4b35ad38 .product_page.active a {
	color: black;
}

/*
 * components/shop/listing/cmp_c22ce4c6-400b-470c-a84e-6e02e0885822/component.css
 */
#cmp_c22ce4c6-400b-470c-a84e-6e02e0885822 .row {
	justify-content: center;
}

#cmp_c22ce4c6-400b-470c-a84e-6e02e0885822 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_e9e39438-8597-456b-889f-a934f8cf1a96/component.css
 */
#cmp_e9e39438-8597-456b-889f-a934f8cf1a96 {
	background-color: rgb(255, 249, 240);
	padding-top: 80px;
	padding-bottom: 80px;
}

#cmp_e9e39438-8597-456b-889f-a934f8cf1a96 h1,
#cmp_e9e39438-8597-456b-889f-a934f8cf1a96 h2,
#cmp_e9e39438-8597-456b-889f-a934f8cf1a96 h3 {
	margin-bottom: 1em;
}

#cmp_e9e39438-8597-456b-889f-a934f8cf1a96 h1 {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 40px;
}

#cmp_e9e39438-8597-456b-889f-a934f8cf1a96 h2 {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 26px;
}

#cmp_e9e39438-8597-456b-889f-a934f8cf1a96 h3 {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 22px;
}

#cmp_e9e39438-8597-456b-889f-a934f8cf1a96 p {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_e9e39438-8597-456b-889f-a934f8cf1a96 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_e9e39438-8597-456b-889f-a934f8cf1a96 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_e9e39438-8597-456b-889f-a934f8cf1a96  {
	padding: 50px 0 15px;
}
#cmp_e9e39438-8597-456b-889f-a934f8cf1a96 h1 {
	margin-bottom: 15px;
}
/*
 * components/shop/product/cmp_812732da-090a-4c74-9ed9-6da904893bc9/component.css
 */
#cmp_812732da-090a-4c74-9ed9-6da904893bc9 .shop-product__name {
	margin-bottom: 10px;
}

#cmp_812732da-090a-4c74-9ed9-6da904893bc9 .shop-product__price {
	margin-bottom: 20px;
}

#cmp_812732da-090a-4c74-9ed9-6da904893bc9 .shop-product select {
	width: auto;
}

#cmp_812732da-090a-4c74-9ed9-6da904893bc9 .shop-product__add-to-cart {
	margin-bottom: 20px;
}

#cmp_812732da-090a-4c74-9ed9-6da904893bc9 .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin-bottom: 40px;
}

#cmp_812732da-090a-4c74-9ed9-6da904893bc9 .shop-product__review-share-desktop .col-xs-6 {
	padding-top: 10px;
}

#cmp_812732da-090a-4c74-9ed9-6da904893bc9 .shop-product__review-share-desktop .col-xs-6 + .col-xs-6 {
	border-left: 1px solid #E1E1E1;
}

/*
 * components/shop/product/cmp_9026f9ee-0274-4d73-b8c8-0e58092379de/component.css
 */
#cmp_9026f9ee-0274-4d73-b8c8-0e58092379de.shop-product-header {
	padding: 50px 0 15px;
}

/*
 * components/sold_out/cmp_0c237b6b-21f7-41b4-b939-6d7c951dcb3f/component.css
 */
#cmp_0c237b6b-21f7-41b4-b939-6d7c951dcb3f img {
	max-width: 100%;
}

#cmp_0c237b6b-21f7-41b4-b939-6d7c951dcb3f  {
	padding-top: 50px;
}
/*
 * components/sold_out/cmp_2a66a938-abe2-4bfd-9741-8a7c7643d1f6/component.css
 */
#cmp_2a66a938-abe2-4bfd-9741-8a7c7643d1f6 {
	background-color: rgb(255, 249, 240);
}

#cmp_2a66a938-abe2-4bfd-9741-8a7c7643d1f6 h1 {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 40px;
}

#cmp_2a66a938-abe2-4bfd-9741-8a7c7643d1f6 h2 {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 26px;
}

#cmp_2a66a938-abe2-4bfd-9741-8a7c7643d1f6 h3 {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 22px;
}

#cmp_2a66a938-abe2-4bfd-9741-8a7c7643d1f6 p {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_2a66a938-abe2-4bfd-9741-8a7c7643d1f6 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_2a66a938-abe2-4bfd-9741-8a7c7643d1f6 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_2a66a938-abe2-4bfd-9741-8a7c7643d1f6 .btn {
	background-color: rgb(255, 249, 240);
	color: rgb(255, 249, 240);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_2a66a938-abe2-4bfd-9741-8a7c7643d1f6 .btn:hover {
	background-color: rgb(46, 49, 51);
	color: #FFFFFF;
}

#cmp_2a66a938-abe2-4bfd-9741-8a7c7643d1f6 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_2a66a938-abe2-4bfd-9741-8a7c7643d1f6 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_2a66a938-abe2-4bfd-9741-8a7c7643d1f6  {
	padding-bottom: 50px;
}
/*
 * components/subscribe/cmp_6b392424-f30b-496c-8d75-3a221183645a/component.css
 */
#cmp_6b392424-f30b-496c-8d75-3a221183645a {
	background-color: rgb(255, 249, 240);
	padding-top: 80px;
	padding-bottom: 80px;
}

#cmp_6b392424-f30b-496c-8d75-3a221183645a h1,
#cmp_6b392424-f30b-496c-8d75-3a221183645a h2,
#cmp_6b392424-f30b-496c-8d75-3a221183645a h3 {
	margin-bottom: 1em;
}

#cmp_6b392424-f30b-496c-8d75-3a221183645a h1 {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 40px;
}

#cmp_6b392424-f30b-496c-8d75-3a221183645a h2 {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 26px;
}

#cmp_6b392424-f30b-496c-8d75-3a221183645a h3 {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 22px;
}

#cmp_6b392424-f30b-496c-8d75-3a221183645a p {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_6b392424-f30b-496c-8d75-3a221183645a ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_6b392424-f30b-496c-8d75-3a221183645a ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

/*
 * components/subscribe/cmp_c9d768b0-d31a-43d7-8a66-6245e28c1524/component.css
 */

/*
 * components/subscribe_flow/addons_step/cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9/component.css
 */
#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9.addons-container {
	margin-right: auto;
	margin-left: auto;

	max-width: 940px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

	margin-bottom: 15px;
}

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

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

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

	color: rgb(255, 249, 240);
	background-color: rgb(46, 49, 51);
}

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

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

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

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

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

	margin-bottom: 2px;
}

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

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

	text-align: center;
}


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

	color: rgb(255, 249, 240);
	background-color: rgb(46, 49, 51);
}

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

@media only screen and (max-width : 768px) {
	#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

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

	.addons-product-right {
		margin-top: 40px;
	}

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

/*
 * components/subscribe_flow/survey_step/cmp_8500d29c-9fb1-4c11-bd28-a1ac3763b44b/component.css
 */
#cmp_8500d29c-9fb1-4c11-bd28-a1ac3763b44b.survey h2 {
	margin-bottom: 1em;
}

#cmp_8500d29c-9fb1-4c11-bd28-a1ac3763b44b.survey .radio input[type="radio"],
#cmp_8500d29c-9fb1-4c11-bd28-a1ac3763b44b.survey .checkbox input[type="checkbox"] {
	margin-right: 0.5em;
}

/*
 * components/subscribe_flow/survey_step/cmp_a6d0a531-1797-480f-9dd1-7c420ea4d2a9/component.css
 */
#cmp_a6d0a531-1797-480f-9dd1-7c420ea4d2a9 {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/terms_step/cmp_247e240b-fd04-4d68-93bd-f6013190b7ea/component.css
 */

/*
 * components/subscribe_flow/terms_step/cmp_5867f1b8-4e77-4dcf-9315-6dbec4c373b3/component.css
 */
#cmp_5867f1b8-4e77-4dcf-9315-6dbec4c373b3 {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/variant_step/cmp_55d7eab5-724c-42af-9f65-e536e0c33d1a/component.css
 */
#cmp_55d7eab5-724c-42af-9f65-e536e0c33d1a {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/variant_step/cmp_eebeb342-08c2-4920-aa57-b563704b3479/component.css
 */

/*
 * components/the_order_of_the_owl/cmp_18467f68-39c3-4579-9bea-49c54ea3c9fb/component.css
 */
#cmp_18467f68-39c3-4579-9bea-49c54ea3c9fb {
	background-color: rgb(255, 249, 240);
}

#cmp_18467f68-39c3-4579-9bea-49c54ea3c9fb h1 {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 40px;
}

#cmp_18467f68-39c3-4579-9bea-49c54ea3c9fb h2 {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 26px;
}

#cmp_18467f68-39c3-4579-9bea-49c54ea3c9fb h3 {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 22px;
}

#cmp_18467f68-39c3-4579-9bea-49c54ea3c9fb p {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_18467f68-39c3-4579-9bea-49c54ea3c9fb .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_18467f68-39c3-4579-9bea-49c54ea3c9fb .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_18467f68-39c3-4579-9bea-49c54ea3c9fb .btn {
	background-color: rgb(155, 155, 155);
	color: rgb(63, 63, 65);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_18467f68-39c3-4579-9bea-49c54ea3c9fb .btn:hover {
	background-color: rgb(46, 49, 51);
	color: #FFFFFF;
}

#cmp_18467f68-39c3-4579-9bea-49c54ea3c9fb ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_18467f68-39c3-4579-9bea-49c54ea3c9fb ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

/*
 * components/the_order_of_the_owl/cmp_4c4befb6-e57f-43bc-91bb-aebdc1f2ca1a/component.css
 */
#cmp_4c4befb6-e57f-43bc-91bb-aebdc1f2ca1a img {
	max-width: 100%;
}

/*
 * components/the_order_of_the_owl/cmp_66e60bbd-f8c9-4471-8823-249311b619a4/component.css
 */
#cmp_66e60bbd-f8c9-4471-8823-249311b619a4 img {
	max-width: 100%;
}

/*
 * components/the_order_of_the_owl/cmp_a16ee739-feb1-43d3-b1f3-770e23bdc43c/component.css
 */
#cmp_a16ee739-feb1-43d3-b1f3-770e23bdc43c {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: rgb(255, 249, 240);
}

#cmp_a16ee739-feb1-43d3-b1f3-770e23bdc43c .content {
	padding: 0;
}

#cmp_a16ee739-feb1-43d3-b1f3-770e23bdc43c .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_a16ee739-feb1-43d3-b1f3-770e23bdc43c .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/the_story_bound_for_kids/cmp_07c5989f-115b-4cc0-8f03-263f4fd18cf2/component.css
 */
#cmp_07c5989f-115b-4cc0-8f03-263f4fd18cf2 img {
	max-width: 100%;
}

/*
 * components/the_story_bound_for_kids/cmp_27883241-7c16-4fae-bece-581530a546cd/component.css
 */
#cmp_27883241-7c16-4fae-bece-581530a546cd {
	background-color: rgb(255, 249, 240);
}

#cmp_27883241-7c16-4fae-bece-581530a546cd h1 {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 40px;
}

#cmp_27883241-7c16-4fae-bece-581530a546cd h2 {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 26px;
}

#cmp_27883241-7c16-4fae-bece-581530a546cd h3 {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 22px;
}

#cmp_27883241-7c16-4fae-bece-581530a546cd p {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_27883241-7c16-4fae-bece-581530a546cd .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_27883241-7c16-4fae-bece-581530a546cd .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_27883241-7c16-4fae-bece-581530a546cd .btn {
	background-color: rgb(125, 118, 155);
	color: rgb(255, 249, 240);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_27883241-7c16-4fae-bece-581530a546cd .btn:hover {
	background-color: rgb(46, 49, 51);
	color: #FFFFFF;
}

#cmp_27883241-7c16-4fae-bece-581530a546cd ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_27883241-7c16-4fae-bece-581530a546cd ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

/*
 * components/the_story_bound_for_kids/cmp_3fc5bfea-c60c-4345-a888-283851d86900/component.css
 */
#cmp_3fc5bfea-c60c-4345-a888-283851d86900 img {
	max-width: 100%;
}

/*
 * components/the_story_bound_for_kids/cmp_7d24afe0-9a03-4a70-b37b-b2ece255d2d6/component.css
 */
#cmp_7d24afe0-9a03-4a70-b37b-b2ece255d2d6 {
	background-color: rgb(255, 249, 240);
}

#cmp_7d24afe0-9a03-4a70-b37b-b2ece255d2d6 h1 {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 40px;
}

#cmp_7d24afe0-9a03-4a70-b37b-b2ece255d2d6 h2 {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 26px;
}

#cmp_7d24afe0-9a03-4a70-b37b-b2ece255d2d6 h3 {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 22px;
}

#cmp_7d24afe0-9a03-4a70-b37b-b2ece255d2d6 p {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_7d24afe0-9a03-4a70-b37b-b2ece255d2d6 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_7d24afe0-9a03-4a70-b37b-b2ece255d2d6 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_7d24afe0-9a03-4a70-b37b-b2ece255d2d6 .btn {
	background-color: rgb(99, 137, 120);
	color: rgb(255, 249, 240);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_7d24afe0-9a03-4a70-b37b-b2ece255d2d6 .btn:hover {
	background-color: rgb(46, 49, 51);
	color: #FFFFFF;
}

#cmp_7d24afe0-9a03-4a70-b37b-b2ece255d2d6 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_7d24afe0-9a03-4a70-b37b-b2ece255d2d6 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

/*
 * components/the_story_bound_for_kids/cmp_afc282e4-2a43-4c0f-854c-b396bdbd58ab/component.css
 */
#cmp_afc282e4-2a43-4c0f-854c-b396bdbd58ab img {
	max-width: 100%;
}

/*
 * components/the_story_bound_for_kids/cmp_b6215e46-52d9-43fc-a791-687832e410ab/component.css
 */
#cmp_b6215e46-52d9-43fc-a791-687832e410ab {
	background-color: rgb(255, 249, 240);
}

#cmp_b6215e46-52d9-43fc-a791-687832e410ab h1 {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 40px;
}

#cmp_b6215e46-52d9-43fc-a791-687832e410ab h2 {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 26px;
}

#cmp_b6215e46-52d9-43fc-a791-687832e410ab h3 {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 22px;
}

#cmp_b6215e46-52d9-43fc-a791-687832e410ab p {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_b6215e46-52d9-43fc-a791-687832e410ab .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_b6215e46-52d9-43fc-a791-687832e410ab .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_b6215e46-52d9-43fc-a791-687832e410ab .btn {
	background-color: rgb(227, 115, 119);
	color: rgb(255, 249, 240);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_b6215e46-52d9-43fc-a791-687832e410ab .btn:hover {
	background-color: rgb(46, 49, 51);
	color: #FFFFFF;
}

#cmp_b6215e46-52d9-43fc-a791-687832e410ab ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_b6215e46-52d9-43fc-a791-687832e410ab ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

/*
 * components/the_story_bound_for_kids/cmp_e9ee6ceb-ee99-4167-bae6-8c3b6b787abc/component.css
 */
#cmp_e9ee6ceb-ee99-4167-bae6-8c3b6b787abc {
	background-color: rgb(255, 249, 240);
}

#cmp_e9ee6ceb-ee99-4167-bae6-8c3b6b787abc h1 {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 40px;
}

#cmp_e9ee6ceb-ee99-4167-bae6-8c3b6b787abc h2 {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 26px;
}

#cmp_e9ee6ceb-ee99-4167-bae6-8c3b6b787abc h3 {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 22px;
}

#cmp_e9ee6ceb-ee99-4167-bae6-8c3b6b787abc p {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_e9ee6ceb-ee99-4167-bae6-8c3b6b787abc .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_e9ee6ceb-ee99-4167-bae6-8c3b6b787abc .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_e9ee6ceb-ee99-4167-bae6-8c3b6b787abc .btn {
	background-color: rgb(124, 154, 181);
	color: rgb(255, 249, 240);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_e9ee6ceb-ee99-4167-bae6-8c3b6b787abc .btn:hover {
	background-color: rgb(46, 49, 51);
	color: #FFFFFF;
}

#cmp_e9ee6ceb-ee99-4167-bae6-8c3b6b787abc ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_e9ee6ceb-ee99-4167-bae6-8c3b6b787abc ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

/*
 * components/the_story_bound_for_kids/cmp_ef7deb5c-cda1-41f6-a22d-e17d8fae676d/component.css
 */
#cmp_ef7deb5c-cda1-41f6-a22d-e17d8fae676d {
	background-color: rgb(255, 249, 240);
}

#cmp_ef7deb5c-cda1-41f6-a22d-e17d8fae676d h1 {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 40px;
}

#cmp_ef7deb5c-cda1-41f6-a22d-e17d8fae676d h2 {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 26px;
}

#cmp_ef7deb5c-cda1-41f6-a22d-e17d8fae676d h3 {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 22px;
}

#cmp_ef7deb5c-cda1-41f6-a22d-e17d8fae676d p {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_ef7deb5c-cda1-41f6-a22d-e17d8fae676d .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_ef7deb5c-cda1-41f6-a22d-e17d8fae676d .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_ef7deb5c-cda1-41f6-a22d-e17d8fae676d .btn {
	background-color: rgb(176, 180, 104);
	color: rgb(255, 249, 240);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_ef7deb5c-cda1-41f6-a22d-e17d8fae676d .btn:hover {
	background-color: rgb(46, 49, 51);
	color: #FFFFFF;
}

#cmp_ef7deb5c-cda1-41f6-a22d-e17d8fae676d ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_ef7deb5c-cda1-41f6-a22d-e17d8fae676d ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

/*
 * components/the_storybound_society/cmp_0d51a6eb-d04c-410c-bba6-3a53d338ca2b/component.css
 */
#cmp_0d51a6eb-d04c-410c-bba6-3a53d338ca2b img {
	max-width: 100%;
}

/*
 * components/the_storybound_society/cmp_4f5377cf-acf4-4e7e-b8c1-7feb34f46b80/component.css
 */
#cmp_4f5377cf-acf4-4e7e-b8c1-7feb34f46b80 {
	background-color: rgb(255, 249, 240);
}

#cmp_4f5377cf-acf4-4e7e-b8c1-7feb34f46b80 h1 {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 40px;
}

#cmp_4f5377cf-acf4-4e7e-b8c1-7feb34f46b80 h2 {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 26px;
}

#cmp_4f5377cf-acf4-4e7e-b8c1-7feb34f46b80 h3 {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 22px;
}

#cmp_4f5377cf-acf4-4e7e-b8c1-7feb34f46b80 p {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_4f5377cf-acf4-4e7e-b8c1-7feb34f46b80 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_4f5377cf-acf4-4e7e-b8c1-7feb34f46b80 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_4f5377cf-acf4-4e7e-b8c1-7feb34f46b80 .btn {
	background-color: rgb(61, 68, 29);
	color: rgb(255, 249, 240);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_4f5377cf-acf4-4e7e-b8c1-7feb34f46b80 .btn:hover {
	background-color: rgb(46, 49, 51);
	color: #FFFFFF;
}

#cmp_4f5377cf-acf4-4e7e-b8c1-7feb34f46b80 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_4f5377cf-acf4-4e7e-b8c1-7feb34f46b80 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

/*
 * components/the_storybound_society/cmp_68ad010b-a0dd-4f7c-9972-37e0adb8c00c/component.css
 */
#cmp_68ad010b-a0dd-4f7c-9972-37e0adb8c00c img {
	max-width: 100%;
}

/*
 * components/the_storybound_society/cmp_8a338df6-b045-4759-8316-de1ecbca3621/component.css
 */
#cmp_8a338df6-b045-4759-8316-de1ecbca3621 {
	background-color: rgb(255, 249, 240);
}

#cmp_8a338df6-b045-4759-8316-de1ecbca3621 h1 {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 40px;
}

#cmp_8a338df6-b045-4759-8316-de1ecbca3621 h2 {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 26px;
}

#cmp_8a338df6-b045-4759-8316-de1ecbca3621 h3 {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 22px;
}

#cmp_8a338df6-b045-4759-8316-de1ecbca3621 p {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_8a338df6-b045-4759-8316-de1ecbca3621 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_8a338df6-b045-4759-8316-de1ecbca3621 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_8a338df6-b045-4759-8316-de1ecbca3621 .btn {
	background-color: rgb(61, 68, 29);
	color: rgb(255, 249, 240);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_8a338df6-b045-4759-8316-de1ecbca3621 .btn:hover {
	background-color: rgb(46, 49, 51);
	color: #FFFFFF;
}

#cmp_8a338df6-b045-4759-8316-de1ecbca3621 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_8a338df6-b045-4759-8316-de1ecbca3621 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

/*
 * components/the_storybound_society/cmp_99e71c35-bd74-4a98-a5f1-0a02110538b2/component.css
 */
#cmp_99e71c35-bd74-4a98-a5f1-0a02110538b2 {
	background-color: rgb(255, 249, 240);
}

#cmp_99e71c35-bd74-4a98-a5f1-0a02110538b2 h1 {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 40px;
}

#cmp_99e71c35-bd74-4a98-a5f1-0a02110538b2 h2 {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 26px;
}

#cmp_99e71c35-bd74-4a98-a5f1-0a02110538b2 h3 {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 22px;
}

#cmp_99e71c35-bd74-4a98-a5f1-0a02110538b2 p {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_99e71c35-bd74-4a98-a5f1-0a02110538b2 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_99e71c35-bd74-4a98-a5f1-0a02110538b2 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_99e71c35-bd74-4a98-a5f1-0a02110538b2 .btn {
	background-color: rgb(61, 68, 29);
	color: rgb(255, 249, 240);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_99e71c35-bd74-4a98-a5f1-0a02110538b2 .btn:hover {
	background-color: rgb(46, 49, 51);
	color: #FFFFFF;
}

#cmp_99e71c35-bd74-4a98-a5f1-0a02110538b2 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_99e71c35-bd74-4a98-a5f1-0a02110538b2 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

/*
 * components/the_storybound_society/cmp_d48de039-4c09-4568-80ef-dfb76e140d82/component.css
 */
#cmp_d48de039-4c09-4568-80ef-dfb76e140d82 img {
	max-width: 100%;
}

/*
 * components/the_storybound_society/cmp_ed5a6ce9-ba64-431b-a0e4-96cc0ac42957/component.css
 */
#cmp_ed5a6ce9-ba64-431b-a0e4-96cc0ac42957 {
	background-color: rgb(255, 249, 240);
}

#cmp_ed5a6ce9-ba64-431b-a0e4-96cc0ac42957 h1 {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 40px;
}

#cmp_ed5a6ce9-ba64-431b-a0e4-96cc0ac42957 h2 {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 26px;
}

#cmp_ed5a6ce9-ba64-431b-a0e4-96cc0ac42957 h3 {
	color: rgb(61, 68, 29);
	font-family: Josefin Sans;
	font-size: 22px;
}

#cmp_ed5a6ce9-ba64-431b-a0e4-96cc0ac42957 p {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_ed5a6ce9-ba64-431b-a0e4-96cc0ac42957 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_ed5a6ce9-ba64-431b-a0e4-96cc0ac42957 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_ed5a6ce9-ba64-431b-a0e4-96cc0ac42957 .btn {
	background-color: rgb(61, 68, 29);
	color: rgb(255, 249, 240);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_ed5a6ce9-ba64-431b-a0e4-96cc0ac42957 .btn:hover {
	background-color: rgb(46, 49, 51);
	color: #FFFFFF;
}

#cmp_ed5a6ce9-ba64-431b-a0e4-96cc0ac42957 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_ed5a6ce9-ba64-431b-a0e4-96cc0ac42957 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

/*
 * components/view-cart/cmp_728c4346-3691-4352-a004-23a46a7af940/component.css
 */
#cmp_728c4346-3691-4352-a004-23a46a7af940 {
	background-color: rgb(255, 249, 240);
	padding-top: 80px;
	padding-bottom: 80px;
}

#cmp_728c4346-3691-4352-a004-23a46a7af940 h1,
#cmp_728c4346-3691-4352-a004-23a46a7af940 h2,
#cmp_728c4346-3691-4352-a004-23a46a7af940 h3 {
	margin-bottom: 1em;
}

#cmp_728c4346-3691-4352-a004-23a46a7af940 h1 {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 40px;
}

#cmp_728c4346-3691-4352-a004-23a46a7af940 h2 {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 26px;
}

#cmp_728c4346-3691-4352-a004-23a46a7af940 h3 {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 22px;
}

#cmp_728c4346-3691-4352-a004-23a46a7af940 p {
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_728c4346-3691-4352-a004-23a46a7af940 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_728c4346-3691-4352-a004-23a46a7af940 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(49, 66, 27);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_728c4346-3691-4352-a004-23a46a7af940  {
	padding: 50px 0;;
}
#cmp_728c4346-3691-4352-a004-23a46a7af940 h1 {
	margin-bottom: 15px;
}
/*
 * components/view-cart/cmp_c5c92456-ae2b-4251-a9f5-6b9664e3eedc/component.css
 */
#cmp_c5c92456-ae2b-4251-a9f5-6b9664e3eedc {
	padding: 15px 15px 100px 15px;
}

#cmp_c5c92456-ae2b-4251-a9f5-6b9664e3eedc .cart-thead {
	border-bottom: 1px solid #E1E1E1;
	padding: 10px 0;
}

#cmp_c5c92456-ae2b-4251-a9f5-6b9664e3eedc .cart-thead h3 {
	text-transform: uppercase;
}

#cmp_c5c92456-ae2b-4251-a9f5-6b9664e3eedc .cart-item {
	border: 1px solid #E1E1E1;
	padding: 25px 0;
	position: relative;
}

#cmp_c5c92456-ae2b-4251-a9f5-6b9664e3eedc .product-main {
	margin-bottom: 15px;
}

#cmp_c5c92456-ae2b-4251-a9f5-6b9664e3eedc .product-label p {
	margin: 0;
}

#cmp_c5c92456-ae2b-4251-a9f5-6b9664e3eedc .product-label .info {
	color: rgb(49, 66, 27);
	text-align: right;
	text-transform: uppercase;
}

#cmp_c5c92456-ae2b-4251-a9f5-6b9664e3eedc .product-label .meta {
	color: rgb(49, 66, 27);
	font-size: 22px;
}

#cmp_c5c92456-ae2b-4251-a9f5-6b9664e3eedc .product-rem-btn {
	position: absolute;
	right: 1%;
	top: 1%;
}

#cmp_c5c92456-ae2b-4251-a9f5-6b9664e3eedc figure {
	margin: 0 0 15px 0;
}

#cmp_c5c92456-ae2b-4251-a9f5-6b9664e3eedc .cart-subtotal {
	margin: 50px 0 0 0;
}

#cmp_c5c92456-ae2b-4251-a9f5-6b9664e3eedc .cart-subtotal h1 {
	margin: 0 0 15px 0;
}

#cmp_c5c92456-ae2b-4251-a9f5-6b9664e3eedc .cart-subtotal h3 {
	margin: 0 0 25px 0;
	text-transform: uppercase;
}

#cmp_c5c92456-ae2b-4251-a9f5-6b9664e3eedc .cart-subtotal p {
	margin: 0 0 25px 0;
}

@media (min-width: 768px) {
	#cmp_c5c92456-ae2b-4251-a9f5-6b9664e3eedc .cart-item {
		border-width: 0 0 1px 0;
	}
	#cmp_c5c92456-ae2b-4251-a9f5-6b9664e3eedc .product-rem-btn {
		top: 40%;
	}
	#cmp_c5c92456-ae2b-4251-a9f5-6b9664e3eedc figure {
		margin: 0;
	}
}

/*
 * components/faqs/cmp_54a4f25e-f998-4711-9c9d-816284bc6afa/component.css
 */
#cmp_54a4f25e-f998-4711-9c9d-816284bc6afa img {
	max-width: 100%;
}