/*
 * css/style.css
 */
/* Globals
------------------------------*/
body {
	background-color: #EEEEEE;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	line-height: 1.5em;
}

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

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

h1 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 34px;
	letter-spacing: 1px;
	line-height: 1;
}

h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
}

h3 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 16px;
}

p {
	line-height: 1.5em;
}

a,
.btn-link {
	color: #3BB44A;
}

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

/* General Component Styles */
.row > .row {
	margin-left: 0;
	margin-right: 0;
}

section[class^="component"] {
	padding: 60px 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.nav-pills .nav-link.active,
.nav-pills .nav-link.active:focus,
.nav-pills .nav-link.active:hover,
.nav-pills .nav-link.active:active,
.nav-pills .nav-item.open .nav-link,
.nav-pills .nav-item.open .nav-link:focus,
.nav-pills .nav-item.open .nav-link:hover,
.nav-pills .nav-item.open .nav-link:active {
	background-color: #3BB44A;
}

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

.panel-body {
	padding: 15px;
}

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

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

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

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

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

/* Buttons */
.btn {
	border-radius: 4px;
	border: none;
	font-size: 13px;
	letter-spacing: 0.077em;
	padding: 1.2em 5em;
	white-space: normal;
}

.btn-small {
	border: 2px solid #3BB44A;
	color: #3BB44A;
	padding: 0.6em 1.8em;
}

.btn-small:hover,
.btn-small:focus,
.btn-small:active,
.btn-small:active:focus {
	background-color: #3BB44A;
	border-color: #3BB44A;
	color: #FFFFFF !important;
}

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

.btn-primary {
	background-color: #3BB44A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
	letter-spacing: 0.167em;
}

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

.btn-secondary {
	background-color: rgb(0, 0, 0);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
	letter-spacing: 0.167em;
}

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

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

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

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

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

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

	margin: 20px 0;
}

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

	padding: .9375rem 0;
}

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

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

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

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

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

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

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

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

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

/* Orders List
------------------------------*/
.orders-list {
	width: 100%;
	margin: 25px 0;
}
.orders-list h1 {
	text-align: center;
	color: rgb(0, 0, 0);
}
.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: #3BB44A;
	border: none;
	border-radius: 25px;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
	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(155, 155, 155);
	color: #FFFFFF;
}

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

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

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

/* Account
------------------------------*/
.account-header {
	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: #3BB44A;
}

.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 #3BB44A;
	color: #3BB44A;
	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(155, 155, 155);
	border-color: rgb(155, 155, 155);
	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_568cb1c2-ba90-41ba-b377-39d8c83385cf/component.css
 */
#cmp_568cb1c2-ba90-41ba-b377-39d8c83385cf {
	padding: 0;
}

#cmp_568cb1c2-ba90-41ba-b377-39d8c83385cf .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_568cb1c2-ba90-41ba-b377-39d8c83385cf .hero-content h1 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 15px 0;
}

#cmp_568cb1c2-ba90-41ba-b377-39d8c83385cf .hero-content h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 15px 0;
}

#cmp_568cb1c2-ba90-41ba-b377-39d8c83385cf .hero-content h3 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 15px 0;
}

#cmp_568cb1c2-ba90-41ba-b377-39d8c83385cf .hero-content p {
	color: #49494A;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 15px 0;
}

#cmp_568cb1c2-ba90-41ba-b377-39d8c83385cf .hero-content .btn {
	background-color: #3BB44A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_568cb1c2-ba90-41ba-b377-39d8c83385cf .hero-content .btn:hover {
	background-color: rgb(155, 155, 155);
	color: #FFFFFF;
}

/*
 * components/about/cmp_bf4b4989-da87-4b36-9f2a-af149e354b74/component.css
 */
#cmp_bf4b4989-da87-4b36-9f2a-af149e354b74 {
	background-color: rgb(0, 0, 0);
}

#cmp_bf4b4989-da87-4b36-9f2a-af149e354b74 h1 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_bf4b4989-da87-4b36-9f2a-af149e354b74 h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_bf4b4989-da87-4b36-9f2a-af149e354b74 h3 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_bf4b4989-da87-4b36-9f2a-af149e354b74 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_bf4b4989-da87-4b36-9f2a-af149e354b74 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_bf4b4989-da87-4b36-9f2a-af149e354b74 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_bf4b4989-da87-4b36-9f2a-af149e354b74 .btn {
	background-color: #3BB44A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_bf4b4989-da87-4b36-9f2a-af149e354b74 .btn:hover {
	background-color: rgb(155, 155, 155);
	color: #FFFFFF;
}

#cmp_bf4b4989-da87-4b36-9f2a-af149e354b74 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_bf4b4989-da87-4b36-9f2a-af149e354b74 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/about/cmp_f2d93f9a-a9a2-492a-8f1e-19dbec31e69f/component.css
 */
#cmp_f2d93f9a-a9a2-492a-8f1e-19dbec31e69f {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	background-color: #FFFFFF;
}

#cmp_f2d93f9a-a9a2-492a-8f1e-19dbec31e69f .content {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	margin: 0 auto;
	padding: 25px;
}

#cmp_f2d93f9a-a9a2-492a-8f1e-19dbec31e69f .square-image {
	height: 225px;
	margin: 0 0 15px 0;
	width: 225px;
}

#cmp_f2d93f9a-a9a2-492a-8f1e-19dbec31e69f h1 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 34px;
}

#cmp_f2d93f9a-a9a2-492a-8f1e-19dbec31e69f h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
}

#cmp_f2d93f9a-a9a2-492a-8f1e-19dbec31e69f h3 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 16px;
}

#cmp_f2d93f9a-a9a2-492a-8f1e-19dbec31e69f p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/checkout/cmp_adac3d65-367e-4dc8-97a6-936918066d0e/component.css
 */
#cmp_adac3d65-367e-4dc8-97a6-936918066d0e .checkout_content {
  overflow: auto;
}

#cmp_adac3d65-367e-4dc8-97a6-936918066d0e .checkout_content section {
  border-color: #F5F5F5;
}

#cmp_adac3d65-367e-4dc8-97a6-936918066d0e .cart_listing table {
  border-color: #F5F5F5;
}

#cmp_adac3d65-367e-4dc8-97a6-936918066d0e  {
	padding-top: 0;
}
/*
 * components/customer/account/cmp_cfaa92ab-6d80-4e0f-aa49-05918e5a8983/component.css
 */

/*
 * components/customer/edit/cmp_b01f0d22-54a4-4621-8c00-ca1d7ca21b1e/component.css
 */

/*
 * components/customer/forgot_password/cmp_1ff8fe35-593f-4aed-ad01-c476efc7d4d1/component.css
 */
