/*
 * css/style.css
 */
/* Globals
------------------------------*/
body {
	background-color: rgb(255, 255, 255);
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
	letter-spacing: 0.077em;
	line-height: 1.5em;
}

body > .container-fluid {
	background-color: #FFFFFF;
	max-width: 1140px;
}

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

h1 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 48px;
}

h2 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 22px;
}

h3 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 15px;
}

p {
	line-height: 1.5em;
}

a,
.btn-link {
	color: rgb(179, 31, 54);
}

a:hover,
a:focus,
a:active,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
	color: rgb(20, 29, 69);
}

/* 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(179, 31, 54);
}

.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: 25px;
	border: none;
	padding: 1.2em 5em;
	letter-spacing: 2px;
	font-size: 12px;
}

.btn-small {
	padding: 0.6em 1.8em;
	border: 1px solid rgb(179, 31, 54);
	border-radius: 15px;
	color: rgb(179, 31, 54);
}

.btn-small:hover,
.btn-small:focus,
.btn-small:active,
.btn-small:active:focus {
	background-color: rgb(20, 29, 69);
	border: 1px solid rgb(20, 29, 69);
	color: rgb(179, 31, 54) !important;
}

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

.btn-primary {
	background-color: rgb(179, 31, 54);
	color: #FFFFFF;
	font-family: Oswald;
	font-size: 12px;
	letter-spacing: 0.167em;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus {
	background-color: rgb(20, 29, 69);
	color: #FFFFFF;
}

.btn-secondary {
	background-color: rgb(20, 29, 69);
	color: rgb(255, 255, 255);
	font-family: Lato;
	font-size: 12px;
	letter-spacing: 0.167em;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:active:focus {
	background-color: rgb(154, 36, 55);
	color: #FAFAFA;
}

.btn-empty {
	background-color: transparent;
	color: rgb(179, 31, 54);
	border: 1px solid rgb(179, 31, 54);
}

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

/* 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(20, 29, 69);
}
.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(179, 31, 54);
	border: none;
	border-radius: 25px;
	color: #FFFFFF;
	font-family: Oswald;
	font-size: 12px;
	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(20, 29, 69);
	color: #FFFFFF;
}

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

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

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

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

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

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

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

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

.address-container {
	width: 100%;
}

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

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

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

.address-container {
	width: 100%;
}

.errors {
	margin: 25px 0;
}

.cratejoy-loading-icon {
	color: rgb(179, 31, 54);
}

.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(179, 31, 54);
	color: rgb(179, 31, 54);
	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(20, 29, 69);
	border-color: rgb(20, 29, 69);
	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;
	}
}

/*
 * components/about/cmp_318bb304-2b41-41fe-96df-f94204e6e707/component.css
 */
#cmp_318bb304-2b41-41fe-96df-f94204e6e707 {
	background-color: #FFFFFF;
}

#cmp_318bb304-2b41-41fe-96df-f94204e6e707 h1 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_318bb304-2b41-41fe-96df-f94204e6e707 h2 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 22px;
}

#cmp_318bb304-2b41-41fe-96df-f94204e6e707 h3 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 15px;
}

#cmp_318bb304-2b41-41fe-96df-f94204e6e707 p {
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

#cmp_318bb304-2b41-41fe-96df-f94204e6e707 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_318bb304-2b41-41fe-96df-f94204e6e707 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_318bb304-2b41-41fe-96df-f94204e6e707 .btn {
	background-color: rgb(179, 31, 54);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 12px;
}

#cmp_318bb304-2b41-41fe-96df-f94204e6e707 .btn:hover {
	background-color: rgb(255, 255, 255);
	color: #FFFFFF;
}

#cmp_318bb304-2b41-41fe-96df-f94204e6e707 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

#cmp_318bb304-2b41-41fe-96df-f94204e6e707 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

#cmp_318bb304-2b41-41fe-96df-f94204e6e707  {
	padding-bottom: 60px;
}
#cmp_318bb304-2b41-41fe-96df-f94204e6e707 h3 {
	margin-bottom: 40px;
}
/*
 * components/about/cmp_446d7304-6e57-4326-859f-a33fc6603397/component.css
 */
#cmp_446d7304-6e57-4326-859f-a33fc6603397 img {
	max-width: 100%;
}

/*
 * components/about/cmp_6aadb04b-a31c-4338-98f7-6fda505c126e/component.css
 */
#cmp_6aadb04b-a31c-4338-98f7-6fda505c126e {
	background-color: #FFFFFF;
}

#cmp_6aadb04b-a31c-4338-98f7-6fda505c126e h1 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_6aadb04b-a31c-4338-98f7-6fda505c126e h2 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 22px;
}

#cmp_6aadb04b-a31c-4338-98f7-6fda505c126e h3 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 15px;
}

#cmp_6aadb04b-a31c-4338-98f7-6fda505c126e p {
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

#cmp_6aadb04b-a31c-4338-98f7-6fda505c126e ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

#cmp_6aadb04b-a31c-4338-98f7-6fda505c126e ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

#cmp_6aadb04b-a31c-4338-98f7-6fda505c126e  {
	padding-top: 60px;
}
#cmp_6aadb04b-a31c-4338-98f7-6fda505c126e h1 {
	margin-bottom: 15px;
}
/*
 * components/checkout/cmp_4113e1f7-f04f-4ff8-b6c6-4fc90b67692c/component.css
 */
#cmp_4113e1f7-f04f-4ff8-b6c6-4fc90b67692c {
	background-color: #FFFFFF;
}

#cmp_4113e1f7-f04f-4ff8-b6c6-4fc90b67692c h1 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_4113e1f7-f04f-4ff8-b6c6-4fc90b67692c h2 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 22px;
}

#cmp_4113e1f7-f04f-4ff8-b6c6-4fc90b67692c h3 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 15px;
}

#cmp_4113e1f7-f04f-4ff8-b6c6-4fc90b67692c p {
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

#cmp_4113e1f7-f04f-4ff8-b6c6-4fc90b67692c ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

