/*
 * css/style.css
 */
/* Globals
------------------------------*/
body {
	background-color: rgb(80, 227, 194);
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
	letter-spacing: 0.077em;
	line-height: 1.5em;
}

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

h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 60px;
}

h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

p {
	line-height: 1.5em;
}

a,
.btn-link {
	color: rgb(80, 227, 194);
}

a:hover,
a:focus,
a:active,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
	color: #333333;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.nav-pills .nav-link.active,
.nav-pills .nav-link.active:focus,
.nav-pills .nav-link.active:hover,
.nav-pills .nav-link.active:active,
.nav-pills .nav-item.open .nav-link,
.nav-pills .nav-item.open .nav-link:focus,
.nav-pills .nav-item.open .nav-link:hover,
.nav-pills .nav-item.open .nav-link:active {
	background-color: rgb(80, 227, 194);
}

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

.panel-body {
	padding: 15px;
}

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

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

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

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

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

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

.btn-small {
	padding: 0.6em 1.8em;
	border: 1px solid rgb(80, 227, 194);
	border-radius: 15px;
	color: rgb(80, 227, 194);
}

.btn-small:hover,
.btn-small:focus,
.btn-small:active,
.btn-small:active:focus {
	background-color: #333333;
	border: 1px solid #333333;
	color: rgb(80, 227, 194) !important;
}

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

.btn-primary {
	background-color: rgb(80, 227, 194);
	color: #FFFFFF;
	font-family: Poppins;
	font-size: 12px;
	letter-spacing: 0.167em;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus {
	background-color: #333333;
	color: #FFFFFF;
}

.btn-secondary {
	background-color: #333333;
	color: #FAFAFA;
	font-family: Poppins;
	font-size: 12px;
	letter-spacing: 0.167em;
}

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

.btn-empty {
	background-color: transparent;
	color: rgb(80, 227, 194);
	border: 1px solid rgb(80, 227, 194);
}

.btn-empty:hover,
.btn-empty:focus,
.btn-empty:active,
.btn-empty:active:focus {
	background-color: #333333;
}

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

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

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

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

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

	padding-top: .9375rem;
	padding-bottom: .9375rem;
}

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

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

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

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

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

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

/* 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(80, 227, 194);
	border: none;
	border-radius: 25px;
	color: #FFFFFF;
	font-family: Poppins;
	font-size: 12px;
	letter-spacing: 0.167em;
	padding: 1.2em 5em;
}

.checkout_content #checkout_button:hover,
.checkout_content #checkout_button:focus,
.checkout_content #checkout_button:active,
.checkout_content #checkout_button:active:focus {
	background-color: #333333;
	color: #FFFFFF;
}

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

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

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

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

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

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

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

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

.address-container {
	width: 100%;
}

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

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

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

.address-container {
	width: 100%;
}

.errors {
	margin: 25px 0;
}

.cratejoy-loading-icon {
	color: rgb(80, 227, 194);
}

.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(80, 227, 194);
	color: rgb(80, 227, 194);
	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: #333333;
	border-color: #333333;
	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/aprilsheets25/cmp_1552eae4-4985-4472-9b23-02fd4bd0549b/component.css
 */
#cmp_1552eae4-4985-4472-9b23-02fd4bd0549b img {
	max-width: 100%;
}

/*
 * components/aprilsheets25/cmp_25afa503-650a-427b-b753-067599947391/component.css
 */
#cmp_25afa503-650a-427b-b753-067599947391 img {
	max-width: 100%;
}

/*
 * components/aprilsheets25/cmp_562ce921-7674-46a2-a178-4c5113724499/component.css
 */
#cmp_562ce921-7674-46a2-a178-4c5113724499 img {
	max-width: 100%;
}

/*
 * components/aprilsheets25/cmp_a52f6cd9-f28c-4bb6-aeaa-8ed7defa9f20/component.css
 */
#cmp_a52f6cd9-f28c-4bb6-aeaa-8ed7defa9f20 {
	background-color: #FFFFFF;
}

#cmp_a52f6cd9-f28c-4bb6-aeaa-8ed7defa9f20 h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 60px;
}

#cmp_a52f6cd9-f28c-4bb6-aeaa-8ed7defa9f20 h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_a52f6cd9-f28c-4bb6-aeaa-8ed7defa9f20 h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_a52f6cd9-f28c-4bb6-aeaa-8ed7defa9f20 p {
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_a52f6cd9-f28c-4bb6-aeaa-8ed7defa9f20 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_a52f6cd9-f28c-4bb6-aeaa-8ed7defa9f20 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/aprilsheets25/cmp_b73e439b-ad9d-45b3-ba63-a6aee95c000f/component.css
 */
#cmp_b73e439b-ad9d-45b3-ba63-a6aee95c000f img {
	max-width: 100%;
}

/*
 * components/aprilsheets25/cmp_f5d7d937-4d09-41f8-bd5c-ce52b215b5f3/component.css
 */
#cmp_f5d7d937-4d09-41f8-bd5c-ce52b215b5f3 img {
	max-width: 100%;
}

/*
 * components/aprilsheets25/cmp_fbd7d3a3-70dc-4dd0-974f-3886fced317f/component.css
 */
#cmp_fbd7d3a3-70dc-4dd0-974f-3886fced317f img {
	max-width: 100%;
}

/*
 * components/augustsheets14/cmp_08db6e6b-34cb-4262-ada9-c2361b2f3fdd/component.css
 */
#cmp_08db6e6b-34cb-4262-ada9-c2361b2f3fdd img {
	max-width: 100%;
}

/*
 * components/augustsheets14/cmp_370636ac-8818-4deb-bf90-2d878e2d324b/component.css
 */
#cmp_370636ac-8818-4deb-bf90-2d878e2d324b img {
	max-width: 100%;
}

/*
 * components/augustsheets14/cmp_682bf1f4-5d85-48a0-91d2-a97a7d2f6282/component.css
 */
#cmp_682bf1f4-5d85-48a0-91d2-a97a7d2f6282 img {
	max-width: 100%;
}

/*
 * components/augustsheets14/cmp_89573254-1559-4d2c-9cb6-a1ecb56ffb3b/component.css
 */
#cmp_89573254-1559-4d2c-9cb6-a1ecb56ffb3b {
	background-color: #FFFFFF;
}

#cmp_89573254-1559-4d2c-9cb6-a1ecb56ffb3b h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 60px;
}

#cmp_89573254-1559-4d2c-9cb6-a1ecb56ffb3b h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_89573254-1559-4d2c-9cb6-a1ecb56ffb3b h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_89573254-1559-4d2c-9cb6-a1ecb56ffb3b p {
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_89573254-1559-4d2c-9cb6-a1ecb56ffb3b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_89573254-1559-4d2c-9cb6-a1ecb56ffb3b ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/augustsheets14/cmp_ad2305a5-6cd5-44c4-8320-379433e2ea5f/component.css
 */
#cmp_ad2305a5-6cd5-44c4-8320-379433e2ea5f img {
	max-width: 100%;
}

/*
 * components/augustsheets14/cmp_b6af7188-cf36-4612-ba64-77a628704df8/component.css
 */
#cmp_b6af7188-cf36-4612-ba64-77a628704df8 img {
	max-width: 100%;
}

/*
 * components/augustsheets14/cmp_fb11c91a-15f2-4867-8d4a-ab96324ac7fe/component.css
 */
#cmp_fb11c91a-15f2-4867-8d4a-ab96324ac7fe img {
	max-width: 100%;
}

/*
 * components/basicstrokes/cmp_a82dea3f-3be3-46b9-bf7c-1c2f75519665/component.css
 */
#cmp_a82dea3f-3be3-46b9-bf7c-1c2f75519665 img {
	max-width: 100%;
}

/*
 * components/checkout/cmp_978af9cf-ca03-4899-a565-247f83be2c80/component.css
 */
#cmp_978af9cf-ca03-4899-a565-247f83be2c80 .checkout_content {
  overflow: auto;
}

#cmp_978af9cf-ca03-4899-a565-247f83be2c80 .checkout_content section {
  border-color: #F5F5F5;
}

#cmp_978af9cf-ca03-4899-a565-247f83be2c80 .cart_listing table {
  border-color: #F5F5F5;
}

/*
 * components/checkout/cmp_dbb8ced3-b084-42e5-855c-c8ead7d5264b/component.css
 */
#cmp_dbb8ced3-b084-42e5-855c-c8ead7d5264b {
	background-color: #FFFFFF;
}

#cmp_dbb8ced3-b084-42e5-855c-c8ead7d5264b h1 {
	color: #333333;
	font-family: Lato;
	font-size: 24px;
}

#cmp_dbb8ced3-b084-42e5-855c-c8ead7d5264b h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_dbb8ced3-b084-42e5-855c-c8ead7d5264b h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_dbb8ced3-b084-42e5-855c-c8ead7d5264b p {
	color: rgb(228, 63, 63);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_dbb8ced3-b084-42e5-855c-c8ead7d5264b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(228, 63, 63);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_dbb8ced3-b084-42e5-855c-c8ead7d5264b ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(228, 63, 63);
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/contact/cmp_25895cbf-bd98-49cc-9f6e-bd770582ca0f/component.css
 */
#cmp_25895cbf-bd98-49cc-9f6e-bd770582ca0f {
	background-color: #FFFFFF;
}

#cmp_25895cbf-bd98-49cc-9f6e-bd770582ca0f h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 60px;
}

#cmp_25895cbf-bd98-49cc-9f6e-bd770582ca0f h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_25895cbf-bd98-49cc-9f6e-bd770582ca0f h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_25895cbf-bd98-49cc-9f6e-bd770582ca0f p {
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 18px;
}

/*
 * components/contact/cmp_da5881e9-7989-4f7e-ab2a-d7ac7d3e587b/component.css
 */
#cmp_da5881e9-7989-4f7e-ab2a-d7ac7d3e587b {
	background-color: #FFFFFF;
}

#cmp_da5881e9-7989-4f7e-ab2a-d7ac7d3e587b h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 60px;
}

#cmp_da5881e9-7989-4f7e-ab2a-d7ac7d3e587b h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_da5881e9-7989-4f7e-ab2a-d7ac7d3e587b h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_da5881e9-7989-4f7e-ab2a-d7ac7d3e587b p {
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/customer/account/cmp_962d406c-cb70-4621-a5b8-9fad5c5624a0/component.css
 */

/*
 * components/customer/edit/cmp_79f4085b-9a55-415a-bf7e-fb3e882787e1/component.css
 */

/*
 * components/customer/forgot_password/cmp_3be2fb5c-d695-4389-95fa-ffa6670bb8b4/component.css
 */
#cmp_3be2fb5c-d695-4389-95fa-ffa6670bb8b4 {
	background-color: #FFFFFF;
}

#cmp_3be2fb5c-d695-4389-95fa-ffa6670bb8b4 h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 60px;
}

