/*
 * css/style.css
 */
/* Globals
------------------------------*/
@font-face {
    font-family: 'Windsor';
  src: url('//s3.amazonaws.com/cratejoy_vendor_images/theraddadbox/betterman_mobile-copy-127/fonts/Windsor.otf?ts=1674542955&host=my.cratejoy.com') format('opentype');
}

@font-face {
    font-family: 'Montserrat-Light';
    src: url('//s3.amazonaws.com/cratejoy_vendor_images/theraddadbox/betterman_mobile-copy-127/fonts/Montserrat-Light.otf?ts=1674542955&host=my.cratejoy.com') format('opentype');
}

.square-row h1{

  font-family: "Windsor" !important; 
}

.hero-content h1{

  

}

body {
	background-color: #EEEEEE;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	line-height: 1.5em;
}

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

h1 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 34px;
	letter-spacing: 1px;
	line-height: 1;
}

h2 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 26px;
}

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

p {
	line-height: 1.5em;
}

a,
.btn-link {
	color: rgb(73, 155, 63);
}

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

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

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

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

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

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

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

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

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

.square-img-container {
	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(73, 155, 63);
}

.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 #3BB44A;
	color: #3BB44A;
	padding: 0.6em 1.8em;
}

.btn-small:hover,
.btn-small:focus,
.btn-small:active,
.btn-small:active:focus {
	background-color: rgb(73, 155, 63);
	border-color: rgb(73, 155, 63);
	color: #FFFFFF !important;
}

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

.btn-primary {
	background-color: rgb(73, 155, 63);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
	letter-spacing: 0.167em;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus {
	background-color: #FAC325;
	color: #FFFFFF;
}

.btn-secondary {
	background-color: #49494A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
	letter-spacing: 0.167em;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:active:focus {
	background-color: #FAC325;
	color: #FFFFFF;
}

.btn-empty {
	background-color: transparent;
	border: 1px solid #3BB44A;
	color: #3BB44A;
}

.btn-empty:hover,
.btn-empty:focus,
.btn-empty:active,
.btn-empty:active:focus {
	background-color: #49494A;
}

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

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

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

	margin: 20px 0;
}

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

	padding: .9375rem 0;
}

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

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

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

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

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

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

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

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

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

/* 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(73, 155, 63);
	border: none;
	border-radius: 25px;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
	letter-spacing: 0.167em;
	padding: 1.2em 5em;
}

.checkout_content #checkout_button:hover,
.checkout_content #checkout_button:focus,
.checkout_content #checkout_button:active,
.checkout_content #checkout_button:active:focus {
	background-color: #FAC325;
	color: #FFFFFF;
}

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

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

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

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

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

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

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

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

.address-container {
	width: 100%;
}

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

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

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

.address-container {
	width: 100%;
}

.errors {
	margin: 25px 0;
}

.cratejoy-loading-icon {
	color: #3BB44A;
}

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

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

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

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

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

.popup {
border: 2px solid rgb(73, 155, 63);
}
/*
 * components/about/cmp_1aa9af7b-e9fc-48fc-84ea-c1b2d68a8f99/component.css
 */
#cmp_1aa9af7b-e9fc-48fc-84ea-c1b2d68a8f99 {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	background-color: #FFFFFF;
}

#cmp_1aa9af7b-e9fc-48fc-84ea-c1b2d68a8f99 .content {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	margin: 0 auto;
	padding: 25px;
}

#cmp_1aa9af7b-e9fc-48fc-84ea-c1b2d68a8f99 .square-image {
	height: 225px;
	margin: 0 0 15px 0;
	width: 225px;
}

#cmp_1aa9af7b-e9fc-48fc-84ea-c1b2d68a8f99 h1 {
	color: rgb(73, 73, 74);
	font-family: "Windsor";/*Montserrat;*/
	font-size: 60px;
}

#cmp_1aa9af7b-e9fc-48fc-84ea-c1b2d68a8f99 h2 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 26px;
}

#cmp_1aa9af7b-e9fc-48fc-84ea-c1b2d68a8f99 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
}

#cmp_1aa9af7b-e9fc-48fc-84ea-c1b2d68a8f99 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/about/cmp_67cf0713-03f6-4380-8d46-822fdf8ef1db/component.css
 */
#cmp_67cf0713-03f6-4380-8d46-822fdf8ef1db {
	padding: 0;
}

#cmp_67cf0713-03f6-4380-8d46-822fdf8ef1db .hero-content {
	background-color: #FFFFFF;
	padding: 20px;
}

#cmp_67cf0713-03f6-4380-8d46-822fdf8ef1db .hero-content h1 {
	color: rgb(73, 73, 74);
	font-family: "Windsor";/*Montserrat;!--->*/
	font-size: 48px !important;
	margin: 0 0 15px 0;
}



#cmp_67cf0713-03f6-4380-8d46-822fdf8ef1db .hero-content h2 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 48px;
	margin: 0 0 15px 0;
}

#cmp_67cf0713-03f6-4380-8d46-822fdf8ef1db .hero-content h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 15px 0;
}

#cmp_67cf0713-03f6-4380-8d46-822fdf8ef1db .hero-content p {
	color: #49494A;
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 15px 0;
}

#cmp_67cf0713-03f6-4380-8d46-822fdf8ef1db .hero-content .btn {
	background-color:  ;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_67cf0713-03f6-4380-8d46-822fdf8ef1db .hero-content .btn:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

/*
 * components/about/cmp_fa840901-9625-47b9-a9e2-22fc2efee77a/component.css
 */
#cmp_fa840901-9625-47b9-a9e2-22fc2efee77a {
	padding: 0;
}

#cmp_fa840901-9625-47b9-a9e2-22fc2efee77a .hero-content {
	background-color: #49494A;
	padding: 20px;
}

#cmp_fa840901-9625-47b9-a9e2-22fc2efee77a .hero-content h1 {
	color: rgb(53, 153, 80);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_fa840901-9625-47b9-a9e2-22fc2efee77a .hero-content h2 {
	color: #FFFFFF;
	font-family: Montserrat;
	font-size: 26px;
}

#cmp_fa840901-9625-47b9-a9e2-22fc2efee77a .hero-content h3 {
	color: #FFFFFF;
	font-family: Montserrat;
	font-size: 16px;
}

#cmp_fa840901-9625-47b9-a9e2-22fc2efee77a .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_fa840901-9625-47b9-a9e2-22fc2efee77a .hero-content .btn {
	background-color: #3BB44A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_fa840901-9625-47b9-a9e2-22fc2efee77a .hero-content .btn:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}


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

@media(min-width: 768px) {
	#cmp_fa840901-9625-47b9-a9e2-22fc2efee77a .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_fa840901-9625-47b9-a9e2-22fc2efee77a .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_fa840901-9625-47b9-a9e2-22fc2efee77a .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_fa840901-9625-47b9-a9e2-22fc2efee77a .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_fa840901-9625-47b9-a9e2-22fc2efee77a .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_fa840901-9625-47b9-a9e2-22fc2efee77a .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/april2020box/cmp_961e5d5d-cd11-48c2-9020-5761026f855e/component.css
 */
#cmp_961e5d5d-cd11-48c2-9020-5761026f855e {
	background-color: #FFFFFF;
}

#cmp_961e5d5d-cd11-48c2-9020-5761026f855e h1 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_961e5d5d-cd11-48c2-9020-5761026f855e h2 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_961e5d5d-cd11-48c2-9020-5761026f855e h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_961e5d5d-cd11-48c2-9020-5761026f855e p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_961e5d5d-cd11-48c2-9020-5761026f855e .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_961e5d5d-cd11-48c2-9020-5761026f855e .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_961e5d5d-cd11-48c2-9020-5761026f855e .btn {
	background-color: rgb(73, 155, 63);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_961e5d5d-cd11-48c2-9020-5761026f855e .btn:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

