/*
 * css/style.css
 */
/* Globals
------------------------------*/
body {
	background-color: #FFFFFF;
	color: rgb(151, 153, 156);
	font-family: Lato;
	font-size: 14px;
	letter-spacing: 0.077em;
	line-height: 1.5em;
}

.container-fluid {
	max-width: 1140px;
}

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

section.container-fluid {
	padding-right: .9375rem;
	padding-left: .9375rem;
	margin-right: auto;
	margin-left: auto;
}

h1 {
	color: #333333;
	font-family: Architects Daughter;
	font-size: 45px;
}

h2 {
	color: #333333;
	font-family: Architects Daughter;
	font-size: 22px;
}

h3 {
	color: #333333;
	font-family: Lato;
	font-size: 18px;
}

p {
	line-height: 1.5em;
	margin-bottom: 0.5rem;
}

a,
.btn-link {
	color: rgb(232, 181, 206);
}

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

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

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

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

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

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

.row {
	margin-left: 0;
	margin-right: 0;
}

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

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

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

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

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

@media(min-width: 768px) {
	.square-row > .col-md-6 {
		min-height: calc((100vw - 2.75rem) / 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(1110px / 2); /* half the container width */
	}
	.square-row > .col-md-4 {
		min-height: calc(1110px / 3); /* third the container width */
	}

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

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

.nav-pills .nav-link.active,
.nav-pills .nav-link.active:focus,
.nav-pills .nav-link.active:hover,
.nav-pills .nav-link.active:active,
.nav-pills .nav-item.open .nav-link,
.nav-pills .nav-item.open .nav-link:focus,
.nav-pills .nav-item.open .nav-link:hover,
.nav-pills .nav-item.open .nav-link:active {
	background-color: rgb(232, 181, 206);
}

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

.panel-body {
	padding: 15px;
}

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

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

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

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

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

/* Buttons */
.btn {
	border-radius: 0px;
	border: none;
	padding: 1em 3em;
	font-size: 15px;
}

.btn-small {
	padding: 0.6em 1.8em;
	border: 1px solid rgb(232, 181, 206);
	border-radius: 15px;
	color: rgb(232, 181, 206);
}

.btn-small:hover,
.btn-small:focus,
.btn-small:active,
.btn-small:active:focus {
	background-color: rgb(0, 177, 210);
	border: 1px solid rgb(0, 177, 210);
	color: rgb(232, 181, 206) !important;
}

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

.btn-primary {
	background-color: rgb(232, 181, 206);
	color: #FFFFFF;
	font-family: Architects Daughter;
	font-size: 15px;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus {
	background-color: rgb(0, 177, 210);
	color: #FFFFFF;
}

.btn-secondary {
	background-color: rgb(0, 177, 210);
	color: #FAFAFA;
	font-family: Architects Daughter;
	font-size: 15px;
	letter-spacing: 0.167em;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:active:focus {
	background-color: rgb(0, 177, 210);
	color: #FAFAFA;
}

.btn-empty {
	background-color: transparent;
	color: rgb(232, 181, 206);
	border: 1px solid rgb(232, 181, 206);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Orders List
------------------------------*/
.orders-list {
	width: 100%;
	margin: 25px 0;
}
.orders-list h1 {
	text-align: center;
	color: #333333;
}
.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;
}

#gift-form .row label {
	font-size: 14px;
}

.checkout_content .styled_cart .total-row th,
.checkout_content .styled_cart .total-row #total_price {
	font-size: 30px;
}

.checkout_content.newco #id_coupon_code {
	min-width: 200px;
}

.checkout_content #checkout_button {
	background-color: rgb(232, 181, 206);
	border: none;
	color: #FFFFFF;
	font-family: Architects Daughter;
	font-size: 15px;
	letter-spacing: 0.167em;
	padding: 1.2em 5em;
}

.checkout_content #checkout_button:hover,
.checkout_content #checkout_button:focus,
.checkout_content #checkout_button:active,
.checkout_content #checkout_button:active:focus {
	background-color: rgb(0, 177, 210);
	color: #FFFFFF;
}

.checkout_content #gift-form .row .col-xs-12 label {
	margin-bottom: 0;
}

#checkout-checkout {
	padding-bottom: 60px;
}

@media(max-width: 768px) {
	.checkout_content .cta {
		text-align: center;
	}

	.checkout_content #gift-form .row .col-xs-12 {
		margin-left: 10px;
	}
}

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

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

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

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

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

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

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

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

.address-container {
	width: 100%;
}

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

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

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

.address-container {
	width: 100%;
}

.errors {
	margin: 25px 0;
}

.cratejoy-loading-icon {
	color: rgb(232, 181, 206);
}

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

#skip_button:hover,
#skip_button:focus,
#skip_button:active,
input[type="radio"]:checked + label.cj-btn, #skip_button.skipped {
	background-color: rgb(0, 177, 210);
	border-color: rgb(0, 177, 210);
	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;
	}

	.col-xs-12,
	.container-fluid {
		padding-left: 0;
		padding-right: 0;
	}

	section.container-fluid {
		padding-right: 0;
		padding-left: 0;
		margin-right: auto;
		margin-left: auto;
	}
}

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

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

/*
 * components/about/cmp_49205a6e-c8b5-48e3-b194-b3c69f8e2db6/component.css
 */
#cmp_49205a6e-c8b5-48e3-b194-b3c69f8e2db6 {
	padding-bottom: 60px;
	background-color: #FFFFFF;
}

#cmp_49205a6e-c8b5-48e3-b194-b3c69f8e2db6 .content {
	margin: 0 auto;
	max-width: 250px;
	flex-direction: column;
}

#cmp_49205a6e-c8b5-48e3-b194-b3c69f8e2db6 h1 {
	color: #333333;
	font-family: Architects Daughter;
	font-size: 45px;
}

#cmp_49205a6e-c8b5-48e3-b194-b3c69f8e2db6 h2 {
	color: #333333;
	font-family: Architects Daughter;
	font-size: 22px;
}

#cmp_49205a6e-c8b5-48e3-b194-b3c69f8e2db6 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 18px;
	margin-bottom: 2rem;
}

#cmp_49205a6e-c8b5-48e3-b194-b3c69f8e2db6 p {
	color: rgb(151, 153, 156);
	font-family: Lato;
	font-size: 14px;
	margin-bottom: 1rem;
}

#cmp_49205a6e-c8b5-48e3-b194-b3c69f8e2db6 img {
	margin-bottom: 1rem;
}

#cmp_49205a6e-c8b5-48e3-b194-b3c69f8e2db6 .component-quote-panel-header {
	padding-bottom: 25px;
}
/*
 * components/about/cmp_a889c587-a39c-4dde-8234-9b3a8195c13c/component.css
 */
#cmp_a889c587-a39c-4dde-8234-9b3a8195c13c {
	padding-bottom: 40px;
}

#cmp_a889c587-a39c-4dde-8234-9b3a8195c13c .img-fluid {
	width: 100%;
}

#cmp_a889c587-a39c-4dde-8234-9b3a8195c13c .hero-content {
	background-color: #FFFFFF;
	padding: 25px;
}

