/*
 * css/style.css
 */
/* Globals
------------------------------*/
body {
	background-color: #EEEEEE;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
	line-height: 1.5em;
}

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

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

h2 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 26px;
}

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

p {
	line-height: 1.5em;
}

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

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

/* 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: rgb(50, 205, 50);
}

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

.btn-small:hover,
.btn-small:focus,
.btn-small:active,
.btn-small:active:focus {
	background-color: rgb(50, 205, 50);
	border-color: rgb(50, 205, 50);
	color: #FFFFFF !important;
}

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

.btn-primary {
	background-color: rgb(50, 205, 50);
	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(1, 183, 226);
	color: #FFFFFF;
}

.btn-secondary {
	background-color: rgb(205, 50, 205);
	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(1, 183, 226);
	color: #FFFFFF;
}

.btn-empty {
	background-color: transparent;
	border: 1px solid rgb(50, 205, 50);
	color: rgb(50, 205, 50);
}

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

/* 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;
}

/* 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(50, 205, 50);
	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(1, 183, 226);
	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: rgb(50, 205, 50);
}

.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(50, 205, 50);
	color: rgb(50, 205, 50);
	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(1, 183, 226);
	border-color: rgb(1, 183, 226);
	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_1b386a23-fd2a-4d3b-a4bf-a00e77533a7b/component.css
 */
#cmp_1b386a23-fd2a-4d3b-a4bf-a00e77533a7b {
	padding: 0;
}

#cmp_1b386a23-fd2a-4d3b-a4bf-a00e77533a7b .hero-content {
	background-color: #FFFFFF;
	padding: 20px;
}

#cmp_1b386a23-fd2a-4d3b-a4bf-a00e77533a7b .hero-content h1 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 15px 0;
}

#cmp_1b386a23-fd2a-4d3b-a4bf-a00e77533a7b .hero-content h2 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 15px 0;
}

#cmp_1b386a23-fd2a-4d3b-a4bf-a00e77533a7b .hero-content h3 {
	color: rgb(205, 50, 205);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 15px 0;
}

#cmp_1b386a23-fd2a-4d3b-a4bf-a00e77533a7b .hero-content p {
	color: #49494A;
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 15px 0;
}

#cmp_1b386a23-fd2a-4d3b-a4bf-a00e77533a7b .hero-content .btn {
	background-color: rgb(50, 205, 50);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_1b386a23-fd2a-4d3b-a4bf-a00e77533a7b .hero-content .btn:hover {
	background-color: rgb(1, 183, 226);
	color: #FFFFFF;
}

/*
 * components/about/cmp_363b3867-7d71-4cee-9b6f-c39b700be27e/component.css
 */
#cmp_363b3867-7d71-4cee-9b6f-c39b700be27e {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	background-color: #FFFFFF;
}

#cmp_363b3867-7d71-4cee-9b6f-c39b700be27e .content {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	margin: 0 auto;
	padding: 25px;
}

#cmp_363b3867-7d71-4cee-9b6f-c39b700be27e .square-image {
	height: 225px;
	margin: 0 0 15px 0;
	width: 225px;
}

#cmp_363b3867-7d71-4cee-9b6f-c39b700be27e h1 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 34px;
}

#cmp_363b3867-7d71-4cee-9b6f-c39b700be27e h2 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 26px;
}

#cmp_363b3867-7d71-4cee-9b6f-c39b700be27e h3 {
	color: rgb(205, 50, 205);
	font-family: Montserrat;
	font-size: 16px;
}

#cmp_363b3867-7d71-4cee-9b6f-c39b700be27e p {
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/about/cmp_66d3985f-c50f-4342-9f68-734c17663313/component.css
 */
#cmp_66d3985f-c50f-4342-9f68-734c17663313 {
	background-color: #FFFFFF;
}

#cmp_66d3985f-c50f-4342-9f68-734c17663313 h1 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_66d3985f-c50f-4342-9f68-734c17663313 h2 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_66d3985f-c50f-4342-9f68-734c17663313 h3 {
	color: rgb(205, 50, 205);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_66d3985f-c50f-4342-9f68-734c17663313 p {
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_66d3985f-c50f-4342-9f68-734c17663313 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_66d3985f-c50f-4342-9f68-734c17663313 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_66d3985f-c50f-4342-9f68-734c17663313 .btn {
	background-color: rgb(50, 205, 50);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_66d3985f-c50f-4342-9f68-734c17663313 .btn:hover {
	background-color: rgb(1, 183, 226);
	color: #FFFFFF;
}

#cmp_66d3985f-c50f-4342-9f68-734c17663313 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

#cmp_66d3985f-c50f-4342-9f68-734c17663313 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/about/cmp_69645f3b-c3a6-458a-b594-5a31358d7147/component.css
 */
#cmp_69645f3b-c3a6-458a-b594-5a31358d7147 {
	background-color: #FFFFFF;
}

#cmp_69645f3b-c3a6-458a-b594-5a31358d7147 h1 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_69645f3b-c3a6-458a-b594-5a31358d7147 h2 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_69645f3b-c3a6-458a-b594-5a31358d7147 h3 {
	color: rgb(205, 50, 205);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_69645f3b-c3a6-458a-b594-5a31358d7147 p {
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_69645f3b-c3a6-458a-b594-5a31358d7147 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

#cmp_69645f3b-c3a6-458a-b594-5a31358d7147 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/about/cmp_a96c8dc2-90e0-45ee-8808-8230b49c2c4c/component.css
 */
#cmp_a96c8dc2-90e0-45ee-8808-8230b49c2c4c {
	background-color: #FFFFFF;
}

#cmp_a96c8dc2-90e0-45ee-8808-8230b49c2c4c h1 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_a96c8dc2-90e0-45ee-8808-8230b49c2c4c h2 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_a96c8dc2-90e0-45ee-8808-8230b49c2c4c h3 {
	color: rgb(205, 50, 205);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_a96c8dc2-90e0-45ee-8808-8230b49c2c4c p {
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_a96c8dc2-90e0-45ee-8808-8230b49c2c4c ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

#cmp_a96c8dc2-90e0-45ee-8808-8230b49c2c4c ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/about/cmp_f1b08e07-5ade-4c04-9978-e7c3a7dd0d8b/component.css
 */
#cmp_f1b08e07-5ade-4c04-9978-e7c3a7dd0d8b {
	padding: 0;
	background-color: #FFFFFF;
}

#cmp_f1b08e07-5ade-4c04-9978-e7c3a7dd0d8b .content {
	margin: 0 auto;
	padding: 25px;
}

@media (min-width: 768px) {
	#cmp_f1b08e07-5ade-4c04-9978-e7c3a7dd0d8b .col-md-6:nth-of-type(2n + 1) {
		order: 1;
	}
	#cmp_f1b08e07-5ade-4c04-9978-e7c3a7dd0d8b .col-md-6:nth-of-type(2n) {
		order: 2;
	}
}

#cmp_f1b08e07-5ade-4c04-9978-e7c3a7dd0d8b h1 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 34px;
}

#cmp_f1b08e07-5ade-4c04-9978-e7c3a7dd0d8b h2 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 26px;
}