#cmp_1ff8fe35-593f-4aed-ad01-c476efc7d4d1 {
    padding:  0 0 120px 0;
}
/*
 * components/customer/forgot_password/cmp_b82d923a-059e-4ef5-b67c-155c326aea8e/component.css
 */
#cmp_b82d923a-059e-4ef5-b67c-155c326aea8e {
	background-color: #FFFFFF;
}

#cmp_b82d923a-059e-4ef5-b67c-155c326aea8e h1 {
	color: rgb(0, 0, 0);
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 25px 0;
}

#cmp_b82d923a-059e-4ef5-b67c-155c326aea8e h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_b82d923a-059e-4ef5-b67c-155c326aea8e h3 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_b82d923a-059e-4ef5-b67c-155c326aea8e p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_b82d923a-059e-4ef5-b67c-155c326aea8e ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_b82d923a-059e-4ef5-b67c-155c326aea8e ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/customer/login/cmp_a4c156bd-e679-47c5-bd44-e9f84ccbe860/component.css
 */
#cmp_a4c156bd-e679-47c5-bd44-e9f84ccbe860 {
    padding:  0 0 120px 0;
}
/*
 * components/customer/login/cmp_feb009f6-7452-494a-a2a3-9934e5613770/component.css
 */
#cmp_feb009f6-7452-494a-a2a3-9934e5613770 {
	background-color: #FFFFFF;
}

#cmp_feb009f6-7452-494a-a2a3-9934e5613770 h1 {
	color: rgb(0, 0, 0);
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 25px 0;
}

#cmp_feb009f6-7452-494a-a2a3-9934e5613770 h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_feb009f6-7452-494a-a2a3-9934e5613770 h3 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_feb009f6-7452-494a-a2a3-9934e5613770 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_feb009f6-7452-494a-a2a3-9934e5613770 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_feb009f6-7452-494a-a2a3-9934e5613770 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/customer/order/cmp_9ca2e03e-7725-438a-a6d0-46f845f7efde/component.css
 */

/*
 * components/customer/orders/cmp_2322d404-f683-4d51-a2ed-f7d982e8387f/component.css
 */

/*
 * components/customer/password_reset/cmp_59b4f870-dbf8-4df6-a00a-524b7240d5df/component.css
 */
#cmp_59b4f870-dbf8-4df6-a00a-524b7240d5df {
	background-color: #FFFFFF;
}

#cmp_59b4f870-dbf8-4df6-a00a-524b7240d5df h1 {
	color: rgb(0, 0, 0);
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 25px 0;
}

#cmp_59b4f870-dbf8-4df6-a00a-524b7240d5df h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_59b4f870-dbf8-4df6-a00a-524b7240d5df h3 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_59b4f870-dbf8-4df6-a00a-524b7240d5df p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_59b4f870-dbf8-4df6-a00a-524b7240d5df ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_59b4f870-dbf8-4df6-a00a-524b7240d5df ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/customer/password_reset/cmp_60bea948-cba7-4413-b98c-0e7e1e451bd6/component.css
 */
#cmp_60bea948-cba7-4413-b98c-0e7e1e451bd6 {
    padding:  0 0 120px 0;
}
/*
 * components/customer/thank_you/cmp_2f549b2c-98e0-441d-9824-905a3d98a0ee/component.css
 */

/*
 * components/global/cmp_862763cf-aaed-467a-8ebd-5da68be7e969/component.css
 */
#cmp_862763cf-aaed-467a-8ebd-5da68be7e969.navbar {
	background-color: rgb(254, 254, 254);
	border-radius: 0;
	padding: 0;

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

#cmp_862763cf-aaed-467a-8ebd-5da68be7e969.navbar a:hover,
#cmp_862763cf-aaed-467a-8ebd-5da68be7e969.navbar a:focus,
#cmp_862763cf-aaed-467a-8ebd-5da68be7e969.navbar a:active {
	color: #3BB44A;
}

#cmp_862763cf-aaed-467a-8ebd-5da68be7e969 .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;

	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	letter-spacing: 0.038em;
	margin: 0;
	max-width: 100%;
	padding: 15px;
	text-align: center;
	text-transform: uppercase;
}

#cmp_862763cf-aaed-467a-8ebd-5da68be7e969 .navbar-brand img {
	max-width: 100%;
}

#cmp_862763cf-aaed-467a-8ebd-5da68be7e969.navbar .navbar-toggler {
	background-color: #3BB44A;
	border-radius: 0;
	color: #FFFFFF;
	font-size: 13px;
	letter-spacing: 0.077em;
	padding: 15px;
	text-transform: uppercase;
}

#cmp_862763cf-aaed-467a-8ebd-5da68be7e969.navbar .navbar-toggler:hover,
#cmp_862763cf-aaed-467a-8ebd-5da68be7e969.navbar .navbar-toggler:focus,
#cmp_862763cf-aaed-467a-8ebd-5da68be7e969.navbar .navbar-toggler:active {
	background-color: rgb(155, 155, 155);
	color: #FFFFFF;
}

#cmp_862763cf-aaed-467a-8ebd-5da68be7e969 .navbar-nav {
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;

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

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

	margin: 0;
	padding: 15px 0;
}

#cmp_862763cf-aaed-467a-8ebd-5da68be7e969 .navbar-nav li {
	padding: 10px 0;
}

#cmp_862763cf-aaed-467a-8ebd-5da68be7e969 .navbar-nav .nav-link {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 13px;;
	padding: 8px 18px;
	text-align: center;
	text-transform: uppercase;
}

@media (min-width: 768px) {
	#cmp_862763cf-aaed-467a-8ebd-5da68be7e969.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 0 0 0;
	}
	#cmp_862763cf-aaed-467a-8ebd-5da68be7e969 .navbar-brand {
		padding: 0 0 15px 0;
	}
	#cmp_862763cf-aaed-467a-8ebd-5da68be7e969 .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_862763cf-aaed-467a-8ebd-5da68be7e969 .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 0 15px 0;
	}
	#cmp_862763cf-aaed-467a-8ebd-5da68be7e969 .navbar-nav li {
		padding: 0;
	}
}

/*
 * components/global/cmp_91fffbf7-d065-4044-9d11-d64d1e19ebe2/component.css
 */
#cmp_91fffbf7-d065-4044-9d11-d64d1e19ebe2.footer {
	background-color: #FAFAFA;
	color: #B0B0B0;
	font-family: Lato;
	padding: 10px 0;

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

#cmp_91fffbf7-d065-4044-9d11-d64d1e19ebe2 .footer-social {
	padding: 15px 0;
	text-align: center;
}

#cmp_91fffbf7-d065-4044-9d11-d64d1e19ebe2 .footer-social a {
	display: inline-block;
	padding: 0 5px;
}

