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

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

h1 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 36px;
}

h2 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 24px;
}

h3 {
	color: rgb(121, 173, 77);
	font-family: Roboto Slab;
	font-size: 16px;
}

p {
	line-height: 1.5em;
}

a,
.btn-link {
	color: rgb(121, 173, 77);
}

a:hover,
a:focus,
a:active,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
	color: rgb(245, 123, 35);
}

/* 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(121, 173, 77);
}

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

.panel-body {
	padding: 15px;
}

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

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

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

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

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

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

.btn-small {
	padding: 0.6em 1.8em;
	border: 1px solid rgb(121, 173, 77);
	border-radius: 15px;
	color: rgb(121, 173, 77);
}

.btn-small:hover,
.btn-small:focus,
.btn-small:active,
.btn-small:active:focus {
	background-color: rgb(45, 45, 45);
	border: 1px solid rgb(45, 45, 45);
	color: rgb(121, 173, 77) !important;
}

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

.btn-primary {
	background-color: rgb(121, 173, 77);
	color: #FFFFFF;
	font-family: Roboto Slab;
	font-size: 14px;
	letter-spacing: 0.167em;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus {
	background-color: rgb(245, 123, 35);
	color: rgb(255, 255, 255);
}

.btn-secondary {
	background-color: rgb(45, 45, 45);
	color: rgb(255, 255, 255);
	font-family: Roboto Slab;
	font-size: 14px;
	letter-spacing: 0.167em;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:active:focus {
	background-color: rgb(245, 123, 35);
	color: rgb(255, 255, 255);
}

.btn-empty {
	background-color: transparent;
	color: rgb(121, 173, 77);
	border: 1px solid rgb(121, 173, 77);
}

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

/* 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(45, 45, 45);
}
.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(121, 173, 77);
	border: none;
	border-radius: 25px;
	color: #FFFFFF;
	font-family: Roboto Slab;
	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(245, 123, 35);
	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(121, 173, 77);
}

.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(121, 173, 77);
	color: rgb(121, 173, 77);
	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(245, 123, 35);
	border-color: rgb(245, 123, 35);
	text-decoration: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.sidebar-offcanvas {
}

/*
 * components/about/cmp_2f0a6631-702c-4e09-aaa7-45a0bebd7129/component.css
 */
#cmp_2f0a6631-702c-4e09-aaa7-45a0bebd7129 {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_2f0a6631-702c-4e09-aaa7-45a0bebd7129 h1 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 36px;
}

#cmp_2f0a6631-702c-4e09-aaa7-45a0bebd7129 h2 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 24px;
}

#cmp_2f0a6631-702c-4e09-aaa7-45a0bebd7129 h3 {
	color: rgb(121, 173, 77);
	font-family: Roboto Slab;
	font-size: 16px;
}

#cmp_2f0a6631-702c-4e09-aaa7-45a0bebd7129 p {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_2f0a6631-702c-4e09-aaa7-45a0bebd7129 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_2f0a6631-702c-4e09-aaa7-45a0bebd7129 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

/*
 * components/about/cmp_45970aa7-cf1c-4d7b-a288-f964d4ea511f/component.css
 */
#cmp_45970aa7-cf1c-4d7b-a288-f964d4ea511f img {
	max-width: 100%;
}

/*
 * components/about/cmp_793b9d4f-701f-41db-ac84-3a40306cc2ef/component.css
 */
#cmp_793b9d4f-701f-41db-ac84-3a40306cc2ef {
	background-color: #FFFFFF;
}

#cmp_793b9d4f-701f-41db-ac84-3a40306cc2ef h1 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 36px;
}

#cmp_793b9d4f-701f-41db-ac84-3a40306cc2ef h2 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 24px;
}

#cmp_793b9d4f-701f-41db-ac84-3a40306cc2ef h3 {
	color: rgb(121, 173, 77);
	font-family: Roboto Slab;
	font-size: 16px;
}

#cmp_793b9d4f-701f-41db-ac84-3a40306cc2ef p {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_793b9d4f-701f-41db-ac84-3a40306cc2ef .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_793b9d4f-701f-41db-ac84-3a40306cc2ef .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_793b9d4f-701f-41db-ac84-3a40306cc2ef .btn {
	background-color: rgb(121, 173, 77);
	color: #FFFFFF;
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_793b9d4f-701f-41db-ac84-3a40306cc2ef .btn:hover {
	background-color: rgb(245, 123, 35);
	color: rgb(255, 255, 255);
}

#cmp_793b9d4f-701f-41db-ac84-3a40306cc2ef ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_793b9d4f-701f-41db-ac84-3a40306cc2ef ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

/*
 * components/artist-inquiry/cmp_ffd0d655-3a09-40fe-8992-202d2b5bc270/component.css
 */
#cmp_ffd0d655-3a09-40fe-8992-202d2b5bc270 {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_ffd0d655-3a09-40fe-8992-202d2b5bc270 h1 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 36px;
}

#cmp_ffd0d655-3a09-40fe-8992-202d2b5bc270 h2 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 24px;
}

#cmp_ffd0d655-3a09-40fe-8992-202d2b5bc270 h3 {
	color: rgb(121, 173, 77);
	font-family: Roboto Slab;
	font-size: 16px;
}

#cmp_ffd0d655-3a09-40fe-8992-202d2b5bc270 p {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_ffd0d655-3a09-40fe-8992-202d2b5bc270 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_ffd0d655-3a09-40fe-8992-202d2b5bc270 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

/*
 * components/artists/cmp_1cbf5877-c457-42c8-9bc4-59f4a1ea50a6/component.css
 */
#cmp_1cbf5877-c457-42c8-9bc4-59f4a1ea50a6 {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_1cbf5877-c457-42c8-9bc4-59f4a1ea50a6 h1 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 36px;
}

#cmp_1cbf5877-c457-42c8-9bc4-59f4a1ea50a6 h2 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 24px;
}

#cmp_1cbf5877-c457-42c8-9bc4-59f4a1ea50a6 h3 {
	color: rgb(121, 173, 77);
	font-family: Roboto Slab;
	font-size: 16px;
}

#cmp_1cbf5877-c457-42c8-9bc4-59f4a1ea50a6 p {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_1cbf5877-c457-42c8-9bc4-59f4a1ea50a6 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_1cbf5877-c457-42c8-9bc4-59f4a1ea50a6 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

/*
 * components/artists/cmp_a2b90956-540e-4964-a107-0cba924b21b6/component.css
 */
#cmp_a2b90956-540e-4964-a107-0cba924b21b6 {
	background-color: #FFFFFF;
}

#cmp_a2b90956-540e-4964-a107-0cba924b21b6 h1 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 36px;
}

#cmp_a2b90956-540e-4964-a107-0cba924b21b6 h2 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 24px;
}

#cmp_a2b90956-540e-4964-a107-0cba924b21b6 h3 {
	color: rgb(121, 173, 77);
	font-family: Roboto Slab;
	font-size: 16px;
}

#cmp_a2b90956-540e-4964-a107-0cba924b21b6 p {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_a2b90956-540e-4964-a107-0cba924b21b6 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_a2b90956-540e-4964-a107-0cba924b21b6 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_a2b90956-540e-4964-a107-0cba924b21b6 .btn {
	background-color: rgb(121, 173, 77);
	color: #FFFFFF;
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_a2b90956-540e-4964-a107-0cba924b21b6 .btn:hover {
	background-color: rgb(245, 123, 35);
	color: rgb(255, 255, 255);
}

#cmp_a2b90956-540e-4964-a107-0cba924b21b6 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_a2b90956-540e-4964-a107-0cba924b21b6 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

/*
 * components/category-both2/cmp_0341a279-71a4-4d5d-a0f3-2eec8a002ccb/component.css
 */
#cmp_0341a279-71a4-4d5d-a0f3-2eec8a002ccb {
	background-color: #FFFFFF;
}

#cmp_0341a279-71a4-4d5d-a0f3-2eec8a002ccb h1 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 36px;
}

#cmp_0341a279-71a4-4d5d-a0f3-2eec8a002ccb h2 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 24px;
}

#cmp_0341a279-71a4-4d5d-a0f3-2eec8a002ccb h3 {
	color: rgb(121, 173, 77);
	font-family: Roboto Slab;
	font-size: 16px;
}

#cmp_0341a279-71a4-4d5d-a0f3-2eec8a002ccb p {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_0341a279-71a4-4d5d-a0f3-2eec8a002ccb .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_0341a279-71a4-4d5d-a0f3-2eec8a002ccb .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_0341a279-71a4-4d5d-a0f3-2eec8a002ccb .btn {
	background-color: rgb(121, 173, 77);
	color: #FFFFFF;
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_0341a279-71a4-4d5d-a0f3-2eec8a002ccb .btn:hover {
	background-color: rgb(245, 123, 35);
	color: rgb(255, 255, 255);
}

#cmp_0341a279-71a4-4d5d-a0f3-2eec8a002ccb ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_0341a279-71a4-4d5d-a0f3-2eec8a002ccb ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

/*
 * components/category-both2/cmp_088fdb4f-dc34-4dbf-813d-48214788daa2/component.css
 */
#cmp_088fdb4f-dc34-4dbf-813d-48214788daa2 {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_088fdb4f-dc34-4dbf-813d-48214788daa2 h1 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 36px;
}

#cmp_088fdb4f-dc34-4dbf-813d-48214788daa2 h2 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 24px;
}

