/*
 * css/style.css
 */
/* Globals
------------------------------*/
body {
	background-color: rgb(74, 201, 227);
	color: rgb(0, 0, 0);
	font-family: Bungee;
	font-size: 14px;
	line-height: 1.5em;
	overflow-x: hidden;
}

.container-fluid {
	max-width: 100%;
	width: 100%;
}

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

h1 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 48px;
	letter-spacing: 1px;
	line-height: 1;
	margin: 0 0 25px 0;
}

h2 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 32px;
	margin: 0 0 25px 0;
}

h3 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
	margin: 0 0 25px 0;
}

p {
	line-height: 1.5em;
	margin: 0 0 15px 0;
}

a,
.btn-link {
	color: rgb(12, 106, 178);
}

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

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

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

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

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

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

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

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

/* 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: auto; /* 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(12, 106, 178);
}

.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: 0;
	border: none;
	font-size: 14px;
	letter-spacing: 0.077em;
	padding: 1em 3em;
}

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

.btn-small:hover,
.btn-small:focus,
.btn-small:active,
.btn-small:active:focus {
	background-color: rgb(12, 106, 178);
	border-color: rgb(12, 106, 178);
}

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

.btn-primary {
	background-color: rgb(12, 106, 178);
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 14px;
	letter-spacing: 0.167em;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus {
	background-color: rgb(206, 206, 206);
	color: rgb(74, 201, 227);
}

.btn-secondary {
	background-color: rgb(206, 206, 206);
	color: rgb(74, 201, 227);
	font-family: Bungee;
	font-size: 14px;
	letter-spacing: 0.167em;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:active:focus {
	background-color: rgb(74, 201, 227);
	color: rgb(74, 201, 227);
}

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

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

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

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

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

	padding: .9375rem 0;
}

.sf-item {
	-webkit-flex-grow: 1;
	-moz-flex-grow: 1;
	-ms-flex-grow: 1;
	flex-grow: 1;
	border: 1px solid #E1E1E1;
	margin: 20px;
	text-align: center;
	padding: 20px;
}

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

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

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

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

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

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

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

/* Orders List
------------------------------*/
.orders-list {
	width: 100%;
	margin: 25px 0;
}
.orders-list h1 {
	text-align: center;
	color: rgb(255, 255, 255);
}
.orders-list .panel {
	width: 100%;
}

/* Checkout
------------------------------*/
.checkout_content {
	margin-top: 0;
	overflow: auto;
}
@media (min-width: 0) {
  /* Adjust the container or iframe specifically for your homepage component ID */
  #cmp_20404466-a034-4c1a-9de3-34e1c5a8815d .vertical-video-container, /* or #someID .whatever */
  #cmp_20404466-a034-4c1a-9de3-34e1c5a8815d iframe {
    position: static !important;
    padding: 0 !important;
    margin: 0 auto !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 9 / 16 !important;
    overflow: visible !important;
  }
}
.checkout_content #add_coupon_code {
	padding: .375rem 1rem;
	width: auto;
}

.checkout_content #checkout_button {
	background-color: rgb(12, 106, 178);
	border: none;
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 14px;
	letter-spacing: 0.167em;
	padding: 1.2em 5em;
}

.checkout_content #checkout_button:hover,
.checkout_content #checkout_button:focus,
.checkout_content #checkout_button:active,
.checkout_content #checkout_button:active:focus {
	background-color: rgb(206, 206, 206);
	color: rgb(74, 201, 227);
}

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

.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(74, 201, 227);
}

.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(12, 106, 178);
	color: rgb(12, 106, 178);
	letter-spacing: 1px;
	text-transform: uppercase;
}

#skip_button:hover,
#skip_button:focus,
#skip_button:active,
input[type="radio"]:checked + label.cj-btn, #skip_button.skipped {
	background-color: rgb(206, 206, 206);
	border-color: rgb(206, 206, 206);
	text-decoration: none;
}

/* Media Queries
------------------------------*/
@media (max-width: 767px) {
	section[class^="component"] {
		padding: 20px 0;
	}
	/* 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;
	}
}

/* 
   Final snippet for vertical videos
------------------------------------*/
.vertical-video-container {
  /* full width on mobile */
  width: 100%;
  margin: 0 auto;
  overflow: hidden; 
}

/* 9:16 ratio on the iframe itself */
.vertical-video-container iframe {
  display: block;
  width: 100%;
  height: auto;
  border: none;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
}

/* Cap width on desktop (≥992px) */
@media (min-width: 992px) {
  .vertical-video-container {
    max-width: 384px;
  }
}
/* Force Full Width on Mobile; Cap at 384px on Desktop */
.vertical-video-container {
  width: 100% !important;     /* fill the screen on mobile */
  margin: 0 auto !important;  /* center if narrower parent */
  overflow: hidden !important;/* optional, prevents overflow */
}

.vertical-video-container iframe {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  border: none !important;
  margin: 0 auto !important;
  aspect-ratio: 9 / 16 !important; /* force 9:16 vertical ratio */
}

/* On Desktop (≥992px), cap width at 384px */
@media (min-width: 992px) {
  .vertical-video-container {
    max-width: 384px !important;
  }
}
@media (min-width: 0) {
  /* Adjust the container or iframe specifically for your homepage component ID */
  #cmp_20404466-a034-4c1a-9de3-34e1c5a8815d .vertical-video-container, /* or #someID .whatever */
  #cmp_20404466-a034-4c1a-9de3-34e1c5a8815d iframe {
    position: static !important;
    padding: 0 !important;
    margin: 0 auto !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 9 / 16 !important;
    overflow: visible !important;
  }
}
img[src="None"] {
  display: none !important;
}
img[src*="Asset_11.png"] {
    display: none !important;
}
/*
 * components/about/cmp_04631d59-4657-47e0-91b5-8a1f1a363dfc/component.css
 */
#cmp_04631d59-4657-47e0-91b5-8a1f1a363dfc {
	background-color: rgb(74, 201, 227);
}

#cmp_04631d59-4657-47e0-91b5-8a1f1a363dfc h1 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_04631d59-4657-47e0-91b5-8a1f1a363dfc h2 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 32px;
}

#cmp_04631d59-4657-47e0-91b5-8a1f1a363dfc h3 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_04631d59-4657-47e0-91b5-8a1f1a363dfc p {
	color: rgb(0, 0, 0);
	font-family: Bungee;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_04631d59-4657-47e0-91b5-8a1f1a363dfc .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_04631d59-4657-47e0-91b5-8a1f1a363dfc ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Bungee;
	font-size: 14px;
}

#cmp_04631d59-4657-47e0-91b5-8a1f1a363dfc ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Bungee;
	font-size: 14px;
}

#cmp_04631d59-4657-47e0-91b5-8a1f1a363dfc  {
	padding-bottom: 0;
}
/*
 * components/about/cmp_08682311-0d9d-43a6-9ce5-06c0640abeab/component.css
 */
#cmp_08682311-0d9d-43a6-9ce5-06c0640abeab {
	background-color: rgb(74, 201, 227);
}

#cmp_08682311-0d9d-43a6-9ce5-06c0640abeab h1 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_08682311-0d9d-43a6-9ce5-06c0640abeab h2 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 32px;
}

#cmp_08682311-0d9d-43a6-9ce5-06c0640abeab h3 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_08682311-0d9d-43a6-9ce5-06c0640abeab p {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 16px;
}

@media (min-width: 768px) {
	#cmp_08682311-0d9d-43a6-9ce5-06c0640abeab .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_08682311-0d9d-43a6-9ce5-06c0640abeab ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 16px;
}

#cmp_08682311-0d9d-43a6-9ce5-06c0640abeab ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 16px;
}

/*
 * components/about/cmp_215d13a6-e535-4e86-8946-d7f99d7dfe2f/component.css
 */
#cmp_215d13a6-e535-4e86-8946-d7f99d7dfe2f {
	background-color: rgb(74, 201, 227);
}

#cmp_215d13a6-e535-4e86-8946-d7f99d7dfe2f h1 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_215d13a6-e535-4e86-8946-d7f99d7dfe2f h2 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 32px;
}

#cmp_215d13a6-e535-4e86-8946-d7f99d7dfe2f h3 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_215d13a6-e535-4e86-8946-d7f99d7dfe2f p {
	color: rgb(0, 0, 0);
	font-family: Bungee;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_215d13a6-e535-4e86-8946-d7f99d7dfe2f .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_215d13a6-e535-4e86-8946-d7f99d7dfe2f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Bungee;
	font-size: 14px;
}

#cmp_215d13a6-e535-4e86-8946-d7f99d7dfe2f ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Bungee;
	font-size: 14px;
}

/*
 * components/about/cmp_8d48e937-4ae3-45ca-8392-c308f4107357/component.css
 */
#cmp_8d48e937-4ae3-45ca-8392-c308f4107357 {
	background-color: #E8E4E2;
}

#cmp_8d48e937-4ae3-45ca-8392-c308f4107357 h1 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_8d48e937-4ae3-45ca-8392-c308f4107357 h2 {
	color: rgb(74, 201, 227);
	font-family: Bungee;
	font-size: 32px;
}

#cmp_8d48e937-4ae3-45ca-8392-c308f4107357 h3 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_8d48e937-4ae3-45ca-8392-c308f4107357 p {
	color: rgb(0, 0, 0);
	font-family: Bungee;
	font-size: 16px;
}


#cmp_8d48e937-4ae3-45ca-8392-c308f4107357 .btn {
	background-color: rgb(12, 106, 178);
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 14px;
}

#cmp_8d48e937-4ae3-45ca-8392-c308f4107357 .btn:hover {
	background-color: rgb(206, 206, 206);
	color: rgb(74, 201, 227);
}

#cmp_8d48e937-4ae3-45ca-8392-c308f4107357 .component-rich-text-with-button__content-row,
#cmp_8d48e937-4ae3-45ca-8392-c308f4107357 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_8d48e937-4ae3-45ca-8392-c308f4107357 .component-rich-text-with-button__content-row,
	#cmp_8d48e937-4ae3-45ca-8392-c308f4107357 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_8d48e937-4ae3-45ca-8392-c308f4107357 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Bungee;
	font-size: 16px;
}

#cmp_8d48e937-4ae3-45ca-8392-c308f4107357 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Bungee;
	font-size: 16px;
}

/*
 * components/about/cmp_d374f412-1a1a-472d-ac20-906e84a025f9/component.css
 */
#cmp_d374f412-1a1a-472d-ac20-906e84a025f9 {
	background-color: rgb(74, 201, 227);
}

#cmp_d374f412-1a1a-472d-ac20-906e84a025f9 .content-row {
	margin: 0;

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

#cmp_d374f412-1a1a-472d-ac20-906e84a025f9 .content {
	background-color: rgb(206, 206, 206);
	border: 5px solid rgb(206, 206, 206);
	margin: 15px 0;
	padding: 25px;

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

#cmp_d374f412-1a1a-472d-ac20-906e84a025f9 .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_d374f412-1a1a-472d-ac20-906e84a025f9 h1 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_d374f412-1a1a-472d-ac20-906e84a025f9 h2 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 32px;
}

#cmp_d374f412-1a1a-472d-ac20-906e84a025f9 h3 {
	color: rgb(74, 201, 227);
	font-family: Bungee;
	font-size: 16px;
}

#cmp_d374f412-1a1a-472d-ac20-906e84a025f9 p {
	color: rgb(0, 0, 0);
	font-family: Bungee;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_d374f412-1a1a-472d-ac20-906e84a025f9 .content {
		margin: 15px;
	}
}
#cmp_d374f412-1a1a-472d-ac20-906e84a025f9  {
	padding-top: 0;
}
/*
 * components/checkout/cmp_6820ce75-c416-4a67-840a-c8a05de3a643/component.css
 */
#cmp_6820ce75-c416-4a67-840a-c8a05de3a643 {
	background-color: rgb(74, 201, 227);
}

