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

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

h1 {
	color: rgb(168, 40, 40);
	font-family: Lato;
	font-size: 24px;
	letter-spacing: 1px;
	line-height: 1;
}

h2 {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 24px;
}

h3 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 16px;
}

p {
	line-height: 1.5em;
}

a,
.btn-link {
	color: rgb(168, 40, 40);
}

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

/* 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(168, 40, 40);
}

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

.panel-body {
	padding: 15px;
}

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

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

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

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

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

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

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

.btn-small:hover,
.btn-small:focus,
.btn-small:active,
.btn-small:active:focus {
	background-color: rgb(168, 40, 40);
	border-color: rgb(168, 40, 40);
	color: rgb(255, 255, 255) !important;
}

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

.btn-primary {
	background-color: rgb(168, 40, 40);
	color: rgb(255, 255, 255);
	font-family: Lato;
	font-size: 13px;
	letter-spacing: 0.167em;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus {
	background-color: rgb(40, 166, 168);
	color: #FFFFFF;
}

.btn-secondary {
	background-color: rgb(168, 40, 40);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
	letter-spacing: 0.167em;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:active:focus {
	background-color: rgb(40, 166, 168);
	color: #FFFFFF;
}

.btn-empty {
	background-color: transparent;
	border: 1px solid rgb(168, 40, 40);
	color: rgb(168, 40, 40);
}

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

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

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

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

	margin: 20px 0;
}

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

	padding: .9375rem 0;
}

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

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

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

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

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

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

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

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

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

/* Orders List
------------------------------*/
.orders-list {
	width: 100%;
	margin: 25px 0;
}
.orders-list h1 {
	text-align: center;
	color: rgb(168, 40, 40);
}
.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(168, 40, 40);
	border: none;
	border-radius: 25px;
	color: rgb(255, 255, 255);
	font-family: Lato;
	font-size: 13px;
	letter-spacing: 0.167em;
	padding: 1.2em 5em;
}

.checkout_content #checkout_button:hover,
.checkout_content #checkout_button:focus,
.checkout_content #checkout_button:active,
.checkout_content #checkout_button:active:focus {
	background-color: rgb(40, 166, 168);
	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(168, 40, 40);
}

.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(168, 40, 40);
	color: rgb(168, 40, 40);
	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(40, 166, 168);
	border-color: rgb(40, 166, 168);
	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/camping_gift_guide_2019/cmp_9cd474c3-baa3-4fce-991b-33f6db7e95d4/component.css
 */
#cmp_9cd474c3-baa3-4fce-991b-33f6db7e95d4 {
	background-color: #FFFFFF;
}

#cmp_9cd474c3-baa3-4fce-991b-33f6db7e95d4 h1 {
	color: rgb(168, 40, 40);
	font-family: Lato;
	font-size: 36px;
	margin: 0 0 25px 0;
}

#cmp_9cd474c3-baa3-4fce-991b-33f6db7e95d4 h2 {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 24px;
	margin: 0 0 25px 0;
}

#cmp_9cd474c3-baa3-4fce-991b-33f6db7e95d4 h3 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_9cd474c3-baa3-4fce-991b-33f6db7e95d4 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 18px;
	margin: 0 0 25px 0;
}

#cmp_9cd474c3-baa3-4fce-991b-33f6db7e95d4 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 18px;
}

#cmp_9cd474c3-baa3-4fce-991b-33f6db7e95d4 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 18px;
}

/*
 * components/camping_gift_guide_2019/cmp_c0c17f54-3a43-4a88-86d2-465d215098ec/component.css
 */
#cmp_c0c17f54-3a43-4a88-86d2-465d215098ec {
	padding: 0;
}

#cmp_c0c17f54-3a43-4a88-86d2-465d215098ec .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_c0c17f54-3a43-4a88-86d2-465d215098ec .hero-content h1 {
	color: rgb(168, 40, 40);
	font-family: Josefin Sans;
	font-size: 24px;
}

#cmp_c0c17f54-3a43-4a88-86d2-465d215098ec .hero-content h2 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 24px;
}

#cmp_c0c17f54-3a43-4a88-86d2-465d215098ec .hero-content h3 {
	color: #FFFFFF;
	font-family: Montserrat;
	font-size: 16px;
}

#cmp_c0c17f54-3a43-4a88-86d2-465d215098ec .hero-content p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 16px;
}

#cmp_c0c17f54-3a43-4a88-86d2-465d215098ec .hero-content .btn {
	background-color: rgb(168, 40, 40);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_c0c17f54-3a43-4a88-86d2-465d215098ec .hero-content .btn:hover {
	background-color: rgb(40, 166, 168);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_c0c17f54-3a43-4a88-86d2-465d215098ec .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_c0c17f54-3a43-4a88-86d2-465d215098ec .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_c0c17f54-3a43-4a88-86d2-465d215098ec .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_c0c17f54-3a43-4a88-86d2-465d215098ec .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_c0c17f54-3a43-4a88-86d2-465d215098ec .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_c0c17f54-3a43-4a88-86d2-465d215098ec .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_c0c17f54-3a43-4a88-86d2-465d215098ec .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/camping_gift_guide_2019/cmp_c5075d6f-33ae-4b6a-a239-4618117e4679/component.css
 */
#cmp_c5075d6f-33ae-4b6a-a239-4618117e4679 {
	padding: 0;
}

#cmp_c5075d6f-33ae-4b6a-a239-4618117e4679 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_c5075d6f-33ae-4b6a-a239-4618117e4679 .hero-content h1 {
	color: rgb(168, 40, 40);
	font-family: Josefin Sans;
	font-size: 24px;
}

#cmp_c5075d6f-33ae-4b6a-a239-4618117e4679 .hero-content h2 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 24px;
}

#cmp_c5075d6f-33ae-4b6a-a239-4618117e4679 .hero-content h3 {
	color: #FFFFFF;
	font-family: Montserrat;
	font-size: 16px;
}

#cmp_c5075d6f-33ae-4b6a-a239-4618117e4679 .hero-content p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 16px;
}

#cmp_c5075d6f-33ae-4b6a-a239-4618117e4679 .hero-content .btn {
	background-color: rgb(168, 40, 40);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_c5075d6f-33ae-4b6a-a239-4618117e4679 .hero-content .btn:hover {
	background-color: rgb(40, 166, 168);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_c5075d6f-33ae-4b6a-a239-4618117e4679 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_c5075d6f-33ae-4b6a-a239-4618117e4679 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_c5075d6f-33ae-4b6a-a239-4618117e4679 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_c5075d6f-33ae-4b6a-a239-4618117e4679 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_c5075d6f-33ae-4b6a-a239-4618117e4679 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_c5075d6f-33ae-4b6a-a239-4618117e4679 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_c5075d6f-33ae-4b6a-a239-4618117e4679 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/camping_gift_guide_2019/cmp_d595472f-4b16-40f6-91ca-79e5bff53fe6/component.css
 */
#cmp_d595472f-4b16-40f6-91ca-79e5bff53fe6 {
	padding: 0;
}