#cmp_a889c587-a39c-4dde-8234-9b3a8195c13c .hero-content h1 {
	color: #333333;
	font-family: Architects Daughter;
	font-size: 45px;
}

#cmp_a889c587-a39c-4dde-8234-9b3a8195c13c .hero-content h2 {
	color: #333333;
	font-family: Architects Daughter;
	font-size: 22px;
}

#cmp_a889c587-a39c-4dde-8234-9b3a8195c13c .hero-content h3 {
	color: rgb(0, 0, 0);
	font-family: Architects Daughter;
	font-size: 24px;
}

#cmp_a889c587-a39c-4dde-8234-9b3a8195c13c .hero-content p {
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}

#cmp_a889c587-a39c-4dde-8234-9b3a8195c13c .hero-content .btn {
	background-color: rgb(232, 181, 206);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 15px;
}

#cmp_a889c587-a39c-4dde-8234-9b3a8195c13c .hero-content .btn:hover {
	background-color: rgb(0, 177, 210);
	color: #FFFFFF;
}

@media (min-width: 768px) {
	#cmp_a889c587-a39c-4dde-8234-9b3a8195c13c {
		padding-bottom: 60px;
	}
}

#cmp_a889c587-a39c-4dde-8234-9b3a8195c13c ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}

#cmp_a889c587-a39c-4dde-8234-9b3a8195c13c ul {
	list-style: disc;
	list-style-position: inside;
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}

#cmp_a889c587-a39c-4dde-8234-9b3a8195c13c h2 {
	margin-bottom: 13px;
}
/*
 * components/about/cmp_cbdfbf21-3017-4cc4-a570-4baf5fd2c5ad/component.css
 */
#cmp_cbdfbf21-3017-4cc4-a570-4baf5fd2c5ad {
	background-color: #FFFFFF;
	color: rgb(151, 153, 156);
	padding-bottom: 60px;
}

#cmp_cbdfbf21-3017-4cc4-a570-4baf5fd2c5ad h1 {
	color: #333333;
	font-family: Architects Daughter;
	font-size: 45px;
}

#cmp_cbdfbf21-3017-4cc4-a570-4baf5fd2c5ad h2 {
	color: #333333;
	font-family: Architects Daughter;
	font-size: 22px;
}

#cmp_cbdfbf21-3017-4cc4-a570-4baf5fd2c5ad h3 {
	color: rgb(0, 0, 0);
	font-family: Architects Daughter;
	font-size: 24px;
}

#cmp_cbdfbf21-3017-4cc4-a570-4baf5fd2c5ad p {
	color: rgb(151, 153, 156);
	font-family: Lato;
	font-size: 14px;
}

#cmp_cbdfbf21-3017-4cc4-a570-4baf5fd2c5ad .content {
	padding: 25px;
}

@media (min-width: 768px) {
	#cmp_cbdfbf21-3017-4cc4-a570-4baf5fd2c5ad {
		padding-bottom: 60px;
	}
}

#cmp_cbdfbf21-3017-4cc4-a570-4baf5fd2c5ad ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(151, 153, 156);
	font-family: Lato;
	font-size: 14px;
}

#cmp_cbdfbf21-3017-4cc4-a570-4baf5fd2c5ad ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(151, 153, 156);
	font-family: Lato;
	font-size: 14px;
}

#cmp_cbdfbf21-3017-4cc4-a570-4baf5fd2c5ad h2 {
	margin-bottom: 13px;
}
/*
 * components/checkout/cmp_6fafd135-86f3-4da8-a7ea-bc69473d1537/component.css
 */
#cmp_6fafd135-86f3-4da8-a7ea-bc69473d1537 .checkout_content {
  overflow: auto;
}

#cmp_6fafd135-86f3-4da8-a7ea-bc69473d1537 .checkout_content section {
  border-color: #F5F5F5;
}

#cmp_6fafd135-86f3-4da8-a7ea-bc69473d1537 .cart_listing table {
  border-color: #F5F5F5;
}

/*
 * components/customer/forgot_password/cmp_4589ceee-d55a-4a43-b54d-127d52116b0f/component.css
 */
#cmp_4589ceee-d55a-4a43-b54d-127d52116b0f {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_4589ceee-d55a-4a43-b54d-127d52116b0f h1 {
	color: #333333;
	font-family: Architects Daughter;
	font-size: 45px;
}

#cmp_4589ceee-d55a-4a43-b54d-127d52116b0f h2 {
	color: #333333;
	font-family: Architects Daughter;
	font-size: 22px;
}

#cmp_4589ceee-d55a-4a43-b54d-127d52116b0f h3 {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 18px;
}

#cmp_4589ceee-d55a-4a43-b54d-127d52116b0f p {
	color: rgb(151, 153, 156);
	font-family: Lato;
	font-size: 14px;
}

#cmp_4589ceee-d55a-4a43-b54d-127d52116b0f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(151, 153, 156);
	font-family: Lato;
	font-size: 14px;
}

#cmp_4589ceee-d55a-4a43-b54d-127d52116b0f ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(151, 153, 156);
	font-family: Lato;
	font-size: 14px;
}

#cmp_4589ceee-d55a-4a43-b54d-127d52116b0f  {
	padding: 50px 0;
}
#cmp_4589ceee-d55a-4a43-b54d-127d52116b0f h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/forgot_password/cmp_ab37c134-48df-416e-a630-edf9efc447c5/component.css
 */

#cmp_ab37c134-48df-416e-a630-edf9efc447c5  {
	padding-bottom: 120px;
}
/*
 * components/customer/login/cmp_52d0fbfa-3677-4cdc-a29f-ae166e058269/component.css
 */

#cmp_52d0fbfa-3677-4cdc-a29f-ae166e058269  {
	padding-bottom: 120px;
}
/*
 * components/customer/login/cmp_6b84081f-8312-4a65-9ff5-55e3eb12e639/component.css
 */
#cmp_6b84081f-8312-4a65-9ff5-55e3eb12e639 {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_6b84081f-8312-4a65-9ff5-55e3eb12e639 h1 {
	color: #333333;
	font-family: Architects Daughter;
	font-size: 45px;
}

#cmp_6b84081f-8312-4a65-9ff5-55e3eb12e639 h2 {
	color: #333333;
	font-family: Architects Daughter;
	font-size: 22px;
}

#cmp_6b84081f-8312-4a65-9ff5-55e3eb12e639 h3 {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 18px;
}

#cmp_6b84081f-8312-4a65-9ff5-55e3eb12e639 p {
	color: rgb(151, 153, 156);
	font-family: Lato;
	font-size: 14px;
}

#cmp_6b84081f-8312-4a65-9ff5-55e3eb12e639 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(151, 153, 156);
	font-family: Lato;
	font-size: 14px;
}

#cmp_6b84081f-8312-4a65-9ff5-55e3eb12e639 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(151, 153, 156);
	font-family: Lato;
	font-size: 14px;
}

#cmp_6b84081f-8312-4a65-9ff5-55e3eb12e639  {
	padding: 50px 0;
}
#cmp_6b84081f-8312-4a65-9ff5-55e3eb12e639 h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/order/cmp_21c39de5-28dd-441c-a4e9-5d81eaafaced/component.css
 */

