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

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

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

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

h2 {
	color: rgb(208, 2, 27);
	font-family: Actor;
	font-size: 26px;
}

h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 20px;
}

p {
	line-height: 1.5em;
}

a,
.btn-link {
	color: rgb(208, 2, 27);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.nav-pills .nav-link.active,
.nav-pills .nav-link.active:focus,
.nav-pills .nav-link.active:hover,
.nav-pills .nav-link.active:active,
.nav-pills .nav-item.open .nav-link,
.nav-pills .nav-item.open .nav-link:focus,
.nav-pills .nav-item.open .nav-link:hover,
.nav-pills .nav-item.open .nav-link:active {
	background-color: rgb(208, 2, 27);
}

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

.panel-body {
	padding: 15px;
}

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

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

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

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

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

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

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

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

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

.btn-primary {
	background-color: rgb(208, 2, 27);
	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 rgb(80, 227, 194);
	color: rgb(80, 227, 194);
}

.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;
}

/* Orders List
------------------------------*/
.orders-list {
	width: 100%;
	margin: 25px 0;
}
.orders-list h1 {
	text-align: center;
	color: #49494A;
}
.orders-list .panel {
	width: 100%;
}

/* Checkout
------------------------------*/
.checkout_content {
	margin-top: 0;
	overflow: auto;
	padding: 50px 0 60px;
}

.checkout_content #add_coupon_code {
	padding: .375rem 1rem;
	width: auto;
}

.checkout_content #checkout_button {
	background-color: rgb(208, 2, 27);
	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: 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(208, 2, 27);
	color: rgb(208, 2, 27);
	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_4e04a292-1de6-4d9f-9a9c-28930e6cbd2a/component.css
 */
#cmp_4e04a292-1de6-4d9f-9a9c-28930e6cbd2a {
	background-color: rgb(155, 155, 155);
}

#cmp_4e04a292-1de6-4d9f-9a9c-28930e6cbd2a h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_4e04a292-1de6-4d9f-9a9c-28930e6cbd2a h2 {
	color: rgb(208, 2, 27);
	font-family: Actor;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_4e04a292-1de6-4d9f-9a9c-28930e6cbd2a h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 20px;
	margin: 0 0 25px 0;
}

#cmp_4e04a292-1de6-4d9f-9a9c-28930e6cbd2a p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_4e04a292-1de6-4d9f-9a9c-28930e6cbd2a ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 16px;
}

#cmp_4e04a292-1de6-4d9f-9a9c-28930e6cbd2a ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/about/cmp_574b1285-fcbe-4fb0-9bdd-92afead16024/component.css
 */
#cmp_574b1285-fcbe-4fb0-9bdd-92afead16024 {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	background-color: #FFFFFF;
}

#cmp_574b1285-fcbe-4fb0-9bdd-92afead16024 .content {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	margin: 0 auto;
	padding: 25px;
}

#cmp_574b1285-fcbe-4fb0-9bdd-92afead16024 .square-image {
	height: 225px;
	margin: 0 0 15px 0;
	width: 225px;
}

#cmp_574b1285-fcbe-4fb0-9bdd-92afead16024 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
}

#cmp_574b1285-fcbe-4fb0-9bdd-92afead16024 h2 {
	color: rgb(208, 2, 27);
	font-family: Actor;
	font-size: 26px;
}

#cmp_574b1285-fcbe-4fb0-9bdd-92afead16024 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 20px;
}

#cmp_574b1285-fcbe-4fb0-9bdd-92afead16024 p {
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/about/cmp_a9434e90-0c83-42b2-add3-ac951a02a6b8/component.css
 */
#cmp_a9434e90-0c83-42b2-add3-ac951a02a6b8 {
	padding: 0;
}

#cmp_a9434e90-0c83-42b2-add3-ac951a02a6b8 .hero-content {
	background-color: #FFFFFF;
	padding: 20px;
}

#cmp_a9434e90-0c83-42b2-add3-ac951a02a6b8 .hero-content h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 15px 0;
}

#cmp_a9434e90-0c83-42b2-add3-ac951a02a6b8 .hero-content h2 {
	color: rgb(208, 2, 27);
	font-family: Actor;
	font-size: 26px;
	margin: 0 0 15px 0;
}

#cmp_a9434e90-0c83-42b2-add3-ac951a02a6b8 .hero-content h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 20px;
	margin: 0 0 15px 0;
}

#cmp_a9434e90-0c83-42b2-add3-ac951a02a6b8 .hero-content p {
	color: #49494A;
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 15px 0;
}

#cmp_a9434e90-0c83-42b2-add3-ac951a02a6b8 .hero-content .btn {
	background-color: rgb(208, 2, 27);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_a9434e90-0c83-42b2-add3-ac951a02a6b8 .hero-content .btn:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

/*
 * components/about/cmp_b7807441-a6b4-47f5-9898-fba06ac7a476/component.css
 */
#cmp_b7807441-a6b4-47f5-9898-fba06ac7a476 {
	background-color: #FFFFFF;
}

#cmp_b7807441-a6b4-47f5-9898-fba06ac7a476 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_b7807441-a6b4-47f5-9898-fba06ac7a476 h2 {
	color: rgb(208, 2, 27);
	font-family: Actor;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_b7807441-a6b4-47f5-9898-fba06ac7a476 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 20px;
	margin: 0 0 25px 0;
}

#cmp_b7807441-a6b4-47f5-9898-fba06ac7a476 p {
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_b7807441-a6b4-47f5-9898-fba06ac7a476 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_b7807441-a6b4-47f5-9898-fba06ac7a476 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_b7807441-a6b4-47f5-9898-fba06ac7a476 .btn {
	background-color: rgb(208, 2, 27);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_b7807441-a6b4-47f5-9898-fba06ac7a476 .btn:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

#cmp_b7807441-a6b4-47f5-9898-fba06ac7a476 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
}

