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

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

h1 {
	color: #333333;
	font-family: Abril Fatface;
	font-size: 36px;
}

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

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

p {
	line-height: 1.5em;
}

a,
.btn-link {
	color: #53bfc7;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.nav-pills .nav-link.active,
.nav-pills .nav-link.active:focus,
.nav-pills .nav-link.active:hover,
.nav-pills .nav-link.active:active,
.nav-pills .nav-item.open .nav-link,
.nav-pills .nav-item.open .nav-link:focus,
.nav-pills .nav-item.open .nav-link:hover,
.nav-pills .nav-item.open .nav-link:active {
	background-color: #53bfc7;
}

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

.panel-body {
	padding: 15px;
}

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

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

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

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

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

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

.btn-small {
	padding: 0.6em 1.8em;
	border: 1px solid #53bfc7;
	border-radius: 15px;
	color: #53bfc7;
}

.btn-small:hover,
.btn-small:focus,
.btn-small:active,
.btn-small:active:focus {
	background-color: #333333;
	border: 1px solid #333333;
	color: #53bfc7 !important;
}

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

.btn-primary {
	background-color: #53bfc7;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
	letter-spacing: 0.167em;
}

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

.btn-secondary {
	background-color: rgb(122, 81, 158);
	color: #FAFAFA;
	font-family: Lato;
	font-size: 14px;
	letter-spacing: 0.167em;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:active:focus {
	background-color: #39A6AE;
	color: #FAFAFA;
}

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

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

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

.checkout_content #checkout_button {
	background-color: #53bfc7;
	border: none;
	border-radius: 25px;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
	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: #39A6AE;
	color: #FFFFFF;
}

/* 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: #53bfc7;
}

.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 #53bfc7;
	color: #53bfc7;
	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: #39A6AE;
	border-color: #39A6AE;
	text-decoration: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.sidebar-offcanvas {
}

/*
 * components/checkout/cmp_b402d344-dd2c-4024-823f-1cafc51df1d4/component.css
 */
#cmp_b402d344-dd2c-4024-823f-1cafc51df1d4 .checkout_content {
	overflow: auto;
}

#cmp_b402d344-dd2c-4024-823f-1cafc51df1d4 .checkout_content section {
	border-color: #F5F5F5;
}

#cmp_b402d344-dd2c-4024-823f-1cafc51df1d4 .cart_listing table {
	border-color: #F5F5F5;
}

/*
 * components/customer/account/cmp_0e220ca9-5808-4d9c-afe3-7b2e4d6684bb/component.css
 */

/*
 * components/customer/edit/cmp_1fe6f385-cd53-461e-ba99-c56d82befad1/component.css
 */

/*
 * components/customer/forgot_password/cmp_50c168d1-1ad3-4fa7-8b48-d2a86326248b/component.css
 */
#cmp_50c168d1-1ad3-4fa7-8b48-d2a86326248b {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_50c168d1-1ad3-4fa7-8b48-d2a86326248b h1 {
	color: #333333;
	font-family: Abril Fatface;
	font-size: 36px;
}

#cmp_50c168d1-1ad3-4fa7-8b48-d2a86326248b h2 {
	color: #333333;
	font-family: Lato;
	font-size: 24px;
}

#cmp_50c168d1-1ad3-4fa7-8b48-d2a86326248b h3 {
	color: #333333;
	font-family: Lato;
	font-size: 16px;
}

#cmp_50c168d1-1ad3-4fa7-8b48-d2a86326248b p {
	color: #979797;
	font-family: Lato;
	font-size: 14px;
}

#cmp_50c168d1-1ad3-4fa7-8b48-d2a86326248b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #979797;
	font-family: Lato;
	font-size: 14px;
}

#cmp_50c168d1-1ad3-4fa7-8b48-d2a86326248b ul {
	list-style: disc;
	list-style-position: inside;
	color: #979797;
	font-family: Lato;
	font-size: 14px;
}

#cmp_50c168d1-1ad3-4fa7-8b48-d2a86326248b  {
	padding: 50px 0;
}
#cmp_50c168d1-1ad3-4fa7-8b48-d2a86326248b h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/forgot_password/cmp_9722a94e-9288-43a3-8a7d-f39bda858cf4/component.css
 */

#cmp_9722a94e-9288-43a3-8a7d-f39bda858cf4  {
	padding-bottom: 120px;
}
/*
 * components/customer/login/cmp_318746cd-15df-4888-b1c2-56b7e71319ef/component.css
 */

#cmp_318746cd-15df-4888-b1c2-56b7e71319ef  {
	padding-bottom: 120px;
}
/*
 * components/customer/login/cmp_c3279859-787e-4ae5-a3fc-982ed35dab9d/component.css
 */
#cmp_c3279859-787e-4ae5-a3fc-982ed35dab9d {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_c3279859-787e-4ae5-a3fc-982ed35dab9d h1 {
	color: #333333;
	font-family: Abril Fatface;
	font-size: 36px;
}

#cmp_c3279859-787e-4ae5-a3fc-982ed35dab9d h2 {
	color: #333333;
	font-family: Lato;
	font-size: 24px;
}

#cmp_c3279859-787e-4ae5-a3fc-982ed35dab9d h3 {
	color: #333333;
	font-family: Lato;
	font-size: 16px;
}

#cmp_c3279859-787e-4ae5-a3fc-982ed35dab9d p {
	color: #979797;
	font-family: Lato;
	font-size: 14px;
}

#cmp_c3279859-787e-4ae5-a3fc-982ed35dab9d ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #979797;
	font-family: Lato;
	font-size: 14px;
}

#cmp_c3279859-787e-4ae5-a3fc-982ed35dab9d ul {
	list-style: disc;
	list-style-position: inside;
	color: #979797;
	font-family: Lato;
	font-size: 14px;
}