#cmp_961e5d5d-cd11-48c2-9020-5761026f855e ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_961e5d5d-cd11-48c2-9020-5761026f855e ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/august2020box/cmp_4751b578-95ae-412a-9b15-51be60f6a543/component.css
 */
#cmp_4751b578-95ae-412a-9b15-51be60f6a543 {
	background-color: #FFFFFF;
}

#cmp_4751b578-95ae-412a-9b15-51be60f6a543 h1 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_4751b578-95ae-412a-9b15-51be60f6a543 h2 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_4751b578-95ae-412a-9b15-51be60f6a543 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_4751b578-95ae-412a-9b15-51be60f6a543 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_4751b578-95ae-412a-9b15-51be60f6a543 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_4751b578-95ae-412a-9b15-51be60f6a543 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/august2020box/cmp_cd6bb8ee-c614-48e9-9b1c-a23595d29679/component.css
 */
#cmp_cd6bb8ee-c614-48e9-9b1c-a23595d29679 {
	background-color: #FFFFFF;
}

#cmp_cd6bb8ee-c614-48e9-9b1c-a23595d29679 h1 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_cd6bb8ee-c614-48e9-9b1c-a23595d29679 h2 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_cd6bb8ee-c614-48e9-9b1c-a23595d29679 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_cd6bb8ee-c614-48e9-9b1c-a23595d29679 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_cd6bb8ee-c614-48e9-9b1c-a23595d29679 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_cd6bb8ee-c614-48e9-9b1c-a23595d29679 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_cd6bb8ee-c614-48e9-9b1c-a23595d29679 .btn {
	background-color: rgb(73, 155, 63);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_cd6bb8ee-c614-48e9-9b1c-a23595d29679 .btn:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

#cmp_cd6bb8ee-c614-48e9-9b1c-a23595d29679 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_cd6bb8ee-c614-48e9-9b1c-a23595d29679 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/checkout/cmp_ab429ff8-786e-47ce-bcfd-493556a1e0db/component.css
 */
#cmp_ab429ff8-786e-47ce-bcfd-493556a1e0db .checkout_content {
  overflow: auto;
}

#cmp_ab429ff8-786e-47ce-bcfd-493556a1e0db .checkout_content section {
  border-color: #F5F5F5;
}

#cmp_ab429ff8-786e-47ce-bcfd-493556a1e0db .cart_listing table {
  border-color: #F5F5F5;
}

#cmp_ab429ff8-786e-47ce-bcfd-493556a1e0db  {
	padding-top: 0;
}
/*
 * components/corporate_gifting/cmp_2c9c9802-7c83-4923-8ddc-02e615a81255/component.css
 */
#cmp_2c9c9802-7c83-4923-8ddc-02e615a81255 {
	background-color: #FFFFFF;
}

#cmp_2c9c9802-7c83-4923-8ddc-02e615a81255 h1 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_2c9c9802-7c83-4923-8ddc-02e615a81255 h2 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_2c9c9802-7c83-4923-8ddc-02e615a81255 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_2c9c9802-7c83-4923-8ddc-02e615a81255 p {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_2c9c9802-7c83-4923-8ddc-02e615a81255 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 16px;
}

#cmp_2c9c9802-7c83-4923-8ddc-02e615a81255 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 16px;
}

/*
 * components/corporate_gifting/cmp_3d8a36bb-c647-434a-9855-62156b366ea3/component.css
 */
#cmp_3d8a36bb-c647-434a-9855-62156b366ea3 {
	background-color: #FFFFFF;
}

#cmp_3d8a36bb-c647-434a-9855-62156b366ea3 h1 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_3d8a36bb-c647-434a-9855-62156b366ea3 h2 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_3d8a36bb-c647-434a-9855-62156b366ea3 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_3d8a36bb-c647-434a-9855-62156b366ea3 p {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_3d8a36bb-c647-434a-9855-62156b366ea3 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 16px;
}

#cmp_3d8a36bb-c647-434a-9855-62156b366ea3 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 16px;
}

/*
 * components/corporate_gifting/cmp_b47b34de-59e4-4f61-9be3-141a19672f8c/component.css
 */
#cmp_b47b34de-59e4-4f61-9be3-141a19672f8c {
	background-color: #FFFFFF;
}

#cmp_b47b34de-59e4-4f61-9be3-141a19672f8c h1 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_b47b34de-59e4-4f61-9be3-141a19672f8c h2 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_b47b34de-59e4-4f61-9be3-141a19672f8c h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 36px;
	margin: 0 0 25px 0;
}

#cmp_b47b34de-59e4-4f61-9be3-141a19672f8c p {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_b47b34de-59e4-4f61-9be3-141a19672f8c .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_b47b34de-59e4-4f61-9be3-141a19672f8c .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_b47b34de-59e4-4f61-9be3-141a19672f8c .btn {
	background-color: rgb(73, 155, 63);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_b47b34de-59e4-4f61-9be3-141a19672f8c .btn:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

#cmp_b47b34de-59e4-4f61-9be3-141a19672f8c ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 16px;
}

#cmp_b47b34de-59e4-4f61-9be3-141a19672f8c ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 16px;
}

/*
 * components/corporate_gifting/cmp_c244db39-f71d-443f-9b8e-85fca52aadc6/component.css
 */
#cmp_c244db39-f71d-443f-9b8e-85fca52aadc6 img {
	max-width: 100%;
}

/*
 * components/customer/account/cmp_b30df1dc-b3f4-4c8a-a1be-a365033c69ea/component.css
 */

/*
 * components/customer/edit/cmp_26f9a7b2-31c0-4a98-904e-c9804111fa82/component.css
 */

/*
 * components/customer/forgot_password/cmp_489c68c5-57e5-4000-ac92-45005a64064b/component.css
 */
#cmp_489c68c5-57e5-4000-ac92-45005a64064b {
	background-color: #FFFFFF;
}

#cmp_489c68c5-57e5-4000-ac92-45005a64064b h1 {
	color: rgb(73, 73, 74);
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 25px 0;
}

#cmp_489c68c5-57e5-4000-ac92-45005a64064b h2 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_489c68c5-57e5-4000-ac92-45005a64064b h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_489c68c5-57e5-4000-ac92-45005a64064b p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

/*
 * components/customer/forgot_password/cmp_e499accc-5648-47c5-a206-a5b650cccbd4/component.css
 */
#cmp_e499accc-5648-47c5-a206-a5b650cccbd4 {
    padding:  0 0 120px 0;
}
/*
 * components/customer/login/cmp_7f3fa690-1b70-4dad-a492-b0095a7459a2/component.css
 */
#cmp_7f3fa690-1b70-4dad-a492-b0095a7459a2 {
	background-color: #FFFFFF;
}

#cmp_7f3fa690-1b70-4dad-a492-b0095a7459a2 h1 {
	color: rgb(73, 73, 74);
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 25px 0;
}

#cmp_7f3fa690-1b70-4dad-a492-b0095a7459a2 h2 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_7f3fa690-1b70-4dad-a492-b0095a7459a2 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_7f3fa690-1b70-4dad-a492-b0095a7459a2 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

/*
 * components/customer/login/cmp_f24a6283-d595-49f4-a98e-806ad0c484cb/component.css
 */
#cmp_f24a6283-d595-49f4-a98e-806ad0c484cb {
    padding:  0 0 120px 0;
}
/*
 * components/customer/order/cmp_9560356e-d1da-4727-a34e-af1fbe5dd48c/component.css
 */

/*
 * components/customer/password_reset/cmp_12f3edac-9c80-407e-9c74-cb3497bceb38/component.css
 */
#cmp_12f3edac-9c80-407e-9c74-cb3497bceb38 {
    padding:  0 0 120px 0;
}
/*
 * components/customer/password_reset/cmp_162d3d74-29ea-4436-a24b-f4aebe608b49/component.css
 */
#cmp_162d3d74-29ea-4436-a24b-f4aebe608b49 {
	background-color: #FFFFFF;
}