#cmp_d595472f-4b16-40f6-91ca-79e5bff53fe6 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_d595472f-4b16-40f6-91ca-79e5bff53fe6 .hero-content h1 {
	color: rgb(168, 40, 40);
	font-family: Josefin Sans;
	font-size: 24px;
}

#cmp_d595472f-4b16-40f6-91ca-79e5bff53fe6 .hero-content h2 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 24px;
}

#cmp_d595472f-4b16-40f6-91ca-79e5bff53fe6 .hero-content h3 {
	color: #FFFFFF;
	font-family: Montserrat;
	font-size: 16px;
}

#cmp_d595472f-4b16-40f6-91ca-79e5bff53fe6 .hero-content p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 16px;
}

#cmp_d595472f-4b16-40f6-91ca-79e5bff53fe6 .hero-content .btn {
	background-color: rgb(168, 40, 40);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_d595472f-4b16-40f6-91ca-79e5bff53fe6 .hero-content .btn:hover {
	background-color: rgb(40, 166, 168);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_d595472f-4b16-40f6-91ca-79e5bff53fe6 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_d595472f-4b16-40f6-91ca-79e5bff53fe6 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_d595472f-4b16-40f6-91ca-79e5bff53fe6 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_d595472f-4b16-40f6-91ca-79e5bff53fe6 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_d595472f-4b16-40f6-91ca-79e5bff53fe6 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_d595472f-4b16-40f6-91ca-79e5bff53fe6 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_d595472f-4b16-40f6-91ca-79e5bff53fe6 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/camping_gift_guide_2019/cmp_e8d659a5-2a6e-43fb-8d63-57cc7c212fcc/component.css
 */
#cmp_e8d659a5-2a6e-43fb-8d63-57cc7c212fcc {
	padding: 0;
}

#cmp_e8d659a5-2a6e-43fb-8d63-57cc7c212fcc .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_e8d659a5-2a6e-43fb-8d63-57cc7c212fcc .hero-content h1 {
	color: rgb(168, 40, 40);
	font-family: Josefin Sans;
	font-size: 24px;
}

#cmp_e8d659a5-2a6e-43fb-8d63-57cc7c212fcc .hero-content h2 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 24px;
}

#cmp_e8d659a5-2a6e-43fb-8d63-57cc7c212fcc .hero-content h3 {
	color: #FFFFFF;
	font-family: Montserrat;
	font-size: 16px;
}

#cmp_e8d659a5-2a6e-43fb-8d63-57cc7c212fcc .hero-content p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 16px;
}

#cmp_e8d659a5-2a6e-43fb-8d63-57cc7c212fcc .hero-content .btn {
	background-color: rgb(168, 40, 40);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_e8d659a5-2a6e-43fb-8d63-57cc7c212fcc .hero-content .btn:hover {
	background-color: rgb(40, 166, 168);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_e8d659a5-2a6e-43fb-8d63-57cc7c212fcc .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_e8d659a5-2a6e-43fb-8d63-57cc7c212fcc .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_e8d659a5-2a6e-43fb-8d63-57cc7c212fcc .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_e8d659a5-2a6e-43fb-8d63-57cc7c212fcc .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_e8d659a5-2a6e-43fb-8d63-57cc7c212fcc .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_e8d659a5-2a6e-43fb-8d63-57cc7c212fcc .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_e8d659a5-2a6e-43fb-8d63-57cc7c212fcc .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/camping_gift_guide_2019/cmp_ff0f4afe-62c9-46ce-91f8-dea53ef6eb7c/component.css
 */
#cmp_ff0f4afe-62c9-46ce-91f8-dea53ef6eb7c {
	padding: 0;
}

#cmp_ff0f4afe-62c9-46ce-91f8-dea53ef6eb7c .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_ff0f4afe-62c9-46ce-91f8-dea53ef6eb7c .hero-content h1 {
	color: rgb(168, 40, 40);
	font-family: Josefin Sans;
	font-size: 24px;
}

#cmp_ff0f4afe-62c9-46ce-91f8-dea53ef6eb7c .hero-content h2 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 24px;
}

#cmp_ff0f4afe-62c9-46ce-91f8-dea53ef6eb7c .hero-content h3 {
	color: #FFFFFF;
	font-family: Montserrat;
	font-size: 16px;
}

#cmp_ff0f4afe-62c9-46ce-91f8-dea53ef6eb7c .hero-content p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 16px;
}

#cmp_ff0f4afe-62c9-46ce-91f8-dea53ef6eb7c .hero-content .btn {
	background-color: rgb(168, 40, 40);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_ff0f4afe-62c9-46ce-91f8-dea53ef6eb7c .hero-content .btn:hover {
	background-color: rgb(40, 166, 168);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_ff0f4afe-62c9-46ce-91f8-dea53ef6eb7c .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_ff0f4afe-62c9-46ce-91f8-dea53ef6eb7c .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_ff0f4afe-62c9-46ce-91f8-dea53ef6eb7c .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_ff0f4afe-62c9-46ce-91f8-dea53ef6eb7c .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_ff0f4afe-62c9-46ce-91f8-dea53ef6eb7c .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_ff0f4afe-62c9-46ce-91f8-dea53ef6eb7c .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_ff0f4afe-62c9-46ce-91f8-dea53ef6eb7c .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/checkout/cmp_5452a368-c40a-456f-92e8-913ecf438e96/component.css
 */
#cmp_5452a368-c40a-456f-92e8-913ecf438e96 .checkout_content {
  overflow: auto;
}

#cmp_5452a368-c40a-456f-92e8-913ecf438e96 .checkout_content section {
  border-color: #F5F5F5;
}

#cmp_5452a368-c40a-456f-92e8-913ecf438e96 .cart_listing table {
  border-color: #F5F5F5;
}

#cmp_5452a368-c40a-456f-92e8-913ecf438e96  {
	padding-top: 0;
}
/*
 * components/customer/account/cmp_26bf48aa-502d-42e9-be9d-0311e4bcb056/component.css
 */

/*
 * components/customer/edit/cmp_c2f1b655-f051-462f-8748-14a04fae5e18/component.css
 */

/*
 * components/customer/forgot_password/cmp_6f027517-5875-4be8-b630-43ccba8972a8/component.css
 */
#cmp_6f027517-5875-4be8-b630-43ccba8972a8 {
    padding:  0 0 120px 0;
}
/*
 * components/customer/forgot_password/cmp_e43dcd60-dee7-4ea2-b12a-e19d05393d56/component.css
 */
#cmp_e43dcd60-dee7-4ea2-b12a-e19d05393d56 {
	background-color: #FFFFFF;
}

#cmp_e43dcd60-dee7-4ea2-b12a-e19d05393d56 h1 {
	color: rgb(168, 40, 40);
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 25px 0;
}

#cmp_e43dcd60-dee7-4ea2-b12a-e19d05393d56 h2 {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 24px;
	margin: 0 0 25px 0;
}