#cmp_c3279859-787e-4ae5-a3fc-982ed35dab9d  {
	padding: 50px 0;
}
#cmp_c3279859-787e-4ae5-a3fc-982ed35dab9d h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/order/cmp_f5ad3a65-e0b6-415c-8450-d8dbfe56802d/component.css
 */

/*
 * components/customer/orders/cmp_cabde555-7a4c-45d6-b126-5e320eaf2431/component.css
 */

/*
 * components/customer/password_reset/cmp_24e9378c-cfac-402a-b615-8931c0a3999f/component.css
 */

#cmp_24e9378c-cfac-402a-b615-8931c0a3999f  {
	padding-bottom: 120px;
}
/*
 * components/customer/password_reset/cmp_b2c5645d-8f99-4783-8723-9c3503d6ca51/component.css
 */
#cmp_b2c5645d-8f99-4783-8723-9c3503d6ca51 {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_b2c5645d-8f99-4783-8723-9c3503d6ca51 h1 {
	color: #333333;
	font-family: Abril Fatface;
	font-size: 36px;
}

#cmp_b2c5645d-8f99-4783-8723-9c3503d6ca51 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 24px;
}

#cmp_b2c5645d-8f99-4783-8723-9c3503d6ca51 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 16px;
}

#cmp_b2c5645d-8f99-4783-8723-9c3503d6ca51 p {
	color: #979797;
	font-family: Lato;
	font-size: 14px;
}

#cmp_b2c5645d-8f99-4783-8723-9c3503d6ca51 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #979797;
	font-family: Lato;
	font-size: 14px;
}

#cmp_b2c5645d-8f99-4783-8723-9c3503d6ca51 ul {
	list-style: disc;
	list-style-position: inside;
	color: #979797;
	font-family: Lato;
	font-size: 14px;
}

#cmp_b2c5645d-8f99-4783-8723-9c3503d6ca51  {
	padding: 50px 0;
}
#cmp_b2c5645d-8f99-4783-8723-9c3503d6ca51 h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/thank_you/cmp_e17c57f5-fcc3-44d6-bed9-db27cf3fc7e8/component.css
 */

/*
 * components/customer/thank_you/cmp_f8bf0a89-5e48-4a68-99f8-b300f948273c/component.css
 */
#cmp_f8bf0a89-5e48-4a68-99f8-b300f948273c {
	padding: 0;
}

#cmp_f8bf0a89-5e48-4a68-99f8-b300f948273c .hero-content {
	background-color: #333333;
	padding: 20px;
}

#cmp_f8bf0a89-5e48-4a68-99f8-b300f948273c .hero-content h1 {
	color: #53bfc7;
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_f8bf0a89-5e48-4a68-99f8-b300f948273c .hero-content h2 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 24px;
}

#cmp_f8bf0a89-5e48-4a68-99f8-b300f948273c .hero-content h3 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 16px;
}

#cmp_f8bf0a89-5e48-4a68-99f8-b300f948273c .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_f8bf0a89-5e48-4a68-99f8-b300f948273c .hero-content .btn {
	background-color: #53bfc7;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_f8bf0a89-5e48-4a68-99f8-b300f948273c .hero-content .btn:hover {
	background-color: #39A6AE;
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_f8bf0a89-5e48-4a68-99f8-b300f948273c .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_f8bf0a89-5e48-4a68-99f8-b300f948273c .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_f8bf0a89-5e48-4a68-99f8-b300f948273c .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_f8bf0a89-5e48-4a68-99f8-b300f948273c .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_f8bf0a89-5e48-4a68-99f8-b300f948273c .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_f8bf0a89-5e48-4a68-99f8-b300f948273c .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_f8bf0a89-5e48-4a68-99f8-b300f948273c .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/global/cmp_c935ddc0-102c-40b9-b160-753ab46fa8af/component.css
 */
#cmp_c935ddc0-102c-40b9-b160-753ab46fa8af.footer {
	background-color: #FFFFFF;
	font-family: Lato;
	color: #979797;
	font-size: 11px;
	padding-top: 10px;
	padding-bottom: 10px;
	margin-top: 100px;
	text-align: center;
	border-top: 1px solid #DDDDDD;
}

#cmp_c935ddc0-102c-40b9-b160-753ab46fa8af a,
#cmp_c935ddc0-102c-40b9-b160-753ab46fa8af a:hover,
#cmp_c935ddc0-102c-40b9-b160-753ab46fa8af a:focus {
	color: #979797;
}

#cmp_c935ddc0-102c-40b9-b160-753ab46fa8af .footer-social {
	padding-top: 20px;
	padding-bottom: 15px;
	text-align: center;
}

#cmp_c935ddc0-102c-40b9-b160-753ab46fa8af .footer-social a {
	display: inline-block;
	padding-left: 5px;
	padding-right: 5px;
}

#cmp_c935ddc0-102c-40b9-b160-753ab46fa8af .footer-social svg path {
	stroke: #333333;
}

#cmp_c935ddc0-102c-40b9-b160-753ab46fa8af .footer-social svg path + path {
	fill: #333333;
}

#cmp_c935ddc0-102c-40b9-b160-753ab46fa8af .footer-social a:hover svg path,
#cmp_c935ddc0-102c-40b9-b160-753ab46fa8af .footer-social a:focus svg path,
#cmp_c935ddc0-102c-40b9-b160-753ab46fa8af .footer-social a:active svg path {
	stroke: #979797;
}

#cmp_c935ddc0-102c-40b9-b160-753ab46fa8af .footer-social a:hover svg path + path,
#cmp_c935ddc0-102c-40b9-b160-753ab46fa8af .footer-social a:focus svg path + path,
#cmp_c935ddc0-102c-40b9-b160-753ab46fa8af .footer-social a:active svg path + path {
	fill: #979797;
}

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

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

