/*
 * css/style.css
 */
/* Globals
------------------------------*/
body {
	background-color: rgb(255, 255, 255);
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
	line-height: 1.5em;
}

.container-fluid {
  
	max-width: 1406px;
}

h1 {
	color: rgb(255, 190, 181);
	font-family: Amatic SC;
	font-size: 48px;
	letter-spacing: 1px;
	line-height: 1;
	margin: 0 0 25px 0;
}

h2 {
	color: rgb(255, 190, 181);
	font-family: Didact Gothic;
	font-size: 32px;
	margin: 0 0 25px 0;
}

h3 {
	color: rgb(0, 0, 0);
	font-family: Josefin Slab;
	font-size: 24px;
	margin: 0 0 25px 0;
}

p {
	line-height: 1.5em;
	margin: 0 0 15px 0;
}

a,
.btn-link {
	color: rgb(128, 197, 188);
}

a:hover,
a:focus,
a:active,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
	color: rgb(255, 253, 219);
}

/* General Component Styles */
section[class^="component"] {
	padding: 60px 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 {
	padding: 0;
	position: relative;

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



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



.slide-feed { float: left; position: relative; width: 100%; margin-bottom: 30px;}
.slide-feed #instafeed a { box-shadow: 0 0 1px 0 hsla(0, 0%, 0%, 0.5), 0 1px 10px 0 hsla(0, 0%, 0%, 0.15); float: left; margin: 1%; padding: 16px; width: 23%;}
.slide-feed #instafeed a img { width: 100%;}
.slide-feed #instafeed a img { height: 220px;}
.slide-feed #instafeed a img:hover { opacity:0.8;}



/*
* 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%;
	-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(128, 197, 188);
}

.panel {
	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);
	margin: 0 0 20px 0;
}

.panel-body {
	padding: 15px;
}

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

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

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

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

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

/* Buttons */
.btn {
	border-radius: 0;
	border: none;
	font-size: 14px;
	letter-spacing: 0.077em;
	padding: 1em 3em;
}

.btn-small {
	border: 2px solid rgb(255, 190, 181);
	color: rgb(255, 190, 181);
	padding: 0.6em 1.8em;
}

.btn-small:hover,
.btn-small:focus,
.btn-small:active,
.btn-small:active:focus {
	background-color: rgb(128, 197, 188);
	border-color: rgb(128, 197, 188);
}

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

.btn-primary {
	background-color: rgb(128, 197, 188);
	color: #FFFFFF;
	font-family: Didact Gothic;
	font-size: 14px;
	letter-spacing: 0.167em;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus {
	background-color: rgb(255, 253, 219);
	color: #FFFFFF;
}

.btn-secondary {
	background-color: rgb(255, 190, 181);
	color: #FFFFFF;
	font-family: Didact Gothic;
	font-size: 14px;
	letter-spacing: 0.167em;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:active:focus {
	background-color: rgb(255, 253, 219);
	color: #FFFFFF;
}

.btn-empty {
	background-color: transparent;
	border: 1px solid rgb(255, 190, 181);
	color: rgb(255, 190, 181);
}

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

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

/* Subscribe Flow
------------------------------*/
.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;
}

.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: .9375rem 0;
}

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

	border: 1px solid #E1E1E1;
	margin: 20px;
	text-align: center;
	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%;
}

/* Survey Forms
------------------------------*/
.survey h2 {
	margin: 0 0 1em 0;
}

.survey .radio input[type="radio"],
.survey .checkbox input[type="checkbox"] {
	margin: 0 0.5em 0 0;
}

/* Sold Out
------------------------------*/
.sold-out-image {
	height: 171px;
	width: 195px;
	margin: auto;
	margin-bottom: 38px;
}

/* Checkout
------------------------------*/
.checkout_content {
	margin-top: 0;
	overflow: auto;
}

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

.checkout_content #checkout_button {
	background-color: rgb(128, 197, 188);
	border: none;
	color: #FFFFFF;
	font-family: Didact Gothic;
	font-size: 14px;
	letter-spacing: 0.167em;
	padding: 1.2em 5em;
}

.checkout_content #checkout_button:hover,
.checkout_content #checkout_button:focus,
.checkout_content #checkout_button:active,
.checkout_content #checkout_button:active:focus {
	background-color: rgb(255, 253, 219);
	color: #FFFFFF;
}

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

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

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

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

.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(255, 190, 181);
}

.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(128, 197, 188);
	color: rgb(128, 197, 188);
	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(255, 253, 219);
	border-color: rgb(255, 253, 219);
	text-decoration: none;
}

/*Group Slider code start*/
*{
	box-sizing: border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
}
.bxslider-ohbabyboxes .slide-left-section {
    width: 50%;
    float: left;
}

.bxslider-ohbabyboxes .slide-left-section .inner-top .thumb {
    float: left;
    width: 50%;
}

.bxslider-ohbabyboxes .slide-right-section {
    float: right;
    width: 50%;
}

.bxslider-ohbabyboxes .single-bottom .thumb img {
    width: 100%;
}
.bxslider-ohbabyboxes .inner-bottom .thumb {
    width: 50%;
    float: left;
}
.bxslider-ohbabyboxes .thumb img {
    max-width: 100%;
    margin: 0px;
    width: 100%;
    padding: 5px;
}
section#cmp_06d09680-2764-489d-96d0-32a286b737cf .bx-wrapper .bx-next {
    right: -50px;
}

section#cmp_06d09680-2764-489d-96d0-32a286b737cf .bx-wrapper .bx-prev {
    left: -50px;
}
section#cmp_06d09680-2764-489d-96d0-32a286b737cf {
    margin: 0px;
}

section#cmp_06d09680-2764-489d-96d0-32a286b737cf .content.row {
    margin: 0px auto;
    width: 85%;
}
div#ohbabyboxes-image-group-slider .bx-wrapper {
    margin-bottom: 0px;
    border: none;
    box-shadow: none;
}

@media only screen and (max-width: 767px){
    section#cmp_06d09680-2764-489d-96d0-32a286b737cf .slide-left-section .inner-top .thumb,
    section#cmp_06d09680-2764-489d-96d0-32a286b737cf .slide-left-section, 
    section#cmp_06d09680-2764-489d-96d0-32a286b737cf .slide-right-section, 
    section#cmp_06d09680-2764-489d-96d0-32a286b737cf .inner-bottom .thumb{
        width: 100% !important;
        float: none !important;
    }
    section#cmp_06d09680-2764-489d-96d0-32a286b737cf .bx-viewport {
        overflow: visible !important;
    }  
    section#cmp_06d09680-2764-489d-96d0-32a286b737cf .bx-wrapper {
       /* overflow: -webkit-paged-x;*/
    }
    section#cmp_06d09680-2764-489d-96d0-32a286b737cf .bx-wrapper .bx-controls-direction a {
        overflow: visible;
        top: 50% !important;
        position: absolute;
       transform:translatey(-50%);
    }
  /*section#cmp_06d09680-2764-489d-96d0-32a286b737cf .bx-wrapper .bx-prev {
      left: 35%;
  }

  section#cmp_06d09680-2764-489d-96d0-32a286b737cf .bx-wrapper .bx-next {
      right: 35%;
  }*/
  section#cmp_06d09680-2764-489d-96d0-32a286b737cf .bx-wrapper .bx-controls-direction a.bx-next {
    right: -30px;
}

section#cmp_06d09680-2764-489d-96d0-32a286b737cf .bx-wrapper .bx-controls-direction a.bx-prev {
    left: -30px;
}
  section#cmp_06d09680-2764-489d-96d0-32a286b737cf .content.row{
  width:100%;
  }
}


/* Media Queries
------------------------------*/
@media (max-width: 767px) {
	section[class^="component"] {
		padding: 40px 0;
	}
	/* 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;
	}
}



.insta-section {
    width: 100%;
    margin: 0 auto 70px auto;
    text-align: center;
}
.insta-feeds.laptop, .insta-feeds.tablet, .insta-feeds.mobile {
  	display: none;
}
.insta-feeds.desktop iframe {
    height: 600px !important;
}
.insta-feeds.laptop iframe {
    height: 524px !important;
}
.insta-feeds.tablet iframe {
    height: 780px !important;
}
.insta-feeds.mobile iframe {
    height: 656px !important;
}

@media screen and (max-width: 1110px) {
  	.insta-feeds.desktop {
        display: none;
    }
  	.insta-feeds.laptop {
        display: block;
    }
    .insta-section {
        width: 100%;
    }
}

@media screen and (max-width: 991px) {
  	.insta-feeds.laptop {
        display: none;
    }
  	.insta-feeds.tablet {
        display: block;
    }
    .insta-section {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
  	.insta-feeds.tablet {
        display: none;
    }
  	.insta-feeds.mobile {
        display: block;
    }
    .insta-section {
        width: 99%;
    }
}
/*
 * components/about/cmp_4f723b42-7462-46c2-800a-db9f455254b7/component.css
 */
#cmp_4f723b42-7462-46c2-800a-db9f455254b7 {
	background-color: rgb(255, 255, 255);
}

#cmp_4f723b42-7462-46c2-800a-db9f455254b7 h1 {
	color: rgb(255, 190, 181);
	font-family: Amatic SC;
	font-size: 48px;
}

#cmp_4f723b42-7462-46c2-800a-db9f455254b7 h2 {
	color: rgb(255, 190, 181);
	font-family: Didact Gothic;
	font-size: 32px;
}

#cmp_4f723b42-7462-46c2-800a-db9f455254b7 h3 {
	color: rgb(0, 0, 0);
	font-family: Josefin Slab;
	font-size: 24px;
}

#cmp_4f723b42-7462-46c2-800a-db9f455254b7 p {
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_4f723b42-7462-46c2-800a-db9f455254b7 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_4f723b42-7462-46c2-800a-db9f455254b7 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

#cmp_4f723b42-7462-46c2-800a-db9f455254b7 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

/*
 * components/about/cmp_535258e6-fa59-4fd2-b2b5-a8c350e3f179/component.css
 */
#cmp_535258e6-fa59-4fd2-b2b5-a8c350e3f179 {
	background-color: #FFFFFF;
}

#cmp_535258e6-fa59-4fd2-b2b5-a8c350e3f179 .content-row {
	margin: 0;

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

#cmp_535258e6-fa59-4fd2-b2b5-a8c350e3f179 .content {
	background-color: rgb(255, 255, 255);
	border: 5px solid rgb(255, 255, 255);
	margin: 15px 0;
	padding: 25px;

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

#cmp_535258e6-fa59-4fd2-b2b5-a8c350e3f179 .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_535258e6-fa59-4fd2-b2b5-a8c350e3f179 h1 {
	color: rgb(255, 190, 181);
	font-family: Amatic SC;
	font-size: 48px;
}

#cmp_535258e6-fa59-4fd2-b2b5-a8c350e3f179 h2 {
	color: rgb(255, 190, 181);
	font-family: Didact Gothic;
	font-size: 32px;
}

