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

h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	letter-spacing: 1px;
	line-height: 1;
}

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

h3 {
	color: #49494A;
	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: #FAC325;
}

/* General Component Styles */
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: #FAC325;
	color: #FFFFFF;
}

.btn-secondary {
	background-color: #49494A;
	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: #FAC325;
	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: #49494A;
}

/* 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: #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: #FAC325;
	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: #FAC325;
	border-color: #FAC325;
	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_252b6a03-b288-46c1-b7f7-462d987da668/component.css
 */
#cmp_252b6a03-b288-46c1-b7f7-462d987da668 {
	padding: 0;
}

#cmp_252b6a03-b288-46c1-b7f7-462d987da668 .hero-content {
	background-color: #FFFFFF;
	padding: 20px;
}

#cmp_252b6a03-b288-46c1-b7f7-462d987da668 .hero-content h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 15px 0;
}

#cmp_252b6a03-b288-46c1-b7f7-462d987da668 .hero-content h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 15px 0;
}

#cmp_252b6a03-b288-46c1-b7f7-462d987da668 .hero-content h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 15px 0;
}

#cmp_252b6a03-b288-46c1-b7f7-462d987da668 .hero-content p {
	color: #49494A;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 15px 0;
}

#cmp_252b6a03-b288-46c1-b7f7-462d987da668 .hero-content .btn {
	background-color: #3BB44A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_252b6a03-b288-46c1-b7f7-462d987da668 .hero-content .btn:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

/*
 * components/about/cmp_9dd30405-9c59-414e-ad2e-28615a8fb721/component.css
 */
#cmp_9dd30405-9c59-414e-ad2e-28615a8fb721 {
	background-color: #FFFFFF;
}

#cmp_9dd30405-9c59-414e-ad2e-28615a8fb721 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_9dd30405-9c59-414e-ad2e-28615a8fb721 h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_9dd30405-9c59-414e-ad2e-28615a8fb721 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_9dd30405-9c59-414e-ad2e-28615a8fb721 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

/*
 * components/checkout/cmp_e3407fc2-a24a-4dcb-8375-611bc6b1c50d/component.css
 */
#cmp_e3407fc2-a24a-4dcb-8375-611bc6b1c50d .checkout_content {
  overflow: auto;
}

#cmp_e3407fc2-a24a-4dcb-8375-611bc6b1c50d .checkout_content section {
  border-color: #F5F5F5;
}

#cmp_e3407fc2-a24a-4dcb-8375-611bc6b1c50d .cart_listing table {
  border-color: #F5F5F5;
}

#cmp_e3407fc2-a24a-4dcb-8375-611bc6b1c50d  {
	padding-top: 0;
}
/*
 * components/community/cmp_adeeaea5-3146-4227-a93d-e9e03d21fe3b/component.css
 */
#cmp_adeeaea5-3146-4227-a93d-e9e03d21fe3b {
	background-color: #FFFFFF;
}

#cmp_adeeaea5-3146-4227-a93d-e9e03d21fe3b h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_adeeaea5-3146-4227-a93d-e9e03d21fe3b h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_adeeaea5-3146-4227-a93d-e9e03d21fe3b h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_adeeaea5-3146-4227-a93d-e9e03d21fe3b p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

/*
 * components/community/cmp_e1d85059-812a-4af6-a5f9-28923ab089f6/component.css
 */
#cmp_e1d85059-812a-4af6-a5f9-28923ab089f6 {
	background-color: #FFFFFF;
}

#cmp_e1d85059-812a-4af6-a5f9-28923ab089f6 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_e1d85059-812a-4af6-a5f9-28923ab089f6 h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_e1d85059-812a-4af6-a5f9-28923ab089f6 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_e1d85059-812a-4af6-a5f9-28923ab089f6 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

/*
 * components/covid-19_international_shipping/cmp_e37f1267-8300-40d8-86b8-2777a1953b41/component.css
 */
#cmp_e37f1267-8300-40d8-86b8-2777a1953b41 {
	background-color: #FFFFFF;
}

#cmp_e37f1267-8300-40d8-86b8-2777a1953b41 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_e37f1267-8300-40d8-86b8-2777a1953b41 h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_e37f1267-8300-40d8-86b8-2777a1953b41 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_e37f1267-8300-40d8-86b8-2777a1953b41 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_e37f1267-8300-40d8-86b8-2777a1953b41 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_e37f1267-8300-40d8-86b8-2777a1953b41 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/customer/account/cmp_38fdaf03-20e7-4081-8810-290cf377bdbf/component.css
 */

/*
 * components/customer/edit/cmp_e2678e4e-fa06-45d5-811f-27d835223228/component.css
 */

/*
 * components/customer/forgot_password/cmp_a938e539-957b-4270-9404-7750ed58c654/component.css
 */
#cmp_a938e539-957b-4270-9404-7750ed58c654 {
	background-color: #FFFFFF;
}

#cmp_a938e539-957b-4270-9404-7750ed58c654 h1 {
	color: #49494A;
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 25px 0;
}