#cmp_4113e1f7-f04f-4ff8-b6c6-4fc90b67692c ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/checkout/cmp_9de27ed4-cf44-4bb7-8add-77a9e9889306/component.css
 */
#cmp_9de27ed4-cf44-4bb7-8add-77a9e9889306 .checkout_content {
  overflow: auto;
}

#cmp_9de27ed4-cf44-4bb7-8add-77a9e9889306 .checkout_content section {
  border-color: #F5F5F5;
}

#cmp_9de27ed4-cf44-4bb7-8add-77a9e9889306 .cart_listing table {
  border-color: #F5F5F5;
}

/*
 * components/customer/account/cmp_8b9cc2fa-abd6-4bba-8b11-c110174770a6/component.css
 */

/*
 * components/customer/edit/cmp_b9c86f53-6a5c-420e-aa3d-5a38c26ee52c/component.css
 */

/*
 * components/customer/forgot_password/cmp_083eff12-f84a-491a-9bce-a303ff2a24ab/component.css
 */

#cmp_083eff12-f84a-491a-9bce-a303ff2a24ab  {
	padding-bottom: 120px;
}
/*
 * components/customer/forgot_password/cmp_2a000673-baf0-4d6f-a903-5e11ab46823d/component.css
 */
#cmp_2a000673-baf0-4d6f-a903-5e11ab46823d {
	background-color: #FFFFFF;
}

#cmp_2a000673-baf0-4d6f-a903-5e11ab46823d h1 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_2a000673-baf0-4d6f-a903-5e11ab46823d h2 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 22px;
}

#cmp_2a000673-baf0-4d6f-a903-5e11ab46823d h3 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 15px;
}

#cmp_2a000673-baf0-4d6f-a903-5e11ab46823d p {
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

#cmp_2a000673-baf0-4d6f-a903-5e11ab46823d ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

#cmp_2a000673-baf0-4d6f-a903-5e11ab46823d ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

#cmp_2a000673-baf0-4d6f-a903-5e11ab46823d  {
	padding: 50px 0;
}
#cmp_2a000673-baf0-4d6f-a903-5e11ab46823d h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/login/cmp_427d9c1d-93b2-4684-a882-d770a1723111/component.css
 */

#cmp_427d9c1d-93b2-4684-a882-d770a1723111  {
	padding-bottom: 120px;
}
/*
 * components/customer/login/cmp_bdf1d327-b699-4e87-b1c8-f17aa8f627dd/component.css
 */
#cmp_bdf1d327-b699-4e87-b1c8-f17aa8f627dd {
	background-color: #FFFFFF;
}

#cmp_bdf1d327-b699-4e87-b1c8-f17aa8f627dd h1 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_bdf1d327-b699-4e87-b1c8-f17aa8f627dd h2 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 22px;
}

#cmp_bdf1d327-b699-4e87-b1c8-f17aa8f627dd h3 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 15px;
}

#cmp_bdf1d327-b699-4e87-b1c8-f17aa8f627dd p {
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

#cmp_bdf1d327-b699-4e87-b1c8-f17aa8f627dd ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

#cmp_bdf1d327-b699-4e87-b1c8-f17aa8f627dd ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

#cmp_bdf1d327-b699-4e87-b1c8-f17aa8f627dd  {
	padding: 50px 0;
}
#cmp_bdf1d327-b699-4e87-b1c8-f17aa8f627dd h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/order/cmp_5407645c-411b-4c8d-81df-e14ecc94d6c9/component.css
 */

/*
 * components/customer/orders/cmp_f98fc4ee-3777-48aa-bb72-b8419c8c7b50/component.css
 */

/*
 * components/customer/password_reset/cmp_4825d713-95e8-4a45-bc91-117457886bcc/component.css
 */

#cmp_4825d713-95e8-4a45-bc91-117457886bcc  {
	padding-bottom: 120px;
}
/*
 * components/customer/password_reset/cmp_9c72e8a4-b114-467b-80aa-aebf942e01b6/component.css
 */
#cmp_9c72e8a4-b114-467b-80aa-aebf942e01b6 {
	background-color: #FFFFFF;
}

#cmp_9c72e8a4-b114-467b-80aa-aebf942e01b6 h1 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_9c72e8a4-b114-467b-80aa-aebf942e01b6 h2 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 22px;
}

#cmp_9c72e8a4-b114-467b-80aa-aebf942e01b6 h3 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 15px;
}

#cmp_9c72e8a4-b114-467b-80aa-aebf942e01b6 p {
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

#cmp_9c72e8a4-b114-467b-80aa-aebf942e01b6 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

#cmp_9c72e8a4-b114-467b-80aa-aebf942e01b6 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

#cmp_9c72e8a4-b114-467b-80aa-aebf942e01b6  {
	padding: 50px 0;
}
#cmp_9c72e8a4-b114-467b-80aa-aebf942e01b6 h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/thank_you/cmp_36b75605-2976-42f5-a3b3-15a53ae4ecc8/component.css
 */

/*
 * components/global/cmp_2b776e25-9026-4d62-ace9-1f0658246411/component.css
 */
#cmp_2b776e25-9026-4d62-ace9-1f0658246411.navbar {
	background-color: rgb(255, 255, 255);
	border-radius: 0;
	border-top: 4px solid rgb(179, 31, 54);
	padding: 0;

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

#cmp_2b776e25-9026-4d62-ace9-1f0658246411.navbar a:hover,
#cmp_2b776e25-9026-4d62-ace9-1f0658246411.navbar a:focus,
#cmp_2b776e25-9026-4d62-ace9-1f0658246411.navbar a:active {
	color: rgb(20, 29, 69);
}

#cmp_2b776e25-9026-4d62-ace9-1f0658246411 .navbar-brand {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;

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

	-webkit-flex-grow: 1;
	-moz-flex-grow: 1;
	-ms-flex-grow: 1;
	flex-grow: 1;

	-webkit-flex-shrink: 0;
	-moz-flex-shrink: 0;
	-ms-flex-shrink: 0;
	flex-shrink: 0;

	max-width: 100%;
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 28px;
	margin: 0;
	padding: 15px;
	text-align: center;
}

