/*
 * css/style.css
 */
/* Globals
------------------------------*/
body {
	background-color: #FFFFFF;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
	letter-spacing: 0.077em;
	line-height: 1.5em;
}

h1 {
	color: rgb(0, 0, 0);
	font-family: Exo 2;
	font-size: 36px;
}

h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

p {
	line-height: 1.5em;
}

a,
.btn-link {
	color: rgb(255, 240, 0);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.nav-pills .nav-link.active,
.nav-pills .nav-link.active:focus,
.nav-pills .nav-link.active:hover,
.nav-pills .nav-link.active:active,
.nav-pills .nav-item.open .nav-link,
.nav-pills .nav-item.open .nav-link:focus,
.nav-pills .nav-item.open .nav-link:hover,
.nav-pills .nav-item.open .nav-link:active {
	background-color: rgb(255, 240, 0);
}

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

.panel-body {
	padding: 15px;
}

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

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

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

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

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

/* Buttons */
.btn {
	border-radius: 4px;
	border: none;
	padding: 14px 22px;
	letter-spacing: 2px;
	font-size: 14px;
}

.btn-small {
	padding: 0.6em 1.8em;
	border: 1px solid rgb(248, 231, 28);
	border-radius: 15px;
	color: rgb(248, 231, 28);
}

.btn-small:hover,
.btn-small:focus,
.btn-small:active,
.btn-small:active:focus {
	background-color: #4A4A4A;
	border: 1px solid #4A4A4A;
	color: rgb(248, 231, 28) !important;
}

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

.btn-primary {
	background-color: rgb(255, 240, 0);
	color: rgb(0, 0, 0);
	font-family: Luckiest Guy;
	font-size: 18px;
	letter-spacing: 0.167em;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus {
	background-color: rgb(0, 0, 0);
	color: rgb(255, 240, 0);
}

.btn-secondary {
	background-color: rgb(255, 240, 0);
	color: rgb(0, 0, 0);
	font-family: Luckiest Guy;
	font-size: 22px;
	letter-spacing: 0.167em;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:active:focus {
	background-color: rgb(255, 240, 0);
	color: rgb(20, 20, 20);
}

.btn-empty {
	background-color: transparent;
	color: rgb(248, 231, 28);
	border: 1px solid rgb(248, 231, 28);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.checkout_content #checkout_button {
	background-color: rgb(255, 240, 0);
	border: none;
	border-radius: 25px;
	color: rgb(0, 0, 0);
	font-family: Luckiest Guy;
	font-size: 18px;
	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(0, 0, 0);
	color: rgb(255, 240, 0);
}

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

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

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

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

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

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

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

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

.address-container {
	width: 100%;
}

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

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

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

.address-container {
	width: 100%;
}

.errors {
	margin: 25px 0;
}

.cratejoy-loading-icon {
	color: rgb(248, 231, 28);
}

.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(255, 240, 0);
	color: rgb(255, 240, 0);
	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(0, 0, 0);
	border-color: rgb(0, 0, 0);
	text-decoration: none;
}

/* Media Queries
------------------------------*/
@media (max-width: 767px) {
	/* Used to reverse a row when it wraps on smaller screens */
	.row-sm-reverse {
		-webkit-flex-wrap: wrap-reverse;
		-moz-flex-wrap: wrap-reverse;
		-ms-flex-wrap: wrap-reverse;
		flex-wrap: wrap-reverse;
	}
	.panel-cratejoy .pull-right,
	.panel-cratejoy .pull-left,
	.skip-dialog .pull-right,
	.skip-dialog .pull-left,
	.subscription_cancel .pull-right,
	.subscription_cancel .pull-left,
	#edit-subscription-form .pull-right,
	#edit-subscription-form .pull-left {
		float: none;
		width: 100%;
		margin: 10px 0;
	}
}

@media (min-width: 768px) {
	.account-header .gift-card-container {
		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
	}
	.account-header .gift-card-balance {
		margin: 0;
	}
}

@media (min-width: 992px) {
	.account-header h1,
	.account-header h2 {
		margin: 0;
	}
}

/* Slide panel
----------------------- */
.slidepanel {
  margin-top: 0;
  overflow: hidden;
  background-color: #fff;
  z-index: 20;
}

.slidepanel.top {
  left: 0;
  top: 0;
  width: 100%;
  background-position: center center;
  min-height: 700px;
  -webkit-background-size: 100%;
  -moz-background-size: 100%;
  -o-background-size: 100%;
  background-size: 100%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  z-index: 500;
}

.slidepanel.bottom {
  padding: 1px 0;
  box-shadow: 0 -10px 30px rgba(56, 52, 52, 0.2);
  z-index: 1000;
}

.viewport {
  margin-right: auto;
  margin-left: auto;
  overflow-x: hidden;
  padding-left: 0;
  padding-right: 0;
}

.row-offcanvas {
	display: flex;
  position: relative;
  -webkit-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  margin-left: -15px;
  margin-right: -15px;
}

.row-offcanvas .pagecontent {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.row-offcanvas.active .pagecontent {
  padding: 0;
}

.row-offcanvas.active:before {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(53, 53, 53, 0.35);
  content: "";
  z-index: 100;
}

.row-offcanvas-left {
  left: 0;
}

.row-offcanvas-left.active {
  left: 300px;
}

.row-offcanvas-left.active:before {
  right: 0;
}

.row-offcanvas-left .sidebar-offcanvas {
  left: -300px;
}

.row-offcanvas-right {
  right: 0;
}

.row-offcanvas-right.active {
  right: 300px;
}

.row-offcanvas-right.active:before {
  left: 0;
}

.row-offcanvas-right .sidebar-offcanvas {
  right: -300px;
}

#refer-link-col .refer-link { height: auto ! important; } 


.sidebar-offcanvas {
  float: left;
  width: 25%;
  min-height: 100vh;
  padding: 40px 50px 40px 35px;
  position: absolute;
  top: 0;
  bottom: 0;
  padding: 30px;
  height: 100%;
  width: 300px;
  z-index: 101;
	background: #FFFFFF;
}

.row-offcanvas.active .slidepanel {
  position: static;
}

.row-offcanvas.active .slidepanel.bottom {
  margin-top: 0 !important;
}

.sidebar-offcanvas {
}

/*
 * components/about_us/cmp_38cb6d3a-da21-4499-904a-691eee19a926/component.css
 */
#cmp_38cb6d3a-da21-4499-904a-691eee19a926 img {
	max-width: 100%;
}

/*
 * components/about_us/cmp_abfb811c-8955-4a05-a626-311326ace694/component.css
 */
#cmp_abfb811c-8955-4a05-a626-311326ace694 {
	background-color: #FFFFFF;
}

#cmp_abfb811c-8955-4a05-a626-311326ace694 h1 {
	color: rgb(0, 0, 0);
	font-family: Exo 2;
	font-size: 36px;
}

#cmp_abfb811c-8955-4a05-a626-311326ace694 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_abfb811c-8955-4a05-a626-311326ace694 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_abfb811c-8955-4a05-a626-311326ace694 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_abfb811c-8955-4a05-a626-311326ace694 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_abfb811c-8955-4a05-a626-311326ace694 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_abfb811c-8955-4a05-a626-311326ace694 .btn {
	background-color: rgb(0, 0, 0);
	color: rgb(248, 231, 28);
	font-family: Luckiest Guy;
	font-size: 18px;
}

#cmp_abfb811c-8955-4a05-a626-311326ace694 .btn:hover {
	background-color: rgb(0, 0, 0);
	color: rgb(248, 231, 28);
}

#cmp_abfb811c-8955-4a05-a626-311326ace694 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_abfb811c-8955-4a05-a626-311326ace694 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/blog/cmp_12878050-fb1d-4bb8-a98c-50b6dcc1c18a/component.css
 */
#cmp_12878050-fb1d-4bb8-a98c-50b6dcc1c18a img {
	max-width: 100%;
}

/*
 * components/blog/cmp_2ddcb3d9-847b-47e1-b9df-e72afdb1513f/component.css
 */
#cmp_2ddcb3d9-847b-47e1-b9df-e72afdb1513f {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_2ddcb3d9-847b-47e1-b9df-e72afdb1513f h1 {
	color: rgb(0, 0, 0);
	font-family: Exo 2;
	font-size: 36px;
}

#cmp_2ddcb3d9-847b-47e1-b9df-e72afdb1513f h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_2ddcb3d9-847b-47e1-b9df-e72afdb1513f h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_2ddcb3d9-847b-47e1-b9df-e72afdb1513f p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_2ddcb3d9-847b-47e1-b9df-e72afdb1513f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_2ddcb3d9-847b-47e1-b9df-e72afdb1513f ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/blog/cmp_cdafa590-cd11-4082-bd6c-e0d82a5c133b/component.css
 */
#cmp_cdafa590-cd11-4082-bd6c-e0d82a5c133b {
	background-color: #FFFFFF;
}

#cmp_cdafa590-cd11-4082-bd6c-e0d82a5c133b h1 {
	color: rgb(0, 0, 0);
	font-family: Exo 2;
	font-size: 36px;
}

#cmp_cdafa590-cd11-4082-bd6c-e0d82a5c133b h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_cdafa590-cd11-4082-bd6c-e0d82a5c133b h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_cdafa590-cd11-4082-bd6c-e0d82a5c133b p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_cdafa590-cd11-4082-bd6c-e0d82a5c133b .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_cdafa590-cd11-4082-bd6c-e0d82a5c133b .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_cdafa590-cd11-4082-bd6c-e0d82a5c133b .btn {
	background-color: rgb(255, 240, 0);
	color: rgb(0, 0, 0);
	font-family: Luckiest Guy;
	font-size: 18px;
}

#cmp_cdafa590-cd11-4082-bd6c-e0d82a5c133b .btn:hover {
	background-color: rgb(0, 0, 0);
	color: rgb(255, 240, 0);
}