#cmp_a938e539-957b-4270-9404-7750ed58c654 h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_a938e539-957b-4270-9404-7750ed58c654 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_a938e539-957b-4270-9404-7750ed58c654 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

/*
 * components/customer/forgot_password/cmp_d1bd796d-ce39-4d8b-a5c2-26441e2b0bd0/component.css
 */
#cmp_d1bd796d-ce39-4d8b-a5c2-26441e2b0bd0 {
    padding:  0 0 120px 0;
}
/*
 * components/customer/login/cmp_4147b72d-2c22-49c4-a14e-392e24823121/component.css
 */
#cmp_4147b72d-2c22-49c4-a14e-392e24823121 {
	background-color: #FFFFFF;
}

#cmp_4147b72d-2c22-49c4-a14e-392e24823121 h1 {
	color: #49494A;
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 25px 0;
}

#cmp_4147b72d-2c22-49c4-a14e-392e24823121 h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_4147b72d-2c22-49c4-a14e-392e24823121 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_4147b72d-2c22-49c4-a14e-392e24823121 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

/*
 * components/customer/login/cmp_93d2792e-ae24-4e12-b4c4-354c6af736a5/component.css
 */
#cmp_93d2792e-ae24-4e12-b4c4-354c6af736a5 {
    padding:  0 0 120px 0;
}
/*
 * components/customer/order/cmp_cd545c28-b835-4ec4-b631-cc467fdb16f1/component.css
 */

/*
 * components/customer/password_reset/cmp_70e26f05-a452-484a-8e25-ec495bcf197a/component.css
 */
#cmp_70e26f05-a452-484a-8e25-ec495bcf197a {
	background-color: #FFFFFF;
}

#cmp_70e26f05-a452-484a-8e25-ec495bcf197a h1 {
	color: #49494A;
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 25px 0;
}

#cmp_70e26f05-a452-484a-8e25-ec495bcf197a h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_70e26f05-a452-484a-8e25-ec495bcf197a h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_70e26f05-a452-484a-8e25-ec495bcf197a p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

/*
 * components/customer/password_reset/cmp_7f6d14d8-db64-4fde-843f-84049852e3eb/component.css
 */
#cmp_7f6d14d8-db64-4fde-843f-84049852e3eb {
    padding:  0 0 120px 0;
}
/*
 * components/customer/thank_you/cmp_1533a928-28fe-4fb7-aff0-849d066839e7/component.css
 */

/*
 * components/customer/thank_you/cmp_6a715535-be4d-4f5b-8192-90bd30a08836/component.css
 */
#cmp_6a715535-be4d-4f5b-8192-90bd30a08836 {
	background-color: #FFFFFF;
}

#cmp_6a715535-be4d-4f5b-8192-90bd30a08836 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_6a715535-be4d-4f5b-8192-90bd30a08836 h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 24px;
	margin: 0 0 25px 0;
}

#cmp_6a715535-be4d-4f5b-8192-90bd30a08836 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_6a715535-be4d-4f5b-8192-90bd30a08836 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

/*
 * components/faq/cmp_dc38b633-4974-4557-b910-0b15a423be1b/component.css
 */
#cmp_dc38b633-4974-4557-b910-0b15a423be1b {
	background-color: #FFFFFF;
}

#cmp_dc38b633-4974-4557-b910-0b15a423be1b h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_dc38b633-4974-4557-b910-0b15a423be1b h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_dc38b633-4974-4557-b910-0b15a423be1b h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_dc38b633-4974-4557-b910-0b15a423be1b p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

/*
 * components/global/cmp_7eed65a9-4979-423b-9905-a2513b27771f/component.css
 */
#cmp_7eed65a9-4979-423b-9905-a2513b27771f.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_7eed65a9-4979-423b-9905-a2513b27771f.navbar a:hover,
#cmp_7eed65a9-4979-423b-9905-a2513b27771f.navbar a:focus,
#cmp_7eed65a9-4979-423b-9905-a2513b27771f.navbar a:active {
	color: #3BB44A;
}

#cmp_7eed65a9-4979-423b-9905-a2513b27771f .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: Lato;
	font-size: 13px;
	letter-spacing: 0.038em;
	margin: 0;
	max-width: 100%;
	padding: 15px;
	text-align: center;
	text-transform: uppercase;
}

#cmp_7eed65a9-4979-423b-9905-a2513b27771f .navbar-brand img {
	max-width: 100%;
}

#cmp_7eed65a9-4979-423b-9905-a2513b27771f.navbar .navbar-toggler {
	background-color: #3BB44A;
	border-radius: 0;
	color: #FFFFFF;
	font-size: 13px;
	letter-spacing: 0.077em;
	padding: 15px;
	text-transform: uppercase;
}

#cmp_7eed65a9-4979-423b-9905-a2513b27771f.navbar .navbar-toggler:hover,
#cmp_7eed65a9-4979-423b-9905-a2513b27771f.navbar .navbar-toggler:focus,
#cmp_7eed65a9-4979-423b-9905-a2513b27771f.navbar .navbar-toggler:active {
	background-color: #FAC325;
	color: #FFFFFF;
}