#cmp_6820ce75-c416-4a67-840a-c8a05de3a643 h1 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_6820ce75-c416-4a67-840a-c8a05de3a643 h2 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 32px;
}

#cmp_6820ce75-c416-4a67-840a-c8a05de3a643 h3 {
	color: rgb(255, 255, 255);
	font-family: Alata;
	font-size: 14px;
}

#cmp_6820ce75-c416-4a67-840a-c8a05de3a643 p {
	color: rgb(0, 0, 0);
	font-family: Bungee;
	font-size: 14px;
}


#cmp_6820ce75-c416-4a67-840a-c8a05de3a643 .btn {
	background-color: rgb(12, 106, 178);
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 14px;
}

#cmp_6820ce75-c416-4a67-840a-c8a05de3a643 .btn:hover {
	background-color: rgb(206, 206, 206);
	color: rgb(74, 201, 227);
}

#cmp_6820ce75-c416-4a67-840a-c8a05de3a643 .component-rich-text-with-button__content-row,
#cmp_6820ce75-c416-4a67-840a-c8a05de3a643 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_6820ce75-c416-4a67-840a-c8a05de3a643 .component-rich-text-with-button__content-row,
	#cmp_6820ce75-c416-4a67-840a-c8a05de3a643 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_6820ce75-c416-4a67-840a-c8a05de3a643 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Bungee;
	font-size: 14px;
}

#cmp_6820ce75-c416-4a67-840a-c8a05de3a643 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Bungee;
	font-size: 14px;
}

/*
 * components/checkout/cmp_e4aa30ee-0946-4ee3-b700-cc1d459b6179/component.css
 */
#cmp_e4aa30ee-0946-4ee3-b700-cc1d459b6179 .checkout_content {
	overflow: auto;
}

#cmp_e4aa30ee-0946-4ee3-b700-cc1d459b6179 .checkout_content section {
	border-color: #F5F5F5;
}

#cmp_e4aa30ee-0946-4ee3-b700-cc1d459b6179 .cart_listing table {
	border-color: #F5F5F5;
}
#cmp_e4aa30ee-0946-4ee3-b700-cc1d459b6179 img {
    display: none !important;
}

#cmp_e4aa30ee-0946-4ee3-b700-cc1d459b6179 * {
    background-image: none !important;
}
/*
 * components/customer/account/cmp_38656598-0d25-494e-835c-658ec0b9b146/component.css
 */
#cmp_38656598-0d25-494e-835c-658ec0b9b146 .customer-product-review {
	border-bottom: 1px solid #ddd;
	padding: 15px;
}

#cmp_38656598-0d25-494e-835c-658ec0b9b146 .customer-product-review:last-child {
	border-bottom: 0;
}

#cmp_38656598-0d25-494e-835c-658ec0b9b146 .customer-product-rating {
	color: rgb(245, 166, 35);
	float: right;
}

/*
 * components/customer/account/cmp_cb769c93-9f19-4584-9c13-2e0166108051/component.css
 */

/*
 * components/customer/edit/cmp_49d9fe83-a5aa-4903-8882-e325a4252ebd/component.css
 */

/*
 * components/customer/forgot_password/cmp_08a15aae-efe9-4ca6-8eab-49969d01c96f/component.css
 */
#cmp_08a15aae-efe9-4ca6-8eab-49969d01c96f {
	background-color: rgb(74, 201, 227);
}

#cmp_08a15aae-efe9-4ca6-8eab-49969d01c96f h1 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_08a15aae-efe9-4ca6-8eab-49969d01c96f h2 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 32px;
}

#cmp_08a15aae-efe9-4ca6-8eab-49969d01c96f h3 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_08a15aae-efe9-4ca6-8eab-49969d01c96f p {
	color: rgb(0, 0, 0);
	font-family: Bungee;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_08a15aae-efe9-4ca6-8eab-49969d01c96f .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_08a15aae-efe9-4ca6-8eab-49969d01c96f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Bungee;
	font-size: 14px;
}

#cmp_08a15aae-efe9-4ca6-8eab-49969d01c96f ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Bungee;
	font-size: 14px;
}

/*
 * components/customer/forgot_password/cmp_c4bce635-7f71-4419-887b-bb3b2d358916/component.css
 */
#cmp_c4bce635-7f71-4419-887b-bb3b2d358916 {
	padding: 0 0 120px 0;
}
/*
 * components/customer/login/cmp_306cb7cb-b82f-4e2e-8d37-673f47b688e9/component.css
 */
#cmp_306cb7cb-b82f-4e2e-8d37-673f47b688e9 {
	padding: 0 0 120px 0;
}
/*
 * components/customer/login/cmp_f62ed10d-cc9d-4c01-b209-fd3dc1c7c002/component.css
 */
#cmp_f62ed10d-cc9d-4c01-b209-fd3dc1c7c002 {
	background-color: rgb(74, 201, 227);
}

#cmp_f62ed10d-cc9d-4c01-b209-fd3dc1c7c002 h1 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_f62ed10d-cc9d-4c01-b209-fd3dc1c7c002 h2 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 32px;
}

#cmp_f62ed10d-cc9d-4c01-b209-fd3dc1c7c002 h3 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_f62ed10d-cc9d-4c01-b209-fd3dc1c7c002 p {
	color: rgb(0, 0, 0);
	font-family: Bungee;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_f62ed10d-cc9d-4c01-b209-fd3dc1c7c002 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_f62ed10d-cc9d-4c01-b209-fd3dc1c7c002 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Bungee;
	font-size: 14px;
}

#cmp_f62ed10d-cc9d-4c01-b209-fd3dc1c7c002 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Bungee;
	font-size: 14px;
}

/*
 * components/customer/order/cmp_b5157280-5ff7-4fa2-b179-598044d613db/component.css
 */

/*
 * components/customer/orders/cmp_2c67af35-7e4c-4f45-b24b-935e5ed969f5/component.css
 */

/*
 * components/customer/password_reset/cmp_5c7544d1-e17e-4728-9bda-5365c823c8d1/component.css
 */
#cmp_5c7544d1-e17e-4728-9bda-5365c823c8d1 {
	padding: 0 0 120px 0;
}
/*
 * components/customer/password_reset/cmp_78083249-77bc-4184-a62f-f7026b01471c/component.css
 */
#cmp_78083249-77bc-4184-a62f-f7026b01471c {
	background-color: rgb(74, 201, 227);
}

#cmp_78083249-77bc-4184-a62f-f7026b01471c h1 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_78083249-77bc-4184-a62f-f7026b01471c h2 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 32px;
}

#cmp_78083249-77bc-4184-a62f-f7026b01471c h3 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_78083249-77bc-4184-a62f-f7026b01471c p {
	color: rgb(0, 0, 0);
	font-family: Bungee;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_78083249-77bc-4184-a62f-f7026b01471c .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_78083249-77bc-4184-a62f-f7026b01471c ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Bungee;
	font-size: 14px;
}

#cmp_78083249-77bc-4184-a62f-f7026b01471c ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Bungee;
	font-size: 14px;
}

/*
 * components/customer/thank_you/cmp_ea1cb5d1-e7e0-40ef-bf58-ea0beb918470/component.css
 */

/*
 * components/discover_groombox/cmp_06b28242-97f0-41fa-a08b-9c89e145b408/component.css
 */
#cmp_06b28242-97f0-41fa-a08b-9c89e145b408 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: rgb(74, 201, 227);
}

#cmp_06b28242-97f0-41fa-a08b-9c89e145b408 .content {
	padding: 0;
}

/*
 * components/discover_groombox/cmp_0bf82e56-01ec-4ab6-9aa9-e95b237b8343/component.css
 */
#cmp_0bf82e56-01ec-4ab6-9aa9-e95b237b8343 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: rgb(74, 201, 227);
}

#cmp_0bf82e56-01ec-4ab6-9aa9-e95b237b8343 .content {
	padding: 0;
}

/*
 * components/discover_groombox/cmp_12f10f93-4b41-4554-98c5-e88e00953f22/component.css
 */
#cmp_12f10f93-4b41-4554-98c5-e88e00953f22 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: rgb(74, 201, 227);
}

#cmp_12f10f93-4b41-4554-98c5-e88e00953f22 .content {
	padding: 0;
}

/*
 * components/discover_groombox/cmp_286bc425-41b2-4756-bcea-367c5498f554/component.css
 */
#cmp_286bc425-41b2-4756-bcea-367c5498f554 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: rgb(74, 201, 227);
}

#cmp_286bc425-41b2-4756-bcea-367c5498f554 .content {
	padding: 0;
}

/*
 * components/discover_groombox/cmp_42b8ec7a-ae08-40dc-946c-fcf8c8d65942/component.css
 */
#cmp_42b8ec7a-ae08-40dc-946c-fcf8c8d65942 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: rgb(74, 201, 227);
}

#cmp_42b8ec7a-ae08-40dc-946c-fcf8c8d65942 .content {
	padding: 0;
}

/*
 * components/discover_groombox/cmp_bea62402-b73a-4cb5-9546-2d6a189d83b1/component.css
 */
#cmp_bea62402-b73a-4cb5-9546-2d6a189d83b1 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: rgb(74, 201, 227);
}

#cmp_bea62402-b73a-4cb5-9546-2d6a189d83b1 .content {
	padding: 0;
}

/*
 * components/discover_groombox/cmp_c536dde7-a3c9-4706-b073-7a9e7f70f464/component.css
 */
#cmp_c536dde7-a3c9-4706-b073-7a9e7f70f464 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: rgb(74, 201, 227);
}

#cmp_c536dde7-a3c9-4706-b073-7a9e7f70f464 .content {
	padding: 0;
}

/*
 * components/discover_groombox/cmp_c61bc62f-e9b6-4dd9-a82c-4204029022a7/component.css
 */
#cmp_c61bc62f-e9b6-4dd9-a82c-4204029022a7 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: rgb(74, 201, 227);
}

#cmp_c61bc62f-e9b6-4dd9-a82c-4204029022a7 .content {
	padding: 0;
}

/*
 * components/discover_groombox/cmp_dc47a48a-4ff1-43e7-a618-9ec7c443eff1/component.css
 */
#cmp_dc47a48a-4ff1-43e7-a618-9ec7c443eff1 {
	background-color: rgb(74, 201, 227);
}

#cmp_dc47a48a-4ff1-43e7-a618-9ec7c443eff1 h1 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_dc47a48a-4ff1-43e7-a618-9ec7c443eff1 h2 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 32px;
}

#cmp_dc47a48a-4ff1-43e7-a618-9ec7c443eff1 h3 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_dc47a48a-4ff1-43e7-a618-9ec7c443eff1 p {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 16px;
}


#cmp_dc47a48a-4ff1-43e7-a618-9ec7c443eff1 .btn {
	background-color: rgb(12, 106, 178);
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 14px;
}

#cmp_dc47a48a-4ff1-43e7-a618-9ec7c443eff1 .btn:hover {
	background-color: rgb(206, 206, 206);
	color: rgb(74, 201, 227);
}

#cmp_dc47a48a-4ff1-43e7-a618-9ec7c443eff1 .component-rich-text-with-button__content-row,
#cmp_dc47a48a-4ff1-43e7-a618-9ec7c443eff1 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_dc47a48a-4ff1-43e7-a618-9ec7c443eff1 .component-rich-text-with-button__content-row,
	#cmp_dc47a48a-4ff1-43e7-a618-9ec7c443eff1 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_dc47a48a-4ff1-43e7-a618-9ec7c443eff1 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 16px;
}

#cmp_dc47a48a-4ff1-43e7-a618-9ec7c443eff1 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 16px;
}

/*
 * components/discover_groombox/cmp_ddd1f0ec-066e-4898-9ddd-9ff68a43a043/component.css
 */
#cmp_ddd1f0ec-066e-4898-9ddd-9ff68a43a043 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: rgb(74, 201, 227);
}

#cmp_ddd1f0ec-066e-4898-9ddd-9ff68a43a043 .content {
	padding: 0;
}