#cmp_e43dcd60-dee7-4ea2-b12a-e19d05393d56 h3 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_e43dcd60-dee7-4ea2-b12a-e19d05393d56 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_e43dcd60-dee7-4ea2-b12a-e19d05393d56 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 16px;
}

#cmp_e43dcd60-dee7-4ea2-b12a-e19d05393d56 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/customer/login/cmp_fb36c0dd-abca-492d-b8ec-9c7f8a4a3826/component.css
 */
#cmp_fb36c0dd-abca-492d-b8ec-9c7f8a4a3826 {
	background-color: #FFFFFF;
}

#cmp_fb36c0dd-abca-492d-b8ec-9c7f8a4a3826 h1 {
	color: rgb(168, 40, 40);
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 25px 0;
}

#cmp_fb36c0dd-abca-492d-b8ec-9c7f8a4a3826 h2 {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 24px;
	margin: 0 0 25px 0;
}

#cmp_fb36c0dd-abca-492d-b8ec-9c7f8a4a3826 h3 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_fb36c0dd-abca-492d-b8ec-9c7f8a4a3826 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_fb36c0dd-abca-492d-b8ec-9c7f8a4a3826 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 16px;
}

#cmp_fb36c0dd-abca-492d-b8ec-9c7f8a4a3826 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/customer/login/cmp_fd7854fc-480a-4867-b032-ef178c6d3bd3/component.css
 */
#cmp_fd7854fc-480a-4867-b032-ef178c6d3bd3 {
    padding:  0 0 120px 0;
}
/*
 * components/customer/order/cmp_c8f5bd83-bc0e-4515-8ef0-26708423d502/component.css
 */

/*
 * components/customer/orders/cmp_a2a31ded-2c09-4138-9413-3ee59fea949c/component.css
 */

/*
 * components/customer/password_reset/cmp_8e5d61be-d5ea-4e6e-9322-ff1bd113a535/component.css
 */
#cmp_8e5d61be-d5ea-4e6e-9322-ff1bd113a535 {
	background-color: #FFFFFF;
}

#cmp_8e5d61be-d5ea-4e6e-9322-ff1bd113a535 h1 {
	color: rgb(168, 40, 40);
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 25px 0;
}

#cmp_8e5d61be-d5ea-4e6e-9322-ff1bd113a535 h2 {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 24px;
	margin: 0 0 25px 0;
}

#cmp_8e5d61be-d5ea-4e6e-9322-ff1bd113a535 h3 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_8e5d61be-d5ea-4e6e-9322-ff1bd113a535 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_8e5d61be-d5ea-4e6e-9322-ff1bd113a535 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 16px;
}

#cmp_8e5d61be-d5ea-4e6e-9322-ff1bd113a535 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/customer/password_reset/cmp_af284aea-4230-4be8-b62d-c2a3135b82e2/component.css
 */
#cmp_af284aea-4230-4be8-b62d-c2a3135b82e2 {
    padding:  0 0 120px 0;
}
/*
 * components/customer/thank_you/cmp_4d579df9-7eb1-4721-aded-593231c63be2/component.css
 */

/*
 * components/global/cmp_01862c29-25f2-45b6-af1d-94f455701220/component.css
 */
#cmp_01862c29-25f2-45b6-af1d-94f455701220.footer {
	background-color: rgb(255, 255, 255);
	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_01862c29-25f2-45b6-af1d-94f455701220 .footer-social {
	padding: 15px 0;
	text-align: center;
}

#cmp_01862c29-25f2-45b6-af1d-94f455701220 .footer-social a {
	display: inline-block;
	padding: 0 5px;
}

#cmp_01862c29-25f2-45b6-af1d-94f455701220 .footer-social svg path {
	fill: rgb(40, 166, 168);
}

#cmp_01862c29-25f2-45b6-af1d-94f455701220 .footer-social a:hover svg path,
#cmp_01862c29-25f2-45b6-af1d-94f455701220 .footer-social a:focus svg path,
#cmp_01862c29-25f2-45b6-af1d-94f455701220 .footer-social a:active svg path {
	fill: rgb(155, 155, 155);
}

#cmp_01862c29-25f2-45b6-af1d-94f455701220.footer .toggler-container {
	padding: 15px 0;
	text-align: center;
}

#cmp_01862c29-25f2-45b6-af1d-94f455701220.footer .navbar-toggler {
	color: rgb(168, 40, 40);
	font-size: 13px;
	letter-spacing: 0.077em;
	text-transform: uppercase;
}

#cmp_01862c29-25f2-45b6-af1d-94f455701220 .footer-cc {
	border-top: 1px solid #e1e1e1;
	letter-spacing: 1px;
	text-align: center;
}

#cmp_01862c29-25f2-45b6-af1d-94f455701220 .footer-cc img {
	padding: 15px 0;
}

#cmp_01862c29-25f2-45b6-af1d-94f455701220 .footer-cc p,
#cmp_01862c29-25f2-45b6-af1d-94f455701220 .footer-tributes p {
	margin: 0;
	padding: 15px 0;
}

#cmp_01862c29-25f2-45b6-af1d-94f455701220 .footer-tributes p a {
	color: rgb(0, 0, 0);
	padding: 0;
}

#cmp_01862c29-25f2-45b6-af1d-94f455701220 .footer-tributes p a:hover,
#cmp_01862c29-25f2-45b6-af1d-94f455701220 .footer-tributes p a:focus,
#cmp_01862c29-25f2-45b6-af1d-94f455701220 .footer-tributes p a:active {
	color: rgb(0, 0, 0);
	text-decoration: none;
}

#cmp_01862c29-25f2-45b6-af1d-94f455701220 .footer-directory {
	text-align: center;
}

#cmp_01862c29-25f2-45b6-af1d-94f455701220 .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_01862c29-25f2-45b6-af1d-94f455701220 .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_01862c29-25f2-45b6-af1d-94f455701220 .footer-list .footer-link {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 13px;
	letter-spacing: 0.077em;
	text-transform: uppercase;
}

#cmp_01862c29-25f2-45b6-af1d-94f455701220 .footer-list .footer-link:hover,
#cmp_01862c29-25f2-45b6-af1d-94f455701220 .footer-list .footer-link:focus,
#cmp_01862c29-25f2-45b6-af1d-94f455701220 .footer-list .footer-link:active {
	color: rgb(40, 166, 168);
	text-decoration: none;
}

@media (max-width: 767px) {
	#cmp_01862c29-25f2-45b6-af1d-94f455701220 .col-sm-12,
	#cmp_01862c29-25f2-45b6-af1d-94f455701220 .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_01862c29-25f2-45b6-af1d-94f455701220.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_01862c29-25f2-45b6-af1d-94f455701220 .footer-directory {
		-webkit-order: 1;
		-moz-order: 1;
		-ms-order: 1;
		order: 1;

		text-align: left;
	}
	#cmp_01862c29-25f2-45b6-af1d-94f455701220 .footer-social {
		-webkit-order: 2;
		-moz-order: 2;
		-ms-order: 2;
		order: 2;

		padding: 0 15px;
		text-align: right;
	}
	#cmp_01862c29-25f2-45b6-af1d-94f455701220 .footer-cc {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}
	#cmp_01862c29-25f2-45b6-af1d-94f455701220 .footer-cc p {
		display: inline-block;
	}
}