#cmp_b7807441-a6b4-47f5-9898-fba06ac7a476 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/checkout/cmp_2daca6f7-c211-4a4f-b6d9-17d17e4cd2b7/component.css
 */
#cmp_2daca6f7-c211-4a4f-b6d9-17d17e4cd2b7 .checkout_content {
  overflow: auto;
}

#cmp_2daca6f7-c211-4a4f-b6d9-17d17e4cd2b7 .checkout_content section {
  border-color: #F5F5F5;
}

#cmp_2daca6f7-c211-4a4f-b6d9-17d17e4cd2b7 .cart_listing table {
  border-color: #F5F5F5;
}

#cmp_2daca6f7-c211-4a4f-b6d9-17d17e4cd2b7  {
	padding-top: 0;
}
/*
 * components/customer/account/cmp_b7ce103f-3eee-4f67-838d-ff1313d7af31/component.css
 */

/*
 * components/customer/edit/cmp_4e8247a9-730f-4748-9f32-2d8d76e20d41/component.css
 */

/*
 * components/customer/forgot_password/cmp_cda3174f-b11c-4a4b-8b2d-6344b1fe8017/component.css
 */
#cmp_cda3174f-b11c-4a4b-8b2d-6344b1fe8017 {
    padding:  0 0 120px 0;
}
/*
 * components/customer/forgot_password/cmp_f77d0821-70de-414d-bb68-9dd1a7261929/component.css
 */
#cmp_f77d0821-70de-414d-bb68-9dd1a7261929 {
	background-color: #FFFFFF;
}

#cmp_f77d0821-70de-414d-bb68-9dd1a7261929 h1 {
	color: #49494A;
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 25px 0;
}

#cmp_f77d0821-70de-414d-bb68-9dd1a7261929 h2 {
	color: rgb(208, 2, 27);
	font-family: Actor;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_f77d0821-70de-414d-bb68-9dd1a7261929 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 20px;
	margin: 0 0 25px 0;
}

#cmp_f77d0821-70de-414d-bb68-9dd1a7261929 p {
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_f77d0821-70de-414d-bb68-9dd1a7261929 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
}

#cmp_f77d0821-70de-414d-bb68-9dd1a7261929 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/customer/login/cmp_cd01d211-466f-42da-9a8d-5c87783a74b7/component.css
 */
#cmp_cd01d211-466f-42da-9a8d-5c87783a74b7 {
    padding:  0 0 120px 0;
}
/*
 * components/customer/login/cmp_f1a2b9d6-646e-47cf-90c0-29aced57f929/component.css
 */
#cmp_f1a2b9d6-646e-47cf-90c0-29aced57f929 {
	background-color: #FFFFFF;
}

#cmp_f1a2b9d6-646e-47cf-90c0-29aced57f929 h1 {
	color: #49494A;
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 25px 0;
}

#cmp_f1a2b9d6-646e-47cf-90c0-29aced57f929 h2 {
	color: rgb(208, 2, 27);
	font-family: Actor;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_f1a2b9d6-646e-47cf-90c0-29aced57f929 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 20px;
	margin: 0 0 25px 0;
}

#cmp_f1a2b9d6-646e-47cf-90c0-29aced57f929 p {
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_f1a2b9d6-646e-47cf-90c0-29aced57f929 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
}

#cmp_f1a2b9d6-646e-47cf-90c0-29aced57f929 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/customer/order/cmp_691c578f-68ce-4a8d-9923-6ea1c788d51a/component.css
 */

/*
 * components/customer/orders/cmp_774dc0ad-77d5-4798-a3eb-94581c314a59/component.css
 */

/*
 * components/customer/password_reset/cmp_396fd76f-a068-4c88-9bd5-5d6ba7efcfc2/component.css
 */
#cmp_396fd76f-a068-4c88-9bd5-5d6ba7efcfc2 {
    padding:  0 0 120px 0;
}
/*
 * components/customer/password_reset/cmp_d8611dfb-f7ef-4d1a-a091-9783736bc044/component.css
 */
#cmp_d8611dfb-f7ef-4d1a-a091-9783736bc044 {
	background-color: #FFFFFF;
}

#cmp_d8611dfb-f7ef-4d1a-a091-9783736bc044 h1 {
	color: #49494A;
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 25px 0;
}

#cmp_d8611dfb-f7ef-4d1a-a091-9783736bc044 h2 {
	color: rgb(208, 2, 27);
	font-family: Actor;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_d8611dfb-f7ef-4d1a-a091-9783736bc044 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 20px;
	margin: 0 0 25px 0;
}

#cmp_d8611dfb-f7ef-4d1a-a091-9783736bc044 p {
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_d8611dfb-f7ef-4d1a-a091-9783736bc044 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
}

#cmp_d8611dfb-f7ef-4d1a-a091-9783736bc044 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/customer/thank_you/cmp_463cfabe-8d0e-4e44-9582-303636a3bdf9/component.css
 */

/*
 * components/global/cmp_0ae52c42-a5cb-470b-b1f3-88d5aa622cbc/component.css
 */
#cmp_0ae52c42-a5cb-470b-b1f3-88d5aa622cbc.footer {
	background-color: #FAFAFA;
	color: rgb(107, 101, 101);
	font-family: Lato;
	padding: 10px 0;

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

#cmp_0ae52c42-a5cb-470b-b1f3-88d5aa622cbc .footer-social {
	padding: 15px 0;
	text-align: center;
}

#cmp_0ae52c42-a5cb-470b-b1f3-88d5aa622cbc .footer-social a {
	display: inline-block;
	padding: 0 5px;
}

#cmp_0ae52c42-a5cb-470b-b1f3-88d5aa622cbc .footer-social svg path {
	fill: #49494A;
}

#cmp_0ae52c42-a5cb-470b-b1f3-88d5aa622cbc .footer-social a:hover svg path,
#cmp_0ae52c42-a5cb-470b-b1f3-88d5aa622cbc .footer-social a:focus svg path,
#cmp_0ae52c42-a5cb-470b-b1f3-88d5aa622cbc .footer-social a:active svg path {
	fill: #FAC325;
}

