/*
 * css/style.css
 */
/* Globals
------------------------------*/
body {
	background-color: #EEEEEE;
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
	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(12, 37, 138);
	font-family: DM Serif Display;
	font-size: 40px;
}

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

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

p {
	line-height: 1.5em;
}

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

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

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

.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 #C39D6A;
	border-radius: 15px;
	color: #C39D6A;
}

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

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

.btn-primary {
	background-color: #C39D6A;
	color: #FFFFFF;
	font-family: IBM Plex Serif;
	font-size: 12px;
	letter-spacing: 0.167em;
}

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

.btn-secondary {
	background-color: #333333;
	color: #FAFAFA;
	font-family: IBM Plex Serif;
	font-size: 12px;
	letter-spacing: 0.167em;
}

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

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

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

/* Index
------------------------------*/

/* Subscribe Flow
------------------------------*/
.sf-header {
	padding: 50px 0 15px;
}

.sf-grid {
	display: -webkit-flex;
	display: -moz-flexbox;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;

	margin-top: 20px;
	margin-bottom: 20px;
}

.sf-grid__container {
	display: -webkit-flex;
	display: -moz-flexbox;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;

	padding-top: .9375rem;
	padding-bottom: .9375rem;
}

.sf-item {
	-webkit-flex-grow: 1;
	-moz-flex-grow: 1;
	-ms-flex-grow: 1;
	flex-grow: 1;

	text-align: center;
	border: 1px solid #E1E1E1;
	padding: 20px;
}

.sf-item, .sf-item__content {
	display: -webkit-flex;
	display: -moz-flexbox;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

.sf-item__content {
	-webkit-flex: 1 1 auto;
	-moz-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}

.sf-item__name {
	margin: 1em 0;
}

.sf-item * {
	max-width: 100%;
}

/* Orders List
------------------------------*/
.orders-list {
	width: 100%;
	margin: 25px 0;
}
.orders-list h1 {
	text-align: center;
	color: rgb(12, 37, 138);
}
.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: #C39D6A;
	border: none;
	border-radius: 25px;
	color: #FFFFFF;
	font-family: IBM Plex Serif;
	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: #333333;
	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: #C39D6A;
}

.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 #C39D6A;
	color: #C39D6A;
	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: #333333;
	border-color: #333333;
	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_43b8c549-8c5f-417d-bd41-38cf2bf39070/component.css
 */
#cmp_43b8c549-8c5f-417d-bd41-38cf2bf39070 img {
	max-width: 100%;
}

/*
 * components/about/cmp_9d92029d-8b58-4204-ab52-99641957a3b3/component.css
 */
#cmp_9d92029d-8b58-4204-ab52-99641957a3b3 {
	background-color: #FFFFFF;
}

#cmp_9d92029d-8b58-4204-ab52-99641957a3b3 h1 {
	color: #333333;
	font-family: DM Serif Display;
	font-size: 40px;
}

#cmp_9d92029d-8b58-4204-ab52-99641957a3b3 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_9d92029d-8b58-4204-ab52-99641957a3b3 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_9d92029d-8b58-4204-ab52-99641957a3b3 p {
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_9d92029d-8b58-4204-ab52-99641957a3b3 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_9d92029d-8b58-4204-ab52-99641957a3b3 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_9d92029d-8b58-4204-ab52-99641957a3b3 .btn {
	background-color: #C39D6A;
	color: #FFFFFF;
	font-family: IBM Plex Serif;
	font-size: 12px;
}

#cmp_9d92029d-8b58-4204-ab52-99641957a3b3 .btn:hover {
	background-color: #D7BEE5;
	color: #FFFFFF;
}

#cmp_9d92029d-8b58-4204-ab52-99641957a3b3 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_9d92029d-8b58-4204-ab52-99641957a3b3 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_9d92029d-8b58-4204-ab52-99641957a3b3  {
	padding-bottom: 60px;
}
#cmp_9d92029d-8b58-4204-ab52-99641957a3b3 h3 {
	margin-bottom: 40px;
}
/*
 * components/about/cmp_a829ca8a-10c2-47c0-80dd-e3b41f3c6e01/component.css
 */
#cmp_a829ca8a-10c2-47c0-80dd-e3b41f3c6e01 {
	background-color: #FFFFFF;
}

#cmp_a829ca8a-10c2-47c0-80dd-e3b41f3c6e01 h1 {
	color: #333333;
	font-family: DM Serif Display;
	font-size: 40px;
}

#cmp_a829ca8a-10c2-47c0-80dd-e3b41f3c6e01 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_a829ca8a-10c2-47c0-80dd-e3b41f3c6e01 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_a829ca8a-10c2-47c0-80dd-e3b41f3c6e01 p {
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_a829ca8a-10c2-47c0-80dd-e3b41f3c6e01 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_a829ca8a-10c2-47c0-80dd-e3b41f3c6e01 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_a829ca8a-10c2-47c0-80dd-e3b41f3c6e01  {
	padding-top: 60px;
}
#cmp_a829ca8a-10c2-47c0-80dd-e3b41f3c6e01 h1 {
	margin-bottom: 15px;
}
/*
 * components/checkout/cmp_ad77f350-51a7-4bfe-a28b-acfe280dbeee/component.css
 */
#cmp_ad77f350-51a7-4bfe-a28b-acfe280dbeee .checkout_content {
  overflow: auto;
}

#cmp_ad77f350-51a7-4bfe-a28b-acfe280dbeee .checkout_content section {
  border-color: #F5F5F5;
}

#cmp_ad77f350-51a7-4bfe-a28b-acfe280dbeee .cart_listing table {
  border-color: #F5F5F5;
}

/*
 * components/customer/account/cmp_1bd7b3e1-8812-42fc-93e8-b92896337ddc/component.css
 */

/*
 * components/customer/edit/cmp_104f432c-9e01-44f4-ad8f-b5679b0d93fc/component.css
 */

/*
 * components/customer/forgot_password/cmp_3a5cfce1-fc5f-4f21-b0ea-86de5faa4f81/component.css
 */

#cmp_3a5cfce1-fc5f-4f21-b0ea-86de5faa4f81  {
	padding-bottom: 120px;
}
/*
 * components/customer/forgot_password/cmp_a3e7a241-02e0-42d0-8b18-cd96f6e1f334/component.css
 */
#cmp_a3e7a241-02e0-42d0-8b18-cd96f6e1f334 {
	background-color: #FFFFFF;
}