#cmp_cdafa590-cd11-4082-bd6c-e0d82a5c133b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_cdafa590-cd11-4082-bd6c-e0d82a5c133b ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/checkout/cmp_c3ed7f71-c222-4d08-a165-8f9a6f976812/component.css
 */
#cmp_c3ed7f71-c222-4d08-a165-8f9a6f976812 .checkout_content {
	overflow: auto;
}

#cmp_c3ed7f71-c222-4d08-a165-8f9a6f976812 .checkout_content section {
	border-color: #F5F5F5;
}

#cmp_c3ed7f71-c222-4d08-a165-8f9a6f976812 .cart_listing table {
	border-color: #F5F5F5;
}

/*
 * components/contact_us/cmp_1ec9afe8-2015-462d-9501-8282d4a7e8ba/component.css
 */
#cmp_1ec9afe8-2015-462d-9501-8282d4a7e8ba {
	background-color: #FFFFFF;
}

#cmp_1ec9afe8-2015-462d-9501-8282d4a7e8ba h1 {
	color: rgb(0, 0, 0);
	font-family: Exo 2;
	font-size: 36px;
}

#cmp_1ec9afe8-2015-462d-9501-8282d4a7e8ba h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_1ec9afe8-2015-462d-9501-8282d4a7e8ba h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_1ec9afe8-2015-462d-9501-8282d4a7e8ba p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_1ec9afe8-2015-462d-9501-8282d4a7e8ba .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_1ec9afe8-2015-462d-9501-8282d4a7e8ba .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_1ec9afe8-2015-462d-9501-8282d4a7e8ba .btn {
	background-color: rgb(255, 240, 0);
	color: rgb(0, 0, 0);
	font-family: Luckiest Guy;
	font-size: 18px;
}

#cmp_1ec9afe8-2015-462d-9501-8282d4a7e8ba .btn:hover {
	background-color: rgb(0, 0, 0);
	color: rgb(255, 240, 0);
}

#cmp_1ec9afe8-2015-462d-9501-8282d4a7e8ba ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_1ec9afe8-2015-462d-9501-8282d4a7e8ba ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/contact_us/cmp_3c9cce57-b4ea-45d8-983c-7136b2ee1145/component.css
 */
#cmp_3c9cce57-b4ea-45d8-983c-7136b2ee1145 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_3c9cce57-b4ea-45d8-983c-7136b2ee1145 h1 {
	color: rgb(0, 0, 0);
	font-family: Exo 2;
	font-size: 36px;
}

#cmp_3c9cce57-b4ea-45d8-983c-7136b2ee1145 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_3c9cce57-b4ea-45d8-983c-7136b2ee1145 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_3c9cce57-b4ea-45d8-983c-7136b2ee1145 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_3c9cce57-b4ea-45d8-983c-7136b2ee1145 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_3c9cce57-b4ea-45d8-983c-7136b2ee1145 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/contact_us/cmp_5accafe8-e17c-4a72-9c47-622feb4f1273/component.css
 */
#cmp_5accafe8-e17c-4a72-9c47-622feb4f1273 {
	background-color: #FFFFFF;
}

#cmp_5accafe8-e17c-4a72-9c47-622feb4f1273 h1 {
	color: rgb(0, 0, 0);
	font-family: Exo 2;
	font-size: 36px;
}

#cmp_5accafe8-e17c-4a72-9c47-622feb4f1273 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_5accafe8-e17c-4a72-9c47-622feb4f1273 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_5accafe8-e17c-4a72-9c47-622feb4f1273 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_5accafe8-e17c-4a72-9c47-622feb4f1273 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_5accafe8-e17c-4a72-9c47-622feb4f1273 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_5accafe8-e17c-4a72-9c47-622feb4f1273 .btn {
	background-color: rgb(255, 240, 0);
	color: rgb(0, 0, 0);
	font-family: Luckiest Guy;
	font-size: 18px;
}

#cmp_5accafe8-e17c-4a72-9c47-622feb4f1273 .btn:hover {
	background-color: rgb(0, 0, 0);
	color: rgb(255, 240, 0);
}

#cmp_5accafe8-e17c-4a72-9c47-622feb4f1273 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_5accafe8-e17c-4a72-9c47-622feb4f1273 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/customer/account/cmp_39b3c526-a515-4a2e-86e6-253377ec680e/component.css
 */

/*
 * components/customer/edit/cmp_cb875d1a-97f8-4cd9-a8d1-499786880cdd/component.css
 */

/*
 * components/customer/forgot_password/cmp_684ec633-09e3-47b5-9a63-c270b8984b13/component.css
 */

#cmp_684ec633-09e3-47b5-9a63-c270b8984b13  {
	padding-bottom: 120px;
}
/*
 * components/customer/forgot_password/cmp_6e830f1a-1413-4c26-9a36-92161a37f8cd/component.css
 */
#cmp_6e830f1a-1413-4c26-9a36-92161a37f8cd {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_6e830f1a-1413-4c26-9a36-92161a37f8cd h1 {
	color: rgb(0, 0, 0);
	font-family: Exo 2;
	font-size: 36px;
}

#cmp_6e830f1a-1413-4c26-9a36-92161a37f8cd h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_6e830f1a-1413-4c26-9a36-92161a37f8cd h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_6e830f1a-1413-4c26-9a36-92161a37f8cd p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_6e830f1a-1413-4c26-9a36-92161a37f8cd ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_6e830f1a-1413-4c26-9a36-92161a37f8cd ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_6e830f1a-1413-4c26-9a36-92161a37f8cd  {
	padding: 50px 0;
}
#cmp_6e830f1a-1413-4c26-9a36-92161a37f8cd h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/login/cmp_d4af72b6-efd9-4404-ae83-0debaed67f4e/component.css
 */

#cmp_d4af72b6-efd9-4404-ae83-0debaed67f4e  {
	padding-bottom: 120px;
}
/*
 * components/customer/login/cmp_f0f53696-efa3-4b97-bf65-e88491763f2b/component.css
 */
#cmp_f0f53696-efa3-4b97-bf65-e88491763f2b {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_f0f53696-efa3-4b97-bf65-e88491763f2b h1 {
	color: rgb(0, 0, 0);
	font-family: Exo 2;
	font-size: 36px;
}

#cmp_f0f53696-efa3-4b97-bf65-e88491763f2b h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_f0f53696-efa3-4b97-bf65-e88491763f2b h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_f0f53696-efa3-4b97-bf65-e88491763f2b p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_f0f53696-efa3-4b97-bf65-e88491763f2b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_f0f53696-efa3-4b97-bf65-e88491763f2b ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_f0f53696-efa3-4b97-bf65-e88491763f2b  {
	padding: 50px 0;
}
#cmp_f0f53696-efa3-4b97-bf65-e88491763f2b h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/order/cmp_8cfbb3f6-fa25-4dee-a8c0-456bc6b851df/component.css
 */

/*
 * components/customer/orders/cmp_82f0ae7a-f1b4-42bc-9497-ee0042a3dbd8/component.css
 */

/*
 * components/customer/password_reset/cmp_3ff3f616-45d7-451c-aaf3-0461c674d23e/component.css
 */

#cmp_3ff3f616-45d7-451c-aaf3-0461c674d23e  {
	padding-bottom: 120px;
}
/*
 * components/customer/password_reset/cmp_78b76e1d-959e-4a18-b2f8-71ff520c7105/component.css
 */
#cmp_78b76e1d-959e-4a18-b2f8-71ff520c7105 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_78b76e1d-959e-4a18-b2f8-71ff520c7105 h1 {
	color: rgb(0, 0, 0);
	font-family: Exo 2;
	font-size: 36px;
}

#cmp_78b76e1d-959e-4a18-b2f8-71ff520c7105 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_78b76e1d-959e-4a18-b2f8-71ff520c7105 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_78b76e1d-959e-4a18-b2f8-71ff520c7105 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_78b76e1d-959e-4a18-b2f8-71ff520c7105 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_78b76e1d-959e-4a18-b2f8-71ff520c7105 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_78b76e1d-959e-4a18-b2f8-71ff520c7105  {
	padding: 50px 0;
}
#cmp_78b76e1d-959e-4a18-b2f8-71ff520c7105 h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/thank_you/cmp_79a5e81a-bfe1-4e45-9341-d01a1ddbd7ff/component.css
 */

/*
 * components/faq/cmp_f21047a8-2460-48e2-b02b-7214f2bf94ee/component.css
 */
#cmp_f21047a8-2460-48e2-b02b-7214f2bf94ee {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_f21047a8-2460-48e2-b02b-7214f2bf94ee h1 {
	color: rgb(0, 0, 0);
	font-family: Exo 2;
	font-size: 36px;
}

#cmp_f21047a8-2460-48e2-b02b-7214f2bf94ee h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_f21047a8-2460-48e2-b02b-7214f2bf94ee h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_f21047a8-2460-48e2-b02b-7214f2bf94ee p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_f21047a8-2460-48e2-b02b-7214f2bf94ee ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_f21047a8-2460-48e2-b02b-7214f2bf94ee ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/featured_artists/cmp_68367740-9df3-4aa4-9357-84c5f5f7f124/component.css
 */
#cmp_68367740-9df3-4aa4-9357-84c5f5f7f124 {
	background-color: #FFFFFF;
}

#cmp_68367740-9df3-4aa4-9357-84c5f5f7f124 h1 {
	color: rgb(0, 0, 0);
	font-family: Exo 2;
	font-size: 36px;
}

#cmp_68367740-9df3-4aa4-9357-84c5f5f7f124 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_68367740-9df3-4aa4-9357-84c5f5f7f124 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_68367740-9df3-4aa4-9357-84c5f5f7f124 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_68367740-9df3-4aa4-9357-84c5f5f7f124 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_68367740-9df3-4aa4-9357-84c5f5f7f124 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_68367740-9df3-4aa4-9357-84c5f5f7f124 .btn {
	background-color: rgb(255, 240, 0);
	color: rgb(0, 0, 0);
	font-family: Luckiest Guy;
	font-size: 18px;
}