#cmp_3be2fb5c-d695-4389-95fa-ffa6670bb8b4 h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_3be2fb5c-d695-4389-95fa-ffa6670bb8b4 h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_3be2fb5c-d695-4389-95fa-ffa6670bb8b4 p {
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_3be2fb5c-d695-4389-95fa-ffa6670bb8b4  {
	padding: 50px 0;
}
#cmp_3be2fb5c-d695-4389-95fa-ffa6670bb8b4 h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/forgot_password/cmp_bc9bd60d-9f2d-469e-a634-6dc7e4bce11d/component.css
 */

#cmp_bc9bd60d-9f2d-469e-a634-6dc7e4bce11d  {
	padding-bottom: 120px;
}
/*
 * components/customer/login/cmp_04688587-1847-4f74-aaeb-1c1576854379/component.css
 */

#cmp_04688587-1847-4f74-aaeb-1c1576854379  {
	padding-bottom: 120px;
}
/*
 * components/customer/login/cmp_ca849e67-4527-4ca4-b76b-1069af2f366f/component.css
 */
#cmp_ca849e67-4527-4ca4-b76b-1069af2f366f {
	background-color: #FFFFFF;
}

#cmp_ca849e67-4527-4ca4-b76b-1069af2f366f h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 60px;
}

#cmp_ca849e67-4527-4ca4-b76b-1069af2f366f h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_ca849e67-4527-4ca4-b76b-1069af2f366f h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_ca849e67-4527-4ca4-b76b-1069af2f366f p {
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_ca849e67-4527-4ca4-b76b-1069af2f366f  {
	padding: 50px 0;
}
#cmp_ca849e67-4527-4ca4-b76b-1069af2f366f h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/order/cmp_08623d29-c245-41cb-946b-73df97bbcf76/component.css
 */

/*
 * components/customer/password_reset/cmp_41f673a1-6272-47a8-9ac1-335871fb0d49/component.css
 */

#cmp_41f673a1-6272-47a8-9ac1-335871fb0d49  {
	padding-bottom: 120px;
}
/*
 * components/customer/password_reset/cmp_ac4629cc-c857-4bca-8b03-bf27b0196e06/component.css
 */
#cmp_ac4629cc-c857-4bca-8b03-bf27b0196e06 {
	background-color: #FFFFFF;
}

#cmp_ac4629cc-c857-4bca-8b03-bf27b0196e06 h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 60px;
}

#cmp_ac4629cc-c857-4bca-8b03-bf27b0196e06 h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_ac4629cc-c857-4bca-8b03-bf27b0196e06 h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_ac4629cc-c857-4bca-8b03-bf27b0196e06 p {
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_ac4629cc-c857-4bca-8b03-bf27b0196e06  {
	padding: 50px 0;
}
#cmp_ac4629cc-c857-4bca-8b03-bf27b0196e06 h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/thank_you/cmp_877ee5eb-b3a4-449f-9313-f566cd65688c/component.css
 */

/*
 * components/decembersheets1/cmp_21b72369-13d7-4ea8-b395-d01610fa714f/component.css
 */
#cmp_21b72369-13d7-4ea8-b395-d01610fa714f img {
	max-width: 100%;
}

/*
 * components/decembersheets1/cmp_26b272f0-5d5c-4f5e-99ad-9d06dbfe4d44/component.css
 */
#cmp_26b272f0-5d5c-4f5e-99ad-9d06dbfe4d44 img {
	max-width: 100%;
}

/*
 * components/decembersheets1/cmp_41d86f62-fdd3-435a-bab6-173f20870aa3/component.css
 */
#cmp_41d86f62-fdd3-435a-bab6-173f20870aa3 img {
	max-width: 100%;
}

/*
 * components/decembersheets1/cmp_459c7e9e-a0aa-48c4-bd5b-a0a57af2be39/component.css
 */
#cmp_459c7e9e-a0aa-48c4-bd5b-a0a57af2be39 img {
	max-width: 100%;
}

/*
 * components/decembersheets1/cmp_79e83220-e094-4811-be73-32f31d763fc3/component.css
 */
#cmp_79e83220-e094-4811-be73-32f31d763fc3 {
	background-color: #FFFFFF;
}

#cmp_79e83220-e094-4811-be73-32f31d763fc3 h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 60px;
}

#cmp_79e83220-e094-4811-be73-32f31d763fc3 h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_79e83220-e094-4811-be73-32f31d763fc3 h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_79e83220-e094-4811-be73-32f31d763fc3 p {
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_79e83220-e094-4811-be73-32f31d763fc3 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_79e83220-e094-4811-be73-32f31d763fc3 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/decembersheets1/cmp_b24468ce-fb4e-464e-b926-1f6bb24b68c9/component.css
 */
#cmp_b24468ce-fb4e-464e-b926-1f6bb24b68c9 img {
	max-width: 100%;
}

/*
 * components/decembersheets1/cmp_bbbcfab1-40b4-4876-a46d-bb8eed0c7a21/component.css
 */
#cmp_bbbcfab1-40b4-4876-a46d-bb8eed0c7a21 img {
	max-width: 100%;
}

/*
 * components/faq/cmp_06fb4ac6-a22f-481b-ba68-be26d30c7eb0/component.css
 */
#cmp_06fb4ac6-a22f-481b-ba68-be26d30c7eb0 {
	background-color: #FFFFFF;
}

#cmp_06fb4ac6-a22f-481b-ba68-be26d30c7eb0 h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 60px;
}

#cmp_06fb4ac6-a22f-481b-ba68-be26d30c7eb0 h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_06fb4ac6-a22f-481b-ba68-be26d30c7eb0 h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_06fb4ac6-a22f-481b-ba68-be26d30c7eb0 p {
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/faq/cmp_f6fec3ac-aa5c-49c7-b381-c261e3e51ea9/component.css
 */
#cmp_f6fec3ac-aa5c-49c7-b381-c261e3e51ea9 {
	background-color: #FFFFFF;
}

#cmp_f6fec3ac-aa5c-49c7-b381-c261e3e51ea9 h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 60px;
}

#cmp_f6fec3ac-aa5c-49c7-b381-c261e3e51ea9 h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_f6fec3ac-aa5c-49c7-b381-c261e3e51ea9 h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_f6fec3ac-aa5c-49c7-b381-c261e3e51ea9 p {
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 24px;
}

#cmp_f6fec3ac-aa5c-49c7-b381-c261e3e51ea9 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_f6fec3ac-aa5c-49c7-b381-c261e3e51ea9 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_f6fec3ac-aa5c-49c7-b381-c261e3e51ea9 .btn {
	background-color: rgb(80, 227, 194);
	color: #FFFFFF;
	font-family: Poppins;
	font-size: 12px;
}

#cmp_f6fec3ac-aa5c-49c7-b381-c261e3e51ea9 .btn:hover {
	background-color: rgb(155, 155, 155);
	color: #FFFFFF;
}

/*
 * components/februarysheets18/cmp_02bbd090-b6ca-460d-808b-002e30ca085c/component.css
 */
#cmp_02bbd090-b6ca-460d-808b-002e30ca085c img {
	max-width: 100%;
}

/*
 * components/februarysheets18/cmp_7124a219-a919-44e9-9f09-92ddcc4dd648/component.css
 */
#cmp_7124a219-a919-44e9-9f09-92ddcc4dd648 {
	background-color: #FFFFFF;
}

#cmp_7124a219-a919-44e9-9f09-92ddcc4dd648 h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 60px;
}

#cmp_7124a219-a919-44e9-9f09-92ddcc4dd648 h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_7124a219-a919-44e9-9f09-92ddcc4dd648 h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_7124a219-a919-44e9-9f09-92ddcc4dd648 p {
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_7124a219-a919-44e9-9f09-92ddcc4dd648 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_7124a219-a919-44e9-9f09-92ddcc4dd648 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/februarysheets18/cmp_86eec825-651b-4f94-b79d-82a47e06d42d/component.css
 */
#cmp_86eec825-651b-4f94-b79d-82a47e06d42d img {
	max-width: 100%;
}

/*
 * components/februarysheets18/cmp_cdc39743-56c9-44cb-911c-2adf91f9da9c/component.css
 */
#cmp_cdc39743-56c9-44cb-911c-2adf91f9da9c img {
	max-width: 100%;
}

/*
 * components/februarysheets18/cmp_cee6ab1d-3da8-4aae-b733-807295e84c73/component.css
 */
#cmp_cee6ab1d-3da8-4aae-b733-807295e84c73 img {
	max-width: 100%;
}

/*
 * components/giftprintout/cmp_0456d153-c5ec-466e-9750-1a2eea01b44a/component.css
 */
#cmp_0456d153-c5ec-466e-9750-1a2eea01b44a {
	background-color: #FFFFFF;
}

#cmp_0456d153-c5ec-466e-9750-1a2eea01b44a h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 60px;
}

#cmp_0456d153-c5ec-466e-9750-1a2eea01b44a h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_0456d153-c5ec-466e-9750-1a2eea01b44a h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_0456d153-c5ec-466e-9750-1a2eea01b44a p {
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 24px;
}

#cmp_0456d153-c5ec-466e-9750-1a2eea01b44a ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 24px;
}

#cmp_0456d153-c5ec-466e-9750-1a2eea01b44a ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 24px;
}

/*
 * components/giftprintout/cmp_23233e0f-f4cf-499c-a50a-2a8753ba41b6/component.css
 */
#cmp_23233e0f-f4cf-499c-a50a-2a8753ba41b6 img {
	max-width: 100%;
}

/*
 * components/global/cmp_1b5fbb82-ee7f-4aae-84e4-82e55822d379/component.css
 */
#cmp_1b5fbb82-ee7f-4aae-84e4-82e55822d379.navbar {
	background-color: rgb(80, 227, 194);
	border-radius: 0;
	border-top: 4px solid rgb(80, 227, 194);
	padding: 0;

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

#cmp_1b5fbb82-ee7f-4aae-84e4-82e55822d379.navbar a:hover,
#cmp_1b5fbb82-ee7f-4aae-84e4-82e55822d379.navbar a:focus,
#cmp_1b5fbb82-ee7f-4aae-84e4-82e55822d379.navbar a:active {
	color: #333333;
}

#cmp_1b5fbb82-ee7f-4aae-84e4-82e55822d379 .navbar-brand {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

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

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

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

	-webkit-flex-shrink: 0;
	-moz-flex-shrink: 0;
	-ms-flex-shrink: 0;
	flex-shrink: 0;

	max-width: 100%;
	color: #333333;
	font-family: Poppins;
	font-size: 28px;
	margin: 0;
	padding: 15px;
	text-align: center;
}

#cmp_1b5fbb82-ee7f-4aae-84e4-82e55822d379 .navbar-brand img {
	max-width: 100%;
}

#cmp_1b5fbb82-ee7f-4aae-84e4-82e55822d379.navbar .navbar-toggler {
	background-color: rgb(80, 227, 194);
	border-radius: 0;
	color: #FFFFFF;
	font-size: 12px;
	letter-spacing: 0.167em;
	padding: 15px;
	text-transform: uppercase;
}