#cmp_a3e7a241-02e0-42d0-8b18-cd96f6e1f334 h1 {
	color: #333333;
	font-family: DM Serif Display;
	font-size: 40px;
}

#cmp_a3e7a241-02e0-42d0-8b18-cd96f6e1f334 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_a3e7a241-02e0-42d0-8b18-cd96f6e1f334 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_a3e7a241-02e0-42d0-8b18-cd96f6e1f334 p {
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_a3e7a241-02e0-42d0-8b18-cd96f6e1f334 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_a3e7a241-02e0-42d0-8b18-cd96f6e1f334 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_a3e7a241-02e0-42d0-8b18-cd96f6e1f334  {
	padding: 50px 0;
}
#cmp_a3e7a241-02e0-42d0-8b18-cd96f6e1f334 h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/login/cmp_0becfe87-4b73-40a7-9c56-d7fc97f809d9/component.css
 */

#cmp_0becfe87-4b73-40a7-9c56-d7fc97f809d9  {
	padding-bottom: 120px;
}
/*
 * components/customer/login/cmp_796f1d11-5ad8-42e0-a686-c791e78e938e/component.css
 */
#cmp_796f1d11-5ad8-42e0-a686-c791e78e938e {
	background-color: #FFFFFF;
}

#cmp_796f1d11-5ad8-42e0-a686-c791e78e938e h1 {
	color: #333333;
	font-family: DM Serif Display;
	font-size: 40px;
}

#cmp_796f1d11-5ad8-42e0-a686-c791e78e938e h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_796f1d11-5ad8-42e0-a686-c791e78e938e h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_796f1d11-5ad8-42e0-a686-c791e78e938e p {
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_796f1d11-5ad8-42e0-a686-c791e78e938e ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_796f1d11-5ad8-42e0-a686-c791e78e938e ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_796f1d11-5ad8-42e0-a686-c791e78e938e  {
	padding: 50px 0;
}
#cmp_796f1d11-5ad8-42e0-a686-c791e78e938e h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/order/cmp_ea990e0c-a6fb-4314-bd0e-e9e9d65ccf4f/component.css
 */

/*
 * components/customer/orders/cmp_82dec764-bb15-468e-9a30-18d77df34d32/component.css
 */

/*
 * components/customer/password_reset/cmp_b845b63d-36d5-49f1-945a-b0a5a969e46f/component.css
 */

#cmp_b845b63d-36d5-49f1-945a-b0a5a969e46f  {
	padding-bottom: 120px;
}
/*
 * components/customer/password_reset/cmp_b84ea2b2-452d-4525-b506-073fc270c2ad/component.css
 */
#cmp_b84ea2b2-452d-4525-b506-073fc270c2ad {
	background-color: #FFFFFF;
}

#cmp_b84ea2b2-452d-4525-b506-073fc270c2ad h1 {
	color: #333333;
	font-family: DM Serif Display;
	font-size: 40px;
}

#cmp_b84ea2b2-452d-4525-b506-073fc270c2ad h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_b84ea2b2-452d-4525-b506-073fc270c2ad h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_b84ea2b2-452d-4525-b506-073fc270c2ad p {
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_b84ea2b2-452d-4525-b506-073fc270c2ad ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_b84ea2b2-452d-4525-b506-073fc270c2ad ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_b84ea2b2-452d-4525-b506-073fc270c2ad  {
	padding: 50px 0;
}
#cmp_b84ea2b2-452d-4525-b506-073fc270c2ad h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/thank_you/cmp_ec19c326-7b5c-4614-a876-a3172142b600/component.css
 */

/*
 * components/faqs/cmp_5933d12a-8d92-4bc2-bbf3-07756aa5db4b/component.css
 */
#cmp_5933d12a-8d92-4bc2-bbf3-07756aa5db4b {
	background-color: #FFFFFF;
}

#cmp_5933d12a-8d92-4bc2-bbf3-07756aa5db4b h1 {
	color: #333333;
	font-family: DM Serif Display;
	font-size: 40px;
}

#cmp_5933d12a-8d92-4bc2-bbf3-07756aa5db4b h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_5933d12a-8d92-4bc2-bbf3-07756aa5db4b h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_5933d12a-8d92-4bc2-bbf3-07756aa5db4b p {
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_5933d12a-8d92-4bc2-bbf3-07756aa5db4b .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_5933d12a-8d92-4bc2-bbf3-07756aa5db4b .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_5933d12a-8d92-4bc2-bbf3-07756aa5db4b .btn {
	background-color: #C39D6A;
	color: #FFFFFF;
	font-family: IBM Plex Serif;
	font-size: 12px;
}

#cmp_5933d12a-8d92-4bc2-bbf3-07756aa5db4b .btn:hover {
	background-color: #D7BEE5;
	color: #FFFFFF;
}

#cmp_5933d12a-8d92-4bc2-bbf3-07756aa5db4b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_5933d12a-8d92-4bc2-bbf3-07756aa5db4b ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

/*
 * components/faqs/cmp_b6ebead9-01b3-48d5-a948-56969214d1fd/component.css
 */
#cmp_b6ebead9-01b3-48d5-a948-56969214d1fd img {
	max-width: 100%;
}

/*
 * components/faqs/cmp_f090b747-88f9-45b3-a91e-1eff44f4185e/component.css
 */
#cmp_f090b747-88f9-45b3-a91e-1eff44f4185e {
	background-color: #FFFFFF;
}

#cmp_f090b747-88f9-45b3-a91e-1eff44f4185e h1 {
	color: #333333;
	font-family: DM Serif Display;
	font-size: 40px;
}

#cmp_f090b747-88f9-45b3-a91e-1eff44f4185e h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_f090b747-88f9-45b3-a91e-1eff44f4185e h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_f090b747-88f9-45b3-a91e-1eff44f4185e p {
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_f090b747-88f9-45b3-a91e-1eff44f4185e ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_f090b747-88f9-45b3-a91e-1eff44f4185e ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

/*
 * components/global/cmp_31d1d58b-68ea-41a5-b6e2-c554453f6527/component.css
 */
#cmp_31d1d58b-68ea-41a5-b6e2-c554453f6527.footer {
	background-color: #FAFAFA;
	font-family: IBM Plex Serif;
	color: rgb(12, 37, 138);
	padding-top: 10px;
	padding-bottom: 10px;

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

#cmp_31d1d58b-68ea-41a5-b6e2-c554453f6527 .footer-social {
	padding-top: 15px;
	padding-bottom: 15px;
	text-align: center;
}