#cmp_68367740-9df3-4aa4-9357-84c5f5f7f124 .btn:hover {
	background-color: rgb(0, 0, 0);
	color: rgb(255, 240, 0);
}

#cmp_68367740-9df3-4aa4-9357-84c5f5f7f124 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_68367740-9df3-4aa4-9357-84c5f5f7f124 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/featured_artists/cmp_aef8247c-e214-4822-9c9b-dcd06edc863e/component.css
 */
#cmp_aef8247c-e214-4822-9c9b-dcd06edc863e {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_aef8247c-e214-4822-9c9b-dcd06edc863e h1 {
	color: rgb(0, 0, 0);
	font-family: Exo 2;
	font-size: 36px;
}

#cmp_aef8247c-e214-4822-9c9b-dcd06edc863e h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_aef8247c-e214-4822-9c9b-dcd06edc863e h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_aef8247c-e214-4822-9c9b-dcd06edc863e p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_aef8247c-e214-4822-9c9b-dcd06edc863e ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_aef8247c-e214-4822-9c9b-dcd06edc863e ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/get_featured/cmp_3e355e82-6c18-4e67-a67b-5176f39f749c/component.css
 */
#cmp_3e355e82-6c18-4e67-a67b-5176f39f749c img {
	max-width: 100%;
}

/*
 * components/get_featured/cmp_5cccd095-5d67-466a-8232-3109c8edcf70/component.css
 */
#cmp_5cccd095-5d67-466a-8232-3109c8edcf70 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_5cccd095-5d67-466a-8232-3109c8edcf70 h1 {
	color: rgb(0, 0, 0);
	font-family: Exo 2;
	font-size: 36px;
}

#cmp_5cccd095-5d67-466a-8232-3109c8edcf70 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_5cccd095-5d67-466a-8232-3109c8edcf70 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_5cccd095-5d67-466a-8232-3109c8edcf70 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_5cccd095-5d67-466a-8232-3109c8edcf70 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_5cccd095-5d67-466a-8232-3109c8edcf70 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/global/cmp_272bb3ee-bac9-4da3-9d19-0ab224c7a6e7/component.css
 */
#cmp_272bb3ee-bac9-4da3-9d19-0ab224c7a6e7 .navbar {
	background-color: rgba(0, 0, 0, 0.1);
	border-radius: 0;
	margin-bottom: 3rem;
}

#cmp_272bb3ee-bac9-4da3-9d19-0ab224c7a6e7 .navbar-brand {
	color: rgb(248, 231, 28);
	font-family: Exo 2;
	font-size: 40px;
	margin: 0;
	line-height: 1;
	text-align: center;
}

#cmp_272bb3ee-bac9-4da3-9d19-0ab224c7a6e7 .navbar-brand > img {
	display: inline-block;
}

#cmp_272bb3ee-bac9-4da3-9d19-0ab224c7a6e7 .navbar-nav {
	display: -moz-flex;
	display: -webkit-flex;
	display: flex;

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

	margin: 0;
}

#cmp_272bb3ee-bac9-4da3-9d19-0ab224c7a6e7 .navbar a.nav-link,
#cmp_272bb3ee-bac9-4da3-9d19-0ab224c7a6e7 .navbar button {
	color: rgb(0, 0, 0);
	font-family: Baloo;
	font-size: 14px;;
	letter-spacing: 1px;
	padding: 8px 12px;
	text-align: center;
	text-transform: uppercase;
}

#cmp_272bb3ee-bac9-4da3-9d19-0ab224c7a6e7 .navbar a.nav-link:hover,
#cmp_272bb3ee-bac9-4da3-9d19-0ab224c7a6e7 .navbar a.nav-link:focus,
#cmp_272bb3ee-bac9-4da3-9d19-0ab224c7a6e7 .navbar a.nav-link:active,
#cmp_272bb3ee-bac9-4da3-9d19-0ab224c7a6e7 .navbar button:hover,
#cmp_272bb3ee-bac9-4da3-9d19-0ab224c7a6e7 .navbar button:focus,
#cmp_272bb3ee-bac9-4da3-9d19-0ab224c7a6e7 .navbar button:active {
	color: rgb(0, 0, 0);
	outline: none;
}

#cmp_272bb3ee-bac9-4da3-9d19-0ab224c7a6e7 .navbar-nav .dropdown-menu a {
	color: #4A4A4A;
	padding: 10px 0;
}

#cmp_272bb3ee-bac9-4da3-9d19-0ab224c7a6e7 .navbar-toggler {
	padding: 1rem;
}

@media(min-width: 767px) {
	#cmp_272bb3ee-bac9-4da3-9d19-0ab224c7a6e7 .navbar-nav {
		-moz-flex-direction: row;
		-webkit-flex-direction: row;
		flex-direction: row;

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

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

	#cmp_272bb3ee-bac9-4da3-9d19-0ab224c7a6e7 .navbar-nav li {
		-moz-flex-shrink: 0;
		-webkit-flex-shrink: 0;
		flex-shrink: 0;
	}

	#cmp_272bb3ee-bac9-4da3-9d19-0ab224c7a6e7 .navbar-nav .nav-link {
		padding: 8px 0 8px 28px;
	}
}

/*
 * components/global/cmp_7b367f1d-3517-4d51-b72e-1f78863f33bd/component.css
 */
#cmp_7b367f1d-3517-4d51-b72e-1f78863f33bd {
	margin-top: 40px;
	margin-bottom: 40px;
}

#cmp_7b367f1d-3517-4d51-b72e-1f78863f33bd .progress-bar-container {
	position: relative;
}

#cmp_7b367f1d-3517-4d51-b72e-1f78863f33bd .progress-bar-filler {
	height: 2px;
	width: 90%;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	left: 0;
	right: 0;
	z-index: -10;
	background: #E5E5E5;
}

#cmp_7b367f1d-3517-4d51-b72e-1f78863f33bd .progress-bar {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	color: #E5E5E5;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_7b367f1d-3517-4d51-b72e-1f78863f33bd .progress-bar::before {
		width: 86%;
		margin: 0 7%;
	}
}

#cmp_7b367f1d-3517-4d51-b72e-1f78863f33bd .progress-bar .step {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#cmp_7b367f1d-3517-4d51-b72e-1f78863f33bd .progress-bar .step .point {
	width: 20px;
	height: 20px;
	border-radius: 10px;
	background-color: #E5E5E5;
	border: 4px solid white;
}

#cmp_7b367f1d-3517-4d51-b72e-1f78863f33bd .progress-bar .step.active {
	color: #4A4A4A;
}

#cmp_7b367f1d-3517-4d51-b72e-1f78863f33bd .progress-bar .step.active .point {
	background-color: rgb(248, 231, 28);;
}

/*
 * components/global/cmp_eadf9f4a-bf2c-4603-a2fc-a47bfc364280/component.css
 */
#cmp_eadf9f4a-bf2c-4603-a2fc-a47bfc364280.footer {
	background-color: #FFFFFF;
	font-family: Lato;
	color: #4A4A4A;
	font-size: 11px;
	padding-top: 10px;
	padding-bottom: 10px;
	margin-top: 100px;
	text-align: center;
	border-top: 1px solid #DDDDDD;
}

#cmp_eadf9f4a-bf2c-4603-a2fc-a47bfc364280 a,
#cmp_eadf9f4a-bf2c-4603-a2fc-a47bfc364280 a:hover,
#cmp_eadf9f4a-bf2c-4603-a2fc-a47bfc364280 a:focus {
	color: #4A4A4A;
}

#cmp_eadf9f4a-bf2c-4603-a2fc-a47bfc364280 .footer-social {
	padding-top: 20px;
	padding-bottom: 15px;
	text-align: center;
}

#cmp_eadf9f4a-bf2c-4603-a2fc-a47bfc364280 .footer-social a {
	display: inline-block;
	padding-left: 5px;
	padding-right: 5px;
}

#cmp_eadf9f4a-bf2c-4603-a2fc-a47bfc364280 .footer-social svg path {
	stroke: rgb(74, 74, 74);
}

#cmp_eadf9f4a-bf2c-4603-a2fc-a47bfc364280 .footer-social svg path + path {
	fill: rgb(74, 74, 74);
}

#cmp_eadf9f4a-bf2c-4603-a2fc-a47bfc364280 .footer-social a:hover svg path,
#cmp_eadf9f4a-bf2c-4603-a2fc-a47bfc364280 .footer-social a:focus svg path,
#cmp_eadf9f4a-bf2c-4603-a2fc-a47bfc364280 .footer-social a:active svg path {
	stroke: rgb(248, 231, 28);
}

#cmp_eadf9f4a-bf2c-4603-a2fc-a47bfc364280 .footer-social a:hover svg path + path,
#cmp_eadf9f4a-bf2c-4603-a2fc-a47bfc364280 .footer-social a:focus svg path + path,
#cmp_eadf9f4a-bf2c-4603-a2fc-a47bfc364280 .footer-social a:active svg path + path {
	fill: rgb(248, 231, 28);
}

@media(min-width: 1140px) {
	.footer-copyright {
		text-align: left;
	}

	.footer-tribute {
		text-align: right;
	}
}

/*
 * components/index/cmp_056ada6c-6f51-42b0-8b72-d84fda146f00/component.css
 */
#cmp_056ada6c-6f51-42b0-8b72-d84fda146f00 {
	background-color: #FFFFFF;
}

#cmp_056ada6c-6f51-42b0-8b72-d84fda146f00 .title {
	margin-top: 40px;
}

#cmp_056ada6c-6f51-42b0-8b72-d84fda146f00 .box-choose-row {
	justify-content: center;
}

#cmp_056ada6c-6f51-42b0-8b72-d84fda146f00 .box-choose {
	margin-top: 40px;
	margin-bottom: 40px;
}

