/*
 * css/style.css
 */
/* Globals
------------------------------*/
body {
	background-color: #EEEEEE;
	color: rgb(51, 51, 51);
	font-family: Roboto;
	font-size: 13px;
	letter-spacing: 0.077em;
	line-height: 1.5em;
}

body > .container-fluid {
	background-color: #FFFFFF;
	max-width: 1140px;
}

h1 {
	color: rgb(255, 255, 255);
	font-family: Arbutus Slab;
	font-size: 40px;
}

h2 {
	color: rgb(0, 113, 193);
	font-family: Roboto;
	font-size: 22px;
}

h3 {
	color: rgb(0, 113, 193);
	font-family: Lato;
	font-size: 15px;
}

p {
	line-height: 1.5em;
}

a,
.btn-link {
	color: rgb(146, 209, 79);
}

a:hover,
a:focus,
a:active,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
	color: rgb(0, 113, 193);
}

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

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

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

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

.flex-center {
	display: -webkit-flex;
	 display: -webkit-box;
	 display: -ms-flexbox;
					display: flex;
	-webkit-align-items: center;
		 -moz-align-items: center;
			-ms-align-items: center;
					align-items: center;
	-webkit-justify-content: center;
		 -moz-justify-content: center;
			-ms-justify-content: center;
					justify-content: center;
}

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

.square-img-container {
	position: relative;
	flex-grow: 1;
	padding: 0;
}

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

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

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

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

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

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

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

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

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

.nav-pills .nav-link.active,
.nav-pills .nav-link.active:focus,
.nav-pills .nav-link.active:hover,
.nav-pills .nav-link.active:active,
.nav-pills .nav-item.open .nav-link,
.nav-pills .nav-item.open .nav-link:focus,
.nav-pills .nav-item.open .nav-link:hover,
.nav-pills .nav-item.open .nav-link:active {
	background-color: rgb(146, 209, 79);
}

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

.panel-body {
	padding: 15px;
}

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

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

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

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

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

/* Buttons */
.btn {
	border-radius: 25px;
	border: none;
	padding: 1.2em 5em;
	letter-spacing: 2px;
	font-size: 12px;
}

.btn-small {
	padding: 0.6em 1.8em;
	border: 1px solid rgb(146, 209, 79);
	border-radius: 15px;
	color: rgb(146, 209, 79);
}

.btn-small:hover,
.btn-small:focus,
.btn-small:active,
.btn-small:active:focus {
	background-color: rgb(0, 113, 193);
	border: 1px solid rgb(0, 113, 193);
	color: rgb(146, 209, 79) !important;
}

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

.btn-primary {
	background-color: rgb(146, 209, 79);
	color: #FFFFFF;
	font-family: Roboto;
	font-size: 12px;
	letter-spacing: 0.167em;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus {
	background-color: rgb(0, 113, 193);
	color: #FFFFFF;
}

.btn-secondary {
	background-color: rgb(0, 113, 193);
	color: #FAFAFA;
	font-family: Roboto;
	font-size: 12px;
	letter-spacing: 0.167em;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:active:focus {
	background-color: rgb(235, 3, 1);
	color: #FAFAFA;
}

.btn-empty {
	background-color: transparent;
	color: rgb(146, 209, 79);
	border: 1px solid rgb(146, 209, 79);
}

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

/* 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(255, 255, 255);
}
.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(146, 209, 79);
	border: none;
	border-radius: 25px;
	color: #FFFFFF;
	font-family: Roboto;
	font-size: 12px;
	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(0, 113, 193);
	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(146, 209, 79);
}

.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(146, 209, 79);
	color: rgb(146, 209, 79);
	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(0, 113, 193);
	border-color: rgb(0, 113, 193);
	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_2c752863-3356-4879-bd47-78a506c5a825/component.css
 */
#cmp_2c752863-3356-4879-bd47-78a506c5a825 {
	background-color: #FFFFFF;
}

#cmp_2c752863-3356-4879-bd47-78a506c5a825 h1 {
	color: rgb(0, 113, 193);
	font-family: Arbutus Slab;
	font-size: 40px;
}

#cmp_2c752863-3356-4879-bd47-78a506c5a825 h2 {
	color: rgb(0, 113, 193);
	font-family: Roboto;
	font-size: 22px;
}

#cmp_2c752863-3356-4879-bd47-78a506c5a825 h3 {
	color: rgb(0, 113, 193);
	font-family: Lato;
	font-size: 15px;
}

#cmp_2c752863-3356-4879-bd47-78a506c5a825 p {
	color: rgb(74, 74, 74);
	font-family: Coda;
	font-size: 16px;
}

#cmp_2c752863-3356-4879-bd47-78a506c5a825 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_2c752863-3356-4879-bd47-78a506c5a825 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_2c752863-3356-4879-bd47-78a506c5a825 .btn {
	background-color: rgb(126, 211, 33);
	color: #FFFFFF;
	font-family: Roboto;
	font-size: 12px;
}

#cmp_2c752863-3356-4879-bd47-78a506c5a825 .btn:hover {
	background-color: rgb(184, 233, 134);
	color: #FFFFFF;
}

#cmp_2c752863-3356-4879-bd47-78a506c5a825 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Coda;
	font-size: 16px;
}

#cmp_2c752863-3356-4879-bd47-78a506c5a825 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Coda;
	font-size: 16px;
}

#cmp_2c752863-3356-4879-bd47-78a506c5a825  {
	padding-bottom: 60px;
}
#cmp_2c752863-3356-4879-bd47-78a506c5a825 h3 {
	margin-bottom: 40px;
}
/*
 * components/about/cmp_9974cf08-ad72-4922-8780-5796542414ce/component.css
 */
#cmp_9974cf08-ad72-4922-8780-5796542414ce img {
	max-width: 100%;
}

/*
 * components/about/cmp_d5f80fe6-751f-4efd-99de-32ec9e67e35c/component.css
 */
#cmp_d5f80fe6-751f-4efd-99de-32ec9e67e35c {
	background-color: #FFFFFF;
}

#cmp_d5f80fe6-751f-4efd-99de-32ec9e67e35c h1 {
	color: rgb(126, 211, 33);
	font-family: Coda;
	font-size: 40px;
}

#cmp_d5f80fe6-751f-4efd-99de-32ec9e67e35c h2 {
	color: rgb(0, 113, 193);
	font-family: Coda;
	font-size: 22px;
}

#cmp_d5f80fe6-751f-4efd-99de-32ec9e67e35c h3 {
	color: rgb(0, 113, 193);
	font-family: Lato;
	font-size: 15px;
}

#cmp_d5f80fe6-751f-4efd-99de-32ec9e67e35c p {
	color: rgb(74, 74, 74);
	font-family: Coda;
	font-size: 16px;
}

#cmp_d5f80fe6-751f-4efd-99de-32ec9e67e35c ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Coda;
	font-size: 16px;
}

#cmp_d5f80fe6-751f-4efd-99de-32ec9e67e35c ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Coda;
	font-size: 16px;
}