#cmp_f1b08e07-5ade-4c04-9978-e7c3a7dd0d8b h3 {
	color: rgb(205, 50, 205);
	font-family: Montserrat;
	font-size: 16px;
}

#cmp_f1b08e07-5ade-4c04-9978-e7c3a7dd0d8b p {
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/about_us/cmp_39806d2f-e4d2-47d8-9e28-4b7937b4ea94/component.css
 */
#cmp_39806d2f-e4d2-47d8-9e28-4b7937b4ea94 {
	background-color: #FFFFFF;
}

#cmp_39806d2f-e4d2-47d8-9e28-4b7937b4ea94 h1 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_39806d2f-e4d2-47d8-9e28-4b7937b4ea94 h2 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_39806d2f-e4d2-47d8-9e28-4b7937b4ea94 h3 {
	color: rgb(205, 50, 205);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_39806d2f-e4d2-47d8-9e28-4b7937b4ea94 p {
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_39806d2f-e4d2-47d8-9e28-4b7937b4ea94 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

#cmp_39806d2f-e4d2-47d8-9e28-4b7937b4ea94 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/about_us/cmp_aac01e80-0323-4800-9342-c7b6bb7b545b/component.css
 */
#cmp_aac01e80-0323-4800-9342-c7b6bb7b545b {
	background-color: #FFFFFF;
}

#cmp_aac01e80-0323-4800-9342-c7b6bb7b545b h1 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_aac01e80-0323-4800-9342-c7b6bb7b545b h2 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_aac01e80-0323-4800-9342-c7b6bb7b545b h3 {
	color: rgb(205, 50, 205);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_aac01e80-0323-4800-9342-c7b6bb7b545b p {
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_aac01e80-0323-4800-9342-c7b6bb7b545b .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_aac01e80-0323-4800-9342-c7b6bb7b545b .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_aac01e80-0323-4800-9342-c7b6bb7b545b .btn {
	background-color: rgb(50, 205, 50);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_aac01e80-0323-4800-9342-c7b6bb7b545b .btn:hover {
	background-color: rgb(1, 183, 226);
	color: #FFFFFF;
}

#cmp_aac01e80-0323-4800-9342-c7b6bb7b545b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

#cmp_aac01e80-0323-4800-9342-c7b6bb7b545b ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/about_us/cmp_ea55f53f-381c-4b5d-86aa-863a29846744/component.css
 */
#cmp_ea55f53f-381c-4b5d-86aa-863a29846744 img {
	max-width: 100%;
}

/*
 * components/checkout/cmp_39136d58-0bd1-4970-8f26-a7d438e2593e/component.css
 */
#cmp_39136d58-0bd1-4970-8f26-a7d438e2593e {
	background-color: #FFFFFF;
}

#cmp_39136d58-0bd1-4970-8f26-a7d438e2593e h1 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_39136d58-0bd1-4970-8f26-a7d438e2593e h2 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_39136d58-0bd1-4970-8f26-a7d438e2593e h3 {
	color: rgb(205, 50, 205);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_39136d58-0bd1-4970-8f26-a7d438e2593e p {
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_39136d58-0bd1-4970-8f26-a7d438e2593e ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

#cmp_39136d58-0bd1-4970-8f26-a7d438e2593e ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/checkout/cmp_a76697f6-ac2a-4116-a138-dd0f5830d228/component.css
 */
#cmp_a76697f6-ac2a-4116-a138-dd0f5830d228 .checkout_content {
  overflow: auto;
}

#cmp_a76697f6-ac2a-4116-a138-dd0f5830d228 .checkout_content section {
  border-color: #F5F5F5;
}

#cmp_a76697f6-ac2a-4116-a138-dd0f5830d228 .cart_listing table {
  border-color: #F5F5F5;
}

#cmp_a76697f6-ac2a-4116-a138-dd0f5830d228  {
	padding-top: 0;
}
/*
 * components/customer/account/cmp_87590684-9b3e-4788-8947-34c0dc04e4a6/component.css
 */

/*
 * components/customer/edit/cmp_c13e73c9-a0b6-421d-ae35-05ed7678d4d6/component.css
 */

/*
 * components/customer/forgot_password/cmp_0b4497a0-6cec-49bd-abde-5402dcac05b7/component.css
 */
#cmp_0b4497a0-6cec-49bd-abde-5402dcac05b7 {
	background-color: #FFFFFF;
}

#cmp_0b4497a0-6cec-49bd-abde-5402dcac05b7 h1 {
	color: rgb(50, 205, 50);
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 25px 0;
}

#cmp_0b4497a0-6cec-49bd-abde-5402dcac05b7 h2 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_0b4497a0-6cec-49bd-abde-5402dcac05b7 h3 {
	color: rgb(205, 50, 205);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_0b4497a0-6cec-49bd-abde-5402dcac05b7 p {
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_0b4497a0-6cec-49bd-abde-5402dcac05b7 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

#cmp_0b4497a0-6cec-49bd-abde-5402dcac05b7 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/customer/forgot_password/cmp_97fb25ea-e732-453e-86db-06a57f4c6dca/component.css
 */
#cmp_97fb25ea-e732-453e-86db-06a57f4c6dca {
    padding:  0 0 120px 0;
}
/*
 * components/customer/login/cmp_84e63de3-c48f-4fb9-a6a6-13c2f9c0205f/component.css
 */
#cmp_84e63de3-c48f-4fb9-a6a6-13c2f9c0205f {
    padding:  0 0 120px 0;
}
/*
 * components/customer/login/cmp_f125a119-62e1-405d-9028-28c35a488d72/component.css
 */
#cmp_f125a119-62e1-405d-9028-28c35a488d72 {
	background-color: #FFFFFF;
}

#cmp_f125a119-62e1-405d-9028-28c35a488d72 h1 {
	color: rgb(50, 205, 50);
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 25px 0;
}

#cmp_f125a119-62e1-405d-9028-28c35a488d72 h2 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_f125a119-62e1-405d-9028-28c35a488d72 h3 {
	color: rgb(205, 50, 205);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_f125a119-62e1-405d-9028-28c35a488d72 p {
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_f125a119-62e1-405d-9028-28c35a488d72 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

#cmp_f125a119-62e1-405d-9028-28c35a488d72 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/customer/order/cmp_10693842-2744-4a7b-9286-4cf12a55ad76/component.css
 */

/*
 * components/customer/password_reset/cmp_75f8163c-0925-41ce-aa47-74ee6fea44f2/component.css
 */
#cmp_75f8163c-0925-41ce-aa47-74ee6fea44f2 {
	background-color: #FFFFFF;
}

#cmp_75f8163c-0925-41ce-aa47-74ee6fea44f2 h1 {
	color: rgb(50, 205, 50);
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 25px 0;
}

#cmp_75f8163c-0925-41ce-aa47-74ee6fea44f2 h2 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_75f8163c-0925-41ce-aa47-74ee6fea44f2 h3 {
	color: rgb(205, 50, 205);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_75f8163c-0925-41ce-aa47-74ee6fea44f2 p {
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_75f8163c-0925-41ce-aa47-74ee6fea44f2 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

#cmp_75f8163c-0925-41ce-aa47-74ee6fea44f2 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/customer/password_reset/cmp_8f0e82ce-6a2f-4c17-aa1f-1a553ffa36cc/component.css
 */
#cmp_8f0e82ce-6a2f-4c17-aa1f-1a553ffa36cc {
    padding:  0 0 120px 0;
}
/*
 * components/customer/thank_you/cmp_0178bc2b-96a8-45c9-b630-26007dc19ad5/component.css
 */