#cmp_91fffbf7-d065-4044-9d11-d64d1e19ebe2 .footer-social svg path {
	fill: rgb(35, 190, 190);
}

#cmp_91fffbf7-d065-4044-9d11-d64d1e19ebe2 .footer-social a:hover svg path,
#cmp_91fffbf7-d065-4044-9d11-d64d1e19ebe2 .footer-social a:focus svg path,
#cmp_91fffbf7-d065-4044-9d11-d64d1e19ebe2 .footer-social a:active svg path {
	fill: rgb(155, 155, 155);
}

#cmp_91fffbf7-d065-4044-9d11-d64d1e19ebe2.footer .toggler-container {
	padding: 15px 0;
	text-align: center;
}

#cmp_91fffbf7-d065-4044-9d11-d64d1e19ebe2.footer .navbar-toggler {
	color: #3BB44A;
	font-size: 13px;
	letter-spacing: 0.077em;
	text-transform: uppercase;
}

#cmp_91fffbf7-d065-4044-9d11-d64d1e19ebe2 .footer-cc {
	border-top: 1px solid #e1e1e1;
	letter-spacing: 1px;
	text-align: center;
}

#cmp_91fffbf7-d065-4044-9d11-d64d1e19ebe2 .footer-cc img {
	padding: 15px 0;
}

#cmp_91fffbf7-d065-4044-9d11-d64d1e19ebe2 .footer-cc p,
#cmp_91fffbf7-d065-4044-9d11-d64d1e19ebe2 .footer-tributes p {
	margin: 0;
	padding: 15px 0;
}

#cmp_91fffbf7-d065-4044-9d11-d64d1e19ebe2 .footer-tributes p a {
	color: #B0B0B0;
	padding: 0;
}

#cmp_91fffbf7-d065-4044-9d11-d64d1e19ebe2 .footer-tributes p a:hover,
#cmp_91fffbf7-d065-4044-9d11-d64d1e19ebe2 .footer-tributes p a:focus,
#cmp_91fffbf7-d065-4044-9d11-d64d1e19ebe2 .footer-tributes p a:active {
	color: #B0B0B0;
	text-decoration: none;
}

#cmp_91fffbf7-d065-4044-9d11-d64d1e19ebe2 .footer-directory {
	text-align: center;
}

#cmp_91fffbf7-d065-4044-9d11-d64d1e19ebe2 .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_91fffbf7-d065-4044-9d11-d64d1e19ebe2 .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_91fffbf7-d065-4044-9d11-d64d1e19ebe2 .footer-list .footer-link {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 13px;
	letter-spacing: 0.077em;
	text-transform: uppercase;
}

#cmp_91fffbf7-d065-4044-9d11-d64d1e19ebe2 .footer-list .footer-link:hover,
#cmp_91fffbf7-d065-4044-9d11-d64d1e19ebe2 .footer-list .footer-link:focus,
#cmp_91fffbf7-d065-4044-9d11-d64d1e19ebe2 .footer-list .footer-link:active {
	color: #3BB44A;
	text-decoration: none;
}

@media (max-width: 767px) {
	#cmp_91fffbf7-d065-4044-9d11-d64d1e19ebe2 .col-sm-12,
	#cmp_91fffbf7-d065-4044-9d11-d64d1e19ebe2 .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_91fffbf7-d065-4044-9d11-d64d1e19ebe2.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: 25px 0;
	}
	#cmp_91fffbf7-d065-4044-9d11-d64d1e19ebe2 .footer-directory {
		-webkit-order: 1;
		-moz-order: 1;
		-ms-order: 1;
		order: 1;

		text-align: left;
	}
	#cmp_91fffbf7-d065-4044-9d11-d64d1e19ebe2 .footer-social {
		-webkit-order: 2;
		-moz-order: 2;
		-ms-order: 2;
		order: 2;

		padding: 0 15px;
		text-align: right;
	}
	#cmp_91fffbf7-d065-4044-9d11-d64d1e19ebe2 .footer-cc {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}
	#cmp_91fffbf7-d065-4044-9d11-d64d1e19ebe2 .footer-cc p {
		display: inline-block;
	}
}

@media (min-width: 992px) {
	#cmp_91fffbf7-d065-4044-9d11-d64d1e19ebe2 .footer-cc {
		-webkit-order: 2;
		-moz-order: 2;
		-ms-order: 2;
		order: 2;

		border-top: none;
	}
	#cmp_91fffbf7-d065-4044-9d11-d64d1e19ebe2 .footer-cc p {
		display: block;
	}
	#cmp_91fffbf7-d065-4044-9d11-d64d1e19ebe2 .footer-social {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}
}

/*
 * components/global/cmp_ffe2ef5c-b0d2-446a-a881-9ca456f97cda/component.css
 */
#cmp_ffe2ef5c-b0d2-446a-a881-9ca456f97cda {
	background-color: rgb(255, 255, 255);
}

#cmp_ffe2ef5c-b0d2-446a-a881-9ca456f97cda h1 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_ffe2ef5c-b0d2-446a-a881-9ca456f97cda h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_ffe2ef5c-b0d2-446a-a881-9ca456f97cda h3 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_ffe2ef5c-b0d2-446a-a881-9ca456f97cda p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_ffe2ef5c-b0d2-446a-a881-9ca456f97cda .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_ffe2ef5c-b0d2-446a-a881-9ca456f97cda .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_ffe2ef5c-b0d2-446a-a881-9ca456f97cda .btn {
	background-color: #3BB44A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_ffe2ef5c-b0d2-446a-a881-9ca456f97cda .btn:hover {
	background-color: rgb(155, 155, 155);
	color: #FFFFFF;
}

#cmp_ffe2ef5c-b0d2-446a-a881-9ca456f97cda ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_ffe2ef5c-b0d2-446a-a881-9ca456f97cda ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_ffe2ef5c-b0d2-446a-a881-9ca456f97cda  {
	padding-top: 0;
}
/*
 * components/index/cmp_0306c579-8bcf-4c4c-91da-6507ecddf53f/component.css
 */
#cmp_0306c579-8bcf-4c4c-91da-6507ecddf53f {
	padding: 0;
}

#cmp_0306c579-8bcf-4c4c-91da-6507ecddf53f .hero-content {
	background-color: rgba(155, 155, 155, 0.42);
	padding: 20px;
}

#cmp_0306c579-8bcf-4c4c-91da-6507ecddf53f .hero-content h1 {
	color: #3BB44A;
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_0306c579-8bcf-4c4c-91da-6507ecddf53f .hero-content h2 {
	color: #FFFFFF;
	font-family: Montserrat;
	font-size: 26px;
}

