/*
 * css/style.css
 */
/* Globals
------------------------------*/
body {
	background-color: rgb(255, 255, 255);
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
	letter-spacing: 0.077em;
	line-height: 1.5em;
}

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

h1 {
	color: rgb(55, 57, 57);
	font-family: Libre Baskerville;
	font-size: 36px;
}

h2 {
	color: rgb(55, 57, 57);
	font-family: Alata;
	font-size: 24px;
}

h3 {
	color: rgb(55, 57, 57);
	font-family: Asap;
	font-size: 20px;
}

p {
	line-height: 1.5em;
}

a,
.btn-link {
	color: rgb(183, 224, 220);
}

a:hover,
a:focus,
a:active,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
	color: rgb(110, 135, 132);
}

/* 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: rgb(183, 224, 220);
}

.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: 18px;
}

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

.btn-small:hover,
.btn-small:focus,
.btn-small:active,
.btn-small:active:focus {
	background-color: rgb(175, 214, 210);
	border: 1px solid rgb(175, 214, 210);
	color: rgb(187, 167, 232) !important;
}

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

.btn-primary {
	background-color: rgb(183, 224, 220);
	color: rgb(57, 55, 55);
	font-family: Montserrat;
	font-size: 14px;
	letter-spacing: 0.167em;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus {
	background-color: rgb(110, 135, 132);
	color: rgb(255, 255, 255);
}

.btn-secondary {
	background-color: rgb(241, 208, 226);
	color: rgb(57, 55, 55);
	font-family: Montserrat;
	font-size: 14px;
	letter-spacing: 0.167em;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:active:focus {
	background-color: rgb(161, 139, 153);
	color: #FAFAFA;
}

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

.btn-empty:hover,
.btn-empty:focus,
.btn-empty:active,
.btn-empty:active:focus {
	background-color: rgb(175, 214, 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: rgb(55, 57, 57);
}
.orders-list .panel {
	width: 100%;
}

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

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

.checkout_content #checkout_button {
	background-color: rgb(183, 224, 220);
	border: none;
	border-radius: 25px;
	color: rgb(57, 55, 55);
	font-family: Montserrat;
	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: rgb(110, 135, 132);
	color: rgb(255, 255, 255);
}

/* 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(187, 167, 232);
}

.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(183, 224, 220);
	color: rgb(183, 224, 220);
	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(110, 135, 132);
	border-color: rgb(110, 135, 132);
	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: rgb(255, 255, 255);
}

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

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

.sidebar-offcanvas {
}

/*
 * components/account_management_walkthrough/cmp_318542f8-aa0c-46c2-a84a-42ad033ca4e4/component.css
 */
#cmp_318542f8-aa0c-46c2-a84a-42ad033ca4e4 {
	background-color: rgb(255, 255, 255);
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_318542f8-aa0c-46c2-a84a-42ad033ca4e4 h1 {
	color: rgb(55, 57, 57);
	font-family: Libre Baskerville;
	font-size: 36px;
}

#cmp_318542f8-aa0c-46c2-a84a-42ad033ca4e4 h2 {
	color: rgb(55, 57, 57);
	font-family: Alata;
	font-size: 24px;
}

#cmp_318542f8-aa0c-46c2-a84a-42ad033ca4e4 h3 {
	color: rgb(55, 57, 57);
	font-family: Asap;
	font-size: 20px;
}

#cmp_318542f8-aa0c-46c2-a84a-42ad033ca4e4 p {
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_318542f8-aa0c-46c2-a84a-42ad033ca4e4 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_318542f8-aa0c-46c2-a84a-42ad033ca4e4 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

/*
 * components/account_management_walkthrough/cmp_774f5289-743b-48eb-b673-df000fc179a8/component.css
 */
#cmp_774f5289-743b-48eb-b673-df000fc179a8 {
	background-color: rgb(255, 255, 255);
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_774f5289-743b-48eb-b673-df000fc179a8 h1 {
	color: rgb(55, 57, 57);
	font-family: Libre Baskerville;
	font-size: 36px;
}

#cmp_774f5289-743b-48eb-b673-df000fc179a8 h2 {
	color: rgb(55, 57, 57);
	font-family: Alata;
	font-size: 24px;
}

#cmp_774f5289-743b-48eb-b673-df000fc179a8 h3 {
	color: rgb(55, 57, 57);
	font-family: Asap;
	font-size: 20px;
}

#cmp_774f5289-743b-48eb-b673-df000fc179a8 p {
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_774f5289-743b-48eb-b673-df000fc179a8 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_774f5289-743b-48eb-b673-df000fc179a8 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

/*
 * components/checkout/cmp_11eba1cf-c998-4522-a88a-07d1d2393566/component.css
 */
#cmp_11eba1cf-c998-4522-a88a-07d1d2393566 .checkout_content {
	overflow: auto;
}

#cmp_11eba1cf-c998-4522-a88a-07d1d2393566 .checkout_content section {
	border-color: #F5F5F5;
}

#cmp_11eba1cf-c998-4522-a88a-07d1d2393566 .cart_listing table {
	border-color: #F5F5F5;
}

/*
 * components/customer/account/cmp_61be5758-bb5e-4aa7-a90e-79856cb3a4f3/component.css
 */

/*
 * components/customer/edit/cmp_572f1c52-02bf-4d84-86ec-4184834307e7/component.css
 */

/*
 * components/customer/forgot_password/cmp_8a83f7d7-33b0-40be-888c-c08639ae70ff/component.css
 */

#cmp_8a83f7d7-33b0-40be-888c-c08639ae70ff  {
	padding-bottom: 120px;
}
/*
 * components/customer/forgot_password/cmp_c16f3af1-8f4f-4fef-b4d8-e8523cc0d154/component.css
 */
#cmp_c16f3af1-8f4f-4fef-b4d8-e8523cc0d154 {
	background-color: rgb(255, 255, 255);
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_c16f3af1-8f4f-4fef-b4d8-e8523cc0d154 h1 {
	color: rgb(55, 57, 57);
	font-family: Libre Baskerville;
	font-size: 36px;
}

#cmp_c16f3af1-8f4f-4fef-b4d8-e8523cc0d154 h2 {
	color: rgb(55, 57, 57);
	font-family: Alata;
	font-size: 24px;
}

#cmp_c16f3af1-8f4f-4fef-b4d8-e8523cc0d154 h3 {
	color: rgb(55, 57, 57);
	font-family: Asap;
	font-size: 20px;
}

#cmp_c16f3af1-8f4f-4fef-b4d8-e8523cc0d154 p {
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_c16f3af1-8f4f-4fef-b4d8-e8523cc0d154 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_c16f3af1-8f4f-4fef-b4d8-e8523cc0d154 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_c16f3af1-8f4f-4fef-b4d8-e8523cc0d154  {
	padding: 50px 0;
}
#cmp_c16f3af1-8f4f-4fef-b4d8-e8523cc0d154 h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/login/cmp_b36eb256-6d43-4894-b87f-af834c836bf6/component.css
 */

#cmp_b36eb256-6d43-4894-b87f-af834c836bf6  {
	padding-bottom: 120px;
}
/*
 * components/customer/login/cmp_c8206732-76f0-486a-a6bb-bc8a361a0789/component.css
 */
#cmp_c8206732-76f0-486a-a6bb-bc8a361a0789 {
	background-color: rgb(255, 255, 255);
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_c8206732-76f0-486a-a6bb-bc8a361a0789 h1 {
	color: rgb(55, 57, 57);
	font-family: Libre Baskerville;
	font-size: 36px;
}

#cmp_c8206732-76f0-486a-a6bb-bc8a361a0789 h2 {
	color: rgb(55, 57, 57);
	font-family: Alata;
	font-size: 24px;
}

#cmp_c8206732-76f0-486a-a6bb-bc8a361a0789 h3 {
	color: rgb(55, 57, 57);
	font-family: Asap;
	font-size: 20px;
}

#cmp_c8206732-76f0-486a-a6bb-bc8a361a0789 p {
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_c8206732-76f0-486a-a6bb-bc8a361a0789 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_c8206732-76f0-486a-a6bb-bc8a361a0789 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_c8206732-76f0-486a-a6bb-bc8a361a0789  {
	padding: 50px 0;
}
#cmp_c8206732-76f0-486a-a6bb-bc8a361a0789 h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/order/cmp_14efeb07-925b-49d8-9bfe-9a7f4c755db8/component.css
 */

/*
 * components/customer/orders/cmp_c16b4a4e-ecbc-4326-870b-d44f9f77f7e4/component.css
 */

/*
 * components/customer/password_reset/cmp_a732d8cb-d67d-419e-a742-a9460bc91514/component.css
 */
#cmp_a732d8cb-d67d-419e-a742-a9460bc91514 {
	background-color: rgb(255, 255, 255);
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_a732d8cb-d67d-419e-a742-a9460bc91514 h1 {
	color: rgb(55, 57, 57);
	font-family: Libre Baskerville;
	font-size: 36px;
}

#cmp_a732d8cb-d67d-419e-a742-a9460bc91514 h2 {
	color: rgb(55, 57, 57);
	font-family: Alata;
	font-size: 24px;
}

#cmp_a732d8cb-d67d-419e-a742-a9460bc91514 h3 {
	color: rgb(55, 57, 57);
	font-family: Asap;
	font-size: 20px;
}