/*
 * components/customer/orders/cmp_5c0aa180-b627-4d92-a0bd-f48588e6baa4/component.css
 */

/*
 * components/customer/password_reset/cmp_000626cb-c849-44ad-a103-2a77042e9ea8/component.css
 */

#cmp_000626cb-c849-44ad-a103-2a77042e9ea8  {
	padding-bottom: 120px;
}
/*
 * components/customer/password_reset/cmp_00c3cc35-4ffa-4e26-bab1-ce407df730a5/component.css
 */
#cmp_00c3cc35-4ffa-4e26-bab1-ce407df730a5 {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_00c3cc35-4ffa-4e26-bab1-ce407df730a5 h1 {
	color: #333333;
	font-family: Architects Daughter;
	font-size: 45px;
}

#cmp_00c3cc35-4ffa-4e26-bab1-ce407df730a5 h2 {
	color: #333333;
	font-family: Architects Daughter;
	font-size: 22px;
}

#cmp_00c3cc35-4ffa-4e26-bab1-ce407df730a5 h3 {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 18px;
}

#cmp_00c3cc35-4ffa-4e26-bab1-ce407df730a5 p {
	color: rgb(151, 153, 156);
	font-family: Lato;
	font-size: 14px;
}

#cmp_00c3cc35-4ffa-4e26-bab1-ce407df730a5 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(151, 153, 156);
	font-family: Lato;
	font-size: 14px;
}

#cmp_00c3cc35-4ffa-4e26-bab1-ce407df730a5 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(151, 153, 156);
	font-family: Lato;
	font-size: 14px;
}

#cmp_00c3cc35-4ffa-4e26-bab1-ce407df730a5  {
	padding: 50px 0;
}
#cmp_00c3cc35-4ffa-4e26-bab1-ce407df730a5 h1 {
	margin-bottom: 15px;
}
/*
 * components/faq/cmp_0e1fbfa0-7736-418d-8087-a95630c3fe18/component.css
 */
#cmp_0e1fbfa0-7736-418d-8087-a95630c3fe18 {
	background-color: #FFFFFF;
	color: rgb(151, 153, 156);
	padding-bottom: 60px;
}

#cmp_0e1fbfa0-7736-418d-8087-a95630c3fe18 h1 {
	color: #333333;
	font-family: Architects Daughter;
	font-size: 45px;
}

#cmp_0e1fbfa0-7736-418d-8087-a95630c3fe18 h2 {
	color: rgb(231, 154, 207);
	font-family: Architects Daughter;
	font-size: 22px;
}

#cmp_0e1fbfa0-7736-418d-8087-a95630c3fe18 h3 {
	color: rgb(231, 154, 207);
	font-family: Lato;
	font-size: 18px;
}

#cmp_0e1fbfa0-7736-418d-8087-a95630c3fe18 p {
	color: rgb(151, 153, 156);
	font-family: Lato;
	font-size: 14px;
}

#cmp_0e1fbfa0-7736-418d-8087-a95630c3fe18 .content {
	padding: 25px;
}

@media (min-width: 768px) {
	#cmp_0e1fbfa0-7736-418d-8087-a95630c3fe18 {
		padding-bottom: 60px;
	}
}

#cmp_0e1fbfa0-7736-418d-8087-a95630c3fe18 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(151, 153, 156);
	font-family: Lato;
	font-size: 14px;
}

#cmp_0e1fbfa0-7736-418d-8087-a95630c3fe18 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(151, 153, 156);
	font-family: Lato;
	font-size: 14px;
}

#cmp_0e1fbfa0-7736-418d-8087-a95630c3fe18 h2 {
	margin-bottom: 15px;
	margin-top: 40px;
}
/*
 * components/faq/cmp_b3978eb6-7498-4560-af46-359140f3e4f1/component.css
 */
#cmp_b3978eb6-7498-4560-af46-359140f3e4f1 {
	padding: 50px 0 15px;
	background-color: #FFFFFF;
	color: rgb(151, 153, 156);
}

#cmp_b3978eb6-7498-4560-af46-359140f3e4f1 h1 {
	color: #333333;
	font-family: Architects Daughter;
	font-size: 45px;
}

#cmp_b3978eb6-7498-4560-af46-359140f3e4f1 h2 {
	color: #333333;
	font-family: Architects Daughter;
	font-size: 22px;
}

#cmp_b3978eb6-7498-4560-af46-359140f3e4f1 h3 {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 18px;
}

#cmp_b3978eb6-7498-4560-af46-359140f3e4f1 p {
	color: rgb(151, 153, 156);
	font-family: Lato;
	font-size: 14px;
}

#cmp_b3978eb6-7498-4560-af46-359140f3e4f1 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(151, 153, 156);
	font-family: Lato;
	font-size: 14px;
}

#cmp_b3978eb6-7498-4560-af46-359140f3e4f1 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(151, 153, 156);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/global/cmp_8ee7fc7a-dd0d-4ecb-beba-896ca5d6685b/component.css
 */
#cmp_8ee7fc7a-dd0d-4ecb-beba-896ca5d6685b section.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_8ee7fc7a-dd0d-4ecb-beba-896ca5d6685b.navbar a:hover,
#cmp_8ee7fc7a-dd0d-4ecb-beba-896ca5d6685b.navbar a:focus,
#cmp_8ee7fc7a-dd0d-4ecb-beba-896ca5d6685b.navbar a:active {
	color: rgb(0, 177, 210);
}

#cmp_8ee7fc7a-dd0d-4ecb-beba-896ca5d6685b .navbar-news {
	padding: 8px 0;
	width: 100%;
	text-align: center;
}

#cmp_8ee7fc7a-dd0d-4ecb-beba-896ca5d6685b .navbar-news p {
	margin-bottom: 0px;
	padding: 5px;
}

#cmp_8ee7fc7a-dd0d-4ecb-beba-896ca5d6685b .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;

	max-width: 100%;
	color: #333333;
	font-family: Lato;
	font-size: 28px;
	margin: 0;
	padding: 15px;
	text-align: center;
}

#cmp_8ee7fc7a-dd0d-4ecb-beba-896ca5d6685b .navbar-brand img {
	max-width: 100%;
}

#cmp_8ee7fc7a-dd0d-4ecb-beba-896ca5d6685b .navbar-top {
	background-color: rgb(246, 227, 180);
	color: rgb(151, 153, 156);
	font-face: Lato;
	font-size: 14px;
	border-bottom: 1px solid #E7E7E7;
	padding: 0;
}

#cmp_8ee7fc7a-dd0d-4ecb-beba-896ca5d6685b button.navbar-toggler {
	background-color: #FFFFFF;
	border-radius: 0;
	color: rgb(151, 153, 156);
	font-size: 15px;
	letter-spacing: 0.167em;
	padding: 15px;
	border-top: 1px solid #E7E7E7;
	border-bottom: 1px solid #E7E7E7;
}