#cmp_d5f80fe6-751f-4efd-99de-32ec9e67e35c  {
	padding-top: 60px;
}
#cmp_d5f80fe6-751f-4efd-99de-32ec9e67e35c h1 {
	margin-bottom: 15px;
}
/*
 * components/checkout/cmp_619ec039-8f0b-46e6-9509-229f42be5e39/component.css
 */
#cmp_619ec039-8f0b-46e6-9509-229f42be5e39 .checkout_content {
  overflow: auto;
}

#cmp_619ec039-8f0b-46e6-9509-229f42be5e39 .checkout_content section {
  border-color: #F5F5F5;
}

#cmp_619ec039-8f0b-46e6-9509-229f42be5e39 .cart_listing table {
  border-color: #F5F5F5;
}

/*
 * components/customer/account/cmp_099b525c-0a0a-4ce3-a11d-2283a0570c14/component.css
 */

/*
 * components/customer/edit/cmp_17b5b550-5b47-4af2-abb2-ebcef300735e/component.css
 */

/*
 * components/customer/forgot_password/cmp_146f27e6-7153-4810-b4a4-bd142a039dcd/component.css
 */

#cmp_146f27e6-7153-4810-b4a4-bd142a039dcd  {
	padding-bottom: 120px;
}
/*
 * components/customer/forgot_password/cmp_e55d82dc-2b76-4b49-bea4-061a4b960f57/component.css
 */
#cmp_e55d82dc-2b76-4b49-bea4-061a4b960f57 {
	background-color: #FFFFFF;
}

#cmp_e55d82dc-2b76-4b49-bea4-061a4b960f57 h1 {
	color: rgb(0, 113, 193);
	font-family: Arbutus Slab;
	font-size: 40px;
}

#cmp_e55d82dc-2b76-4b49-bea4-061a4b960f57 h2 {
	color: rgb(0, 113, 193);
	font-family: Roboto;
	font-size: 22px;
}

#cmp_e55d82dc-2b76-4b49-bea4-061a4b960f57 h3 {
	color: rgb(0, 113, 193);
	font-family: Lato;
	font-size: 15px;
}

#cmp_e55d82dc-2b76-4b49-bea4-061a4b960f57 p {
	color: rgb(51, 51, 51);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_e55d82dc-2b76-4b49-bea4-061a4b960f57 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(51, 51, 51);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_e55d82dc-2b76-4b49-bea4-061a4b960f57 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(51, 51, 51);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_e55d82dc-2b76-4b49-bea4-061a4b960f57  {
	padding: 50px 0;
}
#cmp_e55d82dc-2b76-4b49-bea4-061a4b960f57 h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/login/cmp_74977bc9-d213-447f-b3c9-14a0be31f297/component.css
 */

#cmp_74977bc9-d213-447f-b3c9-14a0be31f297  {
	padding-bottom: 120px;
}
/*
 * components/customer/login/cmp_78f6a0ed-1efa-4df6-b296-806bdcdf44a3/component.css
 */
#cmp_78f6a0ed-1efa-4df6-b296-806bdcdf44a3 {
	background-color: #FFFFFF;
}

#cmp_78f6a0ed-1efa-4df6-b296-806bdcdf44a3 h1 {
	color: rgb(0, 113, 193);
	font-family: Arbutus Slab;
	font-size: 40px;
}

#cmp_78f6a0ed-1efa-4df6-b296-806bdcdf44a3 h2 {
	color: rgb(0, 113, 193);
	font-family: Roboto;
	font-size: 22px;
}

#cmp_78f6a0ed-1efa-4df6-b296-806bdcdf44a3 h3 {
	color: rgb(0, 113, 193);
	font-family: Lato;
	font-size: 15px;
}

#cmp_78f6a0ed-1efa-4df6-b296-806bdcdf44a3 p {
	color: rgb(51, 51, 51);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_78f6a0ed-1efa-4df6-b296-806bdcdf44a3 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(51, 51, 51);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_78f6a0ed-1efa-4df6-b296-806bdcdf44a3 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(51, 51, 51);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_78f6a0ed-1efa-4df6-b296-806bdcdf44a3  {
	padding: 50px 0;
}
#cmp_78f6a0ed-1efa-4df6-b296-806bdcdf44a3 h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/order/cmp_39fd6076-da35-4486-8fb6-8c99cdd2f607/component.css
 */

/*
 * components/customer/orders/cmp_9b78742c-6527-48f3-972f-20ccb8390dc2/component.css
 */

/*
 * components/customer/password_reset/cmp_713a69d0-0cef-4904-9d1b-08db29072c2d/component.css
 */

#cmp_713a69d0-0cef-4904-9d1b-08db29072c2d  {
	padding-bottom: 120px;
}
/*
 * components/customer/password_reset/cmp_8f688222-e985-4182-93c9-587a5ee7aef7/component.css
 */
#cmp_8f688222-e985-4182-93c9-587a5ee7aef7 {
	background-color: #FFFFFF;
}

#cmp_8f688222-e985-4182-93c9-587a5ee7aef7 h1 {
	color: rgb(0, 113, 193);
	font-family: Arbutus Slab;
	font-size: 40px;
}

#cmp_8f688222-e985-4182-93c9-587a5ee7aef7 h2 {
	color: rgb(0, 113, 193);
	font-family: Roboto;
	font-size: 22px;
}

#cmp_8f688222-e985-4182-93c9-587a5ee7aef7 h3 {
	color: rgb(0, 113, 193);
	font-family: Lato;
	font-size: 15px;
}

#cmp_8f688222-e985-4182-93c9-587a5ee7aef7 p {
	color: rgb(51, 51, 51);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_8f688222-e985-4182-93c9-587a5ee7aef7 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(51, 51, 51);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_8f688222-e985-4182-93c9-587a5ee7aef7 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(51, 51, 51);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_8f688222-e985-4182-93c9-587a5ee7aef7  {
	padding: 50px 0;
}
#cmp_8f688222-e985-4182-93c9-587a5ee7aef7 h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/thank_you/cmp_1fcd8b37-c18c-4d50-a2a0-15785f4e0734/component.css
 */

/*
 * components/global/cmp_15235972-3fbe-420b-9f0b-38a62e8026d1/component.css
 */
#cmp_15235972-3fbe-420b-9f0b-38a62e8026d1 {
	background-color: #FFFFFF;
}

#cmp_15235972-3fbe-420b-9f0b-38a62e8026d1 h1 {
	color: rgb(0, 113, 193);
	font-family: Arbutus Slab;
	font-size: 40px;
}

#cmp_15235972-3fbe-420b-9f0b-38a62e8026d1 h2 {
	color: rgb(0, 113, 193);
	font-family: Roboto;
	font-size: 22px;
}

#cmp_15235972-3fbe-420b-9f0b-38a62e8026d1 h3 {
	color: rgb(0, 113, 193);
	font-family: Lato;
	font-size: 15px;
}