@media (min-width: 992px) {
	#cmp_01862c29-25f2-45b6-af1d-94f455701220 .footer-cc {
		-webkit-order: 2;
		-moz-order: 2;
		-ms-order: 2;
		order: 2;

		border-top: none;
	}
	#cmp_01862c29-25f2-45b6-af1d-94f455701220 .footer-cc p {
		display: block;
	}
	#cmp_01862c29-25f2-45b6-af1d-94f455701220 .footer-social {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}
}

/*
 * components/global/cmp_593c6b96-cc6d-405e-a78c-98ea09dd9e59/component.css
 */
#cmp_593c6b96-cc6d-405e-a78c-98ea09dd9e59 {
	background-color: #FFFFFF;
}

#cmp_593c6b96-cc6d-405e-a78c-98ea09dd9e59 h1 {
	color: rgb(168, 40, 40);
	font-family: Lato;
	font-size: 24px;
	margin: 0 0 25px 0;
}

#cmp_593c6b96-cc6d-405e-a78c-98ea09dd9e59 h2 {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 24px;
	margin: 0 0 25px 0;
}

#cmp_593c6b96-cc6d-405e-a78c-98ea09dd9e59 h3 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_593c6b96-cc6d-405e-a78c-98ea09dd9e59 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_593c6b96-cc6d-405e-a78c-98ea09dd9e59 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_593c6b96-cc6d-405e-a78c-98ea09dd9e59 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_593c6b96-cc6d-405e-a78c-98ea09dd9e59 .btn {
	background-color: rgb(168, 40, 40);
	color: rgb(255, 255, 255);
	font-family: Lato;
	font-size: 13px;
}

#cmp_593c6b96-cc6d-405e-a78c-98ea09dd9e59 .btn:hover {
	background-color: rgb(40, 166, 168);
	color: #FFFFFF;
}

#cmp_593c6b96-cc6d-405e-a78c-98ea09dd9e59 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 16px;
}

#cmp_593c6b96-cc6d-405e-a78c-98ea09dd9e59 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 16px;
}

#cmp_593c6b96-cc6d-405e-a78c-98ea09dd9e59  {
	padding-top: 0;
}
/*
 * components/global/cmp_9e7a1d3b-6bf1-45f0-9fcb-1f1d84f34100/component.css
 */
#cmp_9e7a1d3b-6bf1-45f0-9fcb-1f1d84f34100.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_9e7a1d3b-6bf1-45f0-9fcb-1f1d84f34100.navbar a:hover,
#cmp_9e7a1d3b-6bf1-45f0-9fcb-1f1d84f34100.navbar a:focus,
#cmp_9e7a1d3b-6bf1-45f0-9fcb-1f1d84f34100.navbar a:active {
	color: rgb(208, 2, 27);
}

#cmp_9e7a1d3b-6bf1-45f0-9fcb-1f1d84f34100 .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(0, 0, 0);
	font-family: Montserrat;
	font-size: 26px;
	letter-spacing: 0.038em;
	margin: 0;
	max-width: 100%;
	padding: 15px;
	text-align: center;
	text-transform: uppercase;
}

#cmp_9e7a1d3b-6bf1-45f0-9fcb-1f1d84f34100 .navbar-brand img {
	max-width: 100%;
}

#cmp_9e7a1d3b-6bf1-45f0-9fcb-1f1d84f34100.navbar .navbar-toggler {
	background-color: rgb(168, 40, 40);
	border-radius: 0;
	color: rgb(255, 255, 255);
	font-size: 13px;
	letter-spacing: 0.077em;
	padding: 15px;
	text-transform: uppercase;
}

#cmp_9e7a1d3b-6bf1-45f0-9fcb-1f1d84f34100.navbar .navbar-toggler:hover,
#cmp_9e7a1d3b-6bf1-45f0-9fcb-1f1d84f34100.navbar .navbar-toggler:focus,
#cmp_9e7a1d3b-6bf1-45f0-9fcb-1f1d84f34100.navbar .navbar-toggler:active {
	background-color: rgb(40, 166, 168);
	color: #FFFFFF;
}

#cmp_9e7a1d3b-6bf1-45f0-9fcb-1f1d84f34100 .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_9e7a1d3b-6bf1-45f0-9fcb-1f1d84f34100 .navbar-nav li {
	padding: 10px 0;
}

#cmp_9e7a1d3b-6bf1-45f0-9fcb-1f1d84f34100 .navbar-nav .nav-link {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 14px;;
	padding: 8px 18px;
	text-align: center;
	text-transform: uppercase;
}

@media (min-width: 768px) {
	#cmp_9e7a1d3b-6bf1-45f0-9fcb-1f1d84f34100.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_9e7a1d3b-6bf1-45f0-9fcb-1f1d84f34100 .navbar-brand {
		padding: 0 0 15px 0;
	}
	#cmp_9e7a1d3b-6bf1-45f0-9fcb-1f1d84f34100 .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_9e7a1d3b-6bf1-45f0-9fcb-1f1d84f34100 .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_9e7a1d3b-6bf1-45f0-9fcb-1f1d84f34100 .navbar-nav li {
		padding: 0;
	}
}

/*
 * components/images/cmp_99d50f20-ade9-4ff6-b311-ece3289b26b5/component.css
 */
#cmp_99d50f20-ade9-4ff6-b311-ece3289b26b5 {
	background-color: #FFFFFF;
}

#cmp_99d50f20-ade9-4ff6-b311-ece3289b26b5 h1 {
	color: rgb(168, 40, 40);
	font-family: Lato;
	font-size: 24px;
	margin: 0 0 25px 0;
}

#cmp_99d50f20-ade9-4ff6-b311-ece3289b26b5 h2 {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 24px;
	margin: 0 0 25px 0;
}

#cmp_99d50f20-ade9-4ff6-b311-ece3289b26b5 h3 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_99d50f20-ade9-4ff6-b311-ece3289b26b5 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_99d50f20-ade9-4ff6-b311-ece3289b26b5 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_99d50f20-ade9-4ff6-b311-ece3289b26b5 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_99d50f20-ade9-4ff6-b311-ece3289b26b5 .btn {
	background-color: rgb(168, 40, 40);
	color: rgb(255, 255, 255);
	font-family: Lato;
	font-size: 13px;
}

#cmp_99d50f20-ade9-4ff6-b311-ece3289b26b5 .btn:hover {
	background-color: rgb(40, 166, 168);
	color: #FFFFFF;
}

#cmp_99d50f20-ade9-4ff6-b311-ece3289b26b5 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 16px;
}

#cmp_99d50f20-ade9-4ff6-b311-ece3289b26b5 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/images/cmp_df7760f5-e256-498b-b844-20dd2fa14a05/component.css
 */