#cmp_0306c579-8bcf-4c4c-91da-6507ecddf53f .hero-content h3 {
	color: #FFFFFF;
	font-family: Montserrat;
	font-size: 16px;
}

#cmp_0306c579-8bcf-4c4c-91da-6507ecddf53f .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_0306c579-8bcf-4c4c-91da-6507ecddf53f .hero-content .btn {
	background-color: #3BB44A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_0306c579-8bcf-4c4c-91da-6507ecddf53f .hero-content .btn:hover {
	background-color: rgb(155, 155, 155);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_0306c579-8bcf-4c4c-91da-6507ecddf53f .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_0306c579-8bcf-4c4c-91da-6507ecddf53f .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_0306c579-8bcf-4c4c-91da-6507ecddf53f .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_0306c579-8bcf-4c4c-91da-6507ecddf53f .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_0306c579-8bcf-4c4c-91da-6507ecddf53f .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_0306c579-8bcf-4c4c-91da-6507ecddf53f .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_0306c579-8bcf-4c4c-91da-6507ecddf53f .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/index/cmp_0fe6bedc-3cb0-407f-a771-48cce531dab8/component.css
 */
#cmp_0fe6bedc-3cb0-407f-a771-48cce531dab8 {
	background-color: #FAFAFA;
}

#cmp_0fe6bedc-3cb0-407f-a771-48cce531dab8 .content {
	margin: 10px auto;
	max-width: 250px;
}

#cmp_0fe6bedc-3cb0-407f-a771-48cce531dab8 .content .propositions-title {
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;

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

#cmp_0fe6bedc-3cb0-407f-a771-48cce531dab8 .content .propositions-title h3 {
	margin: 0;
}

#cmp_0fe6bedc-3cb0-407f-a771-48cce531dab8 .content .propositions-image {
	background-repeat: no-repeat;
	background-size: contain !important;
	height: 40px;
	margin: 15px;
	width: 40px;
}

#cmp_0fe6bedc-3cb0-407f-a771-48cce531dab8 h1 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 34px;
}

#cmp_0fe6bedc-3cb0-407f-a771-48cce531dab8 h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
}

#cmp_0fe6bedc-3cb0-407f-a771-48cce531dab8 h3 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 16px;
}

#cmp_0fe6bedc-3cb0-407f-a771-48cce531dab8 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/index/cmp_112564b4-47c3-4efa-98f0-ad2615060b09/component.css
 */
#cmp_112564b4-47c3-4efa-98f0-ad2615060b09 {
	padding: 0;
}

#cmp_112564b4-47c3-4efa-98f0-ad2615060b09 .hero-content {
	background-color: #E5E9EE;
	padding: 20px;
}

#cmp_112564b4-47c3-4efa-98f0-ad2615060b09 .hero-content h1 {
	color: rgb(0, 0, 0);
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 15px 0;
}

#cmp_112564b4-47c3-4efa-98f0-ad2615060b09 .hero-content h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 15px 0;
}

#cmp_112564b4-47c3-4efa-98f0-ad2615060b09 .hero-content h3 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 15px 0;
}

#cmp_112564b4-47c3-4efa-98f0-ad2615060b09 .hero-content p {
	color: #49494A;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 15px 0;
}

#cmp_112564b4-47c3-4efa-98f0-ad2615060b09 .hero-content .button-container {
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
}

#cmp_112564b4-47c3-4efa-98f0-ad2615060b09 .hero-content .btn {
	margin: 3px;
	padding: 15px;
	width: 40%;
}

#cmp_112564b4-47c3-4efa-98f0-ad2615060b09 .hero-content .btn-primary {
	background-color: #3BB44A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_112564b4-47c3-4efa-98f0-ad2615060b09 .hero-content .btn-primary:hover {
	background-color: rgb(155, 155, 155);
	color: #FFFFFF;
}

#cmp_112564b4-47c3-4efa-98f0-ad2615060b09 .hero-content .btn-secondary {
	background-color: rgb(0, 0, 0);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_112564b4-47c3-4efa-98f0-ad2615060b09 .hero-content .btn-secondary:hover {
	background-color: rgb(155, 155, 155);
	color: #FFFFFF;
}

#cmp_112564b4-47c3-4efa-98f0-ad2615060b09 p {
	margin: 0 0 25px 0;
}
/*
 * components/index/cmp_433a76f1-dd7c-4902-bf86-a6cce7dd5a5e/component.css
 */
#cmp_433a76f1-dd7c-4902-bf86-a6cce7dd5a5e {
	padding: 0;
}

#cmp_433a76f1-dd7c-4902-bf86-a6cce7dd5a5e .hero-content {
	background-color: rgb(0, 0, 0);
	padding: 20px;
}

#cmp_433a76f1-dd7c-4902-bf86-a6cce7dd5a5e .hero-content h1 {
	color: #3BB44A;
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_433a76f1-dd7c-4902-bf86-a6cce7dd5a5e .hero-content h2 {
	color: #FFFFFF;
	font-family: Montserrat;
	font-size: 26px;
}

#cmp_433a76f1-dd7c-4902-bf86-a6cce7dd5a5e .hero-content h3 {
	color: #FFFFFF;
	font-family: Montserrat;
	font-size: 16px;
}

#cmp_433a76f1-dd7c-4902-bf86-a6cce7dd5a5e .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_433a76f1-dd7c-4902-bf86-a6cce7dd5a5e .hero-content .btn {
	background-color: #3BB44A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_433a76f1-dd7c-4902-bf86-a6cce7dd5a5e .hero-content .btn:hover {
	background-color: rgb(155, 155, 155);
	color: #FFFFFF;
}


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

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

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

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

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

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

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

/*
 * components/index/cmp_507eef85-cf3d-458a-af5f-af8c7990e152/component.css
 */
#cmp_507eef85-cf3d-458a-af5f-af8c7990e152 {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	background-color: #FAFAFA;
}

#cmp_507eef85-cf3d-458a-af5f-af8c7990e152 .content {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	margin: 0 auto;
	padding: 25px;
}

#cmp_507eef85-cf3d-458a-af5f-af8c7990e152 .square-image {
	height: 225px;
	margin: 0 0 15px 0;
	width: 225px;
}

#cmp_507eef85-cf3d-458a-af5f-af8c7990e152 h1 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 34px;
}

#cmp_507eef85-cf3d-458a-af5f-af8c7990e152 h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
}

#cmp_507eef85-cf3d-458a-af5f-af8c7990e152 h3 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 16px;
}

#cmp_507eef85-cf3d-458a-af5f-af8c7990e152 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/index/cmp_5a9a48d4-e993-4152-8e98-19c2c1f8b2da/component.css
 */
#cmp_5a9a48d4-e993-4152-8e98-19c2c1f8b2da {
	padding: 0;
}