#cmp_7eed65a9-4979-423b-9905-a2513b27771f .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_7eed65a9-4979-423b-9905-a2513b27771f .navbar-nav li {
	padding: 10px 0;
}

#cmp_7eed65a9-4979-423b-9905-a2513b27771f .navbar-nav .nav-link {
	color: #49494A;
	font-family: Lato;
	font-size: 13px;;
	padding: 8px 18px;
	text-align: center;
	text-transform: uppercase;
}

@media (min-width: 768px) {
	#cmp_7eed65a9-4979-423b-9905-a2513b27771f.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_7eed65a9-4979-423b-9905-a2513b27771f .navbar-brand {
		padding: 0 0 15px 0;
	}
	#cmp_7eed65a9-4979-423b-9905-a2513b27771f .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_7eed65a9-4979-423b-9905-a2513b27771f .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_7eed65a9-4979-423b-9905-a2513b27771f .navbar-nav li {
		padding: 0;
	}
}

#cmp_7eed65a9-4979-423b-9905-a2513b27771f ol {
    list-style: decimal;
    list-style-position: inside;
    color: ;
    font-family: ;
    font-size: ;
}

#cmp_7eed65a9-4979-423b-9905-a2513b27771f ul {
    list-style: none;
    list-style-position: inside;
    color: ;
    font-family: ;
    font-size: ;
}

/*
 * components/global/cmp_a1f5c32d-0c03-4d26-80fb-d2518fb6ecf2/component.css
 */
#cmp_a1f5c32d-0c03-4d26-80fb-d2518fb6ecf2 {
	background-color: #FFFFFF;
}

#cmp_a1f5c32d-0c03-4d26-80fb-d2518fb6ecf2 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_a1f5c32d-0c03-4d26-80fb-d2518fb6ecf2 h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_a1f5c32d-0c03-4d26-80fb-d2518fb6ecf2 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_a1f5c32d-0c03-4d26-80fb-d2518fb6ecf2 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_a1f5c32d-0c03-4d26-80fb-d2518fb6ecf2 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_a1f5c32d-0c03-4d26-80fb-d2518fb6ecf2 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_a1f5c32d-0c03-4d26-80fb-d2518fb6ecf2 .btn {
	background-color: #3BB44A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_a1f5c32d-0c03-4d26-80fb-d2518fb6ecf2 .btn:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

#cmp_a1f5c32d-0c03-4d26-80fb-d2518fb6ecf2  {
	padding-top: 0;
}
/*
 * components/global/cmp_c3da0ced-8332-4f26-8278-a9ee72cebac2/component.css
 */
#cmp_c3da0ced-8332-4f26-8278-a9ee72cebac2.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_c3da0ced-8332-4f26-8278-a9ee72cebac2 .footer-social {
	padding: 15px 0;
	text-align: center;
}

#cmp_c3da0ced-8332-4f26-8278-a9ee72cebac2 .footer-social a {
	display: inline-block;
	padding: 0 5px;
}

#cmp_c3da0ced-8332-4f26-8278-a9ee72cebac2 .footer-social svg path {
	fill: #49494A;
}

#cmp_c3da0ced-8332-4f26-8278-a9ee72cebac2 .footer-social a:hover svg path,
#cmp_c3da0ced-8332-4f26-8278-a9ee72cebac2 .footer-social a:focus svg path,
#cmp_c3da0ced-8332-4f26-8278-a9ee72cebac2 .footer-social a:active svg path {
	fill: #FAC325;
}

#cmp_c3da0ced-8332-4f26-8278-a9ee72cebac2.footer .toggler-container {
	padding: 15px 0;
	text-align: center;
}

#cmp_c3da0ced-8332-4f26-8278-a9ee72cebac2.footer .navbar-toggler {
	color: #3BB44A;
	font-size: 13px;
	letter-spacing: 0.077em;
	text-transform: uppercase;
}

#cmp_c3da0ced-8332-4f26-8278-a9ee72cebac2 .footer-cc {
	border-top: 1px solid #e1e1e1;
	letter-spacing: 1px;
	text-align: center;
}

#cmp_c3da0ced-8332-4f26-8278-a9ee72cebac2 .footer-cc img {
	padding: 15px 0;
}

#cmp_c3da0ced-8332-4f26-8278-a9ee72cebac2 .footer-cc p,
#cmp_c3da0ced-8332-4f26-8278-a9ee72cebac2 .footer-tributes p {
	margin: 0;
	padding: 15px 0;
}

#cmp_c3da0ced-8332-4f26-8278-a9ee72cebac2 .footer-tributes p a {
	color: #B0B0B0;
	padding: 0;
}