#cmp_df7760f5-e256-498b-b844-20dd2fa14a05 {
	background-color: #FFFFFF;
}

#cmp_df7760f5-e256-498b-b844-20dd2fa14a05 h1 {
	color: rgb(168, 40, 40);
	font-family: Lato;
	font-size: 24px;
	margin: 0 0 25px 0;
}

#cmp_df7760f5-e256-498b-b844-20dd2fa14a05 h2 {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 24px;
	margin: 0 0 25px 0;
}

#cmp_df7760f5-e256-498b-b844-20dd2fa14a05 h3 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_df7760f5-e256-498b-b844-20dd2fa14a05 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_df7760f5-e256-498b-b844-20dd2fa14a05 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 16px;
}

#cmp_df7760f5-e256-498b-b844-20dd2fa14a05 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/images/cmp_faecc4df-f0c2-491c-b767-63d7f728325e/component.css
 */
#cmp_faecc4df-f0c2-491c-b767-63d7f728325e img {
	max-width: 100%;
}

/*
 * components/index/cmp_160aa150-d803-4e53-b587-42ea6dab30c0/component.css
 */
#cmp_160aa150-d803-4e53-b587-42ea6dab30c0 {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

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

#cmp_160aa150-d803-4e53-b587-42ea6dab30c0 .content {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	margin: 0 auto;
	padding: 25px;
}

#cmp_160aa150-d803-4e53-b587-42ea6dab30c0 .square-image {
	height: 225px;
	margin: 0 0 15px 0;
	width: 225px;
}

#cmp_160aa150-d803-4e53-b587-42ea6dab30c0 h1 {
	color: rgb(168, 40, 40);
	font-family: Lato;
	font-size: 24px;
}

#cmp_160aa150-d803-4e53-b587-42ea6dab30c0 h2 {
	color: rgb(168, 40, 40);
	font-family: Lato;
	font-size: 24px;
}

#cmp_160aa150-d803-4e53-b587-42ea6dab30c0 h3 {
	color: rgb(74, 74, 74);
	font-family: Lato;
	font-size: 16px;
}

#cmp_160aa150-d803-4e53-b587-42ea6dab30c0 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/index/cmp_1cf204ad-33cb-44a4-92c5-66c838b97115/component.css
 */
#cmp_1cf204ad-33cb-44a4-92c5-66c838b97115 {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	background-color: #FAFAFA;
}

#cmp_1cf204ad-33cb-44a4-92c5-66c838b97115 .content {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	margin: 0 auto;
	padding: 25px;
}

#cmp_1cf204ad-33cb-44a4-92c5-66c838b97115 .square-image {
	height: 225px;
	margin: 0 0 15px 0;
	width: 225px;
}

#cmp_1cf204ad-33cb-44a4-92c5-66c838b97115 h1 {
	color: rgb(168, 40, 40);
	font-family: Lato;
	font-size: 24px;
}

#cmp_1cf204ad-33cb-44a4-92c5-66c838b97115 h2 {
	color: rgb(168, 40, 40);
	font-family: Lato;
	font-size: 24px;
}

#cmp_1cf204ad-33cb-44a4-92c5-66c838b97115 h3 {
	color: rgb(168, 40, 40);
	font-family: Lato;
	font-size: 16px;
}

#cmp_1cf204ad-33cb-44a4-92c5-66c838b97115 p {
	color: rgb(0, 0, 0);
	font-family: Arimo;
	font-size: 16px;
}

/*
 * components/index/cmp_31b12e0c-cfc4-4d71-9684-48c0517d24c9/component.css
 */
#cmp_31b12e0c-cfc4-4d71-9684-48c0517d24c9 {
	background-color: rgb(250, 250, 250);
}

#cmp_31b12e0c-cfc4-4d71-9684-48c0517d24c9 .content {
	margin: 10px auto;
	max-width: 250px;
}

#cmp_31b12e0c-cfc4-4d71-9684-48c0517d24c9 .content .propositions-title {
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;

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

#cmp_31b12e0c-cfc4-4d71-9684-48c0517d24c9 .content .propositions-title h3 {
	margin: 0;
}

#cmp_31b12e0c-cfc4-4d71-9684-48c0517d24c9 .content .propositions-image {
	background-repeat: no-repeat;
	background-size: contain !important;
	height: 40px;
	margin: 15px;
	width: 40px;
}

#cmp_31b12e0c-cfc4-4d71-9684-48c0517d24c9 h1 {
	color: rgb(168, 40, 40);
	font-family: Lato;
	font-size: 24px;
}

#cmp_31b12e0c-cfc4-4d71-9684-48c0517d24c9 h2 {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 24px;
}

#cmp_31b12e0c-cfc4-4d71-9684-48c0517d24c9 h3 {
	color: rgb(0, 0, 0);
	font-family: Arimo;
	font-size: 16px;
}

#cmp_31b12e0c-cfc4-4d71-9684-48c0517d24c9 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/index/cmp_790993d1-0235-4ea6-97ea-d642f45397ee/component.css
 */
#cmp_790993d1-0235-4ea6-97ea-d642f45397ee {
	padding: 0;
}

#cmp_790993d1-0235-4ea6-97ea-d642f45397ee .hero-content {
	background-color: rgb(250, 250, 250);
	padding: 20px;
}

#cmp_790993d1-0235-4ea6-97ea-d642f45397ee .hero-content h1 {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 46px;
	margin: 0 0 15px 0;
}

#cmp_790993d1-0235-4ea6-97ea-d642f45397ee .hero-content h2 {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 24px;
	margin: 0 0 15px 0;
}

#cmp_790993d1-0235-4ea6-97ea-d642f45397ee .hero-content h3 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 15px 0;
}

#cmp_790993d1-0235-4ea6-97ea-d642f45397ee .hero-content p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 18px;
	margin: 0 0 15px 0;
}

#cmp_790993d1-0235-4ea6-97ea-d642f45397ee .hero-content .button-container {
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
}

#cmp_790993d1-0235-4ea6-97ea-d642f45397ee .hero-content .btn {
	margin: 3px;
	padding: 15px;
	width: 40%;
}

#cmp_790993d1-0235-4ea6-97ea-d642f45397ee .hero-content .btn-primary {
	background-color: rgb(208, 2, 27);
	color: rgb(255, 255, 255);
	font-family: Lato;
	font-size: 13px;
}

#cmp_790993d1-0235-4ea6-97ea-d642f45397ee .hero-content .btn-primary:hover {
	background-color: rgb(218, 227, 225);
	color: #FFFFFF;
}

#cmp_790993d1-0235-4ea6-97ea-d642f45397ee .hero-content .btn-secondary {
	background-color: rgb(208, 2, 27);
	color: rgb(255, 255, 255);
	font-family: Lato;
	font-size: 13px;
}

#cmp_790993d1-0235-4ea6-97ea-d642f45397ee .hero-content .btn-secondary:hover {
	background-color: rgb(218, 227, 225);
	color: #FFFFFF;
}