/*
 * components/diabetes_management/cmp_355f6e1a-35c4-4782-929f-cb4bdd982dac/component.css
 */
#cmp_355f6e1a-35c4-4782-929f-cb4bdd982dac img {
	max-width: 100%;
}

/*
 * components/diabetes_management/cmp_593b8598-bc6a-4d9d-ae92-0c87be7510b0/component.css
 */
#cmp_593b8598-bc6a-4d9d-ae92-0c87be7510b0 {
	background-color: #FFFFFF;
}

#cmp_593b8598-bc6a-4d9d-ae92-0c87be7510b0 h1 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_593b8598-bc6a-4d9d-ae92-0c87be7510b0 h2 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_593b8598-bc6a-4d9d-ae92-0c87be7510b0 h3 {
	color: rgb(205, 50, 205);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_593b8598-bc6a-4d9d-ae92-0c87be7510b0 p {
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_593b8598-bc6a-4d9d-ae92-0c87be7510b0 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

#cmp_593b8598-bc6a-4d9d-ae92-0c87be7510b0 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/diabetes_management/cmp_d9f41d80-42ef-49f3-870f-a1ba6960f595/component.css
 */
#cmp_d9f41d80-42ef-49f3-870f-a1ba6960f595 {
	background-color: #FFFFFF;
}

#cmp_d9f41d80-42ef-49f3-870f-a1ba6960f595 h1 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_d9f41d80-42ef-49f3-870f-a1ba6960f595 h2 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_d9f41d80-42ef-49f3-870f-a1ba6960f595 h3 {
	color: rgb(205, 50, 205);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_d9f41d80-42ef-49f3-870f-a1ba6960f595 p {
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_d9f41d80-42ef-49f3-870f-a1ba6960f595 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_d9f41d80-42ef-49f3-870f-a1ba6960f595 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_d9f41d80-42ef-49f3-870f-a1ba6960f595 .btn {
	background-color: rgb(50, 205, 50);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_d9f41d80-42ef-49f3-870f-a1ba6960f595 .btn:hover {
	background-color: rgb(1, 183, 226);
	color: #FFFFFF;
}

#cmp_d9f41d80-42ef-49f3-870f-a1ba6960f595 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

#cmp_d9f41d80-42ef-49f3-870f-a1ba6960f595 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/faq/cmp_764628d2-50b4-4c5b-a8ca-b5235f9b69da/component.css
 */
#cmp_764628d2-50b4-4c5b-a8ca-b5235f9b69da {
	background-color: rgb(255, 255, 255);
}

#cmp_764628d2-50b4-4c5b-a8ca-b5235f9b69da h1 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_764628d2-50b4-4c5b-a8ca-b5235f9b69da h2 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_764628d2-50b4-4c5b-a8ca-b5235f9b69da h3 {
	color: rgb(205, 50, 205);
	font-family: Montserrat;
	font-size: 24px;
	margin: 0 0 25px 0;
}

#cmp_764628d2-50b4-4c5b-a8ca-b5235f9b69da p {
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_764628d2-50b4-4c5b-a8ca-b5235f9b69da ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

#cmp_764628d2-50b4-4c5b-a8ca-b5235f9b69da ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/faq/cmp_e213b693-c127-480b-aaae-55ad1b6ff078/component.css
 */
#cmp_e213b693-c127-480b-aaae-55ad1b6ff078 {
	background-color: #FFFFFF;
}

#cmp_e213b693-c127-480b-aaae-55ad1b6ff078 h1 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_e213b693-c127-480b-aaae-55ad1b6ff078 h2 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_e213b693-c127-480b-aaae-55ad1b6ff078 h3 {
	color: rgb(205, 50, 205);
	font-family: Montserrat;
	font-size: 24px;
	margin: 0 0 25px 0;
}

#cmp_e213b693-c127-480b-aaae-55ad1b6ff078 p {
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 4px;
	margin: 0 0 25px 0;
}

#cmp_e213b693-c127-480b-aaae-55ad1b6ff078 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_e213b693-c127-480b-aaae-55ad1b6ff078 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_e213b693-c127-480b-aaae-55ad1b6ff078 .btn {
	background-color: rgb(50, 205, 50);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_e213b693-c127-480b-aaae-55ad1b6ff078 .btn:hover {
	background-color: rgb(1, 183, 226);
	color: #FFFFFF;
}

#cmp_e213b693-c127-480b-aaae-55ad1b6ff078 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 4px;
}

#cmp_e213b693-c127-480b-aaae-55ad1b6ff078 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 4px;
}

/*
 * components/global/cmp_041bf1cb-e112-48fd-8750-6732dade0583/component.css
 */
#cmp_041bf1cb-e112-48fd-8750-6732dade0583 {
	background-color: #FFFFFF;
}

#cmp_041bf1cb-e112-48fd-8750-6732dade0583 h1 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_041bf1cb-e112-48fd-8750-6732dade0583 h2 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_041bf1cb-e112-48fd-8750-6732dade0583 h3 {
	color: rgb(205, 50, 205);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_041bf1cb-e112-48fd-8750-6732dade0583 p {
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_041bf1cb-e112-48fd-8750-6732dade0583 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_041bf1cb-e112-48fd-8750-6732dade0583 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_041bf1cb-e112-48fd-8750-6732dade0583 .btn {
	background-color: rgb(50, 205, 50);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_041bf1cb-e112-48fd-8750-6732dade0583 .btn:hover {
	background-color: rgb(1, 183, 226);
	color: #FFFFFF;
}

#cmp_041bf1cb-e112-48fd-8750-6732dade0583 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

#cmp_041bf1cb-e112-48fd-8750-6732dade0583 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

#cmp_041bf1cb-e112-48fd-8750-6732dade0583  {
	padding-top: 0;
}
/*
 * components/global/cmp_22e59ee2-195f-4a0b-9417-fcdff3e380e8/component.css
 */
#cmp_22e59ee2-195f-4a0b-9417-fcdff3e380e8.footer {
	background-color: #FAFAFA;
	color: rgb(74, 74, 74);
	font-family: Lato;
	padding: 10px 0;

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

#cmp_22e59ee2-195f-4a0b-9417-fcdff3e380e8 .footer-social {
	padding: 15px 0;
	text-align: center;
}

#cmp_22e59ee2-195f-4a0b-9417-fcdff3e380e8 .footer-social a {
	display: inline-block;
	padding: 0 5px;
}

#cmp_22e59ee2-195f-4a0b-9417-fcdff3e380e8 .footer-social svg path {
	fill: rgb(205, 50, 205);
}

#cmp_22e59ee2-195f-4a0b-9417-fcdff3e380e8 .footer-social a:hover svg path,
#cmp_22e59ee2-195f-4a0b-9417-fcdff3e380e8 .footer-social a:focus svg path,
#cmp_22e59ee2-195f-4a0b-9417-fcdff3e380e8 .footer-social a:active svg path {
	fill: rgb(1, 183, 226);
}