/*
 * components/discover_groombox/cmp_dea06c58-1789-493c-8384-a888a40974b4/component.css
 */
#cmp_dea06c58-1789-493c-8384-a888a40974b4 {
	background-color: rgb(74, 201, 227);
}

#cmp_dea06c58-1789-493c-8384-a888a40974b4 h1 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_dea06c58-1789-493c-8384-a888a40974b4 h2 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 32px;
}

#cmp_dea06c58-1789-493c-8384-a888a40974b4 h3 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_dea06c58-1789-493c-8384-a888a40974b4 p {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 16px;
}

@media (min-width: 768px) {
	#cmp_dea06c58-1789-493c-8384-a888a40974b4 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_dea06c58-1789-493c-8384-a888a40974b4 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 16px;
}

#cmp_dea06c58-1789-493c-8384-a888a40974b4 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 16px;
}

/*
 * components/discover_groombox/cmp_e291a2c9-df0a-46f8-8551-4c76a6a43924/component.css
 */
#cmp_e291a2c9-df0a-46f8-8551-4c76a6a43924 {
	background-color: rgb(74, 201, 227);
}

#cmp_e291a2c9-df0a-46f8-8551-4c76a6a43924 h1 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_e291a2c9-df0a-46f8-8551-4c76a6a43924 h2 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 32px;
}

#cmp_e291a2c9-df0a-46f8-8551-4c76a6a43924 h3 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_e291a2c9-df0a-46f8-8551-4c76a6a43924 p {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 16px;
}


#cmp_e291a2c9-df0a-46f8-8551-4c76a6a43924 .btn {
	background-color: rgb(12, 106, 178);
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 14px;
}

#cmp_e291a2c9-df0a-46f8-8551-4c76a6a43924 .btn:hover {
	background-color: rgb(206, 206, 206);
	color: rgb(74, 201, 227);
}

#cmp_e291a2c9-df0a-46f8-8551-4c76a6a43924 .component-rich-text-with-button__content-row,
#cmp_e291a2c9-df0a-46f8-8551-4c76a6a43924 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_e291a2c9-df0a-46f8-8551-4c76a6a43924 .component-rich-text-with-button__content-row,
	#cmp_e291a2c9-df0a-46f8-8551-4c76a6a43924 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_e291a2c9-df0a-46f8-8551-4c76a6a43924 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 16px;
}

#cmp_e291a2c9-df0a-46f8-8551-4c76a6a43924 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 16px;
}

/*
 * components/discover_groombox/cmp_eb5eb941-dbb9-429c-bf31-fd6de73fd018/component.css
 */
#cmp_eb5eb941-dbb9-429c-bf31-fd6de73fd018 {
	background-color: rgb(74, 201, 227);
}

#cmp_eb5eb941-dbb9-429c-bf31-fd6de73fd018 h1 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_eb5eb941-dbb9-429c-bf31-fd6de73fd018 h2 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 32px;
}

#cmp_eb5eb941-dbb9-429c-bf31-fd6de73fd018 h3 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_eb5eb941-dbb9-429c-bf31-fd6de73fd018 p {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 16px;
}


#cmp_eb5eb941-dbb9-429c-bf31-fd6de73fd018 .btn {
	background-color: rgb(12, 106, 178);
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 14px;
}

#cmp_eb5eb941-dbb9-429c-bf31-fd6de73fd018 .btn:hover {
	background-color: rgb(206, 206, 206);
	color: rgb(74, 201, 227);
}

#cmp_eb5eb941-dbb9-429c-bf31-fd6de73fd018 .component-rich-text-with-button__content-row,
#cmp_eb5eb941-dbb9-429c-bf31-fd6de73fd018 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_eb5eb941-dbb9-429c-bf31-fd6de73fd018 .component-rich-text-with-button__content-row,
	#cmp_eb5eb941-dbb9-429c-bf31-fd6de73fd018 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_eb5eb941-dbb9-429c-bf31-fd6de73fd018 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 16px;
}

#cmp_eb5eb941-dbb9-429c-bf31-fd6de73fd018 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 16px;
}

/*
 * components/faq/cmp_2cb5f6a3-c88a-4d38-97ac-c20e80193c10/component.css
 */
#cmp_2cb5f6a3-c88a-4d38-97ac-c20e80193c10 {
	background-color: rgb(74, 201, 227);
}

#cmp_2cb5f6a3-c88a-4d38-97ac-c20e80193c10 h1 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_2cb5f6a3-c88a-4d38-97ac-c20e80193c10 h2 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 32px;
}

#cmp_2cb5f6a3-c88a-4d38-97ac-c20e80193c10 h3 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_2cb5f6a3-c88a-4d38-97ac-c20e80193c10 p {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 16px;
}

@media (min-width: 768px) {
	#cmp_2cb5f6a3-c88a-4d38-97ac-c20e80193c10 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_2cb5f6a3-c88a-4d38-97ac-c20e80193c10 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 16px;
}

#cmp_2cb5f6a3-c88a-4d38-97ac-c20e80193c10 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 16px;
}

#cmp_2cb5f6a3-c88a-4d38-97ac-c20e80193c10 h2 {
	margin: 0 0 40px 0;
}
#cmp_2cb5f6a3-c88a-4d38-97ac-c20e80193c10 p {
	border-bottom: 1px solid #EEEEEE;
	padding: 0 0 25px 0;
}
/*
 * components/faq/cmp_dce40f69-a8e8-4838-a956-c959789fea75/component.css
 */
#cmp_dce40f69-a8e8-4838-a956-c959789fea75 {
	background-color: rgb(74, 201, 227);
}

#cmp_dce40f69-a8e8-4838-a956-c959789fea75 h1 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_dce40f69-a8e8-4838-a956-c959789fea75 h2 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 32px;
}

#cmp_dce40f69-a8e8-4838-a956-c959789fea75 h3 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_dce40f69-a8e8-4838-a956-c959789fea75 p {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 16px;
}


#cmp_dce40f69-a8e8-4838-a956-c959789fea75 .btn {
	background-color: rgb(12, 106, 178);
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 14px;
}

#cmp_dce40f69-a8e8-4838-a956-c959789fea75 .btn:hover {
	background-color: rgb(206, 206, 206);
	color: rgb(74, 201, 227);
}

#cmp_dce40f69-a8e8-4838-a956-c959789fea75 .component-rich-text-with-button__content-row,
#cmp_dce40f69-a8e8-4838-a956-c959789fea75 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_dce40f69-a8e8-4838-a956-c959789fea75 .component-rich-text-with-button__content-row,
	#cmp_dce40f69-a8e8-4838-a956-c959789fea75 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_dce40f69-a8e8-4838-a956-c959789fea75 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 16px;
}

#cmp_dce40f69-a8e8-4838-a956-c959789fea75 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 16px;
}

/*
 * components/global/cmp_50241e32-aae0-4ebd-bb5f-cfbf5ef19393/component.css
 */
#cmp_50241e32-aae0-4ebd-bb5f-cfbf5ef19393.footer {
	background-color: rgb(74, 201, 227);
	color: #FFFFFF;
	font-family: Bungee;
	padding: 25px 0;

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

#cmp_50241e32-aae0-4ebd-bb5f-cfbf5ef19393.footer p {
	color: #FFFFFF;
}

#cmp_50241e32-aae0-4ebd-bb5f-cfbf5ef19393 .footer-subscribe {
	padding: 15px 0;
}

#cmp_50241e32-aae0-4ebd-bb5f-cfbf5ef19393 .footer-subscribe .btn {
	border: 1px solid #FFFFFF;
}

#cmp_50241e32-aae0-4ebd-bb5f-cfbf5ef19393 .footer-social {
	padding: 15px 0;
}

#cmp_50241e32-aae0-4ebd-bb5f-cfbf5ef19393 .footer-social a {
	display: inline-block;
	padding: 0 5px;
}

#cmp_50241e32-aae0-4ebd-bb5f-cfbf5ef19393 .footer-social svg path {
	fill: rgb(255, 255, 255);
}

#cmp_50241e32-aae0-4ebd-bb5f-cfbf5ef19393 .footer-social a:hover svg path,
#cmp_50241e32-aae0-4ebd-bb5f-cfbf5ef19393 .footer-social a:focus svg path,
#cmp_50241e32-aae0-4ebd-bb5f-cfbf5ef19393 .footer-social a:active svg path {
	fill: rgb(255, 255, 255);
}

#cmp_50241e32-aae0-4ebd-bb5f-cfbf5ef19393 .footer-contact {
	padding: 15px 0;

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

#cmp_50241e32-aae0-4ebd-bb5f-cfbf5ef19393 .footer-contact p {
	margin: 0 0 0.5em 0;
}

@media (min-width: 768px) {
	#cmp_50241e32-aae0-4ebd-bb5f-cfbf5ef19393.footer {
		padding: 40px 0;

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

/*
 * components/global/cmp_96dc637f-657e-4463-b045-408901ebc59b/component.css
 */
#cmp_96dc637f-657e-4463-b045-408901ebc59b {
	background-color: rgb(74, 201, 227);
}

#cmp_96dc637f-657e-4463-b045-408901ebc59b h1 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_96dc637f-657e-4463-b045-408901ebc59b h2 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 32px;
}

#cmp_96dc637f-657e-4463-b045-408901ebc59b h3 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_96dc637f-657e-4463-b045-408901ebc59b p {
	color: rgb(0, 0, 0);
	font-family: Bungee;
	font-size: 14px;
}


#cmp_96dc637f-657e-4463-b045-408901ebc59b .btn {
	background-color: rgb(12, 106, 178);
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 14px;
}

#cmp_96dc637f-657e-4463-b045-408901ebc59b .btn:hover {
	background-color: rgb(206, 206, 206);
	color: rgb(74, 201, 227);
}

#cmp_96dc637f-657e-4463-b045-408901ebc59b .component-rich-text-with-button__content-row,
#cmp_96dc637f-657e-4463-b045-408901ebc59b .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_96dc637f-657e-4463-b045-408901ebc59b .component-rich-text-with-button__content-row,
	#cmp_96dc637f-657e-4463-b045-408901ebc59b .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_96dc637f-657e-4463-b045-408901ebc59b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Bungee;
	font-size: 14px;
}

#cmp_96dc637f-657e-4463-b045-408901ebc59b ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Bungee;
	font-size: 14px;
}

#cmp_96dc637f-657e-4463-b045-408901ebc59b  {
	padding-top: 0;
}
/*
 * components/global/cmp_9b7321da-9271-46ed-b2a0-a47184ceae15/component.css
 */
#cmp_9b7321da-9271-46ed-b2a0-a47184ceae15 {
	border-bottom: 4px solid rgb(74, 201, 227);
	padding: 0;
}

#cmp_9b7321da-9271-46ed-b2a0-a47184ceae15 .navbar {
	background-color: rgb(74, 201, 227);
	border-radius: 0;
	padding: 0;

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

#cmp_9b7321da-9271-46ed-b2a0-a47184ceae15 .navbar a:hover,
#cmp_9b7321da-9271-46ed-b2a0-a47184ceae15 .navbar a:focus,
#cmp_9b7321da-9271-46ed-b2a0-a47184ceae15 .navbar a:active {
	color: rgb(206, 206, 206);
}

#cmp_9b7321da-9271-46ed-b2a0-a47184ceae15 .navbar-brand {
	color: rgb(255, 255, 255);
	font-family: Alfa Slab One;
	font-size: 24px;
	margin: 0;
	max-width: 100%;
	padding: 15px;
	text-align: 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;

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

#cmp_9b7321da-9271-46ed-b2a0-a47184ceae15 .navbar-brand img {
	max-width: 100%;
}

#cmp_9b7321da-9271-46ed-b2a0-a47184ceae15 .navbar .navbar-toggler {
	background-color: rgb(12, 106, 178);
	border-radius: 0;
	color: rgb(255, 255, 255);
	font-size: 14px;
	letter-spacing: 0.071em;
	padding: 15px;
	text-transform: uppercase;
}