#cmp_790993d1-0235-4ea6-97ea-d642f45397ee p {
	margin: 0 0 25px 0;
}
/*
 * components/index/cmp_85ce8e30-1d8e-4b0c-b6ad-d70531c46d00/component.css
 */
#cmp_85ce8e30-1d8e-4b0c-b6ad-d70531c46d00 {
	padding: 0;
}

#cmp_85ce8e30-1d8e-4b0c-b6ad-d70531c46d00 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_85ce8e30-1d8e-4b0c-b6ad-d70531c46d00 .hero-content h1 {
	color: rgb(168, 40, 40);
	font-family: Lato;
	font-size: 45px;
}

#cmp_85ce8e30-1d8e-4b0c-b6ad-d70531c46d00 .hero-content h2 {
	color: rgb(168, 40, 40);
	font-family: Lato;
	font-size: 24px;
}

#cmp_85ce8e30-1d8e-4b0c-b6ad-d70531c46d00 .hero-content h3 {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 16px;
}

#cmp_85ce8e30-1d8e-4b0c-b6ad-d70531c46d00 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 16px;
}

#cmp_85ce8e30-1d8e-4b0c-b6ad-d70531c46d00 .hero-content .btn {
	background-color: rgb(168, 40, 40);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_85ce8e30-1d8e-4b0c-b6ad-d70531c46d00 .hero-content .btn:hover {
	background-color: rgb(155, 155, 155);
	color: #FFFFFF;
}


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

@media(min-width: 768px) {
	#cmp_85ce8e30-1d8e-4b0c-b6ad-d70531c46d00 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_85ce8e30-1d8e-4b0c-b6ad-d70531c46d00 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_85ce8e30-1d8e-4b0c-b6ad-d70531c46d00 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_85ce8e30-1d8e-4b0c-b6ad-d70531c46d00 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_85ce8e30-1d8e-4b0c-b6ad-d70531c46d00 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_85ce8e30-1d8e-4b0c-b6ad-d70531c46d00 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/index/cmp_df06454a-9a90-4156-80a9-cd792dc36744/component.css
 */
#cmp_df06454a-9a90-4156-80a9-cd792dc36744 img {
	max-width: 100%;
}

/*
 * components/shop/listing/cmp_2fd173d4-8ae0-4c82-ada7-4b1d45e02c55/component.css
 */
#cmp_2fd173d4-8ae0-4c82-ada7-4b1d45e02c55 {
    padding: 20px 0;

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

#cmp_2fd173d4-8ae0-4c82-ada7-4b1d45e02c55 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_6aa15a24-5bff-43e8-ae86-c2862feeea44/component.css
 */
#cmp_6aa15a24-5bff-43e8-ae86-c2862feeea44 {
    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_6aa15a24-5bff-43e8-ae86-c2862feeea44 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_90139c8a-80d5-4b17-a265-8074723439f5/component.css
 */
#cmp_90139c8a-80d5-4b17-a265-8074723439f5 {
	background-color: #FFFFFF;
}

#cmp_90139c8a-80d5-4b17-a265-8074723439f5 h1 {
	color: rgb(168, 40, 40);
	font-family: Lato;
	font-size: 24px;
	margin: 0 0 25px 0;
}

#cmp_90139c8a-80d5-4b17-a265-8074723439f5 h2 {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 24px;
	margin: 0 0 25px 0;
}

#cmp_90139c8a-80d5-4b17-a265-8074723439f5 h3 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_90139c8a-80d5-4b17-a265-8074723439f5 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_90139c8a-80d5-4b17-a265-8074723439f5 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 16px;
}

#cmp_90139c8a-80d5-4b17-a265-8074723439f5 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 16px;
}

#cmp_90139c8a-80d5-4b17-a265-8074723439f5  {
	padding-bottom: 20px;
}
/*
 * components/shop/listing/cmp_ba1a88cd-ec56-4977-aef4-1b7cafa8f0c0/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/product/cmp_a26868fe-6447-4dcf-a7f7-4d0d71bf511b/component.css
 */
#cmp_a26868fe-6447-4dcf-a7f7-4d0d71bf511b .shop-product__name {
	margin: 0 0 10px 0;
}

#cmp_a26868fe-6447-4dcf-a7f7-4d0d71bf511b .shop-product__price {
	margin: 0 0 20px 0;
}

#cmp_a26868fe-6447-4dcf-a7f7-4d0d71bf511b .shop-product select {
	width: auto;
}

#cmp_a26868fe-6447-4dcf-a7f7-4d0d71bf511b .shop-product__add-to-cart {
	margin: 0 0 20px 0;
}

#cmp_a26868fe-6447-4dcf-a7f7-4d0d71bf511b .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin: 0 0 40px 0;
}

#cmp_a26868fe-6447-4dcf-a7f7-4d0d71bf511b .shop-product__review-share-desktop .col-xs-6 {
	padding: 10px 0 0 0;
}

#cmp_a26868fe-6447-4dcf-a7f7-4d0d71bf511b .shop-product__review-share-desktop .col-xs-6 + .col-xs-6 {
	border-left: 1px solid #E1E1E1;
}

#cmp_a26868fe-6447-4dcf-a7f7-4d0d71bf511b  {
	padding-top: 0;
}
/*
 * components/shop/product/cmp_c4bfcbb9-14ac-411d-ac3f-535ac8a07eb6/component.css
 */
#cmp_c4bfcbb9-14ac-411d-ac3f-535ac8a07eb6.shop-product-header {
	padding: 50px 0 15px 0;
}

/*
 * components/sold_out/cmp_569b188d-ddad-4cb3-9cf5-d0cc9f05e81b/component.css
 */
#cmp_569b188d-ddad-4cb3-9cf5-d0cc9f05e81b img {
	max-width: 100%;
}

/*
 * components/sold_out/cmp_8524b635-abf2-4386-bc90-c995a9e60fe1/component.css
 */
#cmp_8524b635-abf2-4386-bc90-c995a9e60fe1 {
	background-color: #FFFFFF;
}

#cmp_8524b635-abf2-4386-bc90-c995a9e60fe1 h1 {
	color: rgb(168, 40, 40);
	font-family: Montserrat;
	font-size: 24px;
	margin: 0 0 25px 0;
}

#cmp_8524b635-abf2-4386-bc90-c995a9e60fe1 h2 {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 24px;
	margin: 0 0 25px 0;
}

#cmp_8524b635-abf2-4386-bc90-c995a9e60fe1 h3 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_8524b635-abf2-4386-bc90-c995a9e60fe1 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_8524b635-abf2-4386-bc90-c995a9e60fe1 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_8524b635-abf2-4386-bc90-c995a9e60fe1 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_8524b635-abf2-4386-bc90-c995a9e60fe1 .btn {
	background-color: rgb(168, 40, 40);
	color: rgb(255, 255, 255);
	font-family: Montserrat;
	font-size: 13px;
}

#cmp_8524b635-abf2-4386-bc90-c995a9e60fe1 .btn:hover {
	background-color: rgb(40, 166, 168);
	color: #FFFFFF;
}