#cmp_535258e6-fa59-4fd2-b2b5-a8c350e3f179 h3 {
	color: rgb(0, 0, 0);
	font-family: Josefin Slab;
	font-size: 24px;
}

#cmp_535258e6-fa59-4fd2-b2b5-a8c350e3f179 p {
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_535258e6-fa59-4fd2-b2b5-a8c350e3f179 .content {
		margin: 15px;
	}
}
#cmp_535258e6-fa59-4fd2-b2b5-a8c350e3f179  {
	padding-top: 0;
}
/*
 * components/about/cmp_ea8aa70a-9eae-4ce6-850f-ca0aba6920b5/component.css
 */
#cmp_ea8aa70a-9eae-4ce6-850f-ca0aba6920b5 {
	background-color: rgb(255, 251, 251);
}

#cmp_ea8aa70a-9eae-4ce6-850f-ca0aba6920b5 h1 {
	color: rgb(255, 190, 181);
	font-family: Amatic SC;
	font-size: 48px;
}

#cmp_ea8aa70a-9eae-4ce6-850f-ca0aba6920b5 h2 {
	color: rgb(255, 190, 181);
	font-family: Nothing You Could Do;
	font-size: 32px;
}

#cmp_ea8aa70a-9eae-4ce6-850f-ca0aba6920b5 h3 {
	color: rgb(0, 0, 0);
	font-family: Josefin Slab;
	font-size: 24px;
}

#cmp_ea8aa70a-9eae-4ce6-850f-ca0aba6920b5 p {
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_ea8aa70a-9eae-4ce6-850f-ca0aba6920b5 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_ea8aa70a-9eae-4ce6-850f-ca0aba6920b5 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

#cmp_ea8aa70a-9eae-4ce6-850f-ca0aba6920b5 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

#cmp_ea8aa70a-9eae-4ce6-850f-ca0aba6920b5  {
	padding-bottom: 0;
}
/*
 * components/about/cmp_fc1e62d8-980a-42c7-98fb-25e2cb38ab1b/component.css
 */
#cmp_fc1e62d8-980a-42c7-98fb-25e2cb38ab1b {
	background-color: rgb(255, 251, 251);
}

#cmp_fc1e62d8-980a-42c7-98fb-25e2cb38ab1b h1 {
	color: rgb(0, 0, 0);
	font-family: Amatic SC;
	font-size: 48px;
}

#cmp_fc1e62d8-980a-42c7-98fb-25e2cb38ab1b h2 {
	color: rgb(0, 0, 0);
	font-family: Didact Gothic;
	font-size: 32px;
}

#cmp_fc1e62d8-980a-42c7-98fb-25e2cb38ab1b h3 {
	color: rgb(0, 0, 0);
	font-family: Josefin Slab;
	font-size: 24px;
}

#cmp_fc1e62d8-980a-42c7-98fb-25e2cb38ab1b p {
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}


#cmp_fc1e62d8-980a-42c7-98fb-25e2cb38ab1b .btn {
	background-color: rgb(128, 197, 188);
	color: #FFFFFF;
	font-family: Didact Gothic;
	font-size: 14px;
}

#cmp_fc1e62d8-980a-42c7-98fb-25e2cb38ab1b .btn:hover {
	background-color: rgb(255, 253, 219);
	color: #FFFFFF;
}

#cmp_fc1e62d8-980a-42c7-98fb-25e2cb38ab1b .component-rich-text-with-button__content-row,
#cmp_fc1e62d8-980a-42c7-98fb-25e2cb38ab1b .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_fc1e62d8-980a-42c7-98fb-25e2cb38ab1b .component-rich-text-with-button__content-row,
	#cmp_fc1e62d8-980a-42c7-98fb-25e2cb38ab1b .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_fc1e62d8-980a-42c7-98fb-25e2cb38ab1b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

#cmp_fc1e62d8-980a-42c7-98fb-25e2cb38ab1b ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

/*
 * components/checkout/cmp_1dbb376b-c2d3-4f12-9747-1a9a03f069fc/component.css
 */
#cmp_1dbb376b-c2d3-4f12-9747-1a9a03f069fc .checkout_content {
	overflow: auto;
}

#cmp_1dbb376b-c2d3-4f12-9747-1a9a03f069fc .checkout_content section {
	border-color: #F5F5F5;
}

#cmp_1dbb376b-c2d3-4f12-9747-1a9a03f069fc .cart_listing table {
	border-color: #F5F5F5;
}

/*
 * components/checkout/cmp_3187add0-3f22-48a9-b621-6766034a175a/component.css
 */
#cmp_3187add0-3f22-48a9-b621-6766034a175a {
	background-color: rgb(255, 255, 255);
}

#cmp_3187add0-3f22-48a9-b621-6766034a175a h1 {
	color: rgb(255, 190, 181);
	font-family: Amatic SC;
	font-size: 48px;
}

#cmp_3187add0-3f22-48a9-b621-6766034a175a h2 {
	color: rgb(255, 190, 181);
	font-family: Didact Gothic;
	font-size: 32px;
}

#cmp_3187add0-3f22-48a9-b621-6766034a175a h3 {
	color: rgb(0, 0, 0);
	font-family: Josefin Slab;
	font-size: 24px;
}

#cmp_3187add0-3f22-48a9-b621-6766034a175a p {
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_3187add0-3f22-48a9-b621-6766034a175a .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_3187add0-3f22-48a9-b621-6766034a175a ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

#cmp_3187add0-3f22-48a9-b621-6766034a175a ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

/*
 * components/customer/account/cmp_1777b5b3-6a0d-4c73-8710-a0a5a8ad8387/component.css
 */

/*
 * components/customer/edit/cmp_d2d6476f-d40d-4a2e-97a1-5f27a78d5df1/component.css
 */

/*
 * components/customer/forgot_password/cmp_65e18a2b-e810-4bbc-acac-742f507ca257/component.css
 */
#cmp_65e18a2b-e810-4bbc-acac-742f507ca257 {
	background-color: rgb(255, 255, 255);
}

#cmp_65e18a2b-e810-4bbc-acac-742f507ca257 h1 {
	color: rgb(255, 190, 181);
	font-family: Amatic SC;
	font-size: 48px;
}

#cmp_65e18a2b-e810-4bbc-acac-742f507ca257 h2 {
	color: rgb(255, 190, 181);
	font-family: Didact Gothic;
	font-size: 32px;
}

#cmp_65e18a2b-e810-4bbc-acac-742f507ca257 h3 {
	color: rgb(0, 0, 0);
	font-family: Josefin Slab;
	font-size: 24px;
}

#cmp_65e18a2b-e810-4bbc-acac-742f507ca257 p {
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_65e18a2b-e810-4bbc-acac-742f507ca257 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_65e18a2b-e810-4bbc-acac-742f507ca257 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

#cmp_65e18a2b-e810-4bbc-acac-742f507ca257 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

/*
 * components/customer/forgot_password/cmp_de6c53bf-4ffd-4fc4-82e9-1d7aa9041b6f/component.css
 */
#cmp_de6c53bf-4ffd-4fc4-82e9-1d7aa9041b6f {
	padding: 0 0 120px 0;
}
/*
 * components/customer/login/cmp_08a64b29-f9bd-4f8b-8d45-351c46ed74d3/component.css
 */
#cmp_08a64b29-f9bd-4f8b-8d45-351c46ed74d3 {
	padding: 0 0 120px 0;
}
/*
 * components/customer/login/cmp_64a947bb-54e6-4807-be10-c8ce716680a3/component.css
 */
#cmp_64a947bb-54e6-4807-be10-c8ce716680a3 {
	background-color: rgb(255, 255, 255);
}

#cmp_64a947bb-54e6-4807-be10-c8ce716680a3 h1 {
	color: rgb(255, 190, 181);
	font-family: Amatic SC;
	font-size: 48px;
}

#cmp_64a947bb-54e6-4807-be10-c8ce716680a3 h2 {
	color: rgb(255, 190, 181);
	font-family: Didact Gothic;
	font-size: 32px;
}

#cmp_64a947bb-54e6-4807-be10-c8ce716680a3 h3 {
	color: rgb(0, 0, 0);
	font-family: Josefin Slab;
	font-size: 24px;
}

#cmp_64a947bb-54e6-4807-be10-c8ce716680a3 p {
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_64a947bb-54e6-4807-be10-c8ce716680a3 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_64a947bb-54e6-4807-be10-c8ce716680a3 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

#cmp_64a947bb-54e6-4807-be10-c8ce716680a3 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

/*
 * components/customer/order/cmp_aae3a833-46dd-4006-b7fa-dc90045bce5e/component.css
 */

/*
 * components/customer/password_reset/cmp_39d61e6f-401a-44c6-9623-28d3aa2955d6/component.css
 */
#cmp_39d61e6f-401a-44c6-9623-28d3aa2955d6 {
	background-color: rgb(255, 255, 255);
}

#cmp_39d61e6f-401a-44c6-9623-28d3aa2955d6 h1 {
	color: rgb(255, 190, 181);
	font-family: Amatic SC;
	font-size: 48px;
}

#cmp_39d61e6f-401a-44c6-9623-28d3aa2955d6 h2 {
	color: rgb(255, 190, 181);
	font-family: Didact Gothic;
	font-size: 32px;
}

#cmp_39d61e6f-401a-44c6-9623-28d3aa2955d6 h3 {
	color: rgb(0, 0, 0);
	font-family: Josefin Slab;
	font-size: 24px;
}

#cmp_39d61e6f-401a-44c6-9623-28d3aa2955d6 p {
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_39d61e6f-401a-44c6-9623-28d3aa2955d6 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_39d61e6f-401a-44c6-9623-28d3aa2955d6 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

#cmp_39d61e6f-401a-44c6-9623-28d3aa2955d6 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

/*
 * components/customer/password_reset/cmp_eac5251a-7ef1-4499-9f5c-b77950fdd60e/component.css
 */
#cmp_eac5251a-7ef1-4499-9f5c-b77950fdd60e {
	padding: 0 0 120px 0;
}
/*
 * components/customer/thank_you/cmp_28a64052-6c13-48de-98e1-5b6fd950561c/component.css
 */

/*
 * components/customer/thank_you/cmp_d11d764b-27c2-45b1-89c1-697482577a91/component.css
 */
#cmp_d11d764b-27c2-45b1-89c1-697482577a91 {
	background-color: rgb(255, 255, 255);
}

#cmp_d11d764b-27c2-45b1-89c1-697482577a91 h1 {
	color: rgb(255, 190, 181);
	font-family: Amatic SC;
	font-size: 48px;
}

#cmp_d11d764b-27c2-45b1-89c1-697482577a91 h2 {
	color: rgb(255, 190, 181);
	font-family: Didact Gothic;
	font-size: 32px;
}

#cmp_d11d764b-27c2-45b1-89c1-697482577a91 h3 {
	color: rgb(0, 0, 0);
	font-family: Josefin Slab;
	font-size: 24px;
}

#cmp_d11d764b-27c2-45b1-89c1-697482577a91 p {
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_d11d764b-27c2-45b1-89c1-697482577a91 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_d11d764b-27c2-45b1-89c1-697482577a91 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