#cmp_056ada6c-6f51-42b0-8b72-d84fda146f00 .box-choose img {
	margin-bottom: 20px;
}

#cmp_056ada6c-6f51-42b0-8b72-d84fda146f00 h1 {
	color: rgb(0, 0, 0);
	font-family: Exo 2;
	font-size: 36px;
}

#cmp_056ada6c-6f51-42b0-8b72-d84fda146f00 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_056ada6c-6f51-42b0-8b72-d84fda146f00 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_056ada6c-6f51-42b0-8b72-d84fda146f00 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_056ada6c-6f51-42b0-8b72-d84fda146f00 h3 {
	margin-bottom: 25px;
}
/*
 * components/index/cmp_5b543593-a397-492c-b37f-f73b0ce4f750/component.css
 */
#cmp_5b543593-a397-492c-b37f-f73b0ce4f750 {
	background-color: #FFFFFF;
}

#cmp_5b543593-a397-492c-b37f-f73b0ce4f750 h1 {
	color: rgb(0, 0, 0);
	font-family: Exo 2;
	font-size: 36px;
}

#cmp_5b543593-a397-492c-b37f-f73b0ce4f750 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_5b543593-a397-492c-b37f-f73b0ce4f750 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_5b543593-a397-492c-b37f-f73b0ce4f750 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_5b543593-a397-492c-b37f-f73b0ce4f750 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_5b543593-a397-492c-b37f-f73b0ce4f750 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_5b543593-a397-492c-b37f-f73b0ce4f750 .btn {
	background-color: rgb(255, 240, 0);
	color: rgb(0, 0, 0);
	font-family: Luckiest Guy;
	font-size: 18px;
}

#cmp_5b543593-a397-492c-b37f-f73b0ce4f750 .btn:hover {
	background-color: rgb(0, 0, 0);
	color: rgb(255, 240, 0);
}

#cmp_5b543593-a397-492c-b37f-f73b0ce4f750 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_5b543593-a397-492c-b37f-f73b0ce4f750 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/index/cmp_6d353100-9851-4808-8111-1d552345849d/component.css
 */
/**********
Navigation
**********/
#cmp_6d353100-9851-4808-8111-1d552345849d .navbar {
	background-color: rgba(0, 0, 0, 0.1);
	border-radius: 0;
	margin-bottom: 3rem;
}

#cmp_6d353100-9851-4808-8111-1d552345849d .navbar-brand {
	color: rgb(248, 231, 28);
	font-family: Exo 2;
	font-size: 40px;
	margin: 0;
	line-height: 1;
	text-align: center;
}

#cmp_6d353100-9851-4808-8111-1d552345849d .navbar-brand > img {
	display: inline-block;
}

#cmp_6d353100-9851-4808-8111-1d552345849d .navbar-nav {
	display: -moz-flex;
	display: -webkit-flex;
	display: flex;

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

	margin: 20px 0;
}

#cmp_6d353100-9851-4808-8111-1d552345849d .navbar a.nav-link,
#cmp_6d353100-9851-4808-8111-1d552345849d .navbar button {
	color: rgb(255, 235, 0);
	font-family: Baloo;
	font-size: 17px;;
	letter-spacing: 1px;
	padding: 8px 12px;
	text-align: center;
	text-transform: uppercase;
}

#cmp_6d353100-9851-4808-8111-1d552345849d .navbar a.nav-link:hover,
#cmp_6d353100-9851-4808-8111-1d552345849d .navbar a.nav-link:focus,
#cmp_6d353100-9851-4808-8111-1d552345849d .navbar a.nav-link:active,
#cmp_6d353100-9851-4808-8111-1d552345849d .navbar button:hover,
#cmp_6d353100-9851-4808-8111-1d552345849d .navbar button:focus,
#cmp_6d353100-9851-4808-8111-1d552345849d .navbar button:active {
	color: rgb(255, 213, 0);
	outline: none;
}

#cmp_6d353100-9851-4808-8111-1d552345849d .navbar-nav .dropdown-menu a {
	color: #4A4A4A;
	padding: 10px 0;
}

#cmp_6d353100-9851-4808-8111-1d552345849d .navbar-toggler {
	padding: 1rem;
}

@media(min-width: 767px) {
	#cmp_6d353100-9851-4808-8111-1d552345849d .navbar {
		background-color: transparent;
		margin-bottom: 0;
	}

	#cmp_6d353100-9851-4808-8111-1d552345849d .navbar-nav {
		-moz-flex-direction: row;
		-webkit-flex-direction: row;
		flex-direction: row;

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

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

	#cmp_6d353100-9851-4808-8111-1d552345849d .navbar-nav li {
		-moz-flex-shrink: 0;
		-webkit-flex-shrink: 0;
		flex-shrink: 0;
	}

	#cmp_6d353100-9851-4808-8111-1d552345849d .navbar-nav .nav-link {
		padding: 8px 0 8px 28px;
	}
}


/**********
Hero
**********/
#cmp_6d353100-9851-4808-8111-1d552345849d .hero-content {
	padding: 20px;
}

@media(min-width: 768px) {
	#cmp_6d353100-9851-4808-8111-1d552345849d .hero-content {
		min-height: 700px;
	}
}

#cmp_6d353100-9851-4808-8111-1d552345849d .hero-content h1 {
	color: rgb(0, 0, 0);
	font-family: Exo 2;
	font-size: 50px;
	letter-spacing: 2px;
}

#cmp_6d353100-9851-4808-8111-1d552345849d .hero-content h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_6d353100-9851-4808-8111-1d552345849d .hero-content h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_6d353100-9851-4808-8111-1d552345849d .hero-content p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_6d353100-9851-4808-8111-1d552345849d .hero-content .btn {
	margin-bottom: 10px;
}

#cmp_6d353100-9851-4808-8111-1d552345849d .hero-content .btn.btn-primary {
	border: 2px solid transparent;
	background-color: rgb(0, 0, 0);
	color: rgb(248, 231, 28);
	font-family: Luckiest Guy;
	font-size: 19px;
}

#cmp_6d353100-9851-4808-8111-1d552345849d .hero-content .btn.btn-primary:hover,
#cmp_6d353100-9851-4808-8111-1d552345849d .hero-content .btn.btn-primary:focus,
#cmp_6d353100-9851-4808-8111-1d552345849d .hero-content .btn.btn-primary:active,
#cmp_6d353100-9851-4808-8111-1d552345849d .hero-content .btn.btn-primary:active:focus {
	background-color: rgb(255, 240, 0);
	color: rgb(0, 0, 0);
}

#cmp_6d353100-9851-4808-8111-1d552345849d .hero-content .btn-secondary {
	border: 2px solid;

	background-color: rgb(8, 8, 8);
	border-color: rgb(248, 231, 28);
	color: rgb(248, 231, 28);
	font-family: Luckiest Guy;
	font-size: 19px;
}

#cmp_6d353100-9851-4808-8111-1d552345849d .hero-content .btn.btn-secondary:hover,
#cmp_6d353100-9851-4808-8111-1d552345849d .hero-content .btn.btn-secondary:focus,
#cmp_6d353100-9851-4808-8111-1d552345849d .hero-content .btn.btn-secondary:active,
#cmp_6d353100-9851-4808-8111-1d552345849d .hero-content .btn.btn-secondary:active:focus {
	background-color: rgb(255, 240, 0);
	border-color: rgb(0, 0, 0);
	color: rgb(0, 0, 0);
}

#cmp_6d353100-9851-4808-8111-1d552345849d h1 {
	margin-top: 20px;
	margin-bottom: 10px;
}
#cmp_6d353100-9851-4808-8111-1d552345849d p {
	margin-bottom: 25px;
}
/*
 * components/index/cmp_7b251c81-7022-4377-8e00-1eaed86b0b68/component.css
 */
#cmp_7b251c81-7022-4377-8e00-1eaed86b0b68 {
	background-color: rgba(219, 156, 156, 0);
}

#cmp_7b251c81-7022-4377-8e00-1eaed86b0b68 h1 {
	color: rgb(0, 0, 0);
	font-family: Exo 2;
	font-size: 36px;
}

#cmp_7b251c81-7022-4377-8e00-1eaed86b0b68 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_7b251c81-7022-4377-8e00-1eaed86b0b68 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_7b251c81-7022-4377-8e00-1eaed86b0b68 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_7b251c81-7022-4377-8e00-1eaed86b0b68 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_7b251c81-7022-4377-8e00-1eaed86b0b68 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_7b251c81-7022-4377-8e00-1eaed86b0b68 .btn {
	background-color: rgb(0, 0, 0);
	color: rgb(248, 231, 28);
	font-family: Luckiest Guy;
	font-size: 18px;
}

#cmp_7b251c81-7022-4377-8e00-1eaed86b0b68 .btn:hover {
	background-color: rgb(0, 0, 0);
	color: rgb(255, 240, 0);
}

#cmp_7b251c81-7022-4377-8e00-1eaed86b0b68 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_7b251c81-7022-4377-8e00-1eaed86b0b68 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_7b251c81-7022-4377-8e00-1eaed86b0b68  {
	padding: 60px 0;
}
#cmp_7b251c81-7022-4377-8e00-1eaed86b0b68 h1 {
	margin-bottom: 15px;
}
#cmp_7b251c81-7022-4377-8e00-1eaed86b0b68 p {
	margin-bottom: 20px;
}
/*
 * components/index/cmp_952a2513-fde7-4d4b-af2b-8e4bd2146fd1/component.css
 */
#cmp_952a2513-fde7-4d4b-af2b-8e4bd2146fd1 img {
	max-width: 100%;
}

/*
 * components/index/cmp_9a04b1e8-e6f2-4b7f-8d9e-42d6d868d814/component.css
 */
#cmp_9a04b1e8-e6f2-4b7f-8d9e-42d6d868d814 hr {
	border-top-color: #DDDDDD;
}

/*
 * components/index/cmp_ee23f5c3-5124-4a2e-81ba-354fe7d77085/component.css
 */