#cmp_c3da0ced-8332-4f26-8278-a9ee72cebac2 .footer-tributes p a:hover,
#cmp_c3da0ced-8332-4f26-8278-a9ee72cebac2 .footer-tributes p a:focus,
#cmp_c3da0ced-8332-4f26-8278-a9ee72cebac2 .footer-tributes p a:active {
	color: #B0B0B0;
	text-decoration: none;
}

#cmp_c3da0ced-8332-4f26-8278-a9ee72cebac2 .footer-directory {
	text-align: center;
}

#cmp_c3da0ced-8332-4f26-8278-a9ee72cebac2 .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_c3da0ced-8332-4f26-8278-a9ee72cebac2 .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_c3da0ced-8332-4f26-8278-a9ee72cebac2 .footer-list .footer-link {
	color: #49494A;
	font-family: Lato;
	font-size: 13px;
	letter-spacing: 0.077em;
	text-transform: uppercase;
}

#cmp_c3da0ced-8332-4f26-8278-a9ee72cebac2 .footer-list .footer-link:hover,
#cmp_c3da0ced-8332-4f26-8278-a9ee72cebac2 .footer-list .footer-link:focus,
#cmp_c3da0ced-8332-4f26-8278-a9ee72cebac2 .footer-list .footer-link:active {
	color: #3BB44A;
	text-decoration: none;
}

@media (max-width: 767px) {
	#cmp_c3da0ced-8332-4f26-8278-a9ee72cebac2 .col-sm-12,
	#cmp_c3da0ced-8332-4f26-8278-a9ee72cebac2 .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_c3da0ced-8332-4f26-8278-a9ee72cebac2.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_c3da0ced-8332-4f26-8278-a9ee72cebac2 .footer-directory {
		-webkit-order: 1;
		-moz-order: 1;
		-ms-order: 1;
		order: 1;

		text-align: left;
	}
	#cmp_c3da0ced-8332-4f26-8278-a9ee72cebac2 .footer-social {
		-webkit-order: 2;
		-moz-order: 2;
		-ms-order: 2;
		order: 2;

		padding: 0 15px;
		text-align: right;
	}
	#cmp_c3da0ced-8332-4f26-8278-a9ee72cebac2 .footer-cc {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}
	#cmp_c3da0ced-8332-4f26-8278-a9ee72cebac2 .footer-cc p {
		display: inline-block;
	}
}

@media (min-width: 992px) {
	#cmp_c3da0ced-8332-4f26-8278-a9ee72cebac2 .footer-cc {
		-webkit-order: 2;
		-moz-order: 2;
		-ms-order: 2;
		order: 2;

		border-top: none;
	}
	#cmp_c3da0ced-8332-4f26-8278-a9ee72cebac2 .footer-cc p {
		display: block;
	}
	#cmp_c3da0ced-8332-4f26-8278-a9ee72cebac2 .footer-social {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}
}

#cmp_c3da0ced-8332-4f26-8278-a9ee72cebac2 ol {
    list-style: decimal;
    list-style-position: inside;
    color: #B0B0B0;
    font-family: Lato;
    font-size: ;
}

#cmp_c3da0ced-8332-4f26-8278-a9ee72cebac2 ul {
    list-style: none;
    list-style-position: inside;
    color: #B0B0B0;
    font-family: Lato;
    font-size: ;
}

/*
 * components/holiday_giftcard/cmp_111b217c-dcca-47df-bbf2-b2c60ec8e7e3/component.css
 */
#cmp_111b217c-dcca-47df-bbf2-b2c60ec8e7e3 img {
	max-width: 100%;
}

/*
 * components/holiday_giftcard/cmp_8b2ff5b7-bc69-4f5a-b479-e00807f8ec00/component.css
 */
#cmp_8b2ff5b7-bc69-4f5a-b479-e00807f8ec00 {
	background-color: #FFFFFF;
}

#cmp_8b2ff5b7-bc69-4f5a-b479-e00807f8ec00 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_8b2ff5b7-bc69-4f5a-b479-e00807f8ec00 h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_8b2ff5b7-bc69-4f5a-b479-e00807f8ec00 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_8b2ff5b7-bc69-4f5a-b479-e00807f8ec00 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_8b2ff5b7-bc69-4f5a-b479-e00807f8ec00 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_8b2ff5b7-bc69-4f5a-b479-e00807f8ec00 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/index/cmp_0d432645-0b04-4825-8431-b62d42f99c61/component.css
 */
#cmp_0d432645-0b04-4825-8431-b62d42f99c61 {
	padding: 0;
}

#cmp_0d432645-0b04-4825-8431-b62d42f99c61 .hero-content {
	background-color: #E5E9EE;
	padding: 20px;
}

#cmp_0d432645-0b04-4825-8431-b62d42f99c61 .hero-content h1 {
	color: #49494A;
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 15px 0;
}

#cmp_0d432645-0b04-4825-8431-b62d42f99c61 .hero-content h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 15px 0;
}

#cmp_0d432645-0b04-4825-8431-b62d42f99c61 .hero-content h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 15px 0;
}

#cmp_0d432645-0b04-4825-8431-b62d42f99c61 .hero-content p {
	color: #49494A;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 15px 0;
}

