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

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

h1 {
	color: rgba(0, 0, 0, 0.97);
	font-family: Gothic A1;
	font-size: 34px;
	letter-spacing: 1px;
	line-height: 1;
}

h2 {
	color: rgb(255, 144, 0);
	font-family: Gothic A1;
	font-size: 26px;
}

h3 {
	color: rgba(0, 0, 0, 0.97);
	font-family: Gothic A1;
	font-size: 25px;
}

p {
	line-height: 1.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.panel-body {
	padding: 15px;
}

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

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

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

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

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

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

.btn-small {
	border: 2px solid rgb(255, 144, 0);
	color: rgb(255, 144, 0);
	padding: 0.6em 1.8em;
}

.btn-small:hover,
.btn-small:focus,
.btn-small:active,
.btn-small:active:focus {
	background-color: rgb(255, 144, 0);
	border-color: rgb(255, 144, 0);
	color: #FFFFFF !important;
}

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

.btn-primary {
	background-color: rgb(255, 144, 0);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 16px;
	letter-spacing: 0.167em;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus {
	background-color: rgb(189, 16, 224);
	color: #FFFFFF;
}

.btn-secondary {
	background-color: rgba(255, 144, 0, 0.71);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 16px;
	letter-spacing: 0.167em;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:active:focus {
	background-color: rgb(189, 16, 224);
	color: #FFFFFF;
}

.btn-empty {
	background-color: transparent;
	border: 1px solid rgb(255, 144, 0);
	color: rgb(255, 144, 0);
}

.btn-empty:hover,
.btn-empty:focus,
.btn-empty:active,
.btn-empty:active:focus {
	background-color: rgba(0, 0, 0, 0.97);
}

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

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

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

	margin: 20px 0;
}

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

	padding: .9375rem 0;
}

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

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

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

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

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

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

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

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

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

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

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

.checkout_content #checkout_button {
	background-color: rgb(255, 144, 0);
	border: none;
	border-radius: 25px;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 16px;
	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(189, 16, 224);
	color: #FFFFFF;
}

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

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

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

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

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

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

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

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

.address-container {
	width: 100%;
}

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

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

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

.address-container {
	width: 100%;
}

.errors {
	margin: 25px 0;
}

.cratejoy-loading-icon {
	color: rgb(255, 144, 0);
}

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

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

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

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

/*
 * components/about/cmp_258ac2fa-181e-4a34-b874-4457d95e0b69/component.css
 */
#cmp_258ac2fa-181e-4a34-b874-4457d95e0b69 {
	background-color: #FFFFFF;
}

#cmp_258ac2fa-181e-4a34-b874-4457d95e0b69 h1 {
	color: rgba(0, 0, 0, 0.97);
	font-family: Gothic A1;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_258ac2fa-181e-4a34-b874-4457d95e0b69 h2 {
	color: rgb(74, 74, 74);
	font-family: Gothic A1;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_258ac2fa-181e-4a34-b874-4457d95e0b69 h3 {
	color: rgba(0, 0, 0, 0.97);
	font-family: Gothic A1;
	font-size: 25px;
	margin: 0 0 25px 0;
}

#cmp_258ac2fa-181e-4a34-b874-4457d95e0b69 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 23px;
	margin: 0 0 25px 0;
}

/*
 * components/about/cmp_b87f06d9-51da-45e5-a4ff-2bfc0f361e3f/component.css
 */
#cmp_b87f06d9-51da-45e5-a4ff-2bfc0f361e3f {
	background-color: #FFFFFF;
}

#cmp_b87f06d9-51da-45e5-a4ff-2bfc0f361e3f h1 {
	color: rgba(0, 0, 0, 0.97);
	font-family: Gothic A1;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_b87f06d9-51da-45e5-a4ff-2bfc0f361e3f h2 {
	color: rgb(255, 144, 0);
	font-family: Gothic A1;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_b87f06d9-51da-45e5-a4ff-2bfc0f361e3f h3 {
	color: rgba(0, 0, 0, 0.97);
	font-family: Gothic A1;
	font-size: 25px;
	margin: 0 0 25px 0;
}

#cmp_b87f06d9-51da-45e5-a4ff-2bfc0f361e3f p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 23px;
	margin: 0 0 25px 0;
}

#cmp_b87f06d9-51da-45e5-a4ff-2bfc0f361e3f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 23px;
}

#cmp_b87f06d9-51da-45e5-a4ff-2bfc0f361e3f ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 23px;
}

/*
 * components/about/cmp_f317ac46-4541-4cbc-9319-125b9f091d72/component.css
 */
#cmp_f317ac46-4541-4cbc-9319-125b9f091d72 {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	background-color: #FFFFFF;
}

#cmp_f317ac46-4541-4cbc-9319-125b9f091d72 .content {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	margin: 0 auto;
	padding: 25px;
}

#cmp_f317ac46-4541-4cbc-9319-125b9f091d72 .square-image {
	height: 225px;
	margin: 0 0 15px 0;
	width: 225px;
}

#cmp_f317ac46-4541-4cbc-9319-125b9f091d72 h1 {
	color: rgba(0, 0, 0, 0.97);
	font-family: Gothic A1;
	font-size: 34px;
}

#cmp_f317ac46-4541-4cbc-9319-125b9f091d72 h2 {
	color: rgb(19, 161, 167);
	font-family: Gothic A1;
	font-size: 26px;
}

#cmp_f317ac46-4541-4cbc-9319-125b9f091d72 h3 {
	color: rgba(0, 0, 0, 0.97);
	font-family: Gothic A1;
	font-size: 25px;
}

#cmp_f317ac46-4541-4cbc-9319-125b9f091d72 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 23px;
}

/*
 * components/checkout/cmp_de29dbbd-8a8b-4e41-ac88-2d08e9e52417/component.css
 */
#cmp_de29dbbd-8a8b-4e41-ac88-2d08e9e52417 .checkout_content {
  overflow: auto;
}

#cmp_de29dbbd-8a8b-4e41-ac88-2d08e9e52417 .checkout_content section {
  border-color: #F5F5F5;
}

#cmp_de29dbbd-8a8b-4e41-ac88-2d08e9e52417 .cart_listing table {
  border-color: #F5F5F5;
}

#cmp_de29dbbd-8a8b-4e41-ac88-2d08e9e52417  {
	padding-top: 0;
}
/*
 * components/customer/account/cmp_53994e66-24b8-420e-b9fe-8d69e406f459/component.css
 */