#cmp_22e59ee2-195f-4a0b-9417-fcdff3e380e8.footer .toggler-container {
	padding: 15px 0;
	text-align: center;
}

#cmp_22e59ee2-195f-4a0b-9417-fcdff3e380e8.footer .navbar-toggler {
	color: rgb(50, 205, 50);
	font-size: 13px;
	letter-spacing: 0.077em;
	text-transform: uppercase;
}

#cmp_22e59ee2-195f-4a0b-9417-fcdff3e380e8 .footer-cc {
	border-top: 1px solid #e1e1e1;
	letter-spacing: 1px;
	text-align: center;
}

#cmp_22e59ee2-195f-4a0b-9417-fcdff3e380e8 .footer-cc img {
	padding: 15px 0;
}

#cmp_22e59ee2-195f-4a0b-9417-fcdff3e380e8 .footer-cc p,
#cmp_22e59ee2-195f-4a0b-9417-fcdff3e380e8 .footer-tributes p {
	margin: 0;
	padding: 15px 0;
}

#cmp_22e59ee2-195f-4a0b-9417-fcdff3e380e8 .footer-tributes p a {
	color: rgb(74, 74, 74);
	padding: 0;
}

#cmp_22e59ee2-195f-4a0b-9417-fcdff3e380e8 .footer-tributes p a:hover,
#cmp_22e59ee2-195f-4a0b-9417-fcdff3e380e8 .footer-tributes p a:focus,
#cmp_22e59ee2-195f-4a0b-9417-fcdff3e380e8 .footer-tributes p a:active {
	color: rgb(74, 74, 74);
	text-decoration: none;
}

#cmp_22e59ee2-195f-4a0b-9417-fcdff3e380e8 .footer-directory {
	text-align: center;
}

#cmp_22e59ee2-195f-4a0b-9417-fcdff3e380e8 .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_22e59ee2-195f-4a0b-9417-fcdff3e380e8 .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_22e59ee2-195f-4a0b-9417-fcdff3e380e8 .footer-list .footer-link {
	color: rgb(205, 50, 205);
	font-family: Lato;
	font-size: 13px;
	letter-spacing: 0.077em;
	text-transform: uppercase;
}

#cmp_22e59ee2-195f-4a0b-9417-fcdff3e380e8 .footer-list .footer-link:hover,
#cmp_22e59ee2-195f-4a0b-9417-fcdff3e380e8 .footer-list .footer-link:focus,
#cmp_22e59ee2-195f-4a0b-9417-fcdff3e380e8 .footer-list .footer-link:active {
	color: rgb(50, 205, 50);
	text-decoration: none;
}

@media (max-width: 767px) {
	#cmp_22e59ee2-195f-4a0b-9417-fcdff3e380e8 .col-sm-12,
	#cmp_22e59ee2-195f-4a0b-9417-fcdff3e380e8 .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_22e59ee2-195f-4a0b-9417-fcdff3e380e8.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_22e59ee2-195f-4a0b-9417-fcdff3e380e8 .footer-directory {
		-webkit-order: 1;
		-moz-order: 1;
		-ms-order: 1;
		order: 1;

		text-align: left;
	}
	#cmp_22e59ee2-195f-4a0b-9417-fcdff3e380e8 .footer-social {
		-webkit-order: 2;
		-moz-order: 2;
		-ms-order: 2;
		order: 2;

		padding: 0 15px;
		text-align: right;
	}
	#cmp_22e59ee2-195f-4a0b-9417-fcdff3e380e8 .footer-cc {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}
	#cmp_22e59ee2-195f-4a0b-9417-fcdff3e380e8 .footer-cc p {
		display: inline-block;
	}
}

@media (min-width: 992px) {
	#cmp_22e59ee2-195f-4a0b-9417-fcdff3e380e8 .footer-cc {
		-webkit-order: 2;
		-moz-order: 2;
		-ms-order: 2;
		order: 2;

		border-top: none;
	}
	#cmp_22e59ee2-195f-4a0b-9417-fcdff3e380e8 .footer-cc p {
		display: block;
	}
	#cmp_22e59ee2-195f-4a0b-9417-fcdff3e380e8 .footer-social {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}
}

/*
 * components/global/cmp_ad3bb329-6294-4016-876b-a2e52e6b50c2/component.css
 */
#cmp_ad3bb329-6294-4016-876b-a2e52e6b50c2.navbar {
	background-color: #FFFFFF;
	border-radius: 0;
	padding: 0;

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

#cmp_ad3bb329-6294-4016-876b-a2e52e6b50c2.navbar a:hover,
#cmp_ad3bb329-6294-4016-876b-a2e52e6b50c2.navbar a:focus,
#cmp_ad3bb329-6294-4016-876b-a2e52e6b50c2.navbar a:active {
	color: rgb(50, 205, 50);
}

#cmp_ad3bb329-6294-4016-876b-a2e52e6b50c2 .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: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 36px;
	letter-spacing: 0.038em;
	margin: 0;
	max-width: 100%;
	padding: 15px;
	text-align: center;
	text-transform: uppercase;
}

#cmp_ad3bb329-6294-4016-876b-a2e52e6b50c2 .navbar-brand img {
	max-width: 100%;
}

#cmp_ad3bb329-6294-4016-876b-a2e52e6b50c2.navbar .navbar-toggler {
	background-color: rgb(50, 205, 50);
	border-radius: 0;
	color: #FFFFFF;
	font-size: 13px;
	letter-spacing: 0.077em;
	padding: 15px;
	text-transform: uppercase;
}

#cmp_ad3bb329-6294-4016-876b-a2e52e6b50c2.navbar .navbar-toggler:hover,
#cmp_ad3bb329-6294-4016-876b-a2e52e6b50c2.navbar .navbar-toggler:focus,
#cmp_ad3bb329-6294-4016-876b-a2e52e6b50c2.navbar .navbar-toggler:active {
	background-color: rgb(1, 183, 226);
	color: #FFFFFF;
}

#cmp_ad3bb329-6294-4016-876b-a2e52e6b50c2 .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_ad3bb329-6294-4016-876b-a2e52e6b50c2 .navbar-nav li {
	padding: 10px 0;
}

#cmp_ad3bb329-6294-4016-876b-a2e52e6b50c2 .navbar-nav .nav-link {
	color: rgb(205, 50, 205);
	font-family: Lato;
	font-size: 14px;;
	padding: 8px 18px;
	text-align: center;
	text-transform: uppercase;
}

@media (min-width: 768px) {
	#cmp_ad3bb329-6294-4016-876b-a2e52e6b50c2.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_ad3bb329-6294-4016-876b-a2e52e6b50c2 .navbar-brand {
		padding: 0 0 15px 0;
	}
	#cmp_ad3bb329-6294-4016-876b-a2e52e6b50c2 .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_ad3bb329-6294-4016-876b-a2e52e6b50c2 .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_ad3bb329-6294-4016-876b-a2e52e6b50c2 .navbar-nav li {
		padding: 0;
	}
}