#cmp_0d432645-0b04-4825-8431-b62d42f99c61 .hero-content .button-container {
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
}

#cmp_0d432645-0b04-4825-8431-b62d42f99c61 .hero-content .btn {
	margin: 3px;
	padding: 15px;
	width: 40%;
}

#cmp_0d432645-0b04-4825-8431-b62d42f99c61 .hero-content .btn-primary {
	background-color: #3BB44A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_0d432645-0b04-4825-8431-b62d42f99c61 .hero-content .btn-primary:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

#cmp_0d432645-0b04-4825-8431-b62d42f99c61 .hero-content .btn-secondary {
	background-color: #49494A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_0d432645-0b04-4825-8431-b62d42f99c61 .hero-content .btn-secondary:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

#cmp_0d432645-0b04-4825-8431-b62d42f99c61 p {
	margin: 0 0 25px 0;
}
/*
 * components/index/cmp_3ee65f63-fabb-4541-9b54-dac695fa82e7/component.css
 */
#cmp_3ee65f63-fabb-4541-9b54-dac695fa82e7 {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	background-color: #FAFAFA;
}

#cmp_3ee65f63-fabb-4541-9b54-dac695fa82e7 .content {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	margin: 0 auto;
	padding: 25px;
}

#cmp_3ee65f63-fabb-4541-9b54-dac695fa82e7 .square-image {
	height: 225px;
	margin: 0 0 15px 0;
	width: 225px;
}

#cmp_3ee65f63-fabb-4541-9b54-dac695fa82e7 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
}

#cmp_3ee65f63-fabb-4541-9b54-dac695fa82e7 h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
}

#cmp_3ee65f63-fabb-4541-9b54-dac695fa82e7 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
}

#cmp_3ee65f63-fabb-4541-9b54-dac695fa82e7 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/index/cmp_8276ebf5-d7f1-4f50-9891-3763706a40b6/component.css
 */
#cmp_8276ebf5-d7f1-4f50-9891-3763706a40b6 {
	padding: 0;
}

#cmp_8276ebf5-d7f1-4f50-9891-3763706a40b6 .hero-content {
	background-color: #FFFFFF;
	padding: 20px;
}

#cmp_8276ebf5-d7f1-4f50-9891-3763706a40b6 .hero-content h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 15px 0;
}

#cmp_8276ebf5-d7f1-4f50-9891-3763706a40b6 .hero-content h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 15px 0;
}

#cmp_8276ebf5-d7f1-4f50-9891-3763706a40b6 .hero-content h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 15px 0;
}

#cmp_8276ebf5-d7f1-4f50-9891-3763706a40b6 .hero-content p {
	color: #49494A;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 15px 0;
}

#cmp_8276ebf5-d7f1-4f50-9891-3763706a40b6 .hero-content .btn {
	background-color: #3BB44A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_8276ebf5-d7f1-4f50-9891-3763706a40b6 .hero-content .btn:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

#cmp_8276ebf5-d7f1-4f50-9891-3763706a40b6 p {
	margin: 0 0 25px 0;
}
/*
 * components/leave_a_review/cmp_97643450-7547-4523-9827-3a91e0517d97/component.css
 */
#cmp_97643450-7547-4523-9827-3a91e0517d97 {
	background-color: #FFFFFF;
}

#cmp_97643450-7547-4523-9827-3a91e0517d97 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_97643450-7547-4523-9827-3a91e0517d97 h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_97643450-7547-4523-9827-3a91e0517d97 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_97643450-7547-4523-9827-3a91e0517d97 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_97643450-7547-4523-9827-3a91e0517d97 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_97643450-7547-4523-9827-3a91e0517d97 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_97643450-7547-4523-9827-3a91e0517d97 .btn {
	background-color: #3BB44A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_97643450-7547-4523-9827-3a91e0517d97 .btn:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

#cmp_97643450-7547-4523-9827-3a91e0517d97 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_97643450-7547-4523-9827-3a91e0517d97 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/leave_a_review/cmp_adf1a47c-49ee-402c-b602-3ee687c3737a/component.css
 */
#cmp_adf1a47c-49ee-402c-b602-3ee687c3737a {
	background-color: #FFFFFF;
}

#cmp_adf1a47c-49ee-402c-b602-3ee687c3737a h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_adf1a47c-49ee-402c-b602-3ee687c3737a h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_adf1a47c-49ee-402c-b602-3ee687c3737a h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_adf1a47c-49ee-402c-b602-3ee687c3737a p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_adf1a47c-49ee-402c-b602-3ee687c3737a .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_adf1a47c-49ee-402c-b602-3ee687c3737a .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_adf1a47c-49ee-402c-b602-3ee687c3737a .btn {
	background-color: #3BB44A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_adf1a47c-49ee-402c-b602-3ee687c3737a .btn:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

#cmp_adf1a47c-49ee-402c-b602-3ee687c3737a ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_adf1a47c-49ee-402c-b602-3ee687c3737a ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/pack/cmp_0cfa16dd-e5b1-4215-ad61-4a7498349ed5/component.css
 */