#cmp_9b7321da-9271-46ed-b2a0-a47184ceae15 .navbar .navbar-toggler:hover,
#cmp_9b7321da-9271-46ed-b2a0-a47184ceae15 .navbar .navbar-toggler:focus,
#cmp_9b7321da-9271-46ed-b2a0-a47184ceae15 .navbar .navbar-toggler:active {
	background-color: rgb(206, 206, 206);
	color: rgb(74, 201, 227);
}

#cmp_9b7321da-9271-46ed-b2a0-a47184ceae15 .navbar-nav {
	background-color: rgb(12, 106, 178);
	margin: 0;
	padding-top: 15px;
	padding-bottom: 15px;

	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-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

#cmp_9b7321da-9271-46ed-b2a0-a47184ceae15 .navbar-nav li {
	padding-top: 10px;
	padding-bottom: 10px;
}

#cmp_9b7321da-9271-46ed-b2a0-a47184ceae15 .navbar-nav .nav-link {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 14px;;
	letter-spacing: 0.071em;
	padding: 15px;
	text-align: center;
	text-transform: uppercase;
}

@media (max-width: 767px) {
	#cmp_9b7321da-9271-46ed-b2a0-a47184ceae15 {
		border-width: 0;
	}
	#cmp_9b7321da-9271-46ed-b2a0-a47184ceae15 .dropdown-menu {
		background-color: rgb(12, 106, 178);
	}
}

@media (min-width: 768px) {
	#cmp_9b7321da-9271-46ed-b2a0-a47184ceae15 .navbar {
		padding: 15px;
		padding-bottom: 0;

		-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;
	}
	#cmp_9b7321da-9271-46ed-b2a0-a47184ceae15 .navbar-brand {
		padding: 0;
		padding-bottom: 15px;
	}
	#cmp_9b7321da-9271-46ed-b2a0-a47184ceae15 .navbar-toggleable-sm {
		-webkit-flex-shrink: 1;
		-moz-flex-shrink: 1;
		-ms-flex-shrink: 1;
		flex-shrink: 1;

		-webkit-flex-grow: 2;
		-moz-flex-grow: 2;
		-ms-flex-grow: 2;
		flex-grow: 2;
	}
	#cmp_9b7321da-9271-46ed-b2a0-a47184ceae15 .navbar-nav {
		background-color: rgb(74, 201, 227);
		padding: 0;
		padding-bottom: 15px;
		
		-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;
	}
	#cmp_9b7321da-9271-46ed-b2a0-a47184ceae15 .navbar-nav li {
		padding: 0;
	}
	#cmp_9b7321da-9271-46ed-b2a0-a47184ceae15 .navbar-nav .nav-link {
		color: rgb(255, 255, 255);
	}
	#cmp_9b7321da-9271-46ed-b2a0-a47184ceae15 .navbar a:hover,
	#cmp_9b7321da-9271-46ed-b2a0-a47184ceae15 .navbar a:focus,
	#cmp_9b7321da-9271-46ed-b2a0-a47184ceae15 .navbar a:active {
		color: rgb(255, 255, 255);
	}
}

/*
 * components/howitworks/cmp_61254679-ee1e-4b20-a09a-870c21cdcfd5/component.css
 */
#cmp_61254679-ee1e-4b20-a09a-870c21cdcfd5 {
	background-color: rgb(74, 201, 227);
	padding: 0;
}

#cmp_61254679-ee1e-4b20-a09a-870c21cdcfd5 .content {
	margin: 0 auto;
	padding: 25px;
}

#cmp_61254679-ee1e-4b20-a09a-870c21cdcfd5 .content .cta {
	border: 5px solid rgb(74, 201, 227);
	padding: 45px;
}

#cmp_61254679-ee1e-4b20-a09a-870c21cdcfd5 h1 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_61254679-ee1e-4b20-a09a-870c21cdcfd5 h2 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 32px;
}

#cmp_61254679-ee1e-4b20-a09a-870c21cdcfd5 h3 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_61254679-ee1e-4b20-a09a-870c21cdcfd5 p {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 16px;
}

/*
 * components/howitworks/cmp_b35ada5d-ecf2-4567-bf70-96425e4b2eea/component.css
 */
#cmp_b35ada5d-ecf2-4567-bf70-96425e4b2eea {
	background-color: #E8E4E2;
}

#cmp_b35ada5d-ecf2-4567-bf70-96425e4b2eea .content-row {
	margin: 0;

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

#cmp_b35ada5d-ecf2-4567-bf70-96425e4b2eea .content {
	background-color: rgb(74, 201, 227);
	border: 5px solid rgb(206, 206, 206);
	margin: 15px 0;
	padding: 25px;

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

#cmp_b35ada5d-ecf2-4567-bf70-96425e4b2eea .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_b35ada5d-ecf2-4567-bf70-96425e4b2eea h1 {
	color: rgb(74, 201, 227);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_b35ada5d-ecf2-4567-bf70-96425e4b2eea h2 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 32px;
}

#cmp_b35ada5d-ecf2-4567-bf70-96425e4b2eea h3 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_b35ada5d-ecf2-4567-bf70-96425e4b2eea p {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 16px;
}

@media (min-width: 768px) {
	#cmp_b35ada5d-ecf2-4567-bf70-96425e4b2eea .content {
		margin: 15px;
	}
}
/*
 * components/howitworks/cmp_d44f0b03-3ca2-4fb4-a4ba-5bca4a420145/component.css
 */
#cmp_d44f0b03-3ca2-4fb4-a4ba-5bca4a420145 {
	background-color: rgb(74, 201, 227);
}

#cmp_d44f0b03-3ca2-4fb4-a4ba-5bca4a420145 h1 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_d44f0b03-3ca2-4fb4-a4ba-5bca4a420145 h2 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 32px;
}

#cmp_d44f0b03-3ca2-4fb4-a4ba-5bca4a420145 h3 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_d44f0b03-3ca2-4fb4-a4ba-5bca4a420145 p {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 16px;
}

@media (min-width: 768px) {
	#cmp_d44f0b03-3ca2-4fb4-a4ba-5bca4a420145 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_d44f0b03-3ca2-4fb4-a4ba-5bca4a420145 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 16px;
}

#cmp_d44f0b03-3ca2-4fb4-a4ba-5bca4a420145 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 16px;
}

/*
 * components/howitworks/cmp_e909c6c8-f720-4460-99ba-2c7dadce17d0/component.css
 */
#cmp_e909c6c8-f720-4460-99ba-2c7dadce17d0 {
	background-color: rgb(74, 201, 227);
}

#cmp_e909c6c8-f720-4460-99ba-2c7dadce17d0 h1 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_e909c6c8-f720-4460-99ba-2c7dadce17d0 h2 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 32px;
}

#cmp_e909c6c8-f720-4460-99ba-2c7dadce17d0 h3 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_e909c6c8-f720-4460-99ba-2c7dadce17d0 p {
	color: rgb(250, 250, 250);
	font-family: Bungee;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_e909c6c8-f720-4460-99ba-2c7dadce17d0 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_e909c6c8-f720-4460-99ba-2c7dadce17d0 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(250, 250, 250);
	font-family: Bungee;
	font-size: 14px;
}

#cmp_e909c6c8-f720-4460-99ba-2c7dadce17d0 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(250, 250, 250);
	font-family: Bungee;
	font-size: 14px;
}

/*
 * components/index/cmp_1381d404-be83-45ca-adf9-aa48db1684ec/component.css
 */
#cmp_1381d404-be83-45ca-adf9-aa48db1684ec {
	background-color: rgb(255, 255, 255);
}

#cmp_1381d404-be83-45ca-adf9-aa48db1684ec h1 {
	color: rgb(74, 201, 227);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_1381d404-be83-45ca-adf9-aa48db1684ec h2 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 32px;
}

#cmp_1381d404-be83-45ca-adf9-aa48db1684ec h3 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_1381d404-be83-45ca-adf9-aa48db1684ec p {
	color: rgb(74, 201, 227);
	font-family: Bungee;
	font-size: 16px;
}


#cmp_1381d404-be83-45ca-adf9-aa48db1684ec .btn {
	background-color: rgb(74, 201, 227);
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 14px;
}

#cmp_1381d404-be83-45ca-adf9-aa48db1684ec .btn:hover {
	background-color: rgb(206, 206, 206);
	color: rgb(74, 201, 227);
}

#cmp_1381d404-be83-45ca-adf9-aa48db1684ec .component-rich-text-with-button__content-row,
#cmp_1381d404-be83-45ca-adf9-aa48db1684ec .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_1381d404-be83-45ca-adf9-aa48db1684ec .component-rich-text-with-button__content-row,
	#cmp_1381d404-be83-45ca-adf9-aa48db1684ec .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_1381d404-be83-45ca-adf9-aa48db1684ec ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 201, 227);
	font-family: Bungee;
	font-size: 16px;
}

#cmp_1381d404-be83-45ca-adf9-aa48db1684ec ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 201, 227);
	font-family: Bungee;
	font-size: 16px;
}

/*
 * components/index/cmp_20404466-a034-4c1a-9de3-34e1c5a8815d/component.css
 */
#cmp_20404466-a034-4c1a-9de3-34e1c5a8815d {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: rgb(74, 201, 227);
}

#cmp_20404466-a034-4c1a-9de3-34e1c5a8815d .content {
	padding: 0;
}
/*
 * components/index/cmp_31275be4-dcd6-4c99-a035-376e5ddc020d/component.css
 */
#cmp_31275be4-dcd6-4c99-a035-376e5ddc020d {
	background-color: rgb(74, 201, 227);
}

#cmp_31275be4-dcd6-4c99-a035-376e5ddc020d h1 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_31275be4-dcd6-4c99-a035-376e5ddc020d h2 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 32px;
}

#cmp_31275be4-dcd6-4c99-a035-376e5ddc020d h3 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_31275be4-dcd6-4c99-a035-376e5ddc020d p {
	color: rgb(0, 0, 0);
	font-family: Bungee;
	font-size: 14px;
}


#cmp_31275be4-dcd6-4c99-a035-376e5ddc020d .btn {
	background-color: rgb(12, 106, 178);
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 14px;
}

#cmp_31275be4-dcd6-4c99-a035-376e5ddc020d .btn:hover {
	background-color: rgb(206, 206, 206);
	color: rgb(74, 201, 227);
}

#cmp_31275be4-dcd6-4c99-a035-376e5ddc020d .component-rich-text-with-button__content-row,
#cmp_31275be4-dcd6-4c99-a035-376e5ddc020d .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_31275be4-dcd6-4c99-a035-376e5ddc020d .component-rich-text-with-button__content-row,
	#cmp_31275be4-dcd6-4c99-a035-376e5ddc020d .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_31275be4-dcd6-4c99-a035-376e5ddc020d ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Bungee;
	font-size: 14px;
}

#cmp_31275be4-dcd6-4c99-a035-376e5ddc020d ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Bungee;
	font-size: 14px;
}

/*
 * components/index/cmp_34483a50-5ced-47cc-bbb8-5699db89c287/component.css
 */
#cmp_34483a50-5ced-47cc-bbb8-5699db89c287 {
	background-color: rgb(255, 255, 255);
}

#cmp_34483a50-5ced-47cc-bbb8-5699db89c287 h1 {
	color: rgb(74, 201, 227);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_34483a50-5ced-47cc-bbb8-5699db89c287 h2 {
	color: rgb(74, 201, 227);
	font-family: Bungee;
	font-size: 32px;
}

#cmp_34483a50-5ced-47cc-bbb8-5699db89c287 h3 {
	color: rgb(74, 201, 227);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_34483a50-5ced-47cc-bbb8-5699db89c287 p {
	color: rgb(74, 201, 227);
	font-family: Bungee;
	font-size: 16px;
}