#cmp_31d1d58b-68ea-41a5-b6e2-c554453f6527 .footer-social a {
	display: inline-block;
	padding-left: 5px;
	padding-right: 5px;
}

#cmp_31d1d58b-68ea-41a5-b6e2-c554453f6527 .footer-social svg path {
	fill: #C39D6A;
}

#cmp_31d1d58b-68ea-41a5-b6e2-c554453f6527 .footer-social a:hover svg path,
#cmp_31d1d58b-68ea-41a5-b6e2-c554453f6527 .footer-social a:focus svg path,
#cmp_31d1d58b-68ea-41a5-b6e2-c554453f6527 .footer-social a:active svg path {
	fill: #333333;
}

#cmp_31d1d58b-68ea-41a5-b6e2-c554453f6527.footer .toggler-container {
	padding-top: 15px;
	padding-bottom: 15px;
	text-align: center;
}

#cmp_31d1d58b-68ea-41a5-b6e2-c554453f6527.footer .navbar-toggler {
	color: #C39D6A;
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

#cmp_31d1d58b-68ea-41a5-b6e2-c554453f6527 .footer-cc {
	border-top: 1px solid #e1e1e1;
	letter-spacing: 1px;
	text-align: center;
}

#cmp_31d1d58b-68ea-41a5-b6e2-c554453f6527 .footer-cc img {
	padding-top: 15px;
	padding-bottom: 15px;
}

#cmp_31d1d58b-68ea-41a5-b6e2-c554453f6527 .footer-cc p,
#cmp_31d1d58b-68ea-41a5-b6e2-c554453f6527 .footer-tributes p {
	padding-top: 15px;
	padding-bottom: 15px;
	margin: 0;
}

#cmp_31d1d58b-68ea-41a5-b6e2-c554453f6527 .footer-tributes p a {
	color: rgb(12, 37, 138);
	padding: 0;
}

#cmp_31d1d58b-68ea-41a5-b6e2-c554453f6527 .footer-tributes p a:hover,
#cmp_31d1d58b-68ea-41a5-b6e2-c554453f6527 .footer-tributes p a:focus,
#cmp_31d1d58b-68ea-41a5-b6e2-c554453f6527 .footer-tributes p a:active {
	color: rgb(12, 37, 138);
	text-decoration: none;
}

#cmp_31d1d58b-68ea-41a5-b6e2-c554453f6527 .footer-directory {
	text-align: center;
}

#cmp_31d1d58b-68ea-41a5-b6e2-c554453f6527 .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_31d1d58b-68ea-41a5-b6e2-c554453f6527 .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_31d1d58b-68ea-41a5-b6e2-c554453f6527 .footer-list .footer-link {
	color: #C39D6A;
	font-family: IBM Plex Serif;
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

#cmp_31d1d58b-68ea-41a5-b6e2-c554453f6527 .footer-list .footer-link:hover,
#cmp_31d1d58b-68ea-41a5-b6e2-c554453f6527 .footer-list .footer-link:focus,
#cmp_31d1d58b-68ea-41a5-b6e2-c554453f6527 .footer-list .footer-link:active {
	color: #333333;
	text-decoration: none;
}

@media (max-width: 767px) {
	#cmp_31d1d58b-68ea-41a5-b6e2-c554453f6527 .col-sm-12,
	#cmp_31d1d58b-68ea-41a5-b6e2-c554453f6527 .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_31d1d58b-68ea-41a5-b6e2-c554453f6527.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_31d1d58b-68ea-41a5-b6e2-c554453f6527 .footer-directory {
		-webkit-order: 1;
		-moz-order: 1;
		-ms-order: 1;
		order: 1;

		text-align: left;
	}
	#cmp_31d1d58b-68ea-41a5-b6e2-c554453f6527 .footer-social {
		-webkit-order: 2;
		-moz-order: 2;
		-ms-order: 2;
		order: 2;

		padding-top: 0;
		padding-bottom: 0;
		text-align: right;
	}
	#cmp_31d1d58b-68ea-41a5-b6e2-c554453f6527 .footer-cc {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}
	#cmp_31d1d58b-68ea-41a5-b6e2-c554453f6527 .footer-cc p {
		display: inline-block;
	}
}

@media (min-width: 992px) {
	#cmp_31d1d58b-68ea-41a5-b6e2-c554453f6527 .footer-cc {
		-webkit-order: 2;
		-moz-order: 2;
		-ms-order: 2;
		order: 2;

		border-top: none;
	}
	#cmp_31d1d58b-68ea-41a5-b6e2-c554453f6527 .footer-cc p {
		display: block;
	}
	#cmp_31d1d58b-68ea-41a5-b6e2-c554453f6527 .footer-social {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}
}

/*
 * components/global/cmp_9d48e40a-ae4e-4e5b-9c07-eaec1d37c5fe/component.css
 */
#cmp_9d48e40a-ae4e-4e5b-9c07-eaec1d37c5fe.navbar {
	background-color: rgb(0, 24, 57);
	border-radius: 0;
	border-top: 4px solid #C39D6A;
	padding: 0;

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

#cmp_9d48e40a-ae4e-4e5b-9c07-eaec1d37c5fe.navbar a:hover,
#cmp_9d48e40a-ae4e-4e5b-9c07-eaec1d37c5fe.navbar a:focus,
#cmp_9d48e40a-ae4e-4e5b-9c07-eaec1d37c5fe.navbar a:active {
	color: #333333;
}

#cmp_9d48e40a-ae4e-4e5b-9c07-eaec1d37c5fe .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: #333333;
	font-family: DM Serif Display;
	font-size: 48px;
	margin: 0;
	padding: 15px;
	text-align: center;
}

#cmp_9d48e40a-ae4e-4e5b-9c07-eaec1d37c5fe .navbar-brand img {
	max-width: 100%;
}

#cmp_9d48e40a-ae4e-4e5b-9c07-eaec1d37c5fe.navbar .navbar-toggler {
	background-color: #C39D6A;
	border-radius: 0;
	color: #FFFFFF;
	font-size: 12px;
	letter-spacing: 0.167em;
	padding: 15px;
	text-transform: uppercase;
}

#cmp_9d48e40a-ae4e-4e5b-9c07-eaec1d37c5fe.navbar .navbar-toggler:hover,
#cmp_9d48e40a-ae4e-4e5b-9c07-eaec1d37c5fe.navbar .navbar-toggler:focus,
#cmp_9d48e40a-ae4e-4e5b-9c07-eaec1d37c5fe.navbar .navbar-toggler:active {
	background-color: #333333;
	color: #FFFFFF;
}