#cmp_0cfa16dd-e5b1-4215-ad61-4a7498349ed5 {
	background-color: #FFFFFF;
}

#cmp_0cfa16dd-e5b1-4215-ad61-4a7498349ed5 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_0cfa16dd-e5b1-4215-ad61-4a7498349ed5 h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_0cfa16dd-e5b1-4215-ad61-4a7498349ed5 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_0cfa16dd-e5b1-4215-ad61-4a7498349ed5 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_0cfa16dd-e5b1-4215-ad61-4a7498349ed5 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_0cfa16dd-e5b1-4215-ad61-4a7498349ed5 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/petite_pack/cmp_a5e05e42-57d7-42fc-9a16-be6ed1fbd370/component.css
 */
#cmp_a5e05e42-57d7-42fc-9a16-be6ed1fbd370 {
	background-color: #FFFFFF;
}

#cmp_a5e05e42-57d7-42fc-9a16-be6ed1fbd370 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_a5e05e42-57d7-42fc-9a16-be6ed1fbd370 h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_a5e05e42-57d7-42fc-9a16-be6ed1fbd370 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_a5e05e42-57d7-42fc-9a16-be6ed1fbd370 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_a5e05e42-57d7-42fc-9a16-be6ed1fbd370 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_a5e05e42-57d7-42fc-9a16-be6ed1fbd370 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/petite_pack/cmp_e285d5c0-408b-49fd-aaec-80171496c86e/component.css
 */
#cmp_e285d5c0-408b-49fd-aaec-80171496c86e {
	background-color: #FFFFFF;
}

#cmp_e285d5c0-408b-49fd-aaec-80171496c86e h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_e285d5c0-408b-49fd-aaec-80171496c86e h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_e285d5c0-408b-49fd-aaec-80171496c86e h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_e285d5c0-408b-49fd-aaec-80171496c86e p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_e285d5c0-408b-49fd-aaec-80171496c86e ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_e285d5c0-408b-49fd-aaec-80171496c86e ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/premier_pack/cmp_61967087-fe10-4e4b-a0c1-dd118358aff7/component.css
 */
#cmp_61967087-fe10-4e4b-a0c1-dd118358aff7 {
	background-color: #FFFFFF;
}

#cmp_61967087-fe10-4e4b-a0c1-dd118358aff7 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_61967087-fe10-4e4b-a0c1-dd118358aff7 h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_61967087-fe10-4e4b-a0c1-dd118358aff7 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_61967087-fe10-4e4b-a0c1-dd118358aff7 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_61967087-fe10-4e4b-a0c1-dd118358aff7 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_61967087-fe10-4e4b-a0c1-dd118358aff7 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/premier_pack/cmp_e7229f17-9595-4d17-9a96-f87ca9efd8a9/component.css
 */
#cmp_e7229f17-9595-4d17-9a96-f87ca9efd8a9 {
	background-color: #FFFFFF;
}

#cmp_e7229f17-9595-4d17-9a96-f87ca9efd8a9 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_e7229f17-9595-4d17-9a96-f87ca9efd8a9 h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_e7229f17-9595-4d17-9a96-f87ca9efd8a9 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_e7229f17-9595-4d17-9a96-f87ca9efd8a9 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_e7229f17-9595-4d17-9a96-f87ca9efd8a9 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_e7229f17-9595-4d17-9a96-f87ca9efd8a9 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/shop/listing/cmp_3bc25d3d-0553-4d2c-adc0-4f6fb2175aff/component.css
 */
#cmp_3bc25d3d-0553-4d2c-adc0-4f6fb2175aff {
	background-color: #FFFFFF;
}

#cmp_3bc25d3d-0553-4d2c-adc0-4f6fb2175aff h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_3bc25d3d-0553-4d2c-adc0-4f6fb2175aff h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_3bc25d3d-0553-4d2c-adc0-4f6fb2175aff h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_3bc25d3d-0553-4d2c-adc0-4f6fb2175aff p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_3bc25d3d-0553-4d2c-adc0-4f6fb2175aff  {
	padding-bottom: 20px;
}
/*
 * components/shop/listing/cmp_71973c18-e502-4fd9-91c2-f54ffe91b8c9/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_ad4d566e-b317-40fb-81f0-81416775597a/component.css
 */
#cmp_ad4d566e-b317-40fb-81f0-81416775597a {
    padding: 20px 0;

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

#cmp_ad4d566e-b317-40fb-81f0-81416775597a ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_e627a854-719d-4a99-9481-66ea23dfbcda/component.css
 */
#cmp_e627a854-719d-4a99-9481-66ea23dfbcda {
    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_e627a854-719d-4a99-9481-66ea23dfbcda ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/product/cmp_b08233aa-2599-4c07-b4d1-e6d58b809f4e/component.css
 */
#cmp_b08233aa-2599-4c07-b4d1-e6d58b809f4e .shop-product__name {
	margin: 0 0 10px 0;
}