/*
 * components/customer/edit/cmp_59ee1878-fbed-4ca1-9533-bb3d81d91e03/component.css
 */

/*
 * components/customer/forgot_password/cmp_1d5fe69a-b6be-4a26-b51a-38d97cc7d763/component.css
 */
#cmp_1d5fe69a-b6be-4a26-b51a-38d97cc7d763 {
	background-color: #FFFFFF;
}

#cmp_1d5fe69a-b6be-4a26-b51a-38d97cc7d763 h1 {
	color: rgba(0, 0, 0, 0.97);
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 25px 0;
}

#cmp_1d5fe69a-b6be-4a26-b51a-38d97cc7d763 h2 {
	color: rgb(255, 144, 0);
	font-family: Gothic A1;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_1d5fe69a-b6be-4a26-b51a-38d97cc7d763 h3 {
	color: rgba(0, 0, 0, 0.97);
	font-family: Gothic A1;
	font-size: 25px;
	margin: 0 0 25px 0;
}

#cmp_1d5fe69a-b6be-4a26-b51a-38d97cc7d763 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 23px;
	margin: 0 0 25px 0;
}

/*
 * components/customer/forgot_password/cmp_80061a45-ae19-40f7-aea2-5a1ff3b821e3/component.css
 */
#cmp_80061a45-ae19-40f7-aea2-5a1ff3b821e3 {
    padding:  0 0 120px 0;
}
/*
 * components/customer/login/cmp_09a09bb0-0de5-495b-bfd4-cb96cb099699/component.css
 */
#cmp_09a09bb0-0de5-495b-bfd4-cb96cb099699 {
    padding:  0 0 120px 0;
}
/*
 * components/customer/login/cmp_ecb643e9-1630-44b1-bcbc-65045bb40802/component.css
 */
#cmp_ecb643e9-1630-44b1-bcbc-65045bb40802 {
	background-color: #FFFFFF;
}

#cmp_ecb643e9-1630-44b1-bcbc-65045bb40802 h1 {
	color: rgba(0, 0, 0, 0.97);
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 25px 0;
}

#cmp_ecb643e9-1630-44b1-bcbc-65045bb40802 h2 {
	color: rgb(255, 144, 0);
	font-family: Gothic A1;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_ecb643e9-1630-44b1-bcbc-65045bb40802 h3 {
	color: rgba(0, 0, 0, 0.97);
	font-family: Gothic A1;
	font-size: 25px;
	margin: 0 0 25px 0;
}

#cmp_ecb643e9-1630-44b1-bcbc-65045bb40802 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 23px;
	margin: 0 0 25px 0;
}

/*
 * components/customer/order/cmp_9a9439f4-a58d-481c-9747-a2b357ed7639/component.css
 */

/*
 * components/customer/password_reset/cmp_1b2ccabc-636e-4edd-b6ca-c079b684472e/component.css
 */
#cmp_1b2ccabc-636e-4edd-b6ca-c079b684472e {
	background-color: #FFFFFF;
}

#cmp_1b2ccabc-636e-4edd-b6ca-c079b684472e h1 {
	color: rgba(0, 0, 0, 0.97);
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 25px 0;
}

#cmp_1b2ccabc-636e-4edd-b6ca-c079b684472e h2 {
	color: rgb(255, 144, 0);
	font-family: Gothic A1;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_1b2ccabc-636e-4edd-b6ca-c079b684472e h3 {
	color: rgba(0, 0, 0, 0.97);
	font-family: Gothic A1;
	font-size: 25px;
	margin: 0 0 25px 0;
}

#cmp_1b2ccabc-636e-4edd-b6ca-c079b684472e p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 23px;
	margin: 0 0 25px 0;
}

/*
 * components/customer/password_reset/cmp_a50239b5-be88-45a2-9d37-e8062ac60b7c/component.css
 */
#cmp_a50239b5-be88-45a2-9d37-e8062ac60b7c {
    padding:  0 0 120px 0;
}
/*
 * components/customer/thank_you/cmp_4eafb6f0-0e19-4e2f-90a7-53ace05a0381/component.css
 */
#cmp_4eafb6f0-0e19-4e2f-90a7-53ace05a0381 {
	background-color: #FFFFFF;
}

#cmp_4eafb6f0-0e19-4e2f-90a7-53ace05a0381 h1 {
	color: rgba(0, 0, 0, 0.97);
	font-family: Gothic A1;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_4eafb6f0-0e19-4e2f-90a7-53ace05a0381 h2 {
	color: rgb(255, 144, 0);
	font-family: Gothic A1;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_4eafb6f0-0e19-4e2f-90a7-53ace05a0381 h3 {
	color: rgba(0, 0, 0, 0.97);
	font-family: Gothic A1;
	font-size: 25px;
	margin: 0 0 25px 0;
}

#cmp_4eafb6f0-0e19-4e2f-90a7-53ace05a0381 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 23px;
	margin: 0 0 25px 0;
}

#cmp_4eafb6f0-0e19-4e2f-90a7-53ace05a0381 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 23px;
}

#cmp_4eafb6f0-0e19-4e2f-90a7-53ace05a0381 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 23px;
}

/*
 * components/customer/thank_you/cmp_c29aef4f-3bb5-45dd-92fb-b625a187f92b/component.css
 */

/*
 * components/global/cmp_0e040d4f-e5ec-4c88-8802-7ea05eee9f3c/component.css
 */
#cmp_0e040d4f-e5ec-4c88-8802-7ea05eee9f3c.footer {
	background-color: #FAFAFA;
	color: rgb(0, 0, 0);
	font-family: Lato;
	padding: 10px 0;

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

#cmp_0e040d4f-e5ec-4c88-8802-7ea05eee9f3c .footer-social {
	padding: 15px 0;
	text-align: center;
}

#cmp_0e040d4f-e5ec-4c88-8802-7ea05eee9f3c .footer-social a {
	display: inline-block;
	padding: 0 5px;
}

#cmp_0e040d4f-e5ec-4c88-8802-7ea05eee9f3c .footer-social svg path {
	fill: rgb(74, 74, 74);
}

#cmp_0e040d4f-e5ec-4c88-8802-7ea05eee9f3c .footer-social a:hover svg path,
#cmp_0e040d4f-e5ec-4c88-8802-7ea05eee9f3c .footer-social a:focus svg path,
#cmp_0e040d4f-e5ec-4c88-8802-7ea05eee9f3c .footer-social a:active svg path {
	fill: rgb(80, 227, 194);
}