#cmp_15235972-3fbe-420b-9f0b-38a62e8026d1 p {
	color: rgb(51, 51, 51);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_15235972-3fbe-420b-9f0b-38a62e8026d1 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_15235972-3fbe-420b-9f0b-38a62e8026d1 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_15235972-3fbe-420b-9f0b-38a62e8026d1 .btn {
	background-color: rgb(146, 209, 79);
	color: #FFFFFF;
	font-family: Roboto;
	font-size: 12px;
}

#cmp_15235972-3fbe-420b-9f0b-38a62e8026d1 .btn:hover {
	background-color: rgb(235, 3, 1);
	color: #FFFFFF;
}

#cmp_15235972-3fbe-420b-9f0b-38a62e8026d1 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(51, 51, 51);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_15235972-3fbe-420b-9f0b-38a62e8026d1 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(51, 51, 51);
	font-family: Roboto;
	font-size: 13px;
}

/*
 * components/global/cmp_3d0b142c-4379-4676-9ae5-259ab3144574/component.css
 */
#cmp_3d0b142c-4379-4676-9ae5-259ab3144574.footer {
	background-color: #FAFAFA;
	font-family: Roboto;
	color: rgb(51, 51, 51);
	padding-top: 10px;
	padding-bottom: 10px;

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

#cmp_3d0b142c-4379-4676-9ae5-259ab3144574 .footer-social {
	padding-top: 15px;
	padding-bottom: 15px;
	text-align: center;
}

#cmp_3d0b142c-4379-4676-9ae5-259ab3144574 .footer-social a {
	display: inline-block;
	padding-left: 5px;
	padding-right: 5px;
}

#cmp_3d0b142c-4379-4676-9ae5-259ab3144574 .footer-social svg path {
	fill: rgb(74, 144, 226);
}

#cmp_3d0b142c-4379-4676-9ae5-259ab3144574 .footer-social a:hover svg path,
#cmp_3d0b142c-4379-4676-9ae5-259ab3144574 .footer-social a:focus svg path,
#cmp_3d0b142c-4379-4676-9ae5-259ab3144574 .footer-social a:active svg path {
	fill: rgb(184, 233, 134);
}

#cmp_3d0b142c-4379-4676-9ae5-259ab3144574.footer .toggler-container {
	padding-top: 15px;
	padding-bottom: 15px;
	text-align: center;
}

#cmp_3d0b142c-4379-4676-9ae5-259ab3144574.footer .navbar-toggler {
	color: rgb(146, 209, 79);
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

#cmp_3d0b142c-4379-4676-9ae5-259ab3144574 .footer-cc {
	border-top: 1px solid #e1e1e1;
	letter-spacing: 1px;
	text-align: center;
}

#cmp_3d0b142c-4379-4676-9ae5-259ab3144574 .footer-cc img {
	padding-top: 15px;
	padding-bottom: 15px;
}

#cmp_3d0b142c-4379-4676-9ae5-259ab3144574 .footer-cc p,
#cmp_3d0b142c-4379-4676-9ae5-259ab3144574 .footer-tributes p {
	padding-top: 15px;
	padding-bottom: 15px;
	margin: 0;
}

#cmp_3d0b142c-4379-4676-9ae5-259ab3144574 .footer-tributes p a {
	color: rgb(51, 51, 51);
	padding: 0;
}

#cmp_3d0b142c-4379-4676-9ae5-259ab3144574 .footer-tributes p a:hover,
#cmp_3d0b142c-4379-4676-9ae5-259ab3144574 .footer-tributes p a:focus,
#cmp_3d0b142c-4379-4676-9ae5-259ab3144574 .footer-tributes p a:active {
	color: rgb(51, 51, 51);
	text-decoration: none;
}

#cmp_3d0b142c-4379-4676-9ae5-259ab3144574 .footer-directory {
	text-align: center;
}

#cmp_3d0b142c-4379-4676-9ae5-259ab3144574 .footer-list {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

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

#cmp_3d0b142c-4379-4676-9ae5-259ab3144574 .footer-list .footer-item {
	-webkit-flex: 0 0 50%;
	-moz-flex: 0 0 50%;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;

	padding: 8px 18px;
	position: relative;
}

#cmp_3d0b142c-4379-4676-9ae5-259ab3144574 .footer-list .footer-link {
	color: rgb(126, 211, 33);
	font-family: Coda;
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

#cmp_3d0b142c-4379-4676-9ae5-259ab3144574 .footer-list .footer-link:hover,
#cmp_3d0b142c-4379-4676-9ae5-259ab3144574 .footer-list .footer-link:focus,
#cmp_3d0b142c-4379-4676-9ae5-259ab3144574 .footer-list .footer-link:active {
	color: rgb(74, 144, 226);
	text-decoration: none;
}

@media (max-width: 767px) {
	#cmp_3d0b142c-4379-4676-9ae5-259ab3144574 .col-sm-12,
	#cmp_3d0b142c-4379-4676-9ae5-259ab3144574 .col-xs-12 {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 auto;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
	}
}

@media (min-width: 768px) {
	#cmp_3d0b142c-4379-4676-9ae5-259ab3144574.footer {
		-webkit-align-items: flex-start;
		-moz-align-items: flex-start;
		-ms-align-items: flex-start;
		align-items: flex-start;

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

		padding-top: 25px;
		padding-bottom: 25px;
	}
	#cmp_3d0b142c-4379-4676-9ae5-259ab3144574 .footer-directory {
		-webkit-order: 1;
		-moz-order: 1;
		-ms-order: 1;
		order: 1;

		text-align: left;
	}
	#cmp_3d0b142c-4379-4676-9ae5-259ab3144574 .footer-social {
		-webkit-order: 2;
		-moz-order: 2;
		-ms-order: 2;
		order: 2;

		padding-top: 0;
		padding-bottom: 0;
		text-align: right;
	}
	#cmp_3d0b142c-4379-4676-9ae5-259ab3144574 .footer-cc {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}
	#cmp_3d0b142c-4379-4676-9ae5-259ab3144574 .footer-cc p {
		display: inline-block;
	}
}

@media (min-width: 992px) {
	#cmp_3d0b142c-4379-4676-9ae5-259ab3144574 .footer-cc {
		-webkit-order: 2;
		-moz-order: 2;
		-ms-order: 2;
		order: 2;

		border-top: none;
	}
	#cmp_3d0b142c-4379-4676-9ae5-259ab3144574 .footer-cc p {
		display: block;
	}
	#cmp_3d0b142c-4379-4676-9ae5-259ab3144574 .footer-social {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}
}

/*
 * components/global/cmp_e23d2031-2d65-4ac8-aa85-2f089afbf30d/component.css
 */
#cmp_e23d2031-2d65-4ac8-aa85-2f089afbf30d.navbar {
	background-color: rgb(255, 255, 255);
	border-radius: 0;
	border-top: 4px solid rgb(146, 209, 79);
	padding: 0;

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

#cmp_e23d2031-2d65-4ac8-aa85-2f089afbf30d.navbar a:hover,
#cmp_e23d2031-2d65-4ac8-aa85-2f089afbf30d.navbar a:focus,
#cmp_e23d2031-2d65-4ac8-aa85-2f089afbf30d.navbar a:active {
	color: rgb(146, 209, 79);
}