#cmp_9d48e40a-ae4e-4e5b-9c07-eaec1d37c5fe .navbar-nav {
	align-items: center;
	display: flex;
	flex-direction: column;
	margin: 0;
	padding-top: 15px;
	padding-bottom: 15px;
}

#cmp_9d48e40a-ae4e-4e5b-9c07-eaec1d37c5fe .navbar-nav li {
	padding-top: 10px;
	padding-bottom: 10px;
}

#cmp_9d48e40a-ae4e-4e5b-9c07-eaec1d37c5fe .navbar-nav .nav-link {
	color: #C39D6A;
	font-family: DM Serif Text;
	font-size: 12px;;
	letter-spacing: 1px;
	padding: 8px 18px;
	text-align: center;
	text-transform: uppercase;
}

@media (min-width: 768px) {
	#cmp_9d48e40a-ae4e-4e5b-9c07-eaec1d37c5fe.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_9d48e40a-ae4e-4e5b-9c07-eaec1d37c5fe .navbar-brand {
		padding: 0;
		padding-bottom: 15px;
	}
	#cmp_9d48e40a-ae4e-4e5b-9c07-eaec1d37c5fe .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_9d48e40a-ae4e-4e5b-9c07-eaec1d37c5fe .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_9d48e40a-ae4e-4e5b-9c07-eaec1d37c5fe .navbar-nav li {
		padding: 0;
	}
}

/*
 * components/global/cmp_e1203c6c-cc44-4bae-b1c2-63cc1afdf5a7/component.css
 */
#cmp_e1203c6c-cc44-4bae-b1c2-63cc1afdf5a7 {
	background-color: #FFFFFF;
}

#cmp_e1203c6c-cc44-4bae-b1c2-63cc1afdf5a7 h1 {
	color: #333333;
	font-family: DM Serif Display;
	font-size: 40px;
}

#cmp_e1203c6c-cc44-4bae-b1c2-63cc1afdf5a7 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_e1203c6c-cc44-4bae-b1c2-63cc1afdf5a7 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_e1203c6c-cc44-4bae-b1c2-63cc1afdf5a7 p {
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_e1203c6c-cc44-4bae-b1c2-63cc1afdf5a7 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_e1203c6c-cc44-4bae-b1c2-63cc1afdf5a7 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_e1203c6c-cc44-4bae-b1c2-63cc1afdf5a7 .btn {
	background-color: #C39D6A;
	color: #FFFFFF;
	font-family: IBM Plex Serif;
	font-size: 12px;
}

#cmp_e1203c6c-cc44-4bae-b1c2-63cc1afdf5a7 .btn:hover {
	background-color: #D7BEE5;
	color: #FFFFFF;
}

#cmp_e1203c6c-cc44-4bae-b1c2-63cc1afdf5a7 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_e1203c6c-cc44-4bae-b1c2-63cc1afdf5a7 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

/*
 * components/index/cmp_5f41072e-b912-45fa-94d7-854bf38137f6/component.css
 */
#cmp_5f41072e-b912-45fa-94d7-854bf38137f6 {
	padding: 0;
	background-color: #FFFFFF;
}

#cmp_5f41072e-b912-45fa-94d7-854bf38137f6 .content {
	margin: 0 auto;
	padding: 50px;
}

@media (min-width: 768px) {
	#cmp_5f41072e-b912-45fa-94d7-854bf38137f6 .col-md-4:nth-of-type(2n + 1) {
		order: 1;
	}
	#cmp_5f41072e-b912-45fa-94d7-854bf38137f6 .col-md-4:nth-of-type(2n) {
		order: 2;
	}
}

#cmp_5f41072e-b912-45fa-94d7-854bf38137f6 h1 {
	color: rgb(217, 176, 119);
	font-family: DM Serif Display;
	font-size: 40px;
}

#cmp_5f41072e-b912-45fa-94d7-854bf38137f6 h2 {
	color: rgb(217, 176, 119);
	font-family: DM Serif Display;
	font-size: 22px;
}

#cmp_5f41072e-b912-45fa-94d7-854bf38137f6 h3 {
	color: rgb(0, 24, 57);
	font-family: IBM Plex Serif;
	font-size: 15px;
}

#cmp_5f41072e-b912-45fa-94d7-854bf38137f6 p {
	color: rgb(0, 24, 57);
	font-family: DM Serif Text;
	font-size: 13px;
}

#cmp_5f41072e-b912-45fa-94d7-854bf38137f6 h3 {
	margin-bottom: 25px;
}
/*
 * components/index/cmp_8aa0c9a1-8c47-4002-ac1a-0da9d2f3d0a6/component.css
 */
#cmp_8aa0c9a1-8c47-4002-ac1a-0da9d2f3d0a6 {
	background-color: rgb(0, 24, 57);
}

#cmp_8aa0c9a1-8c47-4002-ac1a-0da9d2f3d0a6 h1 {
	color: rgb(217, 176, 119);
	font-family: DM Serif Display;
	font-size: 48px;
}

#cmp_8aa0c9a1-8c47-4002-ac1a-0da9d2f3d0a6 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_8aa0c9a1-8c47-4002-ac1a-0da9d2f3d0a6 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_8aa0c9a1-8c47-4002-ac1a-0da9d2f3d0a6 p {
	color: rgb(111, 182, 184);
	font-family: DM Serif Text;
	font-size: 16px;
}

#cmp_8aa0c9a1-8c47-4002-ac1a-0da9d2f3d0a6 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_8aa0c9a1-8c47-4002-ac1a-0da9d2f3d0a6 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_8aa0c9a1-8c47-4002-ac1a-0da9d2f3d0a6 .btn {
	background-color: #C39D6A;
	color: rgb(253, 253, 253);
	font-family: DM Serif Text;
	font-size: 14px;
}

#cmp_8aa0c9a1-8c47-4002-ac1a-0da9d2f3d0a6 .btn:hover {
	background-color: rgb(111, 182, 184);
	color: rgb(0, 24, 57);
}

#cmp_8aa0c9a1-8c47-4002-ac1a-0da9d2f3d0a6 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(111, 182, 184);
	font-family: DM Serif Text;
	font-size: 16px;
}

#cmp_8aa0c9a1-8c47-4002-ac1a-0da9d2f3d0a6 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(111, 182, 184);
	font-family: DM Serif Text;
	font-size: 16px;
}