#cmp_0e040d4f-e5ec-4c88-8802-7ea05eee9f3c.footer .toggler-container {
	padding: 15px 0;
	text-align: center;
}

#cmp_0e040d4f-e5ec-4c88-8802-7ea05eee9f3c.footer .navbar-toggler {
	color: rgb(255, 144, 0);
	font-size: 16px;
	letter-spacing: 0.077em;
	text-transform: uppercase;
}

#cmp_0e040d4f-e5ec-4c88-8802-7ea05eee9f3c .footer-cc {
	border-top: 1px solid #e1e1e1;
	letter-spacing: 1px;
	text-align: center;
}

#cmp_0e040d4f-e5ec-4c88-8802-7ea05eee9f3c .footer-cc img {
	padding: 15px 0;
}

#cmp_0e040d4f-e5ec-4c88-8802-7ea05eee9f3c .footer-cc p,
#cmp_0e040d4f-e5ec-4c88-8802-7ea05eee9f3c .footer-tributes p {
	margin: 0;
	padding: 15px 0;
}

#cmp_0e040d4f-e5ec-4c88-8802-7ea05eee9f3c .footer-tributes p a {
	color: rgb(0, 0, 0);
	padding: 0;
}

#cmp_0e040d4f-e5ec-4c88-8802-7ea05eee9f3c .footer-tributes p a:hover,
#cmp_0e040d4f-e5ec-4c88-8802-7ea05eee9f3c .footer-tributes p a:focus,
#cmp_0e040d4f-e5ec-4c88-8802-7ea05eee9f3c .footer-tributes p a:active {
	color: rgb(0, 0, 0);
	text-decoration: none;
}

#cmp_0e040d4f-e5ec-4c88-8802-7ea05eee9f3c .footer-directory {
	text-align: center;
}

#cmp_0e040d4f-e5ec-4c88-8802-7ea05eee9f3c .footer-list {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

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

#cmp_0e040d4f-e5ec-4c88-8802-7ea05eee9f3c .footer-list .footer-item {
	-webkit-flex: 0 0 50%;
	-moz-flex: 0 0 50%;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;

	padding: 8px 18px;
	position: relative;
}

#cmp_0e040d4f-e5ec-4c88-8802-7ea05eee9f3c .footer-list .footer-link {
	color: rgba(255, 144, 0, 0.71);
	font-family: Lato;
	font-size: 16px;
	letter-spacing: 0.077em;
	text-transform: uppercase;
}

#cmp_0e040d4f-e5ec-4c88-8802-7ea05eee9f3c .footer-list .footer-link:hover,
#cmp_0e040d4f-e5ec-4c88-8802-7ea05eee9f3c .footer-list .footer-link:focus,
#cmp_0e040d4f-e5ec-4c88-8802-7ea05eee9f3c .footer-list .footer-link:active {
	color: rgb(255, 144, 0);
	text-decoration: none;
}

@media (max-width: 767px) {
	#cmp_0e040d4f-e5ec-4c88-8802-7ea05eee9f3c .col-sm-12,
	#cmp_0e040d4f-e5ec-4c88-8802-7ea05eee9f3c .col-xs-12 {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 auto;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
	}
}

@media (min-width: 768px) {
	#cmp_0e040d4f-e5ec-4c88-8802-7ea05eee9f3c.footer {
		-webkit-align-items: flex-start;
		-moz-align-items: flex-start;
		-ms-align-items: flex-start;
		align-items: flex-start;

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

		padding: 25px 0;
	}
	#cmp_0e040d4f-e5ec-4c88-8802-7ea05eee9f3c .footer-directory {
		-webkit-order: 1;
		-moz-order: 1;
		-ms-order: 1;
		order: 1;

		text-align: left;
	}
	#cmp_0e040d4f-e5ec-4c88-8802-7ea05eee9f3c .footer-social {
		-webkit-order: 2;
		-moz-order: 2;
		-ms-order: 2;
		order: 2;

		padding: 0 15px;
		text-align: right;
	}
	#cmp_0e040d4f-e5ec-4c88-8802-7ea05eee9f3c .footer-cc {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}
	#cmp_0e040d4f-e5ec-4c88-8802-7ea05eee9f3c .footer-cc p {
		display: inline-block;
	}
}

@media (min-width: 992px) {
	#cmp_0e040d4f-e5ec-4c88-8802-7ea05eee9f3c .footer-cc {
		-webkit-order: 2;
		-moz-order: 2;
		-ms-order: 2;
		order: 2;

		border-top: none;
	}
	#cmp_0e040d4f-e5ec-4c88-8802-7ea05eee9f3c .footer-cc p {
		display: block;
	}
	#cmp_0e040d4f-e5ec-4c88-8802-7ea05eee9f3c .footer-social {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}
}

#cmp_0e040d4f-e5ec-4c88-8802-7ea05eee9f3c ol {
    list-style: decimal;
    list-style-position: inside;
    color: rgb(0, 0, 0);
    font-family: Lato;
    font-size: ;
}

#cmp_0e040d4f-e5ec-4c88-8802-7ea05eee9f3c ul {
    list-style: none;
    list-style-position: inside;
    color: rgb(0, 0, 0);
    font-family: Lato;
    font-size: ;
}

/*
 * components/global/cmp_7299b63a-86ef-4b42-823e-c2ede5954a2c/component.css
 */
#cmp_7299b63a-86ef-4b42-823e-c2ede5954a2c.navbar {
	background-color: rgb(255, 255, 255);
	border-radius: 0;
	padding: 0;

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

#cmp_7299b63a-86ef-4b42-823e-c2ede5954a2c.navbar a:hover,
#cmp_7299b63a-86ef-4b42-823e-c2ede5954a2c.navbar a:focus,
#cmp_7299b63a-86ef-4b42-823e-c2ede5954a2c.navbar a:active {
	color: rgb(189, 16, 224);
}

#cmp_7299b63a-86ef-4b42-823e-c2ede5954a2c .navbar-brand {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

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

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

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

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

	color: rgb(255, 144, 0);
	font-family: Abril Fatface;
	font-size: 50px;
	letter-spacing: 0.038em;
	margin: 0;
	max-width: 100%;
	padding: 15px;
	text-align: center;
	text-transform: uppercase;
}