#cmp_088fdb4f-dc34-4dbf-813d-48214788daa2 h3 {
	color: rgb(121, 173, 77);
	font-family: Roboto Slab;
	font-size: 16px;
}

#cmp_088fdb4f-dc34-4dbf-813d-48214788daa2 p {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_088fdb4f-dc34-4dbf-813d-48214788daa2 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_088fdb4f-dc34-4dbf-813d-48214788daa2 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

/*
 * components/category-both2/cmp_42087e9d-c1a2-47a0-960a-965196760ea0/component.css
 */
#cmp_42087e9d-c1a2-47a0-960a-965196760ea0 img {
	max-width: 100%;
}

/*
 * components/category-both2/cmp_90910ff2-d994-43b5-9f36-f2209f3a29eb/component.css
 */
#cmp_90910ff2-d994-43b5-9f36-f2209f3a29eb {
	background-color: #FFFFFF;
}

#cmp_90910ff2-d994-43b5-9f36-f2209f3a29eb h1 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 36px;
}

#cmp_90910ff2-d994-43b5-9f36-f2209f3a29eb h2 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 24px;
}

#cmp_90910ff2-d994-43b5-9f36-f2209f3a29eb h3 {
	color: rgb(121, 173, 77);
	font-family: Roboto Slab;
	font-size: 16px;
}

#cmp_90910ff2-d994-43b5-9f36-f2209f3a29eb p {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_90910ff2-d994-43b5-9f36-f2209f3a29eb .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_90910ff2-d994-43b5-9f36-f2209f3a29eb .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_90910ff2-d994-43b5-9f36-f2209f3a29eb .btn {
	background-color: rgb(121, 173, 77);
	color: #FFFFFF;
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_90910ff2-d994-43b5-9f36-f2209f3a29eb .btn:hover {
	background-color: rgb(245, 123, 35);
	color: rgb(255, 255, 255);
}

#cmp_90910ff2-d994-43b5-9f36-f2209f3a29eb ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_90910ff2-d994-43b5-9f36-f2209f3a29eb ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

/*
 * components/category-both2/cmp_cd053f7a-2c40-4cb6-9945-dbf36e0c4429/component.css
 */
#cmp_cd053f7a-2c40-4cb6-9945-dbf36e0c4429 {
	background-color: #FFFFFF;
}

#cmp_cd053f7a-2c40-4cb6-9945-dbf36e0c4429 h1 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 36px;
}

#cmp_cd053f7a-2c40-4cb6-9945-dbf36e0c4429 h2 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 24px;
}

#cmp_cd053f7a-2c40-4cb6-9945-dbf36e0c4429 h3 {
	color: rgb(121, 173, 77);
	font-family: Roboto Slab;
	font-size: 16px;
}

#cmp_cd053f7a-2c40-4cb6-9945-dbf36e0c4429 p {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_cd053f7a-2c40-4cb6-9945-dbf36e0c4429 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_cd053f7a-2c40-4cb6-9945-dbf36e0c4429 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_cd053f7a-2c40-4cb6-9945-dbf36e0c4429 .btn {
	background-color: rgb(121, 173, 77);
	color: #FFFFFF;
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_cd053f7a-2c40-4cb6-9945-dbf36e0c4429 .btn:hover {
	background-color: rgb(245, 123, 35);
	color: rgb(255, 255, 255);
}

#cmp_cd053f7a-2c40-4cb6-9945-dbf36e0c4429 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_cd053f7a-2c40-4cb6-9945-dbf36e0c4429 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

/*
 * components/category-both2/cmp_cf75b85d-4959-4adf-985a-6a1cf292bf73/component.css
 */
#cmp_cf75b85d-4959-4adf-985a-6a1cf292bf73 {
	background-color: #FFFFFF;
}

#cmp_cf75b85d-4959-4adf-985a-6a1cf292bf73 h1 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 36px;
}

#cmp_cf75b85d-4959-4adf-985a-6a1cf292bf73 h2 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 24px;
}

#cmp_cf75b85d-4959-4adf-985a-6a1cf292bf73 h3 {
	color: rgb(121, 173, 77);
	font-family: Roboto Slab;
	font-size: 16px;
}

#cmp_cf75b85d-4959-4adf-985a-6a1cf292bf73 p {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_cf75b85d-4959-4adf-985a-6a1cf292bf73 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_cf75b85d-4959-4adf-985a-6a1cf292bf73 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_cf75b85d-4959-4adf-985a-6a1cf292bf73 .btn {
	background-color: rgb(121, 173, 77);
	color: #FFFFFF;
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_cf75b85d-4959-4adf-985a-6a1cf292bf73 .btn:hover {
	background-color: rgb(245, 123, 35);
	color: rgb(255, 255, 255);
}

#cmp_cf75b85d-4959-4adf-985a-6a1cf292bf73 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_cf75b85d-4959-4adf-985a-6a1cf292bf73 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

/*
 * components/category-both2/cmp_e3bf7dd5-0944-467b-95ec-25c87e565fda/component.css
 */
#cmp_e3bf7dd5-0944-467b-95ec-25c87e565fda img {
	max-width: 100%;
}

/*
 * components/category-both2/cmp_f3cd75ae-1dcf-426e-9855-3e38a077ea66/component.css
 */
#cmp_f3cd75ae-1dcf-426e-9855-3e38a077ea66 img {
	max-width: 100%;
}

/*
 * components/category-both2/cmp_f7f80f53-23ac-4c88-ab01-810f7b7ce958/component.css
 */
#cmp_f7f80f53-23ac-4c88-ab01-810f7b7ce958 img {
	max-width: 100%;
}

/*
 * components/category-drums2/cmp_2ac37215-c589-47cb-98ef-43ba5ad881e9/component.css
 */
#cmp_2ac37215-c589-47cb-98ef-43ba5ad881e9 {
	background-color: #FFFFFF;
}

#cmp_2ac37215-c589-47cb-98ef-43ba5ad881e9 h1 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 36px;
}

#cmp_2ac37215-c589-47cb-98ef-43ba5ad881e9 h2 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 24px;
}

#cmp_2ac37215-c589-47cb-98ef-43ba5ad881e9 h3 {
	color: rgb(121, 173, 77);
	font-family: Roboto Slab;
	font-size: 16px;
}

#cmp_2ac37215-c589-47cb-98ef-43ba5ad881e9 p {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_2ac37215-c589-47cb-98ef-43ba5ad881e9 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_2ac37215-c589-47cb-98ef-43ba5ad881e9 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_2ac37215-c589-47cb-98ef-43ba5ad881e9 .btn {
	background-color: rgb(121, 173, 77);
	color: #FFFFFF;
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_2ac37215-c589-47cb-98ef-43ba5ad881e9 .btn:hover {
	background-color: rgb(245, 123, 35);
	color: rgb(255, 255, 255);
}

#cmp_2ac37215-c589-47cb-98ef-43ba5ad881e9 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_2ac37215-c589-47cb-98ef-43ba5ad881e9 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

/*
 * components/category-drums2/cmp_504a5ff6-c269-4a69-88ad-95f5c2c42f32/component.css
 */
#cmp_504a5ff6-c269-4a69-88ad-95f5c2c42f32 img {
	max-width: 100%;
}

/*
 * components/category-drums2/cmp_8b36f381-44e2-43cf-ac8a-1b92c22fdb34/component.css
 */
#cmp_8b36f381-44e2-43cf-ac8a-1b92c22fdb34 {
	background-color: #FFFFFF;
}

#cmp_8b36f381-44e2-43cf-ac8a-1b92c22fdb34 h1 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 36px;
}

#cmp_8b36f381-44e2-43cf-ac8a-1b92c22fdb34 h2 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 24px;
}

#cmp_8b36f381-44e2-43cf-ac8a-1b92c22fdb34 h3 {
	color: rgb(121, 173, 77);
	font-family: Roboto Slab;
	font-size: 16px;
}

#cmp_8b36f381-44e2-43cf-ac8a-1b92c22fdb34 p {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_8b36f381-44e2-43cf-ac8a-1b92c22fdb34 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_8b36f381-44e2-43cf-ac8a-1b92c22fdb34 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_8b36f381-44e2-43cf-ac8a-1b92c22fdb34 .btn {
	background-color: rgb(121, 173, 77);
	color: #FFFFFF;
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_8b36f381-44e2-43cf-ac8a-1b92c22fdb34 .btn:hover {
	background-color: rgb(245, 123, 35);
	color: rgb(255, 255, 255);
}

#cmp_8b36f381-44e2-43cf-ac8a-1b92c22fdb34 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_8b36f381-44e2-43cf-ac8a-1b92c22fdb34 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

/*
 * components/category-drums2/cmp_98b56f0f-c46d-4070-9f92-6bd82e0c1119/component.css
 */
#cmp_98b56f0f-c46d-4070-9f92-6bd82e0c1119 img {
	max-width: 100%;
}

/*
 * components/category-drums2/cmp_b1b41ac9-a22e-4f8d-b37e-d98dd7f08f99/component.css
 */
#cmp_b1b41ac9-a22e-4f8d-b37e-d98dd7f08f99 img {
	max-width: 100%;
}

/*
 * components/category-drums2/cmp_e524f999-76e7-4156-a141-e3f44eda97d5/component.css
 */
#cmp_e524f999-76e7-4156-a141-e3f44eda97d5 {
	background-color: #FFFFFF;
}

#cmp_e524f999-76e7-4156-a141-e3f44eda97d5 h1 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 36px;
}