#cmp_ee23f5c3-5124-4a2e-81ba-354fe7d77085 img {
	max-width: 100%;
}

/*
 * components/lifetimesavage/cmp_0e6f381d-ae2d-4050-b419-2f3dedc6def3/component.css
 */
#cmp_0e6f381d-ae2d-4050-b419-2f3dedc6def3 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_0e6f381d-ae2d-4050-b419-2f3dedc6def3 h1 {
	color: rgb(0, 0, 0);
	font-family: Exo 2;
	font-size: 36px;
}

#cmp_0e6f381d-ae2d-4050-b419-2f3dedc6def3 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_0e6f381d-ae2d-4050-b419-2f3dedc6def3 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_0e6f381d-ae2d-4050-b419-2f3dedc6def3 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_0e6f381d-ae2d-4050-b419-2f3dedc6def3 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_0e6f381d-ae2d-4050-b419-2f3dedc6def3 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/lifetimesavage/cmp_8e2a8d29-40d2-4fab-b843-0cf80c1af01e/component.css
 */
#cmp_8e2a8d29-40d2-4fab-b843-0cf80c1af01e {
	background-color: #FFFFFF;
}

#cmp_8e2a8d29-40d2-4fab-b843-0cf80c1af01e h1 {
	color: rgb(0, 0, 0);
	font-family: Exo 2;
	font-size: 36px;
}

#cmp_8e2a8d29-40d2-4fab-b843-0cf80c1af01e h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_8e2a8d29-40d2-4fab-b843-0cf80c1af01e h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_8e2a8d29-40d2-4fab-b843-0cf80c1af01e p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_8e2a8d29-40d2-4fab-b843-0cf80c1af01e .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_8e2a8d29-40d2-4fab-b843-0cf80c1af01e .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_8e2a8d29-40d2-4fab-b843-0cf80c1af01e .btn {
	background-color: rgb(255, 240, 0);
	color: rgb(0, 0, 0);
	font-family: Luckiest Guy;
	font-size: 18px;
}

#cmp_8e2a8d29-40d2-4fab-b843-0cf80c1af01e .btn:hover {
	background-color: rgb(0, 0, 0);
	color: rgb(255, 240, 0);
}

#cmp_8e2a8d29-40d2-4fab-b843-0cf80c1af01e ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_8e2a8d29-40d2-4fab-b843-0cf80c1af01e ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/lifetimesavage/cmp_c3d4a844-1d59-4268-975f-13bf62057b37/component.css
 */
#cmp_c3d4a844-1d59-4268-975f-13bf62057b37 img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_034b6eb9-cfbf-40e2-94b7-d6d9b9499814/component.css
 */
#cmp_034b6eb9-cfbf-40e2-94b7-d6d9b9499814 img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_0ced199c-39da-423f-8e1d-cda3fa0e34d8/component.css
 */
#cmp_0ced199c-39da-423f-8e1d-cda3fa0e34d8 img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_0d2ceb89-5e01-419a-a74d-24cb21298586/component.css
 */
#cmp_0d2ceb89-5e01-419a-a74d-24cb21298586 img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_10546e0f-bd38-420a-a70e-fa9375a8e708/component.css
 */
#cmp_10546e0f-bd38-420a-a70e-fa9375a8e708 img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_162c9610-2540-4b4c-becd-5cc61ab5dc34/component.css
 */
#cmp_162c9610-2540-4b4c-becd-5cc61ab5dc34 img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_1c949427-c4b3-4614-aff3-2a4b0cb5df7c/component.css
 */
#cmp_1c949427-c4b3-4614-aff3-2a4b0cb5df7c {
	background-color: #FFFFFF;
}

#cmp_1c949427-c4b3-4614-aff3-2a4b0cb5df7c h1 {
	color: rgb(0, 0, 0);
	font-family: Exo 2;
	font-size: 36px;
}

#cmp_1c949427-c4b3-4614-aff3-2a4b0cb5df7c h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_1c949427-c4b3-4614-aff3-2a4b0cb5df7c h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_1c949427-c4b3-4614-aff3-2a4b0cb5df7c p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_1c949427-c4b3-4614-aff3-2a4b0cb5df7c .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_1c949427-c4b3-4614-aff3-2a4b0cb5df7c .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_1c949427-c4b3-4614-aff3-2a4b0cb5df7c .btn {
	background-color: rgb(255, 240, 0);
	color: rgb(0, 0, 0);
	font-family: Luckiest Guy;
	font-size: 18px;
}

#cmp_1c949427-c4b3-4614-aff3-2a4b0cb5df7c .btn:hover {
	background-color: rgb(0, 0, 0);
	color: rgb(255, 240, 0);
}

#cmp_1c949427-c4b3-4614-aff3-2a4b0cb5df7c ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_1c949427-c4b3-4614-aff3-2a4b0cb5df7c ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/previous_boxes/cmp_26332cea-76e1-4542-b55a-a39b4098cb8c/component.css
 */
#cmp_26332cea-76e1-4542-b55a-a39b4098cb8c img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_35e5c810-6b2a-48a7-87e0-04abaf504754/component.css
 */
#cmp_35e5c810-6b2a-48a7-87e0-04abaf504754 img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_3e4a3981-ecac-4439-a04a-aaa0cc9021d1/component.css
 */
#cmp_3e4a3981-ecac-4439-a04a-aaa0cc9021d1 img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_45e2d79d-e414-4ec0-845c-520d44447a64/component.css
 */
#cmp_45e2d79d-e414-4ec0-845c-520d44447a64 img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_472c4f95-700f-4455-85c3-7a175348563f/component.css
 */
#cmp_472c4f95-700f-4455-85c3-7a175348563f img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_4a2726b2-c093-4ea8-842d-82d730ce1465/component.css
 */
#cmp_4a2726b2-c093-4ea8-842d-82d730ce1465 img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_4bd0c19e-ac7b-4480-a174-ad355b5ba51b/component.css
 */
#cmp_4bd0c19e-ac7b-4480-a174-ad355b5ba51b img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_595915e0-92eb-47b4-948e-901a3a78cd29/component.css
 */
#cmp_595915e0-92eb-47b4-948e-901a3a78cd29 {
	background-color: #FFFFFF;
}

#cmp_595915e0-92eb-47b4-948e-901a3a78cd29 h1 {
	color: rgb(0, 0, 0);
	font-family: Exo 2;
	font-size: 36px;
}

#cmp_595915e0-92eb-47b4-948e-901a3a78cd29 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_595915e0-92eb-47b4-948e-901a3a78cd29 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_595915e0-92eb-47b4-948e-901a3a78cd29 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_595915e0-92eb-47b4-948e-901a3a78cd29 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_595915e0-92eb-47b4-948e-901a3a78cd29 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_595915e0-92eb-47b4-948e-901a3a78cd29 .btn {
	background-color: rgb(255, 240, 0);
	color: rgb(0, 0, 0);
	font-family: Luckiest Guy;
	font-size: 18px;
}

#cmp_595915e0-92eb-47b4-948e-901a3a78cd29 .btn:hover {
	background-color: rgb(0, 0, 0);
	color: rgb(255, 240, 0);
}

#cmp_595915e0-92eb-47b4-948e-901a3a78cd29 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_595915e0-92eb-47b4-948e-901a3a78cd29 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/previous_boxes/cmp_5b1ff662-d8d5-4f2d-82af-3e163b43b41c/component.css
 */
#cmp_5b1ff662-d8d5-4f2d-82af-3e163b43b41c img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_66ed22a4-f055-435a-9af9-9a2a1123853a/component.css
 */
#cmp_66ed22a4-f055-435a-9af9-9a2a1123853a img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_6bcd14a8-15cb-4495-9c0c-b82ef2da0694/component.css
 */
#cmp_6bcd14a8-15cb-4495-9c0c-b82ef2da0694 {
	background-color: #FFFFFF;
}

#cmp_6bcd14a8-15cb-4495-9c0c-b82ef2da0694 h1 {
	color: rgb(0, 0, 0);
	font-family: Exo 2;
	font-size: 36px;
}

#cmp_6bcd14a8-15cb-4495-9c0c-b82ef2da0694 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_6bcd14a8-15cb-4495-9c0c-b82ef2da0694 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_6bcd14a8-15cb-4495-9c0c-b82ef2da0694 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_6bcd14a8-15cb-4495-9c0c-b82ef2da0694 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_6bcd14a8-15cb-4495-9c0c-b82ef2da0694 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_6bcd14a8-15cb-4495-9c0c-b82ef2da0694 .btn {
	background-color: rgb(255, 240, 0);
	color: rgb(0, 0, 0);
	font-family: Luckiest Guy;
	font-size: 18px;
}

#cmp_6bcd14a8-15cb-4495-9c0c-b82ef2da0694 .btn:hover {
	background-color: rgb(0, 0, 0);
	color: rgb(255, 240, 0);
}

#cmp_6bcd14a8-15cb-4495-9c0c-b82ef2da0694 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_6bcd14a8-15cb-4495-9c0c-b82ef2da0694 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/previous_boxes/cmp_6ff9b2d9-8935-4db5-9335-530f11c06b5d/component.css
 */
#cmp_6ff9b2d9-8935-4db5-9335-530f11c06b5d img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_719a3016-b85d-4153-aa3a-5065b0ee1629/component.css
 */
#cmp_719a3016-b85d-4153-aa3a-5065b0ee1629 img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_7eb31f3d-d82e-404f-bcad-b704f2d472cf/component.css
 */
#cmp_7eb31f3d-d82e-404f-bcad-b704f2d472cf img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_7f2dede0-c21a-497c-894d-0d0ffcc8f4c1/component.css
 */
#cmp_7f2dede0-c21a-497c-894d-0d0ffcc8f4c1 img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_8076a2e6-5b24-404c-acc0-f15f3363d8fe/component.css
 */
#cmp_8076a2e6-5b24-404c-acc0-f15f3363d8fe img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_81daef1e-98f2-469c-b1b8-55f3a105c501/component.css
 */