#cmp_a732d8cb-d67d-419e-a742-a9460bc91514 p {
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_a732d8cb-d67d-419e-a742-a9460bc91514 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_a732d8cb-d67d-419e-a742-a9460bc91514 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_a732d8cb-d67d-419e-a742-a9460bc91514  {
	padding: 50px 0;
}
#cmp_a732d8cb-d67d-419e-a742-a9460bc91514 h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/password_reset/cmp_bee51307-d121-4a06-8153-79846f6de5b3/component.css
 */

#cmp_bee51307-d121-4a06-8153-79846f6de5b3  {
	padding-bottom: 120px;
}
/*
 * components/customer/thank_you/cmp_35af43c0-356c-42cb-b651-ff0c4a83ec32/component.css
 */

/*
 * components/faq/cmp_547ebbcd-5176-486e-8a35-cfdeea25a35c/component.css
 */
#cmp_547ebbcd-5176-486e-8a35-cfdeea25a35c {
	background-color: rgb(255, 255, 255);
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_547ebbcd-5176-486e-8a35-cfdeea25a35c h1 {
	color: rgb(55, 57, 57);
	font-family: Libre Baskerville;
	font-size: 36px;
}

#cmp_547ebbcd-5176-486e-8a35-cfdeea25a35c h2 {
	color: rgb(55, 57, 57);
	font-family: Alata;
	font-size: 24px;
}

#cmp_547ebbcd-5176-486e-8a35-cfdeea25a35c h3 {
	color: rgb(55, 57, 57);
	font-family: Asap;
	font-size: 20px;
}

#cmp_547ebbcd-5176-486e-8a35-cfdeea25a35c p {
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_547ebbcd-5176-486e-8a35-cfdeea25a35c ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_547ebbcd-5176-486e-8a35-cfdeea25a35c ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

/*
 * components/faq/cmp_5edbbf10-63bc-485d-adc2-18c697a2c738/component.css
 */
#cmp_5edbbf10-63bc-485d-adc2-18c697a2c738 {
	background-color: rgb(255, 255, 255);
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_5edbbf10-63bc-485d-adc2-18c697a2c738 h1 {
	color: rgb(55, 57, 57);
	font-family: Libre Baskerville;
	font-size: 36px;
}

#cmp_5edbbf10-63bc-485d-adc2-18c697a2c738 h2 {
	color: rgb(55, 57, 57);
	font-family: Alata;
	font-size: 20px;
}

#cmp_5edbbf10-63bc-485d-adc2-18c697a2c738 h3 {
	color: rgb(55, 57, 57);
	font-family: Asap;
	font-size: 20px;
}

#cmp_5edbbf10-63bc-485d-adc2-18c697a2c738 p {
	color: rgb(55, 57, 57);
	font-family: Lato;
	font-size: 18px;
}

#cmp_5edbbf10-63bc-485d-adc2-18c697a2c738 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(55, 57, 57);
	font-family: Lato;
	font-size: 18px;
}

#cmp_5edbbf10-63bc-485d-adc2-18c697a2c738 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(55, 57, 57);
	font-family: Lato;
	font-size: 18px;
}

/*
 * components/faq/cmp_a11d6412-111c-48b5-901c-cf12a5f6991a/component.css
 */
#cmp_a11d6412-111c-48b5-901c-cf12a5f6991a {
	background-color: rgb(255, 255, 255);
}

#cmp_a11d6412-111c-48b5-901c-cf12a5f6991a h1 {
	color: rgb(55, 57, 57);
	font-family: Libre Baskerville;
	font-size: 36px;
}

#cmp_a11d6412-111c-48b5-901c-cf12a5f6991a h2 {
	color: rgb(55, 57, 57);
	font-family: Alata;
	font-size: 24px;
}

#cmp_a11d6412-111c-48b5-901c-cf12a5f6991a h3 {
	color: rgb(55, 57, 57);
	font-family: Asap;
	font-size: 20px;
}

#cmp_a11d6412-111c-48b5-901c-cf12a5f6991a p {
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_a11d6412-111c-48b5-901c-cf12a5f6991a .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_a11d6412-111c-48b5-901c-cf12a5f6991a .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_a11d6412-111c-48b5-901c-cf12a5f6991a .btn {
	background-color: rgb(255, 255, 255);
	color: rgb(57, 55, 55);
	font-family: Montserrat;
	font-size: 14px;
}

#cmp_a11d6412-111c-48b5-901c-cf12a5f6991a .btn:hover {
	background-color: rgb(110, 135, 132);
	color: rgb(255, 255, 255);
}

#cmp_a11d6412-111c-48b5-901c-cf12a5f6991a ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_a11d6412-111c-48b5-901c-cf12a5f6991a ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

/*
 * components/faq/cmp_c3365a54-787d-45bd-a9c9-2ef2b9d868de/component.css
 */
#cmp_c3365a54-787d-45bd-a9c9-2ef2b9d868de img {
	max-width: 100%;
}

/*
 * components/global/cmp_088365ee-dfe4-440b-aed6-0a83654f465b/component.css
 */
#cmp_088365ee-dfe4-440b-aed6-0a83654f465b.footer {
	background-color: rgb(255, 255, 255);
	font-family: Montserrat;
	color: rgb(55, 57, 57);
	font-size: 11px;
	padding-top: 10px;
	padding-bottom: 10px;
	margin-top: 100px;
	text-align: center;
	border-top: 1px solid rgb(77, 77, 77);
}

#cmp_088365ee-dfe4-440b-aed6-0a83654f465b a,
#cmp_088365ee-dfe4-440b-aed6-0a83654f465b a:hover,
#cmp_088365ee-dfe4-440b-aed6-0a83654f465b a:focus {
	color: rgb(55, 57, 57);
}

#cmp_088365ee-dfe4-440b-aed6-0a83654f465b .footer-social {
	padding-top: 20px;
	padding-bottom: 15px;
	text-align: center;
}

#cmp_088365ee-dfe4-440b-aed6-0a83654f465b .footer-social a {
	display: inline-block;
	padding-left: 5px;
	padding-right: 5px;
}

#cmp_088365ee-dfe4-440b-aed6-0a83654f465b .footer-social svg path {
	stroke: rgb(175, 214, 210);
}

#cmp_088365ee-dfe4-440b-aed6-0a83654f465b .footer-social svg path + path {
	fill: rgb(175, 214, 210);
}

#cmp_088365ee-dfe4-440b-aed6-0a83654f465b .footer-social a:hover svg path,
#cmp_088365ee-dfe4-440b-aed6-0a83654f465b .footer-social a:focus svg path,
#cmp_088365ee-dfe4-440b-aed6-0a83654f465b .footer-social a:active svg path {
	stroke: rgb(55, 57, 57);
}

#cmp_088365ee-dfe4-440b-aed6-0a83654f465b .footer-social a:hover svg path + path,
#cmp_088365ee-dfe4-440b-aed6-0a83654f465b .footer-social a:focus svg path + path,
#cmp_088365ee-dfe4-440b-aed6-0a83654f465b .footer-social a:active svg path + path {
	fill: rgb(55, 57, 57);
}

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

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

/*
 * components/global/cmp_1925e025-dc7d-4cb5-9831-696d2a19e3ba/component.css
 */
#cmp_1925e025-dc7d-4cb5-9831-696d2a19e3ba {
	margin-top: 40px;
	margin-bottom: 40px;
}

#cmp_1925e025-dc7d-4cb5-9831-696d2a19e3ba .progress-bar-container {
	position: relative;
}

#cmp_1925e025-dc7d-4cb5-9831-696d2a19e3ba .progress-bar-filler {
	height: 2px;
	width: 90%;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	left: 0;
	right: 0;
	z-index: -10;
	background: #E5E5E5;
}

#cmp_1925e025-dc7d-4cb5-9831-696d2a19e3ba .progress-bar {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	color: #E5E5E5;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_1925e025-dc7d-4cb5-9831-696d2a19e3ba .progress-bar::before {
		width: 86%;
		margin: 0 7%;
	}
}

#cmp_1925e025-dc7d-4cb5-9831-696d2a19e3ba .progress-bar .step {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#cmp_1925e025-dc7d-4cb5-9831-696d2a19e3ba .progress-bar .step .point {
	width: 20px;
	height: 20px;
	border-radius: 10px;
	background-color: #E5E5E5;
	border: 4px solid white;
}

#cmp_1925e025-dc7d-4cb5-9831-696d2a19e3ba .progress-bar .step.active {
	color: rgb(55, 57, 57);
}

#cmp_1925e025-dc7d-4cb5-9831-696d2a19e3ba .progress-bar .step.active .point {
	background-color: rgb(245, 166, 35);;
}

/*
 * components/global/cmp_d00222a4-106e-4f25-9891-ed0cf1382d42/component.css
 */
#cmp_d00222a4-106e-4f25-9891-ed0cf1382d42 .navbar {
	background-color: rgba(0, 0, 0, 0.1);
	border-radius: 0;
	margin-bottom: 3rem;
}

#cmp_d00222a4-106e-4f25-9891-ed0cf1382d42 .navbar-brand {
	color: rgb(187, 167, 232);
	font-family: Libre Baskerville;
	font-size: 40px;
	margin: 0;
	line-height: 1;
	text-align: center;
}