#cmp_162d3d74-29ea-4436-a24b-f4aebe608b49 h1 {
	color: rgb(73, 73, 74);
	font-family: Just Another Hand;
	font-size: 74px;
	margin: 0 0 25px 0;
}

#cmp_162d3d74-29ea-4436-a24b-f4aebe608b49 h2 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_162d3d74-29ea-4436-a24b-f4aebe608b49 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_162d3d74-29ea-4436-a24b-f4aebe608b49 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

/*
 * components/customer/thank_you/cmp_c99f236c-1d40-4c55-b8f9-783f9b190b02/component.css
 */

/*
 * components/faq/cmp_291ae2ad-3898-44f9-88e4-f6dae77b51d9/component.css
 */
#cmp_291ae2ad-3898-44f9-88e4-f6dae77b51d9 {
	background-color: #FFFFFF;
  	padding-bottom:0;
}

#cmp_291ae2ad-3898-44f9-88e4-f6dae77b51d9 h1 {
	color: rgb(73, 73, 74);
	font-family: "Windsor";/*Montserrat;*/
	font-size: 72px;
	margin: 0 0 25px 0;
}

#cmp_291ae2ad-3898-44f9-88e4-f6dae77b51d9 h2 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_291ae2ad-3898-44f9-88e4-f6dae77b51d9 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_291ae2ad-3898-44f9-88e4-f6dae77b51d9 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

/*
 * components/faq/cmp_6101b601-9a96-4dc7-9139-1bd4f33608d7/component.css
 */
#cmp_6101b601-9a96-4dc7-9139-1bd4f33608d7 {
	background-color: #FFFFFF;
  	padding-top:30px;
}

#cmp_6101b601-9a96-4dc7-9139-1bd4f33608d7 h1 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 36px;
	margin: 0 0 25px 0;
}

#cmp_6101b601-9a96-4dc7-9139-1bd4f33608d7 h2 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 24px;
	margin: 0 0 25px 0;
}

#cmp_6101b601-9a96-4dc7-9139-1bd4f33608d7 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_6101b601-9a96-4dc7-9139-1bd4f33608d7 p {
	color: rgb(133, 132, 132);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_6101b601-9a96-4dc7-9139-1bd4f33608d7 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_6101b601-9a96-4dc7-9139-1bd4f33608d7 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_6101b601-9a96-4dc7-9139-1bd4f33608d7 .btn {
	background-color: rgb(73, 155, 63);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_6101b601-9a96-4dc7-9139-1bd4f33608d7 .btn:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

/*
 * components/gift_sg/cmp_9c0c9eda-e434-4332-b172-93a4603b78a9/component.css
 */
#cmp_9c0c9eda-e434-4332-b172-93a4603b78a9 {
	background-color: #FFFFFF;
}

#cmp_9c0c9eda-e434-4332-b172-93a4603b78a9 h1 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_9c0c9eda-e434-4332-b172-93a4603b78a9 h2 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_9c0c9eda-e434-4332-b172-93a4603b78a9 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_9c0c9eda-e434-4332-b172-93a4603b78a9 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_9c0c9eda-e434-4332-b172-93a4603b78a9 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_9c0c9eda-e434-4332-b172-93a4603b78a9 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/gift_sg/cmp_d5b31ca2-ffbd-4c60-af55-09955140ac95/component.css
 */
#cmp_d5b31ca2-ffbd-4c60-af55-09955140ac95 img {
	max-width: 100%;
}

/*
 * components/global/cmp_1b943daf-b6eb-4901-b24d-87a6f65ec25a/component.css
 */
#cmp_1b943daf-b6eb-4901-b24d-87a6f65ec25a.navbar {
	background-color: #FFFFFF;
	border-radius: 0;
	padding: 0;

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

#cmp_1b943daf-b6eb-4901-b24d-87a6f65ec25a.navbar a:hover,
#cmp_1b943daf-b6eb-4901-b24d-87a6f65ec25a.navbar a:focus,
#cmp_1b943daf-b6eb-4901-b24d-87a6f65ec25a.navbar a:active {
	color: rgb(73, 155, 63);
}

#cmp_1b943daf-b6eb-4901-b24d-87a6f65ec25a .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: #3BB44A;
	font-family: Montserrat;
	font-size: 26px;
	letter-spacing: 0.038em;
	margin: 0;
	max-width: 100%;
	padding: 15px;
	text-align: center;
	text-transform: uppercase;
}

#cmp_1b943daf-b6eb-4901-b24d-87a6f65ec25a .navbar-brand img {
	max-width: 100%;
}

#cmp_1b943daf-b6eb-4901-b24d-87a6f65ec25a.navbar .navbar-toggler {
	background-color: rgb(73, 155, 63);
	border-radius: 0;
	color: #FFFFFF;
	font-size: 13px;
	letter-spacing: 0.077em;
	padding: 15px;
	text-transform: uppercase;
}

#cmp_1b943daf-b6eb-4901-b24d-87a6f65ec25a.navbar .navbar-toggler:hover,
#cmp_1b943daf-b6eb-4901-b24d-87a6f65ec25a.navbar .navbar-toggler:focus,
#cmp_1b943daf-b6eb-4901-b24d-87a6f65ec25a.navbar .navbar-toggler:active {
	background-color: #FAC325;
	color: #FFFFFF;
}

#cmp_1b943daf-b6eb-4901-b24d-87a6f65ec25a .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_1b943daf-b6eb-4901-b24d-87a6f65ec25a .navbar-nav li {
	padding: 10px 0;
}

#cmp_1b943daf-b6eb-4901-b24d-87a6f65ec25a .navbar-nav .nav-link {
	color: #49494A;
	font-family: Lato;
	font-size: 13px;;
	padding: 8px 18px;
	text-align: center;
	text-transform: uppercase;
}

@media (min-width: 768px) {
	#cmp_1b943daf-b6eb-4901-b24d-87a6f65ec25a.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_1b943daf-b6eb-4901-b24d-87a6f65ec25a .navbar-brand {
		padding: 0 0 15px 0;
	}
	#cmp_1b943daf-b6eb-4901-b24d-87a6f65ec25a .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_1b943daf-b6eb-4901-b24d-87a6f65ec25a .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_1b943daf-b6eb-4901-b24d-87a6f65ec25a .navbar-nav li {
		padding: 0;
	}
}

#cmp_1b943daf-b6eb-4901-b24d-87a6f65ec25a ol {
    list-style: decimal;
    list-style-position: inside;
    color: ;
    font-family: ;
    font-size: ;
}

#cmp_1b943daf-b6eb-4901-b24d-87a6f65ec25a ul {
    list-style: none;
    list-style-position: inside;
    color: ;
    font-family: ;
    font-size: ;
}

/*
 * components/global/cmp_4dfca62f-03c8-46b8-8a39-71b4a9215e1a/component.css
 */
#cmp_4dfca62f-03c8-46b8-8a39-71b4a9215e1a {
	background-color: ;
}

#cmp_4dfca62f-03c8-46b8-8a39-71b4a9215e1a h1 {
	color: ;
	font-family: ;
	font-size: ;
	margin: 0 0 25px 0;
}

#cmp_4dfca62f-03c8-46b8-8a39-71b4a9215e1a h2 {
	color: rgb(87, 88, 87);
	font-family: ;
	font-size: ;
	margin: 0 0 25px 0;
}

#cmp_4dfca62f-03c8-46b8-8a39-71b4a9215e1a h3 {
	color: ;
	font-family: ;
	font-size: ;
	margin: 0 0 25px 0;
}

#cmp_4dfca62f-03c8-46b8-8a39-71b4a9215e1a p {
	color: ;
	font-family: ;
	font-size: ;
	margin: 0 0 25px 0;
}

#cmp_4dfca62f-03c8-46b8-8a39-71b4a9215e1a .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_4dfca62f-03c8-46b8-8a39-71b4a9215e1a .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_4dfca62f-03c8-46b8-8a39-71b4a9215e1a .btn {
	background-color: ;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_4dfca62f-03c8-46b8-8a39-71b4a9215e1a .btn:hover {
	background-color: ;
	color: ;
}