#cmp_7299b63a-86ef-4b42-823e-c2ede5954a2c .navbar-brand img {
	max-width: 100%;
}

#cmp_7299b63a-86ef-4b42-823e-c2ede5954a2c.navbar .navbar-toggler {
	background-color: rgb(255, 144, 0);
	border-radius: 0;
	color: #FFFFFF;
	font-size: 16px;
	letter-spacing: 0.077em;
	padding: 15px;
	text-transform: uppercase;
}

#cmp_7299b63a-86ef-4b42-823e-c2ede5954a2c.navbar .navbar-toggler:hover,
#cmp_7299b63a-86ef-4b42-823e-c2ede5954a2c.navbar .navbar-toggler:focus,
#cmp_7299b63a-86ef-4b42-823e-c2ede5954a2c.navbar .navbar-toggler:active {
	background-color: rgb(189, 16, 224);
	color: #FFFFFF;
}

#cmp_7299b63a-86ef-4b42-823e-c2ede5954a2c .navbar-nav {
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;

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

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

	margin: 0;
	padding: 15px 0;
}

#cmp_7299b63a-86ef-4b42-823e-c2ede5954a2c .navbar-nav li {
	padding: 10px 0;
}

#cmp_7299b63a-86ef-4b42-823e-c2ede5954a2c .navbar-nav .nav-link {
	color: rgb(0, 0, 0);
	font-family: Gothic A1;
	font-size: 20px;;
	padding: 8px 18px;
	text-align: center;
	text-transform: uppercase;
}

@media (min-width: 768px) {
	#cmp_7299b63a-86ef-4b42-823e-c2ede5954a2c.navbar {
		-webkit-align-items: center;
		-moz-align-items: center;
		-ms-align-items: center;
		align-items: center;

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

		padding: 15px 0 0 0;
	}
	#cmp_7299b63a-86ef-4b42-823e-c2ede5954a2c .navbar-brand {
		padding: 0 0 15px 0;
	}
	#cmp_7299b63a-86ef-4b42-823e-c2ede5954a2c .navbar-toggleable-sm {
		-webkit-flex-shrink: 0;
		-moz-flex-shrink: 0;
		-ms-flex-shrink: 0;
		flex-shrink: 0;

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

	}
	#cmp_7299b63a-86ef-4b42-823e-c2ede5954a2c .navbar-nav {
		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;

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

		padding: 0 0 15px 0;
	}
	#cmp_7299b63a-86ef-4b42-823e-c2ede5954a2c .navbar-nav li {
		padding: 0;
	}
}

#cmp_7299b63a-86ef-4b42-823e-c2ede5954a2c ol {
    list-style: decimal;
    list-style-position: inside;
    color: ;
    font-family: ;
    font-size: ;
}

#cmp_7299b63a-86ef-4b42-823e-c2ede5954a2c ul {
    list-style: none;
    list-style-position: inside;
    color: ;
    font-family: ;
    font-size: ;
}

/*
 * components/global/cmp_8d32290d-1851-4b16-a7fc-c7dea8a2c9a9/component.css
 */
#cmp_8d32290d-1851-4b16-a7fc-c7dea8a2c9a9 {
	background-color: #FFFFFF;
}

#cmp_8d32290d-1851-4b16-a7fc-c7dea8a2c9a9 h1 {
	color: rgba(0, 0, 0, 0.97);
	font-family: Gothic A1;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_8d32290d-1851-4b16-a7fc-c7dea8a2c9a9 h2 {
	color: rgb(74, 74, 74);
	font-family: Gothic A1;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_8d32290d-1851-4b16-a7fc-c7dea8a2c9a9 h3 {
	color: rgba(0, 0, 0, 0.97);
	font-family: Gothic A1;
	font-size: 25px;
	margin: 0 0 25px 0;
}

#cmp_8d32290d-1851-4b16-a7fc-c7dea8a2c9a9 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 23px;
	margin: 0 0 25px 0;
}

#cmp_8d32290d-1851-4b16-a7fc-c7dea8a2c9a9 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_8d32290d-1851-4b16-a7fc-c7dea8a2c9a9 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_8d32290d-1851-4b16-a7fc-c7dea8a2c9a9 .btn {
	background-color: rgb(255, 144, 0);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 16px;
}

#cmp_8d32290d-1851-4b16-a7fc-c7dea8a2c9a9 .btn:hover {
	background-color: rgb(189, 16, 224);
	color: #FFFFFF;
}

#cmp_8d32290d-1851-4b16-a7fc-c7dea8a2c9a9  {
	padding-top: 0;
}
/*
 * components/index/cmp_3cdec6e7-e670-4622-b627-551d305d1616/component.css
 */
#cmp_3cdec6e7-e670-4622-b627-551d305d1616 img {
	max-width: 100%;
}

/*
 * components/index/cmp_4b0a7261-56ca-4e96-bcdc-c582d39dbc4f/component.css
 */
#cmp_4b0a7261-56ca-4e96-bcdc-c582d39dbc4f {
	padding: 0;
}

#cmp_4b0a7261-56ca-4e96-bcdc-c582d39dbc4f .hero-content {
	background-color: #FFFFFF;
	padding: 20px;
}

#cmp_4b0a7261-56ca-4e96-bcdc-c582d39dbc4f .hero-content h1 {
	color: rgba(0, 0, 0, 0.97);
	font-family: Bubblegum Sans;
	font-size: 44px;
	margin: 0 0 15px 0;
}

#cmp_4b0a7261-56ca-4e96-bcdc-c582d39dbc4f .hero-content h2 {
	color: rgb(255, 144, 0);
	font-family: Gothic A1;
	font-size: 26px;
	margin: 0 0 15px 0;
}

#cmp_4b0a7261-56ca-4e96-bcdc-c582d39dbc4f .hero-content h3 {
	color: rgba(0, 0, 0, 0.97);
	font-family: Gothic A1;
	font-size: 25px;
	margin: 0 0 15px 0;
}

#cmp_4b0a7261-56ca-4e96-bcdc-c582d39dbc4f .hero-content p {
	color: #49494A;
	font-family: Lato;
	font-size: 18px;
	margin: 0 0 15px 0;
}

#cmp_4b0a7261-56ca-4e96-bcdc-c582d39dbc4f .hero-content .btn {
	background-color: rgb(255, 144, 0);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 16px;
}