#cmp_8aa0c9a1-8c47-4002-ac1a-0da9d2f3d0a6  {
	padding: 60px 0;
}
#cmp_8aa0c9a1-8c47-4002-ac1a-0da9d2f3d0a6 h1 {
	margin-bottom: 15px;
}
#cmp_8aa0c9a1-8c47-4002-ac1a-0da9d2f3d0a6 p {
	margin-bottom: 20px;
}
/*
 * components/index/cmp_b838dd80-b79c-48f2-8cc9-70f0d86adb4f/component.css
 */
#cmp_b838dd80-b79c-48f2-8cc9-70f0d86adb4f {
	padding: 0;
}

#cmp_b838dd80-b79c-48f2-8cc9-70f0d86adb4f .hero-content {
	background-color: rgb(0, 24, 57);
	padding: 20px;
}

#cmp_b838dd80-b79c-48f2-8cc9-70f0d86adb4f .hero-content h1 {
	color: #C39D6A;
	font-family: DM Serif Display;
	font-size: 45px;
}

#cmp_b838dd80-b79c-48f2-8cc9-70f0d86adb4f .hero-content h2 {
	color: #FFFFFF;
	font-family: DM Serif Text;
	font-size: 22px;
}

#cmp_b838dd80-b79c-48f2-8cc9-70f0d86adb4f .hero-content h3 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 15px;
}

#cmp_b838dd80-b79c-48f2-8cc9-70f0d86adb4f .hero-content p {
	color: #FFFFFF;
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_b838dd80-b79c-48f2-8cc9-70f0d86adb4f .hero-content .btn {
	background-color: #C39D6A;
	color: #FFFFFF;
	font-family: IBM Plex Serif;
	font-size: 12px;
}

#cmp_b838dd80-b79c-48f2-8cc9-70f0d86adb4f .hero-content .btn:hover {
	background-color: #D7BEE5;
	color: #FFFFFF;
}

#cmp_b838dd80-b79c-48f2-8cc9-70f0d86adb4f h1 {
	margin-top: 20px;
	margin-bottom: 10px;
}
#cmp_b838dd80-b79c-48f2-8cc9-70f0d86adb4f p {
	margin-bottom: 25px;
}
/*
 * components/index/cmp_d6bcb7ab-4688-41d8-9d80-dddbd5331c95/component.css
 */
#cmp_d6bcb7ab-4688-41d8-9d80-dddbd5331c95 {
	background-color: #FFFFFF;
}

#cmp_d6bcb7ab-4688-41d8-9d80-dddbd5331c95 h1 {
	color: #333333;
	font-family: DM Serif Display;
	font-size: 40px;
}

#cmp_d6bcb7ab-4688-41d8-9d80-dddbd5331c95 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_d6bcb7ab-4688-41d8-9d80-dddbd5331c95 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_d6bcb7ab-4688-41d8-9d80-dddbd5331c95 p {
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_d6bcb7ab-4688-41d8-9d80-dddbd5331c95 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_d6bcb7ab-4688-41d8-9d80-dddbd5331c95 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_d6bcb7ab-4688-41d8-9d80-dddbd5331c95  {
	padding: 60px 0;
}
#cmp_d6bcb7ab-4688-41d8-9d80-dddbd5331c95 h1 {
	margin-bottom: 40px;
}
#cmp_d6bcb7ab-4688-41d8-9d80-dddbd5331c95 h3 {
	margin-bottom: 15px;
}
#cmp_d6bcb7ab-4688-41d8-9d80-dddbd5331c95 p {
	border-bottom: 1px solid #E1E1E1;
	margin-bottom: 25px;
	padding-bottom: 25px;
}
#cmp_d6bcb7ab-4688-41d8-9d80-dddbd5331c95 p:last-of-type {
	border-bottom: none;
	padding-bottom: 0;
}
/*
 * components/index/cmp_e4c52c4d-93f9-454f-8a6f-32815aac3eba/component.css
 */
#cmp_e4c52c4d-93f9-454f-8a6f-32815aac3eba {
	padding: 0;
	background-color: #FFFFFF;
}

#cmp_e4c52c4d-93f9-454f-8a6f-32815aac3eba .content {
	margin: 0 auto;
	max-width: 250px;
}

#cmp_e4c52c4d-93f9-454f-8a6f-32815aac3eba h1 {
	color: #333333;
	font-family: DM Serif Display;
	font-size: 40px;
}

#cmp_e4c52c4d-93f9-454f-8a6f-32815aac3eba h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_e4c52c4d-93f9-454f-8a6f-32815aac3eba h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_e4c52c4d-93f9-454f-8a6f-32815aac3eba p {
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_e4c52c4d-93f9-454f-8a6f-32815aac3eba p {
	margin-bottom: 35px;
}
/*
 * components/shop/listing/cmp_3f1fa6fa-4a0d-40ff-9fe5-5294723f02d9/component.css
 */
#cmp_3f1fa6fa-4a0d-40ff-9fe5-5294723f02d9 {
	background-color: #FFFFFF;
}

#cmp_3f1fa6fa-4a0d-40ff-9fe5-5294723f02d9 h1 {
	color: #333333;
	font-family: DM Serif Display;
	font-size: 40px;
}

#cmp_3f1fa6fa-4a0d-40ff-9fe5-5294723f02d9 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_3f1fa6fa-4a0d-40ff-9fe5-5294723f02d9 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_3f1fa6fa-4a0d-40ff-9fe5-5294723f02d9 p {
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_3f1fa6fa-4a0d-40ff-9fe5-5294723f02d9 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_3f1fa6fa-4a0d-40ff-9fe5-5294723f02d9 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_3f1fa6fa-4a0d-40ff-9fe5-5294723f02d9  {
	padding: 50px 0 15px;
}
#cmp_3f1fa6fa-4a0d-40ff-9fe5-5294723f02d9 h1 {
	margin-bottom: 15px;
}
/*
 * components/shop/listing/cmp_5b13a943-532d-4ed3-a4ae-318b5892143e/component.css
 */
#cmp_5b13a943-532d-4ed3-a4ae-318b5892143e {
	justify-content: center;
}

#cmp_5b13a943-532d-4ed3-a4ae-318b5892143e ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

#cmp_5b13a943-532d-4ed3-a4ae-318b5892143e  {
	border-bottom: 1px solid #E1E1E1;
	margin-bottom: 35px;
	padding-bottom: 35px;
}
/*
 * components/shop/listing/cmp_c2bd124c-8a30-42b7-a389-5f7dc4afbeff/component.css
 */