/*
 * components/index/cmp_2edd9f86-0186-4650-889e-82c0bd3768d4/component.css
 */
#cmp_2edd9f86-0186-4650-889e-82c0bd3768d4 {
	background-color: #FFFFFF;
  display: none;
}

.reviews .review {
  background: #EF6F74; 
}
.reviews .review img {
  margin: 30px auto 20px;
  border-radius: 5px;
}

#cmp_2edd9f86-0186-4650-889e-82c0bd3768d4 h1 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_2edd9f86-0186-4650-889e-82c0bd3768d4 h2 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_2edd9f86-0186-4650-889e-82c0bd3768d4 h3 {
	color: rgb(74, 74, 74);
	font-family: Montserrat;
	font-size: 18px;
	margin: 0 0 25px 0;
}

#cmp_2edd9f86-0186-4650-889e-82c0bd3768d4 p {
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 14px;
	margin: 0 0 25px 0;
}

#cmp_2edd9f86-0186-4650-889e-82c0bd3768d4 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 14px;
}

#cmp_2edd9f86-0186-4650-889e-82c0bd3768d4 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/index/cmp_447e3052-a3c2-4d15-8bbd-19563482fcef/component.css
 */
#cmp_447e3052-a3c2-4d15-8bbd-19563482fcef {
	background-color: #FFFFFF;
  padding-bottom: 0;
}

#cmp_447e3052-a3c2-4d15-8bbd-19563482fcef h1 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_447e3052-a3c2-4d15-8bbd-19563482fcef h2 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_447e3052-a3c2-4d15-8bbd-19563482fcef h3 {
	color: rgb(205, 50, 205);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_447e3052-a3c2-4d15-8bbd-19563482fcef p {
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_447e3052-a3c2-4d15-8bbd-19563482fcef ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

#cmp_447e3052-a3c2-4d15-8bbd-19563482fcef ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/index/cmp_5f8a83da-ef37-435e-8906-57dbc1114f19/component.css
 */
#cmp_5f8a83da-ef37-435e-8906-57dbc1114f19 {
	padding: 0;
}

#cmp_5f8a83da-ef37-435e-8906-57dbc1114f19 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_5f8a83da-ef37-435e-8906-57dbc1114f19 .hero-content h1 {
	color: rgb(50, 205, 50);
	font-family: Acme;
	font-size: 60px;
	margin: 0 0 15px 0;
}

#cmp_5f8a83da-ef37-435e-8906-57dbc1114f19 .hero-content h2 {
	color: rgb(205, 50, 205);
	font-family: Montserrat;
	font-size: 36px;
	margin: 0 0 15px 0;
}

#cmp_5f8a83da-ef37-435e-8906-57dbc1114f19 .hero-content h3 {
	color: rgb(205, 50, 205);
	font-family: Montserrat;
	font-size: 24px;
	margin: 0 0 15px 0;
}

#cmp_5f8a83da-ef37-435e-8906-57dbc1114f19 .hero-content p {
	color: #49494A;
	font-family: Lato;
	font-size: 24px;
	margin: 0 0 15px 0;
}

#cmp_5f8a83da-ef37-435e-8906-57dbc1114f19 .hero-content ul {
  list-style: none; 
}

#cmp_5f8a83da-ef37-435e-8906-57dbc1114f19 ul li:before {
  content: '✓ ';
  font-weight: bold;
  color: rgb(50, 205, 50);
  margin-right: 2px;
}

#cmp_5f8a83da-ef37-435e-8906-57dbc1114f19 .hero-content .button-container {
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
}

#cmp_5f8a83da-ef37-435e-8906-57dbc1114f19 .hero-content .btn {
	margin: 3px;
	padding: 15px;
	width: 40%;
}

#cmp_5f8a83da-ef37-435e-8906-57dbc1114f19 .hero-content .btn-primary {
	background-color: rgb(50, 205, 50);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_5f8a83da-ef37-435e-8906-57dbc1114f19 .hero-content .btn-primary:hover {
	background-color: rgb(1, 183, 226);
	color: #FFFFFF;
}

#cmp_5f8a83da-ef37-435e-8906-57dbc1114f19 .hero-content .btn-secondary {
	background-color: rgb(205, 50, 205);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_5f8a83da-ef37-435e-8906-57dbc1114f19 .hero-content .btn-secondary:hover {
	background-color: rgb(1, 183, 226);
	color: #FFFFFF;
}

#cmp_5f8a83da-ef37-435e-8906-57dbc1114f19 p {
	margin: 0 0 25px 0;
}
/*
 * components/index/cmp_748b100c-9796-4a0b-bd64-b7941657261f/component.css
 */
#cmp_748b100c-9796-4a0b-bd64-b7941657261f {
	background-color: rgb(250, 250, 250);
}

#cmp_748b100c-9796-4a0b-bd64-b7941657261f h1 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_748b100c-9796-4a0b-bd64-b7941657261f h2 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_748b100c-9796-4a0b-bd64-b7941657261f h3 {
	color: rgb(205, 50, 205);
	font-family: Montserrat;
	font-size: 14px;
	margin: 0 0 25px 0;
}

#cmp_748b100c-9796-4a0b-bd64-b7941657261f p {
	color: rgb(205, 50, 205);
	font-family: Lato;
	font-size: 20px;
	margin: 0 0 25px 0;
}

#cmp_748b100c-9796-4a0b-bd64-b7941657261f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(205, 50, 205);
	font-family: Lato;
	font-size: 20px;
}

#cmp_748b100c-9796-4a0b-bd64-b7941657261f ul {
	list-style: none;
	color: rgb(205, 50, 205);
	font-family: Lato;
	font-size: 20px;
}

#cmp_748b100c-9796-4a0b-bd64-b7941657261f ul li:before {
  content: '✓ ';
}
/*
 * components/index/cmp_7ee8c2e1-f672-45fe-9222-fa5294a5c592/component.css
 */
.ig-review {
  background: url('//d3a1v57rabk2hm.cloudfront.net/sugarsmartbox/betterman_mobile-copy-47/images/social.jpeg?ts=1542577117&host=my.cratejoy.com}'); 
  padding-top: 40px;
  background-position: center center;
  background-size: cover;
}
.social-subtitle {
  margin-bottom: 40px;
}
.social-subtitle h2, .social-subtitle a {
  color: #fff; 
}

#cmp_7ee8c2e1-f672-45fe-9222-fa5294a5c592 {
	/* background-color: #FFFFFF; */
    padding-top: 0;
  padding-bottom: 40px;
}

#cmp_7ee8c2e1-f672-45fe-9222-fa5294a5c592 .single img {
  max-height: 200px; 
  margin-bottom: 20px;
}

#cmp_7ee8c2e1-f672-45fe-9222-fa5294a5c592 h1 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_7ee8c2e1-f672-45fe-9222-fa5294a5c592 h2 {
	color: #FFF;
	font-family: Montserrat;
	font-size: 24px;
	margin: 0 0 25px 0;
}

#cmp_7ee8c2e1-f672-45fe-9222-fa5294a5c592 h3 {
	color: rgb(74, 74, 74);
	font-family: Montserrat;
	font-size: 18px;
	margin: 0 0 10px 0;
}