#cmp_2b776e25-9026-4d62-ace9-1f0658246411 .navbar-brand img {
	max-width: 100%;
}

#cmp_2b776e25-9026-4d62-ace9-1f0658246411.navbar .navbar-toggler {
	background-color: rgb(179, 31, 54);
	border-radius: 0;
	color: #FFFFFF;
	font-size: 12px;
	letter-spacing: 0.167em;
	padding: 15px;
	text-transform: uppercase;
}

#cmp_2b776e25-9026-4d62-ace9-1f0658246411.navbar .navbar-toggler:hover,
#cmp_2b776e25-9026-4d62-ace9-1f0658246411.navbar .navbar-toggler:focus,
#cmp_2b776e25-9026-4d62-ace9-1f0658246411.navbar .navbar-toggler:active {
	background-color: rgb(20, 29, 69);
	color: #FFFFFF;
}

#cmp_2b776e25-9026-4d62-ace9-1f0658246411 .navbar-nav {
	align-items: center;
	display: flex;
	flex-direction: column;
	margin: 0;
	padding-top: 15px;
	padding-bottom: 15px;
}

#cmp_2b776e25-9026-4d62-ace9-1f0658246411 .navbar-nav li {
	padding-top: 10px;
	padding-bottom: 10px;
}

#cmp_2b776e25-9026-4d62-ace9-1f0658246411 .navbar-nav .nav-link {
	color: rgb(154, 36, 55);
	font-family: Lato;
	font-size: 14px;;
	letter-spacing: 1px;
	padding: 8px 18px;
	text-align: center;
	text-transform: uppercase;
}

@media (min-width: 768px) {
	#cmp_2b776e25-9026-4d62-ace9-1f0658246411.navbar {
		-webkit-align-items: center;
		-moz-align-items: center;
		-ms-align-items: center;
		align-items: center;

		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;

		padding: 15px;
		padding-bottom: 0;
	}
	#cmp_2b776e25-9026-4d62-ace9-1f0658246411 .navbar-brand {
		padding: 0;
		padding-bottom: 15px;
	}
	#cmp_2b776e25-9026-4d62-ace9-1f0658246411 .navbar-toggleable-sm {
		-webkit-flex-shrink: 0;
		-moz-flex-shrink: 0;
		-ms-flex-shrink: 0;
		flex-shrink: 0;

		-webkit-flex-grow: 2;
		-moz-flex-grow: 2;
		-ms-flex-grow: 2;
		flex-grow: 2;

	}
	#cmp_2b776e25-9026-4d62-ace9-1f0658246411 .navbar-nav {
		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;

		-webkit-justify-content: space-around;
		-moz-justify-content: space-around;
		-ms-justify-content: space-around;
		justify-content: space-around;

		padding: 0;
		padding-bottom: 15px;
	}
	#cmp_2b776e25-9026-4d62-ace9-1f0658246411 .navbar-nav li {
		padding: 0;
	}
}

/*
 * components/global/cmp_4163dbbf-0dee-41e4-acbc-bb98efd60864/component.css
 */
#cmp_4163dbbf-0dee-41e4-acbc-bb98efd60864.footer {
	background-color: rgb(255, 255, 255);
	font-family: Lato;
	color: rgb(27, 21, 85);
	padding-top: 10px;
	padding-bottom: 10px;

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

#cmp_4163dbbf-0dee-41e4-acbc-bb98efd60864 .footer-social {
	padding-top: 15px;
	padding-bottom: 15px;
	text-align: center;
}

#cmp_4163dbbf-0dee-41e4-acbc-bb98efd60864 .footer-social a {
	display: inline-block;
	padding-left: 5px;
	padding-right: 5px;
}

#cmp_4163dbbf-0dee-41e4-acbc-bb98efd60864 .footer-social svg path {
	fill: rgb(179, 31, 54);
}

#cmp_4163dbbf-0dee-41e4-acbc-bb98efd60864 .footer-social a:hover svg path,
#cmp_4163dbbf-0dee-41e4-acbc-bb98efd60864 .footer-social a:focus svg path,
#cmp_4163dbbf-0dee-41e4-acbc-bb98efd60864 .footer-social a:active svg path {
	fill: rgb(20, 29, 69);
}

#cmp_4163dbbf-0dee-41e4-acbc-bb98efd60864.footer .toggler-container {
	padding-top: 15px;
	padding-bottom: 15px;
	text-align: center;
}

#cmp_4163dbbf-0dee-41e4-acbc-bb98efd60864.footer .navbar-toggler {
	color: rgb(179, 31, 54);
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

#cmp_4163dbbf-0dee-41e4-acbc-bb98efd60864 .footer-cc {
	border-top: 1px solid #e1e1e1;
	letter-spacing: 1px;
	text-align: center;
}

#cmp_4163dbbf-0dee-41e4-acbc-bb98efd60864 .footer-cc img {
	padding-top: 15px;
	padding-bottom: 15px;
}

#cmp_4163dbbf-0dee-41e4-acbc-bb98efd60864 .footer-cc p,
#cmp_4163dbbf-0dee-41e4-acbc-bb98efd60864 .footer-tributes p {
	padding-top: 15px;
	padding-bottom: 15px;
	margin: 0;
}

#cmp_4163dbbf-0dee-41e4-acbc-bb98efd60864 .footer-tributes p a {
	color: rgb(27, 21, 85);
	padding: 0;
}

#cmp_4163dbbf-0dee-41e4-acbc-bb98efd60864 .footer-tributes p a:hover,
#cmp_4163dbbf-0dee-41e4-acbc-bb98efd60864 .footer-tributes p a:focus,
#cmp_4163dbbf-0dee-41e4-acbc-bb98efd60864 .footer-tributes p a:active {
	color: rgb(27, 21, 85);
	text-decoration: none;
}

#cmp_4163dbbf-0dee-41e4-acbc-bb98efd60864 .footer-directory {
	text-align: center;
}