#cmp_8ee7fc7a-dd0d-4ecb-beba-896ca5d6685b.navbar .navbar-toggler:hover,
#cmp_8ee7fc7a-dd0d-4ecb-beba-896ca5d6685b.navbar .navbar-toggler:focus,
#cmp_8ee7fc7a-dd0d-4ecb-beba-896ca5d6685b.navbar .navbar-toggler:active {
	background-color: rgb(0, 177, 210);
	color: #FFFFFF;
}

#cmp_8ee7fc7a-dd0d-4ecb-beba-896ca5d6685b .navbar-nav {
	align-items: center;
	display: flex;
	flex-direction: column;
	margin: 0;
}

#cmp_8ee7fc7a-dd0d-4ecb-beba-896ca5d6685b .navbar-nav li {
	padding-top: 10px;
	padding-bottom: 10px;
}

#cmp_8ee7fc7a-dd0d-4ecb-beba-896ca5d6685b .navbar-nav .nav-link {
	color: rgb(0, 177, 210);
	font-family: Lato;
	font-size: 15px;;
	letter-spacing: 1px;
	padding: 15px;
	text-align: center;
}

#cmp_8ee7fc7a-dd0d-4ecb-beba-896ca5d6685b .navbar-nav .nav-link:hover,
#cmp_8ee7fc7a-dd0d-4ecb-beba-896ca5d6685b .navbar-nav .nav-link:focus,
#cmp_8ee7fc7a-dd0d-4ecb-beba-896ca5d6685b .navbar-nav .nav-link:active {
	color: rgb(0, 177, 210);
}

#cmp_8ee7fc7a-dd0d-4ecb-beba-896ca5d6685b .navbar-nav .nav-spacer {
	color: rgb(0, 177, 210);
	font-family: Lato;
	font-size: 15px;;
	letter-spacing: 1px;
	padding: 15px;
	text-align: center;
}

#cmp_8ee7fc7a-dd0d-4ecb-beba-896ca5d6685b .navbar-header {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	border: none;
}

#cmp_8ee7fc7a-dd0d-4ecb-beba-896ca5d6685b .navbar-header .navbar-nav {
	border: none;
	margin-bottom: 0;
}

#cmp_8ee7fc7a-dd0d-4ecb-beba-896ca5d6685b .container-fluid {
	width: 100%;
	max-width: 1140px;
}

#cmp_8ee7fc7a-dd0d-4ecb-beba-896ca5d6685b ul.dropdown-menu {
	margin-top: 0;
	border-radius: 0px;
	border-color: #E7E7E7;
}

#cmp_8ee7fc7a-dd0d-4ecb-beba-896ca5d6685b ul.dropdown-menu li a.nav-link {
	padding: 7px;
}

#cmp_8ee7fc7a-dd0d-4ecb-beba-896ca5d6685b .store-name {
	color: ;
	font-family: Lato;
	font-size: 28px;;
	padding: 20px;
}

@media (min-width: 768px) {
	#cmp_8ee7fc7a-dd0d-4ecb-beba-896ca5d6685b.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;
		padding-bottom: 0;
	}
	#cmp_8ee7fc7a-dd0d-4ecb-beba-896ca5d6685b .navbar-brand {
		padding: 0;
		padding-top: 20px;
		padding-bottom: 20px;
	}
	#cmp_8ee7fc7a-dd0d-4ecb-beba-896ca5d6685b .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_8ee7fc7a-dd0d-4ecb-beba-896ca5d6685b .navbar-nav {
		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;

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

		padding: 0;
		margin-bottom: 20px;
		border-top: 1px solid #E7E7E7;
		border-bottom: 1px solid #E7E7E7;

	}
	#cmp_8ee7fc7a-dd0d-4ecb-beba-896ca5d6685b .navbar-nav li {
		padding: 0;
		padding-left: 10px;
		padding-right: 10px;
	}
}

/*
 * components/global/cmp_ca058590-5570-41ee-a55d-233a1a0b2fe2/component.css
 */
#cmp_ca058590-5570-41ee-a55d-233a1a0b2fe2.footer {
	background-color: #F5F5F5;
	padding-top: 22px;
	padding-bottom: 22px;
}

#cmp_ca058590-5570-41ee-a55d-233a1a0b2fe2,
#cmp_ca058590-5570-41ee-a55d-233a1a0b2fe2 p,
#cmp_ca058590-5570-41ee-a55d-233a1a0b2fe2 h1,
#cmp_ca058590-5570-41ee-a55d-233a1a0b2fe2 h2,
#cmp_ca058590-5570-41ee-a55d-233a1a0b2fe2 h3 {
	font-family: Lato;
	color: rgb(151, 153, 156);
}

#cmp_ca058590-5570-41ee-a55d-233a1a0b2fe2 h3 {
	margin-bottom: 10px;
}

#cmp_ca058590-5570-41ee-a55d-233a1a0b2fe2,
#cmp_ca058590-5570-41ee-a55d-233a1a0b2fe2 p {
	font-weight: lighter;
}

/* Navigation list */

#cmp_ca058590-5570-41ee-a55d-233a1a0b2fe2 .footer-list .footer-link {
	color: #333333;
	font-family: Lato;
	font-size: ;
	text-transform: lowercase;
}

#cmp_ca058590-5570-41ee-a55d-233a1a0b2fe2 .footer-list .footer-link:hover,
#cmp_ca058590-5570-41ee-a55d-233a1a0b2fe2 .footer-list .footer-link:focus,
#cmp_ca058590-5570-41ee-a55d-233a1a0b2fe2 .footer-list .footer-link:active {
	color: rgb(0, 177, 210);
	text-decoration: none;
}

#cmp_ca058590-5570-41ee-a55d-233a1a0b2fe2 .footer-list .footer-item {
	padding: 3px 0;
}

/* follow us column */
#cmp_ca058590-5570-41ee-a55d-233a1a0b2fe2 .footer-follow-us svg path {
	fill: rgb(151, 153, 156);
}

#cmp_ca058590-5570-41ee-a55d-233a1a0b2fe2 .footer-follow-us a:hover svg path,
#cmp_ca058590-5570-41ee-a55d-233a1a0b2fe2 .footer-follow-us a:focus svg path,
#cmp_ca058590-5570-41ee-a55d-233a1a0b2fe2 .footer-follow-us a:active {
	fill: rgb(0, 177, 210);
}

#cmp_ca058590-5570-41ee-a55d-233a1a0b2fe2 .footer-follow-us {
	letter-spacing: 1px;
	text-align: center;

	border-top: 1px solid;
	border-color: #E7E7E7;

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

#cmp_ca058590-5570-41ee-a55d-233a1a0b2fe2 .footer-follow-us .social-icons-row {
	justify-content: center;
	margin-top: 18px;
	margin-bottom: 15px;
}

#cmp_ca058590-5570-41ee-a55d-233a1a0b2fe2 .footer-follow-us .social-icons-row a {
	margin: 0 8px;
}

#cmp_ca058590-5570-41ee-a55d-233a1a0b2fe2 .footer-follow-us p {
	padding-bottom: 15px;
	margin: 0;
}

/* contact us column */
#cmp_ca058590-5570-41ee-a55d-233a1a0b2fe2 .footer-contact-us a {
	display: inline-block;
}