#cmp_7ee8c2e1-f672-45fe-9222-fa5294a5c592 p {
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 14px;
	margin: 0 0 25px 0;
}

#cmp_7ee8c2e1-f672-45fe-9222-fa5294a5c592 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 14px;
}

#cmp_7ee8c2e1-f672-45fe-9222-fa5294a5c592 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/index/cmp_85a306f0-41a5-40ee-9144-f6f79e1fd1ea/component.css
 */
#cmp_85a306f0-41a5-40ee-9144-f6f79e1fd1ea {
	background-color: #FFFFFF;
  padding-top: 40px;
}

#cmp_85a306f0-41a5-40ee-9144-f6f79e1fd1ea h1 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_85a306f0-41a5-40ee-9144-f6f79e1fd1ea h2 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_85a306f0-41a5-40ee-9144-f6f79e1fd1ea h3 {
	color: rgb(205, 50, 205);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_85a306f0-41a5-40ee-9144-f6f79e1fd1ea p {
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_85a306f0-41a5-40ee-9144-f6f79e1fd1ea .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_85a306f0-41a5-40ee-9144-f6f79e1fd1ea .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_85a306f0-41a5-40ee-9144-f6f79e1fd1ea .btn {
	background-color: rgb(50, 205, 50);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_85a306f0-41a5-40ee-9144-f6f79e1fd1ea .btn:hover {
	background-color: rgb(1, 183, 226);
	color: #FFFFFF;
}

#cmp_85a306f0-41a5-40ee-9144-f6f79e1fd1ea ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

#cmp_85a306f0-41a5-40ee-9144-f6f79e1fd1ea ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/index/cmp_ccdaf6c2-8ed2-4fbe-9131-398c0b1d6c68/component.css
 */
#cmp_ccdaf6c2-8ed2-4fbe-9131-398c0b1d6c68 {
	background-color: #FAFAFA;
}

#cmp_ccdaf6c2-8ed2-4fbe-9131-398c0b1d6c68 .content {
	margin: 10px auto;
	max-width: 250px;
}

#cmp_ccdaf6c2-8ed2-4fbe-9131-398c0b1d6c68 .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_ccdaf6c2-8ed2-4fbe-9131-398c0b1d6c68 .content .propositions-title h3 {
	margin: 0;
}

#cmp_ccdaf6c2-8ed2-4fbe-9131-398c0b1d6c68 .content .propositions-image {
	background-repeat: no-repeat;
	background-size: contain !important;
	height: 40px;
	margin: 15px;
	width: 40px;
}

#cmp_ccdaf6c2-8ed2-4fbe-9131-398c0b1d6c68 h1 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 34px;
}

#cmp_ccdaf6c2-8ed2-4fbe-9131-398c0b1d6c68 h2 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 26px;
}

#cmp_ccdaf6c2-8ed2-4fbe-9131-398c0b1d6c68 h3 {
	color: rgb(205, 50, 205);
	font-family: Montserrat;
	font-size: 16px;
}

#cmp_ccdaf6c2-8ed2-4fbe-9131-398c0b1d6c68 p {
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/index/cmp_da118ba6-5205-4854-86ba-9c977be35614/component.css
 */
#cmp_da118ba6-5205-4854-86ba-9c977be35614 {
    background-color: rgb(255, 255, 255);
  padding-top: 50px;
}

#cmp_da118ba6-5205-4854-86ba-9c977be35614 .step img {
  border-radius: 50%; 
  max-width: 250px;
}

#cmp_da118ba6-5205-4854-86ba-9c977be35614 h1 {
    color: rgb(50, 205, 50);
    font-family: Montserrat;
    font-size: 34px;
    margin: 0 0 25px 0;
}

#cmp_da118ba6-5205-4854-86ba-9c977be35614 h2 {
    color: rgb(50, 205, 50);
    font-family: Montserrat;
    font-size: 26px;
    margin: 0 0 25px 0;
}

#cmp_da118ba6-5205-4854-86ba-9c977be35614 h3 {
    color: rgb(205, 50, 205);
    font-family: Montserrat;
    font-size: 24px;
    margin: 0 0 25px 0;
}

#cmp_da118ba6-5205-4854-86ba-9c977be35614 p {
    color: rgb(74, 74, 74);
    font-family: Lato;
    font-size: 16px;
    margin: 0 0 25px 0;
}

#cmp_da118ba6-5205-4854-86ba-9c977be35614 ol {
    list-style: decimal;
    list-style-position: insidone for the;
    color: rgb(74, 74, 74);
    font-family: Lato;
    font-size: 16px;
}

#cmp_da118ba6-5205-4854-86ba-9c977be35614 ul {
    list-style: disc;
    list-style-position: inside;
    color: rgb(74, 74, 74);
    font-family: Lato;
    font-size: 16px;
}

/*
 * components/shop/listing/cmp_5b19924b-8ec0-4e75-9f55-e3cfa2a4fd96/component.css
 */
#cmp_5b19924b-8ec0-4e75-9f55-e3cfa2a4fd96 {
    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_5b19924b-8ec0-4e75-9f55-e3cfa2a4fd96 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_844d784c-fc4a-42a9-8d18-d6c498493440/component.css
 */
#cmp_844d784c-fc4a-42a9-8d18-d6c498493440 {
    padding: 20px 0;

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

#cmp_844d784c-fc4a-42a9-8d18-d6c498493440 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_a2717e47-23f7-4921-a6d9-9dc6ac8b4f74/component.css
 */
#cmp_a2717e47-23f7-4921-a6d9-9dc6ac8b4f74 {
	background-color: #FFFFFF;
}

#cmp_a2717e47-23f7-4921-a6d9-9dc6ac8b4f74 h1 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_a2717e47-23f7-4921-a6d9-9dc6ac8b4f74 h2 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_a2717e47-23f7-4921-a6d9-9dc6ac8b4f74 h3 {
	color: rgb(205, 50, 205);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_a2717e47-23f7-4921-a6d9-9dc6ac8b4f74 p {
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_a2717e47-23f7-4921-a6d9-9dc6ac8b4f74 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

#cmp_a2717e47-23f7-4921-a6d9-9dc6ac8b4f74 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

#cmp_a2717e47-23f7-4921-a6d9-9dc6ac8b4f74  {
	padding-bottom: 20px;
}
/*
 * components/shop/listing/cmp_d4e986f1-6d5a-4ee2-844f-0fb06f2970a5/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: rgb(74, 74, 74);
}

.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/product/cmp_6dfbaad9-cff6-445c-8307-14f8704d8220/component.css
 */
#cmp_6dfbaad9-cff6-445c-8307-14f8704d8220 .shop-product__name {
	margin: 0 0 10px 0;
}

#cmp_6dfbaad9-cff6-445c-8307-14f8704d8220 .shop-product__price {
	margin: 0 0 20px 0;
}

#cmp_6dfbaad9-cff6-445c-8307-14f8704d8220 .shop-product select {
	width: auto;
}

#cmp_6dfbaad9-cff6-445c-8307-14f8704d8220 .shop-product__add-to-cart {
	margin: 0 0 20px 0;
}