#cmp_4163dbbf-0dee-41e4-acbc-bb98efd60864 .footer-list {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

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

#cmp_4163dbbf-0dee-41e4-acbc-bb98efd60864 .footer-list .footer-item {
	-webkit-flex: 0 0 50%;
	-moz-flex: 0 0 50%;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;

	padding: 8px 18px;
	position: relative;
}

#cmp_4163dbbf-0dee-41e4-acbc-bb98efd60864 .footer-list .footer-link {
	color: rgb(179, 31, 54);
	font-family: Lato;
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

#cmp_4163dbbf-0dee-41e4-acbc-bb98efd60864 .footer-list .footer-link:hover,
#cmp_4163dbbf-0dee-41e4-acbc-bb98efd60864 .footer-list .footer-link:focus,
#cmp_4163dbbf-0dee-41e4-acbc-bb98efd60864 .footer-list .footer-link:active {
	color: rgb(20, 29, 69);
	text-decoration: none;
}

@media (max-width: 767px) {
	#cmp_4163dbbf-0dee-41e4-acbc-bb98efd60864 .col-sm-12,
	#cmp_4163dbbf-0dee-41e4-acbc-bb98efd60864 .col-xs-12 {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 auto;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
	}
}

@media (min-width: 768px) {
	#cmp_4163dbbf-0dee-41e4-acbc-bb98efd60864.footer {
		-webkit-align-items: flex-start;
		-moz-align-items: flex-start;
		-ms-align-items: flex-start;
		align-items: flex-start;

		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;

		padding-top: 25px;
		padding-bottom: 25px;
	}
	#cmp_4163dbbf-0dee-41e4-acbc-bb98efd60864 .footer-directory {
		-webkit-order: 1;
		-moz-order: 1;
		-ms-order: 1;
		order: 1;

		text-align: left;
	}
	#cmp_4163dbbf-0dee-41e4-acbc-bb98efd60864 .footer-social {
		-webkit-order: 2;
		-moz-order: 2;
		-ms-order: 2;
		order: 2;

		padding-top: 0;
		padding-bottom: 0;
		text-align: right;
	}
	#cmp_4163dbbf-0dee-41e4-acbc-bb98efd60864 .footer-cc {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}
	#cmp_4163dbbf-0dee-41e4-acbc-bb98efd60864 .footer-cc p {
		display: inline-block;
	}
}

@media (min-width: 992px) {
	#cmp_4163dbbf-0dee-41e4-acbc-bb98efd60864 .footer-cc {
		-webkit-order: 2;
		-moz-order: 2;
		-ms-order: 2;
		order: 2;

		border-top: none;
	}
	#cmp_4163dbbf-0dee-41e4-acbc-bb98efd60864 .footer-cc p {
		display: block;
	}
	#cmp_4163dbbf-0dee-41e4-acbc-bb98efd60864 .footer-social {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}
}

/*
 * components/global/cmp_ac63094c-be61-452a-85de-ae2ecc1ee48a/component.css
 */
#cmp_ac63094c-be61-452a-85de-ae2ecc1ee48a {
	background-color: #FFFFFF;
}

#cmp_ac63094c-be61-452a-85de-ae2ecc1ee48a h1 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_ac63094c-be61-452a-85de-ae2ecc1ee48a h2 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 22px;
}

#cmp_ac63094c-be61-452a-85de-ae2ecc1ee48a h3 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 15px;
}

#cmp_ac63094c-be61-452a-85de-ae2ecc1ee48a p {
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

#cmp_ac63094c-be61-452a-85de-ae2ecc1ee48a .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_ac63094c-be61-452a-85de-ae2ecc1ee48a .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_ac63094c-be61-452a-85de-ae2ecc1ee48a .btn {
	background-color: rgb(179, 31, 54);
	color: rgb(241, 236, 157);
	font-family: Lato;
	font-size: 12px;
}

#cmp_ac63094c-be61-452a-85de-ae2ecc1ee48a .btn:hover {
	background-color: rgb(255, 255, 255);
	color: #FFFFFF;
}

#cmp_ac63094c-be61-452a-85de-ae2ecc1ee48a ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

#cmp_ac63094c-be61-452a-85de-ae2ecc1ee48a ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/index/cmp_624ea703-e4bd-424a-b98a-d57a7d5778f8/component.css
 */
#cmp_624ea703-e4bd-424a-b98a-d57a7d5778f8 {
	padding: 0;
	background-color: #FFFFFF;
}

#cmp_624ea703-e4bd-424a-b98a-d57a7d5778f8 .content {
	margin: 0 auto;
	padding: 50px;
}

@media (min-width: 768px) {
	#cmp_624ea703-e4bd-424a-b98a-d57a7d5778f8 .col-md-4:nth-of-type(2n + 1) {
		order: 1;
	}
	#cmp_624ea703-e4bd-424a-b98a-d57a7d5778f8 .col-md-4:nth-of-type(2n) {
		order: 2;
	}
}

#cmp_624ea703-e4bd-424a-b98a-d57a7d5778f8 h1 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_624ea703-e4bd-424a-b98a-d57a7d5778f8 h2 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 22px;
}

#cmp_624ea703-e4bd-424a-b98a-d57a7d5778f8 h3 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 15px;
}

#cmp_624ea703-e4bd-424a-b98a-d57a7d5778f8 p {
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

#cmp_624ea703-e4bd-424a-b98a-d57a7d5778f8 h3 {
	margin-bottom: 25px;
}
/*
 * components/index/cmp_def415b0-48f3-439c-9ab3-c0d88b3f5205/component.css
 */
#cmp_def415b0-48f3-439c-9ab3-c0d88b3f5205 {
	background-color: #FFFFFF;
}

#cmp_def415b0-48f3-439c-9ab3-c0d88b3f5205 h1 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_def415b0-48f3-439c-9ab3-c0d88b3f5205 h2 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 22px;
}

#cmp_def415b0-48f3-439c-9ab3-c0d88b3f5205 h3 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 15px;
}

#cmp_def415b0-48f3-439c-9ab3-c0d88b3f5205 p {
	color: rgb(179, 31, 54);
	font-family: Lato;
	font-size: 16px;
}