#cmp_e23d2031-2d65-4ac8-aa85-2f089afbf30d .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;

	max-width: 100%;
	color: rgba(184, 233, 134, 0.92);
	font-family: Roboto;
	font-size: 24px;
	margin: 0;
	padding: 15px;
	text-align: center;
}

#cmp_e23d2031-2d65-4ac8-aa85-2f089afbf30d .navbar-brand img {
	max-width: 100%;
}

#cmp_e23d2031-2d65-4ac8-aa85-2f089afbf30d.navbar .navbar-toggler {
	background-color: rgb(146, 209, 79);
	border-radius: 0;
	color: #FFFFFF;
	font-size: 12px;
	letter-spacing: 0.167em;
	padding: 15px;
	text-transform: uppercase;
}

#cmp_e23d2031-2d65-4ac8-aa85-2f089afbf30d.navbar .navbar-toggler:hover,
#cmp_e23d2031-2d65-4ac8-aa85-2f089afbf30d.navbar .navbar-toggler:focus,
#cmp_e23d2031-2d65-4ac8-aa85-2f089afbf30d.navbar .navbar-toggler:active {
	background-color: rgb(0, 113, 193);
	color: #FFFFFF;
}

#cmp_e23d2031-2d65-4ac8-aa85-2f089afbf30d .navbar-nav {
	align-items: center;
	display: flex;
	flex-direction: column;
	margin: 0;
	padding-top: 15px;
	padding-bottom: 15px;
}

#cmp_e23d2031-2d65-4ac8-aa85-2f089afbf30d .navbar-nav li {
	padding-top: 10px;
	padding-bottom: 10px;
}

#cmp_e23d2031-2d65-4ac8-aa85-2f089afbf30d .navbar-nav .nav-link {
	color: rgb(0, 113, 193);
	font-family: Roboto;
	font-size: 14px;;
	letter-spacing: 1px;
	padding: 8px 18px;
	text-align: center;
	text-transform: uppercase;
}

@media (min-width: 768px) {
	#cmp_e23d2031-2d65-4ac8-aa85-2f089afbf30d.navbar {
		-webkit-align-items: center;
		-moz-align-items: center;
		-ms-align-items: center;
		align-items: center;

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

		padding: 15px;
		padding-bottom: 0;
	}
	#cmp_e23d2031-2d65-4ac8-aa85-2f089afbf30d .navbar-brand {
		padding: 0;
		padding-bottom: 15px;
	}
	#cmp_e23d2031-2d65-4ac8-aa85-2f089afbf30d .navbar-toggleable-sm {
		-webkit-flex-shrink: 0;
		-moz-flex-shrink: 0;
		-ms-flex-shrink: 0;
		flex-shrink: 0;

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

	}
	#cmp_e23d2031-2d65-4ac8-aa85-2f089afbf30d .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;
		padding-bottom: 15px;
	}
	#cmp_e23d2031-2d65-4ac8-aa85-2f089afbf30d .navbar-nav li {
		padding: 0;
	}
}

/*
 * components/index/cmp_381f2d3f-b889-4586-b794-311d879d3ba2/component.css
 */
#cmp_381f2d3f-b889-4586-b794-311d879d3ba2 {
	padding: 0;
}

#cmp_381f2d3f-b889-4586-b794-311d879d3ba2 .hero-content {
	background-color: rgb(0, 113, 193);
	padding: 20px;
}

#cmp_381f2d3f-b889-4586-b794-311d879d3ba2 .hero-content h1 {
	color: rgb(146, 209, 79);
	font-family: Arbutus Slab;
	font-size: 36px;
}

#cmp_381f2d3f-b889-4586-b794-311d879d3ba2 .hero-content h2 {
	color: #FFFFFF;
	font-family: Arbutus Slab;
	font-size: 22px;
}

#cmp_381f2d3f-b889-4586-b794-311d879d3ba2 .hero-content h3 {
	color: #FFFFFF;
	font-family: Roboto;
	font-size: 15px;
}

#cmp_381f2d3f-b889-4586-b794-311d879d3ba2 .hero-content p {
	color: #FFFFFF;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_381f2d3f-b889-4586-b794-311d879d3ba2 .hero-content .btn {
	background-color: rgb(146, 209, 79);
	color: #FFFFFF;
	font-family: Archivo Black;
	font-size: 12px;
}

#cmp_381f2d3f-b889-4586-b794-311d879d3ba2 .hero-content .btn:hover {
	background-color: rgb(255, 255, 255);
	color: rgb(146, 209, 79);
}


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

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

	#cmp_381f2d3f-b889-4586-b794-311d879d3ba2 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_381f2d3f-b889-4586-b794-311d879d3ba2 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

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

	#cmp_381f2d3f-b889-4586-b794-311d879d3ba2 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_381f2d3f-b889-4586-b794-311d879d3ba2 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/index/cmp_50ea9af5-d1e9-4bcd-a82d-329225f812b6/component.css
 */
#cmp_50ea9af5-d1e9-4bcd-a82d-329225f812b6 {
	padding: 0;
}

#cmp_50ea9af5-d1e9-4bcd-a82d-329225f812b6 .hero-content {
	background-color: rgb(189, 1, 0);
	padding: 20px;
}

#cmp_50ea9af5-d1e9-4bcd-a82d-329225f812b6 .hero-content h1 {
	color: rgb(255, 229, 143);
	font-family: Arbutus Slab;
	font-size: 40px;
}

#cmp_50ea9af5-d1e9-4bcd-a82d-329225f812b6 .hero-content h2 {
	color: #FFFFFF;
	font-family: Roboto;
	font-size: 22px;
}

#cmp_50ea9af5-d1e9-4bcd-a82d-329225f812b6 .hero-content h3 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 15px;
}

#cmp_50ea9af5-d1e9-4bcd-a82d-329225f812b6 .hero-content p {
	color: #FFFFFF;
	font-family: Roboto;
	font-size: 16px;
}

#cmp_50ea9af5-d1e9-4bcd-a82d-329225f812b6 .hero-content .btn {
	background-color: rgb(255, 229, 143);
	color: rgb(189, 1, 0);
	font-family: Archivo Black;
	font-size: 12px;
}

#cmp_50ea9af5-d1e9-4bcd-a82d-329225f812b6 .hero-content .btn:hover {
	background-color: rgb(255, 255, 255);
	color: rgb(189, 1, 0);
}


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

@media(min-width: 768px) {
	#cmp_50ea9af5-d1e9-4bcd-a82d-329225f812b6 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_50ea9af5-d1e9-4bcd-a82d-329225f812b6 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_50ea9af5-d1e9-4bcd-a82d-329225f812b6 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_50ea9af5-d1e9-4bcd-a82d-329225f812b6 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_50ea9af5-d1e9-4bcd-a82d-329225f812b6 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_50ea9af5-d1e9-4bcd-a82d-329225f812b6 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/index/cmp_72eee91e-673c-4b38-9504-4489bff9c3de/component.css
 */
#cmp_72eee91e-673c-4b38-9504-4489bff9c3de {
	background-color: rgb(146, 209, 79);
}