#cmp_e524f999-76e7-4156-a141-e3f44eda97d5 h2 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 24px;
}

#cmp_e524f999-76e7-4156-a141-e3f44eda97d5 h3 {
	color: rgb(121, 173, 77);
	font-family: Roboto Slab;
	font-size: 16px;
}

#cmp_e524f999-76e7-4156-a141-e3f44eda97d5 p {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_e524f999-76e7-4156-a141-e3f44eda97d5 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_e524f999-76e7-4156-a141-e3f44eda97d5 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_e524f999-76e7-4156-a141-e3f44eda97d5 .btn {
	background-color: rgb(121, 173, 77);
	color: #FFFFFF;
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_e524f999-76e7-4156-a141-e3f44eda97d5 .btn:hover {
	background-color: rgb(245, 123, 35);
	color: rgb(255, 255, 255);
}

#cmp_e524f999-76e7-4156-a141-e3f44eda97d5 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_e524f999-76e7-4156-a141-e3f44eda97d5 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

/*
 * components/category-drums2/cmp_f736e13e-c292-4312-b02c-ff07b4d74185/component.css
 */
#cmp_f736e13e-c292-4312-b02c-ff07b4d74185 {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_f736e13e-c292-4312-b02c-ff07b4d74185 h1 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 36px;
}

#cmp_f736e13e-c292-4312-b02c-ff07b4d74185 h2 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 24px;
}

#cmp_f736e13e-c292-4312-b02c-ff07b4d74185 h3 {
	color: rgb(121, 173, 77);
	font-family: Roboto Slab;
	font-size: 16px;
}

#cmp_f736e13e-c292-4312-b02c-ff07b4d74185 p {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_f736e13e-c292-4312-b02c-ff07b4d74185 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_f736e13e-c292-4312-b02c-ff07b4d74185 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

/*
 * components/category-guitar2/cmp_0e196a86-a26a-4ab3-b981-7fd204b9d269/component.css
 */
#cmp_0e196a86-a26a-4ab3-b981-7fd204b9d269 {
	background-color: #FFFFFF;
}

#cmp_0e196a86-a26a-4ab3-b981-7fd204b9d269 h1 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 36px;
}

#cmp_0e196a86-a26a-4ab3-b981-7fd204b9d269 h2 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 24px;
}

#cmp_0e196a86-a26a-4ab3-b981-7fd204b9d269 h3 {
	color: rgb(121, 173, 77);
	font-family: Roboto Slab;
	font-size: 16px;
}

#cmp_0e196a86-a26a-4ab3-b981-7fd204b9d269 p {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_0e196a86-a26a-4ab3-b981-7fd204b9d269 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_0e196a86-a26a-4ab3-b981-7fd204b9d269 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_0e196a86-a26a-4ab3-b981-7fd204b9d269 .btn {
	background-color: rgb(121, 173, 77);
	color: #FFFFFF;
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_0e196a86-a26a-4ab3-b981-7fd204b9d269 .btn:hover {
	background-color: rgb(245, 123, 35);
	color: rgb(255, 255, 255);
}

#cmp_0e196a86-a26a-4ab3-b981-7fd204b9d269 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_0e196a86-a26a-4ab3-b981-7fd204b9d269 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

/*
 * components/category-guitar2/cmp_39c98974-287a-439a-b700-4622db83532e/component.css
 */
#cmp_39c98974-287a-439a-b700-4622db83532e {
	background-color: #FFFFFF;
}

#cmp_39c98974-287a-439a-b700-4622db83532e h1 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 36px;
}

#cmp_39c98974-287a-439a-b700-4622db83532e h2 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 24px;
}

#cmp_39c98974-287a-439a-b700-4622db83532e h3 {
	color: rgb(121, 173, 77);
	font-family: Roboto Slab;
	font-size: 16px;
}

#cmp_39c98974-287a-439a-b700-4622db83532e p {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_39c98974-287a-439a-b700-4622db83532e .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_39c98974-287a-439a-b700-4622db83532e .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_39c98974-287a-439a-b700-4622db83532e .btn {
	background-color: rgb(121, 173, 77);
	color: #FFFFFF;
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_39c98974-287a-439a-b700-4622db83532e .btn:hover {
	background-color: rgb(245, 123, 35);
	color: rgb(255, 255, 255);
}

#cmp_39c98974-287a-439a-b700-4622db83532e ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_39c98974-287a-439a-b700-4622db83532e ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

/*
 * components/category-guitar2/cmp_3c24d345-3875-460d-a2e6-371d711781dd/component.css
 */
#cmp_3c24d345-3875-460d-a2e6-371d711781dd img {
	max-width: 100%;
}

/*
 * components/category-guitar2/cmp_7a59bae4-2c0d-44f1-97e1-bda73bb870b8/component.css
 */
#cmp_7a59bae4-2c0d-44f1-97e1-bda73bb870b8 {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_7a59bae4-2c0d-44f1-97e1-bda73bb870b8 h1 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 36px;
}

#cmp_7a59bae4-2c0d-44f1-97e1-bda73bb870b8 h2 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 24px;
}

#cmp_7a59bae4-2c0d-44f1-97e1-bda73bb870b8 h3 {
	color: rgb(121, 173, 77);
	font-family: Roboto Slab;
	font-size: 16px;
}

#cmp_7a59bae4-2c0d-44f1-97e1-bda73bb870b8 p {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_7a59bae4-2c0d-44f1-97e1-bda73bb870b8 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_7a59bae4-2c0d-44f1-97e1-bda73bb870b8 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

/*
 * components/category-guitar2/cmp_c703e509-62cd-4e18-98be-8ad52adadf08/component.css
 */
#cmp_c703e509-62cd-4e18-98be-8ad52adadf08 img {
	max-width: 100%;
}

/*
 * components/checkout/cmp_f29d9bd0-b2a5-47ce-88b4-e095dff78f84/component.css
 */
#cmp_f29d9bd0-b2a5-47ce-88b4-e095dff78f84 .checkout_content {
	overflow: auto;
}

#cmp_f29d9bd0-b2a5-47ce-88b4-e095dff78f84 .checkout_content section {
	border-color: #F5F5F5;
}

#cmp_f29d9bd0-b2a5-47ce-88b4-e095dff78f84 .cart_listing table {
	border-color: #F5F5F5;
}

/*
 * components/customer/account/cmp_38656598-0d25-494e-835c-658ec0b9b146/component.css
 */
#cmp_38656598-0d25-494e-835c-658ec0b9b146 .customer-product-review {
	border-bottom: 1px solid #ddd;
	padding: 15px;
}

#cmp_38656598-0d25-494e-835c-658ec0b9b146 .customer-product-review:last-child {
	border-bottom: 0;
}

#cmp_38656598-0d25-494e-835c-658ec0b9b146 .customer-product-rating {
	color: rgb(121, 173, 77);
	float: right;
}

/*
 * components/customer/account/cmp_7f7da953-f7a0-4b78-9534-c53d52161622/component.css
 */

/*
 * components/customer/edit/cmp_85f597dd-4275-4603-9861-2f9eebf72944/component.css
 */

/*
 * components/customer/forgot_password/cmp_79b49030-2249-4293-8872-79f1f246ccda/component.css
 */
#cmp_79b49030-2249-4293-8872-79f1f246ccda {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_79b49030-2249-4293-8872-79f1f246ccda h1 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 36px;
}

#cmp_79b49030-2249-4293-8872-79f1f246ccda h2 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 24px;
}

#cmp_79b49030-2249-4293-8872-79f1f246ccda h3 {
	color: rgb(121, 173, 77);
	font-family: Roboto Slab;
	font-size: 16px;
}

#cmp_79b49030-2249-4293-8872-79f1f246ccda p {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_79b49030-2249-4293-8872-79f1f246ccda ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_79b49030-2249-4293-8872-79f1f246ccda ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_79b49030-2249-4293-8872-79f1f246ccda  {
	padding: 50px 0;
}
#cmp_79b49030-2249-4293-8872-79f1f246ccda h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/forgot_password/cmp_e4b3149e-999e-4288-8180-40ffcceb624a/component.css
 */

#cmp_e4b3149e-999e-4288-8180-40ffcceb624a  {
	padding-bottom: 120px;
}
/*
 * components/customer/login/cmp_0c556ee6-2efa-44dc-9ae3-1af9b80c7094/component.css
 */
#cmp_0c556ee6-2efa-44dc-9ae3-1af9b80c7094 {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_0c556ee6-2efa-44dc-9ae3-1af9b80c7094 h1 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 36px;
}

#cmp_0c556ee6-2efa-44dc-9ae3-1af9b80c7094 h2 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 24px;
}

#cmp_0c556ee6-2efa-44dc-9ae3-1af9b80c7094 h3 {
	color: rgb(121, 173, 77);
	font-family: Roboto Slab;
	font-size: 16px;
}

#cmp_0c556ee6-2efa-44dc-9ae3-1af9b80c7094 p {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_0c556ee6-2efa-44dc-9ae3-1af9b80c7094 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_0c556ee6-2efa-44dc-9ae3-1af9b80c7094 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_0c556ee6-2efa-44dc-9ae3-1af9b80c7094  {
	padding: 50px 0;
}
#cmp_0c556ee6-2efa-44dc-9ae3-1af9b80c7094 h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/login/cmp_fef74bd8-dfb6-4f31-89c7-02d899245d19/component.css
 */