#cmp_1b5fbb82-ee7f-4aae-84e4-82e55822d379.navbar .navbar-toggler:hover,
#cmp_1b5fbb82-ee7f-4aae-84e4-82e55822d379.navbar .navbar-toggler:focus,
#cmp_1b5fbb82-ee7f-4aae-84e4-82e55822d379.navbar .navbar-toggler:active {
	background-color: #333333;
	color: #FFFFFF;
}

#cmp_1b5fbb82-ee7f-4aae-84e4-82e55822d379 .navbar-nav {
	align-items: center;
	display: flex;
	flex-direction: column;
	margin: 0;
	padding-top: 15px;
	padding-bottom: 15px;
}

#cmp_1b5fbb82-ee7f-4aae-84e4-82e55822d379 .navbar-nav li {
	padding-top: 10px;
	padding-bottom: 10px;
}

#cmp_1b5fbb82-ee7f-4aae-84e4-82e55822d379 .navbar-nav .nav-link {
	color: rgb(0, 0, 0);
	font-family: Poppins;
	font-size: 12px;;
	letter-spacing: 1px;
	padding: 8px 18px;
	text-align: center;
	text-transform: uppercase;
}

@media (min-width: 768px) {
	#cmp_1b5fbb82-ee7f-4aae-84e4-82e55822d379.navbar {
		-webkit-align-items: center;
		-moz-align-items: center;
		-ms-align-items: center;
		align-items: center;

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

		padding: 15px;
		padding-bottom: 0;
	}
	#cmp_1b5fbb82-ee7f-4aae-84e4-82e55822d379 .navbar-brand {
		padding: 0;
		padding-bottom: 15px;
	}
	#cmp_1b5fbb82-ee7f-4aae-84e4-82e55822d379 .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_1b5fbb82-ee7f-4aae-84e4-82e55822d379 .navbar-nav {
		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;

		-webkit-justify-content: space-around;
		-moz-justify-content: space-around;
		-ms-justify-content: space-around;
		justify-content: space-around;

		padding: 0;
		padding-bottom: 15px;
	}
	#cmp_1b5fbb82-ee7f-4aae-84e4-82e55822d379 .navbar-nav li {
		padding: 0;
	}
}

#cmp_1b5fbb82-ee7f-4aae-84e4-82e55822d379 ol {
    list-style: decimal;
    list-style-position: inside;
    color: ;
    font-family: ;
    font-size: ;
}

#cmp_1b5fbb82-ee7f-4aae-84e4-82e55822d379 ul {
    list-style: none;
    list-style-position: inside;
    color: ;
    font-family: ;
    font-size: ;
}

/*
 * components/global/cmp_2df253ce-d63f-45f4-982d-5a6e2850faba/component.css
 */
#cmp_2df253ce-d63f-45f4-982d-5a6e2850faba.footer {
	background-color: rgb(255, 255, 255);
	font-family: Poppins;
	color: #B0B0B0;
	padding-top: 10px;
	padding-bottom: 10px;

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

#cmp_2df253ce-d63f-45f4-982d-5a6e2850faba .footer-social {
	padding-top: 15px;
	padding-bottom: 15px;
	text-align: center;
}

#cmp_2df253ce-d63f-45f4-982d-5a6e2850faba .footer-social a {
	display: inline-block;
	padding-left: 5px;
	padding-right: 5px;
}

#cmp_2df253ce-d63f-45f4-982d-5a6e2850faba .footer-social svg path {
	fill: rgb(80, 227, 194);
}

#cmp_2df253ce-d63f-45f4-982d-5a6e2850faba .footer-social a:hover svg path,
#cmp_2df253ce-d63f-45f4-982d-5a6e2850faba .footer-social a:focus svg path,
#cmp_2df253ce-d63f-45f4-982d-5a6e2850faba .footer-social a:active svg path {
	fill: #333333;
}

#cmp_2df253ce-d63f-45f4-982d-5a6e2850faba.footer .toggler-container {
	padding-top: 15px;
	padding-bottom: 15px;
	text-align: center;
}

#cmp_2df253ce-d63f-45f4-982d-5a6e2850faba.footer .navbar-toggler {
	color: rgb(80, 227, 194);
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

#cmp_2df253ce-d63f-45f4-982d-5a6e2850faba .footer-cc {
	border-top: 1px solid #e1e1e1;
	letter-spacing: 1px;
	text-align: center;
}

#cmp_2df253ce-d63f-45f4-982d-5a6e2850faba .footer-cc img {
	padding-top: 15px;
	padding-bottom: 15px;
}

#cmp_2df253ce-d63f-45f4-982d-5a6e2850faba .footer-cc p,
#cmp_2df253ce-d63f-45f4-982d-5a6e2850faba .footer-tributes p {
	padding-top: 15px;
	padding-bottom: 15px;
	margin: 0;
}

#cmp_2df253ce-d63f-45f4-982d-5a6e2850faba .footer-tributes p a {
	color: #B0B0B0;
	padding: 0;
}

#cmp_2df253ce-d63f-45f4-982d-5a6e2850faba .footer-tributes p a:hover,
#cmp_2df253ce-d63f-45f4-982d-5a6e2850faba .footer-tributes p a:focus,
#cmp_2df253ce-d63f-45f4-982d-5a6e2850faba .footer-tributes p a:active {
	color: #B0B0B0;
	text-decoration: none;
}

#cmp_2df253ce-d63f-45f4-982d-5a6e2850faba .footer-directory {
	text-align: center;
}

#cmp_2df253ce-d63f-45f4-982d-5a6e2850faba .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_2df253ce-d63f-45f4-982d-5a6e2850faba .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_2df253ce-d63f-45f4-982d-5a6e2850faba .footer-list .footer-link {
	color: rgb(80, 227, 194);
	font-family: Poppins;
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

#cmp_2df253ce-d63f-45f4-982d-5a6e2850faba .footer-list .footer-link:hover,
#cmp_2df253ce-d63f-45f4-982d-5a6e2850faba .footer-list .footer-link:focus,
#cmp_2df253ce-d63f-45f4-982d-5a6e2850faba .footer-list .footer-link:active {
	color: #333333;
	text-decoration: none;
}

@media (max-width: 767px) {
	#cmp_2df253ce-d63f-45f4-982d-5a6e2850faba .col-sm-12,
	#cmp_2df253ce-d63f-45f4-982d-5a6e2850faba .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_2df253ce-d63f-45f4-982d-5a6e2850faba.footer {
		-webkit-align-items: flex-start;
		-moz-align-items: flex-start;
		-ms-align-items: flex-start;
		align-items: flex-start;

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

		padding-top: 25px;
		padding-bottom: 25px;
	}
	#cmp_2df253ce-d63f-45f4-982d-5a6e2850faba .footer-directory {
		-webkit-order: 1;
		-moz-order: 1;
		-ms-order: 1;
		order: 1;

		text-align: left;
	}
	#cmp_2df253ce-d63f-45f4-982d-5a6e2850faba .footer-social {
		-webkit-order: 2;
		-moz-order: 2;
		-ms-order: 2;
		order: 2;

		padding-top: 0;
		padding-bottom: 0;
		text-align: right;
	}
	#cmp_2df253ce-d63f-45f4-982d-5a6e2850faba .footer-cc {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}
	#cmp_2df253ce-d63f-45f4-982d-5a6e2850faba .footer-cc p {
		display: inline-block;
	}
}

@media (min-width: 992px) {
	#cmp_2df253ce-d63f-45f4-982d-5a6e2850faba .footer-cc {
		-webkit-order: 2;
		-moz-order: 2;
		-ms-order: 2;
		order: 2;

		border-top: none;
	}
	#cmp_2df253ce-d63f-45f4-982d-5a6e2850faba .footer-cc p {
		display: block;
	}
	#cmp_2df253ce-d63f-45f4-982d-5a6e2850faba .footer-social {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}
}

#cmp_2df253ce-d63f-45f4-982d-5a6e2850faba ol {
    list-style: decimal;
    list-style-position: inside;
    color: #B0B0B0;
    font-family: Poppins;
    font-size: ;
}

#cmp_2df253ce-d63f-45f4-982d-5a6e2850faba ul {
    list-style: none;
    list-style-position: inside;
    color: #B0B0B0;
    font-family: Poppins;
    font-size: ;
}

/*
 * components/global/cmp_723bb79b-2dc6-47aa-bf19-f02d80fb48f8/component.css
 */
#cmp_723bb79b-2dc6-47aa-bf19-f02d80fb48f8 {
	background-color: #FFFFFF;
}

#cmp_723bb79b-2dc6-47aa-bf19-f02d80fb48f8 h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 60px;
}

#cmp_723bb79b-2dc6-47aa-bf19-f02d80fb48f8 h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_723bb79b-2dc6-47aa-bf19-f02d80fb48f8 h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_723bb79b-2dc6-47aa-bf19-f02d80fb48f8 p {
	color: rgb(233, 66, 66);
	font-family: Poppins;
	font-size: 20px;
}

#cmp_723bb79b-2dc6-47aa-bf19-f02d80fb48f8 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_723bb79b-2dc6-47aa-bf19-f02d80fb48f8 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_723bb79b-2dc6-47aa-bf19-f02d80fb48f8 .btn {
	background-color: rgb(80, 227, 194);
	color: #FFFFFF;
	font-family: Poppins;
	font-size: 12px;
}

#cmp_723bb79b-2dc6-47aa-bf19-f02d80fb48f8 .btn:hover {
	background-color: rgb(155, 155, 155);
	color: #FFFFFF;
}

/*
 * components/index/cmp_1e3131a1-1666-4759-8784-9a5b7fc747e3/component.css
 */
#cmp_1e3131a1-1666-4759-8784-9a5b7fc747e3 {
	padding: 0;
	background-color: #FFFFFF;
}

#cmp_1e3131a1-1666-4759-8784-9a5b7fc747e3 .content {
	margin: 0 auto;
	padding: 50px;
}

@media (min-width: 768px) {
	#cmp_1e3131a1-1666-4759-8784-9a5b7fc747e3 .col-md-4:nth-of-type(2n + 1) {
		order: 1;
	}
	#cmp_1e3131a1-1666-4759-8784-9a5b7fc747e3 .col-md-4:nth-of-type(2n) {
		order: 2;
	}
}

#cmp_1e3131a1-1666-4759-8784-9a5b7fc747e3 h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 60px;
}

#cmp_1e3131a1-1666-4759-8784-9a5b7fc747e3 h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_1e3131a1-1666-4759-8784-9a5b7fc747e3 h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_1e3131a1-1666-4759-8784-9a5b7fc747e3 p {
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_1e3131a1-1666-4759-8784-9a5b7fc747e3 h3 {
	margin-bottom: 25px;
}
/*
 * components/index/cmp_682d864e-100f-435d-b053-ea8ca4f419ca/component.css
 */