#cmp_0ae52c42-a5cb-470b-b1f3-88d5aa622cbc.footer .toggler-container {
	padding: 15px 0;
	text-align: center;
}

#cmp_0ae52c42-a5cb-470b-b1f3-88d5aa622cbc.footer .navbar-toggler {
	color: rgb(80, 227, 194);
	font-size: 13px;
	letter-spacing: 0.077em;
	text-transform: uppercase;
}

#cmp_0ae52c42-a5cb-470b-b1f3-88d5aa622cbc .footer-cc {
	border-top: 1px solid #e1e1e1;
	letter-spacing: 1px;
	text-align: center;
}

#cmp_0ae52c42-a5cb-470b-b1f3-88d5aa622cbc .footer-cc img {
	padding: 15px 0;
}

#cmp_0ae52c42-a5cb-470b-b1f3-88d5aa622cbc .footer-cc p,
#cmp_0ae52c42-a5cb-470b-b1f3-88d5aa622cbc .footer-tributes p {
	margin: 0;
	padding: 15px 0;
}

#cmp_0ae52c42-a5cb-470b-b1f3-88d5aa622cbc .footer-tributes p a {
	color: rgb(107, 101, 101);
	padding: 0;
}

#cmp_0ae52c42-a5cb-470b-b1f3-88d5aa622cbc .footer-tributes p a:hover,
#cmp_0ae52c42-a5cb-470b-b1f3-88d5aa622cbc .footer-tributes p a:focus,
#cmp_0ae52c42-a5cb-470b-b1f3-88d5aa622cbc .footer-tributes p a:active {
	color: rgb(107, 101, 101);
	text-decoration: none;
}

#cmp_0ae52c42-a5cb-470b-b1f3-88d5aa622cbc .footer-directory {
	text-align: center;
}

#cmp_0ae52c42-a5cb-470b-b1f3-88d5aa622cbc .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_0ae52c42-a5cb-470b-b1f3-88d5aa622cbc .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_0ae52c42-a5cb-470b-b1f3-88d5aa622cbc .footer-list .footer-link {
	color: #49494A;
	font-family: Lato;
	font-size: 13px;
	letter-spacing: 0.077em;
	text-transform: uppercase;
}

#cmp_0ae52c42-a5cb-470b-b1f3-88d5aa622cbc .footer-list .footer-link:hover,
#cmp_0ae52c42-a5cb-470b-b1f3-88d5aa622cbc .footer-list .footer-link:focus,
#cmp_0ae52c42-a5cb-470b-b1f3-88d5aa622cbc .footer-list .footer-link:active {
	color: rgb(208, 2, 27);
	text-decoration: none;
}

@media (max-width: 767px) {
	#cmp_0ae52c42-a5cb-470b-b1f3-88d5aa622cbc .col-sm-12,
	#cmp_0ae52c42-a5cb-470b-b1f3-88d5aa622cbc .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_0ae52c42-a5cb-470b-b1f3-88d5aa622cbc.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_0ae52c42-a5cb-470b-b1f3-88d5aa622cbc .footer-directory {
		-webkit-order: 1;
		-moz-order: 1;
		-ms-order: 1;
		order: 1;

		text-align: left;
	}
	#cmp_0ae52c42-a5cb-470b-b1f3-88d5aa622cbc .footer-social {
		-webkit-order: 2;
		-moz-order: 2;
		-ms-order: 2;
		order: 2;

		padding: 0 15px;
		text-align: right;
	}
	#cmp_0ae52c42-a5cb-470b-b1f3-88d5aa622cbc .footer-cc {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}
	#cmp_0ae52c42-a5cb-470b-b1f3-88d5aa622cbc .footer-cc p {
		display: inline-block;
	}
}

@media (min-width: 992px) {
	#cmp_0ae52c42-a5cb-470b-b1f3-88d5aa622cbc .footer-cc {
		-webkit-order: 2;
		-moz-order: 2;
		-ms-order: 2;
		order: 2;

		border-top: none;
	}
	#cmp_0ae52c42-a5cb-470b-b1f3-88d5aa622cbc .footer-cc p {
		display: block;
	}
	#cmp_0ae52c42-a5cb-470b-b1f3-88d5aa622cbc .footer-social {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}
}

/*
 * components/global/cmp_6166828d-1d4e-4a4c-a76b-45de10f2b49f/component.css
 */
#cmp_6166828d-1d4e-4a4c-a76b-45de10f2b49f {
	background-color: #FFFFFF;
}

#cmp_6166828d-1d4e-4a4c-a76b-45de10f2b49f h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_6166828d-1d4e-4a4c-a76b-45de10f2b49f h2 {
	color: rgb(208, 2, 27);
	font-family: Actor;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_6166828d-1d4e-4a4c-a76b-45de10f2b49f h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 20px;
	margin: 0 0 25px 0;
}

#cmp_6166828d-1d4e-4a4c-a76b-45de10f2b49f p {
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_6166828d-1d4e-4a4c-a76b-45de10f2b49f .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_6166828d-1d4e-4a4c-a76b-45de10f2b49f .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_6166828d-1d4e-4a4c-a76b-45de10f2b49f .btn {
	background-color: rgb(208, 2, 27);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_6166828d-1d4e-4a4c-a76b-45de10f2b49f .btn:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

#cmp_6166828d-1d4e-4a4c-a76b-45de10f2b49f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
}

#cmp_6166828d-1d4e-4a4c-a76b-45de10f2b49f ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
}

#cmp_6166828d-1d4e-4a4c-a76b-45de10f2b49f  {
	padding-top: 0;
}
/*
 * components/global/cmp_7ff7955b-2d14-4419-998f-5a509fa2f82f/component.css
 */