/*
 * components/global/cmp_dc6828fe-ba9c-449e-bf3b-6e8b9c275e69/component.css
 */
#cmp_dc6828fe-ba9c-449e-bf3b-6e8b9c275e69 .navbar {
	background-color: rgba(0, 0, 0, 0.1);
	border-radius: 0;
	margin-bottom: 3rem;
}

#cmp_dc6828fe-ba9c-449e-bf3b-6e8b9c275e69 .navbar-brand {
	color: #53bfc7;
	font-family: Abril Fatface;
	font-size: 40px;
	margin: 0;
	line-height: 1;
	text-align: center;
}

#cmp_dc6828fe-ba9c-449e-bf3b-6e8b9c275e69 .navbar-brand > img {
	display: inline-block;
}

#cmp_dc6828fe-ba9c-449e-bf3b-6e8b9c275e69 .navbar-nav {
	display: -moz-flex;
	display: -webkit-flex;
	display: flex;

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

	margin: 0;
}

#cmp_dc6828fe-ba9c-449e-bf3b-6e8b9c275e69 .navbar a.nav-link,
#cmp_dc6828fe-ba9c-449e-bf3b-6e8b9c275e69 .navbar button {
	color: #979797;
	font-family: Lato;
	font-size: 12px;;
	letter-spacing: 1px;
	padding: 8px 12px;
	text-align: center;
	text-transform: uppercase;
}

#cmp_dc6828fe-ba9c-449e-bf3b-6e8b9c275e69 .navbar a.nav-link:hover,
#cmp_dc6828fe-ba9c-449e-bf3b-6e8b9c275e69 .navbar a.nav-link:focus,
#cmp_dc6828fe-ba9c-449e-bf3b-6e8b9c275e69 .navbar a.nav-link:active,
#cmp_dc6828fe-ba9c-449e-bf3b-6e8b9c275e69 .navbar button:hover,
#cmp_dc6828fe-ba9c-449e-bf3b-6e8b9c275e69 .navbar button:focus,
#cmp_dc6828fe-ba9c-449e-bf3b-6e8b9c275e69 .navbar button:active {
	color: #979797;
	outline: none;
}

#cmp_dc6828fe-ba9c-449e-bf3b-6e8b9c275e69 .navbar-nav .dropdown-menu a {
	color: #979797;
	padding: 10px 0;
}

#cmp_dc6828fe-ba9c-449e-bf3b-6e8b9c275e69 .navbar-toggler {
	padding: 1rem;
}

@media(min-width: 767px) {
	#cmp_dc6828fe-ba9c-449e-bf3b-6e8b9c275e69 .navbar-nav {
		-moz-flex-direction: row;
		-webkit-flex-direction: row;
		flex-direction: row;

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

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

	#cmp_dc6828fe-ba9c-449e-bf3b-6e8b9c275e69 .navbar-nav li {
		-moz-flex-shrink: 0;
		-webkit-flex-shrink: 0;
		flex-shrink: 0;
	}

	#cmp_dc6828fe-ba9c-449e-bf3b-6e8b9c275e69 .navbar-nav .nav-link {
		padding: 8px 0 8px 28px;
	}
}

/*
 * components/global/cmp_e1e101ac-3898-4af4-bc6d-e99751e9eede/component.css
 */
#cmp_e1e101ac-3898-4af4-bc6d-e99751e9eede {
	margin-top: 40px;
	margin-bottom: 40px;
}

#cmp_e1e101ac-3898-4af4-bc6d-e99751e9eede .progress-bar-container {
	position: relative;
}

#cmp_e1e101ac-3898-4af4-bc6d-e99751e9eede .progress-bar-filler {
	height: 2px;
	width: 90%;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	left: 0;
	right: 0;
	z-index: -10;
	background: #E5E5E5;
}

#cmp_e1e101ac-3898-4af4-bc6d-e99751e9eede .progress-bar {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	color: #E5E5E5;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_e1e101ac-3898-4af4-bc6d-e99751e9eede .progress-bar::before {
		width: 86%;
		margin: 0 7%;
	}
}

#cmp_e1e101ac-3898-4af4-bc6d-e99751e9eede .progress-bar .step {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#cmp_e1e101ac-3898-4af4-bc6d-e99751e9eede .progress-bar .step .point {
	width: 20px;
	height: 20px;
	border-radius: 10px;
	background-color: #E5E5E5;
	border: 4px solid white;
}

#cmp_e1e101ac-3898-4af4-bc6d-e99751e9eede .progress-bar .step.active {
	color: #979797;
}

#cmp_e1e101ac-3898-4af4-bc6d-e99751e9eede .progress-bar .step.active .point {
	background-color: #53bfc7;;
}

/*
 * components/index/cmp_7cf935cf-5afd-49a9-8acc-3f5c14b332da/component.css
 */
#cmp_7cf935cf-5afd-49a9-8acc-3f5c14b332da {
	padding: 0;
}

#cmp_7cf935cf-5afd-49a9-8acc-3f5c14b332da .hero-content {
	background-color: #333333;
	padding: 20px;
}

#cmp_7cf935cf-5afd-49a9-8acc-3f5c14b332da .hero-content h1 {
	color: #53bfc7;
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_7cf935cf-5afd-49a9-8acc-3f5c14b332da .hero-content h2 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 24px;
}

#cmp_7cf935cf-5afd-49a9-8acc-3f5c14b332da .hero-content h3 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 16px;
}

#cmp_7cf935cf-5afd-49a9-8acc-3f5c14b332da .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 18px;
}

#cmp_7cf935cf-5afd-49a9-8acc-3f5c14b332da .hero-content .btn {
	background-color: rgb(46, 53, 53);
	color: rgb(46, 53, 53);
	font-family: Lato;
	font-size: 14px;
}