#cmp_4b0a7261-56ca-4e96-bcdc-c582d39dbc4f .hero-content .btn:hover {
	background-color: rgb(189, 16, 224);
	color: #FFFFFF;
}

#cmp_4b0a7261-56ca-4e96-bcdc-c582d39dbc4f p {
	margin: 0 0 25px 0;
}
/*
 * components/index/cmp_96d84bde-dca3-4d16-9655-76352086808f/component.css
 */
#cmp_96d84bde-dca3-4d16-9655-76352086808f {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	background-color: #FAFAFA;
}

#cmp_96d84bde-dca3-4d16-9655-76352086808f .content {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	margin: 0 auto;
	padding: 25px;
}

#cmp_96d84bde-dca3-4d16-9655-76352086808f .square-image {
	height: 225px;
	margin: 0 0 15px 0;
	width: 225px;
}

#cmp_96d84bde-dca3-4d16-9655-76352086808f h1 {
	color: rgb(62, 5, 126);
	font-family: Gothic A1;
	font-size: 34px;
}

#cmp_96d84bde-dca3-4d16-9655-76352086808f h2 {
	color: rgb(80, 227, 194);
	font-family: Bubblegum Sans;
	font-size: 40px;
}

#cmp_96d84bde-dca3-4d16-9655-76352086808f h3 {
	color: rgb(74, 74, 74);
	font-family: Bubblegum Sans;
	font-size: 18px;
}

#cmp_96d84bde-dca3-4d16-9655-76352086808f p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 20px;
}

/*
 * components/index/cmp_b7c79479-20e8-4095-b0f1-04e1028eb75c/component.css
 */
#cmp_b7c79479-20e8-4095-b0f1-04e1028eb75c {
	background-color: #FFFFFF;
}

#cmp_b7c79479-20e8-4095-b0f1-04e1028eb75c h1 {
	color: rgba(0, 0, 0, 0.97);
	font-family: Gothic A1;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_b7c79479-20e8-4095-b0f1-04e1028eb75c h2 {
	color: rgb(255, 144, 0);
	font-family: Gothic A1;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_b7c79479-20e8-4095-b0f1-04e1028eb75c h3 {
	color: rgba(0, 0, 0, 0.97);
	font-family: Gothic A1;
	font-size: 25px;
	margin: 0 0 25px 0;
}

#cmp_b7c79479-20e8-4095-b0f1-04e1028eb75c p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 23px;
	margin: 0 0 25px 0;
}

#cmp_b7c79479-20e8-4095-b0f1-04e1028eb75c ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 23px;
}

#cmp_b7c79479-20e8-4095-b0f1-04e1028eb75c ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 23px;
}

/*
 * components/index/cmp_f4332042-3425-4467-bd19-c06b0c1c2ff0/component.css
 */
#cmp_f4332042-3425-4467-bd19-c06b0c1c2ff0 {
	padding: 0;
}

#cmp_f4332042-3425-4467-bd19-c06b0c1c2ff0 .hero-content {
	background-color: #E5E9EE;
	padding: 20px;
}

#cmp_f4332042-3425-4467-bd19-c06b0c1c2ff0 .hero-content h1 {
	color: rgba(0, 0, 0, 0.97);
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 15px 0;
}

#cmp_f4332042-3425-4467-bd19-c06b0c1c2ff0 .hero-content h2 {
	color: rgb(245, 166, 35);
	font-family: Gothic A1;
	font-size: 26px;
	margin: 0 0 15px 0;
}

#cmp_f4332042-3425-4467-bd19-c06b0c1c2ff0 .hero-content h3 {
	color: rgba(0, 0, 0, 0.97);
	font-family: Gothic A1;
	font-size: 25px;
	margin: 0 0 15px 0;
}

#cmp_f4332042-3425-4467-bd19-c06b0c1c2ff0 .hero-content p {
	color: #49494A;
	font-family: Lato;
	font-size: 23px;
	margin: 0 0 15px 0;
}

#cmp_f4332042-3425-4467-bd19-c06b0c1c2ff0 .hero-content .button-container {
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
}

#cmp_f4332042-3425-4467-bd19-c06b0c1c2ff0 .hero-content .btn {
	margin: 3px;
	padding: 15px;
	width: 40%;
}

#cmp_f4332042-3425-4467-bd19-c06b0c1c2ff0 .hero-content .btn-primary {
	background-color: rgb(251, 150, 20);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 16px;
}

#cmp_f4332042-3425-4467-bd19-c06b0c1c2ff0 .hero-content .btn-primary:hover {
	background-color: rgb(189, 16, 224);
	color: #FFFFFF;
}

#cmp_f4332042-3425-4467-bd19-c06b0c1c2ff0 .hero-content .btn-secondary {
	background-color: rgba(251, 150, 20, 0.63);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 16px;
}

#cmp_f4332042-3425-4467-bd19-c06b0c1c2ff0 .hero-content .btn-secondary:hover {
	background-color: rgb(189, 16, 224);
	color: #FFFFFF;
}

#cmp_f4332042-3425-4467-bd19-c06b0c1c2ff0 p {
	margin: 0 0 25px 0;
}
/*
 * components/previous_boxes/cmp_184869ba-7d0c-450a-b474-227a54fab5c5/component.css
 */
#cmp_184869ba-7d0c-450a-b474-227a54fab5c5 img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_32c91919-257d-4f10-be62-714521907b01/component.css
 */
#cmp_32c91919-257d-4f10-be62-714521907b01 img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_49f4605d-32f4-43bd-856c-f7e1ad525c74/component.css
 */
#cmp_49f4605d-32f4-43bd-856c-f7e1ad525c74 img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_4c0db623-16ea-46ea-b115-1d70b6f90c2f/component.css
 */
#cmp_4c0db623-16ea-46ea-b115-1d70b6f90c2f img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_782ece2f-5d61-4be4-9315-d6d43e95ef17/component.css
 */
#cmp_782ece2f-5d61-4be4-9315-d6d43e95ef17 img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_796f6337-e122-4c39-a34f-56542d61d3ee/component.css
 */
#cmp_796f6337-e122-4c39-a34f-56542d61d3ee img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_8122b366-4ab0-4992-b4da-995295b4c002/component.css
 */
#cmp_8122b366-4ab0-4992-b4da-995295b4c002 img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_8c23f731-e283-4d10-bdff-9f367b37795c/component.css
 */