#cmp_c2bd124c-8a30-42b7-a389-5f7dc4afbeff {
	justify-content: center;
}

#cmp_c2bd124c-8a30-42b7-a389-5f7dc4afbeff ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_fd52a27b-4146-4fed-ad87-608a024e3d19/component.css
 */
#cmp_fd52a27b-4146-4fed-ad87-608a024e3d19 .shop-listing-item {
	color: rgb(12, 37, 138);
}

#cmp_fd52a27b-4146-4fed-ad87-608a024e3d19 .shop-listing-item:hover,
#cmp_fd52a27b-4146-4fed-ad87-608a024e3d19 .shop-listing-item:focus {
	text-decoration: none;
}

#cmp_fd52a27b-4146-4fed-ad87-608a024e3d19 .shop-listing-item__image {
	background-size: cover;
	background-position: center center;
}

#cmp_fd52a27b-4146-4fed-ad87-608a024e3d19 .shop-listing-item__name {
	margin: 10px 0;
}

#cmp_fd52a27b-4146-4fed-ad87-608a024e3d19 .shop-listing-item__price {
	margin: 10px 0 30px;
}

#cmp_fd52a27b-4146-4fed-ad87-608a024e3d19 .product_paging {
	-webkit-display: flex;
	-ms-display: flex;
	display: flex;
	justify-content: center;

	margin: 20px 0;
}

#cmp_fd52a27b-4146-4fed-ad87-608a024e3d19 .product_page a,
#cmp_fd52a27b-4146-4fed-ad87-608a024e3d19 .next_page a,
#cmp_fd52a27b-4146-4fed-ad87-608a024e3d19 .prev_page a {
	display: block;
	padding: 12px 15px;
	margin: 0 2px;
	border: 1px solid #E0E0E0;
	border-radius: 5px;
}

#cmp_fd52a27b-4146-4fed-ad87-608a024e3d19 .product_page.active a,
#cmp_fd52a27b-4146-4fed-ad87-608a024e3d19 .product_page a:hover,
#cmp_fd52a27b-4146-4fed-ad87-608a024e3d19 .product_page a:focus,
#cmp_fd52a27b-4146-4fed-ad87-608a024e3d19 .next_page a:hover,
#cmp_fd52a27b-4146-4fed-ad87-608a024e3d19 .next_page a:focus,
#cmp_fd52a27b-4146-4fed-ad87-608a024e3d19 .prev_page a:hover,
#cmp_fd52a27b-4146-4fed-ad87-608a024e3d19 .prev_page a:focus {
	text-decoration: none;
	background-color: #F9F9F9;
}

#cmp_fd52a27b-4146-4fed-ad87-608a024e3d19 .product_page.active a {
	color: black;
}

/*
 * components/shop/product/cmp_e5f889c1-dfad-473c-82de-01db867cd177/component.css
 */
#cmp_e5f889c1-dfad-473c-82de-01db867cd177 .shop-product__name {
	margin-bottom: 10px;
}

#cmp_e5f889c1-dfad-473c-82de-01db867cd177 .shop-product__price {
	margin-bottom: 20px;
}

#cmp_e5f889c1-dfad-473c-82de-01db867cd177 .shop-product select {
	width: auto;
}

#cmp_e5f889c1-dfad-473c-82de-01db867cd177 .shop-product__add-to-cart {
	margin-bottom: 20px;
}

#cmp_e5f889c1-dfad-473c-82de-01db867cd177 .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin-bottom: 40px;
}

#cmp_e5f889c1-dfad-473c-82de-01db867cd177 .shop-product__review-share-desktop .col-xs-6 {
	padding-top: 10px;
}

#cmp_e5f889c1-dfad-473c-82de-01db867cd177 .shop-product__review-share-desktop .col-xs-6 + .col-xs-6 {
	border-left: 1px solid #E1E1E1;
}

#cmp_e5f889c1-dfad-473c-82de-01db867cd177 .shop-product__social-share-buttons {
	-webkit-display: flex;
	-ms-display: flex;
	display: flex;
	justify-content: start;
}

#cmp_e5f889c1-dfad-473c-82de-01db867cd177 .shop-product__social-share-buttons > * {
	margin-right: 8px;
}

/*
 * components/shop/product/cmp_f29dd0cc-b225-4897-a0c6-5040d87f1802/component.css
 */
#cmp_f29dd0cc-b225-4897-a0c6-5040d87f1802.shop-product-header {
	padding: 50px 0 15px;
}

/*
 * components/sold_out/cmp_83af7ca3-05a5-4d15-80c2-b533fd913f5b/component.css
 */
#cmp_83af7ca3-05a5-4d15-80c2-b533fd913f5b {
	background-color: #FFFFFF;
}

#cmp_83af7ca3-05a5-4d15-80c2-b533fd913f5b h1 {
	color: #333333;
	font-family: DM Serif Display;
	font-size: 40px;
}

#cmp_83af7ca3-05a5-4d15-80c2-b533fd913f5b h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_83af7ca3-05a5-4d15-80c2-b533fd913f5b h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_83af7ca3-05a5-4d15-80c2-b533fd913f5b p {
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_83af7ca3-05a5-4d15-80c2-b533fd913f5b .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_83af7ca3-05a5-4d15-80c2-b533fd913f5b .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_83af7ca3-05a5-4d15-80c2-b533fd913f5b .btn {
	background-color: #C39D6A;
	color: #FFFFFF;
	font-family: IBM Plex Serif;
	font-size: 12px;
}

#cmp_83af7ca3-05a5-4d15-80c2-b533fd913f5b .btn:hover {
	background-color: #D7BEE5;
	color: #FFFFFF;
}

#cmp_83af7ca3-05a5-4d15-80c2-b533fd913f5b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_83af7ca3-05a5-4d15-80c2-b533fd913f5b ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_83af7ca3-05a5-4d15-80c2-b533fd913f5b  {
	padding-bottom: 50px;
}
/*
 * components/sold_out/cmp_e221deb1-f331-4e83-b0e5-d7dc9ffd24b4/component.css
 */
#cmp_e221deb1-f331-4e83-b0e5-d7dc9ffd24b4 img {
	max-width: 100%;
}

#cmp_e221deb1-f331-4e83-b0e5-d7dc9ffd24b4  {
	padding-top: 50px;
}
/*
 * components/subscribe/cmp_31a70377-4e64-4d9f-a2da-4b220e9f5cb4/component.css
 */