#cmp_682d864e-100f-435d-b053-ea8ca4f419ca {
	padding: 0;
}

#cmp_682d864e-100f-435d-b053-ea8ca4f419ca .hero-content {
	background-color: #333333;
	padding: 20px;
}

#cmp_682d864e-100f-435d-b053-ea8ca4f419ca .hero-content h1 {
	color: rgb(80, 227, 194);
	font-family: Pacifico;
	font-size: 54px;
}

#cmp_682d864e-100f-435d-b053-ea8ca4f419ca .hero-content h2 {
	color: #FFFFFF;
	font-family: Poppins;
	font-size: 36px;
}

#cmp_682d864e-100f-435d-b053-ea8ca4f419ca .hero-content h3 {
	color: #FFFFFF;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_682d864e-100f-435d-b053-ea8ca4f419ca .hero-content p {
	color: #FFFFFF;
	font-family: Poppins;
	font-size: 20px;
}

#cmp_682d864e-100f-435d-b053-ea8ca4f419ca .hero-content .btn {
	background-color: rgb(80, 227, 194);
	color: #FFFFFF;
	font-family: Poppins;
	font-size: 16px;
}

#cmp_682d864e-100f-435d-b053-ea8ca4f419ca .hero-content .btn:hover {
	background-color: rgb(155, 155, 155);
	color: #FFFFFF;
}

#cmp_682d864e-100f-435d-b053-ea8ca4f419ca h1 {
	margin-top: 20px;
	margin-bottom: 10px;
}
#cmp_682d864e-100f-435d-b053-ea8ca4f419ca p {
	margin-bottom: 25px;
}
/*
 * components/index/cmp_9f6b8707-0b16-4b3e-8a70-388e619485c6/component.css
 */
#cmp_9f6b8707-0b16-4b3e-8a70-388e619485c6 {
	background-color: #FAFAFA;
}

#cmp_9f6b8707-0b16-4b3e-8a70-388e619485c6 h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 60px;
}

#cmp_9f6b8707-0b16-4b3e-8a70-388e619485c6 h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_9f6b8707-0b16-4b3e-8a70-388e619485c6 h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_9f6b8707-0b16-4b3e-8a70-388e619485c6 p {
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_9f6b8707-0b16-4b3e-8a70-388e619485c6 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_9f6b8707-0b16-4b3e-8a70-388e619485c6 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_9f6b8707-0b16-4b3e-8a70-388e619485c6 .btn {
	background-color: rgb(80, 227, 194);
	color: #FFFFFF;
	font-family: Poppins;
	font-size: 12px;
}

#cmp_9f6b8707-0b16-4b3e-8a70-388e619485c6 .btn:hover {
	background-color: rgb(155, 155, 155);
	color: #FFFFFF;
}

#cmp_9f6b8707-0b16-4b3e-8a70-388e619485c6  {
	padding: 60px 0;
}
#cmp_9f6b8707-0b16-4b3e-8a70-388e619485c6 h1 {
	margin-bottom: 15px;
}
#cmp_9f6b8707-0b16-4b3e-8a70-388e619485c6 p {
	margin-bottom: 20px;
}
/*
 * components/januarysheets8/cmp_2f70cadf-a026-43db-899c-c881d68b56fe/component.css
 */
#cmp_2f70cadf-a026-43db-899c-c881d68b56fe img {
	max-width: 100%;
}

/*
 * components/januarysheets8/cmp_53235b70-519c-48ac-be1c-a4ca1ab867f8/component.css
 */
#cmp_53235b70-519c-48ac-be1c-a4ca1ab867f8 img {
	max-width: 100%;
}

/*
 * components/januarysheets8/cmp_5b49c2cf-731a-4951-857c-b978a2453784/component.css
 */
#cmp_5b49c2cf-731a-4951-857c-b978a2453784 img {
	max-width: 100%;
}

/*
 * components/januarysheets8/cmp_6b57abe1-3814-483c-bea5-3c60297d1539/component.css
 */
#cmp_6b57abe1-3814-483c-bea5-3c60297d1539 img {
	max-width: 100%;
}

/*
 * components/januarysheets8/cmp_850c28ca-4345-41ac-87fe-4e0a258ecafe/component.css
 */
#cmp_850c28ca-4345-41ac-87fe-4e0a258ecafe img {
	max-width: 100%;
}

/*
 * components/januarysheets8/cmp_9c57e4b4-2bb4-4002-8d68-1dab2fc8c13e/component.css
 */
#cmp_9c57e4b4-2bb4-4002-8d68-1dab2fc8c13e img {
	max-width: 100%;
}

/*
 * components/januarysheets8/cmp_b555c991-7cb5-4867-8da2-b13ff2d96ff3/component.css
 */
#cmp_b555c991-7cb5-4867-8da2-b13ff2d96ff3 {
	background-color: #FFFFFF;
}

#cmp_b555c991-7cb5-4867-8da2-b13ff2d96ff3 h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 60px;
}

#cmp_b555c991-7cb5-4867-8da2-b13ff2d96ff3 h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_b555c991-7cb5-4867-8da2-b13ff2d96ff3 h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_b555c991-7cb5-4867-8da2-b13ff2d96ff3 p {
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_b555c991-7cb5-4867-8da2-b13ff2d96ff3 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_b555c991-7cb5-4867-8da2-b13ff2d96ff3 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/julysheets96/cmp_17c95c95-9339-4cfd-ad5f-4aec52a28798/component.css
 */
#cmp_17c95c95-9339-4cfd-ad5f-4aec52a28798 {
	background-color: #FFFFFF;
}

#cmp_17c95c95-9339-4cfd-ad5f-4aec52a28798 h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 60px;
}

#cmp_17c95c95-9339-4cfd-ad5f-4aec52a28798 h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_17c95c95-9339-4cfd-ad5f-4aec52a28798 h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_17c95c95-9339-4cfd-ad5f-4aec52a28798 p {
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_17c95c95-9339-4cfd-ad5f-4aec52a28798 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_17c95c95-9339-4cfd-ad5f-4aec52a28798 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/julysheets96/cmp_4a49f7fc-e8cc-42f7-86e3-4b0a7d916154/component.css
 */
#cmp_4a49f7fc-e8cc-42f7-86e3-4b0a7d916154 img {
	max-width: 100%;
}

/*
 * components/julysheets96/cmp_5997e7b0-d483-47c8-8ea3-3f07c109df6e/component.css
 */
#cmp_5997e7b0-d483-47c8-8ea3-3f07c109df6e img {
	max-width: 100%;
}

/*
 * components/julysheets96/cmp_7b221c55-e21d-453c-b2f3-4f73f982bce8/component.css
 */
#cmp_7b221c55-e21d-453c-b2f3-4f73f982bce8 img {
	max-width: 100%;
}

/*
 * components/julysheets96/cmp_d7bcb5ba-224b-4ae7-94ae-e1440842ba63/component.css
 */
#cmp_d7bcb5ba-224b-4ae7-94ae-e1440842ba63 img {
	max-width: 100%;
}

/*
 * components/julysheets96/cmp_ec485e42-fcc0-4d6b-aed1-36d3835dbed1/component.css
 */
#cmp_ec485e42-fcc0-4d6b-aed1-36d3835dbed1 img {
	max-width: 100%;
}

/*
 * components/junesheets44/cmp_131ecf62-c073-43d5-960b-1e2372cff706/component.css
 */
#cmp_131ecf62-c073-43d5-960b-1e2372cff706 img {
	max-width: 100%;
}

/*
 * components/junesheets44/cmp_71910f7c-326f-4f4c-9606-6718eaa1b0d1/component.css
 */
#cmp_71910f7c-326f-4f4c-9606-6718eaa1b0d1 img {
	max-width: 100%;
}

/*
 * components/junesheets44/cmp_80daff66-645d-418b-8658-eded287fba65/component.css
 */
#cmp_80daff66-645d-418b-8658-eded287fba65 {
	background-color: #FFFFFF;
}

#cmp_80daff66-645d-418b-8658-eded287fba65 h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 60px;
}

#cmp_80daff66-645d-418b-8658-eded287fba65 h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_80daff66-645d-418b-8658-eded287fba65 h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_80daff66-645d-418b-8658-eded287fba65 p {
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_80daff66-645d-418b-8658-eded287fba65 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_80daff66-645d-418b-8658-eded287fba65 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/junesheets44/cmp_919ad3ce-b154-4d9e-9de6-f172def0cfb3/component.css
 */
#cmp_919ad3ce-b154-4d9e-9de6-f172def0cfb3 img {
	max-width: 100%;
}

/*
 * components/junesheets44/cmp_97574aaf-d340-4e00-9e95-86bf4c2a570f/component.css
 */
#cmp_97574aaf-d340-4e00-9e95-86bf4c2a570f img {
	max-width: 100%;
}

/*
 * components/junesheets44/cmp_9d355534-628b-4b0d-bcdc-fb7df313bcda/component.css
 */
#cmp_9d355534-628b-4b0d-bcdc-fb7df313bcda img {
	max-width: 100%;
}

/*
 * components/junesheets44/cmp_c6befadc-a24c-4757-926b-f496a9790d39/component.css
 */
#cmp_c6befadc-a24c-4757-926b-f496a9790d39 img {
	max-width: 100%;
}

/*
 * components/junesheets82/cmp_6bd6ff88-634c-4047-b31e-bfed4c6c68e2/component.css
 */
#cmp_6bd6ff88-634c-4047-b31e-bfed4c6c68e2 {
	background-color: ;
}

#cmp_6bd6ff88-634c-4047-b31e-bfed4c6c68e2 h1 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_6bd6ff88-634c-4047-b31e-bfed4c6c68e2 h2 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_6bd6ff88-634c-4047-b31e-bfed4c6c68e2 h3 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_6bd6ff88-634c-4047-b31e-bfed4c6c68e2 p {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_6bd6ff88-634c-4047-b31e-bfed4c6c68e2 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_6bd6ff88-634c-4047-b31e-bfed4c6c68e2 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_6bd6ff88-634c-4047-b31e-bfed4c6c68e2 .btn {
	background-color: ;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_6bd6ff88-634c-4047-b31e-bfed4c6c68e2 .btn:hover {
	background-color: ;
	color: ;
}

#cmp_6bd6ff88-634c-4047-b31e-bfed4c6c68e2 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_6bd6ff88-634c-4047-b31e-bfed4c6c68e2 ul {
	list-style: disc;
	list-style-position: inside;
	color: ;
	font-family: ;
	font-size: ;
}

/*
 * components/junesheets82/cmp_79dbd67b-9a1e-4e22-a1c1-a55a9f4db916/component.css
 */
#cmp_79dbd67b-9a1e-4e22-a1c1-a55a9f4db916 {
	background-color: ;
}