#cmp_8c23f731-e283-4d10-bdff-9f367b37795c img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_a17fb2a0-e383-4241-9bd2-86ee9cce3300/component.css
 */
#cmp_a17fb2a0-e383-4241-9bd2-86ee9cce3300 img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_a26ee5df-4e07-4dc8-babe-6d163d0166ad/component.css
 */
#cmp_a26ee5df-4e07-4dc8-babe-6d163d0166ad img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_aad89b03-3520-4375-8fd6-f0fa43e7fd31/component.css
 */
#cmp_aad89b03-3520-4375-8fd6-f0fa43e7fd31 img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_cb610b8d-581b-4b47-9822-c82da610c4d0/component.css
 */
#cmp_cb610b8d-581b-4b47-9822-c82da610c4d0 {
	background-color: #FFFFFF;
}

#cmp_cb610b8d-581b-4b47-9822-c82da610c4d0 h1 {
	color: rgba(0, 0, 0, 0.97);
	font-family: Gothic A1;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_cb610b8d-581b-4b47-9822-c82da610c4d0 h2 {
	color: rgb(255, 144, 0);
	font-family: Gothic A1;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_cb610b8d-581b-4b47-9822-c82da610c4d0 h3 {
	color: rgba(0, 0, 0, 0.97);
	font-family: Gothic A1;
	font-size: 25px;
	margin: 0 0 25px 0;
}

#cmp_cb610b8d-581b-4b47-9822-c82da610c4d0 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 23px;
	margin: 0 0 25px 0;
}

#cmp_cb610b8d-581b-4b47-9822-c82da610c4d0 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_cb610b8d-581b-4b47-9822-c82da610c4d0 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_cb610b8d-581b-4b47-9822-c82da610c4d0 .btn {
	background-color: rgb(255, 144, 0);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 16px;
}

#cmp_cb610b8d-581b-4b47-9822-c82da610c4d0 .btn:hover {
	background-color: rgb(189, 16, 224);
	color: #FFFFFF;
}

#cmp_cb610b8d-581b-4b47-9822-c82da610c4d0 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 23px;
}

#cmp_cb610b8d-581b-4b47-9822-c82da610c4d0 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 23px;
}

/*
 * components/previous_boxes/cmp_d51d5ded-71b8-4778-9569-0637c3c5e770/component.css
 */
#cmp_d51d5ded-71b8-4778-9569-0637c3c5e770 img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_e3050d3e-0fd5-49df-bd47-5dde5a9d7577/component.css
 */
#cmp_e3050d3e-0fd5-49df-bd47-5dde5a9d7577 img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_e4587d43-a544-470d-a039-2fb878d8990f/component.css
 */
#cmp_e4587d43-a544-470d-a039-2fb878d8990f img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_e4768b56-4743-4eae-b6cf-703519798cac/component.css
 */
#cmp_e4768b56-4743-4eae-b6cf-703519798cac img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_f0eef998-61c6-4689-a143-da3aeb3e65cc/component.css
 */
#cmp_f0eef998-61c6-4689-a143-da3aeb3e65cc img {
	max-width: 100%;
}

/*
 * components/previous_boxes/cmp_feadcd9d-9cb8-42c1-b4f9-ef8f1886b788/component.css
 */
#cmp_feadcd9d-9cb8-42c1-b4f9-ef8f1886b788 img {
	max-width: 100%;
}

/*
 * components/shop/listing/cmp_41d8bdeb-104c-4020-9313-d8dc723381e0/component.css
 */
#cmp_41d8bdeb-104c-4020-9313-d8dc723381e0 {
	background-color: #FFFFFF;
}

#cmp_41d8bdeb-104c-4020-9313-d8dc723381e0 h1 {
	color: rgba(0, 0, 0, 0.97);
	font-family: Gothic A1;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_41d8bdeb-104c-4020-9313-d8dc723381e0 h2 {
	color: rgb(255, 144, 0);
	font-family: Gothic A1;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_41d8bdeb-104c-4020-9313-d8dc723381e0 h3 {
	color: rgba(0, 0, 0, 0.97);
	font-family: Gothic A1;
	font-size: 25px;
	margin: 0 0 25px 0;
}

#cmp_41d8bdeb-104c-4020-9313-d8dc723381e0 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 23px;
	margin: 0 0 25px 0;
}

#cmp_41d8bdeb-104c-4020-9313-d8dc723381e0 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_41d8bdeb-104c-4020-9313-d8dc723381e0 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_41d8bdeb-104c-4020-9313-d8dc723381e0 .btn {
	background-color: rgb(255, 144, 0);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 16px;
}

#cmp_41d8bdeb-104c-4020-9313-d8dc723381e0 .btn:hover {
	background-color: rgb(189, 16, 224);
	color: #FFFFFF;
}

#cmp_41d8bdeb-104c-4020-9313-d8dc723381e0 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 23px;
}

#cmp_41d8bdeb-104c-4020-9313-d8dc723381e0 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 23px;
}

/*
 * components/shop/listing/cmp_5b05e428-a97f-428e-85d7-190f035679e1/component.css
 */
#cmp_5b05e428-a97f-428e-85d7-190f035679e1 {
	background-color: #FFFFFF;
}

#cmp_5b05e428-a97f-428e-85d7-190f035679e1 h1 {
	color: rgba(0, 0, 0, 0.97);
	font-family: Gothic A1;
	font-size: 45px;
	margin: 0 0 25px 0;
}

#cmp_5b05e428-a97f-428e-85d7-190f035679e1 h2 {
	color: rgb(255, 144, 0);
	font-family: Gothic A1;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_5b05e428-a97f-428e-85d7-190f035679e1 h3 {
	color: rgba(0, 0, 0, 0.97);
	font-family: Gothic A1;
	font-size: 25px;
	margin: 0 0 25px 0;
}

#cmp_5b05e428-a97f-428e-85d7-190f035679e1 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 23px;
	margin: 0 0 25px 0;
}

#cmp_5b05e428-a97f-428e-85d7-190f035679e1  {
	padding-bottom: 20px;
}
/*
 * components/shop/listing/cmp_67c14189-be9d-4450-9b3a-a2656d699091/component.css
 */
.shop-listing {
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;

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

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

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

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

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

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

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

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

	margin: 20px 0;
}

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

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

.product_page.active a {
	color: black;
}

/*
 * components/shop/listing/cmp_9ccff4da-217e-4b78-bc84-279f21100df6/component.css
 */