#cmp_fef74bd8-dfb6-4f31-89c7-02d899245d19  {
	padding-bottom: 120px;
}
/*
 * components/customer/order/cmp_7d87f614-6787-4e55-9a0c-76a58d59d138/component.css
 */

/*
 * components/customer/orders/cmp_b9f77d80-30a8-4e1e-a1b2-3efbc4b4853f/component.css
 */

/*
 * components/customer/password_reset/cmp_be3964b3-0258-4eb8-8f86-b732cf893b9b/component.css
 */

#cmp_be3964b3-0258-4eb8-8f86-b732cf893b9b  {
	padding-bottom: 120px;
}
/*
 * components/customer/password_reset/cmp_fd0b203e-9337-46f7-8054-3e8b97464665/component.css
 */
#cmp_fd0b203e-9337-46f7-8054-3e8b97464665 {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_fd0b203e-9337-46f7-8054-3e8b97464665 h1 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 36px;
}

#cmp_fd0b203e-9337-46f7-8054-3e8b97464665 h2 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 24px;
}

#cmp_fd0b203e-9337-46f7-8054-3e8b97464665 h3 {
	color: rgb(121, 173, 77);
	font-family: Roboto Slab;
	font-size: 16px;
}

#cmp_fd0b203e-9337-46f7-8054-3e8b97464665 p {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_fd0b203e-9337-46f7-8054-3e8b97464665 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_fd0b203e-9337-46f7-8054-3e8b97464665 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_fd0b203e-9337-46f7-8054-3e8b97464665  {
	padding: 50px 0;
}
#cmp_fd0b203e-9337-46f7-8054-3e8b97464665 h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/thank_you/cmp_0e1a648e-3896-4bfa-9f97-865e2525896f/component.css
 */

/*
 * components/faq/cmp_739ae8da-6cdb-4fc4-83df-a8b25b14e7ac/component.css
 */
#cmp_739ae8da-6cdb-4fc4-83df-a8b25b14e7ac {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_739ae8da-6cdb-4fc4-83df-a8b25b14e7ac h1 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 36px;
}

#cmp_739ae8da-6cdb-4fc4-83df-a8b25b14e7ac h2 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 24px;
}

#cmp_739ae8da-6cdb-4fc4-83df-a8b25b14e7ac h3 {
	color: rgb(121, 173, 77);
	font-family: Roboto Slab;
	font-size: 16px;
}

#cmp_739ae8da-6cdb-4fc4-83df-a8b25b14e7ac p {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_739ae8da-6cdb-4fc4-83df-a8b25b14e7ac ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_739ae8da-6cdb-4fc4-83df-a8b25b14e7ac ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

/*
 * components/faq/cmp_d9d96717-d7a0-4780-86d2-a6e518ae16d1/component.css
 */
#cmp_d9d96717-d7a0-4780-86d2-a6e518ae16d1 {
	background-color: #FFFFFF;
}

#cmp_d9d96717-d7a0-4780-86d2-a6e518ae16d1 h1 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 36px;
}

#cmp_d9d96717-d7a0-4780-86d2-a6e518ae16d1 h2 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 24px;
}

#cmp_d9d96717-d7a0-4780-86d2-a6e518ae16d1 h3 {
	color: rgb(121, 173, 77);
	font-family: Roboto Slab;
	font-size: 16px;
}

#cmp_d9d96717-d7a0-4780-86d2-a6e518ae16d1 p {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_d9d96717-d7a0-4780-86d2-a6e518ae16d1 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_d9d96717-d7a0-4780-86d2-a6e518ae16d1 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_d9d96717-d7a0-4780-86d2-a6e518ae16d1 .btn {
	background-color: rgb(121, 173, 77);
	color: #FFFFFF;
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_d9d96717-d7a0-4780-86d2-a6e518ae16d1 .btn:hover {
	background-color: rgb(245, 123, 35);
	color: rgb(255, 255, 255);
}

#cmp_d9d96717-d7a0-4780-86d2-a6e518ae16d1 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_d9d96717-d7a0-4780-86d2-a6e518ae16d1 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

/*
 * components/gateway2/cmp_02e85f5a-350f-458e-b4a5-f459986be8a2/component.css
 */
#cmp_02e85f5a-350f-458e-b4a5-f459986be8a2 {
	background-color: #FFFFFF;
}

#cmp_02e85f5a-350f-458e-b4a5-f459986be8a2 h1 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 36px;
}

#cmp_02e85f5a-350f-458e-b4a5-f459986be8a2 h2 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 24px;
}

#cmp_02e85f5a-350f-458e-b4a5-f459986be8a2 h3 {
	color: rgb(121, 173, 77);
	font-family: Roboto Slab;
	font-size: 16px;
}

#cmp_02e85f5a-350f-458e-b4a5-f459986be8a2 p {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_02e85f5a-350f-458e-b4a5-f459986be8a2 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_02e85f5a-350f-458e-b4a5-f459986be8a2 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_02e85f5a-350f-458e-b4a5-f459986be8a2 .btn {
	background-color: rgb(121, 173, 77);
	color: #FFFFFF;
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_02e85f5a-350f-458e-b4a5-f459986be8a2 .btn:hover {
	background-color: rgb(245, 123, 35);
	color: rgb(255, 255, 255);
}

#cmp_02e85f5a-350f-458e-b4a5-f459986be8a2 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_02e85f5a-350f-458e-b4a5-f459986be8a2 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

/*
 * components/gateway2/cmp_463c090c-78ac-40f6-9bbf-560e4dbcb5bc/component.css
 */
#cmp_463c090c-78ac-40f6-9bbf-560e4dbcb5bc img {
	max-width: 100%;
}

/*
 * components/gateway2/cmp_6bf1b152-7523-4569-9873-d7bc69c35a75/component.css
 */
#cmp_6bf1b152-7523-4569-9873-d7bc69c35a75 img {
	max-width: 100%;
}

/*
 * components/gateway2/cmp_6cfd0d49-bdaa-40ce-9f72-83e3a86d2b35/component.css
 */
#cmp_6cfd0d49-bdaa-40ce-9f72-83e3a86d2b35 img {
	max-width: 100%;
}

/*
 * components/gateway2/cmp_e58ea1f2-0175-496d-a1ce-67630ffe3a14/component.css
 */
#cmp_e58ea1f2-0175-496d-a1ce-67630ffe3a14 {
	background-color: #FFFFFF;
}

#cmp_e58ea1f2-0175-496d-a1ce-67630ffe3a14 h1 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 36px;
}

#cmp_e58ea1f2-0175-496d-a1ce-67630ffe3a14 h2 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 24px;
}

#cmp_e58ea1f2-0175-496d-a1ce-67630ffe3a14 h3 {
	color: rgb(121, 173, 77);
	font-family: Roboto Slab;
	font-size: 16px;
}

#cmp_e58ea1f2-0175-496d-a1ce-67630ffe3a14 p {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_e58ea1f2-0175-496d-a1ce-67630ffe3a14 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_e58ea1f2-0175-496d-a1ce-67630ffe3a14 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_e58ea1f2-0175-496d-a1ce-67630ffe3a14 .btn {
	background-color: rgb(121, 173, 77);
	color: #FFFFFF;
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_e58ea1f2-0175-496d-a1ce-67630ffe3a14 .btn:hover {
	background-color: rgb(245, 123, 35);
	color: rgb(255, 255, 255);
}

#cmp_e58ea1f2-0175-496d-a1ce-67630ffe3a14 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_e58ea1f2-0175-496d-a1ce-67630ffe3a14 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

/*
 * components/gateway2/cmp_ec9e7cfe-5caa-4303-86ac-6ee1c242154b/component.css
 */
#cmp_ec9e7cfe-5caa-4303-86ac-6ee1c242154b {
	background-color: #FFFFFF;
}

#cmp_ec9e7cfe-5caa-4303-86ac-6ee1c242154b h1 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 36px;
}

#cmp_ec9e7cfe-5caa-4303-86ac-6ee1c242154b h2 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 24px;
}

#cmp_ec9e7cfe-5caa-4303-86ac-6ee1c242154b h3 {
	color: rgb(121, 173, 77);
	font-family: Roboto Slab;
	font-size: 16px;
}

#cmp_ec9e7cfe-5caa-4303-86ac-6ee1c242154b p {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_ec9e7cfe-5caa-4303-86ac-6ee1c242154b .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_ec9e7cfe-5caa-4303-86ac-6ee1c242154b .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_ec9e7cfe-5caa-4303-86ac-6ee1c242154b .btn {
	background-color: rgb(121, 173, 77);
	color: #FFFFFF;
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_ec9e7cfe-5caa-4303-86ac-6ee1c242154b .btn:hover {
	background-color: rgb(245, 123, 35);
	color: rgb(255, 255, 255);
}

#cmp_ec9e7cfe-5caa-4303-86ac-6ee1c242154b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_ec9e7cfe-5caa-4303-86ac-6ee1c242154b ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

/*
 * components/gateway2/cmp_f7495f22-1cf2-43bd-91e8-32ca701c0863/component.css
 */
#cmp_f7495f22-1cf2-43bd-91e8-32ca701c0863 {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_f7495f22-1cf2-43bd-91e8-32ca701c0863 h1 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 36px;
}

#cmp_f7495f22-1cf2-43bd-91e8-32ca701c0863 h2 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 24px;
}

#cmp_f7495f22-1cf2-43bd-91e8-32ca701c0863 h3 {
	color: rgb(121, 173, 77);
	font-family: Roboto Slab;
	font-size: 16px;
}