#cmp_72eee91e-673c-4b38-9504-4489bff9c3de h1 {
	color: rgb(255, 255, 255);
	font-family: Arbutus Slab;
	font-size: 30px;
}

#cmp_72eee91e-673c-4b38-9504-4489bff9c3de h2 {
	color: rgb(0, 113, 193);
	font-family: Roboto;
	font-size: 22px;
}

#cmp_72eee91e-673c-4b38-9504-4489bff9c3de h3 {
	color: rgb(0, 113, 193);
	font-family: Lato;
	font-size: 15px;
}

#cmp_72eee91e-673c-4b38-9504-4489bff9c3de p {
	color: rgb(255, 255, 255);
	font-family: Roboto;
	font-size: 16px;
}

#cmp_72eee91e-673c-4b38-9504-4489bff9c3de .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_72eee91e-673c-4b38-9504-4489bff9c3de .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_72eee91e-673c-4b38-9504-4489bff9c3de .btn {
	background-color: rgb(0, 113, 193);
	color: #FFFFFF;
	font-family: Archivo Black;
	font-size: 12px;
}

#cmp_72eee91e-673c-4b38-9504-4489bff9c3de .btn:hover {
	background-color: rgb(255, 255, 255);
	color: rgb(0, 113, 193);
}

#cmp_72eee91e-673c-4b38-9504-4489bff9c3de ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(255, 255, 255);
	font-family: Roboto;
	font-size: 16px;
}

#cmp_72eee91e-673c-4b38-9504-4489bff9c3de ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(255, 255, 255);
	font-family: Roboto;
	font-size: 16px;
}

#cmp_72eee91e-673c-4b38-9504-4489bff9c3de  {
	padding: 60px 0;
}
#cmp_72eee91e-673c-4b38-9504-4489bff9c3de h1 {
	margin-bottom: 15px;
}
#cmp_72eee91e-673c-4b38-9504-4489bff9c3de p {
	margin-bottom: 20px;
}
/*
 * components/index/cmp_78628d83-f6c8-4884-b905-3af3f8c93448/component.css
 */
#cmp_78628d83-f6c8-4884-b905-3af3f8c93448 {
	padding: 0;
}

#cmp_78628d83-f6c8-4884-b905-3af3f8c93448 .hero-content {
	background-color: rgb(146, 209, 79);
	padding: 20px;
}

#cmp_78628d83-f6c8-4884-b905-3af3f8c93448 .hero-content h1 {
	color: rgb(255, 255, 255);
	font-family: Arbutus Slab;
	font-size: 36px;
}

#cmp_78628d83-f6c8-4884-b905-3af3f8c93448 .hero-content h2 {
	color: #FFFFFF;
	font-family: Arbutus Slab;
	font-size: 26px;
}

#cmp_78628d83-f6c8-4884-b905-3af3f8c93448 .hero-content h3 {
	color: #FFFFFF;
	font-family: Arbutus Slab;
	font-size: 16px;
}

#cmp_78628d83-f6c8-4884-b905-3af3f8c93448 .hero-content p {
	color: #FFFFFF;
	font-family: Roboto;
	font-size: 15px;
}

#cmp_78628d83-f6c8-4884-b905-3af3f8c93448 .hero-content .btn {
	background-color: rgb(0, 113, 193);
	color: #FFFFFF;
	font-family: Archivo Black;
	font-size: 12px;
}

#cmp_78628d83-f6c8-4884-b905-3af3f8c93448 .hero-content .btn:hover {
	background-color: rgb(255, 255, 255);
	color: rgb(0, 113, 193);
}

#cmp_78628d83-f6c8-4884-b905-3af3f8c93448 h1 {
	margin-top: 20px;
	margin-bottom: 10px;
}
#cmp_78628d83-f6c8-4884-b905-3af3f8c93448 p {
	margin-bottom: 25px;
}
/*
 * components/index/cmp_cdbb79da-3fd4-4bac-849e-820d4d5b9e3f/component.css
 */
#cmp_cdbb79da-3fd4-4bac-849e-820d4d5b9e3f {
	background-color: rgb(0, 113, 193);
}

#cmp_cdbb79da-3fd4-4bac-849e-820d4d5b9e3f h1 {
	color: rgb(255, 255, 255);
	font-family: Arbutus Slab;
	font-size: 40px;
}

#cmp_cdbb79da-3fd4-4bac-849e-820d4d5b9e3f h2 {
	color: rgb(255, 255, 255);
	font-family: Roboto;
	font-size: 22px;
}

#cmp_cdbb79da-3fd4-4bac-849e-820d4d5b9e3f h3 {
	color: rgba(255, 255, 255, 0.8);
	font-family: Roboto;
	font-size: 15px;
}

#cmp_cdbb79da-3fd4-4bac-849e-820d4d5b9e3f p {
	color: rgb(51, 51, 51);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_cdbb79da-3fd4-4bac-849e-820d4d5b9e3f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(51, 51, 51);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_cdbb79da-3fd4-4bac-849e-820d4d5b9e3f ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(51, 51, 51);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_cdbb79da-3fd4-4bac-849e-820d4d5b9e3f  {
	padding: 60px 0;
}
#cmp_cdbb79da-3fd4-4bac-849e-820d4d5b9e3f h1 {
	margin-bottom: 40px;
}
#cmp_cdbb79da-3fd4-4bac-849e-820d4d5b9e3f h3 {
	margin-bottom: 15px;
}
#cmp_cdbb79da-3fd4-4bac-849e-820d4d5b9e3f p {
	border-bottom: 1px solid #E1E1E1;
	margin-bottom: 25px;
	padding-bottom: 25px;
}
#cmp_cdbb79da-3fd4-4bac-849e-820d4d5b9e3f p:last-of-type {
	border-bottom: none;
	padding-bottom: 0;
}
/*
 * components/shop/listing/cmp_971434bd-68e7-4595-93bc-78f47aa596fe/component.css
 */
#cmp_971434bd-68e7-4595-93bc-78f47aa596fe {
	background-color: #FFFFFF;
}

#cmp_971434bd-68e7-4595-93bc-78f47aa596fe h1 {
	color: rgb(0, 113, 193);
	font-family: Arbutus Slab;
	font-size: 40px;
}

#cmp_971434bd-68e7-4595-93bc-78f47aa596fe h2 {
	color: rgb(0, 113, 193);
	font-family: Roboto;
	font-size: 22px;
}

#cmp_971434bd-68e7-4595-93bc-78f47aa596fe h3 {
	color: rgb(0, 113, 193);
	font-family: Lato;
	font-size: 15px;
}

#cmp_971434bd-68e7-4595-93bc-78f47aa596fe p {
	color: rgb(51, 51, 51);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_971434bd-68e7-4595-93bc-78f47aa596fe ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(51, 51, 51);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_971434bd-68e7-4595-93bc-78f47aa596fe ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(51, 51, 51);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_971434bd-68e7-4595-93bc-78f47aa596fe  {
	padding: 50px 0 15px;
}
#cmp_971434bd-68e7-4595-93bc-78f47aa596fe h1 {
	margin-bottom: 15px;
}
/*
 * components/shop/listing/cmp_a4dff29a-610a-4d1f-b263-17df6c39d333/component.css
 */