#cmp_7cf935cf-5afd-49a9-8acc-3f5c14b332da .hero-content .btn:hover {
	background-color: rgb(46, 53, 53);
	color: rgb(46, 53, 53);
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_7cf935cf-5afd-49a9-8acc-3f5c14b332da .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_7cf935cf-5afd-49a9-8acc-3f5c14b332da .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_7cf935cf-5afd-49a9-8acc-3f5c14b332da .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_7cf935cf-5afd-49a9-8acc-3f5c14b332da .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_7cf935cf-5afd-49a9-8acc-3f5c14b332da .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_7cf935cf-5afd-49a9-8acc-3f5c14b332da .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_7cf935cf-5afd-49a9-8acc-3f5c14b332da .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/index/cmp_9dee9cae-749f-4af4-bc2d-d05ff1d5eca5/component.css
 */
#cmp_9dee9cae-749f-4af4-bc2d-d05ff1d5eca5 {
	background-color: #FFFFFF;
}

#cmp_9dee9cae-749f-4af4-bc2d-d05ff1d5eca5 h1 {
	color: #333333;
	font-family: Abril Fatface;
	font-size: 36px;
}

#cmp_9dee9cae-749f-4af4-bc2d-d05ff1d5eca5 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 24px;
}

#cmp_9dee9cae-749f-4af4-bc2d-d05ff1d5eca5 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 16px;
}

#cmp_9dee9cae-749f-4af4-bc2d-d05ff1d5eca5 p {
	color: #979797;
	font-family: Lato;
	font-size: 14px;
}

#cmp_9dee9cae-749f-4af4-bc2d-d05ff1d5eca5 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_9dee9cae-749f-4af4-bc2d-d05ff1d5eca5 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_9dee9cae-749f-4af4-bc2d-d05ff1d5eca5 .btn {
	background-color: #53bfc7;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_9dee9cae-749f-4af4-bc2d-d05ff1d5eca5 .btn:hover {
	background-color: #39A6AE;
	color: #FFFFFF;
}

#cmp_9dee9cae-749f-4af4-bc2d-d05ff1d5eca5 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #979797;
	font-family: Lato;
	font-size: 14px;
}

#cmp_9dee9cae-749f-4af4-bc2d-d05ff1d5eca5 ul {
	list-style: disc;
	list-style-position: inside;
	color: #979797;
	font-family: Lato;
	font-size: 14px;
}

#cmp_9dee9cae-749f-4af4-bc2d-d05ff1d5eca5  {
	padding: 60px 0;
}
#cmp_9dee9cae-749f-4af4-bc2d-d05ff1d5eca5 h1 {
	margin-bottom: 15px;
}
#cmp_9dee9cae-749f-4af4-bc2d-d05ff1d5eca5 p {
	margin-bottom: 20px;
}
/*
 * components/index/cmp_af88d487-da07-4741-8b56-79f033e20ea2/component.css
 */
#cmp_af88d487-da07-4741-8b56-79f033e20ea2 {
	background-color: rgb(255, 255, 255);
}

#cmp_af88d487-da07-4741-8b56-79f033e20ea2 .title {
	margin-top: 40px;
}

#cmp_af88d487-da07-4741-8b56-79f033e20ea2 .box-choose-row {
	justify-content: center;
}

#cmp_af88d487-da07-4741-8b56-79f033e20ea2 .box-choose {
	margin-top: 40px;
	margin-bottom: 40px;
}

#cmp_af88d487-da07-4741-8b56-79f033e20ea2 .box-choose img {
	margin-bottom: 20px;
}

#cmp_af88d487-da07-4741-8b56-79f033e20ea2 h1 {
	color: #333333;
	font-family: Abril Fatface;
	font-size: 36px;
}

#cmp_af88d487-da07-4741-8b56-79f033e20ea2 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 24px;
}

#cmp_af88d487-da07-4741-8b56-79f033e20ea2 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 16px;
}

#cmp_af88d487-da07-4741-8b56-79f033e20ea2 p {
	color: #979797;
	font-family: Lato;
	font-size: 14px;
}

#cmp_af88d487-da07-4741-8b56-79f033e20ea2 h3 {
	margin-bottom: 25px;
}
/*
 * components/index/cmp_c2eb65e8-01e2-4cc4-8331-2564f4d457a5/component.css
 */
/**********
Navigation
**********/
#cmp_c2eb65e8-01e2-4cc4-8331-2564f4d457a5 .navbar {
	background-color: rgba(0, 0, 0, 0.1);
	border-radius: 0;
	margin-bottom: 3rem;
}

#cmp_c2eb65e8-01e2-4cc4-8331-2564f4d457a5 .navbar-brand {
	color: rgb(16, 60, 63);
	font-family: Courgette;
	font-size: 60px;
	margin: 0;
	line-height: 1;
	text-align: center;
}

#cmp_c2eb65e8-01e2-4cc4-8331-2564f4d457a5 .navbar-brand > img {
	display: inline-block;
}

#cmp_c2eb65e8-01e2-4cc4-8331-2564f4d457a5 .navbar-nav {
	display: -moz-flex;
	display: -webkit-flex;
	display: flex;

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

	margin: 20px 0;
}

#cmp_c2eb65e8-01e2-4cc4-8331-2564f4d457a5 .navbar a.nav-link,
#cmp_c2eb65e8-01e2-4cc4-8331-2564f4d457a5 .navbar button {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 12px;;
	letter-spacing: 1px;
	padding: 8px 12px;
	text-align: center;
	text-transform: uppercase;
}