#cmp_79dbd67b-9a1e-4e22-a1c1-a55a9f4db916 h1 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_79dbd67b-9a1e-4e22-a1c1-a55a9f4db916 h2 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_79dbd67b-9a1e-4e22-a1c1-a55a9f4db916 h3 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_79dbd67b-9a1e-4e22-a1c1-a55a9f4db916 p {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_79dbd67b-9a1e-4e22-a1c1-a55a9f4db916 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_79dbd67b-9a1e-4e22-a1c1-a55a9f4db916 ul {
	list-style: disc;
	list-style-position: inside;
	color: ;
	font-family: ;
	font-size: ;
}

/*
 * components/junesheets82/cmp_fdfd22a3-523a-43f3-a0ab-8994b13bb093/component.css
 */
#cmp_fdfd22a3-523a-43f3-a0ab-8994b13bb093 img {
	max-width: 100%;
}

/*
 * components/marchsheets24/cmp_011a6ecb-7b2e-4e27-bf4d-5d620fe4a938/component.css
 */
#cmp_011a6ecb-7b2e-4e27-bf4d-5d620fe4a938 img {
	max-width: 100%;
}

/*
 * components/marchsheets24/cmp_37ca2732-2550-443c-a24e-9f1ddb86607b/component.css
 */
#cmp_37ca2732-2550-443c-a24e-9f1ddb86607b img {
	max-width: 100%;
}

/*
 * components/marchsheets24/cmp_3b5204cf-46f5-4df3-b0f6-785f5a24b84b/component.css
 */
#cmp_3b5204cf-46f5-4df3-b0f6-785f5a24b84b img {
	max-width: 100%;
}

/*
 * components/marchsheets24/cmp_6fbf45ca-b432-4064-a222-9ccb0f4eda90/component.css
 */
#cmp_6fbf45ca-b432-4064-a222-9ccb0f4eda90 {
	background-color: #FFFFFF;
}

#cmp_6fbf45ca-b432-4064-a222-9ccb0f4eda90 h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 60px;
}

#cmp_6fbf45ca-b432-4064-a222-9ccb0f4eda90 h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_6fbf45ca-b432-4064-a222-9ccb0f4eda90 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 16px;
}

#cmp_6fbf45ca-b432-4064-a222-9ccb0f4eda90 p {
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_6fbf45ca-b432-4064-a222-9ccb0f4eda90 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_6fbf45ca-b432-4064-a222-9ccb0f4eda90 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/marchsheets24/cmp_d3433bf6-f103-4dbb-87ae-7f975e5212b0/component.css
 */
#cmp_d3433bf6-f103-4dbb-87ae-7f975e5212b0 img {
	max-width: 100%;
}

/*
 * components/marchsheets24/cmp_fa18fc15-9fe0-45de-bfdd-141b0943d888/component.css
 */
#cmp_fa18fc15-9fe0-45de-bfdd-141b0943d888 img {
	max-width: 100%;
}

/*
 * components/maysheets11/cmp_1d61d75c-135b-4ead-8870-029fd24d6020/component.css
 */
#cmp_1d61d75c-135b-4ead-8870-029fd24d6020 img {
	max-width: 100%;
}

/*
 * components/maysheets11/cmp_7fd43ade-b302-40b7-b993-b9400d6fecb6/component.css
 */
#cmp_7fd43ade-b302-40b7-b993-b9400d6fecb6 img {
	max-width: 100%;
}

/*
 * components/maysheets11/cmp_8983ae4c-e3ad-4a60-901c-888e531143bc/component.css
 */
#cmp_8983ae4c-e3ad-4a60-901c-888e531143bc img {
	max-width: 100%;
}

/*
 * components/maysheets11/cmp_b3f79526-f8d3-498a-853f-89b161fc4e9a/component.css
 */
#cmp_b3f79526-f8d3-498a-853f-89b161fc4e9a img {
	max-width: 100%;
}

/*
 * components/maysheets11/cmp_b4e8c62e-0c76-41fc-9048-60df83b6504c/component.css
 */
#cmp_b4e8c62e-0c76-41fc-9048-60df83b6504c img {
	max-width: 100%;
}

/*
 * components/maysheets11/cmp_ed3e3569-19a0-4124-9f40-f500bd94c77e/component.css
 */
#cmp_ed3e3569-19a0-4124-9f40-f500bd94c77e img {
	max-width: 100%;
}

/*
 * components/maysheets11/cmp_fb88971e-1c6d-4e09-800f-2788bfd605fe/component.css
 */
#cmp_fb88971e-1c6d-4e09-800f-2788bfd605fe {
	background-color: #FFFFFF;
}

#cmp_fb88971e-1c6d-4e09-800f-2788bfd605fe h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 60px;
}

#cmp_fb88971e-1c6d-4e09-800f-2788bfd605fe h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_fb88971e-1c6d-4e09-800f-2788bfd605fe h3 {
	color: #333333;
	font-family: Lato;
	font-size: 24px;
}

#cmp_fb88971e-1c6d-4e09-800f-2788bfd605fe p {
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_fb88971e-1c6d-4e09-800f-2788bfd605fe ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_fb88971e-1c6d-4e09-800f-2788bfd605fe ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/novembersheets26/cmp_263ae81f-145a-4034-a78f-1e4af70ce8fb/component.css
 */
#cmp_263ae81f-145a-4034-a78f-1e4af70ce8fb img {
	max-width: 100%;
}

/*
 * components/novembersheets26/cmp_4d3a284b-ae2b-4acd-8ea7-3b0a6ec77145/component.css
 */
#cmp_4d3a284b-ae2b-4acd-8ea7-3b0a6ec77145 img {
	max-width: 100%;
}

/*
 * components/novembersheets26/cmp_5266951e-48df-42cc-a94c-32638cf05dde/component.css
 */
#cmp_5266951e-48df-42cc-a94c-32638cf05dde {
	background-color: #FFFFFF;
}

#cmp_5266951e-48df-42cc-a94c-32638cf05dde h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 60px;
}

#cmp_5266951e-48df-42cc-a94c-32638cf05dde h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_5266951e-48df-42cc-a94c-32638cf05dde h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_5266951e-48df-42cc-a94c-32638cf05dde p {
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_5266951e-48df-42cc-a94c-32638cf05dde ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_5266951e-48df-42cc-a94c-32638cf05dde ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/novembersheets26/cmp_7c8cfca7-cc42-43bb-80be-996068631790/component.css
 */
#cmp_7c8cfca7-cc42-43bb-80be-996068631790 img {
	max-width: 100%;
}

/*
 * components/novembersheets26/cmp_a1a386b5-5776-464b-b9dd-0d8903f4a8a8/component.css
 */
#cmp_a1a386b5-5776-464b-b9dd-0d8903f4a8a8 img {
	max-width: 100%;
}

/*
 * components/octobersheets31/cmp_199df589-b08f-408e-bee0-8938812b741d/component.css
 */
#cmp_199df589-b08f-408e-bee0-8938812b741d img {
	max-width: 100%;
}

/*
 * components/octobersheets31/cmp_57f8808a-192c-4ae5-9ead-47dd5eb636ca/component.css
 */
#cmp_57f8808a-192c-4ae5-9ead-47dd5eb636ca img {
	max-width: 100%;
}

/*
 * components/octobersheets31/cmp_5fe14180-0f75-46ef-a001-9c94c86f7589/component.css
 */
#cmp_5fe14180-0f75-46ef-a001-9c94c86f7589 {
	background-color: #FFFFFF;
}

#cmp_5fe14180-0f75-46ef-a001-9c94c86f7589 h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 60px;
}

#cmp_5fe14180-0f75-46ef-a001-9c94c86f7589 h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_5fe14180-0f75-46ef-a001-9c94c86f7589 h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_5fe14180-0f75-46ef-a001-9c94c86f7589 p {
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_5fe14180-0f75-46ef-a001-9c94c86f7589 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_5fe14180-0f75-46ef-a001-9c94c86f7589 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/octobersheets31/cmp_74d46857-e2e8-45b4-a7af-4e96ab25689e/component.css
 */
#cmp_74d46857-e2e8-45b4-a7af-4e96ab25689e img {
	max-width: 100%;
}

/*
 * components/octobersheets31/cmp_b7c118f3-c7f9-4431-9637-93197c3dd6b4/component.css
 */
#cmp_b7c118f3-c7f9-4431-9637-93197c3dd6b4 img {
	max-width: 100%;
}

/*
 * components/octobersheets31/cmp_d27f40f1-5375-4c3a-b7e2-0636cbed5173/component.css
 */
#cmp_d27f40f1-5375-4c3a-b7e2-0636cbed5173 img {
	max-width: 100%;
}

/*
 * components/octobersheets31/cmp_d6cc2b17-50f1-4eea-90b7-b5b2506bb3e7/component.css
 */
#cmp_d6cc2b17-50f1-4eea-90b7-b5b2506bb3e7 img {
	max-width: 100%;
}

/*
 * components/septembersheets47/cmp_2cf3c95f-76b5-4d7f-99c3-6886bfa5d48d/component.css
 */
#cmp_2cf3c95f-76b5-4d7f-99c3-6886bfa5d48d img {
	max-width: 100%;
}

/*
 * components/septembersheets47/cmp_4453bb8c-24b2-42fe-ac23-fd40ebe4a438/component.css
 */
#cmp_4453bb8c-24b2-42fe-ac23-fd40ebe4a438 img {
	max-width: 100%;
}

/*
 * components/septembersheets47/cmp_9e67650a-3e76-40f6-bc38-f75d40895715/component.css
 */
#cmp_9e67650a-3e76-40f6-bc38-f75d40895715 img {
	max-width: 100%;
}

/*
 * components/septembersheets47/cmp_d2563b39-1802-4894-ac5f-4a70b8af68e6/component.css
 */
#cmp_d2563b39-1802-4894-ac5f-4a70b8af68e6 {
	background-color: #FFFFFF;
}

#cmp_d2563b39-1802-4894-ac5f-4a70b8af68e6 h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 60px;
}

#cmp_d2563b39-1802-4894-ac5f-4a70b8af68e6 h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_d2563b39-1802-4894-ac5f-4a70b8af68e6 h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_d2563b39-1802-4894-ac5f-4a70b8af68e6 p {
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_d2563b39-1802-4894-ac5f-4a70b8af68e6 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_d2563b39-1802-4894-ac5f-4a70b8af68e6 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/septembersheets47/cmp_d2b521ad-ac3d-4f54-b451-caaf820729d7/component.css
 */
#cmp_d2b521ad-ac3d-4f54-b451-caaf820729d7 img {
	max-width: 100%;
}

/*
 * components/septembersheets47/cmp_def669cb-d88b-4db2-b79e-07b8895f504a/component.css
 */
#cmp_def669cb-d88b-4db2-b79e-07b8895f504a img {
	max-width: 100%;
}

/*
 * components/shop/listing/cmp_04e35402-5977-4b8e-9432-7c11006916a8/component.css
 */
#cmp_04e35402-5977-4b8e-9432-7c11006916a8 {
	justify-content: center;
}

