/*
 * css/style.css
 */
/* Globals
------------------------------*/
body {
	background-color: rgb(255, 255, 255);
	color: #4A4A4A;
	font-family: Roboto;
	font-size: 16px;
	letter-spacing: 0.077em;
	line-height: 1.5em;
}

h1 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 48px;
}

h2 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 36px;
}

h3 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 24px;
}

p {
	line-height: 1.5em;
}

a,
.btn-link {
	color: rgb(235, 195, 28);
}

a:hover,
a:focus,
a:active,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
	color: rgb(25, 23, 28);
}

/* 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(235, 195, 28);
}

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

.btn-small {
	padding: 0.6em 1.8em;
	border: 1px solid rgb(235, 195, 28);
	border-radius: 15px;
	color: rgb(235, 195, 28);
}

.btn-small:hover,
.btn-small:focus,
.btn-small:active,
.btn-small:active:focus {
	background-color: rgb(224, 224, 224);
	border: 1px solid rgb(224, 224, 224);
	color: rgb(235, 195, 28) !important;
}

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

.btn-primary {
	background-color: rgb(235, 195, 28);
	color: rgb(0, 0, 0);
	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(25, 23, 28);
	color: rgb(248, 231, 28);
}

.btn-secondary {
	background-color: rgb(224, 224, 224);
	color: #FAFAFA;
	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(25, 23, 28);
	color: #FAFAFA;
}

.btn-empty {
	background-color: transparent;
	color: rgb(235, 195, 28);
	border: 1px solid rgb(235, 195, 28);
}

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

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

/* 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(235, 195, 28);
	border: none;
	border-radius: 25px;
	color: rgb(0, 0, 0);
	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(25, 23, 28);
	color: rgb(248, 231, 28);
}

/* 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(235, 195, 28);
}

.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(235, 195, 28);
	color: rgb(235, 195, 28);
	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(25, 23, 28);
	border-color: rgb(25, 23, 28);
	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/about/cmp_75f48099-a6e4-49c7-9e9f-04642fd3975d/component.css
 */
#cmp_75f48099-a6e4-49c7-9e9f-04642fd3975d {
	background-color: rgb(255, 255, 255);
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_75f48099-a6e4-49c7-9e9f-04642fd3975d h1 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 48px;
}

#cmp_75f48099-a6e4-49c7-9e9f-04642fd3975d h2 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 36px;
}

#cmp_75f48099-a6e4-49c7-9e9f-04642fd3975d h3 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 24px;
}

#cmp_75f48099-a6e4-49c7-9e9f-04642fd3975d p {
	color: #4A4A4A;
	font-family: Roboto;
	font-size: 16px;
}

/*
 * components/about/cmp_9662fba5-39c5-4794-8423-4c82c5f730fc/component.css
 */
#cmp_9662fba5-39c5-4794-8423-4c82c5f730fc {
	background-color: rgb(255, 255, 255);
}

#cmp_9662fba5-39c5-4794-8423-4c82c5f730fc h1 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 48px;
}

#cmp_9662fba5-39c5-4794-8423-4c82c5f730fc h2 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 36px;
}

#cmp_9662fba5-39c5-4794-8423-4c82c5f730fc h3 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 24px;
}

#cmp_9662fba5-39c5-4794-8423-4c82c5f730fc p {
	color: #4A4A4A;
	font-family: Roboto;
	font-size: 16px;
}

#cmp_9662fba5-39c5-4794-8423-4c82c5f730fc .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_9662fba5-39c5-4794-8423-4c82c5f730fc .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_9662fba5-39c5-4794-8423-4c82c5f730fc .btn {
	background-color: rgb(235, 195, 28);
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 14px;
}

#cmp_9662fba5-39c5-4794-8423-4c82c5f730fc .btn:hover {
	background-color: rgb(25, 23, 28);
	color: rgb(248, 231, 28);
}

/*
 * components/about/cmp_caa92b2d-b583-49a4-8d48-0688007fb78c/component.css
 */
#cmp_caa92b2d-b583-49a4-8d48-0688007fb78c img {
	max-width: 100%;
}

/*
 * components/brewing/cmp_14ff3fbe-edcf-43f1-adee-defa79eb63f8/component.css
 */
#cmp_14ff3fbe-edcf-43f1-adee-defa79eb63f8 img {
	max-width: 100%;
}

/*
 * components/brewing/cmp_39729400-ab59-4ba9-b294-bc3fffa5eb96/component.css
 */
#cmp_39729400-ab59-4ba9-b294-bc3fffa5eb96 {
	background-color: rgb(255, 255, 255);
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_39729400-ab59-4ba9-b294-bc3fffa5eb96 h1 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 48px;
}

#cmp_39729400-ab59-4ba9-b294-bc3fffa5eb96 h2 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 36px;
}

#cmp_39729400-ab59-4ba9-b294-bc3fffa5eb96 h3 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 24px;
}

#cmp_39729400-ab59-4ba9-b294-bc3fffa5eb96 p {
	color: #4A4A4A;
	font-family: Roboto;
	font-size: 16px;
}

/*
 * components/brewing/cmp_6a7e3b12-9fd3-461d-900f-bd1994e2601a/component.css
 */
#cmp_6a7e3b12-9fd3-461d-900f-bd1994e2601a {
	background-color: rgb(255, 255, 255);
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_6a7e3b12-9fd3-461d-900f-bd1994e2601a h1 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 48px;
}

#cmp_6a7e3b12-9fd3-461d-900f-bd1994e2601a h2 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 36px;
}

#cmp_6a7e3b12-9fd3-461d-900f-bd1994e2601a h3 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 24px;
}

#cmp_6a7e3b12-9fd3-461d-900f-bd1994e2601a p {
	color: #4A4A4A;
	font-family: Roboto;
	font-size: 16px;
}

/*
 * components/brewing/cmp_82d9a72b-07c6-42e7-9e6c-51e18d98f569/component.css
 */
#cmp_82d9a72b-07c6-42e7-9e6c-51e18d98f569 {
	background-color: rgb(255, 255, 255);
}

#cmp_82d9a72b-07c6-42e7-9e6c-51e18d98f569 h1 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 48px;
}

#cmp_82d9a72b-07c6-42e7-9e6c-51e18d98f569 h2 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 36px;
}

#cmp_82d9a72b-07c6-42e7-9e6c-51e18d98f569 h3 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 24px;
}

#cmp_82d9a72b-07c6-42e7-9e6c-51e18d98f569 p {
	color: #4A4A4A;
	font-family: Roboto;
	font-size: 16px;
}

#cmp_82d9a72b-07c6-42e7-9e6c-51e18d98f569 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_82d9a72b-07c6-42e7-9e6c-51e18d98f569 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_82d9a72b-07c6-42e7-9e6c-51e18d98f569 .btn {
	background-color: rgb(235, 195, 28);
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 14px;
}

#cmp_82d9a72b-07c6-42e7-9e6c-51e18d98f569 .btn:hover {
	background-color: rgb(25, 23, 28);
	color: rgb(248, 231, 28);
}

/*
 * components/brewing/cmp_a5e39194-265d-4ae7-af9f-4af2d4c21b6f/component.css
 */