#cmp_6dfbaad9-cff6-445c-8307-14f8704d8220 .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin: 0 0 40px 0;
}

#cmp_6dfbaad9-cff6-445c-8307-14f8704d8220 .shop-product__review-share-desktop .col-xs-6 {
	padding: 10px 0 0 0;
}

#cmp_6dfbaad9-cff6-445c-8307-14f8704d8220 .shop-product__review-share-desktop .col-xs-6 + .col-xs-6 {
	border-left: 1px solid #E1E1E1;
}

#cmp_6dfbaad9-cff6-445c-8307-14f8704d8220  {
	padding-top: 0;
}
/*
 * components/shop/product/cmp_bf613b24-b5a8-4a55-9cad-b5d258d739e0/component.css
 */
#cmp_bf613b24-b5a8-4a55-9cad-b5d258d739e0.shop-product-header {
	padding: 50px 0 15px 0;
}

/*
 * components/sold_out/cmp_789174a0-fa63-47f3-a1f6-4c384283d0eb/component.css
 */
#cmp_789174a0-fa63-47f3-a1f6-4c384283d0eb img {
	max-width: 100%;
}

/*
 * components/sold_out/cmp_856aff0d-4792-4b87-80f0-4a509acbd538/component.css
 */
#cmp_856aff0d-4792-4b87-80f0-4a509acbd538 {
	background-color: #FFFFFF;
}

#cmp_856aff0d-4792-4b87-80f0-4a509acbd538 h1 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_856aff0d-4792-4b87-80f0-4a509acbd538 h2 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_856aff0d-4792-4b87-80f0-4a509acbd538 h3 {
	color: rgb(205, 50, 205);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_856aff0d-4792-4b87-80f0-4a509acbd538 p {
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_856aff0d-4792-4b87-80f0-4a509acbd538 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_856aff0d-4792-4b87-80f0-4a509acbd538 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_856aff0d-4792-4b87-80f0-4a509acbd538 .btn {
	background-color: rgb(50, 205, 50);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_856aff0d-4792-4b87-80f0-4a509acbd538 .btn:hover {
	background-color: rgb(1, 183, 226);
	color: #FFFFFF;
}

#cmp_856aff0d-4792-4b87-80f0-4a509acbd538 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

#cmp_856aff0d-4792-4b87-80f0-4a509acbd538 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

#cmp_856aff0d-4792-4b87-80f0-4a509acbd538  {
	padding-top: 0;
}
/*
 * components/subscribe/cmp_2d5f833f-0779-4f46-9127-6b9296876e8c/component.css
 */
#cmp_2d5f833f-0779-4f46-9127-6b9296876e8c {
	background-color: #FFFFFF;
}

#cmp_2d5f833f-0779-4f46-9127-6b9296876e8c h1 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_2d5f833f-0779-4f46-9127-6b9296876e8c h2 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_2d5f833f-0779-4f46-9127-6b9296876e8c h3 {
	color: rgb(205, 50, 205);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_2d5f833f-0779-4f46-9127-6b9296876e8c p {
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_2d5f833f-0779-4f46-9127-6b9296876e8c ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

#cmp_2d5f833f-0779-4f46-9127-6b9296876e8c ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

#cmp_2d5f833f-0779-4f46-9127-6b9296876e8c  {
	padding-bottom: 0;
}
/*
 * components/subscribe/cmp_482824de-a13b-4499-9602-fe123be515cb/component.css
 */

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

	max-width: 940px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

	margin-bottom: 15px;
}

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

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

	font-family: ;
	font-size: ;

	color: ;
	background-color: ;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-btn-cart:hover {
	color: ;
	background-color: ;
}

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

	color: ;
	background-color: ;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-continue-btn:hover {
	color: ;
	background-color: ;
}

@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_4f8abc70-70dd-4101-9fd5-dbd5688af790/component.css
 */
#cmp_4f8abc70-70dd-4101-9fd5-dbd5688af790 {
	padding: 50px 0 15px 0;
}

/*
 * components/subscribe_flow/survey_step/cmp_b71555b4-66ba-4678-a3fe-92467f582550/component.css
 */
.survey:first-of-type {
    padding: 0 0 50px 0;
}
#cmp_b71555b4-66ba-4678-a3fe-92467f582550  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/terms_step/cmp_77e46f15-a054-498b-966c-13697b6c6c7b/component.css
 */
#cmp_77e46f15-a054-498b-966c-13697b6c6c7b {
	padding: 50px 0 15px 0;
}

/*
 * components/subscribe_flow/terms_step/cmp_d2f748e0-7a44-4a01-b97e-7b6868bb93c1/component.css
 */

/*
 * components/subscribe_flow/variant_step/cmp_27c7127b-cf7a-4918-8015-92d5fed68d4f/component.css
 */
#cmp_27c7127b-cf7a-4918-8015-92d5fed68d4f {
	padding: 50px 0 15px 0;
}

/*
 * components/subscribe_flow/variant_step/cmp_5cb75ea7-9fef-4857-a806-2e9be4aef0cc/component.css
 */

/*
 * components/view-cart/cmp_18c63ba0-ec5e-408f-b96c-818ff3115758/component.css
 */
#cmp_18c63ba0-ec5e-408f-b96c-818ff3115758 {
	padding: 15px 15px 100px 15px;
}

#cmp_18c63ba0-ec5e-408f-b96c-818ff3115758 .cart-thead {
	border-bottom: 1px solid #E1E1E1;
	padding: 10px 0;
}

#cmp_18c63ba0-ec5e-408f-b96c-818ff3115758 .cart-thead h3 {
	text-transform: uppercase;
}

#cmp_18c63ba0-ec5e-408f-b96c-818ff3115758 .cart-item {
	border: 1px solid #E1E1E1;
	padding: 25px 0;
	position: relative;
}

#cmp_18c63ba0-ec5e-408f-b96c-818ff3115758 .product-main {
	margin: 0 0 15px 0;
}

#cmp_18c63ba0-ec5e-408f-b96c-818ff3115758 .product-label p {
	margin: 0;
}

#cmp_18c63ba0-ec5e-408f-b96c-818ff3115758 .product-label .info {
	color: rgb(50, 205, 50);
	text-align: right;
	text-transform: uppercase;
}

#cmp_18c63ba0-ec5e-408f-b96c-818ff3115758 .product-label .meta {
	color: rgb(205, 50, 205);
	font-size: 16px;
}

#cmp_18c63ba0-ec5e-408f-b96c-818ff3115758 .product-rem-btn {
	position: absolute;
	right: 1%;
	top: 1%;
}

#cmp_18c63ba0-ec5e-408f-b96c-818ff3115758 figure {
	margin: 0 0 15px 0;
}

#cmp_18c63ba0-ec5e-408f-b96c-818ff3115758 .cart-subtotal {
	margin: 50px 0 0 0;
}

#cmp_18c63ba0-ec5e-408f-b96c-818ff3115758 .cart-subtotal h2 {
	margin: 0 0 15px 0;
}

#cmp_18c63ba0-ec5e-408f-b96c-818ff3115758 .cart-subtotal h3 {
	margin: 0 0 25px 0;
	text-transform: uppercase;
}