#cmp_81daef1e-98f2-469c-b1b8-55f3a105c501 img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_83a62092-7dc0-47ce-b79a-775be76c11c4/component.css
 */
#cmp_83a62092-7dc0-47ce-b79a-775be76c11c4 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_83a62092-7dc0-47ce-b79a-775be76c11c4 h1 {
	color: rgb(0, 0, 0);
	font-family: Exo 2;
	font-size: 36px;
}

#cmp_83a62092-7dc0-47ce-b79a-775be76c11c4 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_83a62092-7dc0-47ce-b79a-775be76c11c4 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_83a62092-7dc0-47ce-b79a-775be76c11c4 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_83a62092-7dc0-47ce-b79a-775be76c11c4 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_83a62092-7dc0-47ce-b79a-775be76c11c4 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/previous_boxes/cmp_8932feac-e6b5-4271-a0fe-575cbd259eb6/component.css
 */
#cmp_8932feac-e6b5-4271-a0fe-575cbd259eb6 img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_89f0ed2e-57a3-47dc-9371-07f6fb67548a/component.css
 */
#cmp_89f0ed2e-57a3-47dc-9371-07f6fb67548a {
	background-color: #FFFFFF;
}

#cmp_89f0ed2e-57a3-47dc-9371-07f6fb67548a h1 {
	color: rgb(0, 0, 0);
	font-family: Exo 2;
	font-size: 36px;
}

#cmp_89f0ed2e-57a3-47dc-9371-07f6fb67548a h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_89f0ed2e-57a3-47dc-9371-07f6fb67548a h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_89f0ed2e-57a3-47dc-9371-07f6fb67548a p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_89f0ed2e-57a3-47dc-9371-07f6fb67548a .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_89f0ed2e-57a3-47dc-9371-07f6fb67548a .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_89f0ed2e-57a3-47dc-9371-07f6fb67548a .btn {
	background-color: rgb(255, 240, 0);
	color: rgb(0, 0, 0);
	font-family: Luckiest Guy;
	font-size: 18px;
}

#cmp_89f0ed2e-57a3-47dc-9371-07f6fb67548a .btn:hover {
	background-color: rgb(0, 0, 0);
	color: rgb(255, 240, 0);
}

#cmp_89f0ed2e-57a3-47dc-9371-07f6fb67548a ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_89f0ed2e-57a3-47dc-9371-07f6fb67548a ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/previous_boxes/cmp_8d5bfd22-4c7e-4191-8ddc-6b40dacf6c2a/component.css
 */
#cmp_8d5bfd22-4c7e-4191-8ddc-6b40dacf6c2a img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_9fd5fc11-2e4f-49b8-9059-d4c3d9038130/component.css
 */
#cmp_9fd5fc11-2e4f-49b8-9059-d4c3d9038130 img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_a040fe35-153c-48c4-8242-3f2af9856717/component.css
 */
#cmp_a040fe35-153c-48c4-8242-3f2af9856717 img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_a0986237-1c3b-459f-b58e-9ea4556387b6/component.css
 */
#cmp_a0986237-1c3b-459f-b58e-9ea4556387b6 img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_b5888a90-f123-47dd-8a59-6b962ca4ee4e/component.css
 */
#cmp_b5888a90-f123-47dd-8a59-6b962ca4ee4e img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_b6fe07d8-ae11-4d74-bfce-8bfc5682d032/component.css
 */
#cmp_b6fe07d8-ae11-4d74-bfce-8bfc5682d032 img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_c7ef3952-c1d3-4f5e-a51e-43f2b99026e2/component.css
 */
#cmp_c7ef3952-c1d3-4f5e-a51e-43f2b99026e2 img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_d0a725f8-b22c-4eda-b21b-c7a849bf0e4d/component.css
 */
#cmp_d0a725f8-b22c-4eda-b21b-c7a849bf0e4d img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_d5c33946-b16d-4f51-910b-296551a0926d/component.css
 */
#cmp_d5c33946-b16d-4f51-910b-296551a0926d img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_da34dfcb-9299-409c-898e-ead4bbc4df42/component.css
 */
#cmp_da34dfcb-9299-409c-898e-ead4bbc4df42 img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_e8439ccc-4fbf-4f7c-9c91-c1e5407877a7/component.css
 */
#cmp_e8439ccc-4fbf-4f7c-9c91-c1e5407877a7 img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_ebaefcd1-20ce-4f38-885b-13be2f6e5b38/component.css
 */
#cmp_ebaefcd1-20ce-4f38-885b-13be2f6e5b38 img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_f340c481-8f5d-4823-87f6-4d85c3a51966/component.css
 */
#cmp_f340c481-8f5d-4823-87f6-4d85c3a51966 img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_f52ca610-3e2a-4404-aa05-127bb3823e14/component.css
 */
#cmp_f52ca610-3e2a-4404-aa05-127bb3823e14 {
	background-color: #FFFFFF;
}

#cmp_f52ca610-3e2a-4404-aa05-127bb3823e14 h1 {
	color: rgb(0, 0, 0);
	font-family: Exo 2;
	font-size: 36px;
}

#cmp_f52ca610-3e2a-4404-aa05-127bb3823e14 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_f52ca610-3e2a-4404-aa05-127bb3823e14 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_f52ca610-3e2a-4404-aa05-127bb3823e14 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_f52ca610-3e2a-4404-aa05-127bb3823e14 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_f52ca610-3e2a-4404-aa05-127bb3823e14 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_f52ca610-3e2a-4404-aa05-127bb3823e14 .btn {
	background-color: rgb(255, 240, 0);
	color: rgb(0, 0, 0);
	font-family: Luckiest Guy;
	font-size: 18px;
}

#cmp_f52ca610-3e2a-4404-aa05-127bb3823e14 .btn:hover {
	background-color: rgb(0, 0, 0);
	color: rgb(255, 240, 0);
}

#cmp_f52ca610-3e2a-4404-aa05-127bb3823e14 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_f52ca610-3e2a-4404-aa05-127bb3823e14 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/previous_boxes/cmp_f7414ed4-31e0-4f02-9438-26d795a47f9e/component.css
 */
#cmp_f7414ed4-31e0-4f02-9438-26d795a47f9e img {
	max-width: 100%;
}

/*
 * components/privacy_policy/cmp_41e1ca73-6f45-42bc-b525-d89984374ed9/component.css
 */
#cmp_41e1ca73-6f45-42bc-b525-d89984374ed9 {
	background-color: #FFFFFF;
}

#cmp_41e1ca73-6f45-42bc-b525-d89984374ed9 h1 {
	color: rgb(0, 0, 0);
	font-family: Exo 2;
	font-size: 36px;
}

#cmp_41e1ca73-6f45-42bc-b525-d89984374ed9 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_41e1ca73-6f45-42bc-b525-d89984374ed9 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_41e1ca73-6f45-42bc-b525-d89984374ed9 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_41e1ca73-6f45-42bc-b525-d89984374ed9 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_41e1ca73-6f45-42bc-b525-d89984374ed9 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_41e1ca73-6f45-42bc-b525-d89984374ed9 .btn {
	background-color: rgb(255, 240, 0);
	color: rgb(0, 0, 0);
	font-family: Luckiest Guy;
	font-size: 18px;
}

#cmp_41e1ca73-6f45-42bc-b525-d89984374ed9 .btn:hover {
	background-color: rgb(0, 0, 0);
	color: rgb(255, 240, 0);
}

#cmp_41e1ca73-6f45-42bc-b525-d89984374ed9 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_41e1ca73-6f45-42bc-b525-d89984374ed9 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/privacy_policy/cmp_ea1b60c5-ffd6-49bb-996f-8aae3c94c1a2/component.css
 */
#cmp_ea1b60c5-ffd6-49bb-996f-8aae3c94c1a2 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_ea1b60c5-ffd6-49bb-996f-8aae3c94c1a2 h1 {
	color: rgb(0, 0, 0);
	font-family: Exo 2;
	font-size: 36px;
}

#cmp_ea1b60c5-ffd6-49bb-996f-8aae3c94c1a2 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_ea1b60c5-ffd6-49bb-996f-8aae3c94c1a2 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_ea1b60c5-ffd6-49bb-996f-8aae3c94c1a2 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_ea1b60c5-ffd6-49bb-996f-8aae3c94c1a2 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_ea1b60c5-ffd6-49bb-996f-8aae3c94c1a2 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/reviews/cmp_1db5ee7c-aaa6-44eb-bd9b-bd443c08ef21/component.css
 */
#cmp_1db5ee7c-aaa6-44eb-bd9b-bd443c08ef21 {
	background-color: #FFFFFF;
}

#cmp_1db5ee7c-aaa6-44eb-bd9b-bd443c08ef21 h1 {
	color: rgb(0, 0, 0);
	font-family: Exo 2;
	font-size: 36px;
}

#cmp_1db5ee7c-aaa6-44eb-bd9b-bd443c08ef21 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_1db5ee7c-aaa6-44eb-bd9b-bd443c08ef21 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_1db5ee7c-aaa6-44eb-bd9b-bd443c08ef21 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_1db5ee7c-aaa6-44eb-bd9b-bd443c08ef21 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_1db5ee7c-aaa6-44eb-bd9b-bd443c08ef21 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_1db5ee7c-aaa6-44eb-bd9b-bd443c08ef21 .btn {
	background-color: rgb(255, 240, 0);
	color: rgb(0, 0, 0);
	font-family: Luckiest Guy;
	font-size: 18px;
}

#cmp_1db5ee7c-aaa6-44eb-bd9b-bd443c08ef21 .btn:hover {
	background-color: rgb(0, 0, 0);
	color: rgb(255, 240, 0);
}

#cmp_1db5ee7c-aaa6-44eb-bd9b-bd443c08ef21 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_1db5ee7c-aaa6-44eb-bd9b-bd443c08ef21 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/reviews/cmp_2077ab96-cf06-460f-8a7d-168b1bf2c894/component.css
 */