#cmp_b08233aa-2599-4c07-b4d1-e6d58b809f4e .shop-product__price {
	margin: 0 0 20px 0;
}

#cmp_b08233aa-2599-4c07-b4d1-e6d58b809f4e .shop-product select {
	width: auto;
}

#cmp_b08233aa-2599-4c07-b4d1-e6d58b809f4e .shop-product__add-to-cart {
	margin: 0 0 20px 0;
}

#cmp_b08233aa-2599-4c07-b4d1-e6d58b809f4e .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin: 0 0 40px 0;
}

#cmp_b08233aa-2599-4c07-b4d1-e6d58b809f4e .shop-product__review-share-desktop .col-xs-6 {
	padding: 10px 0 0 0;
}

#cmp_b08233aa-2599-4c07-b4d1-e6d58b809f4e .shop-product__review-share-desktop .col-xs-6 + .col-xs-6 {
	border-left: 1px solid #E1E1E1;
}

#cmp_b08233aa-2599-4c07-b4d1-e6d58b809f4e  {
	padding-top: 0;
}
/*
 * components/shop/product/cmp_caaf5cf9-bac8-49f8-aa8f-3aa4d2dff81e/component.css
 */
#cmp_caaf5cf9-bac8-49f8-aa8f-3aa4d2dff81e.shop-product-header {
	padding: 50px 0 15px 0;
}

/*
 * components/sold_out/cmp_ae65b2b5-6980-4525-8620-6e087661f0bf/component.css
 */

/*
 * components/sold_out/cmp_e9e1fc34-75d0-49c3-809a-21cbcf695e81/component.css
 */
#cmp_e9e1fc34-75d0-49c3-809a-21cbcf695e81 {
	background-color: #FFFFFF;
}

#cmp_e9e1fc34-75d0-49c3-809a-21cbcf695e81 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_e9e1fc34-75d0-49c3-809a-21cbcf695e81 h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_e9e1fc34-75d0-49c3-809a-21cbcf695e81 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_e9e1fc34-75d0-49c3-809a-21cbcf695e81 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_e9e1fc34-75d0-49c3-809a-21cbcf695e81 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_e9e1fc34-75d0-49c3-809a-21cbcf695e81 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_e9e1fc34-75d0-49c3-809a-21cbcf695e81 .btn {
	background-color: #3BB44A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_e9e1fc34-75d0-49c3-809a-21cbcf695e81 .btn:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

#cmp_e9e1fc34-75d0-49c3-809a-21cbcf695e81  {
	padding-top: 0;
}
/*
 * components/subscribe/cmp_4575d632-fe46-4a0a-8c71-34caf6f8fdb5/component.css
 */

/*
 * components/subscribe/cmp_672d2388-daa2-4df6-a433-ffa8dc90043a/component.css
 */
#cmp_672d2388-daa2-4df6-a433-ffa8dc90043a {
	background-color: #FFFFFF;
}

#cmp_672d2388-daa2-4df6-a433-ffa8dc90043a h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_672d2388-daa2-4df6-a433-ffa8dc90043a h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_672d2388-daa2-4df6-a433-ffa8dc90043a h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_672d2388-daa2-4df6-a433-ffa8dc90043a p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_672d2388-daa2-4df6-a433-ffa8dc90043a  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_37090ed9-2e04-490e-a14b-8c921c76e2f3/component.css
 */
#cmp_37090ed9-2e04-490e-a14b-8c921c76e2f3 {
	padding: 50px 0 15px 0;
}

/*
 * components/subscribe_flow/survey_step/cmp_869e55a2-c3db-4ced-8297-78f2df111264/component.css
 */
.survey:first-of-type {
    padding: 0 0 50px 0;
}
#cmp_869e55a2-c3db-4ced-8297-78f2df111264  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/terms_step/cmp_35725e9f-26ec-4edd-b9b7-b6a294ab09af/component.css
 */

/*
 * components/subscribe_flow/terms_step/cmp_5f310a69-9204-4d25-9e0a-155c9ea58cd0/component.css
 */
#cmp_5f310a69-9204-4d25-9e0a-155c9ea58cd0 {
	background-color: #FFFFFF;
}

#cmp_5f310a69-9204-4d25-9e0a-155c9ea58cd0 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_5f310a69-9204-4d25-9e0a-155c9ea58cd0 h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_5f310a69-9204-4d25-9e0a-155c9ea58cd0 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_5f310a69-9204-4d25-9e0a-155c9ea58cd0 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

/*
 * components/subscribe_flow/terms_step/cmp_a1080398-208d-4b2a-a76b-5b950b599e80/component.css
 */
#cmp_a1080398-208d-4b2a-a76b-5b950b599e80 {
	padding: 50px 0 15px 0;
}

/*
 * components/subscribe_flow/variant_step/cmp_8d504081-9cbc-4dfc-ad95-2bd614974d00/component.css
 */