#cmp_4dfca62f-03c8-46b8-8a39-71b4a9215e1a  {
	padding-top: 0;
}
/*
 * components/global/cmp_c2597df9-09b7-463e-95a2-53acd672a4e1/component.css
 */
#cmp_c2597df9-09b7-463e-95a2-53acd672a4e1.footer {
	background-color: #FAFAFA;
	color: #B0B0B0;
	font-family: Lato;
	padding: 10px 0;

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

#cmp_c2597df9-09b7-463e-95a2-53acd672a4e1 .footer-social {
	padding: 15px 0;
	text-align: center;
}

#cmp_c2597df9-09b7-463e-95a2-53acd672a4e1 .footer-social a {
	display: inline-block;
	padding: 0 5px;
}

#cmp_c2597df9-09b7-463e-95a2-53acd672a4e1 .footer-social svg path {
	fill: #49494A;
}

#cmp_c2597df9-09b7-463e-95a2-53acd672a4e1 .footer-social a:hover svg path,
#cmp_c2597df9-09b7-463e-95a2-53acd672a4e1 .footer-social a:focus svg path,
#cmp_c2597df9-09b7-463e-95a2-53acd672a4e1 .footer-social a:active svg path {
	fill: #FAC325;
}

#cmp_c2597df9-09b7-463e-95a2-53acd672a4e1.footer .toggler-container {
	padding: 15px 0;
	text-align: center;
}

#cmp_c2597df9-09b7-463e-95a2-53acd672a4e1.footer .navbar-toggler {
	color: #3BB44A;
	font-size: 13px;
	letter-spacing: 0.077em;
	text-transform: uppercase;
}

#cmp_c2597df9-09b7-463e-95a2-53acd672a4e1 .footer-cc {
	border-top: 1px solid #e1e1e1;
	letter-spacing: 1px;
	text-align: center;
}

#cmp_c2597df9-09b7-463e-95a2-53acd672a4e1 .footer-cc img {
	padding: 15px 0;
}

#cmp_c2597df9-09b7-463e-95a2-53acd672a4e1 .footer-cc p,
#cmp_c2597df9-09b7-463e-95a2-53acd672a4e1 .footer-tributes p {
	margin: 0;
	padding: 15px 0;
}

#cmp_c2597df9-09b7-463e-95a2-53acd672a4e1 .footer-tributes p a {
	color: #B0B0B0;
	padding: 0;
}

#cmp_c2597df9-09b7-463e-95a2-53acd672a4e1 .footer-tributes p a:hover,
#cmp_c2597df9-09b7-463e-95a2-53acd672a4e1 .footer-tributes p a:focus,
#cmp_c2597df9-09b7-463e-95a2-53acd672a4e1 .footer-tributes p a:active {
	color: #B0B0B0;
	text-decoration: none;
}

#cmp_c2597df9-09b7-463e-95a2-53acd672a4e1 .footer-directory {
	text-align: center;
}

#cmp_c2597df9-09b7-463e-95a2-53acd672a4e1 .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_c2597df9-09b7-463e-95a2-53acd672a4e1 .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_c2597df9-09b7-463e-95a2-53acd672a4e1 .footer-list .footer-link {
	color: #49494A;
	font-family: Lato;
	font-size: 13px;
	letter-spacing: 0.077em;
	text-transform: uppercase;
}

#cmp_c2597df9-09b7-463e-95a2-53acd672a4e1 .footer-list .footer-link:hover,
#cmp_c2597df9-09b7-463e-95a2-53acd672a4e1 .footer-list .footer-link:focus,
#cmp_c2597df9-09b7-463e-95a2-53acd672a4e1 .footer-list .footer-link:active {
	color: rgb(73, 155, 63);
	text-decoration: none;
}

@media (max-width: 767px) {
	#cmp_c2597df9-09b7-463e-95a2-53acd672a4e1 .col-sm-12,
	#cmp_c2597df9-09b7-463e-95a2-53acd672a4e1 .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_c2597df9-09b7-463e-95a2-53acd672a4e1.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_c2597df9-09b7-463e-95a2-53acd672a4e1 .footer-directory {
		-webkit-order: 1;
		-moz-order: 1;
		-ms-order: 1;
		order: 1;

		text-align: left;
	}
	#cmp_c2597df9-09b7-463e-95a2-53acd672a4e1 .footer-social {
		-webkit-order: 2;
		-moz-order: 2;
		-ms-order: 2;
		order: 2;

		padding: 0 15px;
		text-align: right;
	}
	#cmp_c2597df9-09b7-463e-95a2-53acd672a4e1 .footer-cc {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}
	#cmp_c2597df9-09b7-463e-95a2-53acd672a4e1 .footer-cc p {
		display: inline-block;
	}
}

@media (min-width: 992px) {
	#cmp_c2597df9-09b7-463e-95a2-53acd672a4e1 .footer-cc {
		-webkit-order: 2;
		-moz-order: 2;
		-ms-order: 2;
		order: 2;

		border-top: none;
	}
	#cmp_c2597df9-09b7-463e-95a2-53acd672a4e1 .footer-cc p {
		display: block;
	}
	#cmp_c2597df9-09b7-463e-95a2-53acd672a4e1 .footer-social {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}
}

#cmp_c2597df9-09b7-463e-95a2-53acd672a4e1 ol {
    list-style: decimal;
    list-style-position: inside;
    color: #B0B0B0;
    font-family: Lato;
    font-size: ;
}

#cmp_c2597df9-09b7-463e-95a2-53acd672a4e1 ul {
    list-style: none;
    list-style-position: inside;
    color: #B0B0B0;
    font-family: Lato;
    font-size: ;
}

/*
 * components/index/cmp_60d89cb7-9d97-4a0c-8221-37c9234e18c8/component.css
 */
#cmp_60d89cb7-9d97-4a0c-8221-37c9234e18c8 {
	background-color: #FFFFFF;
}

#cmp_60d89cb7-9d97-4a0c-8221-37c9234e18c8 h1 {
	color: rgb(73, 73, 74);
	font-family: "Windsor"/*Montserrat*/;
	font-size: 60px;
	margin: 0 0 25px 0;
}

#cmp_60d89cb7-9d97-4a0c-8221-37c9234e18c8 h2 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_60d89cb7-9d97-4a0c-8221-37c9234e18c8 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_60d89cb7-9d97-4a0c-8221-37c9234e18c8 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

	.sign-up-form{

				padding-top:5px;

			}
/*
 * components/index/cmp_84f61fd4-ea99-4f54-82f3-0a3718a60a6a/component.css
 */
#cmp_84f61fd4-ea99-4f54-82f3-0a3718a60a6a {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	background-color: #FAFAFA;
}

#cmp_84f61fd4-ea99-4f54-82f3-0a3718a60a6a .content {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	margin: 0 auto;
	padding: 25px;
}

#cmp_84f61fd4-ea99-4f54-82f3-0a3718a60a6a .square-image {
	height: 225px;
	margin: 0 0 15px 0;
	width: 225px;
}

#cmp_84f61fd4-ea99-4f54-82f3-0a3718a60a6a h1 {
	color: rgb(73, 73, 74);
	font-family: "Windsor";/*Montserrat;*/
	font-size: 60px;
}

#cmp_84f61fd4-ea99-4f54-82f3-0a3718a60a6a h2 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 26px;
}

#cmp_84f61fd4-ea99-4f54-82f3-0a3718a60a6a h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
}

#cmp_84f61fd4-ea99-4f54-82f3-0a3718a60a6a p {
	color: rgb(73, 73, 74);
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/index/cmp_a1320db3-7315-4843-8107-e2dd6634f7cf/component.css
 */
#cmp_a1320db3-7315-4843-8107-e2dd6634f7cf {
	background-color: #FFFFFF;
}