#cmp_f7495f22-1cf2-43bd-91e8-32ca701c0863 p {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_f7495f22-1cf2-43bd-91e8-32ca701c0863 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_f7495f22-1cf2-43bd-91e8-32ca701c0863 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

/*
 * components/global/cmp_38da85ce-4a8f-48c4-bec9-282581179490/component.css
 */
#cmp_38da85ce-4a8f-48c4-bec9-282581179490 {
	margin-top: 40px;
	margin-bottom: 40px;
}

#cmp_38da85ce-4a8f-48c4-bec9-282581179490 .progress-bar-container {
	position: relative;
}

#cmp_38da85ce-4a8f-48c4-bec9-282581179490 .progress-bar-filler {
	height: 2px;
	width: 90%;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	left: 0;
	right: 0;
	z-index: -10;
	background: #E5E5E5;
}

#cmp_38da85ce-4a8f-48c4-bec9-282581179490 .progress-bar {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	color: #E5E5E5;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_38da85ce-4a8f-48c4-bec9-282581179490 .progress-bar::before {
		width: 86%;
		margin: 0 7%;
	}
}

#cmp_38da85ce-4a8f-48c4-bec9-282581179490 .progress-bar .step {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#cmp_38da85ce-4a8f-48c4-bec9-282581179490 .progress-bar .step .point {
	width: 20px;
	height: 20px;
	border-radius: 10px;
	background-color: #E5E5E5;
	border: 4px solid white;
}

#cmp_38da85ce-4a8f-48c4-bec9-282581179490 .progress-bar .step.active {
	color: rgb(45, 45, 45);
}

#cmp_38da85ce-4a8f-48c4-bec9-282581179490 .progress-bar .step.active .point {
	background-color: rgb(121, 173, 77);;
}

/*
 * components/global/cmp_a4a143d0-4758-4be6-ae18-a6d72491e946/component.css
 */
#cmp_a4a143d0-4758-4be6-ae18-a6d72491e946 .navbar {
	background-color: rgba(0, 0, 0, 0.1);
	border-radius: 0;
	margin-bottom: 3rem;
}

#cmp_a4a143d0-4758-4be6-ae18-a6d72491e946 .navbar-brand {
	color: rgb(121, 173, 77);
	font-family: Roboto Slab;
	font-size: 40px;
	margin: 0;
	line-height: 1;
	text-align: center;
}

#cmp_a4a143d0-4758-4be6-ae18-a6d72491e946 .navbar-brand > img {
	display: inline-block;
}

#cmp_a4a143d0-4758-4be6-ae18-a6d72491e946 .navbar-nav {
	display: -moz-flex;
	display: -webkit-flex;
	display: flex;

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

	margin: 0;
}

#cmp_a4a143d0-4758-4be6-ae18-a6d72491e946 .navbar a.nav-link,
#cmp_a4a143d0-4758-4be6-ae18-a6d72491e946 .navbar button {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 12px;;
	letter-spacing: 1px;
	padding: 8px 12px;
	text-align: center;
	text-transform: uppercase;
}

#cmp_a4a143d0-4758-4be6-ae18-a6d72491e946 .navbar a.nav-link:hover,
#cmp_a4a143d0-4758-4be6-ae18-a6d72491e946 .navbar a.nav-link:focus,
#cmp_a4a143d0-4758-4be6-ae18-a6d72491e946 .navbar a.nav-link:active,
#cmp_a4a143d0-4758-4be6-ae18-a6d72491e946 .navbar button:hover,
#cmp_a4a143d0-4758-4be6-ae18-a6d72491e946 .navbar button:focus,
#cmp_a4a143d0-4758-4be6-ae18-a6d72491e946 .navbar button:active {
	color: rgb(45, 45, 45);
	outline: none;
}

#cmp_a4a143d0-4758-4be6-ae18-a6d72491e946 .navbar-nav .dropdown-menu a {
	color: rgb(45, 45, 45);
	padding: 10px 0;
}

#cmp_a4a143d0-4758-4be6-ae18-a6d72491e946 .navbar-toggler {
	padding: 1rem;
}

@media(min-width: 767px) {
	#cmp_a4a143d0-4758-4be6-ae18-a6d72491e946 .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_a4a143d0-4758-4be6-ae18-a6d72491e946 .navbar-nav li {
		-moz-flex-shrink: 0;
		-webkit-flex-shrink: 0;
		flex-shrink: 0;
	}

	#cmp_a4a143d0-4758-4be6-ae18-a6d72491e946 .navbar-nav .nav-link {
		padding: 8px 0 8px 28px;
	}
}

/*
 * components/global/cmp_dfea5de4-1823-4d96-b8b7-6acef078b3fa/component.css
 */
#cmp_dfea5de4-1823-4d96-b8b7-6acef078b3fa.footer {
	background-color: #FFFFFF;
	font-family: Roboto Slab;
	color: rgb(45, 45, 45);
	font-size: 11px;
	padding-top: 10px;
	padding-bottom: 10px;
	margin-top: 100px;
	text-align: center;
	border-top: 1px solid #DDDDDD;
}

#cmp_dfea5de4-1823-4d96-b8b7-6acef078b3fa a,
#cmp_dfea5de4-1823-4d96-b8b7-6acef078b3fa a:hover,
#cmp_dfea5de4-1823-4d96-b8b7-6acef078b3fa a:focus {
	color: rgb(45, 45, 45);
}

#cmp_dfea5de4-1823-4d96-b8b7-6acef078b3fa .footer-social {
	padding-top: 20px;
	padding-bottom: 15px;
	text-align: center;
}

#cmp_dfea5de4-1823-4d96-b8b7-6acef078b3fa .footer-social a {
	display: inline-block;
	padding-left: 5px;
	padding-right: 5px;
}

#cmp_dfea5de4-1823-4d96-b8b7-6acef078b3fa .footer-social svg path {
	stroke: rgb(45, 45, 45);
}

#cmp_dfea5de4-1823-4d96-b8b7-6acef078b3fa .footer-social svg path + path {
	fill: rgb(45, 45, 45);
}

#cmp_dfea5de4-1823-4d96-b8b7-6acef078b3fa .footer-social a:hover svg path,
#cmp_dfea5de4-1823-4d96-b8b7-6acef078b3fa .footer-social a:focus svg path,
#cmp_dfea5de4-1823-4d96-b8b7-6acef078b3fa .footer-social a:active svg path {
	stroke: rgb(121, 173, 77);
}

#cmp_dfea5de4-1823-4d96-b8b7-6acef078b3fa .footer-social a:hover svg path + path,
#cmp_dfea5de4-1823-4d96-b8b7-6acef078b3fa .footer-social a:focus svg path + path,
#cmp_dfea5de4-1823-4d96-b8b7-6acef078b3fa .footer-social a:active svg path + path {
	fill: rgb(121, 173, 77);
}

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

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

/*
 * components/index/cmp_3bb9da3a-53d5-46ca-9d17-b6915df14831/component.css
 */
#cmp_3bb9da3a-53d5-46ca-9d17-b6915df14831 {
	background-color: #FFFFFF;
}

#cmp_3bb9da3a-53d5-46ca-9d17-b6915df14831 h1 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 36px;
}

#cmp_3bb9da3a-53d5-46ca-9d17-b6915df14831 h2 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 24px;
}

#cmp_3bb9da3a-53d5-46ca-9d17-b6915df14831 h3 {
	color: rgb(121, 173, 77);
	font-family: Roboto Slab;
	font-size: 16px;
}

#cmp_3bb9da3a-53d5-46ca-9d17-b6915df14831 p {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_3bb9da3a-53d5-46ca-9d17-b6915df14831 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_3bb9da3a-53d5-46ca-9d17-b6915df14831 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_3bb9da3a-53d5-46ca-9d17-b6915df14831 .btn {
	background-color: rgb(121, 173, 77);
	color: #FFFFFF;
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_3bb9da3a-53d5-46ca-9d17-b6915df14831 .btn:hover {
	background-color: rgb(245, 123, 35);
	color: rgb(255, 255, 255);
}

#cmp_3bb9da3a-53d5-46ca-9d17-b6915df14831 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_3bb9da3a-53d5-46ca-9d17-b6915df14831 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_3bb9da3a-53d5-46ca-9d17-b6915df14831  {
	padding: 60px 0;
}
#cmp_3bb9da3a-53d5-46ca-9d17-b6915df14831 h1 {
	margin-bottom: 15px;
}
#cmp_3bb9da3a-53d5-46ca-9d17-b6915df14831 p {
	margin-bottom: 20px;
}
/*
 * components/index/cmp_58ebd34b-1c23-4bc0-84e9-5227ec3bba6a/component.css
 */
#cmp_58ebd34b-1c23-4bc0-84e9-5227ec3bba6a img {
	max-width: 100%;
}

/*
 * components/index/cmp_59a1011c-55d9-425f-bf50-f99150594f4d/component.css
 */
#cmp_59a1011c-55d9-425f-bf50-f99150594f4d {
	background-color: rgb(121, 173, 77);
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_59a1011c-55d9-425f-bf50-f99150594f4d h1 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 36px;
}

#cmp_59a1011c-55d9-425f-bf50-f99150594f4d h2 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 24px;
}

#cmp_59a1011c-55d9-425f-bf50-f99150594f4d h3 {
	color: rgb(255, 255, 255);
	font-family: Roboto Slab;
	font-size: 16px;
}