#cmp_a5e39194-265d-4ae7-af9f-4af2d4c21b6f img {
	max-width: 100%;
}

/*
 * components/brewing/cmp_fdae7d2d-0c13-4193-93ae-3b34820ed76d/component.css
 */
#cmp_fdae7d2d-0c13-4193-93ae-3b34820ed76d {
	background-color: rgb(255, 255, 255);
}

#cmp_fdae7d2d-0c13-4193-93ae-3b34820ed76d h1 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 48px;
}

#cmp_fdae7d2d-0c13-4193-93ae-3b34820ed76d h2 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 36px;
}

#cmp_fdae7d2d-0c13-4193-93ae-3b34820ed76d h3 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 24px;
}

#cmp_fdae7d2d-0c13-4193-93ae-3b34820ed76d p {
	color: #4A4A4A;
	font-family: Roboto;
	font-size: 16px;
}

#cmp_fdae7d2d-0c13-4193-93ae-3b34820ed76d .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_fdae7d2d-0c13-4193-93ae-3b34820ed76d .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_fdae7d2d-0c13-4193-93ae-3b34820ed76d .btn {
	background-color: rgb(235, 195, 28);
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 14px;
}

#cmp_fdae7d2d-0c13-4193-93ae-3b34820ed76d .btn:hover {
	background-color: rgb(25, 23, 28);
	color: rgb(248, 231, 28);
}

/*
 * components/checkout/cmp_1207918c-bcb6-4c60-9f83-32bf6032e28e/component.css
 */
#cmp_1207918c-bcb6-4c60-9f83-32bf6032e28e .checkout_content {
	overflow: auto;
}

#cmp_1207918c-bcb6-4c60-9f83-32bf6032e28e .checkout_content section {
	border-color: #F5F5F5;
}

#cmp_1207918c-bcb6-4c60-9f83-32bf6032e28e .cart_listing table {
	border-color: #F5F5F5;
}

/*
 * components/contact/cmp_4948aa2a-4804-4f3c-8a2c-fd14f9cc2012/component.css
 */
#cmp_4948aa2a-4804-4f3c-8a2c-fd14f9cc2012 {
	background-color: rgb(255, 255, 255);
}

#cmp_4948aa2a-4804-4f3c-8a2c-fd14f9cc2012 h1 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 48px;
}

#cmp_4948aa2a-4804-4f3c-8a2c-fd14f9cc2012 h2 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 36px;
}

#cmp_4948aa2a-4804-4f3c-8a2c-fd14f9cc2012 h3 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 24px;
}

#cmp_4948aa2a-4804-4f3c-8a2c-fd14f9cc2012 p {
	color: #4A4A4A;
	font-family: Roboto;
	font-size: 16px;
}

#cmp_4948aa2a-4804-4f3c-8a2c-fd14f9cc2012 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_4948aa2a-4804-4f3c-8a2c-fd14f9cc2012 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_4948aa2a-4804-4f3c-8a2c-fd14f9cc2012 .btn {
	background-color: rgb(235, 195, 28);
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 14px;
}

#cmp_4948aa2a-4804-4f3c-8a2c-fd14f9cc2012 .btn:hover {
	background-color: rgb(25, 23, 28);
	color: rgb(248, 231, 28);
}

/*
 * components/contact/cmp_5428f6d4-3f7d-46cb-b141-44c2ce033a6e/component.css
 */
#cmp_5428f6d4-3f7d-46cb-b141-44c2ce033a6e {
	background-color: rgb(255, 255, 255);
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_5428f6d4-3f7d-46cb-b141-44c2ce033a6e h1 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 48px;
}

#cmp_5428f6d4-3f7d-46cb-b141-44c2ce033a6e h2 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 36px;
}

#cmp_5428f6d4-3f7d-46cb-b141-44c2ce033a6e h3 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 24px;
}

#cmp_5428f6d4-3f7d-46cb-b141-44c2ce033a6e p {
	color: #4A4A4A;
	font-family: Roboto;
	font-size: 16px;
}

/*
 * components/customer/account/cmp_8e21b487-a02e-48fa-9d74-45c7fb516387/component.css
 */

/*
 * components/customer/edit/cmp_fd8be0d2-5c3b-4399-9648-6c6f73675fcd/component.css
 */

/*
 * components/customer/forgot_password/cmp_9b812704-88b4-47b8-8da2-212830447d82/component.css
 */

#cmp_9b812704-88b4-47b8-8da2-212830447d82  {
	padding-bottom: 120px;
}
/*
 * components/customer/forgot_password/cmp_f1dc2432-4dac-4922-87a2-9cf82bd87065/component.css
 */
#cmp_f1dc2432-4dac-4922-87a2-9cf82bd87065 {
	background-color: rgb(255, 255, 255);
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_f1dc2432-4dac-4922-87a2-9cf82bd87065 h1 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 48px;
}

#cmp_f1dc2432-4dac-4922-87a2-9cf82bd87065 h2 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 36px;
}

#cmp_f1dc2432-4dac-4922-87a2-9cf82bd87065 h3 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 24px;
}

#cmp_f1dc2432-4dac-4922-87a2-9cf82bd87065 p {
	color: #4A4A4A;
	font-family: Roboto;
	font-size: 16px;
}

#cmp_f1dc2432-4dac-4922-87a2-9cf82bd87065  {
	padding: 50px 0;
}
#cmp_f1dc2432-4dac-4922-87a2-9cf82bd87065 h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/login/cmp_0db1995b-5aae-42b3-9937-442739fdb20f/component.css
 */
#cmp_0db1995b-5aae-42b3-9937-442739fdb20f {
	background-color: rgb(255, 255, 255);
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_0db1995b-5aae-42b3-9937-442739fdb20f h1 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 48px;
}

#cmp_0db1995b-5aae-42b3-9937-442739fdb20f h2 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 36px;
}

#cmp_0db1995b-5aae-42b3-9937-442739fdb20f h3 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 24px;
}

#cmp_0db1995b-5aae-42b3-9937-442739fdb20f p {
	color: #4A4A4A;
	font-family: Roboto;
	font-size: 16px;
}

#cmp_0db1995b-5aae-42b3-9937-442739fdb20f  {
	padding: 50px 0;
}
#cmp_0db1995b-5aae-42b3-9937-442739fdb20f h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/login/cmp_d26f104c-1962-4316-b327-3f906265d1b1/component.css
 */

#cmp_d26f104c-1962-4316-b327-3f906265d1b1  {
	padding-bottom: 120px;
}
/*
 * components/customer/order/cmp_cf21f8f7-de21-4c54-ac1b-c0ffcc6425a1/component.css
 */

/*
 * components/customer/password_reset/cmp_6b7f032a-01c2-4248-ba1c-da753064fd30/component.css
 */

#cmp_6b7f032a-01c2-4248-ba1c-da753064fd30  {
	padding-bottom: 120px;
}
/*
 * components/customer/password_reset/cmp_c149222f-08e7-4c9d-bccf-53929a066dc1/component.css
 */
#cmp_c149222f-08e7-4c9d-bccf-53929a066dc1 {
	background-color: rgb(255, 255, 255);
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_c149222f-08e7-4c9d-bccf-53929a066dc1 h1 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 48px;
}