#cmp_def415b0-48f3-439c-9ab3-c0d88b3f5205 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(179, 31, 54);
	font-family: Lato;
	font-size: 16px;
}

#cmp_def415b0-48f3-439c-9ab3-c0d88b3f5205 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(179, 31, 54);
	font-family: Lato;
	font-size: 16px;
}

#cmp_def415b0-48f3-439c-9ab3-c0d88b3f5205  {
	padding: 60px 0;
}
#cmp_def415b0-48f3-439c-9ab3-c0d88b3f5205 h1 {
	margin-bottom: 40px;
}
#cmp_def415b0-48f3-439c-9ab3-c0d88b3f5205 h3 {
	margin-bottom: 15px;
}
#cmp_def415b0-48f3-439c-9ab3-c0d88b3f5205 p {
	border-bottom: 1px solid #E1E1E1;
	margin-bottom: 25px;
	padding-bottom: 25px;
}
#cmp_def415b0-48f3-439c-9ab3-c0d88b3f5205 p:last-of-type {
	border-bottom: none;
	padding-bottom: 0;
}
/*
 * components/index/cmp_f2f7b7a1-2a9b-49af-85f6-324d31065470/component.css
 */
#cmp_f2f7b7a1-2a9b-49af-85f6-324d31065470 {
	padding: 0;
}

#cmp_f2f7b7a1-2a9b-49af-85f6-324d31065470 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_f2f7b7a1-2a9b-49af-85f6-324d31065470 .hero-content h1 {
	color: rgb(179, 31, 54);
	font-family: Oswald;
	font-size: 45px;
}

#cmp_f2f7b7a1-2a9b-49af-85f6-324d31065470 .hero-content h2 {
	color: #FFFFFF;
	font-family: Oswald;
	font-size: 22px;
}

#cmp_f2f7b7a1-2a9b-49af-85f6-324d31065470 .hero-content h3 {
	color: #FFFFFF;
	font-family: Oswald;
	font-size: 15px;
}

#cmp_f2f7b7a1-2a9b-49af-85f6-324d31065470 .hero-content p {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 16px;
}

#cmp_f2f7b7a1-2a9b-49af-85f6-324d31065470 .hero-content .btn {
	background-color: rgb(179, 31, 54);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 12px;
}

#cmp_f2f7b7a1-2a9b-49af-85f6-324d31065470 .hero-content .btn:hover {
	background-color: rgb(20, 29, 69);
	color: #FFFFFF;
}

#cmp_f2f7b7a1-2a9b-49af-85f6-324d31065470 h1 {
	margin-top: 20px;
	margin-bottom: 10px;
}
#cmp_f2f7b7a1-2a9b-49af-85f6-324d31065470 p {
	margin-bottom: 25px;
}
/*
 * components/shop/listing/cmp_11348cc2-8ae5-4466-aa76-7f3471fcc3c9/component.css
 */
#cmp_11348cc2-8ae5-4466-aa76-7f3471fcc3c9 {
	justify-content: center;
}

#cmp_11348cc2-8ae5-4466-aa76-7f3471fcc3c9 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

#cmp_11348cc2-8ae5-4466-aa76-7f3471fcc3c9  {
	border-bottom: 1px solid #E1E1E1;
	margin-bottom: 35px;
	padding-bottom: 35px;
}
/*
 * components/shop/listing/cmp_78de30fd-4c4a-42b9-bcb2-6dc6e402b8d1/component.css
 */
#cmp_78de30fd-4c4a-42b9-bcb2-6dc6e402b8d1 {
	justify-content: center;
}

#cmp_78de30fd-4c4a-42b9-bcb2-6dc6e402b8d1 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_81adaab1-c944-4008-8a27-be5a8edd863b/component.css
 */
#cmp_81adaab1-c944-4008-8a27-be5a8edd863b {
	background-color: #FFFFFF;
}

#cmp_81adaab1-c944-4008-8a27-be5a8edd863b h1 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_81adaab1-c944-4008-8a27-be5a8edd863b h2 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 22px;
}

#cmp_81adaab1-c944-4008-8a27-be5a8edd863b h3 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 15px;
}

#cmp_81adaab1-c944-4008-8a27-be5a8edd863b p {
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

#cmp_81adaab1-c944-4008-8a27-be5a8edd863b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

#cmp_81adaab1-c944-4008-8a27-be5a8edd863b ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

#cmp_81adaab1-c944-4008-8a27-be5a8edd863b  {
	padding: 50px 0 15px;
}
#cmp_81adaab1-c944-4008-8a27-be5a8edd863b h1 {
	margin-bottom: 15px;
}
/*
 * components/shop/listing/cmp_85a62d7b-6031-4ea1-87cf-5b12359682c3/component.css
 */
#cmp_85a62d7b-6031-4ea1-87cf-5b12359682c3 .shop-listing-item {
	color: rgb(27, 21, 85);
}

#cmp_85a62d7b-6031-4ea1-87cf-5b12359682c3 .shop-listing-item:hover,
#cmp_85a62d7b-6031-4ea1-87cf-5b12359682c3 .shop-listing-item:focus {
	text-decoration: none;
}

#cmp_85a62d7b-6031-4ea1-87cf-5b12359682c3 .shop-listing-item__image {
	background-size: cover;
	background-position: center center;
}

#cmp_85a62d7b-6031-4ea1-87cf-5b12359682c3 .shop-listing-item__name {
	margin: 10px 0;
}

#cmp_85a62d7b-6031-4ea1-87cf-5b12359682c3 .shop-listing-item__price {
	margin: 10px 0 30px;
}

#cmp_85a62d7b-6031-4ea1-87cf-5b12359682c3 .product_paging {
	-webkit-display: flex;
	-ms-display: flex;
	display: flex;
	justify-content: center;

	margin: 20px 0;
}