#cmp_c2eb65e8-01e2-4cc4-8331-2564f4d457a5 .navbar a.nav-link:hover,
#cmp_c2eb65e8-01e2-4cc4-8331-2564f4d457a5 .navbar a.nav-link:focus,
#cmp_c2eb65e8-01e2-4cc4-8331-2564f4d457a5 .navbar a.nav-link:active,
#cmp_c2eb65e8-01e2-4cc4-8331-2564f4d457a5 .navbar button:hover,
#cmp_c2eb65e8-01e2-4cc4-8331-2564f4d457a5 .navbar button:focus,
#cmp_c2eb65e8-01e2-4cc4-8331-2564f4d457a5 .navbar button:active {
	color: #979797;
	outline: none;
}

#cmp_c2eb65e8-01e2-4cc4-8331-2564f4d457a5 .navbar-nav .dropdown-menu a {
	color: #979797;
	padding: 10px 0;
}

#cmp_c2eb65e8-01e2-4cc4-8331-2564f4d457a5 .navbar-toggler {
	padding: 1rem;
}

@media(min-width: 767px) {
	#cmp_c2eb65e8-01e2-4cc4-8331-2564f4d457a5 .navbar {
		background-color: transparent;
		margin-bottom: 0;
	}

	#cmp_c2eb65e8-01e2-4cc4-8331-2564f4d457a5 .navbar-nav {
		-moz-flex-direction: row;
		-webkit-flex-direction: row;
		flex-direction: row;

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

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

	#cmp_c2eb65e8-01e2-4cc4-8331-2564f4d457a5 .navbar-nav li {
		-moz-flex-shrink: 0;
		-webkit-flex-shrink: 0;
		flex-shrink: 0;
	}

	#cmp_c2eb65e8-01e2-4cc4-8331-2564f4d457a5 .navbar-nav .nav-link {
		padding: 8px 0 8px 28px;
	}
}


/**********
Hero
**********/
#cmp_c2eb65e8-01e2-4cc4-8331-2564f4d457a5 .hero-content {
	padding: 20px;
}

@media(min-width: 768px) {
	#cmp_c2eb65e8-01e2-4cc4-8331-2564f4d457a5 .hero-content {
		min-height: 700px;
	}
}

#cmp_c2eb65e8-01e2-4cc4-8331-2564f4d457a5 .hero-content h1 {
	color: #FFFFFF;
	font-family: Abril Fatface;
	font-size: 50px;
	letter-spacing: 2px;
}

#cmp_c2eb65e8-01e2-4cc4-8331-2564f4d457a5 .hero-content h2 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 24px;
}

#cmp_c2eb65e8-01e2-4cc4-8331-2564f4d457a5 .hero-content h3 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 16px;
}

#cmp_c2eb65e8-01e2-4cc4-8331-2564f4d457a5 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_c2eb65e8-01e2-4cc4-8331-2564f4d457a5 .hero-content .btn {
	margin-bottom: 10px;
}

#cmp_c2eb65e8-01e2-4cc4-8331-2564f4d457a5 .hero-content .btn.btn-primary {
	border: 2px solid transparent;
	background-color: #53bfc7;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_c2eb65e8-01e2-4cc4-8331-2564f4d457a5 .hero-content .btn.btn-primary:hover,
#cmp_c2eb65e8-01e2-4cc4-8331-2564f4d457a5 .hero-content .btn.btn-primary:focus,
#cmp_c2eb65e8-01e2-4cc4-8331-2564f4d457a5 .hero-content .btn.btn-primary:active,
#cmp_c2eb65e8-01e2-4cc4-8331-2564f4d457a5 .hero-content .btn.btn-primary:active:focus {
	background-color: #39A6AE;
	color: #FFFFFF;
}

#cmp_c2eb65e8-01e2-4cc4-8331-2564f4d457a5 .hero-content .btn-secondary {
	border: 2px solid;

	background-color: rgb(93, 73, 111);
	border-color: #FFFFFF;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_c2eb65e8-01e2-4cc4-8331-2564f4d457a5 .hero-content .btn.btn-secondary:hover,
#cmp_c2eb65e8-01e2-4cc4-8331-2564f4d457a5 .hero-content .btn.btn-secondary:focus,
#cmp_c2eb65e8-01e2-4cc4-8331-2564f4d457a5 .hero-content .btn.btn-secondary:active,
#cmp_c2eb65e8-01e2-4cc4-8331-2564f4d457a5 .hero-content .btn.btn-secondary:active:focus {
	background-color: rgb(55, 34, 73);
	border-color: #FFFFFF;
	color: #FFFFFF;
}

#cmp_c2eb65e8-01e2-4cc4-8331-2564f4d457a5 h1 {
	margin-top: 20px;
	margin-bottom: 10px;
}
#cmp_c2eb65e8-01e2-4cc4-8331-2564f4d457a5 p {
	margin-bottom: 25px;
}
/*
 * components/index/cmp_dcbf49e9-b807-4245-98f4-ccbdc856d18d/component.css
 */
#cmp_dcbf49e9-b807-4245-98f4-ccbdc856d18d hr {
	border-top-color: #DDDDDD;
}

/*
 * components/shipping_timeline/cmp_2215b53a-e58e-4754-82dd-7a843a0d6ca1/component.css
 */
#cmp_2215b53a-e58e-4754-82dd-7a843a0d6ca1 img {
	max-width: 100%;
}

/*
 * components/shipping_timeline/cmp_572e7dc3-b62f-4433-8898-2954c2c63e1b/component.css
 */
#cmp_572e7dc3-b62f-4433-8898-2954c2c63e1b {
	background-color: #FFFFFF;
}

#cmp_572e7dc3-b62f-4433-8898-2954c2c63e1b h1 {
	color: #333333;
	font-family: Abril Fatface;
	font-size: 36px;
}

#cmp_572e7dc3-b62f-4433-8898-2954c2c63e1b h2 {
	color: #333333;
	font-family: Lato;
	font-size: 24px;
}