#cmp_5a9a48d4-e993-4152-8e98-19c2c1f8b2da .hero-content {
	background-color: #FFFFFF;
	padding: 20px;
}

#cmp_5a9a48d4-e993-4152-8e98-19c2c1f8b2da .hero-content h1 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 15px 0;
}

#cmp_5a9a48d4-e993-4152-8e98-19c2c1f8b2da .hero-content h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 15px 0;
}

#cmp_5a9a48d4-e993-4152-8e98-19c2c1f8b2da .hero-content h3 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 15px 0;
}

#cmp_5a9a48d4-e993-4152-8e98-19c2c1f8b2da .hero-content p {
	color: #49494A;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 15px 0;
}

#cmp_5a9a48d4-e993-4152-8e98-19c2c1f8b2da .hero-content .btn {
	background-color: #3BB44A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_5a9a48d4-e993-4152-8e98-19c2c1f8b2da .hero-content .btn:hover {
	background-color: rgb(155, 155, 155);
	color: #FFFFFF;
}

#cmp_5a9a48d4-e993-4152-8e98-19c2c1f8b2da p {
	margin: 0 0 25px 0;
}
/*
 * components/index/cmp_90a8ad6e-d391-4c73-b169-282cc6c524ae/component.css
 */
#cmp_90a8ad6e-d391-4c73-b169-282cc6c524ae {
	padding: 0;
}

#cmp_90a8ad6e-d391-4c73-b169-282cc6c524ae .hero-content {
	background-color: rgb(244, 244, 252);
	padding: 20px;
}

#cmp_90a8ad6e-d391-4c73-b169-282cc6c524ae .hero-content h1 {
	color: #3BB44A;
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_90a8ad6e-d391-4c73-b169-282cc6c524ae .hero-content h2 {
	color: #FFFFFF;
	font-family: Montserrat;
	font-size: 26px;
}

#cmp_90a8ad6e-d391-4c73-b169-282cc6c524ae .hero-content h3 {
	color: #FFFFFF;
	font-family: Montserrat;
	font-size: 16px;
}

#cmp_90a8ad6e-d391-4c73-b169-282cc6c524ae .hero-content p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 13px;
}

#cmp_90a8ad6e-d391-4c73-b169-282cc6c524ae .hero-content .btn {
	background-color: #3BB44A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_90a8ad6e-d391-4c73-b169-282cc6c524ae .hero-content .btn:hover {
	background-color: rgb(155, 155, 155);
	color: #FFFFFF;
}


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

@media(min-width: 768px) {
	#cmp_90a8ad6e-d391-4c73-b169-282cc6c524ae .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_90a8ad6e-d391-4c73-b169-282cc6c524ae .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_90a8ad6e-d391-4c73-b169-282cc6c524ae .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_90a8ad6e-d391-4c73-b169-282cc6c524ae .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_90a8ad6e-d391-4c73-b169-282cc6c524ae .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_90a8ad6e-d391-4c73-b169-282cc6c524ae .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/index/cmp_a11263dc-2923-4861-8ce5-4d128445157b/component.css
 */
#cmp_a11263dc-2923-4861-8ce5-4d128445157b {
	padding: 0;
}

#cmp_a11263dc-2923-4861-8ce5-4d128445157b .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_a11263dc-2923-4861-8ce5-4d128445157b .hero-content h1 {
	color: #3BB44A;
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_a11263dc-2923-4861-8ce5-4d128445157b .hero-content h2 {
	color: #FFFFFF;
	font-family: Montserrat;
	font-size: 26px;
}

#cmp_a11263dc-2923-4861-8ce5-4d128445157b .hero-content h3 {
	color: #FFFFFF;
	font-family: Montserrat;
	font-size: 16px;
}

#cmp_a11263dc-2923-4861-8ce5-4d128445157b .hero-content p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 13px;
}

#cmp_a11263dc-2923-4861-8ce5-4d128445157b .hero-content .btn {
	background-color: #3BB44A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_a11263dc-2923-4861-8ce5-4d128445157b .hero-content .btn:hover {
	background-color: rgb(155, 155, 155);
	color: #FFFFFF;
}


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

@media(min-width: 768px) {
	#cmp_a11263dc-2923-4861-8ce5-4d128445157b .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_a11263dc-2923-4861-8ce5-4d128445157b .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_a11263dc-2923-4861-8ce5-4d128445157b .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_a11263dc-2923-4861-8ce5-4d128445157b .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_a11263dc-2923-4861-8ce5-4d128445157b .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_a11263dc-2923-4861-8ce5-4d128445157b .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/index/cmp_fa531f54-8fe5-40ba-b6e8-648c3e0a4f19/component.css
 */
#cmp_fa531f54-8fe5-40ba-b6e8-648c3e0a4f19 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_fa531f54-8fe5-40ba-b6e8-648c3e0a4f19 .content {
	padding: 0;
}

#cmp_fa531f54-8fe5-40ba-b6e8-648c3e0a4f19 .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_fa531f54-8fe5-40ba-b6e8-648c3e0a4f19 .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/shop/listing/cmp_47d57e5c-543a-421c-b327-1cdf1fce7df5/component.css
 */
.shop-listing {
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;

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

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

.shop-listing-item {
	color: #B0B0B0;
}

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

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

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

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

.product_paging {
	-webkit-display: flex;
	-ms-display: flex;
	display: flex;
	justify-content: center;

	margin: 20px 0;
}

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

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

.product_page.active a {
	color: black;
}

/*
 * components/shop/listing/cmp_49f62abb-7c4f-4183-838f-1155e677f6c4/component.css
 */
#cmp_49f62abb-7c4f-4183-838f-1155e677f6c4 {
    border-bottom: 1px solid #E1E1E1;
    margin-bottom: 35px;
	padding: 20px 0;

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

#cmp_49f62abb-7c4f-4183-838f-1155e677f6c4 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_ada317dc-e59a-4336-b93f-8ac7888c78bc/component.css
 */
#cmp_ada317dc-e59a-4336-b93f-8ac7888c78bc {
	background-color: #FFFFFF;
}

#cmp_ada317dc-e59a-4336-b93f-8ac7888c78bc h1 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_ada317dc-e59a-4336-b93f-8ac7888c78bc h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_ada317dc-e59a-4336-b93f-8ac7888c78bc h3 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_ada317dc-e59a-4336-b93f-8ac7888c78bc p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_ada317dc-e59a-4336-b93f-8ac7888c78bc ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_ada317dc-e59a-4336-b93f-8ac7888c78bc ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_ada317dc-e59a-4336-b93f-8ac7888c78bc  {
	padding-bottom: 20px;
}
/*
 * components/shop/product/cmp_51d1db2e-2d39-4fbe-a049-2176a53b660c/component.css
 */