#cmp_31a70377-4e64-4d9f-a2da-4b220e9f5cb4 {
	background-color: #FFFFFF;
}

#cmp_31a70377-4e64-4d9f-a2da-4b220e9f5cb4 h1 {
	color: #333333;
	font-family: DM Serif Display;
	font-size: 40px;
}

#cmp_31a70377-4e64-4d9f-a2da-4b220e9f5cb4 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_31a70377-4e64-4d9f-a2da-4b220e9f5cb4 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_31a70377-4e64-4d9f-a2da-4b220e9f5cb4 p {
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_31a70377-4e64-4d9f-a2da-4b220e9f5cb4 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_31a70377-4e64-4d9f-a2da-4b220e9f5cb4 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

/*
 * components/subscribe/cmp_d7c08bca-4c00-4eba-8c6a-a6f66dc572c2/component.css
 */

/*
 * components/subscribe/cmp_e0ee8282-1035-4c4a-be72-d6d710b14101/component.css
 */
#cmp_e0ee8282-1035-4c4a-be72-d6d710b14101 {
	background-color: #FFFFFF;
}

#cmp_e0ee8282-1035-4c4a-be72-d6d710b14101 h1 {
	color: #333333;
	font-family: DM Serif Display;
	font-size: 40px;
}

#cmp_e0ee8282-1035-4c4a-be72-d6d710b14101 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_e0ee8282-1035-4c4a-be72-d6d710b14101 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_e0ee8282-1035-4c4a-be72-d6d710b14101 p {
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_e0ee8282-1035-4c4a-be72-d6d710b14101 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_e0ee8282-1035-4c4a-be72-d6d710b14101 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

/*
 * components/subscribe_flow/survey_step/cmp_1a65e54e-fc36-4612-9467-b5ca4309b676/component.css
 */
#cmp_1a65e54e-fc36-4612-9467-b5ca4309b676 {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/survey_step/cmp_b8f0098d-abee-4bc8-ae1b-f077bb1fdb2f/component.css
 */
#cmp_b8f0098d-abee-4bc8-ae1b-f077bb1fdb2f.survey h2 {
	margin-bottom: 1em;
}

#cmp_b8f0098d-abee-4bc8-ae1b-f077bb1fdb2f.survey .radio input[type="radio"],
#cmp_b8f0098d-abee-4bc8-ae1b-f077bb1fdb2f.survey .checkbox input[type="checkbox"] {
	margin-right: 0.5em;
}

/*
 * components/subscribe_flow/terms_step/cmp_67f48a88-0892-4651-8ca4-e82efccf4c5a/component.css
 */
#cmp_67f48a88-0892-4651-8ca4-e82efccf4c5a {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/terms_step/cmp_a3004b93-90a4-45b6-9726-abc7310ca6fe/component.css
 */

/*
 * components/subscribe_flow/variant_step/cmp_04b3a26a-11b1-4c46-a77d-e89affaee20f/component.css
 */
#cmp_04b3a26a-11b1-4c46-a77d-e89affaee20f {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/variant_step/cmp_9df15dc9-62fe-4241-822e-1aef75cd2e42/component.css
 */

/*
 * components/view-cart/cmp_46a2e9be-16ed-4468-aa3c-8516be6a23d0/component.css
 */
#cmp_46a2e9be-16ed-4468-aa3c-8516be6a23d0 {
	padding: 15px 15px 100px 15px;
}

#cmp_46a2e9be-16ed-4468-aa3c-8516be6a23d0 .cart-thead {
	border-bottom: 1px solid #E1E1E1;
	padding: 10px 0;
}

#cmp_46a2e9be-16ed-4468-aa3c-8516be6a23d0 .cart-thead h3 {
	text-transform: uppercase;
}

#cmp_46a2e9be-16ed-4468-aa3c-8516be6a23d0 .cart-item {
	border: 1px solid #E1E1E1;
	padding: 25px 0;
	position: relative;
}

#cmp_46a2e9be-16ed-4468-aa3c-8516be6a23d0 .product-main {
	margin-bottom: 15px;
}

#cmp_46a2e9be-16ed-4468-aa3c-8516be6a23d0 .product-label p {
	margin: 0;
}

#cmp_46a2e9be-16ed-4468-aa3c-8516be6a23d0 .product-label .info {
	color: #333333;
	text-align: right;
	text-transform: uppercase;
}

#cmp_46a2e9be-16ed-4468-aa3c-8516be6a23d0 .product-label .meta {
	color: #333333;
	font-size: 15px;
}

#cmp_46a2e9be-16ed-4468-aa3c-8516be6a23d0 .product-rem-btn {
	position: absolute;
	right: 1%;
	top: 1%;
}

#cmp_46a2e9be-16ed-4468-aa3c-8516be6a23d0 figure {
	margin: 0 0 15px 0;
}

#cmp_46a2e9be-16ed-4468-aa3c-8516be6a23d0 .cart-subtotal {
	margin: 50px 0 0 0;
}

#cmp_46a2e9be-16ed-4468-aa3c-8516be6a23d0 .cart-subtotal h1 {
	margin: 0 0 15px 0;
}

#cmp_46a2e9be-16ed-4468-aa3c-8516be6a23d0 .cart-subtotal h3 {
	margin: 0 0 25px 0;
	text-transform: uppercase;
}

#cmp_46a2e9be-16ed-4468-aa3c-8516be6a23d0 .cart-subtotal p {
	margin: 0 0 25px 0;
}

@media (min-width: 768px) {
	#cmp_46a2e9be-16ed-4468-aa3c-8516be6a23d0 .cart-item {
		border-width: 0 0 1px 0;
	}
	#cmp_46a2e9be-16ed-4468-aa3c-8516be6a23d0 .product-rem-btn {
		top: 40%;
	}
	#cmp_46a2e9be-16ed-4468-aa3c-8516be6a23d0 figure {
		margin: 0;
	}
}

/*
 * components/view-cart/cmp_d4375329-bdf6-40b5-bace-d69e49c08104/component.css
 */
#cmp_d4375329-bdf6-40b5-bace-d69e49c08104 {
	background-color: #FFFFFF;
}

#cmp_d4375329-bdf6-40b5-bace-d69e49c08104 h1 {
	color: #333333;
	font-family: DM Serif Display;
	font-size: 40px;
}