/*
 * components/subscribe_flow/variant_step/cmp_a9d7eee4-2f34-4493-846b-b68bc3389a06/component.css
 */
#cmp_a9d7eee4-2f34-4493-846b-b68bc3389a06 {
	padding: 50px 0 15px 0;
}

/*
 * components/view-cart/cmp_d6d3b26e-402b-40f3-a367-7c47430fd656/component.css
 */
#cmp_d6d3b26e-402b-40f3-a367-7c47430fd656 {
	padding: 15px 15px 100px 15px;
}

#cmp_d6d3b26e-402b-40f3-a367-7c47430fd656 .cart-thead {
	border-bottom: 1px solid #E1E1E1;
	padding: 10px 0;
}

#cmp_d6d3b26e-402b-40f3-a367-7c47430fd656 .cart-thead h3 {
	text-transform: uppercase;
}

#cmp_d6d3b26e-402b-40f3-a367-7c47430fd656 .cart-item {
	border: 1px solid #E1E1E1;
	padding: 25px 0;
	position: relative;
}

#cmp_d6d3b26e-402b-40f3-a367-7c47430fd656 .product-main {
	margin: 0 0 15px 0;
}

#cmp_d6d3b26e-402b-40f3-a367-7c47430fd656 .product-label p {
	margin: 0;
}

#cmp_d6d3b26e-402b-40f3-a367-7c47430fd656 .product-label .info {
	color: #3BB44A;
	text-align: right;
	text-transform: uppercase;
}

#cmp_d6d3b26e-402b-40f3-a367-7c47430fd656 .product-label .meta {
	color: #49494A;
	font-size: 16px;
}

#cmp_d6d3b26e-402b-40f3-a367-7c47430fd656 .product-rem-btn {
	position: absolute;
	right: 1%;
	top: 1%;
}

#cmp_d6d3b26e-402b-40f3-a367-7c47430fd656 figure {
	margin: 0 0 15px 0;
}

#cmp_d6d3b26e-402b-40f3-a367-7c47430fd656 .cart-subtotal {
	margin: 50px 0 0 0;
}

#cmp_d6d3b26e-402b-40f3-a367-7c47430fd656 .cart-subtotal h2 {
	margin: 0 0 15px 0;
}

#cmp_d6d3b26e-402b-40f3-a367-7c47430fd656 .cart-subtotal h3 {
	margin: 0 0 25px 0;
	text-transform: uppercase;
}

#cmp_d6d3b26e-402b-40f3-a367-7c47430fd656 .cart-subtotal p {
	margin: 0 0 25px 0;
}

@media (min-width: 768px) {
	#cmp_d6d3b26e-402b-40f3-a367-7c47430fd656 .cart-item {
		border-width: 0 0 1px 0;
	}
	#cmp_d6d3b26e-402b-40f3-a367-7c47430fd656 .product-rem-btn {
		top: 40%;
	}
	#cmp_d6d3b26e-402b-40f3-a367-7c47430fd656 figure {
		margin: 0;
	}
}

/*
 * components/view-cart/cmp_d9844614-06de-42cb-a1a4-f0a8b75c8ae9/component.css
 */
#cmp_d9844614-06de-42cb-a1a4-f0a8b75c8ae9 {
	background-color: #FFFFFF;
}

#cmp_d9844614-06de-42cb-a1a4-f0a8b75c8ae9 h1 {
	color: #49494A;
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 25px 0;
}

#cmp_d9844614-06de-42cb-a1a4-f0a8b75c8ae9 h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_d9844614-06de-42cb-a1a4-f0a8b75c8ae9 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_d9844614-06de-42cb-a1a4-f0a8b75c8ae9 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

/*
 * components/young_artist/cmp_1058bd4e-022c-4797-a50d-6b46373147a6/component.css
 */
#cmp_1058bd4e-022c-4797-a50d-6b46373147a6 {
	background-color: #FFFFFF;
}

#cmp_1058bd4e-022c-4797-a50d-6b46373147a6 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_1058bd4e-022c-4797-a50d-6b46373147a6 h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_1058bd4e-022c-4797-a50d-6b46373147a6 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_1058bd4e-022c-4797-a50d-6b46373147a6 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_1058bd4e-022c-4797-a50d-6b46373147a6 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_1058bd4e-022c-4797-a50d-6b46373147a6 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/young_artist/cmp_a6e8268a-941c-47c1-bd6d-d81c67a38eaa/component.css
 */
#cmp_a6e8268a-941c-47c1-bd6d-d81c67a38eaa {
	background-color: #FFFFFF;
}

#cmp_a6e8268a-941c-47c1-bd6d-d81c67a38eaa h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_a6e8268a-941c-47c1-bd6d-d81c67a38eaa h2 {
	color: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_a6e8268a-941c-47c1-bd6d-d81c67a38eaa h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_a6e8268a-941c-47c1-bd6d-d81c67a38eaa p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_a6e8268a-941c-47c1-bd6d-d81c67a38eaa ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_a6e8268a-941c-47c1-bd6d-d81c67a38eaa ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}