#cmp_04e35402-5977-4b8e-9432-7c11006916a8 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

#cmp_04e35402-5977-4b8e-9432-7c11006916a8  {
	border-bottom: 1px solid #E1E1E1;
	margin-bottom: 35px;
	padding-bottom: 35px;
}
/*
 * components/shop/listing/cmp_1a84bb44-0d39-4150-a516-0dd2e9dd560e/component.css
 */
#cmp_1a84bb44-0d39-4150-a516-0dd2e9dd560e .shop-listing-item {
	color: #B0B0B0;
}

#cmp_1a84bb44-0d39-4150-a516-0dd2e9dd560e .shop-listing-item:hover,
#cmp_1a84bb44-0d39-4150-a516-0dd2e9dd560e .shop-listing-item:focus {
	text-decoration: none;
}

#cmp_1a84bb44-0d39-4150-a516-0dd2e9dd560e .shop-listing-item__image {
	background-size: cover;
	background-position: center center;
}

#cmp_1a84bb44-0d39-4150-a516-0dd2e9dd560e .shop-listing-item__name {
	margin: 10px 0;
}

#cmp_1a84bb44-0d39-4150-a516-0dd2e9dd560e .shop-listing-item__price {
	margin: 10px 0 30px;
}

#cmp_1a84bb44-0d39-4150-a516-0dd2e9dd560e .product_paging {
	-webkit-display: flex;
	-ms-display: flex;
	display: flex;
	justify-content: center;

	margin: 20px 0;
}

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

#cmp_1a84bb44-0d39-4150-a516-0dd2e9dd560e .product_page.active a,
#cmp_1a84bb44-0d39-4150-a516-0dd2e9dd560e .product_page a:hover,
#cmp_1a84bb44-0d39-4150-a516-0dd2e9dd560e .product_page a:focus,
#cmp_1a84bb44-0d39-4150-a516-0dd2e9dd560e .next_page a:hover,
#cmp_1a84bb44-0d39-4150-a516-0dd2e9dd560e .next_page a:focus,
#cmp_1a84bb44-0d39-4150-a516-0dd2e9dd560e .prev_page a:hover,
#cmp_1a84bb44-0d39-4150-a516-0dd2e9dd560e .prev_page a:focus {
	text-decoration: none;
	background-color: #F9F9F9;
}

#cmp_1a84bb44-0d39-4150-a516-0dd2e9dd560e .product_page.active a {
	color: black;
}

/*
 * components/shop/listing/cmp_847aba44-6a12-4a61-8630-658b6bef1f6e/component.css
 */
#cmp_847aba44-6a12-4a61-8630-658b6bef1f6e {
	background-color: #FFFFFF;
}

#cmp_847aba44-6a12-4a61-8630-658b6bef1f6e h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 60px;
}

#cmp_847aba44-6a12-4a61-8630-658b6bef1f6e h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_847aba44-6a12-4a61-8630-658b6bef1f6e h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_847aba44-6a12-4a61-8630-658b6bef1f6e p {
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_847aba44-6a12-4a61-8630-658b6bef1f6e  {
	padding: 50px 0 15px;
}
#cmp_847aba44-6a12-4a61-8630-658b6bef1f6e h1 {
	margin-bottom: 15px;
}
/*
 * components/shop/listing/cmp_9165a0f5-275d-4600-a58f-62d011ab03df/component.css
 */
#cmp_9165a0f5-275d-4600-a58f-62d011ab03df {
	justify-content: center;
}

#cmp_9165a0f5-275d-4600-a58f-62d011ab03df ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/product/cmp_586bf47a-1c09-46ff-baa2-9f4940558c5e/component.css
 */
#cmp_586bf47a-1c09-46ff-baa2-9f4940558c5e .shop-product__name {
	margin-bottom: 10px;
}

#cmp_586bf47a-1c09-46ff-baa2-9f4940558c5e .shop-product__price {
	margin-bottom: 20px;
}

#cmp_586bf47a-1c09-46ff-baa2-9f4940558c5e .shop-product select {
	width: auto;
}

#cmp_586bf47a-1c09-46ff-baa2-9f4940558c5e .shop-product__add-to-cart {
	margin-bottom: 20px;
}

#cmp_586bf47a-1c09-46ff-baa2-9f4940558c5e .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin-bottom: 40px;
}

#cmp_586bf47a-1c09-46ff-baa2-9f4940558c5e .shop-product__review-share-desktop .col-xs-6 {
	padding-top: 10px;
}

#cmp_586bf47a-1c09-46ff-baa2-9f4940558c5e .shop-product__review-share-desktop .col-xs-6 + .col-xs-6 {
	border-left: 1px solid #E1E1E1;
}

/*
 * components/shop/product/cmp_6f05e0d4-ae31-48a3-b1fc-39e88b44e665/component.css
 */
#cmp_6f05e0d4-ae31-48a3-b1fc-39e88b44e665.shop-product-header {
	padding: 50px 0 15px;
}

/*
 * components/sold_out/cmp_00e8e883-71f7-4aea-a910-cc93547b9523/component.css
 */
#cmp_00e8e883-71f7-4aea-a910-cc93547b9523 {
	background-color: #FFFFFF;
}

#cmp_00e8e883-71f7-4aea-a910-cc93547b9523 h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 60px;
}

#cmp_00e8e883-71f7-4aea-a910-cc93547b9523 h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_00e8e883-71f7-4aea-a910-cc93547b9523 h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_00e8e883-71f7-4aea-a910-cc93547b9523 p {
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_00e8e883-71f7-4aea-a910-cc93547b9523 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_00e8e883-71f7-4aea-a910-cc93547b9523 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_00e8e883-71f7-4aea-a910-cc93547b9523 .btn {
	background-color: rgb(80, 227, 194);
	color: #FFFFFF;
	font-family: Poppins;
	font-size: 12px;
}

#cmp_00e8e883-71f7-4aea-a910-cc93547b9523 .btn:hover {
	background-color: rgb(155, 155, 155);
	color: #FFFFFF;
}

#cmp_00e8e883-71f7-4aea-a910-cc93547b9523  {
	padding-bottom: 50px;
}
/*
 * components/sold_out/cmp_46b64b28-6b63-445e-add8-86dc2c95b7db/component.css
 */
#cmp_46b64b28-6b63-445e-add8-86dc2c95b7db img {
	max-width: 100%;
}

#cmp_46b64b28-6b63-445e-add8-86dc2c95b7db  {
	padding-top: 50px;
}
/*
 * components/subscribe/cmp_0c14fb80-b80f-4a60-96e1-7bb87594f31e/component.css
 */

/*
 * components/subscribe/cmp_8416ba3d-15af-428a-a97d-ca433d3ea885/component.css
 */
#cmp_8416ba3d-15af-428a-a97d-ca433d3ea885 {
	background-color: #FFFFFF;
}

#cmp_8416ba3d-15af-428a-a97d-ca433d3ea885 h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 60px;
}

#cmp_8416ba3d-15af-428a-a97d-ca433d3ea885 h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_8416ba3d-15af-428a-a97d-ca433d3ea885 h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_8416ba3d-15af-428a-a97d-ca433d3ea885 p {
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 24px;
}

/*
 * components/subscribe/cmp_f94d25f6-0626-4675-b1b6-f799f0c89dd9/component.css
 */
#cmp_f94d25f6-0626-4675-b1b6-f799f0c89dd9 {
	background-color: #FFFFFF;
}

#cmp_f94d25f6-0626-4675-b1b6-f799f0c89dd9 h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 60px;
}

#cmp_f94d25f6-0626-4675-b1b6-f799f0c89dd9 h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_f94d25f6-0626-4675-b1b6-f799f0c89dd9 h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_f94d25f6-0626-4675-b1b6-f799f0c89dd9 p {
	color: rgb(208, 2, 27);
	font-family: Poppins;
	font-size: 12px;
}

#cmp_f94d25f6-0626-4675-b1b6-f799f0c89dd9 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(208, 2, 27);
	font-family: Poppins;
	font-size: 12px;
}

#cmp_f94d25f6-0626-4675-b1b6-f799f0c89dd9 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(208, 2, 27);
	font-family: Poppins;
	font-size: 12px;
}

/*
 * 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: 12px;

	color: #FFFFFF;
	background-color: rgb(80, 227, 194);
}

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

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

	color: #FFFFFF;
	background-color: rgb(80, 227, 194);
}

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

@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_080511ad-41ae-40f0-bdaa-acce6355ffaa/component.css
 */
#cmp_080511ad-41ae-40f0-bdaa-acce6355ffaa {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/survey_step/cmp_462b625e-2fa4-4b28-b60e-257248f6aca3/component.css
 */
#cmp_462b625e-2fa4-4b28-b60e-257248f6aca3.survey h2 {
	margin-bottom: 1em;
}

#cmp_462b625e-2fa4-4b28-b60e-257248f6aca3.survey .radio input[type="radio"],
#cmp_462b625e-2fa4-4b28-b60e-257248f6aca3.survey .checkbox input[type="checkbox"] {
	margin-right: 0.5em;
}

/*
 * components/subscribe_flow/terms_step/cmp_11b0c90e-8d08-4457-9d93-3441f29b82e1/component.css
 */
#cmp_11b0c90e-8d08-4457-9d93-3441f29b82e1 {
	background-color: #FFFFFF;
}

#cmp_11b0c90e-8d08-4457-9d93-3441f29b82e1 h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 60px;
}

#cmp_11b0c90e-8d08-4457-9d93-3441f29b82e1 h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_11b0c90e-8d08-4457-9d93-3441f29b82e1 h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_11b0c90e-8d08-4457-9d93-3441f29b82e1 p {
	color: rgb(240, 89, 89);
	font-family: Poppins;
	font-size: 16px;
}

/*
 * components/subscribe_flow/terms_step/cmp_4174dcce-a00f-4cb9-bd60-81a90e80e075/component.css
 */
#cmp_4174dcce-a00f-4cb9-bd60-81a90e80e075 {
	background-color: #FFFFFF;
}

#cmp_4174dcce-a00f-4cb9-bd60-81a90e80e075 h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 60px;
}

#cmp_4174dcce-a00f-4cb9-bd60-81a90e80e075 h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_4174dcce-a00f-4cb9-bd60-81a90e80e075 h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_4174dcce-a00f-4cb9-bd60-81a90e80e075 p {
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_4174dcce-a00f-4cb9-bd60-81a90e80e075 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_4174dcce-a00f-4cb9-bd60-81a90e80e075 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/subscribe_flow/terms_step/cmp_e9f0012a-2423-47a5-b815-07c6e1d28a54/component.css
 */

/*
 * components/subscribe_flow/variant_step/cmp_1594b1dc-f53b-4cde-9236-c28e8c14beb2/component.css
 */

/*
 * components/subscribe_flow/variant_step/cmp_c823211a-d857-4147-9a73-0a5e1fe99b12/component.css
 */