#cmp_85a62d7b-6031-4ea1-87cf-5b12359682c3 .product_page a,
#cmp_85a62d7b-6031-4ea1-87cf-5b12359682c3 .next_page a,
#cmp_85a62d7b-6031-4ea1-87cf-5b12359682c3 .prev_page a {
	display: block;
	padding: 12px 15px;
	margin: 0 2px;
	border: 1px solid #E0E0E0;
	border-radius: 5px;
}

#cmp_85a62d7b-6031-4ea1-87cf-5b12359682c3 .product_page.active a,
#cmp_85a62d7b-6031-4ea1-87cf-5b12359682c3 .product_page a:hover,
#cmp_85a62d7b-6031-4ea1-87cf-5b12359682c3 .product_page a:focus,
#cmp_85a62d7b-6031-4ea1-87cf-5b12359682c3 .next_page a:hover,
#cmp_85a62d7b-6031-4ea1-87cf-5b12359682c3 .next_page a:focus,
#cmp_85a62d7b-6031-4ea1-87cf-5b12359682c3 .prev_page a:hover,
#cmp_85a62d7b-6031-4ea1-87cf-5b12359682c3 .prev_page a:focus {
	text-decoration: none;
	background-color: #F9F9F9;
}

#cmp_85a62d7b-6031-4ea1-87cf-5b12359682c3 .product_page.active a {
	color: black;
}

/*
 * components/shop/product/cmp_287a2848-8e4a-4899-96cb-276c5f0abe57/component.css
 */
#cmp_287a2848-8e4a-4899-96cb-276c5f0abe57.shop-product-header {
	padding: 50px 0 15px;
}

/*
 * components/shop/product/cmp_660171f0-bd10-4b7b-af05-b875a566179e/component.css
 */
#cmp_660171f0-bd10-4b7b-af05-b875a566179e .shop-product__name {
	margin-bottom: 10px;
}

#cmp_660171f0-bd10-4b7b-af05-b875a566179e .shop-product__price {
	margin-bottom: 20px;
}

#cmp_660171f0-bd10-4b7b-af05-b875a566179e .shop-product select {
	width: auto;
}

#cmp_660171f0-bd10-4b7b-af05-b875a566179e .shop-product__add-to-cart {
	margin-bottom: 20px;
}

#cmp_660171f0-bd10-4b7b-af05-b875a566179e .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin-bottom: 40px;
}

#cmp_660171f0-bd10-4b7b-af05-b875a566179e .shop-product__review-share-desktop .col-xs-6 {
	padding-top: 10px;
}

#cmp_660171f0-bd10-4b7b-af05-b875a566179e .shop-product__review-share-desktop .col-xs-6 + .col-xs-6 {
	border-left: 1px solid #E1E1E1;
}

#cmp_660171f0-bd10-4b7b-af05-b875a566179e .shop-product__social-share-buttons {
	-webkit-display: flex;
	-ms-display: flex;
	display: flex;
	justify-content: start;
}

#cmp_660171f0-bd10-4b7b-af05-b875a566179e .shop-product__social-share-buttons > * {
	margin-right: 8px;
}

/*
 * components/sold_out/cmp_33dae6f9-048b-49d3-a2d8-3bc5099f13aa/component.css
 */
#cmp_33dae6f9-048b-49d3-a2d8-3bc5099f13aa img {
	max-width: 100%;
}

#cmp_33dae6f9-048b-49d3-a2d8-3bc5099f13aa  {
	padding-top: 50px;
}
/*
 * components/sold_out/cmp_daafd9a3-a6dc-495a-b4d7-66af8c115999/component.css
 */
#cmp_daafd9a3-a6dc-495a-b4d7-66af8c115999 {
	background-color: #FFFFFF;
}

#cmp_daafd9a3-a6dc-495a-b4d7-66af8c115999 h1 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_daafd9a3-a6dc-495a-b4d7-66af8c115999 h2 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 22px;
}

#cmp_daafd9a3-a6dc-495a-b4d7-66af8c115999 h3 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 15px;
}

#cmp_daafd9a3-a6dc-495a-b4d7-66af8c115999 p {
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

#cmp_daafd9a3-a6dc-495a-b4d7-66af8c115999 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_daafd9a3-a6dc-495a-b4d7-66af8c115999 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_daafd9a3-a6dc-495a-b4d7-66af8c115999 .btn {
	background-color: rgb(179, 31, 54);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 12px;
}

#cmp_daafd9a3-a6dc-495a-b4d7-66af8c115999 .btn:hover {
	background-color: rgb(255, 255, 255);
	color: #FFFFFF;
}

#cmp_daafd9a3-a6dc-495a-b4d7-66af8c115999 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

#cmp_daafd9a3-a6dc-495a-b4d7-66af8c115999 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

#cmp_daafd9a3-a6dc-495a-b4d7-66af8c115999  {
	padding-bottom: 50px;
}
/*
 * components/subscribe/cmp_61db52ff-28cd-4423-9e8b-2572df9fda3d/component.css
 */
#cmp_61db52ff-28cd-4423-9e8b-2572df9fda3d {
	background-color: #FFFFFF;
}

#cmp_61db52ff-28cd-4423-9e8b-2572df9fda3d h1 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_61db52ff-28cd-4423-9e8b-2572df9fda3d h2 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 22px;
}

#cmp_61db52ff-28cd-4423-9e8b-2572df9fda3d h3 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 15px;
}

#cmp_61db52ff-28cd-4423-9e8b-2572df9fda3d p {
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

#cmp_61db52ff-28cd-4423-9e8b-2572df9fda3d ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

#cmp_61db52ff-28cd-4423-9e8b-2572df9fda3d ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/subscribe/cmp_b99c36d7-abb3-4a35-8eaa-4250678877a0/component.css
 */

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

	max-width: 940px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

	margin-bottom: 15px;
}

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

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

	font-family: ;
	font-size: 12px;

	color: #FFFFFF;
	background-color: rgb(179, 31, 54);
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-btn-cart:hover {
	color: #FFFFFF;
	background-color: rgb(20, 29, 69);
}

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

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

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

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

	margin-bottom: 2px;
}

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

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

	text-align: center;
}


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

	color: #FFFFFF;
	background-color: rgb(179, 31, 54);
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-continue-btn:hover {
	color: #FFFFFF;
	background-color: rgb(20, 29, 69);
}

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

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

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

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