#cmp_9ccff4da-217e-4b78-bc84-279f21100df6 {
	background-color: #FFFFFF;
}

#cmp_9ccff4da-217e-4b78-bc84-279f21100df6 h1 {
	color: rgba(0, 0, 0, 0.97);
	font-family: Gothic A1;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_9ccff4da-217e-4b78-bc84-279f21100df6 h2 {
	color: rgb(255, 144, 0);
	font-family: Gothic A1;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_9ccff4da-217e-4b78-bc84-279f21100df6 h3 {
	color: rgba(0, 0, 0, 0.97);
	font-family: Gothic A1;
	font-size: 25px;
	margin: 0 0 25px 0;
}

#cmp_9ccff4da-217e-4b78-bc84-279f21100df6 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 23px;
	margin: 0 0 25px 0;
}

#cmp_9ccff4da-217e-4b78-bc84-279f21100df6 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 23px;
}

#cmp_9ccff4da-217e-4b78-bc84-279f21100df6 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 23px;
}

/*
 * components/shop/listing/cmp_a183a76d-709c-49bb-b8c4-6498f8141ea2/component.css
 */
#cmp_a183a76d-709c-49bb-b8c4-6498f8141ea2 {
    padding: 20px 0;

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

#cmp_a183a76d-709c-49bb-b8c4-6498f8141ea2 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_b99ebb23-fe91-4293-81a5-18a873076a51/component.css
 */
#cmp_b99ebb23-fe91-4293-81a5-18a873076a51 {
    border-bottom: 1px solid #E1E1E1;
    margin-bottom: 35px;
	padding: 20px 0;

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

#cmp_b99ebb23-fe91-4293-81a5-18a873076a51 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/product/cmp_289171ff-988b-4e09-9abc-1b735e95a9aa/component.css
 */
#cmp_289171ff-988b-4e09-9abc-1b735e95a9aa .shop-product__name {
	margin: 0 0 10px 0;
}

#cmp_289171ff-988b-4e09-9abc-1b735e95a9aa .shop-product__price {
	margin: 0 0 20px 0;
}

#cmp_289171ff-988b-4e09-9abc-1b735e95a9aa .shop-product select {
	width: auto;
}

#cmp_289171ff-988b-4e09-9abc-1b735e95a9aa .shop-product__add-to-cart {
	margin: 0 0 20px 0;
}

#cmp_289171ff-988b-4e09-9abc-1b735e95a9aa .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin: 0 0 40px 0;
}

#cmp_289171ff-988b-4e09-9abc-1b735e95a9aa .shop-product__review-share-desktop .col-xs-6 {
	padding: 10px 0 0 0;
}

#cmp_289171ff-988b-4e09-9abc-1b735e95a9aa .shop-product__review-share-desktop .col-xs-6 + .col-xs-6 {
	border-left: 1px solid #E1E1E1;
}

#cmp_289171ff-988b-4e09-9abc-1b735e95a9aa  {
	padding-top: 0;
}
/*
 * components/shop/product/cmp_65052d10-42f2-46c9-b022-abe8fe62998a/component.css
 */
#cmp_65052d10-42f2-46c9-b022-abe8fe62998a.shop-product-header {
	padding: 50px 0 15px 0;
}

/*
 * components/sold_out/cmp_1acef989-d236-4f22-af45-779b5eca8b39/component.css
 */
#cmp_1acef989-d236-4f22-af45-779b5eca8b39 img {
	max-width: 100%;
}

/*
 * components/sold_out/cmp_3ee32225-b680-4289-90d2-1c8577304ea1/component.css
 */
#cmp_3ee32225-b680-4289-90d2-1c8577304ea1 {
	background-color: #FFFFFF;
}

#cmp_3ee32225-b680-4289-90d2-1c8577304ea1 h1 {
	color: rgba(0, 0, 0, 0.97);
	font-family: Gothic A1;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_3ee32225-b680-4289-90d2-1c8577304ea1 h2 {
	color: rgb(255, 144, 0);
	font-family: Gothic A1;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_3ee32225-b680-4289-90d2-1c8577304ea1 h3 {
	color: rgba(0, 0, 0, 0.97);
	font-family: Gothic A1;
	font-size: 25px;
	margin: 0 0 25px 0;
}

#cmp_3ee32225-b680-4289-90d2-1c8577304ea1 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 23px;
	margin: 0 0 25px 0;
}

#cmp_3ee32225-b680-4289-90d2-1c8577304ea1 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_3ee32225-b680-4289-90d2-1c8577304ea1 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_3ee32225-b680-4289-90d2-1c8577304ea1 .btn {
	background-color: rgb(255, 144, 0);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 16px;
}

#cmp_3ee32225-b680-4289-90d2-1c8577304ea1 .btn:hover {
	background-color: rgb(189, 16, 224);
	color: #FFFFFF;
}

#cmp_3ee32225-b680-4289-90d2-1c8577304ea1  {
	padding-top: 0;
}
/*
 * components/subscribe/cmp_2f27982c-20cd-4c9c-9a01-2699153aae46/component.css
 */
#cmp_2f27982c-20cd-4c9c-9a01-2699153aae46 {
	background-color: #FFFFFF;
}

#cmp_2f27982c-20cd-4c9c-9a01-2699153aae46 h1 {
	color: rgba(0, 0, 0, 0.97);
	font-family: Gothic A1;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_2f27982c-20cd-4c9c-9a01-2699153aae46 h2 {
	color: rgb(255, 144, 0);
	font-family: Gothic A1;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_2f27982c-20cd-4c9c-9a01-2699153aae46 h3 {
	color: rgba(0, 0, 0, 0.97);
	font-family: Gothic A1;
	font-size: 25px;
	margin: 0 0 25px 0;
}

#cmp_2f27982c-20cd-4c9c-9a01-2699153aae46 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 23px;
	margin: 0 0 25px 0;
}

#cmp_2f27982c-20cd-4c9c-9a01-2699153aae46 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 23px;
}

#cmp_2f27982c-20cd-4c9c-9a01-2699153aae46 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 23px;
}

/*
 * components/subscribe/cmp_67c6b645-35b4-4533-a26f-beec126ef7dc/component.css
 */

/*
 * components/subscribe/cmp_7482b1bb-3393-4df5-94bf-2cefeb1319dc/component.css
 */
#cmp_7482b1bb-3393-4df5-94bf-2cefeb1319dc {
	background-color: #FFFFFF;
}