#cmp_c823211a-d857-4147-9a73-0a5e1fe99b12 {
	padding: 50px 0 15px;
}

/*
 * components/vdaybox/cmp_12a461f7-ee47-4a00-86ae-ec68f00be877/component.css
 */
#cmp_12a461f7-ee47-4a00-86ae-ec68f00be877 {
	background-color: #FFFFFF;
}

#cmp_12a461f7-ee47-4a00-86ae-ec68f00be877 h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 60px;
}

#cmp_12a461f7-ee47-4a00-86ae-ec68f00be877 h2 {
	color: rgb(241, 33, 33);
	font-family: Lato;
	font-size: 24px;
}

#cmp_12a461f7-ee47-4a00-86ae-ec68f00be877 h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_12a461f7-ee47-4a00-86ae-ec68f00be877 p {
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_12a461f7-ee47-4a00-86ae-ec68f00be877 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_12a461f7-ee47-4a00-86ae-ec68f00be877 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/vdaybox/cmp_2c6dc432-b500-44a7-882a-5f6c283b1d75/component.css
 */
#cmp_2c6dc432-b500-44a7-882a-5f6c283b1d75 {
	background-color: #FFFFFF;
}

#cmp_2c6dc432-b500-44a7-882a-5f6c283b1d75 h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 60px;
}

#cmp_2c6dc432-b500-44a7-882a-5f6c283b1d75 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 18px;
}

#cmp_2c6dc432-b500-44a7-882a-5f6c283b1d75 h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_2c6dc432-b500-44a7-882a-5f6c283b1d75 p {
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_2c6dc432-b500-44a7-882a-5f6c283b1d75 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_2c6dc432-b500-44a7-882a-5f6c283b1d75 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_2c6dc432-b500-44a7-882a-5f6c283b1d75 .btn {
	background-color: rgb(80, 227, 194);
	color: #FFFFFF;
	font-family: Poppins;
	font-size: 16px;
}

#cmp_2c6dc432-b500-44a7-882a-5f6c283b1d75 .btn:hover {
	background-color: rgb(155, 155, 155);
	color: #FFFFFF;
}

#cmp_2c6dc432-b500-44a7-882a-5f6c283b1d75 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_2c6dc432-b500-44a7-882a-5f6c283b1d75 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/vdaybox/cmp_5f68419d-4875-491b-b744-16f0c3ec3702/component.css
 */
#cmp_5f68419d-4875-491b-b744-16f0c3ec3702 img {
	max-width: 100%;
}

/*
 * components/vdaybox/cmp_66cd8858-a773-4d68-adc5-15cda603f266/component.css
 */
#cmp_66cd8858-a773-4d68-adc5-15cda603f266 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_66cd8858-a773-4d68-adc5-15cda603f266 .content {
	padding: 0;
}

#cmp_66cd8858-a773-4d68-adc5-15cda603f266 .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_66cd8858-a773-4d68-adc5-15cda603f266 .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/vdaybox/cmp_c7fd88fd-7118-4d23-ae23-2f3a121f4f3d/component.css
 */
#cmp_c7fd88fd-7118-4d23-ae23-2f3a121f4f3d {
	background-color: #FFFFFF;
}

#cmp_c7fd88fd-7118-4d23-ae23-2f3a121f4f3d h1 {
	color: #333333;
	font-family: Lato;
	font-size: 24px;
}

#cmp_c7fd88fd-7118-4d23-ae23-2f3a121f4f3d h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_c7fd88fd-7118-4d23-ae23-2f3a121f4f3d h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_c7fd88fd-7118-4d23-ae23-2f3a121f4f3d p {
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_c7fd88fd-7118-4d23-ae23-2f3a121f4f3d ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_c7fd88fd-7118-4d23-ae23-2f3a121f4f3d ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/vdaybox/cmp_d9465b7d-b6e6-4ae9-ae95-f6381fac116c/component.css
 */
#cmp_d9465b7d-b6e6-4ae9-ae95-f6381fac116c {
	background-color: #FFFFFF;
}

#cmp_d9465b7d-b6e6-4ae9-ae95-f6381fac116c h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 60px;
}

#cmp_d9465b7d-b6e6-4ae9-ae95-f6381fac116c h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_d9465b7d-b6e6-4ae9-ae95-f6381fac116c h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_d9465b7d-b6e6-4ae9-ae95-f6381fac116c p {
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_d9465b7d-b6e6-4ae9-ae95-f6381fac116c ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_d9465b7d-b6e6-4ae9-ae95-f6381fac116c ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/vdaybox/cmp_fb9d0f89-6844-4a99-a47a-02273633f490/component.css
 */
#cmp_fb9d0f89-6844-4a99-a47a-02273633f490 {
	background-color: #FFFFFF;
}

#cmp_fb9d0f89-6844-4a99-a47a-02273633f490 h1 {
	color: #333333;
	font-family: Lato;
	font-size: 36px;
}

#cmp_fb9d0f89-6844-4a99-a47a-02273633f490 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 18px;
}

#cmp_fb9d0f89-6844-4a99-a47a-02273633f490 h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_fb9d0f89-6844-4a99-a47a-02273633f490 p {
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_fb9d0f89-6844-4a99-a47a-02273633f490 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_fb9d0f89-6844-4a99-a47a-02273633f490 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/view-cart/cmp_01cd4a4a-3a15-479d-b3b8-c1257be95d57/component.css
 */
#cmp_01cd4a4a-3a15-479d-b3b8-c1257be95d57 {
	background-color: #FFFFFF;
}

#cmp_01cd4a4a-3a15-479d-b3b8-c1257be95d57 h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 60px;
}

#cmp_01cd4a4a-3a15-479d-b3b8-c1257be95d57 h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_01cd4a4a-3a15-479d-b3b8-c1257be95d57 h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_01cd4a4a-3a15-479d-b3b8-c1257be95d57 p {
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_01cd4a4a-3a15-479d-b3b8-c1257be95d57  {
	padding: 50px 0;;
}
#cmp_01cd4a4a-3a15-479d-b3b8-c1257be95d57 h1 {
	margin-bottom: 15px;
}
/*
 * components/view-cart/cmp_47f7e1c4-9c56-4fe9-9dc9-7a06a834720e/component.css
 */
#cmp_47f7e1c4-9c56-4fe9-9dc9-7a06a834720e {
	padding: 15px 15px 100px 15px;
}

#cmp_47f7e1c4-9c56-4fe9-9dc9-7a06a834720e .cart-thead {
	border-bottom: 1px solid #E1E1E1;
	padding: 10px 0;
}

#cmp_47f7e1c4-9c56-4fe9-9dc9-7a06a834720e .cart-thead h3 {
	text-transform: uppercase;
}

#cmp_47f7e1c4-9c56-4fe9-9dc9-7a06a834720e .cart-item {
	border: 1px solid #E1E1E1;
	padding: 25px 0;
	position: relative;
}

#cmp_47f7e1c4-9c56-4fe9-9dc9-7a06a834720e .product-main {
	margin-bottom: 15px;
}

#cmp_47f7e1c4-9c56-4fe9-9dc9-7a06a834720e .product-label p {
	margin: 0;
}

#cmp_47f7e1c4-9c56-4fe9-9dc9-7a06a834720e .product-label .info {
	color: #333333;
	text-align: right;
	text-transform: uppercase;
}

#cmp_47f7e1c4-9c56-4fe9-9dc9-7a06a834720e .product-label .meta {
	color: #333333;
	font-size: 26px;
}

#cmp_47f7e1c4-9c56-4fe9-9dc9-7a06a834720e .product-rem-btn {
	position: absolute;
	right: 1%;
	top: 1%;
}

#cmp_47f7e1c4-9c56-4fe9-9dc9-7a06a834720e figure {
	margin: 0 0 15px 0;
}

#cmp_47f7e1c4-9c56-4fe9-9dc9-7a06a834720e .cart-subtotal {
	margin: 50px 0 0 0;
}

#cmp_47f7e1c4-9c56-4fe9-9dc9-7a06a834720e .cart-subtotal h1 {
	margin: 0 0 15px 0;
}

#cmp_47f7e1c4-9c56-4fe9-9dc9-7a06a834720e .cart-subtotal h3 {
	margin: 0 0 25px 0;
	text-transform: uppercase;
}

#cmp_47f7e1c4-9c56-4fe9-9dc9-7a06a834720e .cart-subtotal p {
	margin: 0 0 25px 0;
}

@media (min-width: 768px) {
	#cmp_47f7e1c4-9c56-4fe9-9dc9-7a06a834720e .cart-item {
		border-width: 0 0 1px 0;
	}
	#cmp_47f7e1c4-9c56-4fe9-9dc9-7a06a834720e .product-rem-btn {
		top: 40%;
	}
	#cmp_47f7e1c4-9c56-4fe9-9dc9-7a06a834720e figure {
		margin: 0;
	}
}

/*
 * components/whats_inside/cmp_070cd062-9ffa-4327-9046-21036a077b91/component.css
 */
#cmp_070cd062-9ffa-4327-9046-21036a077b91 {
	background-color: #FFFFFF;
}

#cmp_070cd062-9ffa-4327-9046-21036a077b91 h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 72px;
}

#cmp_070cd062-9ffa-4327-9046-21036a077b91 h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_070cd062-9ffa-4327-9046-21036a077b91 h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_070cd062-9ffa-4327-9046-21036a077b91 p {
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_070cd062-9ffa-4327-9046-21036a077b91 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_070cd062-9ffa-4327-9046-21036a077b91 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/whats_inside/cmp_07f40d74-68d2-43fe-a659-f259ab6c1cec/component.css
 */
#cmp_07f40d74-68d2-43fe-a659-f259ab6c1cec {
	background-color: #FFFFFF;
}

#cmp_07f40d74-68d2-43fe-a659-f259ab6c1cec h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 72px;
}

#cmp_07f40d74-68d2-43fe-a659-f259ab6c1cec h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_07f40d74-68d2-43fe-a659-f259ab6c1cec h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_07f40d74-68d2-43fe-a659-f259ab6c1cec p {
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_07f40d74-68d2-43fe-a659-f259ab6c1cec ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_07f40d74-68d2-43fe-a659-f259ab6c1cec ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/whats_inside/cmp_112377a0-dd62-41fd-8140-3e94b54614dd/component.css
 */
#cmp_112377a0-dd62-41fd-8140-3e94b54614dd img {
	max-width: 100%;
}

/*
 * components/whats_inside/cmp_1d4c3add-cd60-4352-8f7e-e56ff85f2372/component.css
 */
#cmp_1d4c3add-cd60-4352-8f7e-e56ff85f2372 img {
	max-width: 100%;
}

/*
 * components/whats_inside/cmp_29ad110b-6d72-4afb-81ad-117905d0dc3b/component.css
 */
#cmp_29ad110b-6d72-4afb-81ad-117905d0dc3b {
	background-color: #FFFFFF;
}

#cmp_29ad110b-6d72-4afb-81ad-117905d0dc3b h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 72px;
}