#cmp_51d1db2e-2d39-4fbe-a049-2176a53b660c.shop-product-header {
	padding: 50px 0 15px 0;
}

/*
 * components/shop/product/cmp_7fa579c5-4ae0-4d03-9da0-161abeea326f/component.css
 */
#cmp_7fa579c5-4ae0-4d03-9da0-161abeea326f .shop-product__name {
	margin: 0 0 10px 0;
}

#cmp_7fa579c5-4ae0-4d03-9da0-161abeea326f .shop-product__price {
	margin: 0 0 20px 0;
}

#cmp_7fa579c5-4ae0-4d03-9da0-161abeea326f .shop-product select {
	width: auto;
}

#cmp_7fa579c5-4ae0-4d03-9da0-161abeea326f .shop-product__add-to-cart {
	margin: 0 0 20px 0;
}

#cmp_7fa579c5-4ae0-4d03-9da0-161abeea326f .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin: 0 0 40px 0;
}

#cmp_7fa579c5-4ae0-4d03-9da0-161abeea326f .shop-product__review-share-desktop .col-xs-6 {
	padding: 10px 0 0 0;
}

#cmp_7fa579c5-4ae0-4d03-9da0-161abeea326f .shop-product__review-share-desktop .col-xs-6 + .col-xs-6 {
	border-left: 1px solid #E1E1E1;
}

#cmp_7fa579c5-4ae0-4d03-9da0-161abeea326f  {
	padding-top: 0;
}
/*
 * components/sold_out/cmp_8ca37ca3-9847-4322-ab2b-5bc7e1790ca5/component.css
 */
#cmp_8ca37ca3-9847-4322-ab2b-5bc7e1790ca5 {
	background-color: #FFFFFF;
}

#cmp_8ca37ca3-9847-4322-ab2b-5bc7e1790ca5 h1 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_8ca37ca3-9847-4322-ab2b-5bc7e1790ca5 h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_8ca37ca3-9847-4322-ab2b-5bc7e1790ca5 h3 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_8ca37ca3-9847-4322-ab2b-5bc7e1790ca5 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_8ca37ca3-9847-4322-ab2b-5bc7e1790ca5 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_8ca37ca3-9847-4322-ab2b-5bc7e1790ca5 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_8ca37ca3-9847-4322-ab2b-5bc7e1790ca5 .btn {
	background-color: #3BB44A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_8ca37ca3-9847-4322-ab2b-5bc7e1790ca5 .btn:hover {
	background-color: rgb(155, 155, 155);
	color: #FFFFFF;
}

#cmp_8ca37ca3-9847-4322-ab2b-5bc7e1790ca5 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_8ca37ca3-9847-4322-ab2b-5bc7e1790ca5 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_8ca37ca3-9847-4322-ab2b-5bc7e1790ca5  {
	padding-top: 0;
}
/*
 * components/sold_out/cmp_a0e1f23e-6f0d-456f-938e-60c7f01fa3d5/component.css
 */
#cmp_a0e1f23e-6f0d-456f-938e-60c7f01fa3d5 img {
	max-width: 100%;
}

/*
 * components/subscribe/cmp_33472ca1-6e3d-4f6e-9c78-07112b3ac0fe/component.css
 */

/*
 * components/subscribe/cmp_6da71255-3295-4a88-a990-6b8578cd4eae/component.css
 */
#cmp_6da71255-3295-4a88-a990-6b8578cd4eae {
	background-color: #FFFFFF;
}

#cmp_6da71255-3295-4a88-a990-6b8578cd4eae h1 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_6da71255-3295-4a88-a990-6b8578cd4eae h2 {
	color: rgb(208, 2, 27);
	font-family: Josefin Sans;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_6da71255-3295-4a88-a990-6b8578cd4eae h3 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_6da71255-3295-4a88-a990-6b8578cd4eae p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_6da71255-3295-4a88-a990-6b8578cd4eae ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_6da71255-3295-4a88-a990-6b8578cd4eae ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_6da71255-3295-4a88-a990-6b8578cd4eae  {
	padding-bottom: 0;
}
/*
 * 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: 13px;

	color: #FFFFFF;
	background-color: #3BB44A;
}

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

#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: 13px;

	color: #FFFFFF;
	background-color: #3BB44A;
}

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

@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_e35f69a1-f181-456b-9016-6057f52cf6db/component.css
 */
#cmp_e35f69a1-f181-456b-9016-6057f52cf6db {
	padding: 50px 0 15px 0;
}

/*
 * components/subscribe_flow/survey_step/cmp_f3b02fe3-0fd3-4757-8100-0448f72475fb/component.css
 */
.survey:first-of-type {
    padding: 0 0 50px 0;
}
#cmp_f3b02fe3-0fd3-4757-8100-0448f72475fb  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/terms_step/cmp_4602274b-6a65-414d-b30a-091803735af8/component.css
 */
#cmp_4602274b-6a65-414d-b30a-091803735af8 {
	padding: 50px 0 15px 0;
}

/*
 * components/subscribe_flow/terms_step/cmp_96957a55-eecf-4dd1-8345-768b19af55a5/component.css
 */

/*
 * components/subscribe_flow/variant_step/cmp_4b6c5257-7975-48c2-933c-b85db09054c5/component.css
 */

/*
 * components/subscribe_flow/variant_step/cmp_afebb932-7927-4d4a-ac8b-c29c8c6114e9/component.css
 */
#cmp_afebb932-7927-4d4a-ac8b-c29c8c6114e9 {
	padding: 50px 0 15px 0;
}

/*
 * components/the_box_box/cmp_354f8785-79ee-4ca1-90bd-1ce09a4ab43b/component.css
 */
#cmp_354f8785-79ee-4ca1-90bd-1ce09a4ab43b {
	padding: 0;
}

#cmp_354f8785-79ee-4ca1-90bd-1ce09a4ab43b .hero-content {
	background-color: rgb(74, 74, 74);
	padding: 20px;
}

#cmp_354f8785-79ee-4ca1-90bd-1ce09a4ab43b .hero-content h1 {
	color: #3BB44A;
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_354f8785-79ee-4ca1-90bd-1ce09a4ab43b .hero-content h2 {
	color: #FFFFFF;
	font-family: Montserrat;
	font-size: 26px;
}

#cmp_354f8785-79ee-4ca1-90bd-1ce09a4ab43b .hero-content h3 {
	color: #FFFFFF;
	font-family: Montserrat;
	font-size: 16px;
}