#cmp_7ff7955b-2d14-4419-998f-5a509fa2f82f.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_7ff7955b-2d14-4419-998f-5a509fa2f82f.navbar a:hover,
#cmp_7ff7955b-2d14-4419-998f-5a509fa2f82f.navbar a:focus,
#cmp_7ff7955b-2d14-4419-998f-5a509fa2f82f.navbar a:active {
	color: rgb(80, 227, 194);
}

#cmp_7ff7955b-2d14-4419-998f-5a509fa2f82f .navbar-brand {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

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

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

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

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

	color: rgb(80, 227, 194);
	font-family: Montserrat;
	font-size: 24px;
	letter-spacing: 0.038em;
	margin: 0;
	max-width: 100%;
	padding: 15px;
	text-align: center;
	text-transform: uppercase;
}

#cmp_7ff7955b-2d14-4419-998f-5a509fa2f82f .navbar-brand img {
	max-width: 100%;
}

#cmp_7ff7955b-2d14-4419-998f-5a509fa2f82f.navbar .navbar-toggler {
	background-color: rgb(208, 2, 27);
	border-radius: 0;
	color: #FFFFFF;
	font-size: 13px;
	letter-spacing: 0.077em;
	padding: 15px;
	text-transform: uppercase;
}

#cmp_7ff7955b-2d14-4419-998f-5a509fa2f82f.navbar .navbar-toggler:hover,
#cmp_7ff7955b-2d14-4419-998f-5a509fa2f82f.navbar .navbar-toggler:focus,
#cmp_7ff7955b-2d14-4419-998f-5a509fa2f82f.navbar .navbar-toggler:active {
	background-color: #FAC325;
	color: #FFFFFF;
}

#cmp_7ff7955b-2d14-4419-998f-5a509fa2f82f .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_7ff7955b-2d14-4419-998f-5a509fa2f82f .navbar-nav li {
	padding: 10px 0;
}

#cmp_7ff7955b-2d14-4419-998f-5a509fa2f82f .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_7ff7955b-2d14-4419-998f-5a509fa2f82f.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_7ff7955b-2d14-4419-998f-5a509fa2f82f .navbar-brand {
		padding: 0 0 15px 0;
	}
	#cmp_7ff7955b-2d14-4419-998f-5a509fa2f82f .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_7ff7955b-2d14-4419-998f-5a509fa2f82f .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_7ff7955b-2d14-4419-998f-5a509fa2f82f .navbar-nav li {
		padding: 0;
	}
}

/*
 * components/index/cmp_2f681108-f2db-4ab7-9ee2-0f639950eff2/component.css
 */
#cmp_2f681108-f2db-4ab7-9ee2-0f639950eff2 {
	padding: 0;
}

#cmp_2f681108-f2db-4ab7-9ee2-0f639950eff2 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_2f681108-f2db-4ab7-9ee2-0f639950eff2 .hero-content h1 {
	color: #49494A;
	font-family: Just Another Hand;
	font-size: 48px;
	margin: 0 0 15px 0;
}

#cmp_2f681108-f2db-4ab7-9ee2-0f639950eff2 .hero-content h2 {
	color: rgb(208, 2, 27);
	font-family: Actor;
	font-size: 26px;
	margin: 0 0 15px 0;
}

#cmp_2f681108-f2db-4ab7-9ee2-0f639950eff2 .hero-content h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 20px;
	margin: 0 0 15px 0;
}

#cmp_2f681108-f2db-4ab7-9ee2-0f639950eff2 .hero-content p {
	color: #49494A;
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 15px 0;
}

#cmp_2f681108-f2db-4ab7-9ee2-0f639950eff2 .hero-content .button-container {
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
}

#cmp_2f681108-f2db-4ab7-9ee2-0f639950eff2 .hero-content .btn {
	margin: 3px;
	padding: 15px;
	width: 40%;
}

#cmp_2f681108-f2db-4ab7-9ee2-0f639950eff2 .hero-content .btn-primary {
	background-color: rgb(208, 2, 27);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_2f681108-f2db-4ab7-9ee2-0f639950eff2 .hero-content .btn-primary:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

#cmp_2f681108-f2db-4ab7-9ee2-0f639950eff2 .hero-content .btn-secondary {
	background-color: #49494A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_2f681108-f2db-4ab7-9ee2-0f639950eff2 .hero-content .btn-secondary:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

#cmp_2f681108-f2db-4ab7-9ee2-0f639950eff2 p {
	margin: 0 0 25px 0;
}
/*
 * components/index/cmp_31959d0a-41f0-4f02-b225-c31667db3825/component.css
 */
#cmp_31959d0a-41f0-4f02-b225-c31667db3825 img {
	max-width: 100%;
}

/*
 * components/index/cmp_6e555cbd-1245-421d-855b-f05a56cb7d3e/component.css
 */
#cmp_6e555cbd-1245-421d-855b-f05a56cb7d3e {
	background-color: rgb(151, 201, 248);
}

#cmp_6e555cbd-1245-421d-855b-f05a56cb7d3e h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_6e555cbd-1245-421d-855b-f05a56cb7d3e h2 {
	color: rgb(208, 2, 27);
	font-family: Actor;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_6e555cbd-1245-421d-855b-f05a56cb7d3e h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 20px;
	margin: 0 0 25px 0;
}

#cmp_6e555cbd-1245-421d-855b-f05a56cb7d3e p {
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_6e555cbd-1245-421d-855b-f05a56cb7d3e .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_6e555cbd-1245-421d-855b-f05a56cb7d3e .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_6e555cbd-1245-421d-855b-f05a56cb7d3e .btn {
	background-color: rgb(208, 2, 27);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_6e555cbd-1245-421d-855b-f05a56cb7d3e .btn:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

#cmp_6e555cbd-1245-421d-855b-f05a56cb7d3e ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
}

#cmp_6e555cbd-1245-421d-855b-f05a56cb7d3e ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/index/cmp_a6593b1a-e4f4-4b16-8bd0-652a47a5f4c0/component.css
 */