#cmp_a4dff29a-610a-4d1f-b263-17df6c39d333 {
	justify-content: center;
}

#cmp_a4dff29a-610a-4d1f-b263-17df6c39d333 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

#cmp_a4dff29a-610a-4d1f-b263-17df6c39d333  {
	border-bottom: 1px solid #E1E1E1;
	margin-bottom: 35px;
	padding-bottom: 35px;
}
/*
 * components/shop/listing/cmp_cf49e3f4-651d-4970-81e3-caf3baf3b498/component.css
 */
#cmp_cf49e3f4-651d-4970-81e3-caf3baf3b498 .shop-listing-item {
	color: rgb(51, 51, 51);
}

#cmp_cf49e3f4-651d-4970-81e3-caf3baf3b498 .shop-listing-item:hover,
#cmp_cf49e3f4-651d-4970-81e3-caf3baf3b498 .shop-listing-item:focus {
	text-decoration: none;
}

#cmp_cf49e3f4-651d-4970-81e3-caf3baf3b498 .shop-listing-item__image {
	background-size: cover;
	background-position: center center;
}

#cmp_cf49e3f4-651d-4970-81e3-caf3baf3b498 .shop-listing-item__name {
	margin: 10px 0;
}

#cmp_cf49e3f4-651d-4970-81e3-caf3baf3b498 .shop-listing-item__price {
	margin: 10px 0 30px;
}

#cmp_cf49e3f4-651d-4970-81e3-caf3baf3b498 .product_paging {
	-webkit-display: flex;
	-ms-display: flex;
	display: flex;
	justify-content: center;

	margin: 20px 0;
}

#cmp_cf49e3f4-651d-4970-81e3-caf3baf3b498 .product_page a,
#cmp_cf49e3f4-651d-4970-81e3-caf3baf3b498 .next_page a,
#cmp_cf49e3f4-651d-4970-81e3-caf3baf3b498 .prev_page a {
	display: block;
	padding: 12px 15px;
	margin: 0 2px;
	border: 1px solid #E0E0E0;
	border-radius: 5px;
}

#cmp_cf49e3f4-651d-4970-81e3-caf3baf3b498 .product_page.active a,
#cmp_cf49e3f4-651d-4970-81e3-caf3baf3b498 .product_page a:hover,
#cmp_cf49e3f4-651d-4970-81e3-caf3baf3b498 .product_page a:focus,
#cmp_cf49e3f4-651d-4970-81e3-caf3baf3b498 .next_page a:hover,
#cmp_cf49e3f4-651d-4970-81e3-caf3baf3b498 .next_page a:focus,
#cmp_cf49e3f4-651d-4970-81e3-caf3baf3b498 .prev_page a:hover,
#cmp_cf49e3f4-651d-4970-81e3-caf3baf3b498 .prev_page a:focus {
	text-decoration: none;
	background-color: #F9F9F9;
}

#cmp_cf49e3f4-651d-4970-81e3-caf3baf3b498 .product_page.active a {
	color: black;
}

/*
 * components/shop/listing/cmp_d53518c7-dbac-4cb5-8a62-dc13fd37b279/component.css
 */
#cmp_d53518c7-dbac-4cb5-8a62-dc13fd37b279 {
	justify-content: center;
}

#cmp_d53518c7-dbac-4cb5-8a62-dc13fd37b279 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/product/cmp_12208e3f-98db-4cc0-8bf5-8c24e16d5969/component.css
 */
#cmp_12208e3f-98db-4cc0-8bf5-8c24e16d5969.shop-product-header {
	padding: 50px 0 15px;
}

/*
 * components/shop/product/cmp_37cb3577-2c1b-411c-bcdb-9bf7f5ae7284/component.css
 */
#cmp_37cb3577-2c1b-411c-bcdb-9bf7f5ae7284 .shop-product__name {
	margin-bottom: 10px;
}

#cmp_37cb3577-2c1b-411c-bcdb-9bf7f5ae7284 .shop-product__price {
	margin-bottom: 20px;
}

#cmp_37cb3577-2c1b-411c-bcdb-9bf7f5ae7284 .shop-product select {
	width: auto;
}

#cmp_37cb3577-2c1b-411c-bcdb-9bf7f5ae7284 .shop-product__add-to-cart {
	margin-bottom: 20px;
}

#cmp_37cb3577-2c1b-411c-bcdb-9bf7f5ae7284 .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin-bottom: 40px;
}

#cmp_37cb3577-2c1b-411c-bcdb-9bf7f5ae7284 .shop-product__review-share-desktop .col-xs-6 {
	padding-top: 10px;
}

#cmp_37cb3577-2c1b-411c-bcdb-9bf7f5ae7284 .shop-product__review-share-desktop .col-xs-6 + .col-xs-6 {
	border-left: 1px solid #E1E1E1;
}

/*
 * components/sold_out/cmp_17126594-957c-4b46-a990-835506eade86/component.css
 */
#cmp_17126594-957c-4b46-a990-835506eade86 {
	background-color: #FFFFFF;
}

#cmp_17126594-957c-4b46-a990-835506eade86 h1 {
	color: rgb(0, 113, 193);
	font-family: Arbutus Slab;
	font-size: 40px;
}

#cmp_17126594-957c-4b46-a990-835506eade86 h2 {
	color: rgb(0, 113, 193);
	font-family: Roboto;
	font-size: 22px;
}

#cmp_17126594-957c-4b46-a990-835506eade86 h3 {
	color: rgb(0, 113, 193);
	font-family: Lato;
	font-size: 15px;
}

#cmp_17126594-957c-4b46-a990-835506eade86 p {
	color: rgb(51, 51, 51);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_17126594-957c-4b46-a990-835506eade86 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_17126594-957c-4b46-a990-835506eade86 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_17126594-957c-4b46-a990-835506eade86 .btn {
	background-color: rgb(146, 209, 79);
	color: #FFFFFF;
	font-family: Roboto;
	font-size: 12px;
}

#cmp_17126594-957c-4b46-a990-835506eade86 .btn:hover {
	background-color: rgb(235, 3, 1);
	color: #FFFFFF;
}

#cmp_17126594-957c-4b46-a990-835506eade86 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(51, 51, 51);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_17126594-957c-4b46-a990-835506eade86 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(51, 51, 51);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_17126594-957c-4b46-a990-835506eade86  {
	padding-bottom: 50px;
}
/*
 * components/sold_out/cmp_8e0cfc0c-2e9e-432a-8841-f75222129f66/component.css
 */
#cmp_8e0cfc0c-2e9e-432a-8841-f75222129f66 img {
	max-width: 100%;
}

#cmp_8e0cfc0c-2e9e-432a-8841-f75222129f66  {
	padding-top: 50px;
}
/*
 * components/subscribe/cmp_327ed190-daba-4f75-8388-d317a0bd57ba/component.css
 */
#cmp_327ed190-daba-4f75-8388-d317a0bd57ba {
	background-color: #FFFFFF;
}