#cmp_2077ab96-cf06-460f-8a7d-168b1bf2c894 img {
	max-width: 100%;
}

/*
 * components/reviews/cmp_278eded2-39f6-40a4-846a-9610f127d1e4/component.css
 */
#cmp_278eded2-39f6-40a4-846a-9610f127d1e4 img {
	max-width: 100%;
}

/*
 * components/reviews/cmp_4ec586e0-ed2c-4f0e-a546-30308de4abbd/component.css
 */
#cmp_4ec586e0-ed2c-4f0e-a546-30308de4abbd img {
	max-width: 100%;
}

/*
 * components/reviews/cmp_554fb592-873a-4fc9-b419-dddd405c5108/component.css
 */
#cmp_554fb592-873a-4fc9-b419-dddd405c5108 img {
	max-width: 100%;
}

/*
 * components/reviews/cmp_661b59cf-0b16-4411-b965-67d965165de0/component.css
 */
#cmp_661b59cf-0b16-4411-b965-67d965165de0 img {
	max-width: 100%;
}

/*
 * components/reviews/cmp_75f5198a-cc45-4910-9036-a883576cedd2/component.css
 */
#cmp_75f5198a-cc45-4910-9036-a883576cedd2 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_75f5198a-cc45-4910-9036-a883576cedd2 h1 {
	color: rgb(0, 0, 0);
	font-family: Exo 2;
	font-size: 36px;
}

#cmp_75f5198a-cc45-4910-9036-a883576cedd2 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_75f5198a-cc45-4910-9036-a883576cedd2 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_75f5198a-cc45-4910-9036-a883576cedd2 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_75f5198a-cc45-4910-9036-a883576cedd2 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_75f5198a-cc45-4910-9036-a883576cedd2 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/reviews/cmp_89ba7c15-86fb-4fb6-be5a-fcbc76194281/component.css
 */
#cmp_89ba7c15-86fb-4fb6-be5a-fcbc76194281 img {
	max-width: 100%;
}

/*
 * components/reviews/cmp_c4002d69-b142-449c-8d42-a82963c2a973/component.css
 */
#cmp_c4002d69-b142-449c-8d42-a82963c2a973 img {
	max-width: 100%;
}

/*
 * components/reviews/cmp_d23223e5-e337-4b9a-9f8c-9bb964dd10dd/component.css
 */
#cmp_d23223e5-e337-4b9a-9f8c-9bb964dd10dd {
	background-color: #FFFFFF;
}

#cmp_d23223e5-e337-4b9a-9f8c-9bb964dd10dd h1 {
	color: rgb(0, 0, 0);
	font-family: Exo 2;
	font-size: 36px;
}

#cmp_d23223e5-e337-4b9a-9f8c-9bb964dd10dd h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_d23223e5-e337-4b9a-9f8c-9bb964dd10dd h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_d23223e5-e337-4b9a-9f8c-9bb964dd10dd p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_d23223e5-e337-4b9a-9f8c-9bb964dd10dd .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_d23223e5-e337-4b9a-9f8c-9bb964dd10dd .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_d23223e5-e337-4b9a-9f8c-9bb964dd10dd .btn {
	background-color: rgb(255, 240, 0);
	color: rgb(0, 0, 0);
	font-family: Luckiest Guy;
	font-size: 18px;
}

#cmp_d23223e5-e337-4b9a-9f8c-9bb964dd10dd .btn:hover {
	background-color: rgb(0, 0, 0);
	color: rgb(255, 240, 0);
}

#cmp_d23223e5-e337-4b9a-9f8c-9bb964dd10dd ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_d23223e5-e337-4b9a-9f8c-9bb964dd10dd ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/reviews/cmp_de494094-184a-4510-acb1-64631fd2ee4c/component.css
 */
#cmp_de494094-184a-4510-acb1-64631fd2ee4c img {
	max-width: 100%;
}

/*
 * components/reviews/cmp_f417426f-7997-4c27-badf-cb6e181d9c9a/component.css
 */
#cmp_f417426f-7997-4c27-badf-cb6e181d9c9a img {
	max-width: 100%;
}

/*
 * components/reviews/cmp_fd99fddb-66e1-490f-96af-de728323d7eb/component.css
 */
#cmp_fd99fddb-66e1-490f-96af-de728323d7eb img {
	max-width: 100%;
}

/*
 * components/shop/listing/cmp_5a28b1ec-75c3-4c2a-80c5-1669317c14f5/component.css
 */
#cmp_5a28b1ec-75c3-4c2a-80c5-1669317c14f5 .shop-listing-item {
	color: #4A4A4A;
}

#cmp_5a28b1ec-75c3-4c2a-80c5-1669317c14f5 .shop-listing-item:hover,
#cmp_5a28b1ec-75c3-4c2a-80c5-1669317c14f5 .shop-listing-item:focus {
	text-decoration: none;
}

#cmp_5a28b1ec-75c3-4c2a-80c5-1669317c14f5 .shop-listing-item__image {
	background-size: cover;
	background-position: center center;
}

#cmp_5a28b1ec-75c3-4c2a-80c5-1669317c14f5 .shop-listing-item__name {
	margin: 10px 0;
}

#cmp_5a28b1ec-75c3-4c2a-80c5-1669317c14f5 .shop-listing-item__price {
	margin: 10px 0 30px;
}

#cmp_5a28b1ec-75c3-4c2a-80c5-1669317c14f5 .product_paging {
	-webkit-display: flex;
	-ms-display: flex;
	display: flex;
	justify-content: center;

	margin: 20px 0;
}

#cmp_5a28b1ec-75c3-4c2a-80c5-1669317c14f5 .product_page a,
#cmp_5a28b1ec-75c3-4c2a-80c5-1669317c14f5 .next_page a,
#cmp_5a28b1ec-75c3-4c2a-80c5-1669317c14f5 .prev_page a {
	display: block;
	padding: 12px 15px;
	margin: 0 2px;
	border: 1px solid #E0E0E0;
	border-radius: 5px;
}

#cmp_5a28b1ec-75c3-4c2a-80c5-1669317c14f5 .product_page.active a,
#cmp_5a28b1ec-75c3-4c2a-80c5-1669317c14f5 .product_page a:hover,
#cmp_5a28b1ec-75c3-4c2a-80c5-1669317c14f5 .product_page a:focus,
#cmp_5a28b1ec-75c3-4c2a-80c5-1669317c14f5 .next_page a:hover,
#cmp_5a28b1ec-75c3-4c2a-80c5-1669317c14f5 .next_page a:focus,
#cmp_5a28b1ec-75c3-4c2a-80c5-1669317c14f5 .prev_page a:hover,
#cmp_5a28b1ec-75c3-4c2a-80c5-1669317c14f5 .prev_page a:focus {
	text-decoration: none;
	background-color: #F9F9F9;
}

#cmp_5a28b1ec-75c3-4c2a-80c5-1669317c14f5 .product_page.active a {
	color: black;
}

/*
 * components/shop/product/cmp_92908002-ae0e-4cd9-b16f-329b78fd077b/component.css
 */
#cmp_92908002-ae0e-4cd9-b16f-329b78fd077b .shop-product__name {
	margin-bottom: 10px;
}

#cmp_92908002-ae0e-4cd9-b16f-329b78fd077b .shop-product__price {
	margin-bottom: 20px;
}

#cmp_92908002-ae0e-4cd9-b16f-329b78fd077b .shop-product select {
	width: auto;
}

#cmp_92908002-ae0e-4cd9-b16f-329b78fd077b .shop-product__add-to-cart {
	margin-bottom: 20px;
}

#cmp_92908002-ae0e-4cd9-b16f-329b78fd077b .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin-bottom: 40px;
}

#cmp_92908002-ae0e-4cd9-b16f-329b78fd077b .shop-product__review-share-desktop .col-xs-6 {
	padding-top: 10px;
}

#cmp_92908002-ae0e-4cd9-b16f-329b78fd077b .shop-product__review-share-desktop .col-xs-6 + .col-xs-6 {
	border-left: 1px solid #E1E1E1;
}

/*
 * components/shop/product/cmp_ab1dd2ea-9806-4335-9881-d177fe1f6b79/component.css
 */
#cmp_ab1dd2ea-9806-4335-9881-d177fe1f6b79.shop-product-header {
	padding: 50px 0 15px;
}

/*
 * components/sidebar/cmp_96b42c5f-9bd0-4ff0-abe8-b4c359d74172/component.css
 */
#cmp_96b42c5f-9bd0-4ff0-abe8-b4c359d74172 > header {
	margin-bottom: 40px;
}
#cmp_96b42c5f-9bd0-4ff0-abe8-b4c359d74172 .item {
	position: relative;
	margin-bottom: 30px;
}
#cmp_96b42c5f-9bd0-4ff0-abe8-b4c359d74172 .item > .pull-left {
	margin-right: 20px;
	width: 65px;
}
#cmp_96b42c5f-9bd0-4ff0-abe8-b4c359d74172 .item .meta {
	margin: 0;
	line-height: 120%;
}
#cmp_96b42c5f-9bd0-4ff0-abe8-b4c359d74172 .item .media-heading {
	padding-right: 15px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
#cmp_96b42c5f-9bd0-4ff0-abe8-b4c359d74172 .item .close {
	position: absolute;
	top: 0;
	right: 0;
	opacity: 1;
	filter: alpha(opacity=100);
	color: inherit;
	text-shadow: none;
}
#cmp_96b42c5f-9bd0-4ff0-abe8-b4c359d74172 .total {
	margin-bottom: 25px;
	padding: 25px 0;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}
#cmp_96b42c5f-9bd0-4ff0-abe8-b4c359d74172 .total .dt {
	text-align: right;
}
#cmp_96b42c5f-9bd0-4ff0-abe8-b4c359d74172 .total .strong {
	font-size: 15px;
}