#cmp_59a1011c-55d9-425f-bf50-f99150594f4d p {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_59a1011c-55d9-425f-bf50-f99150594f4d ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_59a1011c-55d9-425f-bf50-f99150594f4d ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

/*
 * components/index/cmp_5dfd401d-1689-4450-be8f-d81c91e9aa0b/component.css
 */
#cmp_5dfd401d-1689-4450-be8f-d81c91e9aa0b hr {
	border-top-color: #DDDDDD;
}

/*
 * components/index/cmp_6c07dcd0-bf7a-4519-8e25-f3e74408766b/component.css
 */
#cmp_6c07dcd0-bf7a-4519-8e25-f3e74408766b {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_6c07dcd0-bf7a-4519-8e25-f3e74408766b h1 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 36px;
}

#cmp_6c07dcd0-bf7a-4519-8e25-f3e74408766b h2 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 24px;
}

#cmp_6c07dcd0-bf7a-4519-8e25-f3e74408766b h3 {
	color: rgb(121, 173, 77);
	font-family: Roboto Slab;
	font-size: 16px;
}

#cmp_6c07dcd0-bf7a-4519-8e25-f3e74408766b p {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_6c07dcd0-bf7a-4519-8e25-f3e74408766b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_6c07dcd0-bf7a-4519-8e25-f3e74408766b ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

/*
 * components/index/cmp_807d41cb-ca56-4ea8-888e-b7ac13e8e554/component.css
 */
/**********
Navigation
**********/
#cmp_807d41cb-ca56-4ea8-888e-b7ac13e8e554 .navbar {
	background-color: rgba(0, 0, 0, 0.1);
	border-radius: 0;
	margin-bottom: 3rem;
}

#cmp_807d41cb-ca56-4ea8-888e-b7ac13e8e554 .navbar-brand {
	color: rgb(121, 173, 77);
	font-family: Roboto Slab;
	font-size: 40px;
	margin: 0;
	line-height: 1;
	text-align: center;
}

#cmp_807d41cb-ca56-4ea8-888e-b7ac13e8e554 .navbar-brand > img {
	display: inline-block;
}

#cmp_807d41cb-ca56-4ea8-888e-b7ac13e8e554 .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_807d41cb-ca56-4ea8-888e-b7ac13e8e554 .navbar a.nav-link,
#cmp_807d41cb-ca56-4ea8-888e-b7ac13e8e554 .navbar button {
	color: #FFFFFF;
	font-family: Roboto Slab;
	font-size: 12px;;
	letter-spacing: 1px;
	padding: 8px 12px;
	text-align: center;
	text-transform: uppercase;
}

#cmp_807d41cb-ca56-4ea8-888e-b7ac13e8e554 .navbar a.nav-link:hover,
#cmp_807d41cb-ca56-4ea8-888e-b7ac13e8e554 .navbar a.nav-link:focus,
#cmp_807d41cb-ca56-4ea8-888e-b7ac13e8e554 .navbar a.nav-link:active,
#cmp_807d41cb-ca56-4ea8-888e-b7ac13e8e554 .navbar button:hover,
#cmp_807d41cb-ca56-4ea8-888e-b7ac13e8e554 .navbar button:focus,
#cmp_807d41cb-ca56-4ea8-888e-b7ac13e8e554 .navbar button:active {
	color: rgb(45, 45, 45);
	outline: none;
}

#cmp_807d41cb-ca56-4ea8-888e-b7ac13e8e554 .navbar-nav .dropdown-menu a {
	color: rgb(45, 45, 45);
	padding: 10px 0;
}

#cmp_807d41cb-ca56-4ea8-888e-b7ac13e8e554 .navbar-toggler {
	padding: 1rem;
}

@media(min-width: 767px) {
	#cmp_807d41cb-ca56-4ea8-888e-b7ac13e8e554 .navbar {
		background-color: transparent;
		margin-bottom: 0;
	}

	#cmp_807d41cb-ca56-4ea8-888e-b7ac13e8e554 .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_807d41cb-ca56-4ea8-888e-b7ac13e8e554 .navbar-nav li {
		-moz-flex-shrink: 0;
		-webkit-flex-shrink: 0;
		flex-shrink: 0;
	}

	#cmp_807d41cb-ca56-4ea8-888e-b7ac13e8e554 .navbar-nav .nav-link {
		padding: 8px 0 8px 28px;
	}
}


/**********
Hero
**********/
#cmp_807d41cb-ca56-4ea8-888e-b7ac13e8e554 .hero-content {
	padding: 20px;
}

@media(min-width: 768px) {
	#cmp_807d41cb-ca56-4ea8-888e-b7ac13e8e554 .hero-content {
		min-height: 700px;
	}
}

#cmp_807d41cb-ca56-4ea8-888e-b7ac13e8e554 .hero-content h1 {
	color: #FFFFFF;
	font-family: Roboto Slab;
	font-size: 50px;
	letter-spacing: 2px;
}

#cmp_807d41cb-ca56-4ea8-888e-b7ac13e8e554 .hero-content h2 {
	color: #FFFFFF;
	font-family: Roboto Slab;
	font-size: 24px;
}

#cmp_807d41cb-ca56-4ea8-888e-b7ac13e8e554 .hero-content h3 {
	color: #FFFFFF;
	font-family: Roboto Slab;
	font-size: 16px;
}

#cmp_807d41cb-ca56-4ea8-888e-b7ac13e8e554 .hero-content p {
	color: #FFFFFF;
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_807d41cb-ca56-4ea8-888e-b7ac13e8e554 .hero-content .btn {
	margin-bottom: 10px;
}

#cmp_807d41cb-ca56-4ea8-888e-b7ac13e8e554 .hero-content .btn.btn-primary {
	border: 2px solid transparent;
	background-color: rgb(121, 173, 77);
	color: #FFFFFF;
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_807d41cb-ca56-4ea8-888e-b7ac13e8e554 .hero-content .btn.btn-primary:hover,
#cmp_807d41cb-ca56-4ea8-888e-b7ac13e8e554 .hero-content .btn.btn-primary:focus,
#cmp_807d41cb-ca56-4ea8-888e-b7ac13e8e554 .hero-content .btn.btn-primary:active,
#cmp_807d41cb-ca56-4ea8-888e-b7ac13e8e554 .hero-content .btn.btn-primary:active:focus {
	background-color: rgb(245, 123, 35);
	color: #FFFFFF;
}

#cmp_807d41cb-ca56-4ea8-888e-b7ac13e8e554 .hero-content .btn-secondary {
	border: 2px solid;

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

#cmp_807d41cb-ca56-4ea8-888e-b7ac13e8e554 .hero-content .btn.btn-secondary:hover,
#cmp_807d41cb-ca56-4ea8-888e-b7ac13e8e554 .hero-content .btn.btn-secondary:focus,
#cmp_807d41cb-ca56-4ea8-888e-b7ac13e8e554 .hero-content .btn.btn-secondary:active,
#cmp_807d41cb-ca56-4ea8-888e-b7ac13e8e554 .hero-content .btn.btn-secondary:active:focus {
	background-color: rgb(245, 123, 35);
	border-color: rgb(255, 255, 255);
	color: rgb(255, 255, 255);
}

#cmp_807d41cb-ca56-4ea8-888e-b7ac13e8e554 h1 {
	margin-top: 20px;
	margin-bottom: 10px;
}
#cmp_807d41cb-ca56-4ea8-888e-b7ac13e8e554 p {
	margin-bottom: 25px;
}
/*
 * components/index/cmp_e6c132f5-07b5-43b5-8348-4ddbb6069f4f/component.css
 */
#cmp_e6c132f5-07b5-43b5-8348-4ddbb6069f4f {
	background-color: #FFFFFF;
}

#cmp_e6c132f5-07b5-43b5-8348-4ddbb6069f4f .title {
	margin-top: 40px;
}

#cmp_e6c132f5-07b5-43b5-8348-4ddbb6069f4f .box-choose-row {
	justify-content: center;
}

#cmp_e6c132f5-07b5-43b5-8348-4ddbb6069f4f .box-choose {
	margin-top: 40px;
	margin-bottom: 40px;
}

#cmp_e6c132f5-07b5-43b5-8348-4ddbb6069f4f .box-choose img {
	margin-bottom: 20px;
}

#cmp_e6c132f5-07b5-43b5-8348-4ddbb6069f4f h1 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 36px;
}

#cmp_e6c132f5-07b5-43b5-8348-4ddbb6069f4f h2 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 24px;
}

#cmp_e6c132f5-07b5-43b5-8348-4ddbb6069f4f h3 {
	color: rgb(121, 173, 77);
	font-family: Roboto Slab;
	font-size: 16px;
}

#cmp_e6c132f5-07b5-43b5-8348-4ddbb6069f4f p {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_e6c132f5-07b5-43b5-8348-4ddbb6069f4f h3 {
	margin-bottom: 25px;
}
/*
 * components/legal/cmp_2e6c4897-6054-4edf-92bb-964eca71f756/component.css
 */
#cmp_2e6c4897-6054-4edf-92bb-964eca71f756 {
	background-color: #FFFFFF;
}

#cmp_2e6c4897-6054-4edf-92bb-964eca71f756 h1 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 36px;
}

#cmp_2e6c4897-6054-4edf-92bb-964eca71f756 h2 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 24px;
}

#cmp_2e6c4897-6054-4edf-92bb-964eca71f756 h3 {
	color: rgb(121, 173, 77);
	font-family: Roboto Slab;
	font-size: 16px;
}