#cmp_a1320db3-7315-4843-8107-e2dd6634f7cf h1 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_a1320db3-7315-4843-8107-e2dd6634f7cf h2 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_a1320db3-7315-4843-8107-e2dd6634f7cf h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_a1320db3-7315-4843-8107-e2dd6634f7cf p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_a1320db3-7315-4843-8107-e2dd6634f7cf ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_a1320db3-7315-4843-8107-e2dd6634f7cf ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/index/cmp_c4187ddf-cf7d-4c72-bef5-6e92a5e2b9cc/component.css
 */
#cmp_c4187ddf-cf7d-4c72-bef5-6e92a5e2b9cc {
	padding: 0;
}

#cmp_c4187ddf-cf7d-4c72-bef5-6e92a5e2b9cc .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_c4187ddf-cf7d-4c72-bef5-6e92a5e2b9cc .hero-content h1 {
	color: rgb(73, 73, 74);
	font-family: Amatic SC;
	font-size: 100px;
	margin: 0 0 15px 0;
}

#cmp_c4187ddf-cf7d-4c72-bef5-6e92a5e2b9cc .hero-content h2 {
	color: rgb(39, 39, 250);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 15px 0;
}

#cmp_c4187ddf-cf7d-4c72-bef5-6e92a5e2b9cc .hero-content h3 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 15px 0;
}

#cmp_c4187ddf-cf7d-4c72-bef5-6e92a5e2b9cc .hero-content p {
	color: #49494A;
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 15px 0;
}

#cmp_c4187ddf-cf7d-4c72-bef5-6e92a5e2b9cc .hero-content .button-container {
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
}

#cmp_c4187ddf-cf7d-4c72-bef5-6e92a5e2b9cc .hero-content .btn {
	margin: 3px;
	padding: 15px;
	width: 40%;
}

#cmp_c4187ddf-cf7d-4c72-bef5-6e92a5e2b9cc .hero-content .btn-primary {
	background-color: rgb(73, 155, 63);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_c4187ddf-cf7d-4c72-bef5-6e92a5e2b9cc .hero-content .btn-primary:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

#cmp_c4187ddf-cf7d-4c72-bef5-6e92a5e2b9cc .hero-content .btn-secondary {
	background-color: #49494A;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_c4187ddf-cf7d-4c72-bef5-6e92a5e2b9cc .hero-content .btn-secondary:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

#cmp_c4187ddf-cf7d-4c72-bef5-6e92a5e2b9cc p {
	margin: 0 0 25px 0;
}
/*
 * components/index/cmp_f83e8fa8-dce6-4b88-88a9-f128267c1f21/component.css
 */
#cmp_f83e8fa8-dce6-4b88-88a9-f128267c1f21 img {
	max-width: 100%;
}

/*
 * components/index/cmp_fec7950a-cec0-4ebf-9a52-2afbaa51a1b9/component.css
 */
#cmp_fec7950a-cec0-4ebf-9a52-2afbaa51a1b9 {
	padding: 0;
}

#cmp_fec7950a-cec0-4ebf-9a52-2afbaa51a1b9 .hero-content {
	background-color: #FFFFFF;
	padding: 20px;
}

#cmp_fec7950a-cec0-4ebf-9a52-2afbaa51a1b9 .hero-content h1 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 72px;
	margin: 0 0 15px 0;
}

#cmp_fec7950a-cec0-4ebf-9a52-2afbaa51a1b9 .hero-content h2 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 15px 0;
}

#cmp_fec7950a-cec0-4ebf-9a52-2afbaa51a1b9 .hero-content h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 15px 0;
}

#cmp_fec7950a-cec0-4ebf-9a52-2afbaa51a1b9 .hero-content p {
	color: #49494A;
	font-family: Montserrat;
	font-size: 13px;
	margin: 0 0 15px 0;
}

#cmp_fec7950a-cec0-4ebf-9a52-2afbaa51a1b9 .hero-content .btn {
	background-color: rgb(73, 155, 63);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_fec7950a-cec0-4ebf-9a52-2afbaa51a1b9 .hero-content .btn:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

#cmp_fec7950a-cec0-4ebf-9a52-2afbaa51a1b9 p {
	margin: 0 0 25px 0;
}
/*
 * components/july2020box/cmp_436277ec-727a-45fb-9064-8a40e00595a9/component.css
 */
#cmp_436277ec-727a-45fb-9064-8a40e00595a9 {
	background-color: #FFFFFF;
}

#cmp_436277ec-727a-45fb-9064-8a40e00595a9 h1 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_436277ec-727a-45fb-9064-8a40e00595a9 h2 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_436277ec-727a-45fb-9064-8a40e00595a9 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_436277ec-727a-45fb-9064-8a40e00595a9 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_436277ec-727a-45fb-9064-8a40e00595a9 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_436277ec-727a-45fb-9064-8a40e00595a9 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/june2020box/cmp_58a74b99-74dd-4d9c-a661-edfc47e3d3fb/component.css
 */
#cmp_58a74b99-74dd-4d9c-a661-edfc47e3d3fb {
	background-color: #FFFFFF;
}

#cmp_58a74b99-74dd-4d9c-a661-edfc47e3d3fb h1 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_58a74b99-74dd-4d9c-a661-edfc47e3d3fb h2 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_58a74b99-74dd-4d9c-a661-edfc47e3d3fb h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_58a74b99-74dd-4d9c-a661-edfc47e3d3fb p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_58a74b99-74dd-4d9c-a661-edfc47e3d3fb ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_58a74b99-74dd-4d9c-a661-edfc47e3d3fb ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/june2020box/cmp_7b8299da-c81a-48cf-bb79-46c0274605b5/component.css
 */
#cmp_7b8299da-c81a-48cf-bb79-46c0274605b5 img {
	max-width: 100%;
}

/*
 * components/may2020box/cmp_3a5b32db-43ff-4e48-8fa3-96a2bc278ec6/component.css
 */
#cmp_3a5b32db-43ff-4e48-8fa3-96a2bc278ec6 {
	background-color: #FFFFFF;
}

#cmp_3a5b32db-43ff-4e48-8fa3-96a2bc278ec6 h1 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_3a5b32db-43ff-4e48-8fa3-96a2bc278ec6 h2 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_3a5b32db-43ff-4e48-8fa3-96a2bc278ec6 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_3a5b32db-43ff-4e48-8fa3-96a2bc278ec6 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_3a5b32db-43ff-4e48-8fa3-96a2bc278ec6 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_3a5b32db-43ff-4e48-8fa3-96a2bc278ec6 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/may_box/cmp_0b48a731-f72a-40a2-a5df-6624acad735a/component.css
 */
#cmp_0b48a731-f72a-40a2-a5df-6624acad735a {
	background-color: #FFFFFF;
}

#cmp_0b48a731-f72a-40a2-a5df-6624acad735a h1 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_0b48a731-f72a-40a2-a5df-6624acad735a h2 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_0b48a731-f72a-40a2-a5df-6624acad735a h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_0b48a731-f72a-40a2-a5df-6624acad735a p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_0b48a731-f72a-40a2-a5df-6624acad735a ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_0b48a731-f72a-40a2-a5df-6624acad735a ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/may_box/cmp_13913f7d-83aa-423f-97cc-7246f8143ba3/component.css
 */
#cmp_13913f7d-83aa-423f-97cc-7246f8143ba3 img {
	max-width: 100%;
}

/*
 * components/may_box/cmp_231ae8d7-2596-4a9a-a3eb-0655edb9e048/component.css
 */
#cmp_231ae8d7-2596-4a9a-a3eb-0655edb9e048 img {
	max-width: 100%;
}

/*
 * components/may_box/cmp_29e27aeb-48bc-40a1-8d9c-4785922bdfbf/component.css
 */
#cmp_29e27aeb-48bc-40a1-8d9c-4785922bdfbf {
	background-color: #FFFFFF;
}