#cmp_d11d764b-27c2-45b1-89c1-697482577a91 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

/*
 * components/emailsuccess/cmp_86f9a308-fbf4-4c3a-8bb3-0243277a1871/component.css
 */
#cmp_86f9a308-fbf4-4c3a-8bb3-0243277a1871 {
	background-color: rgb(255, 255, 255);
}

#cmp_86f9a308-fbf4-4c3a-8bb3-0243277a1871 h1 {
	color: rgb(255, 190, 181);
	font-family: Amatic SC;
	font-size: 48px;
}

#cmp_86f9a308-fbf4-4c3a-8bb3-0243277a1871 h2 {
	color: rgb(255, 190, 181);
	font-family: Didact Gothic;
	font-size: 32px;
}

#cmp_86f9a308-fbf4-4c3a-8bb3-0243277a1871 h3 {
	color: rgb(0, 0, 0);
	font-family: Josefin Slab;
	font-size: 24px;
}

#cmp_86f9a308-fbf4-4c3a-8bb3-0243277a1871 p {
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_86f9a308-fbf4-4c3a-8bb3-0243277a1871 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_86f9a308-fbf4-4c3a-8bb3-0243277a1871 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

#cmp_86f9a308-fbf4-4c3a-8bb3-0243277a1871 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

/*
 * components/faq/cmp_994068e1-5d49-463a-afb6-97d6b75b7e40/component.css
 */
#cmp_994068e1-5d49-463a-afb6-97d6b75b7e40 {
	background-color: rgb(255, 255, 255);
}

#cmp_994068e1-5d49-463a-afb6-97d6b75b7e40 h1 {
	color: rgb(255, 190, 181);
	font-family: Amatic SC;
	font-size: 48px;
}

#cmp_994068e1-5d49-463a-afb6-97d6b75b7e40 h2 {
	color: rgb(255, 190, 181);
	font-family: Didact Gothic;
	font-size: 32px;
}

#cmp_994068e1-5d49-463a-afb6-97d6b75b7e40 h3 {
	color: #000000;
	font-family: Josefin Slab;
	font-size: 24px;
}

#cmp_994068e1-5d49-463a-afb6-97d6b75b7e40 p {
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_994068e1-5d49-463a-afb6-97d6b75b7e40 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_994068e1-5d49-463a-afb6-97d6b75b7e40 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

#cmp_994068e1-5d49-463a-afb6-97d6b75b7e40 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

#cmp_994068e1-5d49-463a-afb6-97d6b75b7e40 h2 {
	margin: 0 0 40px 0;
}
#cmp_994068e1-5d49-463a-afb6-97d6b75b7e40 p {
	border-bottom: 1px solid #EEEEEE;
	padding: 0 0 25px 0;
}
/*
 * components/faq/cmp_d70bb405-9c1d-43fd-862d-bbab06e34aff/component.css
 */
#cmp_d70bb405-9c1d-43fd-862d-bbab06e34aff {
	background-color: rgb(255, 251, 249);
}

#cmp_d70bb405-9c1d-43fd-862d-bbab06e34aff h1 {
	color: rgb(255, 190, 181);
	font-family: Amatic SC;
	font-size: 48px;
}

#cmp_d70bb405-9c1d-43fd-862d-bbab06e34aff h2 {
	color: rgb(255, 190, 181);
	font-family: Didact Gothic;
	font-size: 32px;
}

#cmp_d70bb405-9c1d-43fd-862d-bbab06e34aff h3 {
	color: rgb(0, 0, 0);
	font-family: Josefin Slab;
	font-size: 24px;
}

#cmp_d70bb405-9c1d-43fd-862d-bbab06e34aff p {
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}


#cmp_d70bb405-9c1d-43fd-862d-bbab06e34aff .btn {
	background-color: rgb(128, 197, 188);
	color: #FFFFFF;
	font-family: Didact Gothic;
	font-size: 14px;
}

#cmp_d70bb405-9c1d-43fd-862d-bbab06e34aff .btn:hover {
	background-color: rgb(255, 253, 219);
	color: #FFFFFF;
}

#cmp_d70bb405-9c1d-43fd-862d-bbab06e34aff .component-rich-text-with-button__content-row,
#cmp_d70bb405-9c1d-43fd-862d-bbab06e34aff .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_d70bb405-9c1d-43fd-862d-bbab06e34aff .component-rich-text-with-button__content-row,
	#cmp_d70bb405-9c1d-43fd-862d-bbab06e34aff .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_d70bb405-9c1d-43fd-862d-bbab06e34aff ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

#cmp_d70bb405-9c1d-43fd-862d-bbab06e34aff ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

/*
 * components/global/cmp_4e95b43e-a2cb-421b-bd9b-eba350d94517/component.css
 */
#cmp_4e95b43e-a2cb-421b-bd9b-eba350d94517.footer {
	background-color: rgb(255, 190, 181);
	color: rgb(255, 255, 255);
	font-family: Didact Gothic;
	padding: 25px 0;

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

#cmp_4e95b43e-a2cb-421b-bd9b-eba350d94517.footer p {
	color: rgb(255, 255, 255);
}

#cmp_4e95b43e-a2cb-421b-bd9b-eba350d94517 .footer-subscribe {
	padding: 15px 0;
}

#cmp_4e95b43e-a2cb-421b-bd9b-eba350d94517 .footer-subscribe .btn {
	border: 1px solid #FFFFFF;
}

#cmp_4e95b43e-a2cb-421b-bd9b-eba350d94517 .footer-social {
	padding: 15px 0;
}

#cmp_4e95b43e-a2cb-421b-bd9b-eba350d94517 .footer-social a {
	display: inline-block;
	padding: 0 5px;
}

#cmp_4e95b43e-a2cb-421b-bd9b-eba350d94517 .footer-social svg path {
	fill: rgb(255, 255, 255);
}

#cmp_4e95b43e-a2cb-421b-bd9b-eba350d94517 .footer-social a:hover svg path,
#cmp_4e95b43e-a2cb-421b-bd9b-eba350d94517 .footer-social a:focus svg path,
#cmp_4e95b43e-a2cb-421b-bd9b-eba350d94517 .footer-social a:active svg path {
	fill: rgb(255, 253, 219);
}

#cmp_4e95b43e-a2cb-421b-bd9b-eba350d94517 .footer-contact {
	padding: 15px 0;

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

#cmp_4e95b43e-a2cb-421b-bd9b-eba350d94517 .footer-contact p {
	margin: 0 0 0.5em 0;
}

@media (min-width: 768px) {
	#cmp_4e95b43e-a2cb-421b-bd9b-eba350d94517.footer {
		padding: 40px 0;

		-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;
	}
}

/*
 * components/global/cmp_d0365ebc-da94-4281-8a85-61dc65b6d325/component.css
 */
#cmp_d0365ebc-da94-4281-8a85-61dc65b6d325 {
	background-color: rgb(255, 255, 255);
}

#cmp_d0365ebc-da94-4281-8a85-61dc65b6d325 h1 {
	color: rgb(255, 190, 181);
	font-family: Amatic SC;
	font-size: 48px;
}

#cmp_d0365ebc-da94-4281-8a85-61dc65b6d325 h2 {
	color: rgb(255, 190, 181);
	font-family: Didact Gothic;
	font-size: 32px;
}

#cmp_d0365ebc-da94-4281-8a85-61dc65b6d325 h3 {
	color: rgb(0, 0, 0);
	font-family: Josefin Slab;
	font-size: 24px;
}

#cmp_d0365ebc-da94-4281-8a85-61dc65b6d325 p {
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}


#cmp_d0365ebc-da94-4281-8a85-61dc65b6d325 .btn {
	background-color: rgb(128, 197, 188);
	color: #FFFFFF;
	font-family: Didact Gothic;
	font-size: 14px;
}

#cmp_d0365ebc-da94-4281-8a85-61dc65b6d325 .btn:hover {
	background-color: rgb(255, 253, 219);
	color: #FFFFFF;
}

#cmp_d0365ebc-da94-4281-8a85-61dc65b6d325 .component-rich-text-with-button__content-row,
#cmp_d0365ebc-da94-4281-8a85-61dc65b6d325 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_d0365ebc-da94-4281-8a85-61dc65b6d325 .component-rich-text-with-button__content-row,
	#cmp_d0365ebc-da94-4281-8a85-61dc65b6d325 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_d0365ebc-da94-4281-8a85-61dc65b6d325 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

#cmp_d0365ebc-da94-4281-8a85-61dc65b6d325 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

#cmp_d0365ebc-da94-4281-8a85-61dc65b6d325  {
	padding-top: 0;
}
/*
 * components/global/cmp_d1069f7a-731a-4d9c-8676-39b04b7d57c1/component.css
 */
#cmp_d1069f7a-731a-4d9c-8676-39b04b7d57c1 {
	border-bottom: 4px solid rgb(255, 255, 255);
	padding: 0;
}

#cmp_d1069f7a-731a-4d9c-8676-39b04b7d57c1 .navbar {
	background-color: rgb(255, 255, 255);
	border-radius: 0;
	padding: 0;

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

#cmp_d1069f7a-731a-4d9c-8676-39b04b7d57c1 .navbar a:hover,
#cmp_d1069f7a-731a-4d9c-8676-39b04b7d57c1 .navbar a:focus,
#cmp_d1069f7a-731a-4d9c-8676-39b04b7d57c1 .navbar a:active {
	color: rgb(255, 253, 219);
}

#cmp_d1069f7a-731a-4d9c-8676-39b04b7d57c1 .navbar-brand {
	color: #000000;
	font-family: Josefin Slab;
	font-size: 24px;
	margin: 0;
	max-width: 100%;
	padding: 15px;
	text-align: 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;

	-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;
}

#cmp_d1069f7a-731a-4d9c-8676-39b04b7d57c1 .navbar-brand img {
	max-width: 100%;
}

#cmp_d1069f7a-731a-4d9c-8676-39b04b7d57c1 .navbar .navbar-toggler {
	background-color: rgb(128, 197, 188);
	border-radius: 0;
	color: #FFFFFF;
	font-size: 14px;
	letter-spacing: 0.071em;
	padding: 15px;
	text-transform: uppercase;
}

#cmp_d1069f7a-731a-4d9c-8676-39b04b7d57c1 .navbar .navbar-toggler:hover,
#cmp_d1069f7a-731a-4d9c-8676-39b04b7d57c1 .navbar .navbar-toggler:focus,
#cmp_d1069f7a-731a-4d9c-8676-39b04b7d57c1 .navbar .navbar-toggler:active {
	background-color: rgb(255, 253, 219);
	color: #FFFFFF;
}

#cmp_d1069f7a-731a-4d9c-8676-39b04b7d57c1 .navbar-nav {
	background-color: rgb(128, 197, 188);
	margin: 0;
	padding-top: 15px;
	padding-bottom: 15px;

	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-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

#cmp_d1069f7a-731a-4d9c-8676-39b04b7d57c1 .navbar-nav li {
	padding-top: 10px;
	padding-bottom: 10px;
}