#cmp_a6593b1a-e4f4-4b16-8bd0-652a47a5f4c0 {
	background-color: #FFFFFF;
}

#cmp_a6593b1a-e4f4-4b16-8bd0-652a47a5f4c0 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_a6593b1a-e4f4-4b16-8bd0-652a47a5f4c0 h2 {
	color: rgb(19, 25, 219);
	font-family: Actor;
	font-size: 36px;
	margin: 0 0 25px 0;
}

#cmp_a6593b1a-e4f4-4b16-8bd0-652a47a5f4c0 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 20px;
	margin: 0 0 25px 0;
}

#cmp_a6593b1a-e4f4-4b16-8bd0-652a47a5f4c0 p {
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_a6593b1a-e4f4-4b16-8bd0-652a47a5f4c0 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_a6593b1a-e4f4-4b16-8bd0-652a47a5f4c0 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_a6593b1a-e4f4-4b16-8bd0-652a47a5f4c0 .btn {
	background-color: rgb(208, 2, 27);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_a6593b1a-e4f4-4b16-8bd0-652a47a5f4c0 .btn:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

#cmp_a6593b1a-e4f4-4b16-8bd0-652a47a5f4c0 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
}

#cmp_a6593b1a-e4f4-4b16-8bd0-652a47a5f4c0 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/index/cmp_b36bcce2-8120-49aa-a1cf-32f58b5280f6/component.css
 */
#cmp_b36bcce2-8120-49aa-a1cf-32f58b5280f6 {
	padding: 0;
}

#cmp_b36bcce2-8120-49aa-a1cf-32f58b5280f6 .hero-content {
	background-color: #FFFFFF;
	padding: 20px;
}

#cmp_b36bcce2-8120-49aa-a1cf-32f58b5280f6 .hero-content h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 15px 0;
}

#cmp_b36bcce2-8120-49aa-a1cf-32f58b5280f6 .hero-content h2 {
	color: rgb(208, 2, 27);
	font-family: Actor;
	font-size: 26px;
	margin: 0 0 15px 0;
}

#cmp_b36bcce2-8120-49aa-a1cf-32f58b5280f6 .hero-content h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 20px;
	margin: 0 0 15px 0;
}

#cmp_b36bcce2-8120-49aa-a1cf-32f58b5280f6 .hero-content p {
	color: #49494A;
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 15px 0;
}

#cmp_b36bcce2-8120-49aa-a1cf-32f58b5280f6 .hero-content .btn {
	background-color: rgb(208, 2, 27);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_b36bcce2-8120-49aa-a1cf-32f58b5280f6 .hero-content .btn:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

#cmp_b36bcce2-8120-49aa-a1cf-32f58b5280f6 p {
	margin: 0 0 25px 0;
}
/*
 * components/index/cmp_cfdf0387-3162-4c8e-9eba-b79ee85f25a2/component.css
 */
#cmp_cfdf0387-3162-4c8e-9eba-b79ee85f25a2 {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	background-color: #FFFFFF;
}

#cmp_cfdf0387-3162-4c8e-9eba-b79ee85f25a2 .content {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	margin: 0 auto;
	padding: 25px;
}

#cmp_cfdf0387-3162-4c8e-9eba-b79ee85f25a2 .square-image {
	height: 225px;
	margin: 0 0 15px 0;
	width: 225px;
}

#cmp_cfdf0387-3162-4c8e-9eba-b79ee85f25a2 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
}

#cmp_cfdf0387-3162-4c8e-9eba-b79ee85f25a2 h2 {
	color: rgb(208, 2, 27);
	font-family: Actor;
	font-size: 26px;
}

#cmp_cfdf0387-3162-4c8e-9eba-b79ee85f25a2 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 20px;
}

#cmp_cfdf0387-3162-4c8e-9eba-b79ee85f25a2 p {
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/index/cmp_d164d527-bb2e-4048-8929-ded9d5a74554/component.css
 */
#cmp_d164d527-bb2e-4048-8929-ded9d5a74554 {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	background-color: rgb(255, 255, 255);
}

#cmp_d164d527-bb2e-4048-8929-ded9d5a74554 .content {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	margin: 0 auto;
	padding: 25px;
}

#cmp_d164d527-bb2e-4048-8929-ded9d5a74554 .square-image {
	height: 225px;
	margin: 0 0 15px 0;
	width: 225px;
}

#cmp_d164d527-bb2e-4048-8929-ded9d5a74554 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
}

#cmp_d164d527-bb2e-4048-8929-ded9d5a74554 h2 {
	color: rgb(208, 2, 27);
	font-family: Actor;
	font-size: 26px;
}

#cmp_d164d527-bb2e-4048-8929-ded9d5a74554 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 20px;
}

#cmp_d164d527-bb2e-4048-8929-ded9d5a74554 p {
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/shop/listing/cmp_427142a0-5dfd-4bc3-a8f8-a534b7674c01/component.css
 */
#cmp_427142a0-5dfd-4bc3-a8f8-a534b7674c01 {
    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_427142a0-5dfd-4bc3-a8f8-a534b7674c01 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_73efb8f2-bd1a-4349-b37e-ee824135050b/component.css
 */
#cmp_73efb8f2-bd1a-4349-b37e-ee824135050b {
    padding: 20px 0;

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

#cmp_73efb8f2-bd1a-4349-b37e-ee824135050b ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_aa2cfd1f-bd07-4e8e-b5e1-f6c4c66c1afc/component.css
 */
#cmp_aa2cfd1f-bd07-4e8e-b5e1-f6c4c66c1afc {
	background-color: #FFFFFF;
}

#cmp_aa2cfd1f-bd07-4e8e-b5e1-f6c4c66c1afc h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_aa2cfd1f-bd07-4e8e-b5e1-f6c4c66c1afc h2 {
	color: rgb(208, 2, 27);
	font-family: Actor;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_aa2cfd1f-bd07-4e8e-b5e1-f6c4c66c1afc h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 20px;
	margin: 0 0 25px 0;
}