#cmp_354f8785-79ee-4ca1-90bd-1ce09a4ab43b .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_354f8785-79ee-4ca1-90bd-1ce09a4ab43b .hero-content .btn {
	background-color: #3BB44A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_354f8785-79ee-4ca1-90bd-1ce09a4ab43b .hero-content .btn:hover {
	background-color: rgb(155, 155, 155);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_354f8785-79ee-4ca1-90bd-1ce09a4ab43b .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_354f8785-79ee-4ca1-90bd-1ce09a4ab43b .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_354f8785-79ee-4ca1-90bd-1ce09a4ab43b .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_354f8785-79ee-4ca1-90bd-1ce09a4ab43b .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_354f8785-79ee-4ca1-90bd-1ce09a4ab43b .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_354f8785-79ee-4ca1-90bd-1ce09a4ab43b .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_354f8785-79ee-4ca1-90bd-1ce09a4ab43b .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/the_box_box/cmp_6873a97f-079e-4fe5-b4d2-61381a51dc99/component.css
 */
#cmp_6873a97f-079e-4fe5-b4d2-61381a51dc99 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_6873a97f-079e-4fe5-b4d2-61381a51dc99 .content {
	padding: 0;
}

#cmp_6873a97f-079e-4fe5-b4d2-61381a51dc99 .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_6873a97f-079e-4fe5-b4d2-61381a51dc99 .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/the_box_box/cmp_b1846591-5439-4ee6-a505-ccbcf550addc/component.css
 */
#cmp_b1846591-5439-4ee6-a505-ccbcf550addc img {
	max-width: 100%;
}

/*
 * components/the_box_box/cmp_b5c34da6-5bf9-48ff-8573-7347b209527a/component.css
 */
#cmp_b5c34da6-5bf9-48ff-8573-7347b209527a {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_b5c34da6-5bf9-48ff-8573-7347b209527a .content {
	padding: 0;
}

#cmp_b5c34da6-5bf9-48ff-8573-7347b209527a .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_b5c34da6-5bf9-48ff-8573-7347b209527a .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/the_box_box/cmp_c9897c98-f93b-440a-8b8c-7d43e3d6d7f7/component.css
 */
#cmp_c9897c98-f93b-440a-8b8c-7d43e3d6d7f7 {
	background-color: rgb(255, 255, 255);
}

#cmp_c9897c98-f93b-440a-8b8c-7d43e3d6d7f7 h1 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_c9897c98-f93b-440a-8b8c-7d43e3d6d7f7 h2 {
	color: rgb(180, 59, 84);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_c9897c98-f93b-440a-8b8c-7d43e3d6d7f7 h3 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_c9897c98-f93b-440a-8b8c-7d43e3d6d7f7 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_c9897c98-f93b-440a-8b8c-7d43e3d6d7f7 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_c9897c98-f93b-440a-8b8c-7d43e3d6d7f7 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_c9897c98-f93b-440a-8b8c-7d43e3d6d7f7 .btn {
	background-color: #3BB44A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_c9897c98-f93b-440a-8b8c-7d43e3d6d7f7 .btn:hover {
	background-color: rgb(155, 155, 155);
	color: #FFFFFF;
}

#cmp_c9897c98-f93b-440a-8b8c-7d43e3d6d7f7 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_c9897c98-f93b-440a-8b8c-7d43e3d6d7f7 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/the_box_box/cmp_d79f8082-0963-4237-8e90-5ce7c632d0f6/component.css
 */
#cmp_d79f8082-0963-4237-8e90-5ce7c632d0f6 {
	background-color: rgb(255, 255, 255);
}

#cmp_d79f8082-0963-4237-8e90-5ce7c632d0f6 h1 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_d79f8082-0963-4237-8e90-5ce7c632d0f6 h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_d79f8082-0963-4237-8e90-5ce7c632d0f6 h3 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_d79f8082-0963-4237-8e90-5ce7c632d0f6 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_d79f8082-0963-4237-8e90-5ce7c632d0f6 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_d79f8082-0963-4237-8e90-5ce7c632d0f6 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/ushas_oasis/cmp_089b290a-8a4d-4d93-b2a5-730e31d8d810/component.css
 */
#cmp_089b290a-8a4d-4d93-b2a5-730e31d8d810 img {
	max-width: 100%;
}

/*
 * components/ushas_oasis/cmp_24ba8bd9-5e13-43c0-9234-f42dec85bd68/component.css
 */
#cmp_24ba8bd9-5e13-43c0-9234-f42dec85bd68 {
	padding: 0;
}

#cmp_24ba8bd9-5e13-43c0-9234-f42dec85bd68 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_24ba8bd9-5e13-43c0-9234-f42dec85bd68 .hero-content h1 {
	color: #3BB44A;
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_24ba8bd9-5e13-43c0-9234-f42dec85bd68 .hero-content h2 {
	color: #FFFFFF;
	font-family: Montserrat;
	font-size: 26px;
}

#cmp_24ba8bd9-5e13-43c0-9234-f42dec85bd68 .hero-content h3 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 16px;
}

#cmp_24ba8bd9-5e13-43c0-9234-f42dec85bd68 .hero-content p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 13px;
}

#cmp_24ba8bd9-5e13-43c0-9234-f42dec85bd68 .hero-content .btn {
	background-color: #3BB44A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_24ba8bd9-5e13-43c0-9234-f42dec85bd68 .hero-content .btn:hover {
	background-color: rgb(155, 155, 155);
	color: #FFFFFF;
}


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

@media(min-width: 768px) {
	#cmp_24ba8bd9-5e13-43c0-9234-f42dec85bd68 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_24ba8bd9-5e13-43c0-9234-f42dec85bd68 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_24ba8bd9-5e13-43c0-9234-f42dec85bd68 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_24ba8bd9-5e13-43c0-9234-f42dec85bd68 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_24ba8bd9-5e13-43c0-9234-f42dec85bd68 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_24ba8bd9-5e13-43c0-9234-f42dec85bd68 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/ushas_oasis/cmp_8de6fb69-50a7-4539-83df-e123c36f0dd0/component.css
 */
#cmp_8de6fb69-50a7-4539-83df-e123c36f0dd0 {
	background-color: rgb(80, 227, 225);
}

#cmp_8de6fb69-50a7-4539-83df-e123c36f0dd0 h1 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_8de6fb69-50a7-4539-83df-e123c36f0dd0 h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_8de6fb69-50a7-4539-83df-e123c36f0dd0 h3 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_8de6fb69-50a7-4539-83df-e123c36f0dd0 p {
	color: #B0B0B0;
	font-family: Montserrat;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_8de6fb69-50a7-4539-83df-e123c36f0dd0 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Montserrat;
	font-size: 13px;
}

#cmp_8de6fb69-50a7-4539-83df-e123c36f0dd0 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Montserrat;
	font-size: 13px;
}

/*
 * components/ushas_oasis/cmp_9e9cba9e-da5c-47e6-9070-bd05eec95101/component.css
 */