#cmp_ca058590-5570-41ee-a55d-233a1a0b2fe2 .footer-bottom {
	border-top: 1px solid;
	border-color: #E7E7E7;
}

#cmp_ca058590-5570-41ee-a55d-233a1a0b2fe2 .footer-bottom > div {
	margin-top: 22px;
}

@media (min-width: 768px) {
	#cmp_ca058590-5570-41ee-a55d-233a1a0b2fe2 .footer-contact-us {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}

	#cmp_ca058590-5570-41ee-a55d-233a1a0b2fe2 .footer-follow-us {
		border-top: none;
		padding-top: 0;
	}

	#cmp_ca058590-5570-41ee-a55d-233a1a0b2fe2 .footer-bottom {
		text-align: left;
	}

	#cmp_ca058590-5570-41ee-a55d-233a1a0b2fe2 .footer-cards {
		float: right;
		padding-top: 0;
	}
}

/*
 * components/index/cmp_449d14fa-31b7-4edb-bdf2-c3c48a3c8ec2/component.css
 */
#cmp_449d14fa-31b7-4edb-bdf2-c3c48a3c8ec2 {
	background-color: rgb(255, 255, 255);
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_449d14fa-31b7-4edb-bdf2-c3c48a3c8ec2 h1 {
	color: rgba(51, 51, 51, 0.89);
	font-family: Architects Daughter;
	font-size: 45px;
}

#cmp_449d14fa-31b7-4edb-bdf2-c3c48a3c8ec2 h2 {
	color: #333333;
	font-family: Architects Daughter;
	font-size: 8px;
}

#cmp_449d14fa-31b7-4edb-bdf2-c3c48a3c8ec2 h3 {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 18px;
}

#cmp_449d14fa-31b7-4edb-bdf2-c3c48a3c8ec2 p {
	color: rgb(151, 153, 156);
	font-family: Lato;
	font-size: 8px;
}

#cmp_449d14fa-31b7-4edb-bdf2-c3c48a3c8ec2 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(151, 153, 156);
	font-family: Lato;
	font-size: 8px;
}

#cmp_449d14fa-31b7-4edb-bdf2-c3c48a3c8ec2 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(151, 153, 156);
	font-family: Lato;
	font-size: 8px;
}

/*
 * components/index/cmp_5bc64b38-4d97-4ad1-9364-9770e463ab06/component.css
 */
#cmp_5bc64b38-4d97-4ad1-9364-9770e463ab06 img {
	max-width: 100%;
}

/*
 * components/index/cmp_881bb536-f7d7-4b03-b377-c4eb4208a527/component.css
 */
#cmp_881bb536-f7d7-4b03-b377-c4eb4208a527 {
}

#cmp_881bb536-f7d7-4b03-b377-c4eb4208a527 .img-container {
	padding: 0;
}

#cmp_881bb536-f7d7-4b03-b377-c4eb4208a527 .img-fluid {
	width: 100%;
}

#cmp_881bb536-f7d7-4b03-b377-c4eb4208a527 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 25px;
}

#cmp_881bb536-f7d7-4b03-b377-c4eb4208a527 .hero-content h1 {
	color: #333333;
	font-family: Architects Daughter;
	font-size: 45px;
}

#cmp_881bb536-f7d7-4b03-b377-c4eb4208a527 .hero-content h2 {
	color: #333333;
	font-family: Architects Daughter;
	font-size: 22px;
}

#cmp_881bb536-f7d7-4b03-b377-c4eb4208a527 .hero-content h3 {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 18px;
}

#cmp_881bb536-f7d7-4b03-b377-c4eb4208a527 .hero-content p {
	color: rgb(151, 153, 156);
	font-family: Lato;
	font-size: 14px;
}

#cmp_881bb536-f7d7-4b03-b377-c4eb4208a527 .hero-content .btn {
	background-color: ;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_881bb536-f7d7-4b03-b377-c4eb4208a527 .hero-content .btn:hover {
	background-color: ;
	color: ;
}

@media (min-width: 768px) {
	#cmp_881bb536-f7d7-4b03-b377-c4eb4208a527 {
		padding-top: 50px;
		padding-bottom: 50px;
	}
}

#cmp_881bb536-f7d7-4b03-b377-c4eb4208a527 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(151, 153, 156);
	font-family: Lato;
	font-size: 14px;
}

#cmp_881bb536-f7d7-4b03-b377-c4eb4208a527 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(151, 153, 156);
	font-family: Lato;
	font-size: 14px;
}

#cmp_881bb536-f7d7-4b03-b377-c4eb4208a527 h1 {
	margin-bottom: 15px;
}
/*
 * components/index/cmp_e5481c99-85ed-493e-adc7-25170aeaa976/component.css
 */
#cmp_e5481c99-85ed-493e-adc7-25170aeaa976 h1 {
	color: #FFFFFF;
	font-family: Architects Daughter;
	font-size: 45px;
}

#cmp_e5481c99-85ed-493e-adc7-25170aeaa976 h2 {
	color: rgb(0, 177, 210);
	font-family: Architects Daughter;
	font-size: 22px;
}

#cmp_e5481c99-85ed-493e-adc7-25170aeaa976 h3 {
	color: rgb(13, 14, 14);
	font-family: Lato;
	font-size: 18px;
}

#cmp_e5481c99-85ed-493e-adc7-25170aeaa976 p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_e5481c99-85ed-493e-adc7-25170aeaa976 .component-hero {
	color: #FFFFFF;
	padding-top: 60px;
	padding-bottom: 60px;
}

#cmp_e5481c99-85ed-493e-adc7-25170aeaa976 .component-hero__content-row {
	padding: 10px 0;
}

#cmp_e5481c99-85ed-493e-adc7-25170aeaa976 .component-hero__button-row {
	padding: 10px 0 20px;
}

#cmp_e5481c99-85ed-493e-adc7-25170aeaa976 .btn {
	background-color: rgb(214, 149, 180);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 18px;
}

#cmp_e5481c99-85ed-493e-adc7-25170aeaa976 .btn:hover {
	background-color: rgb(0, 177, 210);
	color: #FFFFFF;
}

#cmp_e5481c99-85ed-493e-adc7-25170aeaa976 h1 {
	margin-bottom: 15px;
}
#cmp_e5481c99-85ed-493e-adc7-25170aeaa976 p {
	margin-bottom: 20px;
}
/*
 * components/shop/listing/cmp_4108652f-17c9-4573-959a-183807ce1883/component.css
 */
#cmp_4108652f-17c9-4573-959a-183807ce1883 .component-shop-tags {
	justify-content: center;
}

#cmp_4108652f-17c9-4573-959a-183807ce1883 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_5a488f01-baae-4d2e-83e8-0e72c727aac5/component.css
 */
#cmp_5a488f01-baae-4d2e-83e8-0e72c727aac5 {
	background-color: rgb(255, 255, 255);
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_5a488f01-baae-4d2e-83e8-0e72c727aac5 h1 {
	color: rgb(74, 173, 226);
	font-family: Architects Daughter;
	font-size: 45px;
}