#cmp_c149222f-08e7-4c9d-bccf-53929a066dc1 h2 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 36px;
}

#cmp_c149222f-08e7-4c9d-bccf-53929a066dc1 h3 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 24px;
}

#cmp_c149222f-08e7-4c9d-bccf-53929a066dc1 p {
	color: #4A4A4A;
	font-family: Roboto;
	font-size: 16px;
}

#cmp_c149222f-08e7-4c9d-bccf-53929a066dc1  {
	padding: 50px 0;
}
#cmp_c149222f-08e7-4c9d-bccf-53929a066dc1 h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/thank_you/cmp_096989ca-c221-4f89-9507-9e332f44a67e/component.css
 */

/*
 * components/customer/thank_you/cmp_498b8559-5501-4252-9dfb-d547bbd759b3/component.css
 */
#cmp_498b8559-5501-4252-9dfb-d547bbd759b3 {
	background-color: rgb(255, 255, 255);
}

#cmp_498b8559-5501-4252-9dfb-d547bbd759b3 h1 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 48px;
}

#cmp_498b8559-5501-4252-9dfb-d547bbd759b3 h2 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 36px;
}

#cmp_498b8559-5501-4252-9dfb-d547bbd759b3 h3 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 24px;
}

#cmp_498b8559-5501-4252-9dfb-d547bbd759b3 p {
	color: #4A4A4A;
	font-family: Roboto;
	font-size: 16px;
}

#cmp_498b8559-5501-4252-9dfb-d547bbd759b3 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_498b8559-5501-4252-9dfb-d547bbd759b3 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_498b8559-5501-4252-9dfb-d547bbd759b3 .btn {
	background-color: rgb(235, 195, 28);
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 14px;
}

#cmp_498b8559-5501-4252-9dfb-d547bbd759b3 .btn:hover {
	background-color: rgb(25, 23, 28);
	color: rgb(248, 231, 28);
}

/*
 * components/faq/cmp_9765a5ae-2ef5-4a8b-807e-11679da40068/component.css
 */
#cmp_9765a5ae-2ef5-4a8b-807e-11679da40068 {
	background-color: rgb(255, 255, 255);
}

#cmp_9765a5ae-2ef5-4a8b-807e-11679da40068 h1 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 48px;
}

#cmp_9765a5ae-2ef5-4a8b-807e-11679da40068 h2 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 36px;
}

#cmp_9765a5ae-2ef5-4a8b-807e-11679da40068 h3 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 24px;
}

#cmp_9765a5ae-2ef5-4a8b-807e-11679da40068 p {
	color: #4A4A4A;
	font-family: Roboto;
	font-size: 16px;
}

#cmp_9765a5ae-2ef5-4a8b-807e-11679da40068 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_9765a5ae-2ef5-4a8b-807e-11679da40068 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_9765a5ae-2ef5-4a8b-807e-11679da40068 .btn {
	background-color: rgb(235, 195, 28);
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 14px;
}

#cmp_9765a5ae-2ef5-4a8b-807e-11679da40068 .btn:hover {
	background-color: rgb(25, 23, 28);
	color: rgb(248, 231, 28);
}

/*
 * components/global/cmp_1910c399-99cb-4a2d-bd74-a5c53f5e22e8/component.css
 */
#cmp_1910c399-99cb-4a2d-bd74-a5c53f5e22e8.footer {
	background-color: ;
	font-family: ;
	color: ;
	font-size: 11px;
	padding-top: 10px;
	padding-bottom: 10px;
	margin-top: 100px;
	text-align: center;
	border-top: 1px solid rgb(0, 0, 0);
}

#cmp_1910c399-99cb-4a2d-bd74-a5c53f5e22e8 a,
#cmp_1910c399-99cb-4a2d-bd74-a5c53f5e22e8 a:hover,
#cmp_1910c399-99cb-4a2d-bd74-a5c53f5e22e8 a:focus {
	color: ;
}

#cmp_1910c399-99cb-4a2d-bd74-a5c53f5e22e8 .footer-social {
	padding-top: 20px;
	padding-bottom: 15px;
	text-align: center;
}

#cmp_1910c399-99cb-4a2d-bd74-a5c53f5e22e8 .footer-social a {
	display: inline-block;
	padding-left: 5px;
	padding-right: 5px;
}

#cmp_1910c399-99cb-4a2d-bd74-a5c53f5e22e8 .footer-social svg path {
	stroke: ;
}

#cmp_1910c399-99cb-4a2d-bd74-a5c53f5e22e8 .footer-social svg path + path {
	fill: ;
}

#cmp_1910c399-99cb-4a2d-bd74-a5c53f5e22e8 .footer-social a:hover svg path,
#cmp_1910c399-99cb-4a2d-bd74-a5c53f5e22e8 .footer-social a:focus svg path,
#cmp_1910c399-99cb-4a2d-bd74-a5c53f5e22e8 .footer-social a:active svg path {
	stroke: ;
}

#cmp_1910c399-99cb-4a2d-bd74-a5c53f5e22e8 .footer-social a:hover svg path + path,
#cmp_1910c399-99cb-4a2d-bd74-a5c53f5e22e8 .footer-social a:focus svg path + path,
#cmp_1910c399-99cb-4a2d-bd74-a5c53f5e22e8 .footer-social a:active svg path + path {
	fill: ;
}

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

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

/*
 * components/global/cmp_81bf9ace-0ce0-416c-a931-a5b90777feba/component.css
 */
#cmp_81bf9ace-0ce0-416c-a931-a5b90777feba {
	margin-top: 40px;
	margin-bottom: 40px;
}

#cmp_81bf9ace-0ce0-416c-a931-a5b90777feba .progress-bar-container {
	position: relative;
}

#cmp_81bf9ace-0ce0-416c-a931-a5b90777feba .progress-bar-filler {
	height: 2px;
	width: 90%;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	left: 0;
	right: 0;
	z-index: -10;
	background: #E5E5E5;
}

#cmp_81bf9ace-0ce0-416c-a931-a5b90777feba .progress-bar {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	color: #E5E5E5;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_81bf9ace-0ce0-416c-a931-a5b90777feba .progress-bar::before {
		width: 86%;
		margin: 0 7%;
	}
}

#cmp_81bf9ace-0ce0-416c-a931-a5b90777feba .progress-bar .step {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#cmp_81bf9ace-0ce0-416c-a931-a5b90777feba .progress-bar .step .point {
	width: 20px;
	height: 20px;
	border-radius: 10px;
	background-color: #E5E5E5;
	border: 4px solid white;
}

#cmp_81bf9ace-0ce0-416c-a931-a5b90777feba .progress-bar .step.active {
	color: #4A4A4A;
}

#cmp_81bf9ace-0ce0-416c-a931-a5b90777feba .progress-bar .step.active .point {
	background-color: rgb(235, 195, 28);;
}

/*
 * components/global/cmp_f5fefe56-71a7-4d8a-a7fb-983a5c63fa74/component.css
 */
#cmp_f5fefe56-71a7-4d8a-a7fb-983a5c63fa74 .navbar {
	background-color: rgba(0, 0, 0, 0.1);
	border-radius: 0;
	margin-bottom: 3rem;
}