#cmp_572e7dc3-b62f-4433-8898-2954c2c63e1b h3 {
	color: #333333;
	font-family: Lato;
	font-size: 16px;
}

#cmp_572e7dc3-b62f-4433-8898-2954c2c63e1b p {
	color: #979797;
	font-family: Lato;
	font-size: 14px;
}

#cmp_572e7dc3-b62f-4433-8898-2954c2c63e1b .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_572e7dc3-b62f-4433-8898-2954c2c63e1b .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_572e7dc3-b62f-4433-8898-2954c2c63e1b .btn {
	background-color: #53bfc7;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_572e7dc3-b62f-4433-8898-2954c2c63e1b .btn:hover {
	background-color: #39A6AE;
	color: #FFFFFF;
}

#cmp_572e7dc3-b62f-4433-8898-2954c2c63e1b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #979797;
	font-family: Lato;
	font-size: 14px;
}

#cmp_572e7dc3-b62f-4433-8898-2954c2c63e1b ul {
	list-style: disc;
	list-style-position: inside;
	color: #979797;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/shipping_timeline/cmp_72a38ae5-573d-48b3-954b-036265d60787/component.css
 */
#cmp_72a38ae5-573d-48b3-954b-036265d60787 {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_72a38ae5-573d-48b3-954b-036265d60787 h1 {
	color: #333333;
	font-family: Abril Fatface;
	font-size: 36px;
}

#cmp_72a38ae5-573d-48b3-954b-036265d60787 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 24px;
}

#cmp_72a38ae5-573d-48b3-954b-036265d60787 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 16px;
}

#cmp_72a38ae5-573d-48b3-954b-036265d60787 p {
	color: #979797;
	font-family: Lato;
	font-size: 14px;
}

#cmp_72a38ae5-573d-48b3-954b-036265d60787 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #979797;
	font-family: Lato;
	font-size: 14px;
}

#cmp_72a38ae5-573d-48b3-954b-036265d60787 ul {
	list-style: disc;
	list-style-position: inside;
	color: #979797;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/shop/listing/cmp_5b42c513-06d5-45c2-96b8-aa33e066fe39/component.css
 */
#cmp_5b42c513-06d5-45c2-96b8-aa33e066fe39 {
	justify-content: center;
}

#cmp_5b42c513-06d5-45c2-96b8-aa33e066fe39 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

#cmp_5b42c513-06d5-45c2-96b8-aa33e066fe39  {
	border-bottom: 1px solid #E1E1E1;
	margin-bottom: 35px;
	padding-bottom: 35px;
}
/*
 * components/shop/listing/cmp_64b34b46-5308-4340-aa62-2e5fe46b9b2c/component.css
 */
#cmp_64b34b46-5308-4340-aa62-2e5fe46b9b2c {
	justify-content: center;
	margin-bottom: 35px;
}

#cmp_64b34b46-5308-4340-aa62-2e5fe46b9b2c ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_6f412206-b658-4cdc-999d-7f2f9c4d668a/component.css
 */
#cmp_6f412206-b658-4cdc-999d-7f2f9c4d668a .shop-listing-item {
	color: #979797;
}

#cmp_6f412206-b658-4cdc-999d-7f2f9c4d668a .shop-listing-item:hover,
#cmp_6f412206-b658-4cdc-999d-7f2f9c4d668a .shop-listing-item:focus {
	text-decoration: none;
}

#cmp_6f412206-b658-4cdc-999d-7f2f9c4d668a .shop-listing-item__image {
	background-size: cover;
	background-position: center center;
}

#cmp_6f412206-b658-4cdc-999d-7f2f9c4d668a .shop-listing-item__name {
	margin: 10px 0;
}

#cmp_6f412206-b658-4cdc-999d-7f2f9c4d668a .shop-listing-item__price {
	margin: 10px 0 30px;
}

#cmp_6f412206-b658-4cdc-999d-7f2f9c4d668a .product_paging {
	-webkit-display: flex;
	-ms-display: flex;
	display: flex;
	justify-content: center;

	margin: 20px 0;
}

#cmp_6f412206-b658-4cdc-999d-7f2f9c4d668a .product_page a,
#cmp_6f412206-b658-4cdc-999d-7f2f9c4d668a .next_page a,
#cmp_6f412206-b658-4cdc-999d-7f2f9c4d668a .prev_page a {
	display: block;
	padding: 12px 15px;
	margin: 0 2px;
	border: 1px solid #E0E0E0;
	border-radius: 5px;
}

#cmp_6f412206-b658-4cdc-999d-7f2f9c4d668a .product_page.active a,
#cmp_6f412206-b658-4cdc-999d-7f2f9c4d668a .product_page a:hover,
#cmp_6f412206-b658-4cdc-999d-7f2f9c4d668a .product_page a:focus,
#cmp_6f412206-b658-4cdc-999d-7f2f9c4d668a .next_page a:hover,
#cmp_6f412206-b658-4cdc-999d-7f2f9c4d668a .next_page a:focus,
#cmp_6f412206-b658-4cdc-999d-7f2f9c4d668a .prev_page a:hover,
#cmp_6f412206-b658-4cdc-999d-7f2f9c4d668a .prev_page a:focus {
	text-decoration: none;
	background-color: #F9F9F9;
}

#cmp_6f412206-b658-4cdc-999d-7f2f9c4d668a .product_page.active a {
	color: black;
}

/*
 * components/shop/listing/cmp_b70b2308-98be-4ce4-9954-e3806d25e58a/component.css
 */
#cmp_b70b2308-98be-4ce4-9954-e3806d25e58a {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_b70b2308-98be-4ce4-9954-e3806d25e58a h1 {
	color: #333333;
	font-family: Abril Fatface;
	font-size: 36px;
}