#cmp_d00222a4-106e-4f25-9891-ed0cf1382d42 .navbar-brand > img {
	display: inline-block;
}

#cmp_d00222a4-106e-4f25-9891-ed0cf1382d42 .navbar-nav {
	display: -moz-flex;
	display: -webkit-flex;
	display: flex;

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

	margin: 0;
}

#cmp_d00222a4-106e-4f25-9891-ed0cf1382d42 .navbar a.nav-link,
#cmp_d00222a4-106e-4f25-9891-ed0cf1382d42 .navbar button {
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 12px;;
	letter-spacing: 1px;
	padding: 8px 12px;
	text-align: center;
	text-transform: uppercase;
}

#cmp_d00222a4-106e-4f25-9891-ed0cf1382d42 .navbar a.nav-link:hover,
#cmp_d00222a4-106e-4f25-9891-ed0cf1382d42 .navbar a.nav-link:focus,
#cmp_d00222a4-106e-4f25-9891-ed0cf1382d42 .navbar a.nav-link:active,
#cmp_d00222a4-106e-4f25-9891-ed0cf1382d42 .navbar button:hover,
#cmp_d00222a4-106e-4f25-9891-ed0cf1382d42 .navbar button:focus,
#cmp_d00222a4-106e-4f25-9891-ed0cf1382d42 .navbar button:active {
	color: rgb(55, 57, 57);
	outline: none;
}

#cmp_d00222a4-106e-4f25-9891-ed0cf1382d42 .navbar-nav .dropdown-menu a {
	color: rgb(55, 57, 57);
	padding: 10px 0;
}

#cmp_d00222a4-106e-4f25-9891-ed0cf1382d42 .navbar-toggler {
	padding: 1rem;
}

@media(min-width: 767px) {
	#cmp_d00222a4-106e-4f25-9891-ed0cf1382d42 .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_d00222a4-106e-4f25-9891-ed0cf1382d42 .navbar-nav li {
		-moz-flex-shrink: 0;
		-webkit-flex-shrink: 0;
		flex-shrink: 0;
	}

	#cmp_d00222a4-106e-4f25-9891-ed0cf1382d42 .navbar-nav .nav-link {
		padding: 8px 0 8px 28px;
	}
}

/*
 * components/how_to_manage_subscription/cmp_1df7628e-b787-4f8e-86f1-a49ec3f1572f/component.css
 */
#cmp_1df7628e-b787-4f8e-86f1-a49ec3f1572f {
	background-color: rgb(255, 255, 255);
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_1df7628e-b787-4f8e-86f1-a49ec3f1572f h1 {
	color: rgb(55, 57, 57);
	font-family: Libre Baskerville;
	font-size: 36px;
}

#cmp_1df7628e-b787-4f8e-86f1-a49ec3f1572f h2 {
	color: rgb(55, 57, 57);
	font-family: Alata;
	font-size: 24px;
}

#cmp_1df7628e-b787-4f8e-86f1-a49ec3f1572f h3 {
	color: rgb(55, 57, 57);
	font-family: Asap;
	font-size: 20px;
}

#cmp_1df7628e-b787-4f8e-86f1-a49ec3f1572f p {
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_1df7628e-b787-4f8e-86f1-a49ec3f1572f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_1df7628e-b787-4f8e-86f1-a49ec3f1572f ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

/*
 * components/how_to_manage_subscription/cmp_82c5e7a8-166a-47ae-b6d6-7eb56f6a0c16/component.css
 */
#cmp_82c5e7a8-166a-47ae-b6d6-7eb56f6a0c16 {
	background-color: rgb(255, 255, 255);
}

#cmp_82c5e7a8-166a-47ae-b6d6-7eb56f6a0c16 h1 {
	color: rgb(55, 57, 57);
	font-family: Libre Baskerville;
	font-size: 36px;
}

#cmp_82c5e7a8-166a-47ae-b6d6-7eb56f6a0c16 h2 {
	color: rgb(55, 57, 57);
	font-family: Alata;
	font-size: 24px;
}

#cmp_82c5e7a8-166a-47ae-b6d6-7eb56f6a0c16 h3 {
	color: rgb(55, 57, 57);
	font-family: Asap;
	font-size: 20px;
}

#cmp_82c5e7a8-166a-47ae-b6d6-7eb56f6a0c16 p {
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_82c5e7a8-166a-47ae-b6d6-7eb56f6a0c16 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_82c5e7a8-166a-47ae-b6d6-7eb56f6a0c16 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_82c5e7a8-166a-47ae-b6d6-7eb56f6a0c16 .btn {
	background-color: rgb(183, 224, 220);
	color: rgb(57, 55, 55);
	font-family: Montserrat;
	font-size: 14px;
}

#cmp_82c5e7a8-166a-47ae-b6d6-7eb56f6a0c16 .btn:hover {
	background-color: rgb(110, 135, 132);
	color: rgb(255, 255, 255);
}

#cmp_82c5e7a8-166a-47ae-b6d6-7eb56f6a0c16 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_82c5e7a8-166a-47ae-b6d6-7eb56f6a0c16 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

/*
 * components/how_to_manage_subscription/cmp_b72e8788-96a7-4c82-a04b-11ae1bb61e15/component.css
 */
#cmp_b72e8788-96a7-4c82-a04b-11ae1bb61e15 img {
	max-width: 100%;
}

/*
 * components/index/cmp_46a35310-325e-4869-8b08-0d88c4abc90b/component.css
 */
#cmp_46a35310-325e-4869-8b08-0d88c4abc90b {
	background-color: rgb(255, 255, 255);
}

#cmp_46a35310-325e-4869-8b08-0d88c4abc90b .title {
	margin-top: 40px;
}

#cmp_46a35310-325e-4869-8b08-0d88c4abc90b .box-choose-row {
	justify-content: center;
}

#cmp_46a35310-325e-4869-8b08-0d88c4abc90b .box-choose {
	margin-top: 40px;
	margin-bottom: 40px;
}

#cmp_46a35310-325e-4869-8b08-0d88c4abc90b .box-choose img {
	margin-bottom: 20px;
}

#cmp_46a35310-325e-4869-8b08-0d88c4abc90b h1 {
	color: rgb(55, 57, 57);
	font-family: Libre Baskerville;
	font-size: 36px;
}

#cmp_46a35310-325e-4869-8b08-0d88c4abc90b h2 {
	color: rgb(55, 57, 57);
	font-family: Abel;
	font-size: 24px;
}

#cmp_46a35310-325e-4869-8b08-0d88c4abc90b h3 {
	color: rgb(55, 57, 57);
	font-family: Asap;
	font-size: 20px;
}

#cmp_46a35310-325e-4869-8b08-0d88c4abc90b p {
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_46a35310-325e-4869-8b08-0d88c4abc90b h3 {
	margin-bottom: 25px;
}
/*
 * components/index/cmp_4d38ff7b-14cd-4ce9-8790-c0c19e9d8aa9/component.css
 */
#cmp_4d38ff7b-14cd-4ce9-8790-c0c19e9d8aa9 hr {
	border-top-color: rgb(77, 77, 77);
}

/*
 * components/index/cmp_5068d479-eedd-43f2-8518-e39e21cc6d25/component.css
 */
#cmp_5068d479-eedd-43f2-8518-e39e21cc6d25 img {
	max-width: 100%;
}

/*
 * components/index/cmp_584200bc-4b9a-4d4c-be74-10315fababe6/component.css
 */
#cmp_584200bc-4b9a-4d4c-be74-10315fababe6 {
	padding: 0;
}

#cmp_584200bc-4b9a-4d4c-be74-10315fababe6 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_584200bc-4b9a-4d4c-be74-10315fababe6 .hero-content h1 {
	color: rgb(187, 167, 232);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_584200bc-4b9a-4d4c-be74-10315fababe6 .hero-content h2 {
	color: rgb(0, 0, 0);
	font-family: Alata;
	font-size: 24px;
}

#cmp_584200bc-4b9a-4d4c-be74-10315fababe6 .hero-content h3 {
	color: rgb(0, 0, 0);
	font-family: Asap;
	font-size: 20px;
}

#cmp_584200bc-4b9a-4d4c-be74-10315fababe6 .hero-content p {
	color: #FFFFFF;
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_584200bc-4b9a-4d4c-be74-10315fababe6 .hero-content .btn {
	background-color: rgb(255, 255, 255);
	color: #FFFFFF;
	font-family: Montserrat;
	font-size: 1px;
}

#cmp_584200bc-4b9a-4d4c-be74-10315fababe6 .hero-content .btn:hover {
	background-color: rgb(255, 255, 255);
	color: #FFFFFF;
}


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

@media(min-width: 768px) {
	#cmp_584200bc-4b9a-4d4c-be74-10315fababe6 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_584200bc-4b9a-4d4c-be74-10315fababe6 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_584200bc-4b9a-4d4c-be74-10315fababe6 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_584200bc-4b9a-4d4c-be74-10315fababe6 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_584200bc-4b9a-4d4c-be74-10315fababe6 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_584200bc-4b9a-4d4c-be74-10315fababe6 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/index/cmp_688bdf7b-e374-445f-8291-3f48f84602b5/component.css
 */
#cmp_688bdf7b-e374-445f-8291-3f48f84602b5 {
	padding: 0;
}