#cmp_7482b1bb-3393-4df5-94bf-2cefeb1319dc h1 {
	color: rgba(0, 0, 0, 0.97);
	font-family: Gothic A1;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_7482b1bb-3393-4df5-94bf-2cefeb1319dc h2 {
	color: rgb(255, 144, 0);
	font-family: Gothic A1;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_7482b1bb-3393-4df5-94bf-2cefeb1319dc h3 {
	color: rgba(0, 0, 0, 0.97);
	font-family: Gothic A1;
	font-size: 25px;
	margin: 0 0 25px 0;
}

#cmp_7482b1bb-3393-4df5-94bf-2cefeb1319dc p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 23px;
	margin: 0 0 25px 0;
}

#cmp_7482b1bb-3393-4df5-94bf-2cefeb1319dc  {
	padding-bottom: 0;
}
/*
 * 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: 16px;

	color: #FFFFFF;
	background-color: rgb(255, 144, 0);
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-btn-cart:hover {
	color: #FFFFFF;
	background-color: rgb(189, 16, 224);
}

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

	color: #FFFFFF;
	background-color: rgb(255, 144, 0);
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-continue-btn:hover {
	color: #FFFFFF;
	background-color: rgb(189, 16, 224);
}

@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_5365b8bb-ae7e-4da4-a33e-17c39d80c6c0/component.css
 */
#cmp_5365b8bb-ae7e-4da4-a33e-17c39d80c6c0 {
	padding: 50px 0 15px 0;
}

/*
 * components/subscribe_flow/survey_step/cmp_efe12ae6-9841-414e-ac8c-3c5631d9c252/component.css
 */
.survey:first-of-type {
    padding: 0 0 50px 0;
}
#cmp_efe12ae6-9841-414e-ac8c-3c5631d9c252  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/terms_step/cmp_28b99401-b9ab-4cdf-b240-85eab1db8fb8/component.css
 */

/*
 * components/subscribe_flow/terms_step/cmp_adc4ec49-d40a-42d9-a0bc-c2302ca81092/component.css
 */
#cmp_adc4ec49-d40a-42d9-a0bc-c2302ca81092 {
	padding: 50px 0 15px 0;
}

/*
 * components/subscribe_flow/variant_step/cmp_767c0645-6979-4318-9003-acf11ca54731/component.css
 */

/*
 * components/subscribe_flow/variant_step/cmp_a89e9f02-239b-44c0-b0c4-0ae04cd02a24/component.css
 */
#cmp_a89e9f02-239b-44c0-b0c4-0ae04cd02a24 {
	padding: 50px 0 15px 0;
}

/*
 * components/view-cart/cmp_7c4bcaae-b00f-4232-b209-bba8ffb13086/component.css
 */
#cmp_7c4bcaae-b00f-4232-b209-bba8ffb13086 {
	padding: 15px 15px 100px 15px;
}

#cmp_7c4bcaae-b00f-4232-b209-bba8ffb13086 .cart-thead {
	border-bottom: 1px solid #E1E1E1;
	padding: 10px 0;
}

#cmp_7c4bcaae-b00f-4232-b209-bba8ffb13086 .cart-thead h3 {
	text-transform: uppercase;
}

#cmp_7c4bcaae-b00f-4232-b209-bba8ffb13086 .cart-item {
	border: 1px solid #E1E1E1;
	padding: 25px 0;
	position: relative;
}

#cmp_7c4bcaae-b00f-4232-b209-bba8ffb13086 .product-main {
	margin: 0 0 15px 0;
}

#cmp_7c4bcaae-b00f-4232-b209-bba8ffb13086 .product-label p {
	margin: 0;
}

#cmp_7c4bcaae-b00f-4232-b209-bba8ffb13086 .product-label .info {
	color: rgb(255, 144, 0);
	text-align: right;
	text-transform: uppercase;
}

#cmp_7c4bcaae-b00f-4232-b209-bba8ffb13086 .product-label .meta {
	color: rgba(0, 0, 0, 0.97);
	font-size: 25px;
}

#cmp_7c4bcaae-b00f-4232-b209-bba8ffb13086 .product-rem-btn {
	position: absolute;
	right: 1%;
	top: 1%;
}

#cmp_7c4bcaae-b00f-4232-b209-bba8ffb13086 figure {
	margin: 0 0 15px 0;
}

#cmp_7c4bcaae-b00f-4232-b209-bba8ffb13086 .cart-subtotal {
	margin: 50px 0 0 0;
}

#cmp_7c4bcaae-b00f-4232-b209-bba8ffb13086 .cart-subtotal h2 {
	margin: 0 0 15px 0;
}

#cmp_7c4bcaae-b00f-4232-b209-bba8ffb13086 .cart-subtotal h3 {
	margin: 0 0 25px 0;
	text-transform: uppercase;
}

#cmp_7c4bcaae-b00f-4232-b209-bba8ffb13086 .cart-subtotal p {
	margin: 0 0 25px 0;
}

@media (min-width: 768px) {
	#cmp_7c4bcaae-b00f-4232-b209-bba8ffb13086 .cart-item {
		border-width: 0 0 1px 0;
	}
	#cmp_7c4bcaae-b00f-4232-b209-bba8ffb13086 .product-rem-btn {
		top: 40%;
	}
	#cmp_7c4bcaae-b00f-4232-b209-bba8ffb13086 figure {
		margin: 0;
	}
}

/*
 * components/view-cart/cmp_c4efb8f5-c8bf-41ae-a97e-973335f4c6cc/component.css
 */
#cmp_c4efb8f5-c8bf-41ae-a97e-973335f4c6cc {
	background-color: #FFFFFF;
}

#cmp_c4efb8f5-c8bf-41ae-a97e-973335f4c6cc h1 {
	color: rgb(74, 74, 74);
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 25px 0;
}

#cmp_c4efb8f5-c8bf-41ae-a97e-973335f4c6cc h2 {
	color: rgb(255, 144, 0);
	font-family: Gothic A1;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_c4efb8f5-c8bf-41ae-a97e-973335f4c6cc h3 {
	color: rgba(0, 0, 0, 0.97);
	font-family: Gothic A1;
	font-size: 25px;
	margin: 0 0 25px 0;
}

#cmp_c4efb8f5-c8bf-41ae-a97e-973335f4c6cc p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 23px;
	margin: 0 0 25px 0;
}