#cmp_29ad110b-6d72-4afb-81ad-117905d0dc3b h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_29ad110b-6d72-4afb-81ad-117905d0dc3b h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_29ad110b-6d72-4afb-81ad-117905d0dc3b p {
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_29ad110b-6d72-4afb-81ad-117905d0dc3b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_29ad110b-6d72-4afb-81ad-117905d0dc3b ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/whats_inside/cmp_409f6ba3-bdee-4f0a-89bd-61db50d2a2fb/component.css
 */
#cmp_409f6ba3-bdee-4f0a-89bd-61db50d2a2fb img {
	max-width: 100%;
}

/*
 * components/whats_inside/cmp_5cd4e9d6-7750-4088-8d8f-bdb1b08f0db4/component.css
 */
#cmp_5cd4e9d6-7750-4088-8d8f-bdb1b08f0db4 img {
	max-width: 100%;
}

/*
 * components/whats_inside/cmp_5e1c2e14-47ad-4b95-b72e-129f52cc61a3/component.css
 */
#cmp_5e1c2e14-47ad-4b95-b72e-129f52cc61a3 img {
	max-width: 100%;
}

/*
 * components/whats_inside/cmp_6f10d625-6e1d-4195-a1ed-dbc80de6ef74/component.css
 */
#cmp_6f10d625-6e1d-4195-a1ed-dbc80de6ef74 img {
	max-width: 100%;
}

/*
 * components/whats_inside/cmp_6f5d7fc7-8de2-4a9c-9e0b-b70a843df1f2/component.css
 */
#cmp_6f5d7fc7-8de2-4a9c-9e0b-b70a843df1f2 {
	background-color: #FFFFFF;
}

#cmp_6f5d7fc7-8de2-4a9c-9e0b-b70a843df1f2 h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 72px;
}

#cmp_6f5d7fc7-8de2-4a9c-9e0b-b70a843df1f2 h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_6f5d7fc7-8de2-4a9c-9e0b-b70a843df1f2 h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_6f5d7fc7-8de2-4a9c-9e0b-b70a843df1f2 p {
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_6f5d7fc7-8de2-4a9c-9e0b-b70a843df1f2 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_6f5d7fc7-8de2-4a9c-9e0b-b70a843df1f2 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/whats_inside/cmp_765c0706-61cf-440d-a298-9f0fc9dc89b9/component.css
 */
#cmp_765c0706-61cf-440d-a298-9f0fc9dc89b9 {
	background-color: #FFFFFF;
}

#cmp_765c0706-61cf-440d-a298-9f0fc9dc89b9 h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 72px;
}

#cmp_765c0706-61cf-440d-a298-9f0fc9dc89b9 h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_765c0706-61cf-440d-a298-9f0fc9dc89b9 h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_765c0706-61cf-440d-a298-9f0fc9dc89b9 p {
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_765c0706-61cf-440d-a298-9f0fc9dc89b9 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_765c0706-61cf-440d-a298-9f0fc9dc89b9 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/whats_inside/cmp_79b4aef1-4239-44cb-bb7e-4fdd29d1f741/component.css
 */
#cmp_79b4aef1-4239-44cb-bb7e-4fdd29d1f741 {
	background-color: #FFFFFF;
}

#cmp_79b4aef1-4239-44cb-bb7e-4fdd29d1f741 h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 72px;
}

#cmp_79b4aef1-4239-44cb-bb7e-4fdd29d1f741 h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_79b4aef1-4239-44cb-bb7e-4fdd29d1f741 h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_79b4aef1-4239-44cb-bb7e-4fdd29d1f741 p {
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_79b4aef1-4239-44cb-bb7e-4fdd29d1f741 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_79b4aef1-4239-44cb-bb7e-4fdd29d1f741 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/whats_inside/cmp_7e3dc775-75f3-468d-a48c-5c0d745dbcdb/component.css
 */
#cmp_7e3dc775-75f3-468d-a48c-5c0d745dbcdb {
	background-color: #FFFFFF;
}

#cmp_7e3dc775-75f3-468d-a48c-5c0d745dbcdb h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 72px;
}

#cmp_7e3dc775-75f3-468d-a48c-5c0d745dbcdb h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_7e3dc775-75f3-468d-a48c-5c0d745dbcdb h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_7e3dc775-75f3-468d-a48c-5c0d745dbcdb p {
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_7e3dc775-75f3-468d-a48c-5c0d745dbcdb ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_7e3dc775-75f3-468d-a48c-5c0d745dbcdb ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/whats_inside/cmp_850cd1ff-bc41-4bda-8244-0626c45a395d/component.css
 */
#cmp_850cd1ff-bc41-4bda-8244-0626c45a395d img {
	max-width: 100%;
}

/*
 * components/whats_inside/cmp_863a451b-79eb-41a1-b251-fb2320a2cc5c/component.css
 */
#cmp_863a451b-79eb-41a1-b251-fb2320a2cc5c {
	background-color: #FFFFFF;
}

#cmp_863a451b-79eb-41a1-b251-fb2320a2cc5c h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 72px;
}

#cmp_863a451b-79eb-41a1-b251-fb2320a2cc5c h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_863a451b-79eb-41a1-b251-fb2320a2cc5c h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_863a451b-79eb-41a1-b251-fb2320a2cc5c p {
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_863a451b-79eb-41a1-b251-fb2320a2cc5c ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_863a451b-79eb-41a1-b251-fb2320a2cc5c ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/whats_inside/cmp_9c027306-a441-4178-969a-dc83139a6fb3/component.css
 */
#cmp_9c027306-a441-4178-969a-dc83139a6fb3 img {
	max-width: 100%;
}

/*
 * components/whats_inside/cmp_a117a313-f2ec-47aa-8327-096422bbe84d/component.css
 */
#cmp_a117a313-f2ec-47aa-8327-096422bbe84d {
	background-color: #FFFFFF;
}

#cmp_a117a313-f2ec-47aa-8327-096422bbe84d h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 72px;
}

#cmp_a117a313-f2ec-47aa-8327-096422bbe84d h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_a117a313-f2ec-47aa-8327-096422bbe84d h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_a117a313-f2ec-47aa-8327-096422bbe84d p {
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_a117a313-f2ec-47aa-8327-096422bbe84d ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_a117a313-f2ec-47aa-8327-096422bbe84d ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/whats_inside/cmp_a773c003-fffd-4ecb-b943-44dcc23ac38c/component.css
 */
#cmp_a773c003-fffd-4ecb-b943-44dcc23ac38c img {
	max-width: 100%;
}

/*
 * components/whats_inside/cmp_bd0cfb72-84f3-4412-ba87-c17fce4ddb02/component.css
 */
#cmp_bd0cfb72-84f3-4412-ba87-c17fce4ddb02 img {
	max-width: 100%;
}

/*
 * components/whats_inside/cmp_ca8bb43d-f0b9-4064-8ac2-ccda447a84c3/component.css
 */
#cmp_ca8bb43d-f0b9-4064-8ac2-ccda447a84c3 img {
	max-width: 100%;
}

/*
 * components/whats_inside/cmp_cbf14b83-0b2f-48c7-84ce-5d94a698e75b/component.css
 */
#cmp_cbf14b83-0b2f-48c7-84ce-5d94a698e75b img {
	max-width: 100%;
}

/*
 * components/whats_inside/cmp_d0435976-60a0-4878-bf8a-3b56e8ce581f/component.css
 */
#cmp_d0435976-60a0-4878-bf8a-3b56e8ce581f {
	background-color: #FFFFFF;
}

#cmp_d0435976-60a0-4878-bf8a-3b56e8ce581f h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 60px;
}

#cmp_d0435976-60a0-4878-bf8a-3b56e8ce581f h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_d0435976-60a0-4878-bf8a-3b56e8ce581f h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_d0435976-60a0-4878-bf8a-3b56e8ce581f p {
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_d0435976-60a0-4878-bf8a-3b56e8ce581f .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_d0435976-60a0-4878-bf8a-3b56e8ce581f .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_d0435976-60a0-4878-bf8a-3b56e8ce581f .btn {
	background-color: rgb(80, 227, 194);
	color: #FFFFFF;
	font-family: Poppins;
	font-size: 12px;
}

#cmp_d0435976-60a0-4878-bf8a-3b56e8ce581f .btn:hover {
	background-color: rgb(155, 155, 155);
	color: #FFFFFF;
}

/*
 * components/whats_inside/cmp_ee33ef5b-cac5-468f-92cc-9a1f8ea22bfd/component.css
 */
#cmp_ee33ef5b-cac5-468f-92cc-9a1f8ea22bfd {
	background-color: #FFFFFF;
}

#cmp_ee33ef5b-cac5-468f-92cc-9a1f8ea22bfd h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 72px;
}

#cmp_ee33ef5b-cac5-468f-92cc-9a1f8ea22bfd h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_ee33ef5b-cac5-468f-92cc-9a1f8ea22bfd h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_ee33ef5b-cac5-468f-92cc-9a1f8ea22bfd p {
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_ee33ef5b-cac5-468f-92cc-9a1f8ea22bfd ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_ee33ef5b-cac5-468f-92cc-9a1f8ea22bfd ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/whats_inside/cmp_f6ef21bf-1cae-47d6-9eaf-cddfc60b1bfa/component.css
 */
#cmp_f6ef21bf-1cae-47d6-9eaf-cddfc60b1bfa {
	background-color: #FFFFFF;
}

#cmp_f6ef21bf-1cae-47d6-9eaf-cddfc60b1bfa h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 72px;
}

#cmp_f6ef21bf-1cae-47d6-9eaf-cddfc60b1bfa h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_f6ef21bf-1cae-47d6-9eaf-cddfc60b1bfa h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_f6ef21bf-1cae-47d6-9eaf-cddfc60b1bfa p {
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_f6ef21bf-1cae-47d6-9eaf-cddfc60b1bfa ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_f6ef21bf-1cae-47d6-9eaf-cddfc60b1bfa ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/whats_inside/cmp_ff5daf91-f559-4386-8bf9-af3911ece776/component.css
 */
#cmp_ff5daf91-f559-4386-8bf9-af3911ece776 {
	background-color: #FFFFFF;
}

#cmp_ff5daf91-f559-4386-8bf9-af3911ece776 h1 {
	color: #333333;
	font-family: Poppins;
	font-size: 72px;
}

#cmp_ff5daf91-f559-4386-8bf9-af3911ece776 h2 {
	color: #333333;
	font-family: Poppins;
	font-size: 18px;
}

#cmp_ff5daf91-f559-4386-8bf9-af3911ece776 h3 {
	color: #333333;
	font-family: Poppins;
	font-size: 26px;
}

#cmp_ff5daf91-f559-4386-8bf9-af3911ece776 p {
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_ff5daf91-f559-4386-8bf9-af3911ece776 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_ff5daf91-f559-4386-8bf9-af3911ece776 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Poppins;
	font-size: 14px;
}