#cmp_2e6c4897-6054-4edf-92bb-964eca71f756 p {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_2e6c4897-6054-4edf-92bb-964eca71f756 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_2e6c4897-6054-4edf-92bb-964eca71f756 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_2e6c4897-6054-4edf-92bb-964eca71f756 .btn {
	background-color: rgb(121, 173, 77);
	color: #FFFFFF;
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_2e6c4897-6054-4edf-92bb-964eca71f756 .btn:hover {
	background-color: rgb(245, 123, 35);
	color: rgb(255, 255, 255);
}

#cmp_2e6c4897-6054-4edf-92bb-964eca71f756 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_2e6c4897-6054-4edf-92bb-964eca71f756 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

/*
 * components/legal/cmp_e6cfa695-4c1d-49e7-9dbb-0aea18f3bd14/component.css
 */
#cmp_e6cfa695-4c1d-49e7-9dbb-0aea18f3bd14 {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_e6cfa695-4c1d-49e7-9dbb-0aea18f3bd14 h1 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 36px;
}

#cmp_e6cfa695-4c1d-49e7-9dbb-0aea18f3bd14 h2 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 24px;
}

#cmp_e6cfa695-4c1d-49e7-9dbb-0aea18f3bd14 h3 {
	color: rgb(121, 173, 77);
	font-family: Roboto Slab;
	font-size: 16px;
}

#cmp_e6cfa695-4c1d-49e7-9dbb-0aea18f3bd14 p {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_e6cfa695-4c1d-49e7-9dbb-0aea18f3bd14 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_e6cfa695-4c1d-49e7-9dbb-0aea18f3bd14 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

/*
 * components/monthly-playlists/cmp_e303e6fd-4cc1-40eb-946b-0a4a62c67e9d/component.css
 */
#cmp_e303e6fd-4cc1-40eb-946b-0a4a62c67e9d {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_e303e6fd-4cc1-40eb-946b-0a4a62c67e9d h1 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 36px;
}

#cmp_e303e6fd-4cc1-40eb-946b-0a4a62c67e9d h2 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 24px;
}

#cmp_e303e6fd-4cc1-40eb-946b-0a4a62c67e9d h3 {
	color: rgb(121, 173, 77);
	font-family: Roboto Slab;
	font-size: 16px;
}

#cmp_e303e6fd-4cc1-40eb-946b-0a4a62c67e9d p {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_e303e6fd-4cc1-40eb-946b-0a4a62c67e9d ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_e303e6fd-4cc1-40eb-946b-0a4a62c67e9d ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

/*
 * components/newsletter/cmp_eed47f68-41cd-4a19-8de3-da22761fcec5/component.css
 */
#cmp_eed47f68-41cd-4a19-8de3-da22761fcec5 {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_eed47f68-41cd-4a19-8de3-da22761fcec5 h1 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 36px;
}

#cmp_eed47f68-41cd-4a19-8de3-da22761fcec5 h2 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 24px;
}

#cmp_eed47f68-41cd-4a19-8de3-da22761fcec5 h3 {
	color: rgb(121, 173, 77);
	font-family: Roboto Slab;
	font-size: 16px;
}

#cmp_eed47f68-41cd-4a19-8de3-da22761fcec5 p {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_eed47f68-41cd-4a19-8de3-da22761fcec5 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_eed47f68-41cd-4a19-8de3-da22761fcec5 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

/*
 * components/shop/listing/cmp_25b3859f-84d7-4cb4-840a-7f7abc208848/component.css
 */
#cmp_25b3859f-84d7-4cb4-840a-7f7abc208848 {
	justify-content: center;
}

#cmp_25b3859f-84d7-4cb4-840a-7f7abc208848 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

#cmp_25b3859f-84d7-4cb4-840a-7f7abc208848  {
	border-bottom: 1px solid #E1E1E1;
	margin-bottom: 35px;
	padding-bottom: 35px;
}
/*
 * components/shop/listing/cmp_749249f0-497f-4a1e-b83f-0a3085c0ae88/component.css
 */
#cmp_749249f0-497f-4a1e-b83f-0a3085c0ae88 {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_749249f0-497f-4a1e-b83f-0a3085c0ae88 h1 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 36px;
}

#cmp_749249f0-497f-4a1e-b83f-0a3085c0ae88 h2 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 24px;
}

#cmp_749249f0-497f-4a1e-b83f-0a3085c0ae88 h3 {
	color: rgb(121, 173, 77);
	font-family: Roboto Slab;
	font-size: 16px;
}

#cmp_749249f0-497f-4a1e-b83f-0a3085c0ae88 p {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_749249f0-497f-4a1e-b83f-0a3085c0ae88 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_749249f0-497f-4a1e-b83f-0a3085c0ae88 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_749249f0-497f-4a1e-b83f-0a3085c0ae88  {
	padding: 50px 0 15px;
}
#cmp_749249f0-497f-4a1e-b83f-0a3085c0ae88 h1 {
	margin-bottom: 15px;
}
/*
 * components/shop/listing/cmp_d1c0fc9f-5dbe-4698-8588-9cd03f62ba69/component.css
 */
#cmp_d1c0fc9f-5dbe-4698-8588-9cd03f62ba69 .shop-listing-item {
	color: rgb(45, 45, 45);
}

#cmp_d1c0fc9f-5dbe-4698-8588-9cd03f62ba69 .shop-listing-item:hover,
#cmp_d1c0fc9f-5dbe-4698-8588-9cd03f62ba69 .shop-listing-item:focus {
	text-decoration: none;
}

#cmp_d1c0fc9f-5dbe-4698-8588-9cd03f62ba69 .shop-listing-item__image {
	background-size: cover;
	background-position: center center;
}

#cmp_d1c0fc9f-5dbe-4698-8588-9cd03f62ba69 .shop-listing-item__name {
	margin: 10px 0;
}

#cmp_d1c0fc9f-5dbe-4698-8588-9cd03f62ba69 .shop-listing-item__price {
	margin: 10px 0 30px;
}

#cmp_d1c0fc9f-5dbe-4698-8588-9cd03f62ba69 .product_paging {
	-webkit-display: flex;
	-ms-display: flex;
	display: flex;
	justify-content: center;

	margin: 20px 0;
}

#cmp_d1c0fc9f-5dbe-4698-8588-9cd03f62ba69 .product_page a,
#cmp_d1c0fc9f-5dbe-4698-8588-9cd03f62ba69 .next_page a,
#cmp_d1c0fc9f-5dbe-4698-8588-9cd03f62ba69 .prev_page a {
	display: block;
	padding: 12px 15px;
	margin: 0 2px;
	border: 1px solid #E0E0E0;
	border-radius: 5px;
}

#cmp_d1c0fc9f-5dbe-4698-8588-9cd03f62ba69 .product_page.active a,
#cmp_d1c0fc9f-5dbe-4698-8588-9cd03f62ba69 .product_page a:hover,
#cmp_d1c0fc9f-5dbe-4698-8588-9cd03f62ba69 .product_page a:focus,
#cmp_d1c0fc9f-5dbe-4698-8588-9cd03f62ba69 .next_page a:hover,
#cmp_d1c0fc9f-5dbe-4698-8588-9cd03f62ba69 .next_page a:focus,
#cmp_d1c0fc9f-5dbe-4698-8588-9cd03f62ba69 .prev_page a:hover,
#cmp_d1c0fc9f-5dbe-4698-8588-9cd03f62ba69 .prev_page a:focus {
	text-decoration: none;
	background-color: #F9F9F9;
}

#cmp_d1c0fc9f-5dbe-4698-8588-9cd03f62ba69 .product_page.active a {
	color: black;
}

/*
 * components/shop/product/cmp_46f477bc-f3ae-4b33-91bc-76fd69c2ebaa/component.css
 */
#cmp_46f477bc-f3ae-4b33-91bc-76fd69c2ebaa.shop-product-header {
	padding: 50px 0 15px;
}