#cmp_d1069f7a-731a-4d9c-8676-39b04b7d57c1 .navbar-nav .nav-link {
	color: #FFFFFF;
	font-family: Poppins;
	font-size: 14px;;
	letter-spacing: 0.071em;
	padding: 15px;
	text-align: center;
	text-transform: uppercase;
}

@media (max-width: 767px) {
	#cmp_d1069f7a-731a-4d9c-8676-39b04b7d57c1 {
		border-width: 0;
	}
	#cmp_d1069f7a-731a-4d9c-8676-39b04b7d57c1 .dropdown-menu {
		background-color: rgb(128, 197, 188);
	}
}

@media (min-width: 768px) {
	#cmp_d1069f7a-731a-4d9c-8676-39b04b7d57c1 .navbar {
		padding: 15px;
		padding-bottom: 0;

		-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;
	}
	#cmp_d1069f7a-731a-4d9c-8676-39b04b7d57c1 .navbar-brand {
		padding: 0;
		padding-bottom: 15px;
	}
	#cmp_d1069f7a-731a-4d9c-8676-39b04b7d57c1 .navbar-toggleable-sm {
		-webkit-flex-shrink: 1;
		-moz-flex-shrink: 1;
		-ms-flex-shrink: 1;
		flex-shrink: 1;

		-webkit-flex-grow: 2;
		-moz-flex-grow: 2;
		-ms-flex-grow: 2;
		flex-grow: 2;
	}
	#cmp_d1069f7a-731a-4d9c-8676-39b04b7d57c1 .navbar-nav {
		background-color: rgb(255, 255, 255);
		padding: 0;
		padding-bottom: 15px;
		
		-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;
	}
	#cmp_d1069f7a-731a-4d9c-8676-39b04b7d57c1 .navbar-nav li {
		padding: 0;
	}
	#cmp_d1069f7a-731a-4d9c-8676-39b04b7d57c1 .navbar-nav .nav-link {
		color: rgb(0, 0, 0);
	}
	#cmp_d1069f7a-731a-4d9c-8676-39b04b7d57c1 .navbar a:hover,
	#cmp_d1069f7a-731a-4d9c-8676-39b04b7d57c1 .navbar a:focus,
	#cmp_d1069f7a-731a-4d9c-8676-39b04b7d57c1 .navbar a:active {
		color: rgb(255, 190, 181);
	}
}

/*
 * components/howitworks/cmp_73087527-dd7d-4d05-8c8c-d586e760386a/component.css
 */
#cmp_73087527-dd7d-4d05-8c8c-d586e760386a {
	background-color: rgb(255, 255, 255);
}

#cmp_73087527-dd7d-4d05-8c8c-d586e760386a .content-row {
	margin: 0;

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

#cmp_73087527-dd7d-4d05-8c8c-d586e760386a .content {
	background-color: rgb(255, 255, 255);
	border: 5px solid rgb(255, 255, 255);
	margin: 15px 0;
	padding: 25px;

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

#cmp_73087527-dd7d-4d05-8c8c-d586e760386a .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_73087527-dd7d-4d05-8c8c-d586e760386a h1 {
	color: rgb(255, 190, 181);
	font-family: Amatic SC;
	font-size: 48px;
}

#cmp_73087527-dd7d-4d05-8c8c-d586e760386a h2 {
	color: rgb(255, 190, 181);
	font-family: Didact Gothic;
	font-size: 32px;
}

#cmp_73087527-dd7d-4d05-8c8c-d586e760386a h3 {
	color: rgb(0, 0, 0);
	font-family: Josefin Slab;
	font-size: 24px;
}

#cmp_73087527-dd7d-4d05-8c8c-d586e760386a p {
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_73087527-dd7d-4d05-8c8c-d586e760386a .content {
		margin: 15px;
	}
}
/*
 * components/howitworks/cmp_74783f0e-80db-4a60-9372-3f7733820d96/component.css
 */
#cmp_74783f0e-80db-4a60-9372-3f7733820d96 {
	background-color: rgb(255, 255, 255);
	padding: 0;
}

#cmp_74783f0e-80db-4a60-9372-3f7733820d96 .content {
	margin: 0 auto;
	padding: 25px;
}

#cmp_74783f0e-80db-4a60-9372-3f7733820d96 .content .cta {
	border: 5px solid rgb(255, 190, 181);
	padding: 45px;
}

#cmp_74783f0e-80db-4a60-9372-3f7733820d96 h1 {
	color: rgb(255, 190, 181);
	font-family: Amatic SC;
	font-size: 48px;
}

#cmp_74783f0e-80db-4a60-9372-3f7733820d96 h2 {
	color: rgb(255, 190, 181);
	font-family: Didact Gothic;
	font-size: 32px;
}

#cmp_74783f0e-80db-4a60-9372-3f7733820d96 h3 {
	color: rgb(0, 0, 0);
	font-family: Josefin Slab;
	font-size: 24px;
}

#cmp_74783f0e-80db-4a60-9372-3f7733820d96 p {
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

/*
 * components/howitworks/cmp_e40cc0e1-0e7d-40ae-9e36-e6904c8852a1/component.css
 */
#cmp_e40cc0e1-0e7d-40ae-9e36-e6904c8852a1 {
	background-color: rgb(255, 255, 255);
}

#cmp_e40cc0e1-0e7d-40ae-9e36-e6904c8852a1 h1 {
	color: rgb(255, 190, 181);
	font-family: Amatic SC;
	font-size: 48px;
}

#cmp_e40cc0e1-0e7d-40ae-9e36-e6904c8852a1 h2 {
	color: rgb(255, 190, 181);
	font-family: Didact Gothic;
	font-size: 32px;
}

#cmp_e40cc0e1-0e7d-40ae-9e36-e6904c8852a1 h3 {
	color: rgb(0, 0, 0);
	font-family: Josefin Slab;
	font-size: 20px;
}

#cmp_e40cc0e1-0e7d-40ae-9e36-e6904c8852a1 p {
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_e40cc0e1-0e7d-40ae-9e36-e6904c8852a1 .content {
		margin: 0 auto;
		width: 100%;
	}
}

#cmp_e40cc0e1-0e7d-40ae-9e36-e6904c8852a1 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

#cmp_e40cc0e1-0e7d-40ae-9e36-e6904c8852a1 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

/*
 * components/howitworks/cmp_f483668a-1069-41f7-ab7b-6d7370b54f33/component.css
 */
#cmp_f483668a-1069-41f7-ab7b-6d7370b54f33 img {
	max-width: 100%;
}

/*
 * components/index/cmp_06d09680-2764-489d-96d0-32a286b737cf/component.css
 */
#cmp_06d09680-2764-489d-96d0-32a286b737cf {
	background-color: rgb(255, 255, 255);
}

#cmp_06d09680-2764-489d-96d0-32a286b737cf h1 {
	color: rgb(255, 190, 181);
	font-family: Didact Gothic;
	font-size: 48px;
}

#cmp_06d09680-2764-489d-96d0-32a286b737cf h2 {
	color: rgb(255, 190, 181);
	font-family: Didact Gothic;
	font-size: 32px;
}

#cmp_06d09680-2764-489d-96d0-32a286b737cf h3 {
	color: rgb(0, 0, 0);
	font-family: Josefin Slab;
	font-size: 24px;
}

#cmp_06d09680-2764-489d-96d0-32a286b737cf p {
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_06d09680-2764-489d-96d0-32a286b737cf .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_06d09680-2764-489d-96d0-32a286b737cf ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

#cmp_06d09680-2764-489d-96d0-32a286b737cf ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

/*
 * components/index/cmp_0a4031bc-11f6-454b-9f7b-43fd888a21f1/component.css
 */

#cmp_0a4031bc-11f6-454b-9f7b-43fd888a21f1 {
	background-color: rgb(255, 255, 255);
}

#cmp_0a4031bc-11f6-454b-9f7b-43fd888a21f1 .content-row {
	margin: 0;

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

#cmp_0a4031bc-11f6-454b-9f7b-43fd888a21f1 .content {
	background-color: rgb(255, 255, 255);
	border: 5px solid rgb(255, 255, 255);
	margin: 0px 0;
	padding: 0px;
  

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

#cmp_0a4031bc-11f6-454b-9f7b-43fd888a21f1 .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 0px 0;
	width: 200px;
}

#cmp_0a4031bc-11f6-454b-9f7b-43fd888a21f1 h1 {
	color: rgb(255, 190, 181);
	font-family: Josefin Slab;
	font-size: 36px;
}

#cmp_0a4031bc-11f6-454b-9f7b-43fd888a21f1 h2 {
	color: rgb(128, 197, 188);
	font-family: Didact Gothic;
	font-size: 32px;
}

#cmp_0a4031bc-11f6-454b-9f7b-43fd888a21f1 h3 {
	color: rgb(255, 190, 181);
	font-family: Josefin Slab;
	font-size: 36px;
}

#cmp_0a4031bc-11f6-454b-9f7b-43fd888a21f1 p {
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_0a4031bc-11f6-454b-9f7b-43fd888a21f1 .content {
		margin: 15px;
	}
}
#cmp_0a4031bc-11f6-454b-9f7b-43fd888a21f1  {
	padding-top: 0px;
}


/*
 * components/index/cmp_17c3ee33-e934-48df-84bc-46cb18c3418a/component.css
 */
#cmp_17c3ee33-e934-48df-84bc-46cb18c3418a {
	background-color: rgba(255, 190, 181, 0.9);
}

#cmp_17c3ee33-e934-48df-84bc-46cb18c3418a h1 {
	color: rgb(0, 0, 0);
	font-family: Poppins;
	font-size: 48px;
}

#cmp_17c3ee33-e934-48df-84bc-46cb18c3418a h2 {
	color: rgb(255, 255, 255);
	font-family: Poppins;
	font-size: 32px;
}

#cmp_17c3ee33-e934-48df-84bc-46cb18c3418a h3 {
	color: rgb(0, 0, 0);
	font-family: Josefin Slab;
	font-size: 24px;
}

#cmp_17c3ee33-e934-48df-84bc-46cb18c3418a p {
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_17c3ee33-e934-48df-84bc-46cb18c3418a .content {
		margin: 0 auto;
		width: 100%;
	}
}

#cmp_17c3ee33-e934-48df-84bc-46cb18c3418a ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

#cmp_17c3ee33-e934-48df-84bc-46cb18c3418a ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

#cmp_17c3ee33-e934-48df-84bc-46cb18c3418a  {
	padding-bottom: 0;
  
  padding-top: 20px;
}
/*
 * components/index/cmp_28e187a6-7ccf-4fb6-8808-c089dcc85f3f/component.css
 */
#cmp_28e187a6-7ccf-4fb6-8808-c089dcc85f3f {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: rgb(255, 255, 255);
  	max-width: 100%;
}

#cmp_28e187a6-7ccf-4fb6-8808-c089dcc85f3f .content {
	padding: 0;
}

#cmp_28e187a6-7ccf-4fb6-8808-c089dcc85f3f .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_28e187a6-7ccf-4fb6-8808-c089dcc85f3f .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/index/cmp_486e62f7-d16c-4ac7-b09b-6c88f9ab1af2/component.css
 */