/*
 * components/subscribe_flow/survey_step/cmp_b2e9baf9-2829-42c7-95d1-0c5844ad570b/component.css
 */
#cmp_b2e9baf9-2829-42c7-95d1-0c5844ad570b.survey h2 {
	margin-bottom: 1em;
}

#cmp_b2e9baf9-2829-42c7-95d1-0c5844ad570b.survey .radio input[type="radio"],
#cmp_b2e9baf9-2829-42c7-95d1-0c5844ad570b.survey .checkbox input[type="checkbox"] {
	margin-right: 0.5em;
}

/*
 * components/subscribe_flow/survey_step/cmp_c28ce654-3843-44f2-a57e-5f5ef290ab51/component.css
 */
#cmp_c28ce654-3843-44f2-a57e-5f5ef290ab51 {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/terms_step/cmp_a5589646-ff64-49ff-8510-acd2016f7242/component.css
 */

/*
 * components/subscribe_flow/terms_step/cmp_d8427490-0385-4cc9-b3ff-8bd38f7ebb80/component.css
 */
#cmp_d8427490-0385-4cc9-b3ff-8bd38f7ebb80 {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/variant_step/cmp_35bd554e-3159-4a2f-a94f-31fc3148be2f/component.css
 */

/*
 * components/subscribe_flow/variant_step/cmp_8db3aa23-b470-456f-9bfe-2731f96eb05c/component.css
 */
#cmp_8db3aa23-b470-456f-9bfe-2731f96eb05c {
	padding: 50px 0 15px;
}

/*
 * components/testimonials/cmp_39e7b01e-81c1-48f2-8526-80a18aad7552/component.css
 */
#cmp_39e7b01e-81c1-48f2-8526-80a18aad7552 {
	background-color: #FFFFFF;
}

#cmp_39e7b01e-81c1-48f2-8526-80a18aad7552 h1 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_39e7b01e-81c1-48f2-8526-80a18aad7552 h2 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 22px;
}

#cmp_39e7b01e-81c1-48f2-8526-80a18aad7552 h3 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 15px;
}

#cmp_39e7b01e-81c1-48f2-8526-80a18aad7552 p {
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

#cmp_39e7b01e-81c1-48f2-8526-80a18aad7552 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_39e7b01e-81c1-48f2-8526-80a18aad7552 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_39e7b01e-81c1-48f2-8526-80a18aad7552 .btn {
	background-color: rgb(179, 31, 54);
	color: #FFFFFF;
	font-family: Lato;
	font-size: 12px;
}

#cmp_39e7b01e-81c1-48f2-8526-80a18aad7552 .btn:hover {
	background-color: rgb(255, 255, 255);
	color: #FFFFFF;
}

#cmp_39e7b01e-81c1-48f2-8526-80a18aad7552 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

#cmp_39e7b01e-81c1-48f2-8526-80a18aad7552 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/testimonials/cmp_7bfa615b-f864-4a18-b622-df021f94ca0f/component.css
 */
#cmp_7bfa615b-f864-4a18-b622-df021f94ca0f {
	background-color: #FFFFFF;
}

#cmp_7bfa615b-f864-4a18-b622-df021f94ca0f h1 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_7bfa615b-f864-4a18-b622-df021f94ca0f h2 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 22px;
}

#cmp_7bfa615b-f864-4a18-b622-df021f94ca0f h3 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 15px;
}

#cmp_7bfa615b-f864-4a18-b622-df021f94ca0f p {
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

#cmp_7bfa615b-f864-4a18-b622-df021f94ca0f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

#cmp_7bfa615b-f864-4a18-b622-df021f94ca0f ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

/*
 * components/view-cart/cmp_a29bfa73-aad5-4707-916e-2f3ac94c1f77/component.css
 */
#cmp_a29bfa73-aad5-4707-916e-2f3ac94c1f77 {
	background-color: #FFFFFF;
}

#cmp_a29bfa73-aad5-4707-916e-2f3ac94c1f77 h1 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_a29bfa73-aad5-4707-916e-2f3ac94c1f77 h2 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 22px;
}

#cmp_a29bfa73-aad5-4707-916e-2f3ac94c1f77 h3 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 15px;
}

#cmp_a29bfa73-aad5-4707-916e-2f3ac94c1f77 p {
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

#cmp_a29bfa73-aad5-4707-916e-2f3ac94c1f77 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

#cmp_a29bfa73-aad5-4707-916e-2f3ac94c1f77 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

#cmp_a29bfa73-aad5-4707-916e-2f3ac94c1f77  {
	padding: 50px 0;;
}
#cmp_a29bfa73-aad5-4707-916e-2f3ac94c1f77 h1 {
	margin-bottom: 15px;
}
/*
 * components/view-cart/cmp_d8aa5565-bb5c-4108-81d6-77a3acd4029b/component.css
 */
#cmp_d8aa5565-bb5c-4108-81d6-77a3acd4029b {
	padding: 15px 15px 100px 15px;
}

#cmp_d8aa5565-bb5c-4108-81d6-77a3acd4029b .cart-thead {
	border-bottom: 1px solid #E1E1E1;
	padding: 10px 0;
}

#cmp_d8aa5565-bb5c-4108-81d6-77a3acd4029b .cart-thead h3 {
	text-transform: uppercase;
}

#cmp_d8aa5565-bb5c-4108-81d6-77a3acd4029b .cart-item {
	border: 1px solid #E1E1E1;
	padding: 25px 0;
	position: relative;
}

#cmp_d8aa5565-bb5c-4108-81d6-77a3acd4029b .product-main {
	margin-bottom: 15px;
}

#cmp_d8aa5565-bb5c-4108-81d6-77a3acd4029b .product-label p {
	margin: 0;
}

#cmp_d8aa5565-bb5c-4108-81d6-77a3acd4029b .product-label .info {
	color: rgb(20, 29, 69);
	text-align: right;
	text-transform: uppercase;
}