/*
 * components/shop/product/cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107/component.css
 */
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-avg-rating {
	margin-top: 3px;
	margin-bottom: 10px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-rating-text {
	color: rgb(45, 45, 45);
	margin-left: 10px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 #product-reviews-list-row {
	margin-top: 25px;
	margin-bottom: 50px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-reviews-list-heading {
	border-bottom: 1px solid #eee;
	font-family: Roboto Slab;
	font-size: 24px;
	color: rgb(45, 45, 45);
	padding-bottom: 10px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-review {
	padding-top: 20px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-review-info {
	margin-bottom: 15px;
	overflow: auto;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-review-meta {
	float: left;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-review-rating {
	float: right;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-review-content {
	border-bottom: 1px solid #eee;
	padding-bottom: 5px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-review-title {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 15px;
	letter-spacing: 1px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-review-body {
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-rating .cancel-on-png,
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-rating .cancel-off-png,
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-rating .star-on-png,
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-rating .star-off-png,
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-rating .star-half-png {
	color: rgb(121, 173, 77);
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 #reviews-show-more {
	color: rgb(121, 173, 77);
	display: inline-block;
	margin-top: 15px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .write-review-heading {
	border-bottom: 1px solid #eee;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 15px;
	letter-spacing: 1px;
	padding-bottom: 10px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .write-review-message {
	font-family: Roboto Slab;
	margin: 15px 0;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .write-review-message a {
	color: ;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .write-review-rating-row {
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .write-review-rating-label {
	font-family: Roboto Slab;
	font-size: 14px;
	margin-right: 20px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 #write-review-rating {
	display: inline-block;
	line-height: 22px;
	vertical-align: middle;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 #write-review-rating .cancel-on-png,
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 #write-review-rating .cancel-off-png,
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 #write-review-rating .star-on-png,
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 #write-review-rating .star-off-png,
#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 #write-review-rating .star-half-png {
	color: rgb(121, 173, 77);
	font-size: 22px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .write-review-title {
	border: 1px solid rgb(45, 45, 45);
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
	font-weight: 300;
	padding-left: 5px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .write-review-body {
	border: 1px solid rgb(45, 45, 45);
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .customer-product-review {
	border-bottom: 1px solid #ddd;
	padding: 15px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .customer-product-review:last-child {
	border-bottom: 0;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .customer-product-rating {
	color: rgb(121, 173, 77);
	float: right;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .customer-product-review.customer-product-review-hidden {
	display: none;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .customer-product-review h4 {
	font-size: 13px;
	margin-top: 6px;
	margin-bottom: 10px;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .ecom-product-page .rating {
	border-right: 1px solid #eee;
}

#cmp_796b3f00-a1c0-4325-ad48-1ff1e37ac107 .product-reviews-list-heading {
	margin-bottom: 20px;
}

/*
 * components/shop/product/cmp_ab159ab9-1e59-4b64-a5f7-a6b20add1db7/component.css
 */
#cmp_ab159ab9-1e59-4b64-a5f7-a6b20add1db7 .shop-product__name {
	margin-bottom: 10px;
}

#cmp_ab159ab9-1e59-4b64-a5f7-a6b20add1db7 .shop-product__price {
	margin-bottom: 20px;
}

#cmp_ab159ab9-1e59-4b64-a5f7-a6b20add1db7 .shop-product select {
	width: auto;
}

#cmp_ab159ab9-1e59-4b64-a5f7-a6b20add1db7 .shop-product__add-to-cart {
	margin-bottom: 20px;
}

#cmp_ab159ab9-1e59-4b64-a5f7-a6b20add1db7 .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin-bottom: 40px;
}

#cmp_ab159ab9-1e59-4b64-a5f7-a6b20add1db7 .shop-product__review-share-desktop .col-xs-6 {
	padding-top: 10px;
}

#cmp_ab159ab9-1e59-4b64-a5f7-a6b20add1db7 .shop-product__review-share-desktop .col-xs-6 + .col-xs-6 {
	border-left: 1px solid #E1E1E1;
}

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

/*
 * components/signup-thankyou/cmp_11b9f0bf-fef8-453d-8066-dc8c0d0f83e8/component.css
 */
#cmp_11b9f0bf-fef8-453d-8066-dc8c0d0f83e8 {
	background-color: #FFFFFF;
}

#cmp_11b9f0bf-fef8-453d-8066-dc8c0d0f83e8 h1 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 36px;
}

#cmp_11b9f0bf-fef8-453d-8066-dc8c0d0f83e8 h2 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 24px;
}

#cmp_11b9f0bf-fef8-453d-8066-dc8c0d0f83e8 h3 {
	color: rgb(121, 173, 77);
	font-family: Roboto Slab;
	font-size: 16px;
}

#cmp_11b9f0bf-fef8-453d-8066-dc8c0d0f83e8 p {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_11b9f0bf-fef8-453d-8066-dc8c0d0f83e8 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_11b9f0bf-fef8-453d-8066-dc8c0d0f83e8 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_11b9f0bf-fef8-453d-8066-dc8c0d0f83e8 .btn {
	background-color: rgb(121, 173, 77);
	color: #FFFFFF;
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_11b9f0bf-fef8-453d-8066-dc8c0d0f83e8 .btn:hover {
	background-color: rgb(245, 123, 35);
	color: rgb(255, 255, 255);
}

#cmp_11b9f0bf-fef8-453d-8066-dc8c0d0f83e8 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_11b9f0bf-fef8-453d-8066-dc8c0d0f83e8 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

/*
 * components/signup-thankyou/cmp_b1633a38-245e-40d2-85ee-7ce1145e560d/component.css
 */
#cmp_b1633a38-245e-40d2-85ee-7ce1145e560d {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_b1633a38-245e-40d2-85ee-7ce1145e560d h1 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 36px;
}

#cmp_b1633a38-245e-40d2-85ee-7ce1145e560d h2 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 24px;
}

#cmp_b1633a38-245e-40d2-85ee-7ce1145e560d h3 {
	color: rgb(121, 173, 77);
	font-family: Roboto Slab;
	font-size: 16px;
}

#cmp_b1633a38-245e-40d2-85ee-7ce1145e560d p {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_b1633a38-245e-40d2-85ee-7ce1145e560d ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_b1633a38-245e-40d2-85ee-7ce1145e560d ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

/*
 * components/sold_out/cmp_1ca4092e-00ad-4c1f-977e-798a7b8ce8c8/component.css
 */
#cmp_1ca4092e-00ad-4c1f-977e-798a7b8ce8c8 {
	background-color: #FFFFFF;
}

#cmp_1ca4092e-00ad-4c1f-977e-798a7b8ce8c8 h1 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 36px;
}

#cmp_1ca4092e-00ad-4c1f-977e-798a7b8ce8c8 h2 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 24px;
}

#cmp_1ca4092e-00ad-4c1f-977e-798a7b8ce8c8 h3 {
	color: rgb(121, 173, 77);
	font-family: Roboto Slab;
	font-size: 16px;
}

#cmp_1ca4092e-00ad-4c1f-977e-798a7b8ce8c8 p {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_1ca4092e-00ad-4c1f-977e-798a7b8ce8c8 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_1ca4092e-00ad-4c1f-977e-798a7b8ce8c8 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_1ca4092e-00ad-4c1f-977e-798a7b8ce8c8 .btn {
	background-color: rgb(121, 173, 77);
	color: #FFFFFF;
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_1ca4092e-00ad-4c1f-977e-798a7b8ce8c8 .btn:hover {
	background-color: rgb(245, 123, 35);
	color: rgb(255, 255, 255);
}

#cmp_1ca4092e-00ad-4c1f-977e-798a7b8ce8c8 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_1ca4092e-00ad-4c1f-977e-798a7b8ce8c8 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_1ca4092e-00ad-4c1f-977e-798a7b8ce8c8  {
	padding-bottom: 50px;
}
/*
 * components/sold_out/cmp_251bf7ca-eb28-4ec5-ae5c-45c68175e747/component.css
 */
#cmp_251bf7ca-eb28-4ec5-ae5c-45c68175e747 img {
	max-width: 100%;
}

#cmp_251bf7ca-eb28-4ec5-ae5c-45c68175e747  {
	padding-top: 50px;
}
/*
 * components/subscribe/cmp_6e57eac5-71a3-4b0c-a8cb-3e382f877e92/component.css
 */

/*
 * components/subscribe/cmp_9ee837be-b73b-4fc1-b40a-ad414f417df6/component.css
 */
#cmp_9ee837be-b73b-4fc1-b40a-ad414f417df6 {
	background-color: #FFFFFF;
	padding-top: 20px;
	padding-bottom: 20px;
}

#cmp_9ee837be-b73b-4fc1-b40a-ad414f417df6 h1 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 36px;
}

#cmp_9ee837be-b73b-4fc1-b40a-ad414f417df6 h2 {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 24px;
}

#cmp_9ee837be-b73b-4fc1-b40a-ad414f417df6 h3 {
	color: rgb(121, 173, 77);
	font-family: Roboto Slab;
	font-size: 16px;
}

#cmp_9ee837be-b73b-4fc1-b40a-ad414f417df6 p {
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_9ee837be-b73b-4fc1-b40a-ad414f417df6 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

#cmp_9ee837be-b73b-4fc1-b40a-ad414f417df6 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(45, 45, 45);
	font-family: Roboto Slab;
	font-size: 14px;
}

/*
 * components/subscribe_flow/survey_step/cmp_c0362164-a549-457f-b0c8-9b2b76b3553d/component.css
 */
#cmp_c0362164-a549-457f-b0c8-9b2b76b3553d.survey h2 {
	margin-bottom: 0.5em;
}

#cmp_c0362164-a549-457f-b0c8-9b2b76b3553d.survey .radio input[type="radio"],
#cmp_c0362164-a549-457f-b0c8-9b2b76b3553d.survey .checkbox input[type="checkbox"] {
	margin-right: 0.5em;
}

#cmp_c0362164-a549-457f-b0c8-9b2b76b3553d.survey .survey-field {
	margin-bottom: 2em;
}

/*
 * components/subscribe_flow/survey_step/cmp_e02bda99-b593-48d3-a71d-330e85d11945/component.css
 */
#cmp_e02bda99-b593-48d3-a71d-330e85d11945 {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/terms_step/cmp_b346e28f-3a2c-43ab-b21a-545f88d8c15b/component.css
 */
#cmp_b346e28f-3a2c-43ab-b21a-545f88d8c15b {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/terms_step/cmp_f75e11c4-4308-4a6d-93d3-b590ac8a1b59/component.css
 */

/*
 * components/subscribe_flow/variant_step/cmp_3747202b-ee8b-4bce-925a-b81a2fb65a10/component.css
 */

/*
 * components/subscribe_flow/variant_step/cmp_6e390873-0bc1-4b34-a1f6-763ba8fb1eba/component.css
 */
#cmp_6e390873-0bc1-4b34-a1f6-763ba8fb1eba {
	padding: 50px 0 15px;
}