#cmp_5a488f01-baae-4d2e-83e8-0e72c727aac5 h2 {
	color: #333333;
	font-family: Architects Daughter;
	font-size: 22px;
}

#cmp_5a488f01-baae-4d2e-83e8-0e72c727aac5 h3 {
	color: rgb(125, 191, 233);
	font-family: Architects Daughter;
	font-size: 17px;
}

#cmp_5a488f01-baae-4d2e-83e8-0e72c727aac5 p {
	color: rgb(151, 153, 156);
	font-family: Lato;
	font-size: 14px;
}

#cmp_5a488f01-baae-4d2e-83e8-0e72c727aac5 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(151, 153, 156);
	font-family: Lato;
	font-size: 14px;
}

#cmp_5a488f01-baae-4d2e-83e8-0e72c727aac5 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(151, 153, 156);
	font-family: Lato;
	font-size: 14px;
}

#cmp_5a488f01-baae-4d2e-83e8-0e72c727aac5  {
	padding: 50px 0 15px;
}
#cmp_5a488f01-baae-4d2e-83e8-0e72c727aac5 h1 {
	margin-bottom: 15px;
}
/*
 * components/shop/listing/cmp_6687cbc3-df46-48ae-ab92-96d125cea664/component.css
 */
#cmp_6687cbc3-df46-48ae-ab92-96d125cea664 {
	padding: 25px;
}

#cmp_6687cbc3-df46-48ae-ab92-96d125cea664 .shop-listing-item {
	color: rgb(151, 153, 156);
}

#cmp_6687cbc3-df46-48ae-ab92-96d125cea664 .shop-listing-item:hover,
#cmp_6687cbc3-df46-48ae-ab92-96d125cea664 .shop-listing-item:focus {
	text-decoration: none;
}

#cmp_6687cbc3-df46-48ae-ab92-96d125cea664 .shop-listing-item__image {
	background-size: cover;
	background-position: center center;
}

#cmp_6687cbc3-df46-48ae-ab92-96d125cea664 .shop-listing-item__name {
	margin: 10px 0;
}

#cmp_6687cbc3-df46-48ae-ab92-96d125cea664 .shop-listing-item__price {
	margin: 10px 0 30px;
}

#cmp_6687cbc3-df46-48ae-ab92-96d125cea664 .product_paging {
	-webkit-display: flex;
	-ms-display: flex;
	display: flex;
	justify-content: center;

	margin: 20px 0;
}

#cmp_6687cbc3-df46-48ae-ab92-96d125cea664 .product_page a,
#cmp_6687cbc3-df46-48ae-ab92-96d125cea664 .next_page a,
#cmp_6687cbc3-df46-48ae-ab92-96d125cea664 .prev_page a {
	display: block;
	padding: 12px 15px;
	margin: 0 2px;
	border: 1px solid #E0E0E0;
	border-radius: 5px;
}

#cmp_6687cbc3-df46-48ae-ab92-96d125cea664 .product_page.active a,
#cmp_6687cbc3-df46-48ae-ab92-96d125cea664 .product_page a:hover,
#cmp_6687cbc3-df46-48ae-ab92-96d125cea664 .product_page a:focus,
#cmp_6687cbc3-df46-48ae-ab92-96d125cea664 .next_page a:hover,
#cmp_6687cbc3-df46-48ae-ab92-96d125cea664 .next_page a:focus,
#cmp_6687cbc3-df46-48ae-ab92-96d125cea664 .prev_page a:hover,
#cmp_6687cbc3-df46-48ae-ab92-96d125cea664 .prev_page a:focus {
	text-decoration: none;
	background-color: #F9F9F9;
}

#cmp_6687cbc3-df46-48ae-ab92-96d125cea664 .product_page.active a {
	color: black;
}

#cmp_6687cbc3-df46-48ae-ab92-96d125cea664  {
	margin-top: 40px;
	margin-bottom: 40px;
}
/*
 * components/shop/listing/cmp_a5ebddd4-0f12-4fe9-ba97-41f17ba4e374/component.css
 */
#cmp_a5ebddd4-0f12-4fe9-ba97-41f17ba4e374 .component-shop-sort {
	justify-content: center;
	border-bottom: 1px solid #E7E7E7;
	padding: 15px;
}

#cmp_a5ebddd4-0f12-4fe9-ba97-41f17ba4e374 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

#cmp_a5ebddd4-0f12-4fe9-ba97-41f17ba4e374  {
}
/*
 * components/shop/product/cmp_51134758-c413-45f7-aa6a-b29ddc2524b4/component.css
 */
#cmp_51134758-c413-45f7-aa6a-b29ddc2524b4 {
	padding: 25px;
}

#cmp_51134758-c413-45f7-aa6a-b29ddc2524b4 .shop-product__name {
	margin-bottom: 10px;
}

#cmp_51134758-c413-45f7-aa6a-b29ddc2524b4 .shop-product__price {
	margin-bottom: 20px;
}

#cmp_51134758-c413-45f7-aa6a-b29ddc2524b4 .shop-product select {
	width: auto;
}

#cmp_51134758-c413-45f7-aa6a-b29ddc2524b4 .shop-product__add-to-cart {
	margin-bottom: 20px;
}

#cmp_51134758-c413-45f7-aa6a-b29ddc2524b4 .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin-bottom: 40px;
}

#cmp_51134758-c413-45f7-aa6a-b29ddc2524b4 .shop-product__review-share-desktop .col-xs-6 {
	padding-top: 10px;
}

#cmp_51134758-c413-45f7-aa6a-b29ddc2524b4 .shop-product__review-share-desktop .col-xs-6 + .col-xs-6 {
	border-left: 1px solid #E1E1E1;
}

#cmp_51134758-c413-45f7-aa6a-b29ddc2524b4  {
	margin-top: 40px;
	margin-bottom: 40px;
}
/*
 * components/shop/product/cmp_b9954aed-e259-4e15-a32c-d98b8d09cc42/component.css
 */
#cmp_b9954aed-e259-4e15-a32c-d98b8d09cc42 {
	padding: 50px 0 15px;
	background-color: ;
}

#cmp_b9954aed-e259-4e15-a32c-d98b8d09cc42 h1 {
	color: rgb(232, 181, 206);
	font-family: Architects Daughter;
	font-size: 45px;
}

#cmp_b9954aed-e259-4e15-a32c-d98b8d09cc42 h2 {
	color: rgb(0, 177, 210);
	font-family: Architects Daughter;
	font-size: 22px;
}

#cmp_b9954aed-e259-4e15-a32c-d98b8d09cc42 h3 {
	color: rgb(151, 153, 156);
	font-family: Lato;
	font-size: 18px;
}
/*
 * components/sold_out/cmp_82384a57-a3fa-4655-abbd-523e9749fdd0/component.css
 */
#cmp_82384a57-a3fa-4655-abbd-523e9749fdd0 {
	padding-bottom: 40px;
}

#cmp_82384a57-a3fa-4655-abbd-523e9749fdd0 .img-fluid {
	width: 100%;
}

#cmp_82384a57-a3fa-4655-abbd-523e9749fdd0 .hero-content {
	background-color: #FFFFFF;
	padding: 25px;
}