#cmp_486e62f7-d16c-4ac7-b09b-6c88f9ab1af2 img {
	max-width: 100%;
}

/*
 * components/index/cmp_4bf6ee6c-40d9-4a41-9399-763ca62c4171/component.css
 */



#cmp_4bf6ee6c-40d9-4a41-9399-763ca62c4171 {
	background-color: rgb(255, 255, 255);
  
    padding-top: 0px;
  
}

#cmp_4bf6ee6c-40d9-4a41-9399-763ca62c4171 .content-row {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

#cmp_4bf6ee6c-40d9-4a41-9399-763ca62c4171 .content {
	margin: 5px auto;
	max-height: 250px;
	max-width: 250px;
	overflow: hidden;

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

#cmp_4bf6ee6c-40d9-4a41-9399-763ca62c4171 h1 {
	color: rgb(255, 190, 181);
	font-family: Amatic SC;
	font-size: 48px;
}

#cmp_4bf6ee6c-40d9-4a41-9399-763ca62c4171 h2 {
	color: rgb(255, 190, 181);
	font-family: Nothing You Could Do;
	font-size: 32px;
}

#cmp_4bf6ee6c-40d9-4a41-9399-763ca62c4171 h3 {
	color: rgb(255, 190, 181);
	font-family: Josefin Slab;
	font-size: 36px;
}

#cmp_4bf6ee6c-40d9-4a41-9399-763ca62c4171 p {
	color: rgb(0, 0, 0);
	font-family: Josefin Slab;
	font-size: 18px;
}

@media (min-width: 768px) {
	#cmp_4bf6ee6c-40d9-4a41-9399-763ca62c4171 .content-row {
		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
      
	}
}



@media screen and (min-width: 400px) {
  
	#cmp_4bf6ee6c-40d9-4a41-9399-763ca62c4171  {
      min-height: 400px;
    }
}




<style type="text/css">
.simply-scroll .simply-scroll-list li {
    padding: 0px 15px;
}
.simply-scroll .simply-scroll-list li img {
    width: 100%;
}
.w3-content {
    padding-top: 50px;
}
</style>
  

.carousel-control.left, .carousel-control.right {
   background-image:none !important;
   filter:none !important;
}

/*
 * components/index/cmp_8a97e643-cb83-4cec-9025-ff690ef5d7ef/component.css
 */
#cmp_8a97e643-cb83-4cec-9025-ff690ef5d7ef {
	background-color: rgb(255, 255, 255);
}

#cmp_8a97e643-cb83-4cec-9025-ff690ef5d7ef h1 {
	color: rgb(255, 190, 181);
	font-family: Didact Gothic;
	font-size: 36px;
}

#cmp_8a97e643-cb83-4cec-9025-ff690ef5d7ef h2 {
	color: rgb(255, 190, 181);
	font-family: Nothing You Could Do;
	font-size: 32px;
}

#cmp_8a97e643-cb83-4cec-9025-ff690ef5d7ef h3 {
	color: rgb(0, 0, 0);
	font-family: Josefin Slab;
	font-size: 24px;
}

#cmp_8a97e643-cb83-4cec-9025-ff690ef5d7ef p {
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}


#cmp_8a97e643-cb83-4cec-9025-ff690ef5d7ef .btn {
	background-color: rgb(128, 197, 188);
	color: #FFFFFF;
	font-family: Didact Gothic;
	font-size: 14px;
}

#cmp_8a97e643-cb83-4cec-9025-ff690ef5d7ef .btn:hover {
	background-color: rgb(255, 253, 219);
	color: #FFFFFF;
}

#cmp_8a97e643-cb83-4cec-9025-ff690ef5d7ef .component-rich-text-with-button__content-row,
#cmp_8a97e643-cb83-4cec-9025-ff690ef5d7ef .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_8a97e643-cb83-4cec-9025-ff690ef5d7ef .component-rich-text-with-button__content-row,
	#cmp_8a97e643-cb83-4cec-9025-ff690ef5d7ef .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_8a97e643-cb83-4cec-9025-ff690ef5d7ef ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

#cmp_8a97e643-cb83-4cec-9025-ff690ef5d7ef ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

/*
 * components/index/cmp_95087a8d-8456-4f00-bdbf-ae86446e2329/component.css
 */
#cmp_95087a8d-8456-4f00-bdbf-ae86446e2329 {
	padding: 0;
}

#cmp_95087a8d-8456-4f00-bdbf-ae86446e2329 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_95087a8d-8456-4f00-bdbf-ae86446e2329 .hero-content h1 {
	color: rgb(255, 190, 181);
	font-family: Poppins;
	font-size: 45px;
}

#cmp_95087a8d-8456-4f00-bdbf-ae86446e2329 .hero-content h2 {
	color: rgb(0, 0, 0);
	font-family: Amatic SC;
	font-size: 32px;
}

#cmp_95087a8d-8456-4f00-bdbf-ae86446e2329 .hero-content h3 {
	color: rgb(128, 197, 188);
	font-family: Josefin Slab;
	font-size: 24px;
}

#cmp_95087a8d-8456-4f00-bdbf-ae86446e2329 .hero-content p {
	color: rgb(0, 0, 0);
	font-family: Didact Gothic;
	font-size: 15px;
}

#cmp_95087a8d-8456-4f00-bdbf-ae86446e2329 .hero-content .btn {
	background-color: rgb(128, 197, 188);
	color: #FFFFFF;
	font-family: Didact Gothic;
	font-size: 14px;
}

#cmp_95087a8d-8456-4f00-bdbf-ae86446e2329 .hero-content .btn:hover {
	background-color: rgb(255, 253, 219);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_95087a8d-8456-4f00-bdbf-ae86446e2329 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}


@media(min-width: 300px) {
	#cmp_95087a8d-8456-4f00-bdbf-ae86446e2329 .square-row > .col-md-6 {
		max-width: 96.5%;
	}

	#cmp_95087a8d-8456-4f00-bdbf-ae86446e2329 .square-row > .col-md-4 {
		max-width: 96.5%;
	}

	#cmp_95087a8d-8456-4f00-bdbf-ae86446e2329 .square-row > .col-md-3 {
			max-width: 96.5%;
	}
}

@media(min-width: 768px) {
	#cmp_95087a8d-8456-4f00-bdbf-ae86446e2329 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_95087a8d-8456-4f00-bdbf-ae86446e2329 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_95087a8d-8456-4f00-bdbf-ae86446e2329 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_95087a8d-8456-4f00-bdbf-ae86446e2329 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_95087a8d-8456-4f00-bdbf-ae86446e2329 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_95087a8d-8456-4f00-bdbf-ae86446e2329 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/index/cmp_d751f119-4336-40ca-8d0f-c622017163ce/component.css
 */
#cmp_d751f119-4336-40ca-8d0f-c622017163ce {
	background-position: right bottom !important;
	background-repeat: no-repeat !important;
	margin: 0;
	min-height: calc(100vh - 100px);
	padding: 0;
  width:100%;

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

#cmp_d751f119-4336-40ca-8d0f-c622017163ce .container-fluid {
	width: 100%;
}

#cmp_d751f119-4336-40ca-8d0f-c622017163ce .hero-row {
	margin: 0;
    width:100%;
}

#cmp_d751f119-4336-40ca-8d0f-c622017163ce .hero-content {
	margin: 0;
	text-align: center;
    width:100%;
}

#cmp_d751f119-4336-40ca-8d0f-c622017163ce .hero-content h1 {
	color: #FFFFFF;
	font-family: Amatic SC;
	font-size: 48px;
  
}

#cmp_d751f119-4336-40ca-8d0f-c622017163ce .hero-content h2 {
	color: #FFFFFF;
	font-family: Didact Gothic;
	font-size: 32px;
}

#cmp_d751f119-4336-40ca-8d0f-c622017163ce .hero-content h3 {
	color: #FFFFFF;
	font-family: Josefin Slab;
	font-size: 24px;
}

#cmp_d751f119-4336-40ca-8d0f-c622017163ce .hero-content p {
	color: #FFFFFF;
	font-family: Didact Gothic;
	font-size: 14px;
}



#cmp_4ea5173f-b3d7-4053-a849-c9cc4f31000b .hero-content .btn {
	margin-bottom: 10px;
}

#cmp_4ea5173f-b3d7-4053-a849-c9cc4f31000b .hero-content .btn.btn-primary {
	border: 12px solid transparent;
	background-color: ;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_4ea5173f-b3d7-4053-a849-c9cc4f31000b .hero-content .btn.btn-primary:hover,
#cmp_4ea5173f-b3d7-4053-a849-c9cc4f31000b .hero-content .btn.btn-primary:focus,
#cmp_4ea5173f-b3d7-4053-a849-c9cc4f31000b .hero-content .btn.btn-primary:active,
#cmp_4ea5173f-b3d7-4053-a849-c9cc4f31000b .hero-content .btn.btn-primary:active:focus {
	background-color: ;
	color: ;
}

#cmp_4ea5173f-b3d7-4053-a849-c9cc4f31000b .hero-content .btn-secondary {
	border: 12px solid transparent;

	background-color: ;
	border-color: ;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_4ea5173f-b3d7-4053-a849-c9cc4f31000b .hero-content .btn.btn-secondary:hover,
#cmp_4ea5173f-b3d7-4053-a849-c9cc4f31000b .hero-content .btn.btn-secondary:focus,
#cmp_4ea5173f-b3d7-4053-a849-c9cc4f31000b .hero-content .btn.btn-secondary:active,
#cmp_4ea5173f-b3d7-4053-a849-c9cc4f31000b .hero-content .btn.btn-secondary:active:focus {
	background-color: ;
	border-color: ;
	color: ;
}


@media screen and (min-width: 300px) {
  
	#cmp_d751f119-4336-40ca-8d0f-c622017163ce  {
      min-height: 225px;
    }
}

@media (min-width: 768px) {
	#cmp_d751f119-4336-40ca-8d0f-c622017163ce {
		min-height: 40vw;
      
		text-align: center;
	}
	#cmp_d751f119-4336-40ca-8d0f-c622017163ce .hero-content {
		margin: auto;
		text-align: center;
	}
	#cmp_d751f119-4336-40ca-8d0f-c622017163ce .hero-content .button-container {
		-webkit-justify-content: flex-start;
		-moz-justify-content: flex-start;
		-ms-justify-content: flex-start;
		justify-content: flex-start;
		text-align: center;
	}
	#cmp_d751f119-4336-40ca-8d0f-c622017163ce .hero-content .btn {
		margin: auto;
		width: 40%;
      
		text-align: center;
	}
}

@media (min-width: 1140px) {
	#cmp_d751f119-4336-40ca-8d0f-c622017163ce {
		min-height: 550px;
      
		text-align: center;
	}
}

/*
 * components/privacy/cmp_4fa1c8a7-220e-4b29-9266-4535be217b16/component.css
 */
#cmp_4fa1c8a7-220e-4b29-9266-4535be217b16 {
	background-color: rgb(255, 255, 255);
}