@media (min-width: 768px) {
	#cmp_34483a50-5ced-47cc-bbb8-5699db89c287 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_34483a50-5ced-47cc-bbb8-5699db89c287 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 201, 227);
	font-family: Bungee;
	font-size: 16px;
}

#cmp_34483a50-5ced-47cc-bbb8-5699db89c287 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 201, 227);
	font-family: Bungee;
	font-size: 16px;
}

/*
 * components/index/cmp_6502e450-7c01-4117-bde7-00fa408a00da/component.css
 */
#cmp_6502e450-7c01-4117-bde7-00fa408a00da {
	background-color: rgb(255, 255, 255);
}

#cmp_6502e450-7c01-4117-bde7-00fa408a00da .content-row {
	margin: 0;

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

#cmp_6502e450-7c01-4117-bde7-00fa408a00da .content {
	background-color: rgb(74, 201, 227);
	border: 5px solid rgba(255, 255, 255, 0);
	margin: 15px 0;
	padding: 25px;

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

#cmp_6502e450-7c01-4117-bde7-00fa408a00da .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_6502e450-7c01-4117-bde7-00fa408a00da h1 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_6502e450-7c01-4117-bde7-00fa408a00da h2 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 32px;
}

#cmp_6502e450-7c01-4117-bde7-00fa408a00da h3 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_6502e450-7c01-4117-bde7-00fa408a00da p {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

@media (min-width: 768px) {
	#cmp_6502e450-7c01-4117-bde7-00fa408a00da .content {
		margin: 15px;
	}
}
#cmp_6502e450-7c01-4117-bde7-00fa408a00da  {
	padding-top: 0;
}
/*
 * components/index/cmp_8356d62f-db4f-4dc1-977b-6718bb2d591c/component.css
 */
#cmp_8356d62f-db4f-4dc1-977b-6718bb2d591c {
	background-color: rgb(255, 255, 255);
}

#cmp_8356d62f-db4f-4dc1-977b-6718bb2d591c h1 {
	color: rgb(74, 201, 227);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_8356d62f-db4f-4dc1-977b-6718bb2d591c h2 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 32px;
}

#cmp_8356d62f-db4f-4dc1-977b-6718bb2d591c h3 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_8356d62f-db4f-4dc1-977b-6718bb2d591c p {
	color: rgb(74, 201, 227);
	font-family: Bungee;
	font-size: 16px;
}

@media (min-width: 768px) {
	#cmp_8356d62f-db4f-4dc1-977b-6718bb2d591c .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_8356d62f-db4f-4dc1-977b-6718bb2d591c ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 201, 227);
	font-family: Bungee;
	font-size: 16px;
}

#cmp_8356d62f-db4f-4dc1-977b-6718bb2d591c ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 201, 227);
	font-family: Bungee;
	font-size: 16px;
}

/*
 * components/index/cmp_93203b05-3217-4100-b3cf-7ccf01123d3f/component.css
 */
#cmp_93203b05-3217-4100-b3cf-7ccf01123d3f {
	background-position: right bottom !important;
	background-repeat: no-repeat !important;
	margin: 0;
	min-height: calc(100vh - 100px);
	padding: 0;

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

#cmp_93203b05-3217-4100-b3cf-7ccf01123d3f .container-fluid {
	width: 100%;
}

#cmp_93203b05-3217-4100-b3cf-7ccf01123d3f .hero-row {
	margin: 0;
}

#cmp_93203b05-3217-4100-b3cf-7ccf01123d3f .hero-content {
	margin: 0;
	text-align: center;
}

#cmp_93203b05-3217-4100-b3cf-7ccf01123d3f .hero-content h1 {
	color: #FFFFFF;
	font-family: Bungee;
	font-size: 48px;
}

#cmp_93203b05-3217-4100-b3cf-7ccf01123d3f .hero-content h2 {
	color: #FFFFFF;
	font-family: Bungee;
	font-size: 32px;
}

#cmp_93203b05-3217-4100-b3cf-7ccf01123d3f .hero-content h3 {
	color: #FFFFFF;
	font-family: Bungee;
	font-size: 24px;
}

#cmp_93203b05-3217-4100-b3cf-7ccf01123d3f .hero-content p {
	color: #FFFFFF;
	font-family: Bungee;
	font-size: 16px;
}

#cmp_93203b05-3217-4100-b3cf-7ccf01123d3f .hero-content .button-container {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

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

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

#cmp_93203b05-3217-4100-b3cf-7ccf01123d3f .hero-content .btn {
	margin: 5px 0;
	padding: 1em;
	white-space: normal;
	width: 90%;
}

#cmp_93203b05-3217-4100-b3cf-7ccf01123d3f .hero-content .btn-primary {
	background-color: rgb(74, 201, 227);
	color: #FFFFFF;
	font-family: Bungee;
	font-size: 14px;
}

#cmp_93203b05-3217-4100-b3cf-7ccf01123d3f .hero-content .btn-primary:hover,
#cmp_93203b05-3217-4100-b3cf-7ccf01123d3f .hero-content .btn-primary:focus,
#cmp_93203b05-3217-4100-b3cf-7ccf01123d3f .hero-content .btn-primary:active {
	background-color: rgb(206, 206, 206);
	color: #FFFFFF;
}

#cmp_93203b05-3217-4100-b3cf-7ccf01123d3f .hero-content .btn-secondary {
	background-color: rgb(206, 206, 206);
	color: rgb(74, 201, 227);
	font-family: Bungee;
	font-size: 14px;
}

#cmp_93203b05-3217-4100-b3cf-7ccf01123d3f .hero-content .btn-secondary:hover,
#cmp_93203b05-3217-4100-b3cf-7ccf01123d3f .hero-content .btn-secondary:focus,
#cmp_93203b05-3217-4100-b3cf-7ccf01123d3f .hero-content .btn-secondary:active {
	background-color: rgb(74, 201, 227);
	color: #FFFFFF;
}

@media (min-width: 768px) {
	#cmp_93203b05-3217-4100-b3cf-7ccf01123d3f {
		min-height: 40vw;
	}
	#cmp_93203b05-3217-4100-b3cf-7ccf01123d3f .hero-content {
		margin: 15px;
		text-align: left;
	}
	#cmp_93203b05-3217-4100-b3cf-7ccf01123d3f .hero-content .button-container {
		-webkit-justify-content: flex-start;
		-moz-justify-content: flex-start;
		-ms-justify-content: flex-start;
		justify-content: flex-start;
	}
	#cmp_93203b05-3217-4100-b3cf-7ccf01123d3f .hero-content .btn {
		margin: 0 15px 0 0;
		width: 45%;
	}
}

@media (min-width: 1200px) {
	#cmp_93203b05-3217-4100-b3cf-7ccf01123d3f {
		min-height: 533px;
	}
}
/*
 * components/index/cmp_bc9f7e6e-f900-4003-9710-9a8ae862dd60/component.css
 */
#cmp_bc9f7e6e-f900-4003-9710-9a8ae862dd60 {
	background-color: rgb(74, 201, 227);
}

#cmp_bc9f7e6e-f900-4003-9710-9a8ae862dd60 .content-row {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

#cmp_bc9f7e6e-f900-4003-9710-9a8ae862dd60 .content {
	margin: 25px auto;
	max-height: 250px;
	max-width: 250px;
	overflow: hidden;

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

#cmp_bc9f7e6e-f900-4003-9710-9a8ae862dd60 h1 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_bc9f7e6e-f900-4003-9710-9a8ae862dd60 h2 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 32px;
}

#cmp_bc9f7e6e-f900-4003-9710-9a8ae862dd60 h3 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_bc9f7e6e-f900-4003-9710-9a8ae862dd60 p {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 36px;
}

@media (min-width: 768px) {
	#cmp_bc9f7e6e-f900-4003-9710-9a8ae862dd60 .content-row {
		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
	}
}
/*
 * components/index/cmp_c790bdb0-32eb-41a3-9bd8-73ee5a8f1fb0/component.css
 */
#cmp_c790bdb0-32eb-41a3-9bd8-73ee5a8f1fb0 {
	background-color: rgb(255, 255, 255);
}

#cmp_c790bdb0-32eb-41a3-9bd8-73ee5a8f1fb0 h1 {
	color: rgb(74, 201, 227);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_c790bdb0-32eb-41a3-9bd8-73ee5a8f1fb0 h2 {
	color: rgb(74, 201, 227);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_c790bdb0-32eb-41a3-9bd8-73ee5a8f1fb0 h3 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_c790bdb0-32eb-41a3-9bd8-73ee5a8f1fb0 p {
	color: rgb(74, 201, 227);
	font-family: Bungee;
	font-size: 16px;
}

@media (min-width: 768px) {
	#cmp_c790bdb0-32eb-41a3-9bd8-73ee5a8f1fb0 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_c790bdb0-32eb-41a3-9bd8-73ee5a8f1fb0 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 201, 227);
	font-family: Bungee;
	font-size: 16px;
}

#cmp_c790bdb0-32eb-41a3-9bd8-73ee5a8f1fb0 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 201, 227);
	font-family: Bungee;
	font-size: 16px;
}

#cmp_c790bdb0-32eb-41a3-9bd8-73ee5a8f1fb0  {
	padding-bottom: 0;
}
/*
 * components/index/cmp_cd45fb20-f67f-4578-9b3d-1c953ed22973/component.css
 */
#cmp_cd45fb20-f67f-4578-9b3d-1c953ed22973 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: rgb(74, 201, 227);
}

#cmp_cd45fb20-f67f-4578-9b3d-1c953ed22973 .content {
	padding: 0;
}
/*
 * components/index/cmp_da61dec7-864a-4e1f-a419-12ad2481f616/component.css
 */
#cmp_da61dec7-864a-4e1f-a419-12ad2481f616 img {
	max-width: 100%;
}

/*
 * components/shear_warranty/cmp_b586ed1a-3908-484f-b975-60766ad9ab6b/component.css
 */
#cmp_b586ed1a-3908-484f-b975-60766ad9ab6b {
	background-color: rgb(74, 201, 227);
}

#cmp_b586ed1a-3908-484f-b975-60766ad9ab6b h1 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_b586ed1a-3908-484f-b975-60766ad9ab6b h2 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 32px;
}

#cmp_b586ed1a-3908-484f-b975-60766ad9ab6b h3 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_b586ed1a-3908-484f-b975-60766ad9ab6b p {
	color: rgb(0, 0, 0);
	font-family: Bungee;
	font-size: 14px;
}


#cmp_b586ed1a-3908-484f-b975-60766ad9ab6b .btn {
	background-color: rgb(12, 106, 178);
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 14px;
}

#cmp_b586ed1a-3908-484f-b975-60766ad9ab6b .btn:hover {
	background-color: rgb(206, 206, 206);
	color: rgb(74, 201, 227);
}

#cmp_b586ed1a-3908-484f-b975-60766ad9ab6b .component-rich-text-with-button__content-row,
#cmp_b586ed1a-3908-484f-b975-60766ad9ab6b .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_b586ed1a-3908-484f-b975-60766ad9ab6b .component-rich-text-with-button__content-row,
	#cmp_b586ed1a-3908-484f-b975-60766ad9ab6b .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_b586ed1a-3908-484f-b975-60766ad9ab6b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Bungee;
	font-size: 14px;
}

#cmp_b586ed1a-3908-484f-b975-60766ad9ab6b ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Bungee;
	font-size: 14px;
}

/*
 * components/shear_warranty/cmp_ce34d17a-e318-487f-a53a-cc8058828f0e/component.css
 */
#cmp_ce34d17a-e318-487f-a53a-cc8058828f0e {
	background-color: rgb(74, 201, 227);
}

#cmp_ce34d17a-e318-487f-a53a-cc8058828f0e h1 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_ce34d17a-e318-487f-a53a-cc8058828f0e h2 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 32px;
}

#cmp_ce34d17a-e318-487f-a53a-cc8058828f0e h3 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_ce34d17a-e318-487f-a53a-cc8058828f0e p {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_ce34d17a-e318-487f-a53a-cc8058828f0e .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_ce34d17a-e318-487f-a53a-cc8058828f0e ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 14px;
}