#cmp_327ed190-daba-4f75-8388-d317a0bd57ba h1 {
	color: rgb(0, 113, 193);
	font-family: Arbutus Slab;
	font-size: 40px;
}

#cmp_327ed190-daba-4f75-8388-d317a0bd57ba h2 {
	color: rgb(0, 113, 193);
	font-family: Roboto;
	font-size: 22px;
}

#cmp_327ed190-daba-4f75-8388-d317a0bd57ba h3 {
	color: rgb(0, 113, 193);
	font-family: Lato;
	font-size: 15px;
}

#cmp_327ed190-daba-4f75-8388-d317a0bd57ba p {
	color: rgb(51, 51, 51);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_327ed190-daba-4f75-8388-d317a0bd57ba ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(51, 51, 51);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_327ed190-daba-4f75-8388-d317a0bd57ba ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(51, 51, 51);
	font-family: Roboto;
	font-size: 13px;
}

/*
 * components/subscribe/cmp_77f84ab2-27e2-4da0-9fbd-76929112828c/component.css
 */

/*
 * components/subscribe_flow/survey_step/cmp_2a24ee10-a1f4-41cc-84c9-4ff1daf459c9/component.css
 */
#cmp_2a24ee10-a1f4-41cc-84c9-4ff1daf459c9 {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/survey_step/cmp_fc9bd4c1-9025-40e1-a820-4df3ebaabd29/component.css
 */
#cmp_fc9bd4c1-9025-40e1-a820-4df3ebaabd29.survey h2 {
	margin-bottom: 1em;
}

#cmp_fc9bd4c1-9025-40e1-a820-4df3ebaabd29.survey .radio input[type="radio"],
#cmp_fc9bd4c1-9025-40e1-a820-4df3ebaabd29.survey .checkbox input[type="checkbox"] {
	margin-right: 0.5em;
}

/*
 * components/subscribe_flow/terms_step/cmp_333a7520-2c78-40ed-918b-97bd832ff4ad/component.css
 */

/*
 * components/subscribe_flow/terms_step/cmp_3aed830b-69f9-456f-9e0f-8d52aa2f796f/component.css
 */
#cmp_3aed830b-69f9-456f-9e0f-8d52aa2f796f {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/variant_step/cmp_584e7a04-bb03-4d1d-b2d4-fa7405321b2d/component.css
 */
#cmp_584e7a04-bb03-4d1d-b2d4-fa7405321b2d {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/variant_step/cmp_e0cabb66-4ab0-4f88-bf13-db0ad9446ff4/component.css
 */

/*
 * components/view-cart/cmp_2e5e2dfa-5e8e-4333-b881-511c123e3275/component.css
 */
#cmp_2e5e2dfa-5e8e-4333-b881-511c123e3275 {
	padding: 15px 15px 100px 15px;
}

#cmp_2e5e2dfa-5e8e-4333-b881-511c123e3275 .cart-thead {
	border-bottom: 1px solid #E1E1E1;
	padding: 10px 0;
}

#cmp_2e5e2dfa-5e8e-4333-b881-511c123e3275 .cart-thead h3 {
	text-transform: uppercase;
}

#cmp_2e5e2dfa-5e8e-4333-b881-511c123e3275 .cart-item {
	border: 1px solid #E1E1E1;
	padding: 25px 0;
	position: relative;
}

#cmp_2e5e2dfa-5e8e-4333-b881-511c123e3275 .product-main {
	margin-bottom: 15px;
}

#cmp_2e5e2dfa-5e8e-4333-b881-511c123e3275 .product-label p {
	margin: 0;
}

#cmp_2e5e2dfa-5e8e-4333-b881-511c123e3275 .product-label .info {
	color: rgb(0, 113, 193);
	text-align: right;
	text-transform: uppercase;
}

#cmp_2e5e2dfa-5e8e-4333-b881-511c123e3275 .product-label .meta {
	color: rgb(0, 113, 193);
	font-size: 15px;
}

#cmp_2e5e2dfa-5e8e-4333-b881-511c123e3275 .product-rem-btn {
	position: absolute;
	right: 1%;
	top: 1%;
}

#cmp_2e5e2dfa-5e8e-4333-b881-511c123e3275 figure {
	margin: 0 0 15px 0;
}

#cmp_2e5e2dfa-5e8e-4333-b881-511c123e3275 .cart-subtotal {
	margin: 50px 0 0 0;
}

#cmp_2e5e2dfa-5e8e-4333-b881-511c123e3275 .cart-subtotal h1 {
	margin: 0 0 15px 0;
}

#cmp_2e5e2dfa-5e8e-4333-b881-511c123e3275 .cart-subtotal h3 {
	margin: 0 0 25px 0;
	text-transform: uppercase;
}

#cmp_2e5e2dfa-5e8e-4333-b881-511c123e3275 .cart-subtotal p {
	margin: 0 0 25px 0;
}

@media (min-width: 768px) {
	#cmp_2e5e2dfa-5e8e-4333-b881-511c123e3275 .cart-item {
		border-width: 0 0 1px 0;
	}
	#cmp_2e5e2dfa-5e8e-4333-b881-511c123e3275 .product-rem-btn {
		top: 40%;
	}
	#cmp_2e5e2dfa-5e8e-4333-b881-511c123e3275 figure {
		margin: 0;
	}
}

/*
 * components/view-cart/cmp_b3fd9973-45c8-4c2f-ba94-5e60ceb963fb/component.css
 */
#cmp_b3fd9973-45c8-4c2f-ba94-5e60ceb963fb {
	background-color: #FFFFFF;
}

#cmp_b3fd9973-45c8-4c2f-ba94-5e60ceb963fb h1 {
	color: rgb(0, 113, 193);
	font-family: Arbutus Slab;
	font-size: 40px;
}

#cmp_b3fd9973-45c8-4c2f-ba94-5e60ceb963fb h2 {
	color: rgb(0, 113, 193);
	font-family: Roboto;
	font-size: 22px;
}

#cmp_b3fd9973-45c8-4c2f-ba94-5e60ceb963fb h3 {
	color: rgb(0, 113, 193);
	font-family: Lato;
	font-size: 15px;
}

#cmp_b3fd9973-45c8-4c2f-ba94-5e60ceb963fb p {
	color: rgb(51, 51, 51);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_b3fd9973-45c8-4c2f-ba94-5e60ceb963fb ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(51, 51, 51);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_b3fd9973-45c8-4c2f-ba94-5e60ceb963fb ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(51, 51, 51);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_b3fd9973-45c8-4c2f-ba94-5e60ceb963fb  {
	padding: 50px 0;;
}
#cmp_b3fd9973-45c8-4c2f-ba94-5e60ceb963fb h1 {
	margin-bottom: 15px;
}
/*
 * components/whats_inside/cmp_8b7ac3ba-1024-430d-a328-a53185b2de23/component.css
 */
#cmp_8b7ac3ba-1024-430d-a328-a53185b2de23 {
	background-color: rgb(146, 209, 79);
}