#cmp_82384a57-a3fa-4655-abbd-523e9749fdd0 .hero-content h1 {
	color: #333333;
	font-family: Lato;
	font-size: 45px;
}

#cmp_82384a57-a3fa-4655-abbd-523e9749fdd0 .hero-content h2 {
	color: #333333;
	font-family: Architects Daughter;
	font-size: 22px;
}

#cmp_82384a57-a3fa-4655-abbd-523e9749fdd0 .hero-content h3 {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 18px;
}

#cmp_82384a57-a3fa-4655-abbd-523e9749fdd0 .hero-content p {
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}

#cmp_82384a57-a3fa-4655-abbd-523e9749fdd0 .hero-content .btn {
	background-color: rgb(232, 181, 206);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 15px;
}

#cmp_82384a57-a3fa-4655-abbd-523e9749fdd0 .hero-content .btn:hover {
	background-color: rgb(0, 177, 210);
	color: #FFFFFF;
}

@media (min-width: 768px) {
	#cmp_82384a57-a3fa-4655-abbd-523e9749fdd0 {
		padding-bottom: 60px;
	}
}

#cmp_82384a57-a3fa-4655-abbd-523e9749fdd0 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}

#cmp_82384a57-a3fa-4655-abbd-523e9749fdd0 ul {
	list-style: disc;
	list-style-position: inside;
	color: #333333;
	font-family: Lato;
	font-size: 14px;
}

#cmp_82384a57-a3fa-4655-abbd-523e9749fdd0  {
	margin-top: 60px;
	margin-bottom: 60px;
}
#cmp_82384a57-a3fa-4655-abbd-523e9749fdd0 h2 {
	margin-bottom: 13px;
}
#cmp_82384a57-a3fa-4655-abbd-523e9749fdd0 img.img-fluid {
	width: auto;
}
/*
 * components/subscribe/cmp_57b69cfc-d2b3-4780-b115-f74e5a9624f6/component.css
 */
#cmp_57b69cfc-d2b3-4780-b115-f74e5a9624f6 {
	padding: 50px 0 15px;
	background-color: #FFFFFF;
	color: rgb(151, 153, 156);
}

#cmp_57b69cfc-d2b3-4780-b115-f74e5a9624f6 h1 {
	color: #333333;
	font-family: Architects Daughter;
	font-size: 45px;
}

#cmp_57b69cfc-d2b3-4780-b115-f74e5a9624f6 h2 {
	color: #333333;
	font-family: Architects Daughter;
	font-size: 22px;
}

#cmp_57b69cfc-d2b3-4780-b115-f74e5a9624f6 h3 {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 18px;
}

#cmp_57b69cfc-d2b3-4780-b115-f74e5a9624f6 p {
	color: rgb(151, 153, 156);
	font-family: Lato;
	font-size: 14px;
}

#cmp_57b69cfc-d2b3-4780-b115-f74e5a9624f6 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(151, 153, 156);
	font-family: Lato;
	font-size: 14px;
}

#cmp_57b69cfc-d2b3-4780-b115-f74e5a9624f6 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(151, 153, 156);
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/subscribe/cmp_baa09cef-c641-446b-877a-bd2078f95c1e/component.css
 */
#cmp_baa09cef-c641-446b-877a-bd2078f95c1e {
	background-color: #FFFFFF;
	padding-bottom: 60px;
}

#cmp_baa09cef-c641-446b-877a-bd2078f95c1e img {
	max-width: 285px;
	max-height: 190px;
	margin: auto;
}

#cmp_baa09cef-c641-446b-877a-bd2078f95c1e .sf-item {
	background-color: #FFFFFF;
	width: 285px;
	margin: auto;
}

#cmp_baa09cef-c641-446b-877a-bd2078f95c1e a.btn {
	margin-top: 12px;
}

#cmp_baa09cef-c641-446b-877a-bd2078f95c1e h3 {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 18px;
}

#cmp_baa09cef-c641-446b-877a-bd2078f95c1e p {
	color: rgb(151, 153, 156);
	font-family: Lato;
	font-size: 14px;
}
/*
 * components/subscribe_flow/survey_step/cmp_19f999aa-04a0-45cc-a83a-a377d1d691da/component.css
 */
#cmp_19f999aa-04a0-45cc-a83a-a377d1d691da {
	padding: 25px;
	margin-top: 20px;
	margin-bottom: 20px;
}

#cmp_19f999aa-04a0-45cc-a83a-a377d1d691da h2 {
	color: #333333;
	font-family: Architects Daughter;
	font-size: 22px;
	margin-top: 2rem;
	margin-bottom: 0.5rem;
}

#cmp_19f999aa-04a0-45cc-a83a-a377d1d691da p {
	color: rgb(151, 153, 156);
	font-family: Lato;
	font-size: 14px;
}

#cmp_19f999aa-04a0-45cc-a83a-a377d1d691da.survey p {
	margin-left:0.1rem;
	margin-bottom: 1rem;
}

#cmp_19f999aa-04a0-45cc-a83a-a377d1d691da.survey .radio input[type="radio"],
#cmp_19f999aa-04a0-45cc-a83a-a377d1d691da.survey .checkbox input[type="checkbox"] {
	margin-right: 0.5em;
}

#cmp_19f999aa-04a0-45cc-a83a-a377d1d691da .survey-error {
	color: rgb(151, 153, 156);
}

#cmp_19f999aa-04a0-45cc-a83a-a377d1d691da input,
#cmp_19f999aa-04a0-45cc-a83a-a377d1d691da textarea {
	color: rgb(151, 153, 156);
}
/*
 * components/subscribe_flow/survey_step/cmp_ae7194a8-d003-4831-9269-d42581f00eeb/component.css
 */
#cmp_ae7194a8-d003-4831-9269-d42581f00eeb {
	padding: 50px 0 15px;
	background-color: #FFFFFF;
}

#cmp_ae7194a8-d003-4831-9269-d42581f00eeb h1 {
	color: #333333;
	font-family: Architects Daughter;
	font-size: 45px;
}

#cmp_ae7194a8-d003-4831-9269-d42581f00eeb p {
	color: rgb(151, 153, 156);
	font-family: Lato;
	font-size: 14px;
}
/*
 * components/subscribe_flow/terms_step/cmp_534807f6-2624-4690-94e7-2b98294d16c9/component.css
 */
#cmp_534807f6-2624-4690-94e7-2b98294d16c9 {
	padding: 50px 0 15px;
	background-color: #FFFFFF;
}

#cmp_534807f6-2624-4690-94e7-2b98294d16c9 h1 {
	color: #333333;
	font-family: Architects Daughter;
	font-size: 45px;
}

#cmp_534807f6-2624-4690-94e7-2b98294d16c9 p {
	color: rgb(151, 153, 156);
	font-family: Lato;
	font-size: 14px;
}
/*
 * components/subscribe_flow/terms_step/cmp_63d08939-248c-4570-bcaa-7227b671bbb4/component.css
 */
#cmp_63d08939-248c-4570-bcaa-7227b671bbb4 {
	padding-bottom: 60px;
}