#cmp_688bdf7b-e374-445f-8291-3f48f84602b5 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_688bdf7b-e374-445f-8291-3f48f84602b5 .hero-content h1 {
	color: rgb(0, 0, 0);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_688bdf7b-e374-445f-8291-3f48f84602b5 .hero-content h2 {
	color: rgb(0, 0, 0);
	font-family: Alata;
	font-size: 24px;
}

#cmp_688bdf7b-e374-445f-8291-3f48f84602b5 .hero-content h3 {
	color: rgb(0, 0, 0);
	font-family: Asap;
	font-size: 20px;
}

#cmp_688bdf7b-e374-445f-8291-3f48f84602b5 .hero-content p {
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_688bdf7b-e374-445f-8291-3f48f84602b5 .hero-content .btn {
	background-color: rgb(255, 255, 255);
	color: #FFFFFF;
	font-family: Montserrat;
	font-size: 14px;
}

#cmp_688bdf7b-e374-445f-8291-3f48f84602b5 .hero-content .btn:hover {
	background-color: rgb(255, 255, 255);
	color: #FFFFFF;
}


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

@media(min-width: 768px) {
	#cmp_688bdf7b-e374-445f-8291-3f48f84602b5 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_688bdf7b-e374-445f-8291-3f48f84602b5 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_688bdf7b-e374-445f-8291-3f48f84602b5 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_688bdf7b-e374-445f-8291-3f48f84602b5 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_688bdf7b-e374-445f-8291-3f48f84602b5 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_688bdf7b-e374-445f-8291-3f48f84602b5 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/index/cmp_6ce63087-9618-4e7f-a51e-dd2be42b6024/component.css
 */
/**********
Navigation
**********/
#cmp_6ce63087-9618-4e7f-a51e-dd2be42b6024 .navbar {
	background-color: rgba(0, 0, 0, 0.1);
	border-radius: 0;
	margin-bottom: 3rem;
}

#cmp_6ce63087-9618-4e7f-a51e-dd2be42b6024 .navbar-brand {
	color: rgb(74, 74, 74);
	font-family: Libre Baskerville;
	font-size: 1px;
	margin: 0;
	line-height: 1;
	text-align: center;
}

#cmp_6ce63087-9618-4e7f-a51e-dd2be42b6024 .navbar-brand > img {
	display: inline-block;
}

#cmp_6ce63087-9618-4e7f-a51e-dd2be42b6024 .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_6ce63087-9618-4e7f-a51e-dd2be42b6024 .navbar a.nav-link,
#cmp_6ce63087-9618-4e7f-a51e-dd2be42b6024 .navbar button {
	color: #FFFFFF;
	font-family: Montserrat;
	font-size: 20px;;
	letter-spacing: 1px;
	padding: 8px 12px;
	text-align: center;
	text-transform: uppercase;
}

#cmp_6ce63087-9618-4e7f-a51e-dd2be42b6024 .navbar a.nav-link:hover,
#cmp_6ce63087-9618-4e7f-a51e-dd2be42b6024 .navbar a.nav-link:focus,
#cmp_6ce63087-9618-4e7f-a51e-dd2be42b6024 .navbar a.nav-link:active,
#cmp_6ce63087-9618-4e7f-a51e-dd2be42b6024 .navbar button:hover,
#cmp_6ce63087-9618-4e7f-a51e-dd2be42b6024 .navbar button:focus,
#cmp_6ce63087-9618-4e7f-a51e-dd2be42b6024 .navbar button:active {
	color: rgb(55, 57, 57);
	outline: none;
}

#cmp_6ce63087-9618-4e7f-a51e-dd2be42b6024 .navbar-nav .dropdown-menu a {
	color: rgb(55, 57, 57);
	padding: 10px 0;
}

#cmp_6ce63087-9618-4e7f-a51e-dd2be42b6024 .navbar-toggler {
	padding: 1rem;
}

@media(min-width: 767px) {
	#cmp_6ce63087-9618-4e7f-a51e-dd2be42b6024 .navbar {
		background-color: transparent;
		margin-bottom: 0;
	}

	#cmp_6ce63087-9618-4e7f-a51e-dd2be42b6024 .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_6ce63087-9618-4e7f-a51e-dd2be42b6024 .navbar-nav li {
		-moz-flex-shrink: 0;
		-webkit-flex-shrink: 0;
		flex-shrink: 0;
	}

	#cmp_6ce63087-9618-4e7f-a51e-dd2be42b6024 .navbar-nav .nav-link {
		padding: 8px 0 8px 28px;
	}
}


/**********
Hero
**********/
#cmp_6ce63087-9618-4e7f-a51e-dd2be42b6024 .hero-content {
	padding: 20px;
}

@media(min-width: 768px) {
	#cmp_6ce63087-9618-4e7f-a51e-dd2be42b6024 .hero-content {
		min-height: 700px;
	}
}

#cmp_6ce63087-9618-4e7f-a51e-dd2be42b6024 .hero-content h1 {
	color: rgb(255, 255, 255);
	font-family: Anton;
	font-size: 50px;
	letter-spacing: 2px;
}

#cmp_6ce63087-9618-4e7f-a51e-dd2be42b6024 .hero-content h2 {
	color: rgb(255, 255, 255);
	font-family: Alata;
	font-size: 24px;
}

#cmp_6ce63087-9618-4e7f-a51e-dd2be42b6024 .hero-content h3 {
	color: rgb(255, 255, 255);
	font-family: Asap;
	font-size: 20px;
}

#cmp_6ce63087-9618-4e7f-a51e-dd2be42b6024 .hero-content p {
	color: rgb(255, 255, 255);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_6ce63087-9618-4e7f-a51e-dd2be42b6024 .hero-content .btn {
	margin-bottom: 10px;
}

#cmp_6ce63087-9618-4e7f-a51e-dd2be42b6024 .hero-content .btn.btn-primary {
	border: 2px solid transparent;
	background-color: rgb(190, 155, 200);
	color: rgb(56, 55, 55);
	font-family: Bowlby One;
	font-size: 14px;
}

#cmp_6ce63087-9618-4e7f-a51e-dd2be42b6024 .hero-content .btn.btn-primary:hover,
#cmp_6ce63087-9618-4e7f-a51e-dd2be42b6024 .hero-content .btn.btn-primary:focus,
#cmp_6ce63087-9618-4e7f-a51e-dd2be42b6024 .hero-content .btn.btn-primary:active,
#cmp_6ce63087-9618-4e7f-a51e-dd2be42b6024 .hero-content .btn.btn-primary:active:focus {
	background-color: rgb(124, 66, 177);
	color: rgb(255, 255, 255);
}

#cmp_6ce63087-9618-4e7f-a51e-dd2be42b6024 .hero-content .btn-secondary {
	border: 2px solid;

	background-color: rgb(241, 208, 226);
	border-color: rgb(56, 55, 55);
	color: rgb(56, 55, 55);
	font-family: Alata;
	font-size: 14px;
}

#cmp_6ce63087-9618-4e7f-a51e-dd2be42b6024 .hero-content .btn.btn-secondary:hover,
#cmp_6ce63087-9618-4e7f-a51e-dd2be42b6024 .hero-content .btn.btn-secondary:focus,
#cmp_6ce63087-9618-4e7f-a51e-dd2be42b6024 .hero-content .btn.btn-secondary:active,
#cmp_6ce63087-9618-4e7f-a51e-dd2be42b6024 .hero-content .btn.btn-secondary:active:focus {
	background-color: rgb(170, 139, 153);
	border-color: rgb(255, 255, 255);
	color: rgb(255, 255, 255);
}

#cmp_6ce63087-9618-4e7f-a51e-dd2be42b6024 h1 {
	margin-top: 20px;
	margin-bottom: 10px;
}
#cmp_6ce63087-9618-4e7f-a51e-dd2be42b6024 p {
	margin-bottom: 25px;
}
/*
 * components/index/cmp_72a5470c-21f5-4cc1-9120-8785f17afd92/component.css
 */
#cmp_72a5470c-21f5-4cc1-9120-8785f17afd92 {
	padding: 0;
}

#cmp_72a5470c-21f5-4cc1-9120-8785f17afd92 .hero-content {
	background-color: rgb(205, 237, 224);
	padding: 20px;
}

#cmp_72a5470c-21f5-4cc1-9120-8785f17afd92 .hero-content h1 {
	color: rgb(187, 167, 232);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_72a5470c-21f5-4cc1-9120-8785f17afd92 .hero-content h2 {
	color: rgb(37, 37, 37);
	font-family: Alata;
	font-size: 24px;
}

#cmp_72a5470c-21f5-4cc1-9120-8785f17afd92 .hero-content h3 {
	color: rgb(37, 37, 37);
	font-family: Asap;
	font-size: 20px;
}

#cmp_72a5470c-21f5-4cc1-9120-8785f17afd92 .hero-content p {
	color: #FFFFFF;
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_72a5470c-21f5-4cc1-9120-8785f17afd92 .hero-content .btn {
	background-color: rgb(65, 86, 143);
	color: rgb(205, 237, 224);
	font-family: Bowlby One;
	font-size: 14px;
}