/*
 * components/sold_out/cmp_52a91ce6-819f-4d30-b9e1-2190e85f6e8f/component.css
 */
#cmp_52a91ce6-819f-4d30-b9e1-2190e85f6e8f {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_52a91ce6-819f-4d30-b9e1-2190e85f6e8f h1 {
	color: rgb(0, 0, 0);
	font-family: Exo 2;
	font-size: 36px;
}

#cmp_52a91ce6-819f-4d30-b9e1-2190e85f6e8f h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_52a91ce6-819f-4d30-b9e1-2190e85f6e8f h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_52a91ce6-819f-4d30-b9e1-2190e85f6e8f p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_52a91ce6-819f-4d30-b9e1-2190e85f6e8f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_52a91ce6-819f-4d30-b9e1-2190e85f6e8f ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/sold_out/cmp_6f10b4e4-01ed-4bfa-b41a-c78ee200cd57/component.css
 */
#cmp_6f10b4e4-01ed-4bfa-b41a-c78ee200cd57 img {
	max-width: 100%;
}

#cmp_6f10b4e4-01ed-4bfa-b41a-c78ee200cd57  {
	padding-top: 50px;
}
/*
 * components/sold_out/cmp_77295d70-e3bb-4647-89d9-616a169de8b4/component.css
 */
#cmp_77295d70-e3bb-4647-89d9-616a169de8b4 {
	background-color: #FFFFFF;
}

#cmp_77295d70-e3bb-4647-89d9-616a169de8b4 h1 {
	color: rgb(0, 0, 0);
	font-family: Exo 2;
	font-size: 36px;
}

#cmp_77295d70-e3bb-4647-89d9-616a169de8b4 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_77295d70-e3bb-4647-89d9-616a169de8b4 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_77295d70-e3bb-4647-89d9-616a169de8b4 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_77295d70-e3bb-4647-89d9-616a169de8b4 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_77295d70-e3bb-4647-89d9-616a169de8b4 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_77295d70-e3bb-4647-89d9-616a169de8b4 .btn {
	background-color: rgb(96, 8, 117);
	color: rgb(255, 255, 255);
	font-family: Luckiest Guy;
	font-size: 18px;
}

#cmp_77295d70-e3bb-4647-89d9-616a169de8b4 .btn:hover {
	background-color: rgb(0, 0, 0);
	color: rgb(255, 240, 0);
}

#cmp_77295d70-e3bb-4647-89d9-616a169de8b4 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_77295d70-e3bb-4647-89d9-616a169de8b4 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/sold_out/cmp_b2bae8ef-f0f1-4c79-84e6-a2c52ea601e7/component.css
 */
#cmp_b2bae8ef-f0f1-4c79-84e6-a2c52ea601e7 img {
	max-width: 100%;
}

/*
 * components/store/cmp_8ba11687-a883-456c-8027-3d34a9263f00/component.css
 */
#cmp_8ba11687-a883-456c-8027-3d34a9263f00 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_8ba11687-a883-456c-8027-3d34a9263f00 h1 {
	color: rgb(0, 0, 0);
	font-family: Exo 2;
	font-size: 36px;
}

#cmp_8ba11687-a883-456c-8027-3d34a9263f00 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_8ba11687-a883-456c-8027-3d34a9263f00 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_8ba11687-a883-456c-8027-3d34a9263f00 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_8ba11687-a883-456c-8027-3d34a9263f00 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_8ba11687-a883-456c-8027-3d34a9263f00 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/store/cmp_a6d98975-8852-4def-89c1-d32604e29c90/component.css
 */
#cmp_a6d98975-8852-4def-89c1-d32604e29c90 img {
	max-width: 100%;
}

/*
 * components/store/cmp_ae39dd5c-6132-49c7-8980-3b5a9a089f42/component.css
 */
#cmp_ae39dd5c-6132-49c7-8980-3b5a9a089f42 {
	background-color: #FFFFFF;
}

#cmp_ae39dd5c-6132-49c7-8980-3b5a9a089f42 h1 {
	color: rgb(0, 0, 0);
	font-family: Exo 2;
	font-size: 36px;
}

#cmp_ae39dd5c-6132-49c7-8980-3b5a9a089f42 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_ae39dd5c-6132-49c7-8980-3b5a9a089f42 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_ae39dd5c-6132-49c7-8980-3b5a9a089f42 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_ae39dd5c-6132-49c7-8980-3b5a9a089f42 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_ae39dd5c-6132-49c7-8980-3b5a9a089f42 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_ae39dd5c-6132-49c7-8980-3b5a9a089f42 .btn {
	background-color: rgb(255, 240, 0);
	color: rgb(0, 0, 0);
	font-family: Luckiest Guy;
	font-size: 18px;
}

#cmp_ae39dd5c-6132-49c7-8980-3b5a9a089f42 .btn:hover {
	background-color: rgb(0, 0, 0);
	color: rgb(255, 240, 0);
}

#cmp_ae39dd5c-6132-49c7-8980-3b5a9a089f42 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_ae39dd5c-6132-49c7-8980-3b5a9a089f42 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/subscribe/cmp_1f97cb56-ad79-4b34-9000-5c9b456908cd/component.css
 */

/*
 * components/subscribe/cmp_c3cf76b5-57c8-4ca2-86a2-244cff78380c/component.css
 */
#cmp_c3cf76b5-57c8-4ca2-86a2-244cff78380c {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_c3cf76b5-57c8-4ca2-86a2-244cff78380c h1 {
	color: rgb(0, 0, 0);
	font-family: Exo 2;
	font-size: 36px;
}

#cmp_c3cf76b5-57c8-4ca2-86a2-244cff78380c h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_c3cf76b5-57c8-4ca2-86a2-244cff78380c h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_c3cf76b5-57c8-4ca2-86a2-244cff78380c p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_c3cf76b5-57c8-4ca2-86a2-244cff78380c ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_c3cf76b5-57c8-4ca2-86a2-244cff78380c ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

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

.addons-row form .addons-form-group {
display: none!important;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-products-row {
	border: 1px solid rgb(136, 0, 255);

	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 rgb(136, 0, 255);
}

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

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

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-btn-cart:hover {
	color: rgb(255, 240, 0);
	background-color: rgb(0, 0, 0);
}

#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: rgb(136, 0, 255);
}

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

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

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-continue-btn:hover {
	color: rgb(255, 240, 0);
	background-color: rgb(0, 0, 0);
}

@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/addons_step/cmp_baa014b8-d922-4538-8ccc-6942b6071433/component.css
 */
#cmp_baa014b8-d922-4538-8ccc-6942b6071433 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_baa014b8-d922-4538-8ccc-6942b6071433 h1 {
	color: rgb(0, 0, 0);
	font-family: Exo 2;
	font-size: 36px;
}

#cmp_baa014b8-d922-4538-8ccc-6942b6071433 h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_baa014b8-d922-4538-8ccc-6942b6071433 h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_baa014b8-d922-4538-8ccc-6942b6071433 p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_baa014b8-d922-4538-8ccc-6942b6071433 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_baa014b8-d922-4538-8ccc-6942b6071433 ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/subscribe_flow/addons_step/cmp_c473e602-ee66-43db-807e-f988f4e2d531/component.css
 */
#cmp_c473e602-ee66-43db-807e-f988f4e2d531 img {
	max-width: 100%;
}

/*
 * components/subscribe_flow/survey_step/cmp_3ac7dbb7-6f54-4ced-9d72-ecf0ae0c2322/component.css
 */
#cmp_3ac7dbb7-6f54-4ced-9d72-ecf0ae0c2322.survey h2 {
	margin-bottom: 0.5em;
}

#cmp_3ac7dbb7-6f54-4ced-9d72-ecf0ae0c2322.survey .radio input[type="radio"],
#cmp_3ac7dbb7-6f54-4ced-9d72-ecf0ae0c2322.survey .checkbox input[type="checkbox"] {
	margin-right: 0.5em;
}

#cmp_3ac7dbb7-6f54-4ced-9d72-ecf0ae0c2322.survey .survey-field {
	margin-bottom: 2em;
}

/*
 * components/subscribe_flow/survey_step/cmp_b62d104b-0e9f-4304-a01c-0dbc99184a12/component.css
 */
#cmp_b62d104b-0e9f-4304-a01c-0dbc99184a12 {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/terms_step/cmp_83b984ce-ead6-42d7-b948-f7b61ef939dc/component.css
 */
#cmp_83b984ce-ead6-42d7-b948-f7b61ef939dc {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
}

#cmp_83b984ce-ead6-42d7-b948-f7b61ef939dc h1 {
	color: rgb(0, 0, 0);
	font-family: Exo 2;
	font-size: 36px;
}

#cmp_83b984ce-ead6-42d7-b948-f7b61ef939dc h2 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 24px;
}

#cmp_83b984ce-ead6-42d7-b948-f7b61ef939dc h3 {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 16px;
}

#cmp_83b984ce-ead6-42d7-b948-f7b61ef939dc p {
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_83b984ce-ead6-42d7-b948-f7b61ef939dc ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

#cmp_83b984ce-ead6-42d7-b948-f7b61ef939dc ul {
	list-style: disc;
	list-style-position: inside;
	color: #4A4A4A;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/subscribe_flow/terms_step/cmp_c9a134df-6c5d-471f-b5bc-b57b6dad8c6c/component.css
 */
#cmp_c9a134df-6c5d-471f-b5bc-b57b6dad8c6c img {
	max-width: 100%;
}

/*
 * components/subscribe_flow/terms_step/cmp_d45057bb-ed5c-48bf-bfe1-3337bcfa2041/component.css
 */

/*
 * components/subscribe_flow/variant_step/cmp_ea3e95ee-6666-4e42-bc36-31c512bb7ef8/component.css
 */
#cmp_ea3e95ee-6666-4e42-bc36-31c512bb7ef8 {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/variant_step/cmp_ee14048d-77cd-488f-a33f-f722e5a94e53/component.css
 */