#cmp_29e27aeb-48bc-40a1-8d9c-4785922bdfbf h1 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_29e27aeb-48bc-40a1-8d9c-4785922bdfbf h2 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_29e27aeb-48bc-40a1-8d9c-4785922bdfbf h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_29e27aeb-48bc-40a1-8d9c-4785922bdfbf p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_29e27aeb-48bc-40a1-8d9c-4785922bdfbf ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_29e27aeb-48bc-40a1-8d9c-4785922bdfbf ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/may_box/cmp_4c0b7d98-19be-4190-9fe3-395af0f02a46/component.css
 */
#cmp_4c0b7d98-19be-4190-9fe3-395af0f02a46 {
	background-color: #FFFFFF;
}

#cmp_4c0b7d98-19be-4190-9fe3-395af0f02a46 h1 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_4c0b7d98-19be-4190-9fe3-395af0f02a46 h2 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_4c0b7d98-19be-4190-9fe3-395af0f02a46 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_4c0b7d98-19be-4190-9fe3-395af0f02a46 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_4c0b7d98-19be-4190-9fe3-395af0f02a46 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_4c0b7d98-19be-4190-9fe3-395af0f02a46 ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/may_box/cmp_564f8236-62de-480e-b26d-796fae3317df/component.css
 */
#cmp_564f8236-62de-480e-b26d-796fae3317df img {
	max-width: 100%;
}

/*
 * components/may_box/cmp_62d8ec9a-57a7-4afc-9e32-ab5bb3284862/component.css
 */
#cmp_62d8ec9a-57a7-4afc-9e32-ab5bb3284862 {
	background-color: #FFFFFF;
}

#cmp_62d8ec9a-57a7-4afc-9e32-ab5bb3284862 h1 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_62d8ec9a-57a7-4afc-9e32-ab5bb3284862 h2 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_62d8ec9a-57a7-4afc-9e32-ab5bb3284862 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_62d8ec9a-57a7-4afc-9e32-ab5bb3284862 p {
	color: rgb(73, 73, 74);
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_62d8ec9a-57a7-4afc-9e32-ab5bb3284862 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(73, 73, 74);
	font-family: Lato;
	font-size: 13px;
}

#cmp_62d8ec9a-57a7-4afc-9e32-ab5bb3284862 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(73, 73, 74);
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/may_box/cmp_6699dd60-6d29-420c-8089-429fe31454bb/component.css
 */
#cmp_6699dd60-6d29-420c-8089-429fe31454bb img {
	max-width: 100%;
}

/*
 * components/may_box/cmp_683ec6a7-4c46-40bd-b707-ebcec59becfd/component.css
 */
#cmp_683ec6a7-4c46-40bd-b707-ebcec59becfd img {
	max-width: 100%;
}

/*
 * components/may_box/cmp_6973d471-4bc8-4ca5-835a-4555fdc985f8/component.css
 */
#cmp_6973d471-4bc8-4ca5-835a-4555fdc985f8 img {
	max-width: 100%;
}

/*
 * components/may_box/cmp_813aa5d8-f82d-4ea3-98d7-2d102a472c79/component.css
 */
#cmp_813aa5d8-f82d-4ea3-98d7-2d102a472c79 img {
	max-width: 100%;
}

/*
 * components/may_box/cmp_8458658d-cd75-4d72-808a-abea8e0e0b37/component.css
 */
#cmp_8458658d-cd75-4d72-808a-abea8e0e0b37 img {
	max-width: 100%;
}

/*
 * components/may_box/cmp_8ea33ddf-1be9-4b84-804f-d59730cfd667/component.css
 */
#cmp_8ea33ddf-1be9-4b84-804f-d59730cfd667 img {
	max-width: 100%;
}

/*
 * components/may_box/cmp_95a8a10f-e43b-478a-b14e-9b912648731c/component.css
 */
#cmp_95a8a10f-e43b-478a-b14e-9b912648731c {
	background-color: #FFFFFF;
}

#cmp_95a8a10f-e43b-478a-b14e-9b912648731c h1 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_95a8a10f-e43b-478a-b14e-9b912648731c h2 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_95a8a10f-e43b-478a-b14e-9b912648731c h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_95a8a10f-e43b-478a-b14e-9b912648731c p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_95a8a10f-e43b-478a-b14e-9b912648731c ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_95a8a10f-e43b-478a-b14e-9b912648731c ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/may_box/cmp_b8b21796-3531-43bc-b299-3448771760be/component.css
 */
#cmp_b8b21796-3531-43bc-b299-3448771760be {
	background-color: #FFFFFF;
}

#cmp_b8b21796-3531-43bc-b299-3448771760be h1 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_b8b21796-3531-43bc-b299-3448771760be h2 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_b8b21796-3531-43bc-b299-3448771760be h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_b8b21796-3531-43bc-b299-3448771760be p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_b8b21796-3531-43bc-b299-3448771760be ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_b8b21796-3531-43bc-b299-3448771760be ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/may_box/cmp_b94c9e38-ef0b-4a00-99cd-ef865fce77d2/component.css
 */
#cmp_b94c9e38-ef0b-4a00-99cd-ef865fce77d2 img {
	max-width: 100%;
}

/*
 * components/may_box/cmp_bc0c68aa-ed36-425d-aeb7-4012ea6511af/component.css
 */
#cmp_bc0c68aa-ed36-425d-aeb7-4012ea6511af img {
	max-width: 100%;
}

/*
 * components/may_box/cmp_d5a2053e-e2d3-4004-a3eb-5f8f07b6631d/component.css
 */
#cmp_d5a2053e-e2d3-4004-a3eb-5f8f07b6631d {
	background-color: #FFFFFF;
}

#cmp_d5a2053e-e2d3-4004-a3eb-5f8f07b6631d h1 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_d5a2053e-e2d3-4004-a3eb-5f8f07b6631d h2 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_d5a2053e-e2d3-4004-a3eb-5f8f07b6631d h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_d5a2053e-e2d3-4004-a3eb-5f8f07b6631d p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_d5a2053e-e2d3-4004-a3eb-5f8f07b6631d ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_d5a2053e-e2d3-4004-a3eb-5f8f07b6631d ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/may_box/cmp_f10c0cf5-21de-40cb-a5ea-b6fbdfadb839/component.css
 */
#cmp_f10c0cf5-21de-40cb-a5ea-b6fbdfadb839 img {
	max-width: 100%;
}

/*
 * components/may_box/cmp_f1c25df9-34bd-4198-b1d1-2d2d024b038e/component.css
 */
#cmp_f1c25df9-34bd-4198-b1d1-2d2d024b038e {
	background-color: #FFFFFF;
}

#cmp_f1c25df9-34bd-4198-b1d1-2d2d024b038e h1 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_f1c25df9-34bd-4198-b1d1-2d2d024b038e h2 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_f1c25df9-34bd-4198-b1d1-2d2d024b038e h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_f1c25df9-34bd-4198-b1d1-2d2d024b038e p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_f1c25df9-34bd-4198-b1d1-2d2d024b038e ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_f1c25df9-34bd-4198-b1d1-2d2d024b038e ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/past_boxes/cmp_656a0c12-c8f3-40d0-bfe4-30dfab31b0ab/component.css
 */
#cmp_656a0c12-c8f3-40d0-bfe4-30dfab31b0ab img {
	max-width: 100%;
}

/*
 * components/past_boxes/cmp_690d77ab-ef7b-426b-8288-5b98bcb273d9/component.css
 */
#cmp_690d77ab-ef7b-426b-8288-5b98bcb273d9 img {
	max-width: 100%;
}

/*
 * components/past_boxes/cmp_c0145bfe-651c-4f2e-9d0f-46fcef50279a/component.css
 */
#cmp_c0145bfe-651c-4f2e-9d0f-46fcef50279a img {
	max-width: 100%;
}

/*
 * components/past_boxes/cmp_c4d4531f-c989-4711-9db7-a364c784ec5e/component.css
 */
#cmp_c4d4531f-c989-4711-9db7-a364c784ec5e {
	background-color: #FFFFFF;
}