#cmp_9e9cba9e-da5c-47e6-9070-bd05eec95101 {
	background-color: #FFFFFF;
}

#cmp_9e9cba9e-da5c-47e6-9070-bd05eec95101 h1 {
	color: rgb(0, 0, 0);
	font-family: Gochi Hand;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_9e9cba9e-da5c-47e6-9070-bd05eec95101 h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_9e9cba9e-da5c-47e6-9070-bd05eec95101 h3 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_9e9cba9e-da5c-47e6-9070-bd05eec95101 p {
	color: rgb(0, 0, 0);
	font-family: Gochi Hand;
	font-size: 14px;
	margin: 0 0 25px 0;
}

#cmp_9e9cba9e-da5c-47e6-9070-bd05eec95101 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_9e9cba9e-da5c-47e6-9070-bd05eec95101 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_9e9cba9e-da5c-47e6-9070-bd05eec95101 .btn {
	background-color: #3BB44A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_9e9cba9e-da5c-47e6-9070-bd05eec95101 .btn:hover {
	background-color: rgb(155, 155, 155);
	color: #FFFFFF;
}

#cmp_9e9cba9e-da5c-47e6-9070-bd05eec95101 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Gochi Hand;
	font-size: 14px;
}

#cmp_9e9cba9e-da5c-47e6-9070-bd05eec95101 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Gochi Hand;
	font-size: 14px;
}

/*
 * components/ushas_oasis/cmp_afee4def-d50c-4e77-8a97-e76e07bdf069/component.css
 */
#cmp_afee4def-d50c-4e77-8a97-e76e07bdf069 {
	padding: 0;
}

#cmp_afee4def-d50c-4e77-8a97-e76e07bdf069 .hero-content {
	background-color: rgb(188, 186, 186);
	padding: 20px;
}

#cmp_afee4def-d50c-4e77-8a97-e76e07bdf069 .hero-content h1 {
	color: #3BB44A;
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_afee4def-d50c-4e77-8a97-e76e07bdf069 .hero-content h2 {
	color: #FFFFFF;
	font-family: Montserrat;
	font-size: 26px;
}

#cmp_afee4def-d50c-4e77-8a97-e76e07bdf069 .hero-content h3 {
	color: #FFFFFF;
	font-family: Montserrat;
	font-size: 16px;
}

#cmp_afee4def-d50c-4e77-8a97-e76e07bdf069 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_afee4def-d50c-4e77-8a97-e76e07bdf069 .hero-content .btn {
	background-color: #3BB44A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_afee4def-d50c-4e77-8a97-e76e07bdf069 .hero-content .btn:hover {
	background-color: rgb(155, 155, 155);
	color: #FFFFFF;
}


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

@media(min-width: 768px) {
	#cmp_afee4def-d50c-4e77-8a97-e76e07bdf069 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_afee4def-d50c-4e77-8a97-e76e07bdf069 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_afee4def-d50c-4e77-8a97-e76e07bdf069 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_afee4def-d50c-4e77-8a97-e76e07bdf069 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_afee4def-d50c-4e77-8a97-e76e07bdf069 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_afee4def-d50c-4e77-8a97-e76e07bdf069 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/view-cart/cmp_67c83641-8ef8-4a22-9903-0ecb11d1ea3a/component.css
 */
#cmp_67c83641-8ef8-4a22-9903-0ecb11d1ea3a {
	padding: 15px 15px 100px 15px;
}

#cmp_67c83641-8ef8-4a22-9903-0ecb11d1ea3a .cart-thead {
	border-bottom: 1px solid #E1E1E1;
	padding: 10px 0;
}

#cmp_67c83641-8ef8-4a22-9903-0ecb11d1ea3a .cart-thead h3 {
	text-transform: uppercase;
}

#cmp_67c83641-8ef8-4a22-9903-0ecb11d1ea3a .cart-item {
	border: 1px solid #E1E1E1;
	padding: 25px 0;
	position: relative;
}

#cmp_67c83641-8ef8-4a22-9903-0ecb11d1ea3a .product-main {
	margin: 0 0 15px 0;
}

#cmp_67c83641-8ef8-4a22-9903-0ecb11d1ea3a .product-label p {
	margin: 0;
}

#cmp_67c83641-8ef8-4a22-9903-0ecb11d1ea3a .product-label .info {
	color: #3BB44A;
	text-align: right;
	text-transform: uppercase;
}

#cmp_67c83641-8ef8-4a22-9903-0ecb11d1ea3a .product-label .meta {
	color: rgb(0, 0, 0);
	font-size: 16px;
}

#cmp_67c83641-8ef8-4a22-9903-0ecb11d1ea3a .product-rem-btn {
	position: absolute;
	right: 1%;
	top: 1%;
}

#cmp_67c83641-8ef8-4a22-9903-0ecb11d1ea3a figure {
	margin: 0 0 15px 0;
}

#cmp_67c83641-8ef8-4a22-9903-0ecb11d1ea3a .cart-subtotal {
	margin: 50px 0 0 0;
}

#cmp_67c83641-8ef8-4a22-9903-0ecb11d1ea3a .cart-subtotal h2 {
	margin: 0 0 15px 0;
}

#cmp_67c83641-8ef8-4a22-9903-0ecb11d1ea3a .cart-subtotal h3 {
	margin: 0 0 25px 0;
	text-transform: uppercase;
}

#cmp_67c83641-8ef8-4a22-9903-0ecb11d1ea3a .cart-subtotal p {
	margin: 0 0 25px 0;
}

@media (min-width: 768px) {
	#cmp_67c83641-8ef8-4a22-9903-0ecb11d1ea3a .cart-item {
		border-width: 0 0 1px 0;
	}
	#cmp_67c83641-8ef8-4a22-9903-0ecb11d1ea3a .product-rem-btn {
		top: 40%;
	}
	#cmp_67c83641-8ef8-4a22-9903-0ecb11d1ea3a figure {
		margin: 0;
	}
}

/*
 * components/view-cart/cmp_f00198a3-7e57-473a-a37b-21c88afef175/component.css
 */
#cmp_f00198a3-7e57-473a-a37b-21c88afef175 {
	background-color: #FFFFFF;
}

#cmp_f00198a3-7e57-473a-a37b-21c88afef175 h1 {
	color: rgb(0, 0, 0);
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 25px 0;
}

#cmp_f00198a3-7e57-473a-a37b-21c88afef175 h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_f00198a3-7e57-473a-a37b-21c88afef175 h3 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_f00198a3-7e57-473a-a37b-21c88afef175 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_f00198a3-7e57-473a-a37b-21c88afef175 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_f00198a3-7e57-473a-a37b-21c88afef175 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}