#cmp_72a5470c-21f5-4cc1-9120-8785f17afd92 .hero-content .btn:hover {
	background-color: rgb(252, 247, 239);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_72a5470c-21f5-4cc1-9120-8785f17afd92 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_72a5470c-21f5-4cc1-9120-8785f17afd92 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_72a5470c-21f5-4cc1-9120-8785f17afd92 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_72a5470c-21f5-4cc1-9120-8785f17afd92 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_72a5470c-21f5-4cc1-9120-8785f17afd92 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_72a5470c-21f5-4cc1-9120-8785f17afd92 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_72a5470c-21f5-4cc1-9120-8785f17afd92 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/index/cmp_98fad221-6f20-4095-a75a-ed6595aeedf3/component.css
 */
#cmp_98fad221-6f20-4095-a75a-ed6595aeedf3 {
	padding: 0;
}

#cmp_98fad221-6f20-4095-a75a-ed6595aeedf3 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_98fad221-6f20-4095-a75a-ed6595aeedf3 .hero-content h1 {
	color: rgb(187, 167, 232);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_98fad221-6f20-4095-a75a-ed6595aeedf3 .hero-content h2 {
	color: rgb(0, 0, 0);
	font-family: Alata;
	font-size: 24px;
}

#cmp_98fad221-6f20-4095-a75a-ed6595aeedf3 .hero-content h3 {
	color: rgb(0, 0, 0);
	font-family: Asap;
	font-size: 20px;
}

#cmp_98fad221-6f20-4095-a75a-ed6595aeedf3 .hero-content p {
	color: #FFFFFF;
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_98fad221-6f20-4095-a75a-ed6595aeedf3 .hero-content .btn {
	background-color: rgb(255, 255, 255);
	color: #FFFFFF;
	font-family: Montserrat;
	font-size: 1px;
}

#cmp_98fad221-6f20-4095-a75a-ed6595aeedf3 .hero-content .btn:hover {
	background-color: rgb(255, 255, 255);
	color: #FFFFFF;
}


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

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

	#cmp_98fad221-6f20-4095-a75a-ed6595aeedf3 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_98fad221-6f20-4095-a75a-ed6595aeedf3 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

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

	#cmp_98fad221-6f20-4095-a75a-ed6595aeedf3 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_98fad221-6f20-4095-a75a-ed6595aeedf3 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/index/cmp_b6db1a6f-04b9-4721-93b2-292a7fad2c01/component.css
 */
#cmp_b6db1a6f-04b9-4721-93b2-292a7fad2c01 {
	background-color: rgb(255, 255, 255);
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_b6db1a6f-04b9-4721-93b2-292a7fad2c01 h1 {
	color: rgb(55, 57, 57);
	font-family: Libre Baskerville;
	font-size: 36px;
}

#cmp_b6db1a6f-04b9-4721-93b2-292a7fad2c01 h2 {
	color: rgb(55, 57, 57);
	font-family: Alata;
	font-size: 24px;
}

#cmp_b6db1a6f-04b9-4721-93b2-292a7fad2c01 h3 {
	color: rgb(55, 57, 57);
	font-family: Asap;
	font-size: 20px;
}

#cmp_b6db1a6f-04b9-4721-93b2-292a7fad2c01 p {
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_b6db1a6f-04b9-4721-93b2-292a7fad2c01 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_b6db1a6f-04b9-4721-93b2-292a7fad2c01 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

/*
 * components/index/cmp_ea1dce91-a2f9-4a10-ae8d-ed9e9097880f/component.css
 */
#cmp_ea1dce91-a2f9-4a10-ae8d-ed9e9097880f {
	background-color: rgb(255, 255, 255);
}

#cmp_ea1dce91-a2f9-4a10-ae8d-ed9e9097880f h1 {
	color: rgb(55, 57, 57);
	font-family: Libre Baskerville;
	font-size: 36px;
}

#cmp_ea1dce91-a2f9-4a10-ae8d-ed9e9097880f h2 {
	color: rgb(55, 57, 57);
	font-family: Alata;
	font-size: 24px;
}

#cmp_ea1dce91-a2f9-4a10-ae8d-ed9e9097880f h3 {
	color: rgb(55, 57, 57);
	font-family: Asap;
	font-size: 20px;
}

#cmp_ea1dce91-a2f9-4a10-ae8d-ed9e9097880f p {
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_ea1dce91-a2f9-4a10-ae8d-ed9e9097880f .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_ea1dce91-a2f9-4a10-ae8d-ed9e9097880f .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_ea1dce91-a2f9-4a10-ae8d-ed9e9097880f .btn {
	background-color: rgb(183, 224, 220);
	color: rgb(57, 55, 55);
	font-family: Bowlby One;
	font-size: 14px;
}

#cmp_ea1dce91-a2f9-4a10-ae8d-ed9e9097880f .btn:hover {
	background-color: rgb(110, 135, 132);
	color: rgb(255, 255, 255);
}

#cmp_ea1dce91-a2f9-4a10-ae8d-ed9e9097880f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_ea1dce91-a2f9-4a10-ae8d-ed9e9097880f ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

/*
 * components/index/cmp_fa74f57f-3836-43cd-8820-0b01fbbd5604/component.css
 */
#cmp_fa74f57f-3836-43cd-8820-0b01fbbd5604 {
	padding: 0;
}

#cmp_fa74f57f-3836-43cd-8820-0b01fbbd5604 .hero-content {
	background-color: rgb(247, 234, 230);
	padding: 20px;
}

#cmp_fa74f57f-3836-43cd-8820-0b01fbbd5604 .hero-content h1 {
	color: rgb(187, 167, 232);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_fa74f57f-3836-43cd-8820-0b01fbbd5604 .hero-content h2 {
	color: rgb(57, 55, 55);
	font-family: Alata;
	font-size: 24px;
}

#cmp_fa74f57f-3836-43cd-8820-0b01fbbd5604 .hero-content h3 {
	color: #FFFFFF;
	font-family: Asap;
	font-size: 20px;
}

#cmp_fa74f57f-3836-43cd-8820-0b01fbbd5604 .hero-content p {
	color: rgb(57, 55, 55);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_fa74f57f-3836-43cd-8820-0b01fbbd5604 .hero-content .btn {
	background-color: rgb(187, 167, 232);
	color: #FFFFFF;
	font-family: Montserrat;
	font-size: 14px;
}

#cmp_fa74f57f-3836-43cd-8820-0b01fbbd5604 .hero-content .btn:hover {
	background-color: rgb(252, 247, 239);
	color: #FFFFFF;
}


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

@media(min-width: 768px) {
	#cmp_fa74f57f-3836-43cd-8820-0b01fbbd5604 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_fa74f57f-3836-43cd-8820-0b01fbbd5604 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_fa74f57f-3836-43cd-8820-0b01fbbd5604 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_fa74f57f-3836-43cd-8820-0b01fbbd5604 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_fa74f57f-3836-43cd-8820-0b01fbbd5604 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_fa74f57f-3836-43cd-8820-0b01fbbd5604 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/past_boxes/cmp_097999b3-0dc4-49b3-a20e-0635e8fe403a/component.css
 */
#cmp_097999b3-0dc4-49b3-a20e-0635e8fe403a {
	background-color: rgb(255, 255, 255);
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_097999b3-0dc4-49b3-a20e-0635e8fe403a h1 {
	color: rgb(55, 57, 57);
	font-family: Libre Baskerville;
	font-size: 36px;
}

#cmp_097999b3-0dc4-49b3-a20e-0635e8fe403a h2 {
	color: rgb(55, 57, 57);
	font-family: Alata;
	font-size: 24px;
}

#cmp_097999b3-0dc4-49b3-a20e-0635e8fe403a h3 {
	color: rgb(55, 57, 57);
	font-family: Asap;
	font-size: 20px;
}

#cmp_097999b3-0dc4-49b3-a20e-0635e8fe403a p {
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_097999b3-0dc4-49b3-a20e-0635e8fe403a ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_097999b3-0dc4-49b3-a20e-0635e8fe403a ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

/*
 * components/past_boxes/cmp_85ae1eb6-ed77-4923-93b3-c960d84eddc4/component.css
 */
#cmp_85ae1eb6-ed77-4923-93b3-c960d84eddc4 {
	background-color: rgb(255, 255, 255);
}

#cmp_85ae1eb6-ed77-4923-93b3-c960d84eddc4 h1 {
	color: rgb(55, 57, 57);
	font-family: Libre Baskerville;
	font-size: 36px;
}

#cmp_85ae1eb6-ed77-4923-93b3-c960d84eddc4 h2 {
	color: rgb(55, 57, 57);
	font-family: Alata;
	font-size: 24px;
}

#cmp_85ae1eb6-ed77-4923-93b3-c960d84eddc4 h3 {
	color: rgb(55, 57, 57);
	font-family: Asap;
	font-size: 20px;
}

#cmp_85ae1eb6-ed77-4923-93b3-c960d84eddc4 p {
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_85ae1eb6-ed77-4923-93b3-c960d84eddc4 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_85ae1eb6-ed77-4923-93b3-c960d84eddc4 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_85ae1eb6-ed77-4923-93b3-c960d84eddc4 .btn {
	background-color: rgb(221, 114, 248);
	color: rgb(57, 55, 55);
	font-family: Montserrat;
	font-size: 14px;
}