#cmp_d8aa5565-bb5c-4108-81d6-77a3acd4029b .product-label .meta {
	color: rgb(20, 29, 69);
	font-size: 15px;
}

#cmp_d8aa5565-bb5c-4108-81d6-77a3acd4029b .product-rem-btn {
	position: absolute;
	right: 1%;
	top: 1%;
}

#cmp_d8aa5565-bb5c-4108-81d6-77a3acd4029b figure {
	margin: 0 0 15px 0;
}

#cmp_d8aa5565-bb5c-4108-81d6-77a3acd4029b .cart-subtotal {
	margin: 50px 0 0 0;
}

#cmp_d8aa5565-bb5c-4108-81d6-77a3acd4029b .cart-subtotal h1 {
	margin: 0 0 15px 0;
}

#cmp_d8aa5565-bb5c-4108-81d6-77a3acd4029b .cart-subtotal h3 {
	margin: 0 0 25px 0;
	text-transform: uppercase;
}

#cmp_d8aa5565-bb5c-4108-81d6-77a3acd4029b .cart-subtotal p {
	margin: 0 0 25px 0;
}

@media (min-width: 768px) {
	#cmp_d8aa5565-bb5c-4108-81d6-77a3acd4029b .cart-item {
		border-width: 0 0 1px 0;
	}
	#cmp_d8aa5565-bb5c-4108-81d6-77a3acd4029b .product-rem-btn {
		top: 40%;
	}
	#cmp_d8aa5565-bb5c-4108-81d6-77a3acd4029b figure {
		margin: 0;
	}
}

/*
 * components/whats_inside/cmp_18c66c01-192d-4d71-9fea-d6b59c35b43d/component.css
 */
#cmp_18c66c01-192d-4d71-9fea-d6b59c35b43d {
	background-color: #FFFFFF;
}

#cmp_18c66c01-192d-4d71-9fea-d6b59c35b43d h1 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_18c66c01-192d-4d71-9fea-d6b59c35b43d h2 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 22px;
}

#cmp_18c66c01-192d-4d71-9fea-d6b59c35b43d h3 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 15px;
}

#cmp_18c66c01-192d-4d71-9fea-d6b59c35b43d p {
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

#cmp_18c66c01-192d-4d71-9fea-d6b59c35b43d ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

#cmp_18c66c01-192d-4d71-9fea-d6b59c35b43d ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

#cmp_18c66c01-192d-4d71-9fea-d6b59c35b43d  {
	padding-top: 60px;
}
#cmp_18c66c01-192d-4d71-9fea-d6b59c35b43d h1 {
	margin-bottom: 15px;
}
/*
 * components/whats_inside/cmp_2934b8c2-65f9-4ad2-b255-981919a70feb/component.css
 */
#cmp_2934b8c2-65f9-4ad2-b255-981919a70feb {
	background-color: #FFFFFF;
}

#cmp_2934b8c2-65f9-4ad2-b255-981919a70feb h1 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 48px;
}

#cmp_2934b8c2-65f9-4ad2-b255-981919a70feb h2 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 22px;
}

#cmp_2934b8c2-65f9-4ad2-b255-981919a70feb h3 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 15px;
}

#cmp_2934b8c2-65f9-4ad2-b255-981919a70feb p {
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

#cmp_2934b8c2-65f9-4ad2-b255-981919a70feb .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_2934b8c2-65f9-4ad2-b255-981919a70feb .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_2934b8c2-65f9-4ad2-b255-981919a70feb .btn {
	background-color: rgb(179, 31, 54);
	color: #FFFFFF;
	font-family: Oswald;
	font-size: 12px;
}

#cmp_2934b8c2-65f9-4ad2-b255-981919a70feb .btn:hover {
	background-color: rgb(20, 29, 69);
	color: #FFFFFF;
}

#cmp_2934b8c2-65f9-4ad2-b255-981919a70feb ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

#cmp_2934b8c2-65f9-4ad2-b255-981919a70feb ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

#cmp_2934b8c2-65f9-4ad2-b255-981919a70feb  {
	padding: 60px 0;
}
#cmp_2934b8c2-65f9-4ad2-b255-981919a70feb h3 {
	margin-bottom: 35px;
}
#cmp_2934b8c2-65f9-4ad2-b255-981919a70feb p {
	margin-bottom: 35px;
}
/*
 * components/whats_inside/cmp_fb2008fc-9713-4bed-aec4-ebad2d999322/component.css
 */
#cmp_fb2008fc-9713-4bed-aec4-ebad2d999322 {
	padding: 0;
}

#cmp_fb2008fc-9713-4bed-aec4-ebad2d999322 .hero-content {
	background-color: #FAFAFA;
	padding: 20px;
}

#cmp_fb2008fc-9713-4bed-aec4-ebad2d999322 .hero-content h1 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 45px;
}

#cmp_fb2008fc-9713-4bed-aec4-ebad2d999322 .hero-content h2 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 22px;
}

#cmp_fb2008fc-9713-4bed-aec4-ebad2d999322 .hero-content h3 {
	color: rgb(20, 29, 69);
	font-family: Oswald;
	font-size: 15px;
}

#cmp_fb2008fc-9713-4bed-aec4-ebad2d999322 .hero-content p {
	color: rgb(27, 21, 85);
	font-family: Lato;
	font-size: 16px;
}

#cmp_fb2008fc-9713-4bed-aec4-ebad2d999322 .hero-content .btn {
	background-color: rgb(179, 31, 54);
	color: #FFFFFF;
	font-family: Oswald;
	font-size: 12px;
}

#cmp_fb2008fc-9713-4bed-aec4-ebad2d999322 .hero-content .btn:hover {
	background-color: rgb(20, 29, 69);
	color: #FFFFFF;
}

#cmp_fb2008fc-9713-4bed-aec4-ebad2d999322 h3 {
	margin-bottom: 35px;
}
#cmp_fb2008fc-9713-4bed-aec4-ebad2d999322 p {
	margin-bottom: 35px;
}