#cmp_b70b2308-98be-4ce4-9954-e3806d25e58a h2 {
	color: #333333;
	font-family: Lato;
	font-size: 24px;
}

#cmp_b70b2308-98be-4ce4-9954-e3806d25e58a h3 {
	color: #333333;
	font-family: Lato;
	font-size: 16px;
}

#cmp_b70b2308-98be-4ce4-9954-e3806d25e58a p {
	color: #979797;
	font-family: Lato;
	font-size: 14px;
}

#cmp_b70b2308-98be-4ce4-9954-e3806d25e58a ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #979797;
	font-family: Lato;
	font-size: 14px;
}

#cmp_b70b2308-98be-4ce4-9954-e3806d25e58a ul {
	list-style: disc;
	list-style-position: inside;
	color: #979797;
	font-family: Lato;
	font-size: 14px;
}

#cmp_b70b2308-98be-4ce4-9954-e3806d25e58a  {
	padding: 50px 0 15px;
}
#cmp_b70b2308-98be-4ce4-9954-e3806d25e58a h1 {
	margin-bottom: 15px;
}
/*
 * components/shop/product/cmp_c5b93631-e13b-4400-a898-9c9ec75fa83c/component.css
 */
#cmp_c5b93631-e13b-4400-a898-9c9ec75fa83c .shop-product__name {
	margin-bottom: 10px;
}

#cmp_c5b93631-e13b-4400-a898-9c9ec75fa83c .shop-product__price {
	margin-bottom: 20px;
}

#cmp_c5b93631-e13b-4400-a898-9c9ec75fa83c .shop-product select {
	width: auto;
}

#cmp_c5b93631-e13b-4400-a898-9c9ec75fa83c .shop-product__add-to-cart {
	margin-bottom: 20px;
}

#cmp_c5b93631-e13b-4400-a898-9c9ec75fa83c .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin-bottom: 40px;
}

#cmp_c5b93631-e13b-4400-a898-9c9ec75fa83c .shop-product__review-share-desktop .col-xs-6 {
	padding-top: 10px;
}

#cmp_c5b93631-e13b-4400-a898-9c9ec75fa83c .shop-product__review-share-desktop .col-xs-6 + .col-xs-6 {
	border-left: 1px solid #E1E1E1;
}

/*
 * components/shop/product/cmp_ef89f6e7-7bcd-4cd9-8e89-326490e408de/component.css
 */
#cmp_ef89f6e7-7bcd-4cd9-8e89-326490e408de.shop-product-header {
	padding: 50px 0 15px;
}

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

/*
 * components/sold_out/cmp_980c5794-27e9-492c-8026-73c0a5a27426/component.css
 */
#cmp_980c5794-27e9-492c-8026-73c0a5a27426 {
	background-color: #FFFFFF;
}

#cmp_980c5794-27e9-492c-8026-73c0a5a27426 h1 {
	color: #333333;
	font-family: Abril Fatface;
	font-size: 36px;
}

#cmp_980c5794-27e9-492c-8026-73c0a5a27426 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 24px;
}

#cmp_980c5794-27e9-492c-8026-73c0a5a27426 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 16px;
}

#cmp_980c5794-27e9-492c-8026-73c0a5a27426 p {
	color: #979797;
	font-family: Lato;
	font-size: 14px;
}

#cmp_980c5794-27e9-492c-8026-73c0a5a27426 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_980c5794-27e9-492c-8026-73c0a5a27426 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_980c5794-27e9-492c-8026-73c0a5a27426 .btn {
	background-color: #53bfc7;
	color: #FFFFFF;
	font-family: Lato;
	font-size: 14px;
}

#cmp_980c5794-27e9-492c-8026-73c0a5a27426 .btn:hover {
	background-color: #39A6AE;
	color: #FFFFFF;
}

#cmp_980c5794-27e9-492c-8026-73c0a5a27426 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #979797;
	font-family: Lato;
	font-size: 14px;
}

#cmp_980c5794-27e9-492c-8026-73c0a5a27426 ul {
	list-style: disc;
	list-style-position: inside;
	color: #979797;
	font-family: Lato;
	font-size: 14px;
}

#cmp_980c5794-27e9-492c-8026-73c0a5a27426  {
	padding-bottom: 50px;
}
/*
 * components/sold_out/cmp_b6708e96-95ec-40bb-996e-992df0dba469/component.css
 */
#cmp_b6708e96-95ec-40bb-996e-992df0dba469 img {
	max-width: 100%;
}

#cmp_b6708e96-95ec-40bb-996e-992df0dba469  {
	padding-top: 50px;
}
/*
 * components/subscribe/cmp_1e142234-d2b7-4fdd-8812-0bf5fc09c11c/component.css
 */
#cmp_1e142234-d2b7-4fdd-8812-0bf5fc09c11c {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_1e142234-d2b7-4fdd-8812-0bf5fc09c11c h1 {
	color: #333333;
	font-family: Abril Fatface;
	font-size: 36px;
}

#cmp_1e142234-d2b7-4fdd-8812-0bf5fc09c11c h2 {
	color: #333333;
	font-family: Lato;
	font-size: 24px;
}

#cmp_1e142234-d2b7-4fdd-8812-0bf5fc09c11c h3 {
	color: #333333;
	font-family: Lato;
	font-size: 16px;
}

#cmp_1e142234-d2b7-4fdd-8812-0bf5fc09c11c p {
	color: #979797;
	font-family: Lato;
	font-size: 14px;
}

#cmp_1e142234-d2b7-4fdd-8812-0bf5fc09c11c ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #979797;
	font-family: Lato;
	font-size: 14px;
}