#cmp_85ae1eb6-ed77-4923-93b3-c960d84eddc4 .btn:hover {
	background-color: rgb(110, 135, 132);
	color: rgb(255, 255, 255);
}

#cmp_85ae1eb6-ed77-4923-93b3-c960d84eddc4 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_85ae1eb6-ed77-4923-93b3-c960d84eddc4 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

/*
 * components/past_boxes/cmp_d6f56b64-430b-4567-9abf-60a558278304/component.css
 */
#cmp_d6f56b64-430b-4567-9abf-60a558278304 img {
	max-width: 100%;
}

/*
 * components/reviews_and_unboxings/cmp_1d0a4816-0200-486a-84e8-330c594db435/component.css
 */
#cmp_1d0a4816-0200-486a-84e8-330c594db435 {
	background-color: rgb(255, 255, 255);
}

#cmp_1d0a4816-0200-486a-84e8-330c594db435 h1 {
	color: rgb(55, 57, 57);
	font-family: Libre Baskerville;
	font-size: 36px;
}

#cmp_1d0a4816-0200-486a-84e8-330c594db435 h2 {
	color: rgb(55, 57, 57);
	font-family: Alata;
	font-size: 24px;
}

#cmp_1d0a4816-0200-486a-84e8-330c594db435 h3 {
	color: rgb(55, 57, 57);
	font-family: Asap;
	font-size: 20px;
}

#cmp_1d0a4816-0200-486a-84e8-330c594db435 p {
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_1d0a4816-0200-486a-84e8-330c594db435 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_1d0a4816-0200-486a-84e8-330c594db435 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_1d0a4816-0200-486a-84e8-330c594db435 .btn {
	background-color: rgb(245, 166, 35);
	color: rgb(57, 55, 55);
	font-family: Montserrat;
	font-size: 14px;
}

#cmp_1d0a4816-0200-486a-84e8-330c594db435 .btn:hover {
	background-color: rgb(74, 74, 74);
	color: rgb(255, 255, 255);
}

#cmp_1d0a4816-0200-486a-84e8-330c594db435 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_1d0a4816-0200-486a-84e8-330c594db435 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

/*
 * components/reviews_and_unboxings/cmp_31fe6242-fa07-4e3b-ac54-145d2df10047/component.css
 */
#cmp_31fe6242-fa07-4e3b-ac54-145d2df10047 {
	background-color: rgb(255, 255, 255);
}

#cmp_31fe6242-fa07-4e3b-ac54-145d2df10047 h1 {
	color: rgb(55, 57, 57);
	font-family: Libre Baskerville;
	font-size: 36px;
}

#cmp_31fe6242-fa07-4e3b-ac54-145d2df10047 h2 {
	color: rgb(55, 57, 57);
	font-family: Alata;
	font-size: 24px;
}

#cmp_31fe6242-fa07-4e3b-ac54-145d2df10047 h3 {
	color: rgb(55, 57, 57);
	font-family: Asap;
	font-size: 20px;
}

#cmp_31fe6242-fa07-4e3b-ac54-145d2df10047 p {
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_31fe6242-fa07-4e3b-ac54-145d2df10047 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_31fe6242-fa07-4e3b-ac54-145d2df10047 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_31fe6242-fa07-4e3b-ac54-145d2df10047 .btn {
	background-color: rgb(245, 166, 35);
	color: rgb(57, 55, 55);
	font-family: Montserrat;
	font-size: 14px;
}

#cmp_31fe6242-fa07-4e3b-ac54-145d2df10047 .btn:hover {
	background-color: rgb(74, 74, 74);
	color: rgb(255, 255, 255);
}

#cmp_31fe6242-fa07-4e3b-ac54-145d2df10047 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_31fe6242-fa07-4e3b-ac54-145d2df10047 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

/*
 * components/reviews_and_unboxings/cmp_37b5c782-05d6-4d6c-bb31-edf3b2f9423d/component.css
 */
#cmp_37b5c782-05d6-4d6c-bb31-edf3b2f9423d {
	background-color: rgb(255, 255, 255);
}

#cmp_37b5c782-05d6-4d6c-bb31-edf3b2f9423d h1 {
	color: rgb(55, 57, 57);
	font-family: Libre Baskerville;
	font-size: 36px;
}

#cmp_37b5c782-05d6-4d6c-bb31-edf3b2f9423d h2 {
	color: rgb(55, 57, 57);
	font-family: Alata;
	font-size: 24px;
}

#cmp_37b5c782-05d6-4d6c-bb31-edf3b2f9423d h3 {
	color: rgb(55, 57, 57);
	font-family: Asap;
	font-size: 20px;
}

#cmp_37b5c782-05d6-4d6c-bb31-edf3b2f9423d p {
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_37b5c782-05d6-4d6c-bb31-edf3b2f9423d .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_37b5c782-05d6-4d6c-bb31-edf3b2f9423d .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_37b5c782-05d6-4d6c-bb31-edf3b2f9423d .btn {
	background-color: rgb(245, 166, 35);
	color: rgb(57, 55, 55);
	font-family: Montserrat;
	font-size: 14px;
}

#cmp_37b5c782-05d6-4d6c-bb31-edf3b2f9423d .btn:hover {
	background-color: rgb(74, 74, 74);
	color: rgb(255, 255, 255);
}

#cmp_37b5c782-05d6-4d6c-bb31-edf3b2f9423d ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_37b5c782-05d6-4d6c-bb31-edf3b2f9423d ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

/*
 * components/reviews_and_unboxings/cmp_4d3c826c-09af-4cff-bf2e-f4a3e667421e/component.css
 */
#cmp_4d3c826c-09af-4cff-bf2e-f4a3e667421e {
	background-color: rgb(255, 255, 255);
}

#cmp_4d3c826c-09af-4cff-bf2e-f4a3e667421e h1 {
	color: rgb(55, 57, 57);
	font-family: Libre Baskerville;
	font-size: 36px;
}

#cmp_4d3c826c-09af-4cff-bf2e-f4a3e667421e h2 {
	color: rgb(55, 57, 57);
	font-family: Alata;
	font-size: 24px;
}

#cmp_4d3c826c-09af-4cff-bf2e-f4a3e667421e h3 {
	color: rgb(55, 57, 57);
	font-family: Asap;
	font-size: 20px;
}

#cmp_4d3c826c-09af-4cff-bf2e-f4a3e667421e p {
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_4d3c826c-09af-4cff-bf2e-f4a3e667421e .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_4d3c826c-09af-4cff-bf2e-f4a3e667421e .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_4d3c826c-09af-4cff-bf2e-f4a3e667421e .btn {
	background-color: rgb(245, 166, 35);
	color: rgb(57, 55, 55);
	font-family: Montserrat;
	font-size: 14px;
}

#cmp_4d3c826c-09af-4cff-bf2e-f4a3e667421e .btn:hover {
	background-color: rgb(74, 74, 74);
	color: rgb(255, 255, 255);
}

#cmp_4d3c826c-09af-4cff-bf2e-f4a3e667421e ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_4d3c826c-09af-4cff-bf2e-f4a3e667421e ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

/*
 * components/reviews_and_unboxings/cmp_8ac5248d-74d4-4449-a5e7-f7943f6db8ee/component.css
 */
#cmp_8ac5248d-74d4-4449-a5e7-f7943f6db8ee {
	background-color: rgb(255, 255, 255);
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_8ac5248d-74d4-4449-a5e7-f7943f6db8ee h1 {
	color: rgb(55, 57, 57);
	font-family: Libre Baskerville;
	font-size: 36px;
}

#cmp_8ac5248d-74d4-4449-a5e7-f7943f6db8ee h2 {
	color: rgb(55, 57, 57);
	font-family: Alata;
	font-size: 24px;
}

#cmp_8ac5248d-74d4-4449-a5e7-f7943f6db8ee h3 {
	color: rgb(55, 57, 57);
	font-family: Asap;
	font-size: 20px;
}

#cmp_8ac5248d-74d4-4449-a5e7-f7943f6db8ee p {
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_8ac5248d-74d4-4449-a5e7-f7943f6db8ee ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_8ac5248d-74d4-4449-a5e7-f7943f6db8ee ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

/*
 * components/reviews_and_unboxings/cmp_9ee219a9-8135-4393-8f48-8c2e947b1a1c/component.css
 */
#cmp_9ee219a9-8135-4393-8f48-8c2e947b1a1c {
	background-color: rgb(255, 255, 255);
}

#cmp_9ee219a9-8135-4393-8f48-8c2e947b1a1c h1 {
	color: rgb(55, 57, 57);
	font-family: Libre Baskerville;
	font-size: 36px;
}

#cmp_9ee219a9-8135-4393-8f48-8c2e947b1a1c h2 {
	color: rgb(55, 57, 57);
	font-family: Alata;
	font-size: 24px;
}

#cmp_9ee219a9-8135-4393-8f48-8c2e947b1a1c h3 {
	color: rgb(55, 57, 57);
	font-family: Asap;
	font-size: 20px;
}