#cmp_c4d4531f-c989-4711-9db7-a364c784ec5e h1 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_c4d4531f-c989-4711-9db7-a364c784ec5e h2 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_c4d4531f-c989-4711-9db7-a364c784ec5e h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_c4d4531f-c989-4711-9db7-a364c784ec5e p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

/*
 * components/past_boxes/cmp_ff22ff4c-7c30-4c5c-b18d-7d3bd0028076/component.css
 */
#cmp_ff22ff4c-7c30-4c5c-b18d-7d3bd0028076 img {
	max-width: 100%;
}

/*
 * components/return_policy/cmp_9f3d3c72-086c-4be5-8158-b19ef593106f/component.css
 */
#cmp_9f3d3c72-086c-4be5-8158-b19ef593106f {
	background-color: #FFFFFF;
}

#cmp_9f3d3c72-086c-4be5-8158-b19ef593106f h1 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_9f3d3c72-086c-4be5-8158-b19ef593106f h2 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_9f3d3c72-086c-4be5-8158-b19ef593106f h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_9f3d3c72-086c-4be5-8158-b19ef593106f p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_9f3d3c72-086c-4be5-8158-b19ef593106f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_9f3d3c72-086c-4be5-8158-b19ef593106f ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/shop/listing/cmp_1373a8bc-777b-4f29-b366-62ebd5955c8e/component.css
 */
#cmp_1373a8bc-777b-4f29-b366-62ebd5955c8e {
    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_1373a8bc-777b-4f29-b366-62ebd5955c8e ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_53e4a23b-2219-4928-ba62-12f3c7f858ff/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: #B0B0B0;
}

.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_56bfa140-48c9-45b9-848c-1d8bba03926a/component.css
 */
#cmp_56bfa140-48c9-45b9-848c-1d8bba03926a {
    padding: 20px 0;

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

#cmp_56bfa140-48c9-45b9-848c-1d8bba03926a ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_ae031992-4c23-4442-b924-3ac172cee51f/component.css
 */
#cmp_ae031992-4c23-4442-b924-3ac172cee51f {
	background-color: #FFFFFF;
}

#cmp_ae031992-4c23-4442-b924-3ac172cee51f h1 {
	color: rgb(73, 73, 74);
	font-family: "Windsor";/*Montserrat;*/;
	font-size: 100px;
	margin: 0 0 25px 0;
}

#cmp_ae031992-4c23-4442-b924-3ac172cee51f h2 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_ae031992-4c23-4442-b924-3ac172cee51f h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_ae031992-4c23-4442-b924-3ac172cee51f p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_ae031992-4c23-4442-b924-3ac172cee51f  {
	padding-bottom: 20px;
}
/*
 * components/shop/product/cmp_63744117-b41b-4b7e-a18b-2cce883b1c4a/component.css
 */
#cmp_63744117-b41b-4b7e-a18b-2cce883b1c4a.shop-product-header {
	padding: 50px 0 15px 0;
}

/*
 * components/shop/product/cmp_d7a1a6c8-3feb-4c69-883e-f56247e179bd/component.css
 */
#cmp_d7a1a6c8-3feb-4c69-883e-f56247e179bd .shop-product__name {
	margin: 0 0 10px 0;
}

#cmp_d7a1a6c8-3feb-4c69-883e-f56247e179bd .shop-product__price {
	margin: 0 0 20px 0;
}

#cmp_d7a1a6c8-3feb-4c69-883e-f56247e179bd .shop-product select {
	width: auto;
}

#cmp_d7a1a6c8-3feb-4c69-883e-f56247e179bd .shop-product__add-to-cart {
	margin: 0 0 20px 0;
}

#cmp_d7a1a6c8-3feb-4c69-883e-f56247e179bd .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin: 0 0 40px 0;
}

#cmp_d7a1a6c8-3feb-4c69-883e-f56247e179bd .shop-product__review-share-desktop .col-xs-6 {
	padding: 10px 0 0 0;
}

#cmp_d7a1a6c8-3feb-4c69-883e-f56247e179bd .shop-product__review-share-desktop .col-xs-6 + .col-xs-6 {
	border-left: 1px solid #E1E1E1;
}

#cmp_d7a1a6c8-3feb-4c69-883e-f56247e179bd  {
	padding-top: 0;
}
/*
 * components/sold_out/cmp_2cd8710d-aac5-4ded-90cd-9928e1d2d9d6/component.css
 */
#cmp_2cd8710d-aac5-4ded-90cd-9928e1d2d9d6 {
	background-color: #FFFFFF;
}

#cmp_2cd8710d-aac5-4ded-90cd-9928e1d2d9d6 h1 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_2cd8710d-aac5-4ded-90cd-9928e1d2d9d6 h2 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_2cd8710d-aac5-4ded-90cd-9928e1d2d9d6 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_2cd8710d-aac5-4ded-90cd-9928e1d2d9d6 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_2cd8710d-aac5-4ded-90cd-9928e1d2d9d6 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_2cd8710d-aac5-4ded-90cd-9928e1d2d9d6 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_2cd8710d-aac5-4ded-90cd-9928e1d2d9d6 .btn {
	background-color: rgb(73, 155, 63);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 13px;
}

#cmp_2cd8710d-aac5-4ded-90cd-9928e1d2d9d6 .btn:hover {
	background-color: #FAC325;
	color: #FFFFFF;
}

#cmp_2cd8710d-aac5-4ded-90cd-9928e1d2d9d6  {
	padding-top: 0;
}
/*
 * components/sold_out/cmp_d1c0c5d1-07de-4b46-843e-98c8da6fd808/component.css
 */

/*
 * components/springtimesponges/cmp_11d3c021-d70d-4c68-9335-7db7d3e713dc/component.css
 */
#cmp_11d3c021-d70d-4c68-9335-7db7d3e713dc img {
	max-width: 100%;
}

/*
 * components/subscribe/cmp_25738858-7c2b-452c-a75d-50ab206d8620/component.css
 */
#cmp_25738858-7c2b-452c-a75d-50ab206d8620 {
	background-color: #FFFFFF;
}

#cmp_25738858-7c2b-452c-a75d-50ab206d8620 h1 {
	color: rgb(73, 73, 74);
	font-family: "Windsor";/*Montserrat;*/
	font-size: 100px;
	margin: 0 0 25px 0;
}

#cmp_25738858-7c2b-452c-a75d-50ab206d8620 h2 {
	color: rgb(0, 0, 0);
	font-family: "Windsor";/*Montserrat;*/
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_25738858-7c2b-452c-a75d-50ab206d8620 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_25738858-7c2b-452c-a75d-50ab206d8620 p {
	color: rgb(3, 0, 0);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_25738858-7c2b-452c-a75d-50ab206d8620  {
	padding-bottom: 0;
}
/*
 * components/subscribe/cmp_8a042e4d-d9b0-4427-9e3c-7072334df126/component.css
 */

/*
 * components/subscribe_flow/survey_step/cmp_a6beb2f7-ae08-4c21-a703-c5be0c55e930/component.css
 */
.survey:first-of-type {
    padding: 0 0 50px 0;
}
#cmp_a6beb2f7-ae08-4c21-a703-c5be0c55e930  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_fca90f92-6ca1-4bf0-b3d9-2b1cc5efeda3/component.css
 */
#cmp_fca90f92-6ca1-4bf0-b3d9-2b1cc5efeda3 {
	padding: 50px 0 15px 0;
}

#cmp_fca90f92-6ca1-4bf0-b3d9-2b1cc5efeda3 h1{

  font-family: "Windsor";
  font-size: 72px;

}

/*
 * components/subscribe_flow/terms_step/cmp_a92e9d80-1570-42a1-85c4-082cf415a9a7/component.css
 */
#cmp_a92e9d80-1570-42a1-85c4-082cf415a9a7 {
	padding: 50px 0 15px 0;
}
#cmp_a92e9d80-1570-42a1-85c4-082cf415a9a7 h1{

  font-family: "Windsor";
  font-size: 72px;

}

/*
 * components/subscribe_flow/terms_step/cmp_e59fb2c8-9bd0-47fa-8732-b6fade7eb411/component.css
 */