#cmp_f5fefe56-71a7-4d8a-a7fb-983a5c63fa74 .navbar-brand {
	color: rgb(235, 195, 28);
	font-family: Roboto;
	font-size: 40px;
	margin: 0;
	line-height: 1;
	text-align: center;
}

#cmp_f5fefe56-71a7-4d8a-a7fb-983a5c63fa74 .navbar-brand > img {
	display: inline-block;
}

#cmp_f5fefe56-71a7-4d8a-a7fb-983a5c63fa74 .navbar-nav {
	display: -moz-flex;
	display: -webkit-flex;
	display: flex;

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

	margin: 0;
}

#cmp_f5fefe56-71a7-4d8a-a7fb-983a5c63fa74 .navbar a.nav-link,
#cmp_f5fefe56-71a7-4d8a-a7fb-983a5c63fa74 .navbar button {
	color: #4A4A4A;
	font-family: Roboto;
	font-size: 12px;;
	letter-spacing: 1px;
	padding: 8px 12px;
	text-align: center;
	text-transform: uppercase;
}

#cmp_f5fefe56-71a7-4d8a-a7fb-983a5c63fa74 .navbar a.nav-link:hover,
#cmp_f5fefe56-71a7-4d8a-a7fb-983a5c63fa74 .navbar a.nav-link:focus,
#cmp_f5fefe56-71a7-4d8a-a7fb-983a5c63fa74 .navbar a.nav-link:active,
#cmp_f5fefe56-71a7-4d8a-a7fb-983a5c63fa74 .navbar button:hover,
#cmp_f5fefe56-71a7-4d8a-a7fb-983a5c63fa74 .navbar button:focus,
#cmp_f5fefe56-71a7-4d8a-a7fb-983a5c63fa74 .navbar button:active {
	color: #4A4A4A;
	outline: none;
}

#cmp_f5fefe56-71a7-4d8a-a7fb-983a5c63fa74 .navbar-nav .dropdown-menu a {
	color: #4A4A4A;
	padding: 10px 0;
}

#cmp_f5fefe56-71a7-4d8a-a7fb-983a5c63fa74 .navbar-toggler {
	padding: 1rem;
}

@media(min-width: 767px) {
	#cmp_f5fefe56-71a7-4d8a-a7fb-983a5c63fa74 .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_f5fefe56-71a7-4d8a-a7fb-983a5c63fa74 .navbar-nav li {
		-moz-flex-shrink: 0;
		-webkit-flex-shrink: 0;
		flex-shrink: 0;
	}

	#cmp_f5fefe56-71a7-4d8a-a7fb-983a5c63fa74 .navbar-nav .nav-link {
		padding: 8px 0 8px 28px;
	}
}

/*
 * components/index/cmp_1e6d6956-581e-4e65-8420-5e729fd9eb8c/component.css
 */
#cmp_1e6d6956-581e-4e65-8420-5e729fd9eb8c {
	background-color: rgb(255, 255, 255);
}

#cmp_1e6d6956-581e-4e65-8420-5e729fd9eb8c .title {
	margin-top: 40px;
}

#cmp_1e6d6956-581e-4e65-8420-5e729fd9eb8c .box-choose-row {
	justify-content: center;
}

#cmp_1e6d6956-581e-4e65-8420-5e729fd9eb8c .box-choose {
	margin-top: 40px;
	margin-bottom: 40px;
}

#cmp_1e6d6956-581e-4e65-8420-5e729fd9eb8c .box-choose img {
	margin-bottom: 20px;
}

#cmp_1e6d6956-581e-4e65-8420-5e729fd9eb8c h1 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 48px;
}

#cmp_1e6d6956-581e-4e65-8420-5e729fd9eb8c h2 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 36px;
}

#cmp_1e6d6956-581e-4e65-8420-5e729fd9eb8c h3 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 24px;
}

#cmp_1e6d6956-581e-4e65-8420-5e729fd9eb8c p {
	color: #4A4A4A;
	font-family: Roboto;
	font-size: 16px;
}

#cmp_1e6d6956-581e-4e65-8420-5e729fd9eb8c h3 {
	margin-bottom: 25px;
}
/*
 * components/index/cmp_410d4554-6651-49b8-8b0a-d944935f91e3/component.css
 */
/**********
Navigation
**********/
#cmp_410d4554-6651-49b8-8b0a-d944935f91e3 .navbar {
	background-color: rgba(0, 0, 0, 0.1);
	border-radius: 0;
	margin-bottom: 3rem;
}

#cmp_410d4554-6651-49b8-8b0a-d944935f91e3 .navbar-brand {
	color: rgb(248, 231, 28);
	font-family: Roboto;
	font-size: 40px;
	margin: 0;
	line-height: 1;
	text-align: center;
}

#cmp_410d4554-6651-49b8-8b0a-d944935f91e3 .navbar-brand > img {
	display: inline-block;
}

#cmp_410d4554-6651-49b8-8b0a-d944935f91e3 .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_410d4554-6651-49b8-8b0a-d944935f91e3 .navbar a.nav-link,
#cmp_410d4554-6651-49b8-8b0a-d944935f91e3 .navbar button {
	color: #FFFFFF;
	font-family: Roboto;
	font-size: 12px;;
	letter-spacing: 1px;
	padding: 8px 12px;
	text-align: center;
	text-transform: uppercase;
}

#cmp_410d4554-6651-49b8-8b0a-d944935f91e3 .navbar a.nav-link:hover,
#cmp_410d4554-6651-49b8-8b0a-d944935f91e3 .navbar a.nav-link:focus,
#cmp_410d4554-6651-49b8-8b0a-d944935f91e3 .navbar a.nav-link:active,
#cmp_410d4554-6651-49b8-8b0a-d944935f91e3 .navbar button:hover,
#cmp_410d4554-6651-49b8-8b0a-d944935f91e3 .navbar button:focus,
#cmp_410d4554-6651-49b8-8b0a-d944935f91e3 .navbar button:active {
	color: #4A4A4A;
	outline: none;
}

#cmp_410d4554-6651-49b8-8b0a-d944935f91e3 .navbar-nav .dropdown-menu a {
	color: #4A4A4A;
	padding: 10px 0;
}

#cmp_410d4554-6651-49b8-8b0a-d944935f91e3 .navbar-toggler {
	padding: 1rem;
}

@media(min-width: 767px) {
	#cmp_410d4554-6651-49b8-8b0a-d944935f91e3 .navbar {
		background-color: transparent;
		margin-bottom: 0;
	}

	#cmp_410d4554-6651-49b8-8b0a-d944935f91e3 .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_410d4554-6651-49b8-8b0a-d944935f91e3 .navbar-nav li {
		-moz-flex-shrink: 0;
		-webkit-flex-shrink: 0;
		flex-shrink: 0;
	}

	#cmp_410d4554-6651-49b8-8b0a-d944935f91e3 .navbar-nav .nav-link {
		padding: 8px 0 8px 28px;
	}
}


/**********
Hero
**********/
#cmp_410d4554-6651-49b8-8b0a-d944935f91e3 .hero-content {
	padding: 20px;
}

@media(min-width: 768px) {
	#cmp_410d4554-6651-49b8-8b0a-d944935f91e3 .hero-content {
		min-height: 700px;
	}
}