#cmp_9ee219a9-8135-4393-8f48-8c2e947b1a1c p {
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_9ee219a9-8135-4393-8f48-8c2e947b1a1c .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_9ee219a9-8135-4393-8f48-8c2e947b1a1c .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_9ee219a9-8135-4393-8f48-8c2e947b1a1c .btn {
	background-color: rgb(245, 166, 35);
	color: rgb(57, 55, 55);
	font-family: Montserrat;
	font-size: 14px;
}

#cmp_9ee219a9-8135-4393-8f48-8c2e947b1a1c .btn:hover {
	background-color: rgb(74, 74, 74);
	color: rgb(255, 255, 255);
}

#cmp_9ee219a9-8135-4393-8f48-8c2e947b1a1c ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_9ee219a9-8135-4393-8f48-8c2e947b1a1c ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

/*
 * components/reviews_and_unboxings/cmp_a181c389-f8d5-4b3e-89c5-180ad2959133/component.css
 */
#cmp_a181c389-f8d5-4b3e-89c5-180ad2959133 img {
	max-width: 100%;
}

/*
 * components/reviews_and_unboxings/cmp_b1b214ff-b0c0-40c3-b13b-8e0c893c4a84/component.css
 */
#cmp_b1b214ff-b0c0-40c3-b13b-8e0c893c4a84 img {
	max-width: 100%;
}

/*
 * components/reviews_and_unboxings/cmp_bbe9f154-7eb1-41c1-b68f-6cb77f7f2bc1/component.css
 */
#cmp_bbe9f154-7eb1-41c1-b68f-6cb77f7f2bc1 {
	background-color: rgb(255, 255, 255);
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_bbe9f154-7eb1-41c1-b68f-6cb77f7f2bc1 h1 {
	color: rgb(55, 57, 57);
	font-family: Libre Baskerville;
	font-size: 36px;
}

#cmp_bbe9f154-7eb1-41c1-b68f-6cb77f7f2bc1 h2 {
	color: rgb(55, 57, 57);
	font-family: Alata;
	font-size: 24px;
}

#cmp_bbe9f154-7eb1-41c1-b68f-6cb77f7f2bc1 h3 {
	color: rgb(55, 57, 57);
	font-family: Asap;
	font-size: 20px;
}

#cmp_bbe9f154-7eb1-41c1-b68f-6cb77f7f2bc1 p {
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_bbe9f154-7eb1-41c1-b68f-6cb77f7f2bc1 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_bbe9f154-7eb1-41c1-b68f-6cb77f7f2bc1 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

/*
 * components/reviews_and_unboxings/cmp_f341d489-56f8-43a4-9a31-15572f029696/component.css
 */
#cmp_f341d489-56f8-43a4-9a31-15572f029696 {
	background-color: rgba(245, 166, 35, 0);
}

#cmp_f341d489-56f8-43a4-9a31-15572f029696 h1 {
	color: rgb(55, 57, 57);
	font-family: Libre Baskerville;
	font-size: 36px;
}

#cmp_f341d489-56f8-43a4-9a31-15572f029696 h2 {
	color: rgb(55, 57, 57);
	font-family: Alata;
	font-size: 24px;
}

#cmp_f341d489-56f8-43a4-9a31-15572f029696 h3 {
	color: rgb(55, 57, 57);
	font-family: Asap;
	font-size: 20px;
}

#cmp_f341d489-56f8-43a4-9a31-15572f029696 p {
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_f341d489-56f8-43a4-9a31-15572f029696 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_f341d489-56f8-43a4-9a31-15572f029696 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_f341d489-56f8-43a4-9a31-15572f029696 .btn {
	background-color: rgb(245, 166, 35);
	color: rgb(57, 55, 55);
	font-family: Montserrat;
	font-size: 14px;
}

#cmp_f341d489-56f8-43a4-9a31-15572f029696 .btn:hover {
	background-color: rgb(74, 74, 74);
	color: rgb(255, 255, 255);
}

#cmp_f341d489-56f8-43a4-9a31-15572f029696 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_f341d489-56f8-43a4-9a31-15572f029696 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

/*
 * components/shop/listing/cmp_4e28d4f5-c702-4d1b-a59b-77aefc236267/component.css
 */
#cmp_4e28d4f5-c702-4d1b-a59b-77aefc236267 {
	justify-content: center;
	margin-bottom: 35px;
}

#cmp_4e28d4f5-c702-4d1b-a59b-77aefc236267 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_5b503888-df13-4627-af09-e3f729544a46/component.css
 */
#cmp_5b503888-df13-4627-af09-e3f729544a46 {
	background-color: rgb(255, 255, 255);
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_5b503888-df13-4627-af09-e3f729544a46 h1 {
	color: rgb(55, 57, 57);
	font-family: Libre Baskerville;
	font-size: 36px;
}

#cmp_5b503888-df13-4627-af09-e3f729544a46 h2 {
	color: rgb(55, 57, 57);
	font-family: Alata;
	font-size: 24px;
}

#cmp_5b503888-df13-4627-af09-e3f729544a46 h3 {
	color: rgb(55, 57, 57);
	font-family: Asap;
	font-size: 20px;
}

#cmp_5b503888-df13-4627-af09-e3f729544a46 p {
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_5b503888-df13-4627-af09-e3f729544a46 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_5b503888-df13-4627-af09-e3f729544a46 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_5b503888-df13-4627-af09-e3f729544a46  {
	padding: 50px 0 15px;
}
#cmp_5b503888-df13-4627-af09-e3f729544a46 h1 {
	margin-bottom: 15px;
}
/*
 * components/shop/listing/cmp_5c265a8b-aa64-4c37-ad85-89b006918216/component.css
 */
#cmp_5c265a8b-aa64-4c37-ad85-89b006918216 .shop-listing-item {
	color: rgb(55, 57, 57);
}

#cmp_5c265a8b-aa64-4c37-ad85-89b006918216 .shop-listing-item:hover,
#cmp_5c265a8b-aa64-4c37-ad85-89b006918216 .shop-listing-item:focus {
	text-decoration: none;
}

#cmp_5c265a8b-aa64-4c37-ad85-89b006918216 .shop-listing-item__image {
	background-size: cover;
	background-position: center center;
}

#cmp_5c265a8b-aa64-4c37-ad85-89b006918216 .shop-listing-item__name {
	margin: 10px 0;
}

#cmp_5c265a8b-aa64-4c37-ad85-89b006918216 .shop-listing-item__price {
	margin: 10px 0 30px;
}

#cmp_5c265a8b-aa64-4c37-ad85-89b006918216 .product_paging {
	-webkit-display: flex;
	-ms-display: flex;
	display: flex;
	justify-content: center;

	margin: 20px 0;
}

#cmp_5c265a8b-aa64-4c37-ad85-89b006918216 .product_page a,
#cmp_5c265a8b-aa64-4c37-ad85-89b006918216 .next_page a,
#cmp_5c265a8b-aa64-4c37-ad85-89b006918216 .prev_page a {
	display: block;
	padding: 12px 15px;
	margin: 0 2px;
	border: 1px solid #E0E0E0;
	border-radius: 5px;
}

#cmp_5c265a8b-aa64-4c37-ad85-89b006918216 .product_page.active a,
#cmp_5c265a8b-aa64-4c37-ad85-89b006918216 .product_page a:hover,
#cmp_5c265a8b-aa64-4c37-ad85-89b006918216 .product_page a:focus,
#cmp_5c265a8b-aa64-4c37-ad85-89b006918216 .next_page a:hover,
#cmp_5c265a8b-aa64-4c37-ad85-89b006918216 .next_page a:focus,
#cmp_5c265a8b-aa64-4c37-ad85-89b006918216 .prev_page a:hover,
#cmp_5c265a8b-aa64-4c37-ad85-89b006918216 .prev_page a:focus {
	text-decoration: none;
	background-color: #F9F9F9;
}

#cmp_5c265a8b-aa64-4c37-ad85-89b006918216 .product_page.active a {
	color: black;
}

/*
 * components/shop/listing/cmp_d9bfea1a-5917-47bc-8c03-5b80bcd30fde/component.css
 */
#cmp_d9bfea1a-5917-47bc-8c03-5b80bcd30fde {
	justify-content: center;
}

#cmp_d9bfea1a-5917-47bc-8c03-5b80bcd30fde ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

#cmp_d9bfea1a-5917-47bc-8c03-5b80bcd30fde  {
	border-bottom: 1px solid #E1E1E1;
	margin-bottom: 35px;
	padding-bottom: 35px;
}
/*
 * components/shop/product/cmp_3ade4aee-4802-4a46-a4a5-1f2669b3e516/component.css
 */
#cmp_3ade4aee-4802-4a46-a4a5-1f2669b3e516 .shop-product__name {
	margin-bottom: 10px;
}

#cmp_3ade4aee-4802-4a46-a4a5-1f2669b3e516 .shop-product__price {
	margin-bottom: 20px;
}

#cmp_3ade4aee-4802-4a46-a4a5-1f2669b3e516 .shop-product select {
	width: auto;
}

#cmp_3ade4aee-4802-4a46-a4a5-1f2669b3e516 .shop-product__add-to-cart {
	margin-bottom: 20px;
}

#cmp_3ade4aee-4802-4a46-a4a5-1f2669b3e516 .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin-bottom: 40px;
}

#cmp_3ade4aee-4802-4a46-a4a5-1f2669b3e516 .shop-product__review-share-desktop .col-xs-6 {
	padding-top: 10px;
}