#cmp_18c63ba0-ec5e-408f-b96c-818ff3115758 .cart-subtotal p {
	margin: 0 0 25px 0;
}

@media (min-width: 768px) {
	#cmp_18c63ba0-ec5e-408f-b96c-818ff3115758 .cart-item {
		border-width: 0 0 1px 0;
	}
	#cmp_18c63ba0-ec5e-408f-b96c-818ff3115758 .product-rem-btn {
		top: 40%;
	}
	#cmp_18c63ba0-ec5e-408f-b96c-818ff3115758 figure {
		margin: 0;
	}
}

/*
 * components/view-cart/cmp_e153ec48-e113-483a-9c95-cc4c0914765a/component.css
 */
#cmp_e153ec48-e113-483a-9c95-cc4c0914765a {
	background-color: #FFFFFF;
}

#cmp_e153ec48-e113-483a-9c95-cc4c0914765a h1 {
	color: rgb(50, 205, 50);
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 25px 0;
}

#cmp_e153ec48-e113-483a-9c95-cc4c0914765a h2 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_e153ec48-e113-483a-9c95-cc4c0914765a h3 {
	color: rgb(205, 50, 205);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_e153ec48-e113-483a-9c95-cc4c0914765a p {
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_e153ec48-e113-483a-9c95-cc4c0914765a ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

#cmp_e153ec48-e113-483a-9c95-cc4c0914765a ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/whats_inside/cmp_4ccf5d4d-ae4b-411e-8ac2-021691c66756/component.css
 */
#cmp_4ccf5d4d-ae4b-411e-8ac2-021691c66756 {
	background-color: #FFFFFF;
}

#cmp_4ccf5d4d-ae4b-411e-8ac2-021691c66756 h1 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_4ccf5d4d-ae4b-411e-8ac2-021691c66756 h2 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_4ccf5d4d-ae4b-411e-8ac2-021691c66756 h3 {
	color: rgb(205, 50, 205);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_4ccf5d4d-ae4b-411e-8ac2-021691c66756 p {
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_4ccf5d4d-ae4b-411e-8ac2-021691c66756 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_4ccf5d4d-ae4b-411e-8ac2-021691c66756 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_4ccf5d4d-ae4b-411e-8ac2-021691c66756 .btn {
	background-color: rgb(50, 205, 50);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_4ccf5d4d-ae4b-411e-8ac2-021691c66756 .btn:hover {
	background-color: rgb(1, 183, 226);
	color: #FFFFFF;
}

#cmp_4ccf5d4d-ae4b-411e-8ac2-021691c66756 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

#cmp_4ccf5d4d-ae4b-411e-8ac2-021691c66756 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/whats_inside/cmp_53269742-5a50-4004-80ae-07ea347383f8/component.css
 */
#cmp_53269742-5a50-4004-80ae-07ea347383f8 {
	padding: 0;
}

#cmp_53269742-5a50-4004-80ae-07ea347383f8 .hero-content {
	background-color: rgb(250, 250, 250);
	padding: 20px;
}

#cmp_53269742-5a50-4004-80ae-07ea347383f8 .hero-content h1 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 15px 0;
}

#cmp_53269742-5a50-4004-80ae-07ea347383f8 .hero-content h2 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 15px 0;
}

#cmp_53269742-5a50-4004-80ae-07ea347383f8 .hero-content h3 {
	color: rgb(205, 50, 205);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 15px 0;
}

#cmp_53269742-5a50-4004-80ae-07ea347383f8 .hero-content p {
	color: #49494A;
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 15px 0;
}

#cmp_53269742-5a50-4004-80ae-07ea347383f8 .hero-content .btn {
	background-color: rgb(50, 205, 50);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_53269742-5a50-4004-80ae-07ea347383f8 .hero-content .btn:hover {
	background-color: rgb(1, 183, 226);
	color: #FFFFFF;
}

/*
 * components/whats_inside/cmp_6f982d3a-d768-4306-aa8d-d989fd025a2d/component.css
 */
#cmp_6f982d3a-d768-4306-aa8d-d989fd025a2d {
	padding: 0;
}

#cmp_6f982d3a-d768-4306-aa8d-d989fd025a2d .hero-content {
	background-color: rgb(250, 250, 250);
	padding: 20px;
}

#cmp_6f982d3a-d768-4306-aa8d-d989fd025a2d .hero-content h1 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 15px 0;
}

#cmp_6f982d3a-d768-4306-aa8d-d989fd025a2d .hero-content h2 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 15px 0;
}

#cmp_6f982d3a-d768-4306-aa8d-d989fd025a2d .hero-content h3 {
	color: rgb(205, 50, 205);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 15px 0;
}

#cmp_6f982d3a-d768-4306-aa8d-d989fd025a2d .hero-content p {
	color: #49494A;
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 15px 0;
}

#cmp_6f982d3a-d768-4306-aa8d-d989fd025a2d .hero-content .btn {
	background-color: rgb(50, 205, 50);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_6f982d3a-d768-4306-aa8d-d989fd025a2d .hero-content .btn:hover {
	background-color: rgb(1, 183, 226);
	color: #FFFFFF;
}

/*
 * components/whats_inside/cmp_9a8fe1aa-2445-421d-b6da-f4616ddc8dc4/component.css
 */
#cmp_9a8fe1aa-2445-421d-b6da-f4616ddc8dc4 {
	background-color: rgb(250, 250, 250);
}

#cmp_9a8fe1aa-2445-421d-b6da-f4616ddc8dc4 h1 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_9a8fe1aa-2445-421d-b6da-f4616ddc8dc4 h2 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_9a8fe1aa-2445-421d-b6da-f4616ddc8dc4 h3 {
	color: rgb(205, 50, 205);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_9a8fe1aa-2445-421d-b6da-f4616ddc8dc4 p {
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_9a8fe1aa-2445-421d-b6da-f4616ddc8dc4 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

#cmp_9a8fe1aa-2445-421d-b6da-f4616ddc8dc4 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/whats_inside/cmp_d6a1ee9d-124f-405a-8d39-057d591ae748/component.css
 */
#cmp_d6a1ee9d-124f-405a-8d39-057d591ae748 {
	background-color: rgb(250, 250, 250);
}

#cmp_d6a1ee9d-124f-405a-8d39-057d591ae748 h1 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_d6a1ee9d-124f-405a-8d39-057d591ae748 h2 {
	color: rgb(50, 205, 50);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_d6a1ee9d-124f-405a-8d39-057d591ae748 h3 {
	color: rgb(205, 50, 205);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_d6a1ee9d-124f-405a-8d39-057d591ae748 p {
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_d6a1ee9d-124f-405a-8d39-057d591ae748 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_d6a1ee9d-124f-405a-8d39-057d591ae748 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_d6a1ee9d-124f-405a-8d39-057d591ae748 .btn {
	background-color: rgb(50, 205, 50);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_d6a1ee9d-124f-405a-8d39-057d591ae748 .btn:hover {
	background-color: rgb(1, 183, 226);
	color: #FFFFFF;
}

#cmp_d6a1ee9d-124f-405a-8d39-057d591ae748 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

#cmp_d6a1ee9d-124f-405a-8d39-057d591ae748 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}