#cmp_4fa1c8a7-220e-4b29-9266-4535be217b16 h1 {
	color: rgb(255, 190, 181);
	font-family: Amatic SC;
	font-size: 48px;
}

#cmp_4fa1c8a7-220e-4b29-9266-4535be217b16 h2 {
	color: rgb(255, 190, 181);
	font-family: Didact Gothic;
	font-size: 32px;
}

#cmp_4fa1c8a7-220e-4b29-9266-4535be217b16 h3 {
	color: rgb(0, 0, 0);
	font-family: Josefin Slab;
	font-size: 24px;
}

#cmp_4fa1c8a7-220e-4b29-9266-4535be217b16 p {
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_4fa1c8a7-220e-4b29-9266-4535be217b16 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_4fa1c8a7-220e-4b29-9266-4535be217b16 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

#cmp_4fa1c8a7-220e-4b29-9266-4535be217b16 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

/*
 * components/shop/listing/cmp_18545dd9-f310-4f70-8c19-8731e98b0d8d/component.css
 */
#cmp_18545dd9-f310-4f70-8c19-8731e98b0d8d {
	border-bottom: 1px solid #E1E1E1;
	padding: 20px 0 40px 0;
}

#cmp_18545dd9-f310-4f70-8c19-8731e98b0d8d ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_3bc2f268-1f83-44b7-b98e-b89be67f288c/component.css
 */
#cmp_3bc2f268-1f83-44b7-b98e-b89be67f288c {
	padding: 20px 0;
}

#cmp_3bc2f268-1f83-44b7-b98e-b89be67f288c ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_6391308e-e731-49f3-a4ac-ffa5394e72bc/component.css
 */
#cmp_6391308e-e731-49f3-a4ac-ffa5394e72bc {
	background-color: rgb(255, 255, 255);
}

#cmp_6391308e-e731-49f3-a4ac-ffa5394e72bc h1 {
	color: rgb(255, 190, 181);
	font-family: Amatic SC;
	font-size: 48px;
}

#cmp_6391308e-e731-49f3-a4ac-ffa5394e72bc h2 {
	color: rgb(255, 190, 181);
	font-family: Didact Gothic;
	font-size: 32px;
}

#cmp_6391308e-e731-49f3-a4ac-ffa5394e72bc h3 {
	color: rgb(0, 0, 0);
	font-family: Josefin Slab;
	font-size: 24px;
}

#cmp_6391308e-e731-49f3-a4ac-ffa5394e72bc p {
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_6391308e-e731-49f3-a4ac-ffa5394e72bc .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_6391308e-e731-49f3-a4ac-ffa5394e72bc ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

#cmp_6391308e-e731-49f3-a4ac-ffa5394e72bc ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

#cmp_6391308e-e731-49f3-a4ac-ffa5394e72bc  {
	padding-bottom: 20px;
}
/*
 * components/shop/listing/cmp_d03dddc6-5239-4daa-b094-f19118448350/component.css
 */
.shop-listing-item {
	color: rgb(110, 170, 162);
}

.shop-listing-item:hover,
.shop-listing-item:focus {
	text-decoration: none;
}

.shop-listing-item__image {
	background-position: center center;
	background-size: cover;
}

.shop-listing-item__name {
	margin: 10px 0;
}

.shop-listing-item__price {
	margin: 10px 0 30px;
}

.product_paging {
	margin: 20px 0;

	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

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

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

.product_page.active a,
.product_page a:hover, .product_page a:focus,
.next_page a:hover, .next_page a:focus,
.prev_page a:hover, .prev_page a:focus {
	background-color: #F9F9F9;
	text-decoration: none;
}

.product_page.active a {
	color: black;
}

/*
 * components/shop/product/cmp_402ae5a2-610b-405b-8982-cfc6d37ed3a0/component.css
 */
#cmp_402ae5a2-610b-405b-8982-cfc6d37ed3a0 .shop-product select {
	width: auto;
}

#cmp_402ae5a2-610b-405b-8982-cfc6d37ed3a0 .shop-product__name {
	margin-bottom: 20px;
}

#cmp_402ae5a2-610b-405b-8982-cfc6d37ed3a0 .shop-product__price {
	margin-bottom: 20px;
}

#cmp_402ae5a2-610b-405b-8982-cfc6d37ed3a0 .shop-product__add-to-cart {
	margin-bottom: 20px;
}

#cmp_402ae5a2-610b-405b-8982-cfc6d37ed3a0 .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin-bottom: 40px;
}

#cmp_402ae5a2-610b-405b-8982-cfc6d37ed3a0 .shop-product__review-share-desktop .rating,
#cmp_402ae5a2-610b-405b-8982-cfc6d37ed3a0 .shop-product__review-share-desktop .sharing {
	padding-top: 10px;
}

#cmp_402ae5a2-610b-405b-8982-cfc6d37ed3a0 .shop-product__review-share-desktop h3,
#cmp_402ae5a2-610b-405b-8982-cfc6d37ed3a0 .shop-product__review-share-mobile h3 {
	margin: 10px 0;
}
#cmp_402ae5a2-610b-405b-8982-cfc6d37ed3a0  {
	padding-top: 0;
}
/*
 * components/shop/product/cmp_74ac98c2-dd8f-4219-8ec1-6523cc45368a/component.css
 */
#cmp_74ac98c2-dd8f-4219-8ec1-6523cc45368a.shop-product-header {
	padding: 60px 0 20px 0;
}

/*
 * components/sold_out/cmp_3c0270be-db90-4814-8f5f-fcda99327564/component.css
 */
#cmp_3c0270be-db90-4814-8f5f-fcda99327564 img {
	max-width: 100%;
}

/*
 * components/sold_out/cmp_d0cf4655-3ba2-48af-8b9a-8695abf4be79/component.css
 */
#cmp_d0cf4655-3ba2-48af-8b9a-8695abf4be79 {
	background-color: rgb(255, 255, 255);
}

#cmp_d0cf4655-3ba2-48af-8b9a-8695abf4be79 h1 {
	color: rgb(255, 190, 181);
	font-family: Amatic SC;
	font-size: 48px;
}

#cmp_d0cf4655-3ba2-48af-8b9a-8695abf4be79 h2 {
	color: rgb(255, 190, 181);
	font-family: Didact Gothic;
	font-size: 32px;
}

#cmp_d0cf4655-3ba2-48af-8b9a-8695abf4be79 h3 {
	color: rgb(0, 0, 0);
	font-family: Josefin Slab;
	font-size: 24px;
}

#cmp_d0cf4655-3ba2-48af-8b9a-8695abf4be79 p {
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}


#cmp_d0cf4655-3ba2-48af-8b9a-8695abf4be79 .btn {
	background-color: rgb(128, 197, 188);
	color: #FFFFFF;
	font-family: Didact Gothic;
	font-size: 14px;
}

#cmp_d0cf4655-3ba2-48af-8b9a-8695abf4be79 .btn:hover {
	background-color: rgb(255, 253, 219);
	color: #FFFFFF;
}

#cmp_d0cf4655-3ba2-48af-8b9a-8695abf4be79 .component-rich-text-with-button__content-row,
#cmp_d0cf4655-3ba2-48af-8b9a-8695abf4be79 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_d0cf4655-3ba2-48af-8b9a-8695abf4be79 .component-rich-text-with-button__content-row,
	#cmp_d0cf4655-3ba2-48af-8b9a-8695abf4be79 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_d0cf4655-3ba2-48af-8b9a-8695abf4be79 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

#cmp_d0cf4655-3ba2-48af-8b9a-8695abf4be79 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

#cmp_d0cf4655-3ba2-48af-8b9a-8695abf4be79  {
	padding-top: 0;
}
/*
 * components/subscribe/cmp_3ab2d1c1-3375-41ce-bb30-180a944f579b/component.css
 */
#cmp_3ab2d1c1-3375-41ce-bb30-180a944f579b {
	background-color: #E8E4E2;
}

#cmp_3ab2d1c1-3375-41ce-bb30-180a944f579b h3 {
	color: rgb(0, 0, 0);
	font-family: Josefin Slab;
	font-size: 24px;
}

#cmp_3ab2d1c1-3375-41ce-bb30-180a944f579b p {
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

#cmp_3ab2d1c1-3375-41ce-bb30-180a944f579b .sf-item {
	background-color: rgb(255, 255, 255);
}
#cmp_3ab2d1c1-3375-41ce-bb30-180a944f579b  {
	padding-top: 0;
}
/*
 * components/subscribe/cmp_405b18cd-0cf4-4e44-a188-d267d06220af/component.css
 */
#cmp_405b18cd-0cf4-4e44-a188-d267d06220af {
	background-color: #E8E4E2;
}

#cmp_405b18cd-0cf4-4e44-a188-d267d06220af h1 {
	color: rgb(255, 190, 181);
	font-family: Amatic SC;
	font-size: 48px;
}

#cmp_405b18cd-0cf4-4e44-a188-d267d06220af h2 {
	color: rgb(255, 190, 181);
	font-family: Didact Gothic;
	font-size: 32px;
}

#cmp_405b18cd-0cf4-4e44-a188-d267d06220af h3 {
	color: rgb(0, 0, 0);
	font-family: Josefin Slab;
	font-size: 24px;
}

#cmp_405b18cd-0cf4-4e44-a188-d267d06220af p {
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_405b18cd-0cf4-4e44-a188-d267d06220af .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_405b18cd-0cf4-4e44-a188-d267d06220af ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

#cmp_405b18cd-0cf4-4e44-a188-d267d06220af ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

#cmp_405b18cd-0cf4-4e44-a188-d267d06220af  {
	padding-bottom: 0;
}
/*
 * components/subscribe/cmp_5e41c1b5-eb34-4130-8062-ec16a133b783/component.css
 */
#cmp_5e41c1b5-eb34-4130-8062-ec16a133b783 {
	background-color: #FFFFFF;
}

#cmp_5e41c1b5-eb34-4130-8062-ec16a133b783 .content-row {
	margin: 0;

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

#cmp_5e41c1b5-eb34-4130-8062-ec16a133b783 .content {
	background-color: rgb(127, 199, 189);
	border: 5px solid rgb(127, 199, 189);
	margin: 15px 0;
	padding: 25px;

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

#cmp_5e41c1b5-eb34-4130-8062-ec16a133b783 .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_5e41c1b5-eb34-4130-8062-ec16a133b783 h1 {
	color: rgb(255, 190, 181);
	font-family: Amatic SC;
	font-size: 48px;
}

#cmp_5e41c1b5-eb34-4130-8062-ec16a133b783 h2 {
	color: rgb(255, 190, 181);
	font-family: Didact Gothic;
	font-size: 32px;
}

#cmp_5e41c1b5-eb34-4130-8062-ec16a133b783 h3 {
	color: rgb(0, 0, 0);
	font-family: Josefin Slab;
	font-size: 24px;
}