#cmp_d4375329-bdf6-40b5-bace-d69e49c08104 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_d4375329-bdf6-40b5-bace-d69e49c08104 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_d4375329-bdf6-40b5-bace-d69e49c08104 p {
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_d4375329-bdf6-40b5-bace-d69e49c08104 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_d4375329-bdf6-40b5-bace-d69e49c08104 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_d4375329-bdf6-40b5-bace-d69e49c08104  {
	padding: 50px 0;;
}
#cmp_d4375329-bdf6-40b5-bace-d69e49c08104 h1 {
	margin-bottom: 15px;
}
/*
 * components/whats_inside/cmp_0013140d-e158-44b9-8344-19b1b4ee536a/component.css
 */
#cmp_0013140d-e158-44b9-8344-19b1b4ee536a {
	padding: 0;
}

#cmp_0013140d-e158-44b9-8344-19b1b4ee536a .hero-content {
	background-color: #FAFAFA;
	padding: 20px;
}

#cmp_0013140d-e158-44b9-8344-19b1b4ee536a .hero-content h1 {
	color: #C39D6A;
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_0013140d-e158-44b9-8344-19b1b4ee536a .hero-content h2 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 22px;
}

#cmp_0013140d-e158-44b9-8344-19b1b4ee536a .hero-content h3 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 15px;
}

#cmp_0013140d-e158-44b9-8344-19b1b4ee536a .hero-content p {
	color: #B0B0B0;
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_0013140d-e158-44b9-8344-19b1b4ee536a .hero-content .btn {
	background-color: #C39D6A;
	color: #FFFFFF;
	font-family: IBM Plex Serif;
	font-size: 12px;
}

#cmp_0013140d-e158-44b9-8344-19b1b4ee536a .hero-content .btn:hover {
	background-color: #D7BEE5;
	color: #FFFFFF;
}

#cmp_0013140d-e158-44b9-8344-19b1b4ee536a h3 {
	margin-bottom: 35px;
}
#cmp_0013140d-e158-44b9-8344-19b1b4ee536a p {
	margin-bottom: 35px;
}
/*
 * components/whats_inside/cmp_03a61ef6-0adf-4575-ae08-f13aa73d49de/component.css
 */
#cmp_03a61ef6-0adf-4575-ae08-f13aa73d49de {
	padding: 0;
}

#cmp_03a61ef6-0adf-4575-ae08-f13aa73d49de .hero-content {
	background-color: #FAFAFA;
	padding: 20px;
}

#cmp_03a61ef6-0adf-4575-ae08-f13aa73d49de .hero-content h1 {
	color: #C39D6A;
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_03a61ef6-0adf-4575-ae08-f13aa73d49de .hero-content h2 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 22px;
}

#cmp_03a61ef6-0adf-4575-ae08-f13aa73d49de .hero-content h3 {
	color: #FFFFFF;
	font-family: Lato;
	font-size: 15px;
}

#cmp_03a61ef6-0adf-4575-ae08-f13aa73d49de .hero-content p {
	color: #B0B0B0;
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_03a61ef6-0adf-4575-ae08-f13aa73d49de .hero-content .btn {
	background-color: #333333;
	color: #FFFFFF;
	font-family: IBM Plex Serif;
	font-size: 12px;
}

#cmp_03a61ef6-0adf-4575-ae08-f13aa73d49de .hero-content .btn:hover {
	background-color: #D7BEE5;
	color: #FFFFFF;
}

#cmp_03a61ef6-0adf-4575-ae08-f13aa73d49de h3 {
	margin-bottom: 35px;
}
#cmp_03a61ef6-0adf-4575-ae08-f13aa73d49de p {
	margin-bottom: 35px;
}
/*
 * components/whats_inside/cmp_17022d13-d0e7-48ef-a446-749dafdec572/component.css
 */
#cmp_17022d13-d0e7-48ef-a446-749dafdec572 {
	background-color: #FFFFFF;
}

#cmp_17022d13-d0e7-48ef-a446-749dafdec572 h1 {
	color: #333333;
	font-family: DM Serif Display;
	font-size: 40px;
}

#cmp_17022d13-d0e7-48ef-a446-749dafdec572 h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_17022d13-d0e7-48ef-a446-749dafdec572 h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_17022d13-d0e7-48ef-a446-749dafdec572 p {
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_17022d13-d0e7-48ef-a446-749dafdec572 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_17022d13-d0e7-48ef-a446-749dafdec572 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_17022d13-d0e7-48ef-a446-749dafdec572  {
	padding-top: 60px;
}
#cmp_17022d13-d0e7-48ef-a446-749dafdec572 h1 {
	margin-bottom: 15px;
}
/*
 * components/whats_inside/cmp_414f8de1-48f8-4ac3-a809-651855c0a0ed/component.css
 */
#cmp_414f8de1-48f8-4ac3-a809-651855c0a0ed {
	background-color: #FFFFFF;
}

#cmp_414f8de1-48f8-4ac3-a809-651855c0a0ed h1 {
	color: #333333;
	font-family: DM Serif Display;
	font-size: 40px;
}

#cmp_414f8de1-48f8-4ac3-a809-651855c0a0ed h2 {
	color: #333333;
	font-family: Lato;
	font-size: 22px;
}

#cmp_414f8de1-48f8-4ac3-a809-651855c0a0ed h3 {
	color: #333333;
	font-family: Lato;
	font-size: 15px;
}

#cmp_414f8de1-48f8-4ac3-a809-651855c0a0ed p {
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_414f8de1-48f8-4ac3-a809-651855c0a0ed .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_414f8de1-48f8-4ac3-a809-651855c0a0ed .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_414f8de1-48f8-4ac3-a809-651855c0a0ed .btn {
	background-color: #C39D6A;
	color: #FFFFFF;
	font-family: IBM Plex Serif;
	font-size: 12px;
}

#cmp_414f8de1-48f8-4ac3-a809-651855c0a0ed .btn:hover {
	background-color: #D7BEE5;
	color: #FFFFFF;
}

#cmp_414f8de1-48f8-4ac3-a809-651855c0a0ed ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_414f8de1-48f8-4ac3-a809-651855c0a0ed ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(12, 37, 138);
	font-family: IBM Plex Serif;
	font-size: 13px;
}

#cmp_414f8de1-48f8-4ac3-a809-651855c0a0ed  {
	padding: 60px 0;
}
#cmp_414f8de1-48f8-4ac3-a809-651855c0a0ed h3 {
	margin-bottom: 35px;
}
#cmp_414f8de1-48f8-4ac3-a809-651855c0a0ed p {
	margin-bottom: 35px;
}