#cmp_ce34d17a-e318-487f-a53a-cc8058828f0e ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 14px;
}

/*
 * components/shop/listing/cmp_02fa476b-8d22-4879-8165-e73a403df73e/component.css
 */
.shop-listing-item {
	color: rgb(0, 0, 0);
}

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

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

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

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

.product_paging {
	margin: 20px 0;

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

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

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

.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 {
	background-color: #F9F9F9;
	text-decoration: none;
}

.product_page.active a {
	color: black;
}

/*
 * components/shop/listing/cmp_69e3b7d4-fbee-4396-874a-57f3b136811f/component.css
 */
#cmp_69e3b7d4-fbee-4396-874a-57f3b136811f {
	background-color: rgb(74, 201, 227);
}

#cmp_69e3b7d4-fbee-4396-874a-57f3b136811f h1 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_69e3b7d4-fbee-4396-874a-57f3b136811f h2 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 32px;
}

#cmp_69e3b7d4-fbee-4396-874a-57f3b136811f h3 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_69e3b7d4-fbee-4396-874a-57f3b136811f p {
	color: rgb(0, 0, 0);
	font-family: Bungee;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_69e3b7d4-fbee-4396-874a-57f3b136811f .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_69e3b7d4-fbee-4396-874a-57f3b136811f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Bungee;
	font-size: 14px;
}

#cmp_69e3b7d4-fbee-4396-874a-57f3b136811f ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Bungee;
	font-size: 14px;
}

#cmp_69e3b7d4-fbee-4396-874a-57f3b136811f  {
	padding-bottom: 20px;
}
/*
 * components/shop/listing/cmp_718fced2-6772-4fe7-ad85-2f6267398bc8/component.css
 */
#cmp_718fced2-6772-4fe7-ad85-2f6267398bc8 {
	border-bottom: 1px solid #E1E1E1;
	padding: 20px 0 40px 0;
}

#cmp_718fced2-6772-4fe7-ad85-2f6267398bc8 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_cc1d81bb-0a2c-468f-811c-77a833a30636/component.css
 */
#cmp_cc1d81bb-0a2c-468f-811c-77a833a30636 {
	padding: 20px 0;
}

#cmp_cc1d81bb-0a2c-468f-811c-77a833a30636 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/product/cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107/component.css
 */
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-avg-rating {
	margin-top: 3px;
	margin-bottom: 10px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-rating-text {
	color: rgb(0, 0, 0);
	margin-left: 10px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 #product-reviews-list-row {
	margin-top: 25px;
	margin-bottom: 50px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-reviews-list-heading {
	border-bottom: 1px solid #eee;
	font-family: Bungee;
	font-size: 32px;
	color: rgb(206, 206, 206);
	padding-bottom: 10px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-review {
	padding-top: 20px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-review-info {
	margin-bottom: 15px;
	overflow: auto;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-review-meta {
	float: left;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-review-rating {
	float: right;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-review-content {
	border-bottom: 1px solid #eee;
	padding-bottom: 5px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-review-title {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 15px;
	letter-spacing: 1px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-review-body {
	font-family: Bungee;
	font-size: 14px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-rating .cancel-on-png,
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-rating .cancel-off-png,
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-rating .star-on-png,
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-rating .star-off-png,
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-rating .star-half-png {
	color: rgb(74, 201, 227);
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 #reviews-show-more {
	color: rgb(12, 106, 178);
	display: inline-block;
	margin-top: 15px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .write-review-heading {
	border-bottom: 1px solid #eee;
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 15px;
	letter-spacing: 1px;
	padding-bottom: 10px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .write-review-message {
	font-family: Bungee;
	margin: 15px 0;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .write-review-message a {
	color: ;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .write-review-rating-row {
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .write-review-rating-label {
	font-family: Bungee;
	font-size: 14px;
	margin-right: 20px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 #write-review-rating {
	display: inline-block;
	line-height: 22px;
	vertical-align: middle;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 #write-review-rating .cancel-on-png,
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 #write-review-rating .cancel-off-png,
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 #write-review-rating .star-on-png,
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 #write-review-rating .star-off-png,
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 #write-review-rating .star-half-png {
	color: rgb(12, 106, 178);
	font-size: 22px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .write-review-title {
	border: 1px solid rgb(0, 0, 0);
	color: rgb(0, 0, 0);
	font-family: Bungee;
	font-size: 14px;
	font-weight: 300;
	padding-left: 5px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .write-review-body {
	border: 1px solid rgb(0, 0, 0);
	color: rgb(0, 0, 0);
	font-family: Bungee;
	font-size: 14px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .customer-product-review {
	border-bottom: 1px solid #ddd;
	padding: 15px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .customer-product-review:last-child {
	border-bottom: 0;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .customer-product-rating {
	color: rgb(74, 201, 227);
	float: right;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .customer-product-review.customer-product-review-hidden {
	display: none;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .customer-product-review h4 {
	font-size: 13px;
	margin-top: 6px;
	margin-bottom: 10px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .ecom-product-page .rating {
	border-right: 1px solid #eee;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-reviews-list-heading {
	margin-bottom: 20px;
}

/*
 * components/shop/product/cmp_ad6820c4-1255-4721-8231-5cc3394d67fa/component.css
 */
#cmp_ad6820c4-1255-4721-8231-5cc3394d67fa .shop-product select {
	width: auto;
}

#cmp_ad6820c4-1255-4721-8231-5cc3394d67fa .shop-product__name {
	margin-bottom: 20px;
}

#cmp_ad6820c4-1255-4721-8231-5cc3394d67fa .shop-product__price {
	margin-bottom: 20px;
}

#cmp_ad6820c4-1255-4721-8231-5cc3394d67fa .shop-product__add-to-cart {
	margin-bottom: 20px;
}

#cmp_ad6820c4-1255-4721-8231-5cc3394d67fa .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin-bottom: 40px;
}

#cmp_ad6820c4-1255-4721-8231-5cc3394d67fa .shop-product__review-share-desktop .rating,
#cmp_ad6820c4-1255-4721-8231-5cc3394d67fa .shop-product__review-share-desktop .sharing {
	padding-top: 10px;
}

#cmp_ad6820c4-1255-4721-8231-5cc3394d67fa .shop-product__review-share-desktop h3,
#cmp_ad6820c4-1255-4721-8231-5cc3394d67fa .shop-product__review-share-mobile h3 {
	margin: 10px 0;
}
#cmp_ad6820c4-1255-4721-8231-5cc3394d67fa  {
	padding-top: 0;
}
/*
 * components/shop/product/cmp_f6690ca6-798e-4892-8141-530a876a3cba/component.css
 */
#cmp_f6690ca6-798e-4892-8141-530a876a3cba.shop-product-header {
	padding: 60px 0 20px 0;
}

/*
 * components/sold_out/cmp_d825b7c7-a878-4324-b62f-38b9595dda60/component.css
 */
#cmp_d825b7c7-a878-4324-b62f-38b9595dda60 img {
	max-width: 100%;
}

/*
 * components/sold_out/cmp_f7f3fa68-0df1-4ef7-a7ac-0e1bbbefd43a/component.css
 */
#cmp_f7f3fa68-0df1-4ef7-a7ac-0e1bbbefd43a {
	background-color: rgb(74, 201, 227);
}

#cmp_f7f3fa68-0df1-4ef7-a7ac-0e1bbbefd43a h1 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_f7f3fa68-0df1-4ef7-a7ac-0e1bbbefd43a h2 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 32px;
}

#cmp_f7f3fa68-0df1-4ef7-a7ac-0e1bbbefd43a h3 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_f7f3fa68-0df1-4ef7-a7ac-0e1bbbefd43a p {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 14px;
}


#cmp_f7f3fa68-0df1-4ef7-a7ac-0e1bbbefd43a .btn {
	background-color: rgb(12, 106, 178);
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 14px;
}

#cmp_f7f3fa68-0df1-4ef7-a7ac-0e1bbbefd43a .btn:hover {
	background-color: rgb(206, 206, 206);
	color: rgb(74, 201, 227);
}

#cmp_f7f3fa68-0df1-4ef7-a7ac-0e1bbbefd43a .component-rich-text-with-button__content-row,
#cmp_f7f3fa68-0df1-4ef7-a7ac-0e1bbbefd43a .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_f7f3fa68-0df1-4ef7-a7ac-0e1bbbefd43a .component-rich-text-with-button__content-row,
	#cmp_f7f3fa68-0df1-4ef7-a7ac-0e1bbbefd43a .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_f7f3fa68-0df1-4ef7-a7ac-0e1bbbefd43a ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 14px;
}

#cmp_f7f3fa68-0df1-4ef7-a7ac-0e1bbbefd43a ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 14px;
}

#cmp_f7f3fa68-0df1-4ef7-a7ac-0e1bbbefd43a  {
	padding-top: 0;
}
/*
 * components/subscribe/cmp_33659d42-29ef-479d-856c-3cb9589584eb/component.css
 */
#cmp_33659d42-29ef-479d-856c-3cb9589584eb {
	background-color: rgb(74, 201, 227);
}

#cmp_33659d42-29ef-479d-856c-3cb9589584eb h1 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_33659d42-29ef-479d-856c-3cb9589584eb h2 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 32px;
}

#cmp_33659d42-29ef-479d-856c-3cb9589584eb h3 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_33659d42-29ef-479d-856c-3cb9589584eb p {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 16px;
}

@media (min-width: 768px) {
	#cmp_33659d42-29ef-479d-856c-3cb9589584eb .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_33659d42-29ef-479d-856c-3cb9589584eb ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 16px;
}

#cmp_33659d42-29ef-479d-856c-3cb9589584eb ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 16px;
}

#cmp_33659d42-29ef-479d-856c-3cb9589584eb  {
	padding-bottom: 0;
}
/*
 * components/subscribe/cmp_8cda7d98-30eb-4aa0-aede-c4779594d716/component.css
 */
#cmp_8cda7d98-30eb-4aa0-aede-c4779594d716 {
	background-color: rgb(74, 201, 227);
}

#cmp_8cda7d98-30eb-4aa0-aede-c4779594d716 h1 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_8cda7d98-30eb-4aa0-aede-c4779594d716 h2 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 32px;
}

#cmp_8cda7d98-30eb-4aa0-aede-c4779594d716 h3 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_8cda7d98-30eb-4aa0-aede-c4779594d716 p {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

@media (min-width: 768px) {
	#cmp_8cda7d98-30eb-4aa0-aede-c4779594d716 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_8cda7d98-30eb-4aa0-aede-c4779594d716 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_8cda7d98-30eb-4aa0-aede-c4779594d716 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_8cda7d98-30eb-4aa0-aede-c4779594d716  {
	padding-bottom: 0;
}
/*
 * components/subscribe/cmp_b0c2926e-24a8-4b0a-aefc-31704fc56a04/component.css
 */
#cmp_b0c2926e-24a8-4b0a-aefc-31704fc56a04 {
	background-color: #E8E4E2;
}

#cmp_b0c2926e-24a8-4b0a-aefc-31704fc56a04 h3 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_b0c2926e-24a8-4b0a-aefc-31704fc56a04 p {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 14px;
}

#cmp_b0c2926e-24a8-4b0a-aefc-31704fc56a04 .sf-item {
	background-color: rgb(74, 201, 227);
}
#cmp_b0c2926e-24a8-4b0a-aefc-31704fc56a04  {
	padding-top: 0;
}
/*
 * components/subscribe/cmp_c9795491-fd88-4ebb-b3c4-793de7b3a6c3/component.css
 */
#cmp_c9795491-fd88-4ebb-b3c4-793de7b3a6c3 {
	background-color: rgb(74, 201, 227);
}

#cmp_c9795491-fd88-4ebb-b3c4-793de7b3a6c3 .content-row {
	margin: 0;

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