#cmp_410d4554-6651-49b8-8b0a-d944935f91e3 .hero-content h1 {
	color: #FFFFFF;
	font-family: Roboto;
	font-size: 50px;
	letter-spacing: 2px;
}

#cmp_410d4554-6651-49b8-8b0a-d944935f91e3 .hero-content h2 {
	color: #FFFFFF;
	font-family: Roboto;
	font-size: 36px;
}

#cmp_410d4554-6651-49b8-8b0a-d944935f91e3 .hero-content h3 {
	color: #FFFFFF;
	font-family: Roboto;
	font-size: 24px;
}

#cmp_410d4554-6651-49b8-8b0a-d944935f91e3 .hero-content p {
	color: #FFFFFF;
	font-family: Roboto;
	font-size: 16px;
}

#cmp_410d4554-6651-49b8-8b0a-d944935f91e3 .hero-content .btn {
	margin-bottom: 10px;
}

#cmp_410d4554-6651-49b8-8b0a-d944935f91e3 .hero-content .btn.btn-primary {
	border: 2px solid transparent;
	background-color: rgb(235, 195, 28);
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 14px;
}

#cmp_410d4554-6651-49b8-8b0a-d944935f91e3 .hero-content .btn.btn-primary:hover,
#cmp_410d4554-6651-49b8-8b0a-d944935f91e3 .hero-content .btn.btn-primary:focus,
#cmp_410d4554-6651-49b8-8b0a-d944935f91e3 .hero-content .btn.btn-primary:active,
#cmp_410d4554-6651-49b8-8b0a-d944935f91e3 .hero-content .btn.btn-primary:active:focus {
	background-color: rgb(25, 23, 28);
	color: rgb(248, 231, 28);
}

#cmp_410d4554-6651-49b8-8b0a-d944935f91e3 .hero-content .btn-secondary {
	border: 2px solid;

	background-color: rgba(255, 255, 255, 0);
	border-color: #FFFFFF;
	color: #FFFFFF;
	font-family: Montserrat;
	font-size: 14px;
}

#cmp_410d4554-6651-49b8-8b0a-d944935f91e3 .hero-content .btn.btn-secondary:hover,
#cmp_410d4554-6651-49b8-8b0a-d944935f91e3 .hero-content .btn.btn-secondary:focus,
#cmp_410d4554-6651-49b8-8b0a-d944935f91e3 .hero-content .btn.btn-secondary:active,
#cmp_410d4554-6651-49b8-8b0a-d944935f91e3 .hero-content .btn.btn-secondary:active:focus {
	background-color: rgba(255, 255, 255, 0);
	border-color: #FFFFFF;
	color: #FFFFFF;
}

#cmp_410d4554-6651-49b8-8b0a-d944935f91e3 h1 {
	margin-top: 20px;
	margin-bottom: 10px;
}
#cmp_410d4554-6651-49b8-8b0a-d944935f91e3 p {
	margin-bottom: 25px;
}
/*
 * components/index/cmp_458f2337-3c22-4511-bf03-f3a1debfa9ec/component.css
 */
#cmp_458f2337-3c22-4511-bf03-f3a1debfa9ec img {
	max-width: 100%;
}

/*
 * components/index/cmp_58512169-e019-47f5-8591-7ccb4e6e672b/component.css
 */
#cmp_58512169-e019-47f5-8591-7ccb4e6e672b hr {
	border-top-color: rgb(0, 0, 0);
}

/*
 * components/index/cmp_58f2c44d-f276-4b4f-839a-8cdb0c640b75/component.css
 */
#cmp_58f2c44d-f276-4b4f-839a-8cdb0c640b75 {
	background-color: rgb(255, 255, 255);
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_58f2c44d-f276-4b4f-839a-8cdb0c640b75 h1 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 48px;
}

#cmp_58f2c44d-f276-4b4f-839a-8cdb0c640b75 h2 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 36px;
}

#cmp_58f2c44d-f276-4b4f-839a-8cdb0c640b75 h3 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 24px;
}

#cmp_58f2c44d-f276-4b4f-839a-8cdb0c640b75 p {
	color: #4A4A4A;
	font-family: Roboto;
	font-size: 16px;
}

/*
 * components/index/cmp_6134a696-2ac7-47fa-9286-f7f80f872318/component.css
 */
#cmp_6134a696-2ac7-47fa-9286-f7f80f872318 img {
	max-width: 100%;
}

/*
 * components/index/cmp_746eb5cc-0fa8-4528-88a5-4587c381db19/component.css
 */
#cmp_746eb5cc-0fa8-4528-88a5-4587c381db19 {
	background-color: rgb(255, 255, 255);
}

#cmp_746eb5cc-0fa8-4528-88a5-4587c381db19 h1 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 48px;
}

#cmp_746eb5cc-0fa8-4528-88a5-4587c381db19 h2 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 36px;
}

#cmp_746eb5cc-0fa8-4528-88a5-4587c381db19 h3 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 24px;
}

#cmp_746eb5cc-0fa8-4528-88a5-4587c381db19 p {
	color: #4A4A4A;
	font-family: Roboto;
	font-size: 16px;
}

#cmp_746eb5cc-0fa8-4528-88a5-4587c381db19 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_746eb5cc-0fa8-4528-88a5-4587c381db19 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_746eb5cc-0fa8-4528-88a5-4587c381db19 .btn {
	background-color: rgb(235, 195, 28);
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 14px;
}

#cmp_746eb5cc-0fa8-4528-88a5-4587c381db19 .btn:hover {
	background-color: rgb(25, 23, 28);
	color: rgb(248, 231, 28);
}

#cmp_746eb5cc-0fa8-4528-88a5-4587c381db19  {
	padding: 60px 0;
}
#cmp_746eb5cc-0fa8-4528-88a5-4587c381db19 h1 {
	margin-bottom: 15px;
}
#cmp_746eb5cc-0fa8-4528-88a5-4587c381db19 p {
	margin-bottom: 20px;
}
/*
 * components/index/cmp_8487a463-be69-48f7-9922-ad82b942353b/component.css
 */
#cmp_8487a463-be69-48f7-9922-ad82b942353b {
	background-color: rgb(255, 255, 255);
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_8487a463-be69-48f7-9922-ad82b942353b h1 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 48px;
}

#cmp_8487a463-be69-48f7-9922-ad82b942353b h2 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 36px;
}

#cmp_8487a463-be69-48f7-9922-ad82b942353b h3 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 24px;
}

#cmp_8487a463-be69-48f7-9922-ad82b942353b p {
	color: #4A4A4A;
	font-family: Roboto;
	font-size: 16px;
}

/*
 * components/index/cmp_e2d28b90-49f5-4d61-819d-a0bf134307a2/component.css
 */
#cmp_e2d28b90-49f5-4d61-819d-a0bf134307a2 {
	background-color: rgb(255, 255, 255);
}

#cmp_e2d28b90-49f5-4d61-819d-a0bf134307a2 h1 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 48px;
}

#cmp_e2d28b90-49f5-4d61-819d-a0bf134307a2 h2 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 36px;
}

#cmp_e2d28b90-49f5-4d61-819d-a0bf134307a2 h3 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 24px;
}