#cmp_1e142234-d2b7-4fdd-8812-0bf5fc09c11c ul {
	list-style: disc;
	list-style-position: inside;
	color: #979797;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/subscribe/cmp_6f53596c-bf9b-420d-a101-c266699cb74c/component.css
 */
#cmp_6f53596c-bf9b-420d-a101-c266699cb74c {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_6f53596c-bf9b-420d-a101-c266699cb74c h1 {
	color: #333333;
	font-family: Abril Fatface;
	font-size: 36px;
}

#cmp_6f53596c-bf9b-420d-a101-c266699cb74c h2 {
	color: #333333;
	font-family: Lato;
	font-size: 24px;
}

#cmp_6f53596c-bf9b-420d-a101-c266699cb74c h3 {
	color: #333333;
	font-family: Lato;
	font-size: 16px;
}

#cmp_6f53596c-bf9b-420d-a101-c266699cb74c p {
	color: #979797;
	font-family: Lato;
	font-size: 14px;
}

#cmp_6f53596c-bf9b-420d-a101-c266699cb74c ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #979797;
	font-family: Lato;
	font-size: 14px;
}

#cmp_6f53596c-bf9b-420d-a101-c266699cb74c ul {
	list-style: disc;
	list-style-position: inside;
	color: #979797;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/subscribe/cmp_78e4b3d4-6421-4229-b6ed-4eb3b04be4e6/component.css
 */

/*
 * components/subscribe_flow/addons_step/cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9/component.css
 */
#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9.addons-container {
	margin-right: auto;
	margin-left: auto;

	max-width: 940px;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-products-row {
	border: 1px solid #D3D3D3;

	padding-left: 40px;
	padding-right: 40px;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

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

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product + .addons-product {
	border-top: 1px solid #D3D3D3;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-left {
	padding-right: 30px;

	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-image {
	width: 100%;
	height: 100%;
	min-height: 275px;

	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-right {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;

	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;

	margin-bottom: 15px;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-top-right {
	text-align: right;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-btn-cart {
	padding: 7px 12px;

	font-family: ;
	font-size: 14px;

	color: #FFFFFF;
	background-color: #53bfc7;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-btn-cart:hover {
	color: #FFFFFF;
	background-color: #39A6AE;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-name {
	font-size: 20px;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-price {
	margin-bottom: 20px;

	font-size: 16px;
	color: #38BFC3;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-form-group .control-label {
	font-size: 12px;
	color: #9B9B9B;

	margin-bottom: 2px;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-form-group select {
	height: 30px;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-cta-row {
	margin-top: 40px;

	text-align: center;
}


#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-continue-btn {
	font-family: ;
	font-size: 14px;

	color: #FFFFFF;
	background-color: #53bfc7;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-continue-btn:hover {
	color: #FFFFFF;
	background-color: #39A6AE;
}

@media only screen and (max-width : 768px) {
	#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-left,
	#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-right {
		-webkit-box-flex: 1 0 100%;
		-ms-flex: 1 0 100%;
		flex: 1 0 100%;
	}

	.addons-product-right {
		margin-top: 40px;
	}

	 #cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-product-left {
		padding-right: 0;
	}
}

/*
 * components/subscribe_flow/survey_step/cmp_aa11776e-2bd1-4d1a-9747-a13cd96b7308/component.css
 */
#cmp_aa11776e-2bd1-4d1a-9747-a13cd96b7308.survey h2 {
	margin-bottom: 0.5em;
}

#cmp_aa11776e-2bd1-4d1a-9747-a13cd96b7308.survey .radio input[type="radio"],
#cmp_aa11776e-2bd1-4d1a-9747-a13cd96b7308.survey .checkbox input[type="checkbox"] {
	margin-right: 0.5em;
}

#cmp_aa11776e-2bd1-4d1a-9747-a13cd96b7308.survey .survey-field {
	margin-bottom: 2em;
}

/*
 * components/subscribe_flow/survey_step/cmp_d39c55b1-69c0-461a-aad4-d8715c3c4373/component.css
 */
#cmp_d39c55b1-69c0-461a-aad4-d8715c3c4373 {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/terms_step/cmp_603e590b-e048-413d-8344-4d899944e597/component.css
 */

/*
 * components/subscribe_flow/terms_step/cmp_79e8a86a-1929-4858-a299-6ba1443d0729/component.css
 */
#cmp_79e8a86a-1929-4858-a299-6ba1443d0729 {
	background-color: rgba(155, 155, 155, 0.1);
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_79e8a86a-1929-4858-a299-6ba1443d0729 h1 {
	color: #333333;
	font-family: Abril Fatface;
	font-size: 36px;
}

#cmp_79e8a86a-1929-4858-a299-6ba1443d0729 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 24px;
}

#cmp_79e8a86a-1929-4858-a299-6ba1443d0729 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 16px;
}

#cmp_79e8a86a-1929-4858-a299-6ba1443d0729 p {
	color: #979797;
	font-family: Lato;
	font-size: 14px;
}

#cmp_79e8a86a-1929-4858-a299-6ba1443d0729 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: #979797;
	font-family: Lato;
	font-size: 14px;
}

#cmp_79e8a86a-1929-4858-a299-6ba1443d0729 ul {
	list-style: disc;
	list-style-position: inside;
	color: #979797;
	font-family: Lato;
	font-size: 14px;
}

/*
 * components/subscribe_flow/terms_step/cmp_bafcdfac-2500-43a3-8f6f-8368ff7b2829/component.css
 */
#cmp_bafcdfac-2500-43a3-8f6f-8368ff7b2829 {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/variant_step/cmp_67ff7ac6-8743-41c5-85a2-e5fbfe00425a/component.css
 */
#cmp_67ff7ac6-8743-41c5-85a2-e5fbfe00425a {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/variant_step/cmp_f4a0ca4e-9277-4b08-9f90-65993812c98c/component.css
 */