#cmp_c9795491-fd88-4ebb-b3c4-793de7b3a6c3 .content {
	background-color: rgba(255, 255, 255, 0);
	border: 5px solid rgba(255, 255, 255, 0);
	margin: 15px 0;
	padding: 25px;

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

#cmp_c9795491-fd88-4ebb-b3c4-793de7b3a6c3 .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_c9795491-fd88-4ebb-b3c4-793de7b3a6c3 h1 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_c9795491-fd88-4ebb-b3c4-793de7b3a6c3 h2 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 32px;
}

#cmp_c9795491-fd88-4ebb-b3c4-793de7b3a6c3 h3 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_c9795491-fd88-4ebb-b3c4-793de7b3a6c3 p {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_c9795491-fd88-4ebb-b3c4-793de7b3a6c3 .content {
		margin: 15px;
	}
}
#cmp_c9795491-fd88-4ebb-b3c4-793de7b3a6c3  {
	padding-top: 0;
}
/*
 * components/subscribe/cmp_f1422ac0-5cdf-447f-9ff3-1efabff2d56e/component.css
 */
#cmp_f1422ac0-5cdf-447f-9ff3-1efabff2d56e {
	background-color: rgb(74, 201, 227);
	padding-bottom: 0;
}

#cmp_f1422ac0-5cdf-447f-9ff3-1efabff2d56e .progress-bar-container {
	position: relative;
}

#cmp_f1422ac0-5cdf-447f-9ff3-1efabff2d56e .progress-bar-filler {
	background: rgb(255, 255, 255);
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_f1422ac0-5cdf-447f-9ff3-1efabff2d56e .progress-bar {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-align-items: flex-start;
	-moz-align-items: flex-start;
	-ms-align-items: flex-start;
	align-items: flex-start;

	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
}

#cmp_f1422ac0-5cdf-447f-9ff3-1efabff2d56e .progress-bar .step {
	color: rgb(255, 255, 255);

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

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

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

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

#cmp_f1422ac0-5cdf-447f-9ff3-1efabff2d56e .progress-bar .step .point {
	background-color: rgb(74, 201, 227);
	border: 4px solid rgb(255, 255, 255);
	border-radius: 10px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_f1422ac0-5cdf-447f-9ff3-1efabff2d56e .progress-bar .step.active .point {
	background-color: rgb(74, 201, 227);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_f1422ac0-5cdf-447f-9ff3-1efabff2d56e .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * 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: 14px;

	color: rgb(255, 255, 255);
	background-color: rgb(12, 106, 178);
}

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

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

	color: rgb(255, 255, 255);
	background-color: rgb(12, 106, 178);
}

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

@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_6fbf18c8-78e2-4ac1-a52b-df118df1dcd5/component.css
 */
#cmp_6fbf18c8-78e2-4ac1-a52b-df118df1dcd5 {
	background-color: #E8E4E2;
}

#cmp_6fbf18c8-78e2-4ac1-a52b-df118df1dcd5 h3 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_6fbf18c8-78e2-4ac1-a52b-df118df1dcd5 p {
	color: rgb(0, 0, 0);
	font-family: Bungee;
	font-size: 14px;
}

#cmp_6fbf18c8-78e2-4ac1-a52b-df118df1dcd5  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_7a691779-2979-4d80-96c6-cfd27e2fc3c2/component.css
 */
#cmp_7a691779-2979-4d80-96c6-cfd27e2fc3c2 {
	background-color: #E8E4E2;
	padding-bottom: 0;
}

#cmp_7a691779-2979-4d80-96c6-cfd27e2fc3c2 h1 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_7a691779-2979-4d80-96c6-cfd27e2fc3c2 p {
	color: rgb(0, 0, 0);
	font-family: Bungee;
	font-size: 14px;
}
#cmp_7a691779-2979-4d80-96c6-cfd27e2fc3c2  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_d6c93318-c4ee-4fc1-a1aa-a4cef1ab03e3/component.css
 */
#cmp_d6c93318-c4ee-4fc1-a1aa-a4cef1ab03e3 {
	background-color: #E8E4E2;
	padding-bottom: 0;
}

#cmp_d6c93318-c4ee-4fc1-a1aa-a4cef1ab03e3 .progress-bar-container {
	position: relative;
}

#cmp_d6c93318-c4ee-4fc1-a1aa-a4cef1ab03e3 .progress-bar-filler {
	background: rgb(206, 206, 206);
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_d6c93318-c4ee-4fc1-a1aa-a4cef1ab03e3 .progress-bar {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-align-items: flex-start;
	-moz-align-items: flex-start;
	-ms-align-items: flex-start;
	align-items: flex-start;

	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
}

#cmp_d6c93318-c4ee-4fc1-a1aa-a4cef1ab03e3 .progress-bar .step {
	color: rgb(0, 0, 0);

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

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

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

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

#cmp_d6c93318-c4ee-4fc1-a1aa-a4cef1ab03e3 .progress-bar .step .point {
	background-color: #E8E4E2;
	border: 4px solid rgb(206, 206, 206);
	border-radius: 10px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_d6c93318-c4ee-4fc1-a1aa-a4cef1ab03e3 .progress-bar .step.active .point {
	background-color: rgb(74, 201, 227);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_d6c93318-c4ee-4fc1-a1aa-a4cef1ab03e3 .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe_flow/survey_step/cmp_e643bc82-3cde-4ef4-b052-5cc717cb0bc9/component.css
 */
#cmp_e643bc82-3cde-4ef4-b052-5cc717cb0bc9 {
	background-color: #FFFFFF;
}

#cmp_e643bc82-3cde-4ef4-b052-5cc717cb0bc9 h1 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_e643bc82-3cde-4ef4-b052-5cc717cb0bc9 h2 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 32px;
}

#cmp_e643bc82-3cde-4ef4-b052-5cc717cb0bc9 h3 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_e643bc82-3cde-4ef4-b052-5cc717cb0bc9 p {
	color: rgb(0, 0, 0);
	font-family: Bungee;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_e643bc82-3cde-4ef4-b052-5cc717cb0bc9 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_e643bc82-3cde-4ef4-b052-5cc717cb0bc9 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Bungee;
	font-size: 14px;
}

#cmp_e643bc82-3cde-4ef4-b052-5cc717cb0bc9 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Bungee;
	font-size: 14px;
}

#cmp_e643bc82-3cde-4ef4-b052-5cc717cb0bc9  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_fa6f2cfc-6e80-4fb2-a9f1-46161dc365b1/component.css
 */
#cmp_fa6f2cfc-6e80-4fb2-a9f1-46161dc365b1 {
	background-color: #FFFFFF;
}

#cmp_fa6f2cfc-6e80-4fb2-a9f1-46161dc365b1 .content-row {
	margin: 0;

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

#cmp_fa6f2cfc-6e80-4fb2-a9f1-46161dc365b1 .content {
	background-color: rgb(206, 206, 206);
	border: 5px solid rgb(206, 206, 206);
	margin: 15px 0;
	padding: 25px;

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

#cmp_fa6f2cfc-6e80-4fb2-a9f1-46161dc365b1 .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_fa6f2cfc-6e80-4fb2-a9f1-46161dc365b1 h1 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_fa6f2cfc-6e80-4fb2-a9f1-46161dc365b1 h2 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 32px;
}

#cmp_fa6f2cfc-6e80-4fb2-a9f1-46161dc365b1 h3 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_fa6f2cfc-6e80-4fb2-a9f1-46161dc365b1 p {
	color: rgb(0, 0, 0);
	font-family: Bungee;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_fa6f2cfc-6e80-4fb2-a9f1-46161dc365b1 .content {
		margin: 15px;
	}
}
#cmp_fa6f2cfc-6e80-4fb2-a9f1-46161dc365b1  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/terms_step/cmp_1c849106-fe04-445c-a300-1df2f76c457f/component.css
 */
#cmp_1c849106-fe04-445c-a300-1df2f76c457f {
	background-color: rgb(74, 201, 227);
	padding-bottom: 0;
}

#cmp_1c849106-fe04-445c-a300-1df2f76c457f h1 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_1c849106-fe04-445c-a300-1df2f76c457f p {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 14px;
}
#cmp_1c849106-fe04-445c-a300-1df2f76c457f  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/terms_step/cmp_46edf612-f568-4cf9-82e3-63e07c5cf297/component.css
 */
#cmp_46edf612-f568-4cf9-82e3-63e07c5cf297 {
	background-color: rgb(74, 201, 227);
}

#cmp_46edf612-f568-4cf9-82e3-63e07c5cf297 .content-row {
	margin: 0;

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

#cmp_46edf612-f568-4cf9-82e3-63e07c5cf297 .content {
	background-color: rgba(255, 255, 255, 0);
	border: 5px solid rgba(255, 255, 255, 0);
	margin: 15px 0;
	padding: 25px;

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

#cmp_46edf612-f568-4cf9-82e3-63e07c5cf297 .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_46edf612-f568-4cf9-82e3-63e07c5cf297 h1 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_46edf612-f568-4cf9-82e3-63e07c5cf297 h2 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 32px;
}

#cmp_46edf612-f568-4cf9-82e3-63e07c5cf297 h3 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_46edf612-f568-4cf9-82e3-63e07c5cf297 p {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 16px;
}

@media (min-width: 768px) {
	#cmp_46edf612-f568-4cf9-82e3-63e07c5cf297 .content {
		margin: 15px;
	}
}
#cmp_46edf612-f568-4cf9-82e3-63e07c5cf297  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/terms_step/cmp_7631b11a-d073-4c97-8dd3-521212f8b951/component.css
 */
#cmp_7631b11a-d073-4c97-8dd3-521212f8b951 {
	background-color: rgb(74, 201, 227);
}

#cmp_7631b11a-d073-4c97-8dd3-521212f8b951 h2 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_7631b11a-d073-4c97-8dd3-521212f8b951 h3 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 32px;
}

#cmp_7631b11a-d073-4c97-8dd3-521212f8b951 p {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 14px;
}

#cmp_7631b11a-d073-4c97-8dd3-521212f8b951 .sf-item {
	background-color: rgb(74, 201, 227);
}
#cmp_7631b11a-d073-4c97-8dd3-521212f8b951  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/terms_step/cmp_8777a8c1-73d4-4041-975f-1d070dc26e5a/component.css
 */
#cmp_8777a8c1-73d4-4041-975f-1d070dc26e5a {
	background-color: rgb(74, 201, 227);
}

#cmp_8777a8c1-73d4-4041-975f-1d070dc26e5a h1 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_8777a8c1-73d4-4041-975f-1d070dc26e5a h2 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 32px;
}

#cmp_8777a8c1-73d4-4041-975f-1d070dc26e5a h3 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_8777a8c1-73d4-4041-975f-1d070dc26e5a p {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 16px;
}

@media (min-width: 768px) {
	#cmp_8777a8c1-73d4-4041-975f-1d070dc26e5a .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_8777a8c1-73d4-4041-975f-1d070dc26e5a ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 16px;
}

#cmp_8777a8c1-73d4-4041-975f-1d070dc26e5a ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 16px;
}

#cmp_8777a8c1-73d4-4041-975f-1d070dc26e5a  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/terms_step/cmp_e590122c-f9f6-4d26-8a93-02c3ebea01f0/component.css
 */
#cmp_e590122c-f9f6-4d26-8a93-02c3ebea01f0 {
	background-color: rgb(74, 201, 227);
	padding-bottom: 0;
}

#cmp_e590122c-f9f6-4d26-8a93-02c3ebea01f0 .progress-bar-container {
	position: relative;
}

#cmp_e590122c-f9f6-4d26-8a93-02c3ebea01f0 .progress-bar-filler {
	background: rgb(206, 206, 206);
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_e590122c-f9f6-4d26-8a93-02c3ebea01f0 .progress-bar {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-align-items: flex-start;
	-moz-align-items: flex-start;
	-ms-align-items: flex-start;
	align-items: flex-start;

	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
}