#cmp_8524b635-abf2-4386-bc90-c995a9e60fe1 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 16px;
}

#cmp_8524b635-abf2-4386-bc90-c995a9e60fe1 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 16px;
}

#cmp_8524b635-abf2-4386-bc90-c995a9e60fe1  {
	padding-top: 0;
}
/*
 * components/subscribe/cmp_d1058632-5061-485d-88ef-f4bd64c1517d/component.css
 */

/*
 * components/subscribe/cmp_ea4ac1f5-57ab-43b8-bf39-6d9a4d6dc8aa/component.css
 */
#cmp_ea4ac1f5-57ab-43b8-bf39-6d9a4d6dc8aa {
	background-color: #FFFFFF;
}

#cmp_ea4ac1f5-57ab-43b8-bf39-6d9a4d6dc8aa h1 {
	color: rgb(168, 40, 40);
	font-family: Lato;
	font-size: 24px;
	margin: 0 0 25px 0;
}

#cmp_ea4ac1f5-57ab-43b8-bf39-6d9a4d6dc8aa h2 {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 24px;
	margin: 0 0 25px 0;
}

#cmp_ea4ac1f5-57ab-43b8-bf39-6d9a4d6dc8aa h3 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_ea4ac1f5-57ab-43b8-bf39-6d9a4d6dc8aa p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_ea4ac1f5-57ab-43b8-bf39-6d9a4d6dc8aa ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 16px;
}

#cmp_ea4ac1f5-57ab-43b8-bf39-6d9a4d6dc8aa ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 16px;
}

#cmp_ea4ac1f5-57ab-43b8-bf39-6d9a4d6dc8aa  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_5a0450ab-4d34-44ef-9489-a32587079461/component.css
 */
.survey:first-of-type {
    padding: 0 0 50px 0;
}
#cmp_5a0450ab-4d34-44ef-9489-a32587079461  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_7ce0d576-9b95-40c0-abbc-f1af57bf781e/component.css
 */
#cmp_7ce0d576-9b95-40c0-abbc-f1af57bf781e {
	padding: 50px 0 15px 0;
}

/*
 * components/subscribe_flow/terms_step/cmp_2e351cdf-3691-42ab-a566-5e47df5f79cc/component.css
 */

/*
 * components/subscribe_flow/terms_step/cmp_5604075e-9112-4c35-8bce-deda638710a0/component.css
 */
#cmp_5604075e-9112-4c35-8bce-deda638710a0 {
	padding: 50px 0 15px 0;
}

/*
 * components/subscribe_flow/variant_step/cmp_2ca1f8e3-5c93-4b34-8c72-db42a2608a12/component.css
 */

/*
 * components/subscribe_flow/variant_step/cmp_aa8ddcdd-3e2e-4ff8-b799-15ef46b87763/component.css
 */
#cmp_aa8ddcdd-3e2e-4ff8-b799-15ef46b87763 {
	padding: 50px 0 15px 0;
}

/*
 * components/view-cart/cmp_2769d5c0-a92a-45ed-aa5f-9ff8369023a5/component.css
 */
#cmp_2769d5c0-a92a-45ed-aa5f-9ff8369023a5 {
	background-color: #FFFFFF;
}

#cmp_2769d5c0-a92a-45ed-aa5f-9ff8369023a5 h1 {
	color: rgb(168, 40, 40);
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 25px 0;
}

#cmp_2769d5c0-a92a-45ed-aa5f-9ff8369023a5 h2 {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 24px;
	margin: 0 0 25px 0;
}

#cmp_2769d5c0-a92a-45ed-aa5f-9ff8369023a5 h3 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_2769d5c0-a92a-45ed-aa5f-9ff8369023a5 p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_2769d5c0-a92a-45ed-aa5f-9ff8369023a5 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 16px;
}

#cmp_2769d5c0-a92a-45ed-aa5f-9ff8369023a5 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/view-cart/cmp_edc3aff1-cccb-4a77-8978-221493bb2c41/component.css
 */
#cmp_edc3aff1-cccb-4a77-8978-221493bb2c41 {
	padding: 15px 15px 100px 15px;
}

#cmp_edc3aff1-cccb-4a77-8978-221493bb2c41 .cart-thead {
	border-bottom: 1px solid #E1E1E1;
	padding: 10px 0;
}

#cmp_edc3aff1-cccb-4a77-8978-221493bb2c41 .cart-thead h3 {
	text-transform: uppercase;
}

#cmp_edc3aff1-cccb-4a77-8978-221493bb2c41 .cart-item {
	border: 1px solid #E1E1E1;
	padding: 25px 0;
	position: relative;
}

#cmp_edc3aff1-cccb-4a77-8978-221493bb2c41 .product-main {
	margin: 0 0 15px 0;
}

#cmp_edc3aff1-cccb-4a77-8978-221493bb2c41 .product-label p {
	margin: 0;
}

#cmp_edc3aff1-cccb-4a77-8978-221493bb2c41 .product-label .info {
	color: rgb(0, 0, 0);
	text-align: right;
	text-transform: uppercase;
}

#cmp_edc3aff1-cccb-4a77-8978-221493bb2c41 .product-label .meta {
	color: rgb(0, 0, 0);
	font-size: 16px;
}

#cmp_edc3aff1-cccb-4a77-8978-221493bb2c41 .product-rem-btn {
	position: absolute;
	right: 1%;
	top: 1%;
}

#cmp_edc3aff1-cccb-4a77-8978-221493bb2c41 figure {
	margin: 0 0 15px 0;
}

#cmp_edc3aff1-cccb-4a77-8978-221493bb2c41 .cart-subtotal {
	margin: 50px 0 0 0;
}

#cmp_edc3aff1-cccb-4a77-8978-221493bb2c41 .cart-subtotal h2 {
	margin: 0 0 15px 0;
}

#cmp_edc3aff1-cccb-4a77-8978-221493bb2c41 .cart-subtotal h3 {
	margin: 0 0 25px 0;
	text-transform: uppercase;
}

#cmp_edc3aff1-cccb-4a77-8978-221493bb2c41 .cart-subtotal p {
	margin: 0 0 25px 0;
}

@media (min-width: 768px) {
	#cmp_edc3aff1-cccb-4a77-8978-221493bb2c41 .cart-item {
		border-width: 0 0 1px 0;
	}
	#cmp_edc3aff1-cccb-4a77-8978-221493bb2c41 .product-rem-btn {
		top: 40%;
	}
	#cmp_edc3aff1-cccb-4a77-8978-221493bb2c41 figure {
		margin: 0;
	}
}

/*
 * components/whats_inside/cmp_227d9b58-7a4c-4e5b-aa0c-97a6b3d9eb3b/component.css
 */
#cmp_227d9b58-7a4c-4e5b-aa0c-97a6b3d9eb3b {
	padding: 0;
}

#cmp_227d9b58-7a4c-4e5b-aa0c-97a6b3d9eb3b .hero-content {
	background-color: #FAFAFA;
	padding: 20px;
}