#cmp_e2d28b90-49f5-4d61-819d-a0bf134307a2 p {
	color: #4A4A4A;
	font-family: Roboto;
	font-size: 16px;
}

#cmp_e2d28b90-49f5-4d61-819d-a0bf134307a2 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_e2d28b90-49f5-4d61-819d-a0bf134307a2 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_e2d28b90-49f5-4d61-819d-a0bf134307a2 .btn {
	background-color: rgb(235, 195, 28);
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 14px;
}

#cmp_e2d28b90-49f5-4d61-819d-a0bf134307a2 .btn:hover {
	background-color: rgb(25, 23, 28);
	color: rgb(248, 231, 28);
}

/*
 * components/may/cmp_1d91ab9a-f806-4077-9d6f-20f900744bb2/component.css
 */
#cmp_1d91ab9a-f806-4077-9d6f-20f900744bb2 {
	background-color: rgb(255, 255, 255);
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_1d91ab9a-f806-4077-9d6f-20f900744bb2 h1 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 48px;
}

#cmp_1d91ab9a-f806-4077-9d6f-20f900744bb2 h2 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 36px;
}

#cmp_1d91ab9a-f806-4077-9d6f-20f900744bb2 h3 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 24px;
}

#cmp_1d91ab9a-f806-4077-9d6f-20f900744bb2 p {
	color: #4A4A4A;
	font-family: Roboto;
	font-size: 16px;
}

/*
 * components/may/cmp_7a1f97d5-42a8-4160-9774-2b3a957ddbe9/component.css
 */
#cmp_7a1f97d5-42a8-4160-9774-2b3a957ddbe9 img {
	max-width: 100%;
}

/*
 * components/may/cmp_c2159cce-1721-4a53-8c63-075496962c88/component.css
 */
#cmp_c2159cce-1721-4a53-8c63-075496962c88 {
	background-color: rgb(255, 255, 255);
}

#cmp_c2159cce-1721-4a53-8c63-075496962c88 h1 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 48px;
}

#cmp_c2159cce-1721-4a53-8c63-075496962c88 h2 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 36px;
}

#cmp_c2159cce-1721-4a53-8c63-075496962c88 h3 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 24px;
}

#cmp_c2159cce-1721-4a53-8c63-075496962c88 p {
	color: #4A4A4A;
	font-family: Roboto;
	font-size: 16px;
}

#cmp_c2159cce-1721-4a53-8c63-075496962c88 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_c2159cce-1721-4a53-8c63-075496962c88 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_c2159cce-1721-4a53-8c63-075496962c88 .btn {
	background-color: rgb(235, 195, 28);
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 14px;
}

#cmp_c2159cce-1721-4a53-8c63-075496962c88 .btn:hover {
	background-color: rgb(25, 23, 28);
	color: rgb(248, 231, 28);
}

/*
 * components/news/cmp_80bf5fd4-49e4-4cec-b886-e50ae4ecf5f6/component.css
 */
#cmp_80bf5fd4-49e4-4cec-b886-e50ae4ecf5f6 {
	background-color: rgb(255, 255, 255);
}

#cmp_80bf5fd4-49e4-4cec-b886-e50ae4ecf5f6 h1 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 48px;
}

#cmp_80bf5fd4-49e4-4cec-b886-e50ae4ecf5f6 h2 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 36px;
}

#cmp_80bf5fd4-49e4-4cec-b886-e50ae4ecf5f6 h3 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 24px;
}

#cmp_80bf5fd4-49e4-4cec-b886-e50ae4ecf5f6 p {
	color: #4A4A4A;
	font-family: Roboto;
	font-size: 16px;
}

#cmp_80bf5fd4-49e4-4cec-b886-e50ae4ecf5f6 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_80bf5fd4-49e4-4cec-b886-e50ae4ecf5f6 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_80bf5fd4-49e4-4cec-b886-e50ae4ecf5f6 .btn {
	background-color: rgb(235, 195, 28);
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 14px;
}

#cmp_80bf5fd4-49e4-4cec-b886-e50ae4ecf5f6 .btn:hover {
	background-color: rgb(25, 23, 28);
	color: rgb(248, 231, 28);
}

/*
 * components/news/cmp_e533e135-3d82-438b-b4b1-cbb260cb2eb0/component.css
 */
#cmp_e533e135-3d82-438b-b4b1-cbb260cb2eb0 img {
	max-width: 100%;
}

/*
 * components/news/cmp_f6be8791-2dc9-4a52-bed2-304c77c5e7b7/component.css
 */
#cmp_f6be8791-2dc9-4a52-bed2-304c77c5e7b7 {
	background-color: rgb(255, 255, 255);
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_f6be8791-2dc9-4a52-bed2-304c77c5e7b7 h1 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 48px;
}

#cmp_f6be8791-2dc9-4a52-bed2-304c77c5e7b7 h2 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 36px;
}

#cmp_f6be8791-2dc9-4a52-bed2-304c77c5e7b7 h3 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 24px;
}

#cmp_f6be8791-2dc9-4a52-bed2-304c77c5e7b7 p {
	color: #4A4A4A;
	font-family: Roboto;
	font-size: 16px;
}

/*
 * components/privacy_policy/cmp_3cdc4e60-9f5b-436a-95b9-475a149105a8/component.css
 */
#cmp_3cdc4e60-9f5b-436a-95b9-475a149105a8 {
	background-color: rgb(255, 255, 255);
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_3cdc4e60-9f5b-436a-95b9-475a149105a8 h1 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 48px;
}

#cmp_3cdc4e60-9f5b-436a-95b9-475a149105a8 h2 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 36px;
}

#cmp_3cdc4e60-9f5b-436a-95b9-475a149105a8 h3 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 24px;
}

#cmp_3cdc4e60-9f5b-436a-95b9-475a149105a8 p {
	color: #4A4A4A;
	font-family: Roboto;
	font-size: 16px;
}

/*
 * components/privacy_policy/cmp_b07736b7-3317-4084-9e8b-3adf4da5b33c/component.css
 */
#cmp_b07736b7-3317-4084-9e8b-3adf4da5b33c {
	background-color: rgb(255, 255, 255);
}

#cmp_b07736b7-3317-4084-9e8b-3adf4da5b33c h1 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 48px;
}

#cmp_b07736b7-3317-4084-9e8b-3adf4da5b33c h2 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 36px;
}

#cmp_b07736b7-3317-4084-9e8b-3adf4da5b33c h3 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 24px;
}

#cmp_b07736b7-3317-4084-9e8b-3adf4da5b33c p {
	color: #4A4A4A;
	font-family: Roboto;
	font-size: 16px;
}

#cmp_b07736b7-3317-4084-9e8b-3adf4da5b33c .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_b07736b7-3317-4084-9e8b-3adf4da5b33c .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_b07736b7-3317-4084-9e8b-3adf4da5b33c .btn {
	background-color: rgb(235, 195, 28);
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 14px;
}

#cmp_b07736b7-3317-4084-9e8b-3adf4da5b33c .btn:hover {
	background-color: rgb(25, 23, 28);
	color: rgb(248, 231, 28);
}

/*
 * components/shop/listing/cmp_2e8bd47a-8df5-44da-b81a-be24031291a0/component.css
 */