#cmp_aa2cfd1f-bd07-4e8e-b5e1-f6c4c66c1afc p {
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_aa2cfd1f-bd07-4e8e-b5e1-f6c4c66c1afc ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
}

#cmp_aa2cfd1f-bd07-4e8e-b5e1-f6c4c66c1afc ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
}

#cmp_aa2cfd1f-bd07-4e8e-b5e1-f6c4c66c1afc  {
	padding-bottom: 20px;
}
/*
 * components/shop/listing/cmp_d2bca161-3c40-4543-ad25-16660b4713ba/component.css
 */
.shop-listing {
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;

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

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

.shop-listing-item {
	color: rgb(107, 101, 101);
}

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

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

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

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

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

	margin: 20px 0;
}

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

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

.product_page.active a {
	color: black;
}

/*
 * components/shop/product/cmp_302d068c-94ec-4069-9dc3-1027f54c9b51/component.css
 */
#cmp_302d068c-94ec-4069-9dc3-1027f54c9b51.shop-product-header {
	padding: 50px 0 15px 0;
}

/*
 * components/shop/product/cmp_f7c1f4e4-6c87-4e1b-ad9e-bedef357ff8e/component.css
 */
#cmp_f7c1f4e4-6c87-4e1b-ad9e-bedef357ff8e .shop-product__name {
	margin: 0 0 10px 0;
}

#cmp_f7c1f4e4-6c87-4e1b-ad9e-bedef357ff8e .shop-product__price {
	margin: 0 0 20px 0;
}

#cmp_f7c1f4e4-6c87-4e1b-ad9e-bedef357ff8e .shop-product select {
	width: auto;
}

#cmp_f7c1f4e4-6c87-4e1b-ad9e-bedef357ff8e .shop-product__add-to-cart {
	margin: 0 0 20px 0;
}

#cmp_f7c1f4e4-6c87-4e1b-ad9e-bedef357ff8e .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin: 0 0 40px 0;
}

#cmp_f7c1f4e4-6c87-4e1b-ad9e-bedef357ff8e .shop-product__review-share-desktop .col-xs-6 {
	padding: 10px 0 0 0;
}

#cmp_f7c1f4e4-6c87-4e1b-ad9e-bedef357ff8e .shop-product__review-share-desktop .col-xs-6 + .col-xs-6 {
	border-left: 1px solid #E1E1E1;
}

#cmp_f7c1f4e4-6c87-4e1b-ad9e-bedef357ff8e  {
	padding-top: 0;
}
/*
 * components/sold_out/cmp_6ca5e584-67cc-4cfb-92b6-3577aa2910d2/component.css
 */
#cmp_6ca5e584-67cc-4cfb-92b6-3577aa2910d2 img {
	max-width: 100%;
}

/*
 * components/sold_out/cmp_da0a07a6-0f84-4067-a247-cbc99fd9e834/component.css
 */
#cmp_da0a07a6-0f84-4067-a247-cbc99fd9e834 {
	background-color: #FFFFFF;
}

#cmp_da0a07a6-0f84-4067-a247-cbc99fd9e834 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_da0a07a6-0f84-4067-a247-cbc99fd9e834 h2 {
	color: rgb(208, 2, 27);
	font-family: Actor;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_da0a07a6-0f84-4067-a247-cbc99fd9e834 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 20px;
	margin: 0 0 25px 0;
}

#cmp_da0a07a6-0f84-4067-a247-cbc99fd9e834 p {
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_da0a07a6-0f84-4067-a247-cbc99fd9e834 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_da0a07a6-0f84-4067-a247-cbc99fd9e834 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_da0a07a6-0f84-4067-a247-cbc99fd9e834 .btn {
	background-color: rgb(208, 2, 27);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_da0a07a6-0f84-4067-a247-cbc99fd9e834 .btn:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

#cmp_da0a07a6-0f84-4067-a247-cbc99fd9e834 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
}

#cmp_da0a07a6-0f84-4067-a247-cbc99fd9e834 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
}

#cmp_da0a07a6-0f84-4067-a247-cbc99fd9e834  {
	padding-top: 0;
}
/*
 * components/subscribe/cmp_3efbc2e9-46bb-4c7d-9bbe-1fcaa71dd027/component.css
 */
#cmp_3efbc2e9-46bb-4c7d-9bbe-1fcaa71dd027 {
	background-color: #FFFFFF;
}

#cmp_3efbc2e9-46bb-4c7d-9bbe-1fcaa71dd027 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_3efbc2e9-46bb-4c7d-9bbe-1fcaa71dd027 h2 {
	color: rgb(208, 2, 27);
	font-family: Actor;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_3efbc2e9-46bb-4c7d-9bbe-1fcaa71dd027 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 20px;
	margin: 0 0 25px 0;
}

#cmp_3efbc2e9-46bb-4c7d-9bbe-1fcaa71dd027 p {
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_3efbc2e9-46bb-4c7d-9bbe-1fcaa71dd027 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
}

#cmp_3efbc2e9-46bb-4c7d-9bbe-1fcaa71dd027 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
}

#cmp_3efbc2e9-46bb-4c7d-9bbe-1fcaa71dd027  {
	padding-bottom: 0;
}
/*
 * components/subscribe/cmp_99551b43-eedf-40d9-8db2-9de630d7a9ce/component.css
 */

/*
 * components/subscribe/cmp_b219c75e-b2af-4320-8378-461077ae0949/component.css
 */
#cmp_b219c75e-b2af-4320-8378-461077ae0949 {
	background-color: #FFFFFF;
}

#cmp_b219c75e-b2af-4320-8378-461077ae0949 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_b219c75e-b2af-4320-8378-461077ae0949 h2 {
	color: rgb(208, 2, 27);
	font-family: Actor;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_b219c75e-b2af-4320-8378-461077ae0949 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 20px;
	margin: 0 0 25px 0;
}