#cmp_5e41c1b5-eb34-4130-8062-ec16a133b783 p {
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_5e41c1b5-eb34-4130-8062-ec16a133b783 .content {
		margin: 15px;
	}
}
#cmp_5e41c1b5-eb34-4130-8062-ec16a133b783  {
	padding-top: 0;
}
/*
 * components/subscribe/cmp_8e60dd82-450c-4e23-8128-ce832ba85fd1/component.css
 */
#cmp_8e60dd82-450c-4e23-8128-ce832ba85fd1 {
	background-color: #FFFFFF;
}

#cmp_8e60dd82-450c-4e23-8128-ce832ba85fd1 h1 {
	color: rgb(255, 190, 181);
	font-family: Amatic SC;
	font-size: 48px;
}

#cmp_8e60dd82-450c-4e23-8128-ce832ba85fd1 h2 {
	color: rgb(255, 190, 181);
	font-family: Didact Gothic;
	font-size: 32px;
}

#cmp_8e60dd82-450c-4e23-8128-ce832ba85fd1 h3 {
	color: rgb(0, 0, 0);
	font-family: Josefin Slab;
	font-size: 24px;
}

#cmp_8e60dd82-450c-4e23-8128-ce832ba85fd1 p {
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_8e60dd82-450c-4e23-8128-ce832ba85fd1 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_8e60dd82-450c-4e23-8128-ce832ba85fd1 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

#cmp_8e60dd82-450c-4e23-8128-ce832ba85fd1 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

#cmp_8e60dd82-450c-4e23-8128-ce832ba85fd1  {
	padding-bottom: 0;
}
/*
 * components/subscribe/cmp_e2b9cc57-bee5-4650-b828-7ba513a4d3b9/component.css
 */
#cmp_e2b9cc57-bee5-4650-b828-7ba513a4d3b9 {
	background-color: #E8E4E2;
	padding-bottom: 0;
}

#cmp_e2b9cc57-bee5-4650-b828-7ba513a4d3b9 .progress-bar-container {
	position: relative;
}

#cmp_e2b9cc57-bee5-4650-b828-7ba513a4d3b9 .progress-bar-filler {
	background: rgb(127, 199, 189);
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_e2b9cc57-bee5-4650-b828-7ba513a4d3b9 .progress-bar {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-align-items: flex-start;
	-moz-align-items: flex-start;
	-ms-align-items: flex-start;
	align-items: flex-start;

	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
}

#cmp_e2b9cc57-bee5-4650-b828-7ba513a4d3b9 .progress-bar .step {
	color: rgb(110, 170, 162);

	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

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

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

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

#cmp_e2b9cc57-bee5-4650-b828-7ba513a4d3b9 .progress-bar .step .point {
	background-color: #E8E4E2;
	border: 4px solid rgb(127, 199, 189);
	border-radius: 10px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_e2b9cc57-bee5-4650-b828-7ba513a4d3b9 .progress-bar .step.active .point {
	background-color: rgb(255, 190, 181);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_e2b9cc57-bee5-4650-b828-7ba513a4d3b9 .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * 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: 14px;

	color: #FFFFFF;
	background-color: rgb(128, 197, 188);
}

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

#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: 14px;

	color: #FFFFFF;
	background-color: rgb(128, 197, 188);
}

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

@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_6802f148-ad54-4f2e-8209-6e0ffacc7350/component.css
 */
#cmp_6802f148-ad54-4f2e-8209-6e0ffacc7350 {
	background-color: rgb(255, 255, 255);
}

#cmp_6802f148-ad54-4f2e-8209-6e0ffacc7350 h3 {
	color: rgb(0, 0, 0);
	font-family: Josefin Slab;
	font-size: 24px;
}

#cmp_6802f148-ad54-4f2e-8209-6e0ffacc7350 p {
	color: rgb(70, 70, 70);
	font-family: Didact Gothic;
	font-size: 14px;
}

#cmp_6802f148-ad54-4f2e-8209-6e0ffacc7350  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_cb7a0aed-ac30-418e-ade9-4737d969d15e/component.css
 */
#cmp_cb7a0aed-ac30-418e-ade9-4737d969d15e {
	background-color: rgb(255, 255, 255);
	padding-bottom: 0;
}

#cmp_cb7a0aed-ac30-418e-ade9-4737d969d15e h1 {
	color: rgb(255, 190, 181);
	font-family: Amatic SC;
	font-size: 48px;
}

#cmp_cb7a0aed-ac30-418e-ade9-4737d969d15e p {
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}
#cmp_cb7a0aed-ac30-418e-ade9-4737d969d15e  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_cc59ff8f-c813-424e-b51b-f5dc9e6e4ddb/component.css
 */
#cmp_cc59ff8f-c813-424e-b51b-f5dc9e6e4ddb {
	background-color: rgb(255, 255, 255);
	padding-bottom: 0;
}

#cmp_cc59ff8f-c813-424e-b51b-f5dc9e6e4ddb .progress-bar-container {
	position: relative;
}

#cmp_cc59ff8f-c813-424e-b51b-f5dc9e6e4ddb .progress-bar-filler {
	background: rgb(127, 199, 189);
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_cc59ff8f-c813-424e-b51b-f5dc9e6e4ddb .progress-bar {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-align-items: flex-start;
	-moz-align-items: flex-start;
	-ms-align-items: flex-start;
	align-items: flex-start;

	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
}

#cmp_cc59ff8f-c813-424e-b51b-f5dc9e6e4ddb .progress-bar .step {
	color: rgb(110, 170, 162);

	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

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

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

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

#cmp_cc59ff8f-c813-424e-b51b-f5dc9e6e4ddb .progress-bar .step .point {
	background-color: rgb(255, 255, 255);
	border: 4px solid rgb(127, 199, 189);
	border-radius: 10px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_cc59ff8f-c813-424e-b51b-f5dc9e6e4ddb .progress-bar .step.active .point {
	background-color: rgb(255, 190, 181);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_cc59ff8f-c813-424e-b51b-f5dc9e6e4ddb .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe_flow/terms_step/cmp_0b66c304-2b30-4f84-b466-b406ad364c0d/component.css
 */
#cmp_0b66c304-2b30-4f84-b466-b406ad364c0d {
	background-color: rgb(255, 255, 255);
	padding-bottom: 0;
}

#cmp_0b66c304-2b30-4f84-b466-b406ad364c0d h1 {
	color: rgb(255, 190, 181);
	font-family: Amatic SC;
	font-size: 48px;
}

#cmp_0b66c304-2b30-4f84-b466-b406ad364c0d p {
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}
#cmp_0b66c304-2b30-4f84-b466-b406ad364c0d  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/terms_step/cmp_4490eaa8-5ca9-4d42-80df-519deb6b25e5/component.css
 */
#cmp_4490eaa8-5ca9-4d42-80df-519deb6b25e5 {
	background-color: rgb(255, 255, 255);
}

#cmp_4490eaa8-5ca9-4d42-80df-519deb6b25e5 h2 {
	color: rgb(0, 0, 0);
	font-family: Amatic SC;
	font-size: 24px;
}

#cmp_4490eaa8-5ca9-4d42-80df-519deb6b25e5 h3 {
	color: rgb(255, 190, 181);
	font-family: Didact Gothic;
	font-size: 32px;
}

#cmp_4490eaa8-5ca9-4d42-80df-519deb6b25e5 p {
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

#cmp_4490eaa8-5ca9-4d42-80df-519deb6b25e5 .sf-item {
	background-color: rgb(255, 255, 255);
}
#cmp_4490eaa8-5ca9-4d42-80df-519deb6b25e5  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/terms_step/cmp_5389cc6b-298f-4782-a6c3-066abf1acd71/component.css
 */
#cmp_5389cc6b-298f-4782-a6c3-066abf1acd71 {
	background-color: #FFFFFF;
}

#cmp_5389cc6b-298f-4782-a6c3-066abf1acd71 h1 {
	color: rgb(255, 190, 181);
	font-family: Amatic SC;
	font-size: 48px;
}

#cmp_5389cc6b-298f-4782-a6c3-066abf1acd71 h2 {
	color: rgb(255, 190, 181);
	font-family: Didact Gothic;
	font-size: 32px;
}

#cmp_5389cc6b-298f-4782-a6c3-066abf1acd71 h3 {
	color: rgb(0, 0, 0);
	font-family: Josefin Slab;
	font-size: 24px;
}

#cmp_5389cc6b-298f-4782-a6c3-066abf1acd71 p {
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_5389cc6b-298f-4782-a6c3-066abf1acd71 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_5389cc6b-298f-4782-a6c3-066abf1acd71 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

#cmp_5389cc6b-298f-4782-a6c3-066abf1acd71 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

#cmp_5389cc6b-298f-4782-a6c3-066abf1acd71  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/terms_step/cmp_bf6fcfe8-c4e8-454c-b5cb-34f7a74dc025/component.css
 */
#cmp_bf6fcfe8-c4e8-454c-b5cb-34f7a74dc025 {
	background-color: rgb(255, 255, 255);
}

#cmp_bf6fcfe8-c4e8-454c-b5cb-34f7a74dc025 .content-row {
	margin: 0;

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

#cmp_bf6fcfe8-c4e8-454c-b5cb-34f7a74dc025 .content {
	background-color: rgb(255, 255, 255);
	border: 5px solid rgb(255, 255, 255);
	margin: 15px 0;
	padding: 25px;

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

#cmp_bf6fcfe8-c4e8-454c-b5cb-34f7a74dc025 .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_bf6fcfe8-c4e8-454c-b5cb-34f7a74dc025 h1 {
	color: rgb(255, 190, 181);
	font-family: Amatic SC;
	font-size: 48px;
}

#cmp_bf6fcfe8-c4e8-454c-b5cb-34f7a74dc025 h2 {
	color: rgb(255, 190, 181);
	font-family: Didact Gothic;
	font-size: 32px;
}

#cmp_bf6fcfe8-c4e8-454c-b5cb-34f7a74dc025 h3 {
	color: rgb(0, 0, 0);
	font-family: Josefin Slab;
	font-size: 24px;
}

#cmp_bf6fcfe8-c4e8-454c-b5cb-34f7a74dc025 p {
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_bf6fcfe8-c4e8-454c-b5cb-34f7a74dc025 .content {
		margin: 15px;
	}
}
#cmp_bf6fcfe8-c4e8-454c-b5cb-34f7a74dc025  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/terms_step/cmp_f97d40dc-ed8b-4d46-b082-148bb54809f8/component.css
 */
#cmp_f97d40dc-ed8b-4d46-b082-148bb54809f8 {
	background-color: rgb(255, 255, 255);
	padding-bottom: 0;
}

#cmp_f97d40dc-ed8b-4d46-b082-148bb54809f8 .progress-bar-container {
	position: relative;
}

#cmp_f97d40dc-ed8b-4d46-b082-148bb54809f8 .progress-bar-filler {
	background: rgb(127, 199, 189);
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_f97d40dc-ed8b-4d46-b082-148bb54809f8 .progress-bar {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-align-items: flex-start;
	-moz-align-items: flex-start;
	-ms-align-items: flex-start;
	align-items: flex-start;

	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
}