/*
 * components/subscribe_flow/variant_step/cmp_052209f7-4ae1-4933-a945-8db6c2283e92/component.css
 */
#cmp_052209f7-4ae1-4933-a945-8db6c2283e92 {
	padding: 50px 0 15px 0;
}

/*
 * components/subscribe_flow/variant_step/cmp_1e5cc463-16d7-4f05-86db-159f30173743/component.css
 */

/*
 * components/this_months_box/cmp_c6b29e2c-c2f3-46cd-91f1-5794c7300594/component.css
 */
#cmp_c6b29e2c-c2f3-46cd-91f1-5794c7300594 img {
	max-width: 100%;
}

/*
 * components/this_months_box/cmp_ef8bd62a-53a8-4344-90b9-48d99e33629f/component.css
 */
#cmp_ef8bd62a-53a8-4344-90b9-48d99e33629f {
	background-color: #FFFFFF;
}

#cmp_ef8bd62a-53a8-4344-90b9-48d99e33629f h1 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 34px;
	margin: 0 0 25px 0;
}

#cmp_ef8bd62a-53a8-4344-90b9-48d99e33629f h2 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_ef8bd62a-53a8-4344-90b9-48d99e33629f h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_ef8bd62a-53a8-4344-90b9-48d99e33629f p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

#cmp_ef8bd62a-53a8-4344-90b9-48d99e33629f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

#cmp_ef8bd62a-53a8-4344-90b9-48d99e33629f ul {
	list-style: disc;
	list-style-position: inside;
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/view-cart/cmp_a09d81e5-debf-4db0-a657-b00b077ffad1/component.css
 */
#cmp_a09d81e5-debf-4db0-a657-b00b077ffad1 {
	background-color: #FFFFFF;
}

#cmp_a09d81e5-debf-4db0-a657-b00b077ffad1 h1 {
	color: rgb(73, 73, 74);
	font-family: "Windsor";/*Just Another Hand;
	font-size: 100px;*/
	margin: 0 0 25px 0;
}

#cmp_a09d81e5-debf-4db0-a657-b00b077ffad1 h2 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 36px;
	margin: 0 0 25px 0;
}

#cmp_a09d81e5-debf-4db0-a657-b00b077ffad1 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_a09d81e5-debf-4db0-a657-b00b077ffad1 p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
	margin: 0 0 25px 0;
}

/*
 * components/view-cart/cmp_b438e1d2-38ab-4fda-bdcc-b2e44c6b96e3/component.css
 */
#cmp_b438e1d2-38ab-4fda-bdcc-b2e44c6b96e3 {
	padding: 15px 15px 100px 15px;
}

#cmp_b438e1d2-38ab-4fda-bdcc-b2e44c6b96e3 .cart-thead {
	border-bottom: 1px solid #E1E1E1;
	padding: 10px 0;
}

#cmp_b438e1d2-38ab-4fda-bdcc-b2e44c6b96e3 .cart-thead h3 {
	text-transform: uppercase;
}

#cmp_b438e1d2-38ab-4fda-bdcc-b2e44c6b96e3 .cart-item {
	border: 1px solid #E1E1E1;
	padding: 25px 0;
	position: relative;
}

#cmp_b438e1d2-38ab-4fda-bdcc-b2e44c6b96e3 .product-main {
	margin: 0 0 15px 0;
}

#cmp_b438e1d2-38ab-4fda-bdcc-b2e44c6b96e3 .product-label p {
	margin: 0;
}

#cmp_b438e1d2-38ab-4fda-bdcc-b2e44c6b96e3 .product-label .info {
	color: rgb(73, 73, 74);
	text-align: right;
	text-transform: uppercase;
}

#cmp_b438e1d2-38ab-4fda-bdcc-b2e44c6b96e3 .product-label .meta {
	color: #49494A;
	font-size: 16px;
}

#cmp_b438e1d2-38ab-4fda-bdcc-b2e44c6b96e3 .product-rem-btn {
	position: absolute;
	right: 1%;
	top: 1%;
}

#cmp_b438e1d2-38ab-4fda-bdcc-b2e44c6b96e3 figure {
	margin: 0 0 15px 0;
}

#cmp_b438e1d2-38ab-4fda-bdcc-b2e44c6b96e3 .cart-subtotal {
	margin: 50px 0 0 0;
}

#cmp_b438e1d2-38ab-4fda-bdcc-b2e44c6b96e3 .cart-subtotal h2 {
	margin: 0 0 15px 0;
}

#cmp_b438e1d2-38ab-4fda-bdcc-b2e44c6b96e3 .cart-subtotal h3 {
	margin: 0 0 25px 0;
	text-transform: uppercase;
}

#cmp_b438e1d2-38ab-4fda-bdcc-b2e44c6b96e3 .cart-subtotal p {
	margin: 0 0 25px 0;
}

@media (min-width: 768px) {
	#cmp_b438e1d2-38ab-4fda-bdcc-b2e44c6b96e3 .cart-item {
		border-width: 0 0 1px 0;
	}
	#cmp_b438e1d2-38ab-4fda-bdcc-b2e44c6b96e3 .product-rem-btn {
		top: 40%;
	}
	#cmp_b438e1d2-38ab-4fda-bdcc-b2e44c6b96e3 figure {
		margin: 0;
	}
}

/*
 * components/whats_inside/cmp_042c90bc-cbbf-4df6-9a39-c51f5166368d/component.css
 */
#cmp_042c90bc-cbbf-4df6-9a39-c51f5166368d {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	background-color: #FAFAFA;
}

#cmp_042c90bc-cbbf-4df6-9a39-c51f5166368d .content {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	margin: 0 auto;
	padding: 5px;
}

#cmp_042c90bc-cbbf-4df6-9a39-c51f5166368d .square-image {
	height: 225px;
	margin: 0 0 15px 0;
	width: 225px;
}

#cmp_042c90bc-cbbf-4df6-9a39-c51f5166368d h1 {
	color: rgb(73, 73, 74);
	font-family: "Windsor";/*Montserrat;*/
	font-size: 60px;
}

#cmp_042c90bc-cbbf-4df6-9a39-c51f5166368d h2 {
	color: rgb(52, 150, 62);
	font-family: "Windsor";/*Montserrat*/;
	font-size: 26px;
}

#cmp_042c90bc-cbbf-4df6-9a39-c51f5166368d h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
}

#cmp_042c90bc-cbbf-4df6-9a39-c51f5166368d p {
	color: #B0B0B0;
	font-family: Lato;
	font-size: 13px;
}

/*
 * components/whats_inside/cmp_24cd1ae3-f481-4f45-9085-d3cdea011781/component.css
 */
#cmp_24cd1ae3-f481-4f45-9085-d3cdea011781 img {
	max-width: 100%;
}

/*
 * components/whats_inside/cmp_57b37e3d-bbdd-48f7-80d3-1e508ed12214/component.css
 */
#cmp_57b37e3d-bbdd-48f7-80d3-1e508ed12214 {
	background-color: #FFFFFF;
}

#cmp_57b37e3d-bbdd-48f7-80d3-1e508ed12214 h1 {
	color: rgb(73, 73, 74);
	font-family: "Windsor";/*Montserrat;*/
	font-size: 72px;
	margin: 0 0 25px 0;
}

#cmp_57b37e3d-bbdd-48f7-80d3-1e508ed12214 h2 {
	color: rgb(73, 73, 74);
	font-family: Montserrat;
	font-size: 26px;
	margin: 0 0 25px 0;
}

#cmp_57b37e3d-bbdd-48f7-80d3-1e508ed12214 h3 {
	color: #49494A;
	font-family: Montserrat;
	font-size: 16px;
	margin: 0 0 25px 0;
}

#cmp_57b37e3d-bbdd-48f7-80d3-1e508ed12214 p {
	color: rgb(77, 77, 77);
	font-family: Lato;
	font-size: 16px;
	margin: 0 0 25px 0;
}