#cmp_b219c75e-b2af-4320-8378-461077ae0949 p {
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_b219c75e-b2af-4320-8378-461077ae0949 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
}

#cmp_b219c75e-b2af-4320-8378-461077ae0949 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
}

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

	max-width: 940px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

	margin-bottom: 15px;
}

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

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

	font-family: ;
	font-size: 13px;

	color: #FFFFFF;
	background-color: rgb(208, 2, 27);
}

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

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-name {
	font-size: 20px;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-price {
	margin-bottom: 20px;

	font-size: 16px;
	color: #38BFC3;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-form-group .control-label {
	font-size: 12px;
	color: #9B9B9B;

	margin-bottom: 2px;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-form-group select {
	height: 30px;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-cta-row {
	margin-top: 40px;

	text-align: center;
}


#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-continue-btn {
	font-family: ;
	font-size: 13px;

	color: #FFFFFF;
	background-color: rgb(208, 2, 27);
}

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

@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_179cff6c-c1c2-4d69-9c5d-ade15b2535fb/component.css
 */
#cmp_179cff6c-c1c2-4d69-9c5d-ade15b2535fb {
	padding: 50px 0 15px 0;
}

/*
 * components/subscribe_flow/survey_step/cmp_ecfa6eba-2119-4a39-b636-20a77f44c8e7/component.css
 */
.survey:first-of-type {
    padding: 0 0 50px 0;
}
#cmp_ecfa6eba-2119-4a39-b636-20a77f44c8e7  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/terms_step/cmp_4c31f807-97eb-44ba-8c27-d72c7bbc2278/component.css
 */

/*
 * components/subscribe_flow/terms_step/cmp_682e94f5-a05a-43fc-bc56-a236271cbda6/component.css
 */
#cmp_682e94f5-a05a-43fc-bc56-a236271cbda6 {
	padding: 50px 0 15px 0;
}

/*
 * components/subscribe_flow/variant_step/cmp_1bdead45-1e7c-4e5c-ae2d-d6747376b08e/component.css
 */
#cmp_1bdead45-1e7c-4e5c-ae2d-d6747376b08e {
	padding: 50px 0 15px 0;
}

/*
 * components/subscribe_flow/variant_step/cmp_73ef8227-f466-4505-a8a4-c34721e755f6/component.css
 */

/*
 * components/view-cart/cmp_2562707f-e8c0-4d83-bcef-b33defe4c686/component.css
 */
#cmp_2562707f-e8c0-4d83-bcef-b33defe4c686 {
	background-color: #FFFFFF;
}

#cmp_2562707f-e8c0-4d83-bcef-b33defe4c686 h1 {
	color: #49494A;
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 25px 0;
}

#cmp_2562707f-e8c0-4d83-bcef-b33defe4c686 h2 {
	color: rgb(208, 2, 27);
	font-family: Actor;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_2562707f-e8c0-4d83-bcef-b33defe4c686 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 20px;
	margin: 0 0 25px 0;
}

#cmp_2562707f-e8c0-4d83-bcef-b33defe4c686 p {
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_2562707f-e8c0-4d83-bcef-b33defe4c686 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
}

#cmp_2562707f-e8c0-4d83-bcef-b33defe4c686 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/view-cart/cmp_c44107a1-0570-49e3-a984-7fee46dbcf24/component.css
 */
#cmp_c44107a1-0570-49e3-a984-7fee46dbcf24 {
	padding: 15px 15px 100px 15px;
}

#cmp_c44107a1-0570-49e3-a984-7fee46dbcf24 .cart-thead {
	border-bottom: 1px solid #E1E1E1;
	padding: 10px 0;
}

#cmp_c44107a1-0570-49e3-a984-7fee46dbcf24 .cart-thead h3 {
	text-transform: uppercase;
}

#cmp_c44107a1-0570-49e3-a984-7fee46dbcf24 .cart-item {
	border: 1px solid #E1E1E1;
	padding: 25px 0;
	position: relative;
}

#cmp_c44107a1-0570-49e3-a984-7fee46dbcf24 .product-main {
	margin: 0 0 15px 0;
}

#cmp_c44107a1-0570-49e3-a984-7fee46dbcf24 .product-label p {
	margin: 0;
}

#cmp_c44107a1-0570-49e3-a984-7fee46dbcf24 .product-label .info {
	color: rgb(208, 2, 27);
	text-align: right;
	text-transform: uppercase;
}

#cmp_c44107a1-0570-49e3-a984-7fee46dbcf24 .product-label .meta {
	color: #49494A;
	font-size: 20px;
}

#cmp_c44107a1-0570-49e3-a984-7fee46dbcf24 .product-rem-btn {
	position: absolute;
	right: 1%;
	top: 1%;
}

#cmp_c44107a1-0570-49e3-a984-7fee46dbcf24 figure {
	margin: 0 0 15px 0;
}

#cmp_c44107a1-0570-49e3-a984-7fee46dbcf24 .cart-subtotal {
	margin: 50px 0 0 0;
}

#cmp_c44107a1-0570-49e3-a984-7fee46dbcf24 .cart-subtotal h2 {
	margin: 0 0 15px 0;
}

#cmp_c44107a1-0570-49e3-a984-7fee46dbcf24 .cart-subtotal h3 {
	margin: 0 0 25px 0;
	text-transform: uppercase;
}

#cmp_c44107a1-0570-49e3-a984-7fee46dbcf24 .cart-subtotal p {
	margin: 0 0 25px 0;
}

@media (min-width: 768px) {
	#cmp_c44107a1-0570-49e3-a984-7fee46dbcf24 .cart-item {
		border-width: 0 0 1px 0;
	}
	#cmp_c44107a1-0570-49e3-a984-7fee46dbcf24 .product-rem-btn {
		top: 40%;
	}
	#cmp_c44107a1-0570-49e3-a984-7fee46dbcf24 figure {
		margin: 0;
	}
}