#cmp_63d08939-248c-4570-bcaa-7227b671bbb4 img {
	max-width: 285px;
	max-height: 190px;
	margin: auto;
}

#cmp_63d08939-248c-4570-bcaa-7227b671bbb4 .sf-item {
	width: 285px;
	margin: auto;
	background-color: #FFFFFF;
}

#cmp_63d08939-248c-4570-bcaa-7227b671bbb4 a.btn {
	margin-top: 12px;
}

#cmp_63d08939-248c-4570-bcaa-7227b671bbb4 h2 {
	color: #333333;
	font-family: Architects Daughter;
	font-size: 22px;
	margin-top: 2rem;
	margin-bottom: 0.5rem;
}

#cmp_63d08939-248c-4570-bcaa-7227b671bbb4 p {
	color: rgb(151, 153, 156);
	font-family: Lato;
	font-size: 14px;
}
/*
 * components/subscribe_flow/variant_step/cmp_c409629d-9346-4e2d-bff8-11bb6df1e565/component.css
 */
#cmp_c409629d-9346-4e2d-bff8-11bb6df1e565 {
	padding-bottom: 60px;
}

#cmp_c409629d-9346-4e2d-bff8-11bb6df1e565 img {
	max-width: 285px;
	max-height: 190px;
	margin: auto;
}

#cmp_c409629d-9346-4e2d-bff8-11bb6df1e565 .sf-item {
	width: 285px;
	margin: auto;
	background-color: #FFFFFF;
}

#cmp_c409629d-9346-4e2d-bff8-11bb6df1e565 a.btn {
	margin-top: 12px;
}

#cmp_c409629d-9346-4e2d-bff8-11bb6df1e565 h2 {
	color: #333333;
	font-family: Architects Daughter;
	font-size: 22px;
	margin-top: 2rem;
	margin-bottom: 0.5rem;
}

#cmp_c409629d-9346-4e2d-bff8-11bb6df1e565 p {
	color: rgb(151, 153, 156);
	font-family: Lato;
	font-size: 14px;
}
/*
 * components/subscribe_flow/variant_step/cmp_ef8a2806-1b76-41b8-9599-bffa45e34c70/component.css
 */
#cmp_ef8a2806-1b76-41b8-9599-bffa45e34c70 {
	padding: 50px 0 15px;
	background-color: #FFFFFF;
}

#cmp_ef8a2806-1b76-41b8-9599-bffa45e34c70 h1 {
	color: #333333;
	font-family: Architects Daughter;
	font-size: 45px;
}

#cmp_ef8a2806-1b76-41b8-9599-bffa45e34c70 p {
	color: rgb(151, 153, 156);
	font-family: Lato;
	font-size: 14px;
}
/*
 * components/view-cart/cmp_5d49826e-c659-4de1-80b7-4ba7c2045cff/component.css
 */
#cmp_5d49826e-c659-4de1-80b7-4ba7c2045cff {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_5d49826e-c659-4de1-80b7-4ba7c2045cff h1 {
	color: #333333;
	font-family: Architects Daughter;
	font-size: 45px;
}

#cmp_5d49826e-c659-4de1-80b7-4ba7c2045cff h2 {
	color: #333333;
	font-family: Architects Daughter;
	font-size: 22px;
}

#cmp_5d49826e-c659-4de1-80b7-4ba7c2045cff h3 {
	color: rgb(0, 0, 0);
	font-family: Lato;
	font-size: 18px;
}

#cmp_5d49826e-c659-4de1-80b7-4ba7c2045cff p {
	color: rgb(151, 153, 156);
	font-family: Lato;
	font-size: 14px;
}

#cmp_5d49826e-c659-4de1-80b7-4ba7c2045cff ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(151, 153, 156);
	font-family: Lato;
	font-size: 14px;
}

#cmp_5d49826e-c659-4de1-80b7-4ba7c2045cff ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(151, 153, 156);
	font-family: Lato;
	font-size: 14px;
}

#cmp_5d49826e-c659-4de1-80b7-4ba7c2045cff  {
	padding: 50px 0;;
}
#cmp_5d49826e-c659-4de1-80b7-4ba7c2045cff h1 {
	margin-bottom: 15px;
}
/*
 * components/view-cart/cmp_cc866de1-e631-4f0f-894a-b46f7f5491e6/component.css
 */
#cmp_cc866de1-e631-4f0f-894a-b46f7f5491e6 {
	padding: 15px 15px 100px 15px;
}

#cmp_cc866de1-e631-4f0f-894a-b46f7f5491e6 .cart-thead {
	border-bottom: 1px solid #E7E7E7;
	padding: 10px 0;
}

#cmp_cc866de1-e631-4f0f-894a-b46f7f5491e6 .cart-thead h3 {
	text-transform: uppercase;
	color: rgb(0, 0, 0);
}

#cmp_cc866de1-e631-4f0f-894a-b46f7f5491e6 .cart-item {
	border: 1px solid #E7E7E7;
	padding: 25px 0;
	position: relative;
}

#cmp_cc866de1-e631-4f0f-894a-b46f7f5491e6 .product-main {
	margin-bottom: 15px;
}

#cmp_cc866de1-e631-4f0f-894a-b46f7f5491e6 .product-label p {
	margin: 0;
}

#cmp_cc866de1-e631-4f0f-894a-b46f7f5491e6 .product-label .info {
	color: rgb(0, 177, 210);
	text-align: right;
	text-transform: uppercase;
}

#cmp_cc866de1-e631-4f0f-894a-b46f7f5491e6 .product-label .meta {
	color: rgb(0, 0, 0);
	font-size: 18px;
}

#cmp_cc866de1-e631-4f0f-894a-b46f7f5491e6 .product-rem-btn {
	position: absolute;
	right: 1%;
	top: 1%;
}

#cmp_cc866de1-e631-4f0f-894a-b46f7f5491e6 figure {
	margin: 0 0 15px 0;
}

#cmp_cc866de1-e631-4f0f-894a-b46f7f5491e6 .cart-subtotal {
	margin: 50px 0 0 0;
}

#cmp_cc866de1-e631-4f0f-894a-b46f7f5491e6 .cart-subtotal h1 {
	margin: 0 0 15px 0;
}

#cmp_cc866de1-e631-4f0f-894a-b46f7f5491e6 .cart-subtotal h3 {
	margin: 0 0 25px 0;
	text-transform: uppercase;
}

#cmp_cc866de1-e631-4f0f-894a-b46f7f5491e6 .cart-subtotal p {
	margin: 0 0 25px 0;
}

@media (min-width: 768px) {
	#cmp_cc866de1-e631-4f0f-894a-b46f7f5491e6 .cart-item {
		border-width: 0 0 1px 0;
	}
	#cmp_cc866de1-e631-4f0f-894a-b46f7f5491e6 .product-rem-btn {
		top: 40%;
	}
	#cmp_cc866de1-e631-4f0f-894a-b46f7f5491e6 figure {
		margin: 0;
	}
	#cmp_cc866de1-e631-4f0f-894a-b46f7f5491e6 div .meta {
		padding-left: 0;
	}
}