#cmp_f97d40dc-ed8b-4d46-b082-148bb54809f8 .progress-bar .step {
	color: rgb(110, 170, 162);

	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

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

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

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

#cmp_f97d40dc-ed8b-4d46-b082-148bb54809f8 .progress-bar .step .point {
	background-color: rgb(255, 255, 255);
	border: 4px solid rgb(127, 199, 189);
	border-radius: 10px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_f97d40dc-ed8b-4d46-b082-148bb54809f8 .progress-bar .step.active .point {
	background-color: rgb(255, 190, 181);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_f97d40dc-ed8b-4d46-b082-148bb54809f8 .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe_flow/variant_step/cmp_1b282d8c-caea-4190-b895-fcf5f01c88e1/component.css
 */
#cmp_1b282d8c-caea-4190-b895-fcf5f01c88e1 {
	background-color: #E8E4E2;
	padding-bottom: 0;
}

#cmp_1b282d8c-caea-4190-b895-fcf5f01c88e1 .progress-bar-container {
	position: relative;
}

#cmp_1b282d8c-caea-4190-b895-fcf5f01c88e1 .progress-bar-filler {
	background: rgb(127, 199, 189);
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_1b282d8c-caea-4190-b895-fcf5f01c88e1 .progress-bar {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-align-items: flex-start;
	-moz-align-items: flex-start;
	-ms-align-items: flex-start;
	align-items: flex-start;

	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
}

#cmp_1b282d8c-caea-4190-b895-fcf5f01c88e1 .progress-bar .step {
	color: rgb(110, 170, 162);

	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

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

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

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

#cmp_1b282d8c-caea-4190-b895-fcf5f01c88e1 .progress-bar .step .point {
	background-color: #E8E4E2;
	border: 4px solid rgb(127, 199, 189);
	border-radius: 10px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_1b282d8c-caea-4190-b895-fcf5f01c88e1 .progress-bar .step.active .point {
	background-color: rgb(255, 190, 181);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_1b282d8c-caea-4190-b895-fcf5f01c88e1 .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe_flow/variant_step/cmp_3a01ee2f-ee88-4765-bd33-fd91fabe2795/component.css
 */
#cmp_3a01ee2f-ee88-4765-bd33-fd91fabe2795 {
	background-color: #E8E4E2;
	padding-bottom: 0;
}

#cmp_3a01ee2f-ee88-4765-bd33-fd91fabe2795 h1 {
	color: rgb(255, 190, 181);
	font-family: Amatic SC;
	font-size: 48px;
}

#cmp_3a01ee2f-ee88-4765-bd33-fd91fabe2795 p {
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}
#cmp_3a01ee2f-ee88-4765-bd33-fd91fabe2795  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_a088c421-077c-449f-9c3a-8f43ef92ff77/component.css
 */
#cmp_a088c421-077c-449f-9c3a-8f43ef92ff77 {
	background-color: #FFFFFF;
}

#cmp_a088c421-077c-449f-9c3a-8f43ef92ff77 .content-row {
	margin: 0;

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

#cmp_a088c421-077c-449f-9c3a-8f43ef92ff77 .content {
	background-color: rgb(127, 199, 189);
	border: 5px solid rgb(127, 199, 189);
	margin: 15px 0;
	padding: 25px;

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

#cmp_a088c421-077c-449f-9c3a-8f43ef92ff77 .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_a088c421-077c-449f-9c3a-8f43ef92ff77 h1 {
	color: rgb(255, 190, 181);
	font-family: Amatic SC;
	font-size: 48px;
}

#cmp_a088c421-077c-449f-9c3a-8f43ef92ff77 h2 {
	color: rgb(255, 190, 181);
	font-family: Didact Gothic;
	font-size: 32px;
}

#cmp_a088c421-077c-449f-9c3a-8f43ef92ff77 h3 {
	color: rgb(0, 0, 0);
	font-family: Josefin Slab;
	font-size: 24px;
}

#cmp_a088c421-077c-449f-9c3a-8f43ef92ff77 p {
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_a088c421-077c-449f-9c3a-8f43ef92ff77 .content {
		margin: 15px;
	}
}
#cmp_a088c421-077c-449f-9c3a-8f43ef92ff77  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_b4336878-8741-48bd-87b1-9ad0ea24a642/component.css
 */
#cmp_b4336878-8741-48bd-87b1-9ad0ea24a642 {
	background-color: #FFFFFF;
}

#cmp_b4336878-8741-48bd-87b1-9ad0ea24a642 h1 {
	color: rgb(255, 190, 181);
	font-family: Amatic SC;
	font-size: 48px;
}

#cmp_b4336878-8741-48bd-87b1-9ad0ea24a642 h2 {
	color: rgb(255, 190, 181);
	font-family: Didact Gothic;
	font-size: 32px;
}

#cmp_b4336878-8741-48bd-87b1-9ad0ea24a642 h3 {
	color: rgb(0, 0, 0);
	font-family: Josefin Slab;
	font-size: 24px;
}

#cmp_b4336878-8741-48bd-87b1-9ad0ea24a642 p {
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_b4336878-8741-48bd-87b1-9ad0ea24a642 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_b4336878-8741-48bd-87b1-9ad0ea24a642 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

#cmp_b4336878-8741-48bd-87b1-9ad0ea24a642 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

#cmp_b4336878-8741-48bd-87b1-9ad0ea24a642  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_d1e3e747-3ac7-4d81-8123-d38672dcee34/component.css
 */
#cmp_d1e3e747-3ac7-4d81-8123-d38672dcee34 {
	background-color: #E8E4E2;
}

#cmp_d1e3e747-3ac7-4d81-8123-d38672dcee34 h3 {
	color: rgb(0, 0, 0);
	font-family: Josefin Slab;
	font-size: 24px;
}

#cmp_d1e3e747-3ac7-4d81-8123-d38672dcee34 p {
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

#cmp_d1e3e747-3ac7-4d81-8123-d38672dcee34 .sf-item {
	background-color: rgb(255, 255, 255);
}
#cmp_d1e3e747-3ac7-4d81-8123-d38672dcee34  {
	padding-top: 0;
}
/*
 * components/terms/cmp_0dcd62d0-fb89-4de6-b850-683e331bbc16/component.css
 */
#cmp_0dcd62d0-fb89-4de6-b850-683e331bbc16 {
	background-color: rgb(255, 255, 255);
}

#cmp_0dcd62d0-fb89-4de6-b850-683e331bbc16 h1 {
	color: rgb(255, 190, 181);
	font-family: Amatic SC;
	font-size: 48px;
}

#cmp_0dcd62d0-fb89-4de6-b850-683e331bbc16 h2 {
	color: rgb(255, 190, 181);
	font-family: Didact Gothic;
	font-size: 32px;
}

#cmp_0dcd62d0-fb89-4de6-b850-683e331bbc16 h3 {
	color: rgb(0, 0, 0);
	font-family: Josefin Slab;
	font-size: 24px;
}

#cmp_0dcd62d0-fb89-4de6-b850-683e331bbc16 p {
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_0dcd62d0-fb89-4de6-b850-683e331bbc16 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_0dcd62d0-fb89-4de6-b850-683e331bbc16 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

#cmp_0dcd62d0-fb89-4de6-b850-683e331bbc16 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

/*
 * components/view-cart/cmp_d25fa54b-6965-4ebb-afc8-da1454dac2a6/component.css
 */
#cmp_d25fa54b-6965-4ebb-afc8-da1454dac2a6 {
	background-color: rgb(255, 255, 255);
}

#cmp_d25fa54b-6965-4ebb-afc8-da1454dac2a6 h1 {
	color: rgb(255, 190, 181);
	font-family: Amatic SC;
	font-size: 48px;
}

#cmp_d25fa54b-6965-4ebb-afc8-da1454dac2a6 h2 {
	color: rgb(255, 190, 181);
	font-family: Didact Gothic;
	font-size: 32px;
}

#cmp_d25fa54b-6965-4ebb-afc8-da1454dac2a6 h3 {
	color: rgb(0, 0, 0);
	font-family: Didact Gothic;
	font-size: 24px;
}

#cmp_d25fa54b-6965-4ebb-afc8-da1454dac2a6 p {
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_d25fa54b-6965-4ebb-afc8-da1454dac2a6 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_d25fa54b-6965-4ebb-afc8-da1454dac2a6 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

#cmp_d25fa54b-6965-4ebb-afc8-da1454dac2a6 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(110, 170, 162);
	font-family: Didact Gothic;
	font-size: 14px;
}

/*
 * components/view-cart/cmp_dbc89779-df9a-42f6-ae23-f766125a892d/component.css
 */
#cmp_dbc89779-df9a-42f6-ae23-f766125a892d {
	padding: 15px 15px 100px 15px;
}

#cmp_dbc89779-df9a-42f6-ae23-f766125a892d .cart-thead {
	border-bottom: 1px solid #E1E1E1;
	padding: 10px 0;
}

#cmp_dbc89779-df9a-42f6-ae23-f766125a892d .cart-thead h3 {
	text-transform: uppercase;
}

#cmp_dbc89779-df9a-42f6-ae23-f766125a892d .cart-item {
	border: 1px solid #E1E1E1;
	padding: 25px 0;
	position: relative;
}

#cmp_dbc89779-df9a-42f6-ae23-f766125a892d .product-main {
	margin: 0 0 15px 0;
}

#cmp_dbc89779-df9a-42f6-ae23-f766125a892d .product-label p {
	margin: 0;
}

#cmp_dbc89779-df9a-42f6-ae23-f766125a892d .product-label .info {
	color: rgb(255, 190, 181);
	text-align: right;
	text-transform: uppercase;
}

#cmp_dbc89779-df9a-42f6-ae23-f766125a892d .product-label .meta {
	color: rgb(110, 170, 162);
	font-size: 14px;
}

#cmp_dbc89779-df9a-42f6-ae23-f766125a892d .product-rem-btn {
	position: absolute;
	right: 1%;
	top: 1%;
}

#cmp_dbc89779-df9a-42f6-ae23-f766125a892d figure {
	margin: 0 0 15px 0;
}

#cmp_dbc89779-df9a-42f6-ae23-f766125a892d .cart-subtotal {
	margin: 50px 0 0 0;
}

#cmp_dbc89779-df9a-42f6-ae23-f766125a892d .cart-subtotal h2 {
	margin: 0 0 15px 0;
}

#cmp_dbc89779-df9a-42f6-ae23-f766125a892d .cart-subtotal h3 {
	margin: 0 0 25px 0;
	text-transform: uppercase;
}

#cmp_dbc89779-df9a-42f6-ae23-f766125a892d .cart-subtotal p {
	margin: 0 0 25px 0;
}

@media (min-width: 768px) {
	#cmp_dbc89779-df9a-42f6-ae23-f766125a892d .cart-item {
		border-width: 0 0 1px 0;
	}
	#cmp_dbc89779-df9a-42f6-ae23-f766125a892d .product-rem-btn {
		top: 40%;
	}
	#cmp_dbc89779-df9a-42f6-ae23-f766125a892d figure {
		margin: 0;
	}
}