#cmp_2e8bd47a-8df5-44da-b81a-be24031291a0 {
	justify-content: center;
	margin-bottom: 35px;
}

#cmp_2e8bd47a-8df5-44da-b81a-be24031291a0 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_badab6c5-4c04-4cb8-b330-382497c21141/component.css
 */
#cmp_badab6c5-4c04-4cb8-b330-382497c21141 {
	background-color: rgb(255, 255, 255);
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_badab6c5-4c04-4cb8-b330-382497c21141 h1 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 48px;
}

#cmp_badab6c5-4c04-4cb8-b330-382497c21141 h2 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 36px;
}

#cmp_badab6c5-4c04-4cb8-b330-382497c21141 h3 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 24px;
}

#cmp_badab6c5-4c04-4cb8-b330-382497c21141 p {
	color: #4A4A4A;
	font-family: Roboto;
	font-size: 16px;
}

#cmp_badab6c5-4c04-4cb8-b330-382497c21141  {
	padding: 50px 0 15px;
}
#cmp_badab6c5-4c04-4cb8-b330-382497c21141 h1 {
	margin-bottom: 15px;
}
/*
 * components/shop/listing/cmp_cce9bf2a-ebad-4b92-ac1c-8fca6f0a9228/component.css
 */
#cmp_cce9bf2a-ebad-4b92-ac1c-8fca6f0a9228 .shop-listing-item {
	color: #4A4A4A;
}

#cmp_cce9bf2a-ebad-4b92-ac1c-8fca6f0a9228 .shop-listing-item:hover,
#cmp_cce9bf2a-ebad-4b92-ac1c-8fca6f0a9228 .shop-listing-item:focus {
	text-decoration: none;
}

#cmp_cce9bf2a-ebad-4b92-ac1c-8fca6f0a9228 .shop-listing-item__image {
	background-size: cover;
	background-position: center center;
}

#cmp_cce9bf2a-ebad-4b92-ac1c-8fca6f0a9228 .shop-listing-item__name {
	margin: 10px 0;
}

#cmp_cce9bf2a-ebad-4b92-ac1c-8fca6f0a9228 .shop-listing-item__price {
	margin: 10px 0 30px;
}

#cmp_cce9bf2a-ebad-4b92-ac1c-8fca6f0a9228 .product_paging {
	-webkit-display: flex;
	-ms-display: flex;
	display: flex;
	justify-content: center;

	margin: 20px 0;
}

#cmp_cce9bf2a-ebad-4b92-ac1c-8fca6f0a9228 .product_page a,
#cmp_cce9bf2a-ebad-4b92-ac1c-8fca6f0a9228 .next_page a,
#cmp_cce9bf2a-ebad-4b92-ac1c-8fca6f0a9228 .prev_page a {
	display: block;
	padding: 12px 15px;
	margin: 0 2px;
	border: 1px solid #E0E0E0;
	border-radius: 5px;
}

#cmp_cce9bf2a-ebad-4b92-ac1c-8fca6f0a9228 .product_page.active a,
#cmp_cce9bf2a-ebad-4b92-ac1c-8fca6f0a9228 .product_page a:hover,
#cmp_cce9bf2a-ebad-4b92-ac1c-8fca6f0a9228 .product_page a:focus,
#cmp_cce9bf2a-ebad-4b92-ac1c-8fca6f0a9228 .next_page a:hover,
#cmp_cce9bf2a-ebad-4b92-ac1c-8fca6f0a9228 .next_page a:focus,
#cmp_cce9bf2a-ebad-4b92-ac1c-8fca6f0a9228 .prev_page a:hover,
#cmp_cce9bf2a-ebad-4b92-ac1c-8fca6f0a9228 .prev_page a:focus {
	text-decoration: none;
	background-color: #F9F9F9;
}

#cmp_cce9bf2a-ebad-4b92-ac1c-8fca6f0a9228 .product_page.active a {
	color: black;
}

/*
 * components/shop/listing/cmp_f35c59b4-cb86-4dc2-bd78-85fba66e54a3/component.css
 */
#cmp_f35c59b4-cb86-4dc2-bd78-85fba66e54a3 {
	justify-content: center;
}

#cmp_f35c59b4-cb86-4dc2-bd78-85fba66e54a3 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

#cmp_f35c59b4-cb86-4dc2-bd78-85fba66e54a3  {
	border-bottom: 1px solid #E1E1E1;
	margin-bottom: 35px;
	padding-bottom: 35px;
}
/*
 * components/shop/product/cmp_04a1a494-b6d1-4fce-84c4-d6d8cfbbfc07/component.css
 */
#cmp_04a1a494-b6d1-4fce-84c4-d6d8cfbbfc07.shop-product-header {
	padding: 50px 0 15px;
}

/*
 * components/shop/product/cmp_e4f8d601-8c29-4362-9c6a-bb1f0c5ff1ce/component.css
 */
#cmp_e4f8d601-8c29-4362-9c6a-bb1f0c5ff1ce .shop-product__name {
	margin-bottom: 10px;
}

#cmp_e4f8d601-8c29-4362-9c6a-bb1f0c5ff1ce .shop-product__price {
	margin-bottom: 20px;
}

#cmp_e4f8d601-8c29-4362-9c6a-bb1f0c5ff1ce .shop-product select {
	width: auto;
}

#cmp_e4f8d601-8c29-4362-9c6a-bb1f0c5ff1ce .shop-product__add-to-cart {
	margin-bottom: 20px;
}

#cmp_e4f8d601-8c29-4362-9c6a-bb1f0c5ff1ce .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin-bottom: 40px;
}

#cmp_e4f8d601-8c29-4362-9c6a-bb1f0c5ff1ce .shop-product__review-share-desktop .col-xs-6 {
	padding-top: 10px;
}

#cmp_e4f8d601-8c29-4362-9c6a-bb1f0c5ff1ce .shop-product__review-share-desktop .col-xs-6 + .col-xs-6 {
	border-left: 1px solid #E1E1E1;
}

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

/*
 * components/sold_out/cmp_4500e4a4-a49d-4623-a724-0f8373e822c7/component.css
 */
#cmp_4500e4a4-a49d-4623-a724-0f8373e822c7 {
	background-color: rgb(255, 255, 255);
}

#cmp_4500e4a4-a49d-4623-a724-0f8373e822c7 h1 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 48px;
}

#cmp_4500e4a4-a49d-4623-a724-0f8373e822c7 h2 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 36px;
}

#cmp_4500e4a4-a49d-4623-a724-0f8373e822c7 h3 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 24px;
}

#cmp_4500e4a4-a49d-4623-a724-0f8373e822c7 p {
	color: #4A4A4A;
	font-family: Roboto;
	font-size: 16px;
}

#cmp_4500e4a4-a49d-4623-a724-0f8373e822c7 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_4500e4a4-a49d-4623-a724-0f8373e822c7 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_4500e4a4-a49d-4623-a724-0f8373e822c7 .btn {
	background-color: rgb(235, 195, 28);
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 14px;
}

#cmp_4500e4a4-a49d-4623-a724-0f8373e822c7 .btn:hover {
	background-color: rgb(25, 23, 28);
	color: rgb(248, 231, 28);
}