#cmp_8b7ac3ba-1024-430d-a328-a53185b2de23 h1 {
	color: rgb(255, 255, 255);
	font-family: Arbutus Slab;
	font-size: 40px;
}

#cmp_8b7ac3ba-1024-430d-a328-a53185b2de23 h2 {
	color: rgb(0, 113, 193);
	font-family: Roboto;
	font-size: 22px;
}

#cmp_8b7ac3ba-1024-430d-a328-a53185b2de23 h3 {
	color: rgb(0, 113, 193);
	font-family: Lato;
	font-size: 15px;
}

#cmp_8b7ac3ba-1024-430d-a328-a53185b2de23 p {
	color: rgb(255, 255, 255);
	font-family: Arbutus Slab;
	font-size: 40px;
}

#cmp_8b7ac3ba-1024-430d-a328-a53185b2de23 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(255, 255, 255);
	font-family: Arbutus Slab;
	font-size: 40px;
}

#cmp_8b7ac3ba-1024-430d-a328-a53185b2de23 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(255, 255, 255);
	font-family: Arbutus Slab;
	font-size: 40px;
}

#cmp_8b7ac3ba-1024-430d-a328-a53185b2de23  {
	padding-top: 60px;
}
#cmp_8b7ac3ba-1024-430d-a328-a53185b2de23 h1 {
	margin-bottom: 15px;
}
/*
 * components/whats_inside/cmp_ac279a01-1303-4dee-81bd-5ddb78623f6f/component.css
 */
#cmp_ac279a01-1303-4dee-81bd-5ddb78623f6f {
	padding: 0;
}

#cmp_ac279a01-1303-4dee-81bd-5ddb78623f6f .hero-content {
	background-color: rgb(146, 209, 79);
	padding: 20px;
}

#cmp_ac279a01-1303-4dee-81bd-5ddb78623f6f .hero-content h1 {
	color: rgb(255, 255, 255);
	font-family: Fugaz One;
	font-size: 72px;
}

#cmp_ac279a01-1303-4dee-81bd-5ddb78623f6f .hero-content h2 {
	color: rgba(255, 255, 255, 0.75);
	font-family: Roboto;
	font-size: 36px;
}

#cmp_ac279a01-1303-4dee-81bd-5ddb78623f6f .hero-content h3 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 15px;
}

#cmp_ac279a01-1303-4dee-81bd-5ddb78623f6f .hero-content p {
	color: #B0B0B0;
	font-family: Roboto;
	font-size: 13px;
}

#cmp_ac279a01-1303-4dee-81bd-5ddb78623f6f .hero-content .btn {
	background-color: rgb(255, 255, 255);
	color: rgb(146, 209, 79);
	font-family: Archivo Black;
	font-size: 12px;
}

#cmp_ac279a01-1303-4dee-81bd-5ddb78623f6f .hero-content .btn:hover {
	background-color: rgba(255, 255, 255, 0.7);
	color: rgb(146, 209, 79);
}

#cmp_ac279a01-1303-4dee-81bd-5ddb78623f6f h3 {
	margin-bottom: 35px;
}
#cmp_ac279a01-1303-4dee-81bd-5ddb78623f6f p {
	margin-bottom: 35px;
}
/*
 * components/whats_inside/cmp_f6c3bd5c-8652-4166-8889-8a809228808e/component.css
 */
#cmp_f6c3bd5c-8652-4166-8889-8a809228808e {
	background-color: rgb(247, 247, 247);
}

#cmp_f6c3bd5c-8652-4166-8889-8a809228808e h1 {
	color: rgb(0, 113, 193);
	font-family: Arbutus Slab;
	font-size: 40px;
}

#cmp_f6c3bd5c-8652-4166-8889-8a809228808e h2 {
	color: rgb(0, 113, 193);
	font-family: Roboto;
	font-size: 22px;
}

#cmp_f6c3bd5c-8652-4166-8889-8a809228808e h3 {
	color: rgb(0, 113, 193);
	font-family: Roboto;
	font-size: 15px;
}

#cmp_f6c3bd5c-8652-4166-8889-8a809228808e p {
	color: rgb(51, 51, 51);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_f6c3bd5c-8652-4166-8889-8a809228808e .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_f6c3bd5c-8652-4166-8889-8a809228808e .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_f6c3bd5c-8652-4166-8889-8a809228808e .btn {
	background-color: rgb(146, 209, 79);
	color: #FFFFFF;
	font-family: Archivo Black;
	font-size: 12px;
}

#cmp_f6c3bd5c-8652-4166-8889-8a809228808e .btn:hover {
	background-color: rgb(0, 113, 193);
	color: #FFFFFF;
}

#cmp_f6c3bd5c-8652-4166-8889-8a809228808e ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(51, 51, 51);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_f6c3bd5c-8652-4166-8889-8a809228808e ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(51, 51, 51);
	font-family: Roboto;
	font-size: 13px;
}

#cmp_f6c3bd5c-8652-4166-8889-8a809228808e  {
	padding: 60px 0;
}
#cmp_f6c3bd5c-8652-4166-8889-8a809228808e h3 {
	margin-bottom: 35px;
}
#cmp_f6c3bd5c-8652-4166-8889-8a809228808e p {
	margin-bottom: 35px;
}
/*
 * components/whats_inside/cmp_f86718a2-5d92-43fc-8f7b-88252d2d283a/component.css
 */
#cmp_f86718a2-5d92-43fc-8f7b-88252d2d283a {
	padding: 0;
}

#cmp_f86718a2-5d92-43fc-8f7b-88252d2d283a .hero-content {
	background-color: rgb(0, 113, 193);
	padding: 20px;
}

#cmp_f86718a2-5d92-43fc-8f7b-88252d2d283a .hero-content h1 {
	color: rgb(255, 255, 255);
	font-family: Fugaz One;
	font-size: 72px;
}

#cmp_f86718a2-5d92-43fc-8f7b-88252d2d283a .hero-content h2 {
	color: rgb(126, 211, 33);
	font-family: Arbutus Slab;
	font-size: 22px;
}

#cmp_f86718a2-5d92-43fc-8f7b-88252d2d283a .hero-content h3 {
	color: rgb(126, 211, 33);
	font-family: Roboto;
	font-size: 36px;
}

#cmp_f86718a2-5d92-43fc-8f7b-88252d2d283a .hero-content p {
	color: rgba(255, 255, 255, 0.85);
	font-family: Roboto;
	font-size: 24px;
}

#cmp_f86718a2-5d92-43fc-8f7b-88252d2d283a .hero-content .btn {
	background-color: rgb(146, 209, 79);
	color: #FFFFFF;
	font-family: Archivo Black;
	font-size: 12px;
}

#cmp_f86718a2-5d92-43fc-8f7b-88252d2d283a .hero-content .btn:hover {
	background-color: rgb(255, 255, 255);
	color: rgb(146, 209, 79);
}

#cmp_f86718a2-5d92-43fc-8f7b-88252d2d283a h3 {
	margin-bottom: 35px;
}
#cmp_f86718a2-5d92-43fc-8f7b-88252d2d283a p {
	margin-bottom: 35px;
}