#cmp_3ade4aee-4802-4a46-a4a5-1f2669b3e516 .shop-product__review-share-desktop .col-xs-6 + .col-xs-6 {
	border-left: 1px solid #E1E1E1;
}

/*
 * components/shop/product/cmp_9fa977f6-d6a4-48cc-87df-30148eaf024c/component.css
 */
#cmp_9fa977f6-d6a4-48cc-87df-30148eaf024c.shop-product-header {
	padding: 50px 0 15px;
}

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

/*
 * components/sneak_peek/cmp_20e4e2e4-3ef8-4ce8-91e5-6873d65adec4/component.css
 */
#cmp_20e4e2e4-3ef8-4ce8-91e5-6873d65adec4 {
	background-color: rgb(255, 255, 255);
}

#cmp_20e4e2e4-3ef8-4ce8-91e5-6873d65adec4 h1 {
	color: rgb(55, 57, 57);
	font-family: Libre Baskerville;
	font-size: 36px;
}

#cmp_20e4e2e4-3ef8-4ce8-91e5-6873d65adec4 h2 {
	color: rgb(55, 57, 57);
	font-family: Alata;
	font-size: 24px;
}

#cmp_20e4e2e4-3ef8-4ce8-91e5-6873d65adec4 h3 {
	color: rgb(55, 57, 57);
	font-family: Asap;
	font-size: 20px;
}

#cmp_20e4e2e4-3ef8-4ce8-91e5-6873d65adec4 p {
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_20e4e2e4-3ef8-4ce8-91e5-6873d65adec4 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_20e4e2e4-3ef8-4ce8-91e5-6873d65adec4 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_20e4e2e4-3ef8-4ce8-91e5-6873d65adec4 .btn {
	background-color: rgb(183, 224, 220);
	color: rgb(57, 55, 55);
	font-family: Montserrat;
	font-size: 14px;
}

#cmp_20e4e2e4-3ef8-4ce8-91e5-6873d65adec4 .btn:hover {
	background-color: rgb(110, 135, 132);
	color: rgb(255, 255, 255);
}

#cmp_20e4e2e4-3ef8-4ce8-91e5-6873d65adec4 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_20e4e2e4-3ef8-4ce8-91e5-6873d65adec4 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

/*
 * components/sneak_peek/cmp_c7e58f33-46af-4583-a986-d0bc214b5217/component.css
 */
#cmp_c7e58f33-46af-4583-a986-d0bc214b5217 img {
	max-width: 100%;
}

/*
 * components/sneak_peek/cmp_f8ef76a3-8d2c-4a98-826d-fcfd5a1c4d6e/component.css
 */
#cmp_f8ef76a3-8d2c-4a98-826d-fcfd5a1c4d6e {
	background-color: rgb(255, 255, 255);
}

#cmp_f8ef76a3-8d2c-4a98-826d-fcfd5a1c4d6e h1 {
	color: rgb(55, 57, 57);
	font-family: Libre Baskerville;
	font-size: 36px;
}

#cmp_f8ef76a3-8d2c-4a98-826d-fcfd5a1c4d6e h2 {
	color: rgb(55, 57, 57);
	font-family: Alata;
	font-size: 24px;
}

#cmp_f8ef76a3-8d2c-4a98-826d-fcfd5a1c4d6e h3 {
	color: rgb(55, 57, 57);
	font-family: Asap;
	font-size: 20px;
}

#cmp_f8ef76a3-8d2c-4a98-826d-fcfd5a1c4d6e p {
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_f8ef76a3-8d2c-4a98-826d-fcfd5a1c4d6e .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_f8ef76a3-8d2c-4a98-826d-fcfd5a1c4d6e .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_f8ef76a3-8d2c-4a98-826d-fcfd5a1c4d6e .btn {
	background-color: rgb(183, 224, 220);
	color: rgb(57, 55, 55);
	font-family: Montserrat;
	font-size: 14px;
}

#cmp_f8ef76a3-8d2c-4a98-826d-fcfd5a1c4d6e .btn:hover {
	background-color: rgb(110, 135, 132);
	color: rgb(255, 255, 255);
}

#cmp_f8ef76a3-8d2c-4a98-826d-fcfd5a1c4d6e ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_f8ef76a3-8d2c-4a98-826d-fcfd5a1c4d6e ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

/*
 * components/sold_out/cmp_7c0a4c35-7bb2-49f9-9714-c01aba111e6f/component.css
 */
#cmp_7c0a4c35-7bb2-49f9-9714-c01aba111e6f {
	background-color: rgb(255, 255, 255);
}

#cmp_7c0a4c35-7bb2-49f9-9714-c01aba111e6f h1 {
	color: rgb(55, 57, 57);
	font-family: Libre Baskerville;
	font-size: 36px;
}

#cmp_7c0a4c35-7bb2-49f9-9714-c01aba111e6f h2 {
	color: rgb(55, 57, 57);
	font-family: Alata;
	font-size: 24px;
}

#cmp_7c0a4c35-7bb2-49f9-9714-c01aba111e6f h3 {
	color: rgb(55, 57, 57);
	font-family: Asap;
	font-size: 20px;
}

#cmp_7c0a4c35-7bb2-49f9-9714-c01aba111e6f p {
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 1px;
}

#cmp_7c0a4c35-7bb2-49f9-9714-c01aba111e6f .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_7c0a4c35-7bb2-49f9-9714-c01aba111e6f .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_7c0a4c35-7bb2-49f9-9714-c01aba111e6f .btn {
	background-color: rgb(245, 130, 35);
	color: rgb(57, 55, 55);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_7c0a4c35-7bb2-49f9-9714-c01aba111e6f .btn:hover {
	background-color: rgb(110, 135, 132);
	color: rgb(255, 255, 255);
}

#cmp_7c0a4c35-7bb2-49f9-9714-c01aba111e6f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 1px;
}

#cmp_7c0a4c35-7bb2-49f9-9714-c01aba111e6f ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 1px;
}

#cmp_7c0a4c35-7bb2-49f9-9714-c01aba111e6f  {
	padding-bottom: 50px;
}
/*
 * components/sold_out/cmp_ee4c7a6e-0f4b-4de0-95e7-973d95e51793/component.css
 */
#cmp_ee4c7a6e-0f4b-4de0-95e7-973d95e51793 img {
	max-width: 100%;
}

#cmp_ee4c7a6e-0f4b-4de0-95e7-973d95e51793  {
	padding-top: 50px;
}
/*
 * components/subscribe/cmp_318ff39f-2854-4769-82cb-5c23c550d0f5/component.css
 */

/*
 * components/subscribe/cmp_b3416ede-0c6c-4f1b-9a64-2fe94baab74d/component.css
 */
#cmp_b3416ede-0c6c-4f1b-9a64-2fe94baab74d {
	background-color: rgb(255, 255, 255);
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_b3416ede-0c6c-4f1b-9a64-2fe94baab74d h1 {
	color: rgb(55, 57, 57);
	font-family: Libre Baskerville;
	font-size: 36px;
}

#cmp_b3416ede-0c6c-4f1b-9a64-2fe94baab74d h2 {
	color: rgb(55, 57, 57);
	font-family: Alata;
	font-size: 24px;
}

#cmp_b3416ede-0c6c-4f1b-9a64-2fe94baab74d h3 {
	color: rgb(55, 57, 57);
	font-family: Asap;
	font-size: 20px;
}

#cmp_b3416ede-0c6c-4f1b-9a64-2fe94baab74d p {
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_b3416ede-0c6c-4f1b-9a64-2fe94baab74d ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

#cmp_b3416ede-0c6c-4f1b-9a64-2fe94baab74d ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(55, 57, 57);
	font-family: Montserrat;
	font-size: 18px;
}

/*
 * components/subscribe_flow/survey_step/cmp_6b21749a-a072-42db-b84e-554ac991b4a4/component.css
 */
#cmp_6b21749a-a072-42db-b84e-554ac991b4a4 {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/survey_step/cmp_b9fc6c4d-aeec-4021-bd78-6551a1729aac/component.css
 */
#cmp_b9fc6c4d-aeec-4021-bd78-6551a1729aac.survey h2 {
	margin-bottom: 0.5em;
}

#cmp_b9fc6c4d-aeec-4021-bd78-6551a1729aac.survey .radio input[type="radio"],
#cmp_b9fc6c4d-aeec-4021-bd78-6551a1729aac.survey .checkbox input[type="checkbox"] {
	margin-right: 0.5em;
}

#cmp_b9fc6c4d-aeec-4021-bd78-6551a1729aac.survey .survey-field {
	margin-bottom: 2em;
}

/*
 * components/subscribe_flow/terms_step/cmp_2e05d5aa-f241-4ca9-a16a-82f9350b01c7/component.css
 */

/*
 * components/subscribe_flow/terms_step/cmp_9ef86b8a-0f83-4732-9922-e5675b57dfde/component.css
 */
#cmp_9ef86b8a-0f83-4732-9922-e5675b57dfde {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/variant_step/cmp_556e2af1-a240-4b49-a364-ad246345c667/component.css
 */
#cmp_556e2af1-a240-4b49-a364-ad246345c667 {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/variant_step/cmp_7511c5a7-41ec-49fd-94a9-75309fcfb2f2/component.css
 */