#cmp_4500e4a4-a49d-4623-a724-0f8373e822c7  {
	padding-bottom: 50px;
}
/*
 * components/sold_out/cmp_b3232866-c136-4011-98b8-44396fc76fff/component.css
 */
#cmp_b3232866-c136-4011-98b8-44396fc76fff img {
	max-width: 100%;
}

#cmp_b3232866-c136-4011-98b8-44396fc76fff  {
	padding-top: 50px;
}
/*
 * components/subscribe/cmp_c1713d4f-eccf-414d-9652-950dfbe33f59/component.css
 */

/*
 * components/subscribe/cmp_e2000242-b3bb-4bdb-902b-5ce5cdee5e8e/component.css
 */
#cmp_e2000242-b3bb-4bdb-902b-5ce5cdee5e8e {
	background-color: rgb(255, 255, 255);
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_e2000242-b3bb-4bdb-902b-5ce5cdee5e8e h1 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 48px;
}

#cmp_e2000242-b3bb-4bdb-902b-5ce5cdee5e8e h2 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 36px;
}

#cmp_e2000242-b3bb-4bdb-902b-5ce5cdee5e8e h3 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 24px;
}

#cmp_e2000242-b3bb-4bdb-902b-5ce5cdee5e8e p {
	color: #4A4A4A;
	font-family: Roboto;
	font-size: 16px;
}

/*
 * components/subscribe_flow/survey_step/cmp_397b8500-eb5a-48b9-9579-702b076b8ecf/component.css
 */
#cmp_397b8500-eb5a-48b9-9579-702b076b8ecf.survey h2 {
	margin-bottom: 0.5em;
}

#cmp_397b8500-eb5a-48b9-9579-702b076b8ecf.survey .radio input[type="radio"],
#cmp_397b8500-eb5a-48b9-9579-702b076b8ecf.survey .checkbox input[type="checkbox"] {
	margin-right: 0.5em;
}

#cmp_397b8500-eb5a-48b9-9579-702b076b8ecf.survey .survey-field {
	margin-bottom: 2em;
}

/*
 * components/subscribe_flow/survey_step/cmp_b98e4a3e-517a-47f1-8075-c9f79272debb/component.css
 */
#cmp_b98e4a3e-517a-47f1-8075-c9f79272debb {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/terms_step/cmp_45b9d7c7-61e2-4892-b973-e2d1e1cedb2e/component.css
 */

/*
 * components/subscribe_flow/terms_step/cmp_f58a5be8-f7f9-4c49-9e1c-3e129ad8d0e9/component.css
 */
#cmp_f58a5be8-f7f9-4c49-9e1c-3e129ad8d0e9 {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/variant_step/cmp_39faa2d2-4419-4625-8d5d-4ca5b6eb9007/component.css
 */
#cmp_39faa2d2-4419-4625-8d5d-4ca5b6eb9007 {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/variant_step/cmp_aea901d9-7a59-4825-b607-f99c8f5e3bdd/component.css
 */

/*
 * components/subscription_terms_/_terms_of_sale/cmp_0bce619c-93b5-489e-b28c-027fb8b2b65d/component.css
 */
#cmp_0bce619c-93b5-489e-b28c-027fb8b2b65d {
	background-color: rgb(255, 255, 255);
}

#cmp_0bce619c-93b5-489e-b28c-027fb8b2b65d h1 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 48px;
}

#cmp_0bce619c-93b5-489e-b28c-027fb8b2b65d h2 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 36px;
}

#cmp_0bce619c-93b5-489e-b28c-027fb8b2b65d h3 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 24px;
}

#cmp_0bce619c-93b5-489e-b28c-027fb8b2b65d p {
	color: #4A4A4A;
	font-family: Roboto;
	font-size: 16px;
}

#cmp_0bce619c-93b5-489e-b28c-027fb8b2b65d .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_0bce619c-93b5-489e-b28c-027fb8b2b65d .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_0bce619c-93b5-489e-b28c-027fb8b2b65d .btn {
	background-color: rgb(235, 195, 28);
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 14px;
}

#cmp_0bce619c-93b5-489e-b28c-027fb8b2b65d .btn:hover {
	background-color: rgb(25, 23, 28);
	color: rgb(248, 231, 28);
}

/*
 * components/subscription_terms_/_terms_of_sale/cmp_3dd451c2-b9ee-47f3-ad8f-28bfb9324646/component.css
 */
#cmp_3dd451c2-b9ee-47f3-ad8f-28bfb9324646 {
	background-color: rgb(255, 255, 255);
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_3dd451c2-b9ee-47f3-ad8f-28bfb9324646 h1 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 48px;
}

#cmp_3dd451c2-b9ee-47f3-ad8f-28bfb9324646 h2 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 36px;
}

#cmp_3dd451c2-b9ee-47f3-ad8f-28bfb9324646 h3 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 24px;
}

#cmp_3dd451c2-b9ee-47f3-ad8f-28bfb9324646 p {
	color: #4A4A4A;
	font-family: Roboto;
	font-size: 16px;
}

/*
 * components/terms_of_use/cmp_075b261f-322c-4b49-bd03-ee29dc2722b1/component.css
 */
#cmp_075b261f-322c-4b49-bd03-ee29dc2722b1 {
	background-color: rgb(255, 255, 255);
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_075b261f-322c-4b49-bd03-ee29dc2722b1 h1 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 48px;
}

#cmp_075b261f-322c-4b49-bd03-ee29dc2722b1 h2 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 36px;
}

#cmp_075b261f-322c-4b49-bd03-ee29dc2722b1 h3 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 24px;
}

#cmp_075b261f-322c-4b49-bd03-ee29dc2722b1 p {
	color: #4A4A4A;
	font-family: Roboto;
	font-size: 16px;
}

/*
 * components/terms_of_use/cmp_d1b06c2d-26a8-4795-8d54-48f25e62a72b/component.css
 */
#cmp_d1b06c2d-26a8-4795-8d54-48f25e62a72b {
	background-color: rgb(255, 255, 255);
}

#cmp_d1b06c2d-26a8-4795-8d54-48f25e62a72b h1 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 48px;
}

#cmp_d1b06c2d-26a8-4795-8d54-48f25e62a72b h2 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 36px;
}

#cmp_d1b06c2d-26a8-4795-8d54-48f25e62a72b h3 {
	color: rgb(25, 23, 28);
	font-family: Roboto;
	font-size: 24px;
}

#cmp_d1b06c2d-26a8-4795-8d54-48f25e62a72b p {
	color: #4A4A4A;
	font-family: Roboto;
	font-size: 16px;
}

#cmp_d1b06c2d-26a8-4795-8d54-48f25e62a72b .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_d1b06c2d-26a8-4795-8d54-48f25e62a72b .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_d1b06c2d-26a8-4795-8d54-48f25e62a72b .btn {
	background-color: rgb(235, 195, 28);
	color: rgb(0, 0, 0);
	font-family: Montserrat;
	font-size: 14px;
}

#cmp_d1b06c2d-26a8-4795-8d54-48f25e62a72b .btn:hover {
	background-color: rgb(25, 23, 28);
	color: rgb(248, 231, 28);
}