/*
 * components/whats_inside/cmp_0651b824-af3a-4928-9f27-a78200123c7b/component.css
 */
#cmp_0651b824-af3a-4928-9f27-a78200123c7b {
	padding: 0;
}

#cmp_0651b824-af3a-4928-9f27-a78200123c7b .hero-content {
	background-color: #FAFAFA;
	padding: 20px;
}

#cmp_0651b824-af3a-4928-9f27-a78200123c7b .hero-content h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 15px 0;
}

#cmp_0651b824-af3a-4928-9f27-a78200123c7b .hero-content h2 {
	color: rgb(208, 2, 27);
	font-family: Actor;
	font-size: 26px;
	margin: 0 0 15px 0;
}

#cmp_0651b824-af3a-4928-9f27-a78200123c7b .hero-content h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 20px;
	margin: 0 0 15px 0;
}

#cmp_0651b824-af3a-4928-9f27-a78200123c7b .hero-content p {
	color: #49494A;
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 15px 0;
}

#cmp_0651b824-af3a-4928-9f27-a78200123c7b .hero-content .btn {
	background-color: rgb(208, 2, 27);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_0651b824-af3a-4928-9f27-a78200123c7b .hero-content .btn:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

/*
 * components/whats_inside/cmp_16330862-d1ae-490d-8519-f8a184e6d7a4/component.css
 */
#cmp_16330862-d1ae-490d-8519-f8a184e6d7a4 {
	background-color: #FFFFFF;
}

#cmp_16330862-d1ae-490d-8519-f8a184e6d7a4 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_16330862-d1ae-490d-8519-f8a184e6d7a4 h2 {
	color: rgb(208, 2, 27);
	font-family: Actor;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_16330862-d1ae-490d-8519-f8a184e6d7a4 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 20px;
	margin: 0 0 25px 0;
}

#cmp_16330862-d1ae-490d-8519-f8a184e6d7a4 p {
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_16330862-d1ae-490d-8519-f8a184e6d7a4 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_16330862-d1ae-490d-8519-f8a184e6d7a4 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_16330862-d1ae-490d-8519-f8a184e6d7a4 .btn {
	background-color: rgb(208, 2, 27);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_16330862-d1ae-490d-8519-f8a184e6d7a4 .btn:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

#cmp_16330862-d1ae-490d-8519-f8a184e6d7a4 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
}

#cmp_16330862-d1ae-490d-8519-f8a184e6d7a4 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/whats_inside/cmp_97e13efd-407c-4e46-b0a8-776dfd87140e/component.css
 */
#cmp_97e13efd-407c-4e46-b0a8-776dfd87140e {
	background-color: #FFFFFF;
}

#cmp_97e13efd-407c-4e46-b0a8-776dfd87140e h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_97e13efd-407c-4e46-b0a8-776dfd87140e h2 {
	color: rgb(208, 2, 27);
	font-family: Actor;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_97e13efd-407c-4e46-b0a8-776dfd87140e h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 20px;
	margin: 0 0 25px 0;
}

#cmp_97e13efd-407c-4e46-b0a8-776dfd87140e p {
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_97e13efd-407c-4e46-b0a8-776dfd87140e ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
}

#cmp_97e13efd-407c-4e46-b0a8-776dfd87140e ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
}

#cmp_97e13efd-407c-4e46-b0a8-776dfd87140e h2 {
	margin: 0 0 40px 0;
}
#cmp_97e13efd-407c-4e46-b0a8-776dfd87140e h3 {
	margin: 0 0 15px 0;
}
#cmp_97e13efd-407c-4e46-b0a8-776dfd87140e p {
	border-bottom: 1px solid #EEEEEE;
	padding: 0 0 25px 0;
}
/*
 * components/whats_inside/cmp_a3d2b273-e95a-4541-b229-28f92b89dd77/component.css
 */
#cmp_a3d2b273-e95a-4541-b229-28f92b89dd77 {
	padding: 0;
}

#cmp_a3d2b273-e95a-4541-b229-28f92b89dd77 .hero-content {
	background-color: #FAFAFA;
	padding: 20px;
}

#cmp_a3d2b273-e95a-4541-b229-28f92b89dd77 .hero-content h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 15px 0;
}

#cmp_a3d2b273-e95a-4541-b229-28f92b89dd77 .hero-content h2 {
	color: rgb(208, 2, 27);
	font-family: Actor;
	font-size: 26px;
	margin: 0 0 15px 0;
}

#cmp_a3d2b273-e95a-4541-b229-28f92b89dd77 .hero-content h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 20px;
	margin: 0 0 15px 0;
}

#cmp_a3d2b273-e95a-4541-b229-28f92b89dd77 .hero-content p {
	color: #49494A;
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 15px 0;
}

#cmp_a3d2b273-e95a-4541-b229-28f92b89dd77 .hero-content .btn {
	background-color: rgb(208, 2, 27);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_a3d2b273-e95a-4541-b229-28f92b89dd77 .hero-content .btn:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

/*
 * components/whats_inside/cmp_e452f290-ce12-4520-acef-0f4b9df75913/component.css
 */
#cmp_e452f290-ce12-4520-acef-0f4b9df75913 {
	background-color: #FFFFFF;
}

#cmp_e452f290-ce12-4520-acef-0f4b9df75913 h1 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_e452f290-ce12-4520-acef-0f4b9df75913 h2 {
	color: rgb(208, 2, 27);
	font-family: Actor;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_e452f290-ce12-4520-acef-0f4b9df75913 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 20px;
	margin: 0 0 25px 0;
}

#cmp_e452f290-ce12-4520-acef-0f4b9df75913 p {
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_e452f290-ce12-4520-acef-0f4b9df75913 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
}

#cmp_e452f290-ce12-4520-acef-0f4b9df75913 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(107, 101, 101);
	font-family: Lato;
	font-size: 16px;
}