#cmp_227d9b58-7a4c-4e5b-aa0c-97a6b3d9eb3b .hero-content h1 {
	color: rgb(168, 40, 40);
	font-family: Adamina;
	font-size: 24px;
	margin: 0 0 15px 0;
}

#cmp_227d9b58-7a4c-4e5b-aa0c-97a6b3d9eb3b .hero-content h2 {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 24px;
	margin: 0 0 15px 0;
}

#cmp_227d9b58-7a4c-4e5b-aa0c-97a6b3d9eb3b .hero-content h3 {
	color: rgb(0, 0, 0);
	font-family: Adamina;
	font-size: 16px;
	margin: 0 0 15px 0;
}

#cmp_227d9b58-7a4c-4e5b-aa0c-97a6b3d9eb3b .hero-content p {
	color: #49494A;
	font-family: Adamina;
	font-size: 16px;
	margin: 0 0 15px 0;
}

#cmp_227d9b58-7a4c-4e5b-aa0c-97a6b3d9eb3b .hero-content .btn {
	background-color: rgb(250, 117, 35);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_227d9b58-7a4c-4e5b-aa0c-97a6b3d9eb3b .hero-content .btn:hover {
	background-color: rgb(255, 187, 59);
	color: #FFFFFF;
}

/*
 * components/whats_inside/cmp_b44eefa3-f582-417b-8cf4-6fe920d76d40/component.css
 */
#cmp_b44eefa3-f582-417b-8cf4-6fe920d76d40 {
	padding: 0;
}

#cmp_b44eefa3-f582-417b-8cf4-6fe920d76d40 .hero-content {
	background-color: #FAFAFA;
	padding: 20px;
}

#cmp_b44eefa3-f582-417b-8cf4-6fe920d76d40 .hero-content h1 {
	color: rgb(168, 40, 40);
	font-family: Adamina;
	font-size: 24px;
	margin: 0 0 15px 0;
}

#cmp_b44eefa3-f582-417b-8cf4-6fe920d76d40 .hero-content h2 {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 24px;
	margin: 0 0 15px 0;
}

#cmp_b44eefa3-f582-417b-8cf4-6fe920d76d40 .hero-content h3 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 15px 0;
}

#cmp_b44eefa3-f582-417b-8cf4-6fe920d76d40 .hero-content p {
	color: #49494A;
	font-family: Adamina;
	font-size: 16px;
	margin: 0 0 15px 0;
}

#cmp_b44eefa3-f582-417b-8cf4-6fe920d76d40 .hero-content .btn {
	background-color: rgb(250, 117, 35);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_b44eefa3-f582-417b-8cf4-6fe920d76d40 .hero-content .btn:hover {
	background-color: rgb(255, 187, 59);
	color: #FFFFFF;
}

/*
 * components/whats_inside/cmp_c58a258a-a034-4eb3-953c-75e2597adf00/component.css
 */
#cmp_c58a258a-a034-4eb3-953c-75e2597adf00 {
	background-color: #FFFFFF;
}

#cmp_c58a258a-a034-4eb3-953c-75e2597adf00 h1 {
	color: rgb(168, 40, 40);
	font-family: Adamina;
	font-size: 24px;
	margin: 0 0 25px 0;
}

#cmp_c58a258a-a034-4eb3-953c-75e2597adf00 h2 {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 24px;
	margin: 0 0 25px 0;
}

#cmp_c58a258a-a034-4eb3-953c-75e2597adf00 h3 {
	color: rgb(0, 0, 0);
	font-family: Arimo;
	font-size: 24px;
	margin: 0 0 25px 0;
}

#cmp_c58a258a-a034-4eb3-953c-75e2597adf00 p {
	color: rgb(0, 0, 0);
	font-family: Adamina;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_c58a258a-a034-4eb3-953c-75e2597adf00 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(0, 0, 0);
	font-family: Adamina;
	font-size: 16px;
}

#cmp_c58a258a-a034-4eb3-953c-75e2597adf00 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(0, 0, 0);
	font-family: Adamina;
	font-size: 16px;
}

/*
 * components/whats_inside/cmp_cedda9ed-bd37-48c4-9fc8-acd74741939e/component.css
 */
#cmp_cedda9ed-bd37-48c4-9fc8-acd74741939e {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	background-color: #FAFAFA;
}

#cmp_cedda9ed-bd37-48c4-9fc8-acd74741939e .content {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	margin: 0 auto;
	padding: 25px;
}

#cmp_cedda9ed-bd37-48c4-9fc8-acd74741939e .square-image {
	height: 225px;
	margin: 0 0 15px 0;
	width: 225px;
}

#cmp_cedda9ed-bd37-48c4-9fc8-acd74741939e h1 {
	color: rgb(168, 40, 40);
	font-family: Lato;
	font-size: 24px;
}

#cmp_cedda9ed-bd37-48c4-9fc8-acd74741939e h2 {
	color: rgb(168, 40, 40);
	font-family: Adamina;
	font-size: 24px;
}

#cmp_cedda9ed-bd37-48c4-9fc8-acd74741939e h3 {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 16px;
}

#cmp_cedda9ed-bd37-48c4-9fc8-acd74741939e p {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/whats_inside/cmp_d39836a8-292c-439c-b082-fe84300c3347/component.css
 */
#cmp_d39836a8-292c-439c-b082-fe84300c3347 {
	background-color: #FFFFFF;
}

#cmp_d39836a8-292c-439c-b082-fe84300c3347 h1 {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 24px;
	margin: 0 0 25px 0;
}

#cmp_d39836a8-292c-439c-b082-fe84300c3347 h2 {
	color: rgb(168, 40, 40);
	font-family: Adamina;
	font-size: 24px;
	margin: 0 0 25px 0;
}

#cmp_d39836a8-292c-439c-b082-fe84300c3347 h3 {
	color: rgb(0, 0, 0);
	font-family: Adamina;
	font-size: 20px;
	margin: 0 0 25px 0;
}

#cmp_d39836a8-292c-439c-b082-fe84300c3347 p {
	color: rgb(74, 74, 74);
	font-family: Adamina;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_d39836a8-292c-439c-b082-fe84300c3347 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(74, 74, 74);
	font-family: Adamina;
	font-size: 16px;
}

#cmp_d39836a8-292c-439c-b082-fe84300c3347 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(74, 74, 74);
	font-family: Adamina;
	font-size: 16px;
}

#cmp_d39836a8-292c-439c-b082-fe84300c3347 h2 {
	margin: 0 0 40px 0;
}
#cmp_d39836a8-292c-439c-b082-fe84300c3347 h3 {
	margin: 0 0 15px 0;
}
#cmp_d39836a8-292c-439c-b082-fe84300c3347 p {
	border-bottom: 1px solid #EEEEEE;
	padding: 0 0 25px 0;
}
/*
 * components/whats_inside/cmp_db7f25de-8240-4e20-84a2-336c36bb5c6f/component.css
 */
#cmp_db7f25de-8240-4e20-84a2-336c36bb5c6f img {
	max-width: 100%;
}