#cmp_e590122c-f9f6-4d26-8a93-02c3ebea01f0 .progress-bar .step {
	color: rgb(255, 255, 255);

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

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

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

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

#cmp_e590122c-f9f6-4d26-8a93-02c3ebea01f0 .progress-bar .step .point {
	background-color: rgb(74, 201, 227);
	border: 4px solid rgb(206, 206, 206);
	border-radius: 10px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_e590122c-f9f6-4d26-8a93-02c3ebea01f0 .progress-bar .step.active .point {
	background-color: rgb(74, 201, 227);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_e590122c-f9f6-4d26-8a93-02c3ebea01f0 .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe_flow/variant_step/cmp_526862a1-c8fe-4565-9e6b-138b2e72b3c7/component.css
 */
#cmp_526862a1-c8fe-4565-9e6b-138b2e72b3c7 {
	background-color: rgb(74, 201, 227);
}

#cmp_526862a1-c8fe-4565-9e6b-138b2e72b3c7 .content-row {
	margin: 0;

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

#cmp_526862a1-c8fe-4565-9e6b-138b2e72b3c7 .content {
	background-color: rgba(255, 255, 255, 0);
	border: 5px solid rgba(255, 255, 255, 0);
	margin: 15px 0;
	padding: 25px;

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

#cmp_526862a1-c8fe-4565-9e6b-138b2e72b3c7 .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_526862a1-c8fe-4565-9e6b-138b2e72b3c7 h1 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_526862a1-c8fe-4565-9e6b-138b2e72b3c7 h2 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 32px;
}

#cmp_526862a1-c8fe-4565-9e6b-138b2e72b3c7 h3 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_526862a1-c8fe-4565-9e6b-138b2e72b3c7 p {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_526862a1-c8fe-4565-9e6b-138b2e72b3c7 .content {
		margin: 15px;
	}
}
#cmp_526862a1-c8fe-4565-9e6b-138b2e72b3c7  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_59fd0f70-0e2d-4326-9e7c-9a4c3a79578d/component.css
 */
#cmp_59fd0f70-0e2d-4326-9e7c-9a4c3a79578d {
	background-color: rgb(74, 201, 227);
	padding-bottom: 0;
}

#cmp_59fd0f70-0e2d-4326-9e7c-9a4c3a79578d .progress-bar-container {
	position: relative;
}

#cmp_59fd0f70-0e2d-4326-9e7c-9a4c3a79578d .progress-bar-filler {
	background: rgb(255, 255, 255);
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_59fd0f70-0e2d-4326-9e7c-9a4c3a79578d .progress-bar {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-align-items: flex-start;
	-moz-align-items: flex-start;
	-ms-align-items: flex-start;
	align-items: flex-start;

	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
}

#cmp_59fd0f70-0e2d-4326-9e7c-9a4c3a79578d .progress-bar .step {
	color: rgb(255, 255, 255);

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

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

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

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

#cmp_59fd0f70-0e2d-4326-9e7c-9a4c3a79578d .progress-bar .step .point {
	background-color: rgb(74, 201, 227);
	border: 4px solid rgb(255, 255, 255);
	border-radius: 10px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_59fd0f70-0e2d-4326-9e7c-9a4c3a79578d .progress-bar .step.active .point {
	background-color: rgb(74, 201, 227);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_59fd0f70-0e2d-4326-9e7c-9a4c3a79578d .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe_flow/variant_step/cmp_a4f252fd-694c-4ad2-9277-a63856949581/component.css
 */
#cmp_a4f252fd-694c-4ad2-9277-a63856949581 {
	background-color: rgb(74, 201, 227);
}

#cmp_a4f252fd-694c-4ad2-9277-a63856949581 h1 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_a4f252fd-694c-4ad2-9277-a63856949581 h2 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 36px;
}

#cmp_a4f252fd-694c-4ad2-9277-a63856949581 h3 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_a4f252fd-694c-4ad2-9277-a63856949581 p {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 16px;
}

@media (min-width: 768px) {
	#cmp_a4f252fd-694c-4ad2-9277-a63856949581 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_a4f252fd-694c-4ad2-9277-a63856949581 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 16px;
}

#cmp_a4f252fd-694c-4ad2-9277-a63856949581 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 16px;
}

#cmp_a4f252fd-694c-4ad2-9277-a63856949581  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_ae6aff78-94a7-45b7-b66f-038c878457af/component.css
 */
#cmp_ae6aff78-94a7-45b7-b66f-038c878457af {
	background-color: rgb(74, 201, 227);
}

#cmp_ae6aff78-94a7-45b7-b66f-038c878457af h3 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_ae6aff78-94a7-45b7-b66f-038c878457af p {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 14px;
}

#cmp_ae6aff78-94a7-45b7-b66f-038c878457af .sf-item {
	background-color: rgb(74, 201, 227);
}
#cmp_ae6aff78-94a7-45b7-b66f-038c878457af  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_f58947b4-d54c-4bca-b47e-5d7e29e83c44/component.css
 */
#cmp_f58947b4-d54c-4bca-b47e-5d7e29e83c44 {
	background-color: rgb(74, 201, 227);
	padding-bottom: 0;
}

#cmp_f58947b4-d54c-4bca-b47e-5d7e29e83c44 h1 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_f58947b4-d54c-4bca-b47e-5d7e29e83c44 p {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 14px;
}
#cmp_f58947b4-d54c-4bca-b47e-5d7e29e83c44  {
	padding-bottom: 0;
}
/*
 * components/terms_and_conditions/cmp_01bfe49f-126b-494d-83a4-d67ae8a78b49/component.css
 */
#cmp_01bfe49f-126b-494d-83a4-d67ae8a78b49 {
	background-color: rgb(74, 201, 227);
}

#cmp_01bfe49f-126b-494d-83a4-d67ae8a78b49 h1 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_01bfe49f-126b-494d-83a4-d67ae8a78b49 h2 {
	color: rgb(255, 255, 255);
	font-family: Antic Slab;
	font-size: 32px;
}

#cmp_01bfe49f-126b-494d-83a4-d67ae8a78b49 h3 {
	color: rgb(255, 255, 255);
	font-family: Antic Slab;
	font-size: 24px;
}

#cmp_01bfe49f-126b-494d-83a4-d67ae8a78b49 p {
	color: rgb(0, 0, 0);
	font-family: Antic Slab;
	font-size: 16px;
}

@media (min-width: 768px) {
	#cmp_01bfe49f-126b-494d-83a4-d67ae8a78b49 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_01bfe49f-126b-494d-83a4-d67ae8a78b49 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Antic Slab;
	font-size: 16px;
}

#cmp_01bfe49f-126b-494d-83a4-d67ae8a78b49 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Antic Slab;
	font-size: 16px;
}

/*
 * components/terms_and_conditions/cmp_6c0a23d9-f664-4939-959c-5c35875491dd/component.css
 */
#cmp_6c0a23d9-f664-4939-959c-5c35875491dd {
	background-color: rgb(74, 201, 227);
}

#cmp_6c0a23d9-f664-4939-959c-5c35875491dd h1 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_6c0a23d9-f664-4939-959c-5c35875491dd h2 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 32px;
}

#cmp_6c0a23d9-f664-4939-959c-5c35875491dd h3 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_6c0a23d9-f664-4939-959c-5c35875491dd p {
	color: rgb(0, 0, 0);
	font-family: Alata;
	font-size: 14px;
}


#cmp_6c0a23d9-f664-4939-959c-5c35875491dd .btn {
	background-color: rgb(12, 106, 178);
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 14px;
}

#cmp_6c0a23d9-f664-4939-959c-5c35875491dd .btn:hover {
	background-color: rgb(206, 206, 206);
	color: rgb(74, 201, 227);
}

#cmp_6c0a23d9-f664-4939-959c-5c35875491dd .component-rich-text-with-button__content-row,
#cmp_6c0a23d9-f664-4939-959c-5c35875491dd .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_6c0a23d9-f664-4939-959c-5c35875491dd .component-rich-text-with-button__content-row,
	#cmp_6c0a23d9-f664-4939-959c-5c35875491dd .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_6c0a23d9-f664-4939-959c-5c35875491dd ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Alata;
	font-size: 14px;
}

#cmp_6c0a23d9-f664-4939-959c-5c35875491dd ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Alata;
	font-size: 14px;
}

/*
 * components/view-cart/cmp_02ae579b-bcd2-4175-b878-e67e88d76806/component.css
 */
#cmp_02ae579b-bcd2-4175-b878-e67e88d76806 {
	padding: 15px 15px 100px 15px;
}

#cmp_02ae579b-bcd2-4175-b878-e67e88d76806 .cart-thead {
	border-bottom: 1px solid #E1E1E1;
	padding: 10px 0;
}

#cmp_02ae579b-bcd2-4175-b878-e67e88d76806 .cart-thead h3 {
	text-transform: uppercase;
}

#cmp_02ae579b-bcd2-4175-b878-e67e88d76806 .cart-item {
	border: 1px solid #E1E1E1;
	padding: 25px 0;
	position: relative;
}

#cmp_02ae579b-bcd2-4175-b878-e67e88d76806 .product-main {
	margin: 0 0 15px 0;
}

#cmp_02ae579b-bcd2-4175-b878-e67e88d76806 .product-label p {
	margin: 0;
}

#cmp_02ae579b-bcd2-4175-b878-e67e88d76806 .product-label .info {
	color: rgb(255, 255, 255);
	text-align: right;
	text-transform: uppercase;
}

#cmp_02ae579b-bcd2-4175-b878-e67e88d76806 .product-label .meta {
	color: rgb(0, 0, 0);
	font-size: 14px;
}

#cmp_02ae579b-bcd2-4175-b878-e67e88d76806 .product-rem-btn {
	position: absolute;
	right: 1%;
	top: 1%;
}

#cmp_02ae579b-bcd2-4175-b878-e67e88d76806 figure {
	margin: 0 0 15px 0;
}

#cmp_02ae579b-bcd2-4175-b878-e67e88d76806 .cart-subtotal {
	margin: 50px 0 0 0;
}

#cmp_02ae579b-bcd2-4175-b878-e67e88d76806 .cart-subtotal h2 {
	margin: 0 0 15px 0;
}

#cmp_02ae579b-bcd2-4175-b878-e67e88d76806 .cart-subtotal h3 {
	margin: 0 0 25px 0;
	text-transform: uppercase;
}

#cmp_02ae579b-bcd2-4175-b878-e67e88d76806 .cart-subtotal p {
	margin: 0 0 25px 0;
}

@media (min-width: 768px) {
	#cmp_02ae579b-bcd2-4175-b878-e67e88d76806 .cart-item {
		border-width: 0 0 1px 0;
	}
	#cmp_02ae579b-bcd2-4175-b878-e67e88d76806 .product-rem-btn {
		top: 40%;
	}
	#cmp_02ae579b-bcd2-4175-b878-e67e88d76806 figure {
		margin: 0;
	}
}

/*
 * components/view-cart/cmp_69ba38af-cef2-47fe-93ad-2f83f57e4cb5/component.css
 */
#cmp_69ba38af-cef2-47fe-93ad-2f83f57e4cb5 {
	background-color: rgb(74, 201, 227);
}

#cmp_69ba38af-cef2-47fe-93ad-2f83f57e4cb5 h1 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 48px;
}

#cmp_69ba38af-cef2-47fe-93ad-2f83f57e4cb5 h2 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 32px;
}

#cmp_69ba38af-cef2-47fe-93ad-2f83f57e4cb5 h3 {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 24px;
}

#cmp_69ba38af-cef2-47fe-93ad-2f83f57e4cb5 p {
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 16px;
}

@media (min-width: 768px) {
	#cmp_69ba38af-cef2-47fe-93ad-2f83f57e4cb5 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_69ba38af-cef2-47fe-93ad-2f83f57e4cb5 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 16px;
}

#cmp_69ba38af-cef2-47fe-93ad-2f83f57e4cb5 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(255, 255, 255);
	font-family: Bungee;
	font-size: 16px;
}