/*
 * css/style.css
 */
/* Globals
------------------------------*/
body {
	background-color: #FFFFFF;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
	line-height: 1.5em;
} 
 
.container-fluid {
	max-width: 1140px;
}

h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
	letter-spacing: 2px;
  	font-stretch: 100%;
    font-weight: 700;
	line-height: 1;
	margin: 0 0 25px 0;
}

h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
	margin: 0 0 25px 0;
  	letter-spacing: 0px;
}

h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
	margin: 0 0 25px 0;
  	letter-spacing: 0px;
}

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

a,
.btn-link {
	color: rgb(16, 180, 224);
}

a:hover,
a:focus,
a:active,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
	color: rgb(16, 180, 224);
}

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

/*
* 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(16, 180, 224);
}

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

.footer a {
	color: #fff;
}

.copyright-text {
	float: left;
	width: 50%;
}

.footer-cc {
  	float: left;
	text-align: right;
  	width: 50%;
}

.footer-subscribe {
  	float:left;
	width: 33%;	
}

.footer-subscribe ul {
text-align: center;
}


.footer-social {
  	float:left;
	width: 33%;	
}

.footer-contact {
  	float:left;
	width: 33%;	
}

.footer-subscribe h3 {
	color: #fff;
}

.footer-social h3 {
	color: #fff;
}

.footer-contact h3 {
	color: #fff;
}



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

.btn-small {
	background: rgb(16, 180, 224);
	color: #fff;
	padding: 10px 20px;
  	border-radius: 0.25rem;
}

.btn-small:hover,
.btn-small:focus,
.btn-small:active,
.btn-small:active:focus {
	background: #fff,
	padding: 10px 20px;
}

a.btn-small:hover {
  	color: #ffffff;
  	text-decoration: none;
}

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

.btn-primary {
	background-color: rgb(16, 180, 224);
	color: #FFFFFF;
	font-family: Poppins;
	font-size: 14px;
	letter-spacing: 0.167em;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus {
	background-color: rgb(16, 180, 224);
	color: #FFFFFF;
}

.btn-secondary {
	background-color: rgb(246, 214, 6);
	color: #FFFFFF;
	font-family: heroutton/font_face'] }};
	font-size: 14px;
	letter-spacing: 0.167em;
}

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

.btn-empty {
	background-color: transparent;
	border: 1px solid rgb(147, 188, 81);
	color: rgb(147, 188, 81);
}

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

btn-outline-primary


/* 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(16, 180, 224);
	border: none;
	color: #FFFFFF;
	font-family: Poppins;
	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(16, 180, 224);
	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(147, 188, 81);
}

.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(16, 180, 224);
	color: rgb(16, 180, 224);
	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(16, 180, 224);
	border-color: rgb(16, 180, 224);
	text-decoration: none;
}

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

/*spiffy socks blurb*/

section#cmp_a14fba3d-6c14-4bf8-b420-77600d36387a {
	background-image: url("//d3a1v57rabk2hm.cloudfront.net/spiffysocks/bold_mobile/images/spiffy-socks-hero-amber-3.jpg?ts=1592797478&host=my.cratejoy.com");
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
  	opacity: 0.8;
}

section#cmp_a14fba3d-6c14-4bf8-b420-77600d36387a h2 {
  color: #fff;
  opacity: 1;
}

section#cmp_a14fba3d-6c14-4bf8-b420-77600d36387a p {
  color: #fff;
  opacity: 1;
}

@media only screen and (max-width : 768px) {
section#cmp_a14fba3d-6c14-4bf8-b420-77600d36387a {
	background-size: auto;
}
}


/*testimonial section*/

section#testimonials {
  padding: 60px 0;
  width: 100%;
  background: #EEEEEE;
}

.testimonial-image img {
	max-width: 250px;
}

.showcase-text-header {
	clear:both;
	text-align: center;
	font-weight: bold;
  	padding: 20px;

}

.showcase-text-header a {
	font-weight: bold;
	font-size: 20px;
}

.testimonial-image {
	padding: 0 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-showcase-text {
  	background-image: url("//d3a1v57rabk2hm.cloudfront.net/spiffysocks/bold_mobile/images/quotes.png?ts=1530850576&host=my.cratejoy.com");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	font-size: 12px;
	padding: 10px;
  	letter-spacing: 1.5px;
}

@media (min-width: 992px) {
	.testimonial-showcase-text {
		height: 160px;
	}
}

a.btn.btn-small {
  border-radius: 0px;
}


.showcase-text {
	font-size: 12px;
	padding: 10px;
}

.showcase-image {
	width: 50%;
	text-align: center;
	display:block;
    margin:auto;
}

.showcase-image-larger {
	width: 60%;
	text-align: center;
	display:block;
    margin:auto;
}

.showcase-11 {
	border-right: 1px solid #e1e1e1;
	padding: 0 25px;
}

@media (max-width: 550px) {
	.showcase-11 {
		border-right: 0px solid #e1e1e1;
      	padding-bottom: 75px;
	}
}

.showcase-12 {
	border-right: 1px solid #e1e1e1;
	padding: 0 25px;
}

@media (max-width: 550px) {
	.showcase-12 {
		border-right: 0px solid #e1e1e1;
      	padding-bottom: 75px;
	}
}

.showcase-3 {
	padding: 0 25px;
}

/*testimonial section END*/

.how_it_works_button {
	text-align: center;
}

/*whats good bamboo*/

section#whats_good_bamboo {
  width: 100%;
  padding: 0 0 0px;
}

section#whats_good_bamboo h3{
  margin-bottom: 10px;
  color: #93BC51;
}

section#whats_good_bamboo .img-wrapper img {
  width: 100%;
  padding: 40px 0 0 0;
}

section#whats_good_bamboo .img-overlay:before {
  content: ' ';
  display: block;
  /* adjust 'height' to position overlay content vertically */
}

.whats_good_bamboo_text {
  padding: 70px 0 0 0;
}

.whats_good_bamboo_text p {
  padding: 0 0 20px 0;
}

/*whats good bamboo END*/

/*index- Reviews Segue */

section#cmp_e796d804-8f9b-4f25-92cd-235495a396c7 {
	background-image: url("//d3a1v57rabk2hm.cloudfront.net/spiffysocks/bold_mobile/images/spiffy-socks-subscription-club-box.jpg?ts=1565905501&host=my.cratejoy.com");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
  	min-height: 800px; 
}

@media (max-width: 550px) {
	section#cmp_e796d804-8f9b-4f25-92cd-235495a396c7 {
		display: none;
	}
}

@media (max-width: 550px) {
	section#review-segue-mobile {
		background-image: url("//d3a1v57rabk2hm.cloudfront.net/spiffysocks/bold_mobile/images/Spiffy-Socks-Promo-Homepage-Mobile.jpg?ts=1566847844&host=my.cratejoy.com");
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
      	min-height: 640px;
  }
}

@media (min-width: 551px) {
	section#review-segue-mobile {
		display: none;
  }
}

/*index-the best part*/

section#cmp_dc49d00c-1fc3-4283-bea8-a6ddea11a2d0 {
	background-image: url("//d3a1v57rabk2hm.cloudfront.net/spiffysocks/bold_mobile/images/bamboo_sustainable-2.jpg?ts=1531712320&host=my.cratejoy.com");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
  	opacity: 0.8;
}


section#cmp_dc49d00c-1fc3-4283-bea8-a6ddea11a2d0 h2 {
  color: #fff;
  opacity: 1;
  padding: 0 25px 0 25px;
}

section#cmp_dc49d00c-1fc3-4283-bea8-a6ddea11a2d0 p {
  color: #fff;
  opacity: 1;
  padding: 0 25px 0 25px;
}

@media only screen and (max-width : 768px) {
section#cmp_dc49d00c-1fc3-4283-bea8-a6ddea11a2d0 {
  	background-color: rgb(147, 188, 81);
	background-size: auto;}
}

section#cmp_a14fba3d-6c14-4bf8-b420-77600d36387a {
  padding-left: 25px;
  padding-right: 25px;
}


/* Discover Our Socks Page - Intro */

#cmp_1445f153-a76a-47fa-9319-fd67520879ec div.whats_good_bamboo_text h3 {
  color: rgb(126, 211, 33);
}

section#cmp_2066982a-bd50-4dec-ab70-5ebd43af1309 {
	background-image: url("//d3a1v57rabk2hm.cloudfront.net/spiffysocks/bold_mobile/images/spiffy_socks_background.jpg?ts=1532471289&host=my.cratejoy.com");
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
  	opacity: 0.8;
}

section#cmp_2066982a-bd50-4dec-ab70-5ebd43af1309 h2 {
  color: #fff;
  opacity: 1;
}

section#cmp_2066982a-bd50-4dec-ab70-5ebd43af1309 p {
  color: #fff;
  opacity: 1;
}

/*promo bar section*/

.container-fluid {
  padding-right: 0;
  padding-left: 0;
}

  
section#promo_bar p {
  margin-bottom: 0;
  font-size: 12px;
}

section#promo_bar {
  width: 100%;	
  padding: 5px;
  background: #ffffff;
  border-bottom: 1px solid #F0F0F0;
  font-family: Poppins;
  font-size: 14px;
  color: #1F1F1F;
  div > img {position:absolute;} 
}

section#promo_bar a {
  color: #000;
}

section#promo_bar .btn {
  margin-left: 10px;
  color: #49494A;
  font-family: Oswald;
  background: #fff;
  padding: 1px 2px 1px 2px;
  border-radius: 3px;
  border: hidden;
/*  color: #f44210; orange*/
}


section#promo_bar .btn:hover {
    background-color: #fff;
    color: black;
}

.bar_large img {
  width: 22px;
}

@media (max-width: 992px) {
	.bar_large {
		display: none;
		height: 30px;
	}
}

.bar_small {
  	padding: 25px;
    text-align: center;
}

@media (min-width: 992px) {
	.bar_small {
		display: none;
	}
}

/*Discover Our Socks Page*/

.discover-wrapper {
  padding: 30px 0 0 0;
}

.discover_bamboo_text {
  padding: 70px 0 0 30px;
}
  

/*Variants Page*/
.sf-grid__container__variant {
  	margin: auto;
}

.sf-item {
	padding-bottom: 50px;
}

span.holiday_message {
	color: #f34210;
  	font-weight: bold;
}

/*Hero Section*/
@media (max-width: 768px) {
	.hero-media-large {
		display: none;
	}
}

@media (min-width: 768px) {
	.hero-media-small {
		display: none;
	}
}

.hero-media-small {
	background: url("//d3a1v57rabk2hm.cloudfront.net/spiffysocks/bold_mobile/images/mobile-background.jpg?ts=1635183341&host=my.cratejoy.com"); 
  	background-size: cover;
  	background-repeat: no-repeat;
	background-position: right;
  	height: auto;
	
}

/*What's Good Section*/
@media (max-width: 992px) {
	.whats-good-media-large {
		display: none;
	}
}

@media (min-width: 992px) {
	.whats-good-media-small {
		display: none;
	}
}

.whats-good-media-small {
  	padding: 0 25px 0 25px;
}


/*new tech*/

section#new_tech {
  width: 100%;
  padding: 0 0 50px;
}

section#new_tech h3{
  margin-bottom: 10px;
  color: rgb(126, 211, 33);
}

section#new_tech .img-wrapper img {
  width: 100%;
  padding: 40px 0 0 0;
}

section#new_tech .img-overlay:before {
  content: ' ';
  display: block;
  /* adjust 'height' to position overlay content vertically */
}

.new_tech_text {
  padding: 70px 0 0 0;
}

.new_tech_text p {
  padding: 0 0 20px 0;
  line-height: 2.0;
}


.new_tech-img-wrapper {
  padding: 0 0 0 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.new_tech_bamboo_text {
  padding: 70px 0 0 30px;
  text-align: center;
  width: 90%;
}
  


/*new_tech END*/

.discover_text {
  padding: 70px 0 0 0;
}

.discover_text p {
  padding: 0 0 20px 0;
  line-height: 2.0;
}


.discover-img-wrapper {
  padding: 0 0 0 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.discover_text {
  padding: 120px 0 0 30px;
  text-align: center;
  width: 90%;
}

section#cmp_77ba1c63-74bc-4447-9ae4-1ad0c38e1ae4 {
  background: #F5F5F5;
}

section#cmp_d51bb062-0fed-4664-b7ee-fb580492eb3b {
  background: #F5F5F5;
}


/*logo*/
img.logo {
	width: 200px;
}

/*Homepage Bar*/
section#homepage-bar {
	padding: 30px;
  	/*background-image: url("//d3a1v57rabk2hm.cloudfront.net/spiffysocks/bold_mobile/images/homepage-bar-2.png?ts=1561907199&host=my.cratejoy.com");*/
  	background-color: #1F1F1F;
    background-size: 100%;
  	background-position: center; 
	color: #fff;
	font-size: 16px;
  	font-weight: bold;
}

@media (max-width: 768px) {
	section#homepage-bar {
	padding: 30px 5px;
	line-height: 40px;
	}
}

/*Updated Testimonials*/

.bxslider-content img {
  display: block;
  margin: 0 auto;
}

.bx-wrapper ul li { height: 300px; }

.btn-sm {
	border: 1px solid #10B4E0;
	color: #10B4E0;
	padding: 5px 8px;
}

.btn-sm:hover,
.btn-sm:focus,
.btn-sm:active,
.btn-sm:active:focus {
	border: 1px solid rgb(147, 188, 81);
	color: rgb(147, 188, 81);
}

@import url("https://fonts.googleapis.com/css?family=cabin");
@import url("https://fonts.googleapis.com/css?family=oswald");


/*Pricing table */
.pricing-table{
  background-color: #eee;
  padding: 60px 0;
}

.pricing-table .block-heading {
  margin-bottom: 40px;
  text-align: center; 
}

.pricing-table .block-heading h2 {
  color: #4A4A4A;
}

.pricing-table .block-heading p {
  text-align: center;
  max-width: 420px;
  margin: auto;
  opacity: 0.7; 
}

.pricing-table .heading {
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); 
}

.pricing-table .item {
  background-color: #ffffff;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.075);
  /*border-top: 2px solid #86B910;*/
  padding: 30px;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

.pricing-table .col-md-5:not(:last-child) .item {
  margin-bottom: 30px; 
}

.pricing-table .item button {
  font-weight: 600; 
}

.pricing-table .ribbon {
  width: 160px;
  height: 32px;
  font-size: 12px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  box-shadow: 0px 2px 3px rgba(136, 136, 136, 0.25);
  background: #86B910;
  transform: rotate(45deg);
  position: absolute;
  right: -42px;
  top: 20px;
  padding-top: 7px; 
}

.pricing-table .item p {
  text-align: center;
  margin-top: 20px;
  opacity: 0.7; 
}

.pricing-table .features .feature {
  font-weight: 600; }

.pricing-table .features h4 {
  text-align: center;
  font-size: 18px;
  padding: 5px; 
}

.pricing-table .buy-now button {
  text-align: center;
  margin: auto;
  font-weight: 600; 
  padding: 9px 0; 
}

.pricing-img {
  max-width: 50%;
  padding-top: 30px;
  display: block;
  margin: 0 auto;
}

.more-options {
  display: block;
  float: right;
  color: #10B4E0;
}

/* Product Listing */

#cmp_7d7f1c0f-39b9-46e3-ad1a-c2b9d85f65e2 {
  	width: 100%;
    padding: 50px 0px 50px 0;
    background-image: url("//d3a1v57rabk2hm.cloudfront.net/spiffysocks/bold_mobile/images/sock-store.jpg?ts=1573169782&host=my.cratejoy.com");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
    color: #fff;
  	margin-bottom: 50px;
}

h3.shop-listing-item__name {
  	font-size: 18px;
}
  
#cmp_7d7f1c0f-39b9-46e3-ad1a-c2b9d85f65e2 h1 {
  	color: #fff;
}  
  
#cmp_7d7f1c0f-39b9-46e3-ad1a-c2b9d85f65e2a p {
  	color: #fff;
}  

#cmp_7d7f1c0f-39b9-46e3-ad1a-c2b9d85f65e2 a {
  	color: #fff;
}  

/* Covid-19 Information */

section#cmp_a0a050f0-3e90-4f65-aec7-53aafc4606f6 {
  	background-color: #e5f1fe;
  	padding: 30px;
}

section#cmp_9c488b3f-6868-4f68-be62-3e565a13972f {
	padding-top: 30px;
}

/* Education Field Discount*/

section#cmp_c2e12349-2ccb-423c-962d-9a1b34d8f32f img {
    max-width: 50%;
}

section#cmp_c2e12349-2ccb-423c-962d-9a1b34d8f32f span.h2 {

}

/* TrustPulse */
.tp-widget-timestamp {
 	display: none; 
}

.tp-widget-divider {
 	display: none; 
}

/*
 * components/about/cmp_46f6a5e0-859f-48c7-99c7-fb2b4dd8e9bb/component.css
 */
#cmp_46f6a5e0-859f-48c7-99c7-fb2b4dd8e9bb {
	background-color: #E8E4E2;
}

#cmp_46f6a5e0-859f-48c7-99c7-fb2b4dd8e9bb h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_46f6a5e0-859f-48c7-99c7-fb2b4dd8e9bb h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_46f6a5e0-859f-48c7-99c7-fb2b4dd8e9bb h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_46f6a5e0-859f-48c7-99c7-fb2b4dd8e9bb p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}


#cmp_46f6a5e0-859f-48c7-99c7-fb2b4dd8e9bb .btn {
	background-color: rgb(16, 180, 224);
	color: #FFFFFF;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_46f6a5e0-859f-48c7-99c7-fb2b4dd8e9bb .btn:hover {
	background-color: rgb(16, 180, 224);
	color: #FFFFFF;
}

#cmp_46f6a5e0-859f-48c7-99c7-fb2b4dd8e9bb .component-rich-text-with-button__content-row,
#cmp_46f6a5e0-859f-48c7-99c7-fb2b4dd8e9bb .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_46f6a5e0-859f-48c7-99c7-fb2b4dd8e9bb .component-rich-text-with-button__content-row,
	#cmp_46f6a5e0-859f-48c7-99c7-fb2b4dd8e9bb .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_46f6a5e0-859f-48c7-99c7-fb2b4dd8e9bb ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_46f6a5e0-859f-48c7-99c7-fb2b4dd8e9bb ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/about/cmp_8376720a-c88e-4950-b32a-b863cf1153e2/component.css
 */
#cmp_8376720a-c88e-4950-b32a-b863cf1153e2 {
	background-color: #E8E4E2;
}

#cmp_8376720a-c88e-4950-b32a-b863cf1153e2 h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_8376720a-c88e-4950-b32a-b863cf1153e2 h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_8376720a-c88e-4950-b32a-b863cf1153e2 h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_8376720a-c88e-4950-b32a-b863cf1153e2 p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_8376720a-c88e-4950-b32a-b863cf1153e2 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_8376720a-c88e-4950-b32a-b863cf1153e2 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_8376720a-c88e-4950-b32a-b863cf1153e2 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/about/cmp_a16ef17e-3e0c-41ae-862d-91a79f7012eb/component.css
 */
#cmp_a16ef17e-3e0c-41ae-862d-91a79f7012eb {
	background-color: #FFFFFF;
}

#cmp_a16ef17e-3e0c-41ae-862d-91a79f7012eb h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_a16ef17e-3e0c-41ae-862d-91a79f7012eb h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_a16ef17e-3e0c-41ae-862d-91a79f7012eb h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_a16ef17e-3e0c-41ae-862d-91a79f7012eb p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_a16ef17e-3e0c-41ae-862d-91a79f7012eb .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_a16ef17e-3e0c-41ae-862d-91a79f7012eb ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_a16ef17e-3e0c-41ae-862d-91a79f7012eb ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/about/cmp_a1e6b709-8517-401a-aabe-7fc5d12b1897/component.css
 */
#cmp_a1e6b709-8517-401a-aabe-7fc5d12b1897 {
	background-color: #FFFFFF;
}

#cmp_a1e6b709-8517-401a-aabe-7fc5d12b1897 .content-row {
	margin: 0;

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

#cmp_a1e6b709-8517-401a-aabe-7fc5d12b1897 .content {
	background-color: #FFFFFF;
	border: 5px solid #FFFFFF;
	margin: 15px 0;
	padding: 25px;

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

#cmp_a1e6b709-8517-401a-aabe-7fc5d12b1897 .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_a1e6b709-8517-401a-aabe-7fc5d12b1897 h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_a1e6b709-8517-401a-aabe-7fc5d12b1897 h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_a1e6b709-8517-401a-aabe-7fc5d12b1897 h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_a1e6b709-8517-401a-aabe-7fc5d12b1897 p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_a1e6b709-8517-401a-aabe-7fc5d12b1897 .content {
		margin: 15px;
	}
}
#cmp_a1e6b709-8517-401a-aabe-7fc5d12b1897  {
	padding-top: 0;
}
/*
 * components/about/cmp_c5d7b80f-fd0e-4dcb-b851-0b95dc4b6473/component.css
 */
#cmp_c5d7b80f-fd0e-4dcb-b851-0b95dc4b6473 {
	background-color: #FFFFFF;
}

#cmp_c5d7b80f-fd0e-4dcb-b851-0b95dc4b6473 h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_c5d7b80f-fd0e-4dcb-b851-0b95dc4b6473 h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_c5d7b80f-fd0e-4dcb-b851-0b95dc4b6473 h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_c5d7b80f-fd0e-4dcb-b851-0b95dc4b6473 p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_c5d7b80f-fd0e-4dcb-b851-0b95dc4b6473 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_c5d7b80f-fd0e-4dcb-b851-0b95dc4b6473 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_c5d7b80f-fd0e-4dcb-b851-0b95dc4b6473 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_c5d7b80f-fd0e-4dcb-b851-0b95dc4b6473  {
	padding-bottom: 0;
}
/*
 * components/bulk-orders/cmp_2c8871a7-b3d0-4166-8dcb-228bed9038d4/component.css
 */
#cmp_2c8871a7-b3d0-4166-8dcb-228bed9038d4 {
	background-color: #FFFFFF;
}

#cmp_2c8871a7-b3d0-4166-8dcb-228bed9038d4 h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_2c8871a7-b3d0-4166-8dcb-228bed9038d4 h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_2c8871a7-b3d0-4166-8dcb-228bed9038d4 h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_2c8871a7-b3d0-4166-8dcb-228bed9038d4 p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}


#cmp_2c8871a7-b3d0-4166-8dcb-228bed9038d4 .btn {
	background-color: rgb(16, 180, 224);
	color: #FFFFFF;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_2c8871a7-b3d0-4166-8dcb-228bed9038d4 .btn:hover {
	background-color: rgb(16, 180, 224);
	color: #FFFFFF;
}

#cmp_2c8871a7-b3d0-4166-8dcb-228bed9038d4 .component-rich-text-with-button__content-row,
#cmp_2c8871a7-b3d0-4166-8dcb-228bed9038d4 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_2c8871a7-b3d0-4166-8dcb-228bed9038d4 .component-rich-text-with-button__content-row,
	#cmp_2c8871a7-b3d0-4166-8dcb-228bed9038d4 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_2c8871a7-b3d0-4166-8dcb-228bed9038d4 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_2c8871a7-b3d0-4166-8dcb-228bed9038d4 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/bulk-orders/cmp_937ec280-08ff-47e5-a32c-bb423045d10f/component.css
 */
#cmp_937ec280-08ff-47e5-a32c-bb423045d10f {
	background-color: #FFFFFF;
}

#cmp_937ec280-08ff-47e5-a32c-bb423045d10f h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_937ec280-08ff-47e5-a32c-bb423045d10f h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_937ec280-08ff-47e5-a32c-bb423045d10f h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_937ec280-08ff-47e5-a32c-bb423045d10f p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_937ec280-08ff-47e5-a32c-bb423045d10f .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_937ec280-08ff-47e5-a32c-bb423045d10f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_937ec280-08ff-47e5-a32c-bb423045d10f ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/care_instructions/cmp_cfe54802-4798-41bb-8c50-e7ef9aba8911/component.css
 */
#cmp_cfe54802-4798-41bb-8c50-e7ef9aba8911 {
	background-color: #FFFFFF;
}

#cmp_cfe54802-4798-41bb-8c50-e7ef9aba8911 h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_cfe54802-4798-41bb-8c50-e7ef9aba8911 h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_cfe54802-4798-41bb-8c50-e7ef9aba8911 h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_cfe54802-4798-41bb-8c50-e7ef9aba8911 p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_cfe54802-4798-41bb-8c50-e7ef9aba8911 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_cfe54802-4798-41bb-8c50-e7ef9aba8911 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_cfe54802-4798-41bb-8c50-e7ef9aba8911 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/checkout/cmp_5859464d-dd9e-4000-bb30-28499e247735/component.css
 */
#cmp_5859464d-dd9e-4000-bb30-28499e247735 .checkout_content {
	overflow: auto;
}

#cmp_5859464d-dd9e-4000-bb30-28499e247735 .checkout_content section {
	border-color: #F5F5F5;
}

#cmp_5859464d-dd9e-4000-bb30-28499e247735 .cart_listing table {
	border-color: #F5F5F5;
}

/*
 * components/covid-19_customer_service_and_shipping/cmp_9c488b3f-6868-4f68-be62-3e565a13972f/component.css
 */
#cmp_9c488b3f-6868-4f68-be62-3e565a13972f {
	background-color: #FFFFFF;
}

#cmp_9c488b3f-6868-4f68-be62-3e565a13972f h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_9c488b3f-6868-4f68-be62-3e565a13972f h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_9c488b3f-6868-4f68-be62-3e565a13972f h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_9c488b3f-6868-4f68-be62-3e565a13972f p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_9c488b3f-6868-4f68-be62-3e565a13972f .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_9c488b3f-6868-4f68-be62-3e565a13972f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_9c488b3f-6868-4f68-be62-3e565a13972f ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/covid-19_customer_service_and_shipping/cmp_a0a050f0-3e90-4f65-aec7-53aafc4606f6/component.css
 */
#cmp_a0a050f0-3e90-4f65-aec7-53aafc4606f6 {
	background-color: #FFFFFF;
}

#cmp_a0a050f0-3e90-4f65-aec7-53aafc4606f6 h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_a0a050f0-3e90-4f65-aec7-53aafc4606f6 h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_a0a050f0-3e90-4f65-aec7-53aafc4606f6 h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_a0a050f0-3e90-4f65-aec7-53aafc4606f6 p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_a0a050f0-3e90-4f65-aec7-53aafc4606f6 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_a0a050f0-3e90-4f65-aec7-53aafc4606f6 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_a0a050f0-3e90-4f65-aec7-53aafc4606f6 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/customer/account/cmp_b9e2fb2a-7ac5-4079-9e08-1ff929f7bac9/component.css
 */

/*
 * components/customer/edit/cmp_8debfc8b-6cca-41f0-9422-aed146e32766/component.css
 */

/*
 * components/customer/forgot_password/cmp_4b394dff-c192-4d0d-a46f-3311386f6339/component.css
 */
#cmp_4b394dff-c192-4d0d-a46f-3311386f6339 {
	background-color: #FFFFFF;
}

#cmp_4b394dff-c192-4d0d-a46f-3311386f6339 h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_4b394dff-c192-4d0d-a46f-3311386f6339 h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_4b394dff-c192-4d0d-a46f-3311386f6339 h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_4b394dff-c192-4d0d-a46f-3311386f6339 p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_4b394dff-c192-4d0d-a46f-3311386f6339 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_4b394dff-c192-4d0d-a46f-3311386f6339 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_4b394dff-c192-4d0d-a46f-3311386f6339 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/customer/forgot_password/cmp_f7cc411b-5534-40e1-80f5-26e157346a35/component.css
 */
#cmp_f7cc411b-5534-40e1-80f5-26e157346a35 {
	padding: 0 0 120px 0;
}
/*
 * components/customer/login/cmp_3b629d65-46da-404f-85e1-38bba78ed830/component.css
 */
#cmp_3b629d65-46da-404f-85e1-38bba78ed830 {
	padding: 0 0 120px 0;
}
/*
 * components/customer/login/cmp_f8f3115b-db29-4b02-9d44-217afa6c4665/component.css
 */
#cmp_f8f3115b-db29-4b02-9d44-217afa6c4665 {
	background-color: #FFFFFF;
}

#cmp_f8f3115b-db29-4b02-9d44-217afa6c4665 h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_f8f3115b-db29-4b02-9d44-217afa6c4665 h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_f8f3115b-db29-4b02-9d44-217afa6c4665 h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_f8f3115b-db29-4b02-9d44-217afa6c4665 p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_f8f3115b-db29-4b02-9d44-217afa6c4665 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_f8f3115b-db29-4b02-9d44-217afa6c4665 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_f8f3115b-db29-4b02-9d44-217afa6c4665 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/customer/order/cmp_fbdb83e4-e954-43e0-998c-8beb9ee43c39/component.css
 */

/*
 * components/customer/password_reset/cmp_ba0971d4-396a-4ff3-93f4-bbd888cb7e0a/component.css
 */
#cmp_ba0971d4-396a-4ff3-93f4-bbd888cb7e0a {
	padding: 0 0 120px 0;
}
/*
 * components/customer/password_reset/cmp_d8a8e07e-7bb8-4f3a-8a77-b71e90263ee2/component.css
 */
#cmp_d8a8e07e-7bb8-4f3a-8a77-b71e90263ee2 {
	background-color: #FFFFFF;
}

#cmp_d8a8e07e-7bb8-4f3a-8a77-b71e90263ee2 h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_d8a8e07e-7bb8-4f3a-8a77-b71e90263ee2 h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_d8a8e07e-7bb8-4f3a-8a77-b71e90263ee2 h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_d8a8e07e-7bb8-4f3a-8a77-b71e90263ee2 p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_d8a8e07e-7bb8-4f3a-8a77-b71e90263ee2 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_d8a8e07e-7bb8-4f3a-8a77-b71e90263ee2 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_d8a8e07e-7bb8-4f3a-8a77-b71e90263ee2 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/customer/thank_you/cmp_0c8cb803-c630-4b45-b14d-7922c5f9feca/component.css
 */

/*
 * components/discover_our_socks/cmp_1445f153-a76a-47fa-9319-fd67520879ec/component.css
 */
#cmp_1445f153-a76a-47fa-9319-fd67520879ec {
	background-color: #FFFFFF;
}

#cmp_1445f153-a76a-47fa-9319-fd67520879ec h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_1445f153-a76a-47fa-9319-fd67520879ec h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_1445f153-a76a-47fa-9319-fd67520879ec h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_1445f153-a76a-47fa-9319-fd67520879ec p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_1445f153-a76a-47fa-9319-fd67520879ec .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_1445f153-a76a-47fa-9319-fd67520879ec ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_1445f153-a76a-47fa-9319-fd67520879ec ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/discover_our_socks/cmp_2066982a-bd50-4dec-ab70-5ebd43af1309/component.css
 */
#cmp_2066982a-bd50-4dec-ab70-5ebd43af1309 {
	background-color: #FFFFFF;
}

#cmp_2066982a-bd50-4dec-ab70-5ebd43af1309 h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_2066982a-bd50-4dec-ab70-5ebd43af1309 h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_2066982a-bd50-4dec-ab70-5ebd43af1309 h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_2066982a-bd50-4dec-ab70-5ebd43af1309 p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_2066982a-bd50-4dec-ab70-5ebd43af1309 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_2066982a-bd50-4dec-ab70-5ebd43af1309 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_2066982a-bd50-4dec-ab70-5ebd43af1309 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/discover_our_socks/cmp_37e537ff-27f2-4c79-ae96-e0514ecb65ad/component.css
 */
#cmp_37e537ff-27f2-4c79-ae96-e0514ecb65ad {
	background-color: #FFFFFF;
}

#cmp_37e537ff-27f2-4c79-ae96-e0514ecb65ad h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_37e537ff-27f2-4c79-ae96-e0514ecb65ad h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_37e537ff-27f2-4c79-ae96-e0514ecb65ad h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_37e537ff-27f2-4c79-ae96-e0514ecb65ad p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_37e537ff-27f2-4c79-ae96-e0514ecb65ad .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_37e537ff-27f2-4c79-ae96-e0514ecb65ad ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_37e537ff-27f2-4c79-ae96-e0514ecb65ad ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/discover_our_socks/cmp_77ba1c63-74bc-4447-9ae4-1ad0c38e1ae4/component.css
 */
#cmp_77ba1c63-74bc-4447-9ae4-1ad0c38e1ae4 {
	background-color: #FFFFFF;
}

#cmp_77ba1c63-74bc-4447-9ae4-1ad0c38e1ae4 h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_77ba1c63-74bc-4447-9ae4-1ad0c38e1ae4 h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_77ba1c63-74bc-4447-9ae4-1ad0c38e1ae4 h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_77ba1c63-74bc-4447-9ae4-1ad0c38e1ae4 p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_77ba1c63-74bc-4447-9ae4-1ad0c38e1ae4 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_77ba1c63-74bc-4447-9ae4-1ad0c38e1ae4 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_77ba1c63-74bc-4447-9ae4-1ad0c38e1ae4 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/discover_our_socks/cmp_d51bb062-0fed-4664-b7ee-fb580492eb3b/component.css
 */
#cmp_d51bb062-0fed-4664-b7ee-fb580492eb3b {
	background-color: #FFFFFF;
}

#cmp_d51bb062-0fed-4664-b7ee-fb580492eb3b h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_d51bb062-0fed-4664-b7ee-fb580492eb3b h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_d51bb062-0fed-4664-b7ee-fb580492eb3b h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_d51bb062-0fed-4664-b7ee-fb580492eb3b p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_d51bb062-0fed-4664-b7ee-fb580492eb3b .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_d51bb062-0fed-4664-b7ee-fb580492eb3b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_d51bb062-0fed-4664-b7ee-fb580492eb3b ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/education-field-discount/cmp_408e0199-1ebf-454a-b34b-cb4d6c8c4e85/component.css
 */
#cmp_408e0199-1ebf-454a-b34b-cb4d6c8c4e85 {
	background-color: #FFFFFF;
}

#cmp_408e0199-1ebf-454a-b34b-cb4d6c8c4e85 h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_408e0199-1ebf-454a-b34b-cb4d6c8c4e85 h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_408e0199-1ebf-454a-b34b-cb4d6c8c4e85 h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_408e0199-1ebf-454a-b34b-cb4d6c8c4e85 p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}


#cmp_408e0199-1ebf-454a-b34b-cb4d6c8c4e85 .btn {
	background-color: rgb(16, 180, 224);
	color: #FFFFFF;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_408e0199-1ebf-454a-b34b-cb4d6c8c4e85 .btn:hover {
	background-color: rgb(16, 180, 224);
	color: #FFFFFF;
}

#cmp_408e0199-1ebf-454a-b34b-cb4d6c8c4e85 .component-rich-text-with-button__content-row,
#cmp_408e0199-1ebf-454a-b34b-cb4d6c8c4e85 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_408e0199-1ebf-454a-b34b-cb4d6c8c4e85 .component-rich-text-with-button__content-row,
	#cmp_408e0199-1ebf-454a-b34b-cb4d6c8c4e85 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_408e0199-1ebf-454a-b34b-cb4d6c8c4e85 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_408e0199-1ebf-454a-b34b-cb4d6c8c4e85 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/education-field-discount/cmp_c2e12349-2ccb-423c-962d-9a1b34d8f32f/component.css
 */
#cmp_c2e12349-2ccb-423c-962d-9a1b34d8f32f img {
	max-width: 100%;
}

/*
 * components/education-field-discount/cmp_c5f21e07-0f97-41ee-b305-0152dd4ca2cb/component.css
 */
#cmp_c5f21e07-0f97-41ee-b305-0152dd4ca2cb {
	background-color: rgba(125, 127, 126, 0.22);
}

#cmp_c5f21e07-0f97-41ee-b305-0152dd4ca2cb h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_c5f21e07-0f97-41ee-b305-0152dd4ca2cb h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_c5f21e07-0f97-41ee-b305-0152dd4ca2cb h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_c5f21e07-0f97-41ee-b305-0152dd4ca2cb p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_c5f21e07-0f97-41ee-b305-0152dd4ca2cb .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_c5f21e07-0f97-41ee-b305-0152dd4ca2cb ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_c5f21e07-0f97-41ee-b305-0152dd4ca2cb ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/faq/cmp_950576d9-3023-4139-a608-f0472b1f636a/component.css
 */
#cmp_950576d9-3023-4139-a608-f0472b1f636a {
	background-color: #FFFFFF;
}

#cmp_950576d9-3023-4139-a608-f0472b1f636a h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_950576d9-3023-4139-a608-f0472b1f636a h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_950576d9-3023-4139-a608-f0472b1f636a h3 {
	color: #000000;
	font-family: Poppins;
	font-size: 16px;
}

#cmp_950576d9-3023-4139-a608-f0472b1f636a p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_950576d9-3023-4139-a608-f0472b1f636a .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_950576d9-3023-4139-a608-f0472b1f636a ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_950576d9-3023-4139-a608-f0472b1f636a ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_950576d9-3023-4139-a608-f0472b1f636a h2 {
	margin: 0 0 40px 0;
}
#cmp_950576d9-3023-4139-a608-f0472b1f636a p {
	border-bottom: 1px solid #EEEEEE;
	padding: 0 0 25px 0;
}
/*
 * components/faq/cmp_b313d094-8da2-41b9-9674-7c3e09650ff6/component.css
 */
#cmp_b313d094-8da2-41b9-9674-7c3e09650ff6 {
	background-color: #E8E4E2;
}

#cmp_b313d094-8da2-41b9-9674-7c3e09650ff6 h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_b313d094-8da2-41b9-9674-7c3e09650ff6 h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_b313d094-8da2-41b9-9674-7c3e09650ff6 h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_b313d094-8da2-41b9-9674-7c3e09650ff6 p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}


#cmp_b313d094-8da2-41b9-9674-7c3e09650ff6 .btn {
	background-color: rgb(16, 180, 224);
	color: #FFFFFF;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_b313d094-8da2-41b9-9674-7c3e09650ff6 .btn:hover {
	background-color: rgb(16, 180, 224);
	color: #FFFFFF;
}

#cmp_b313d094-8da2-41b9-9674-7c3e09650ff6 .component-rich-text-with-button__content-row,
#cmp_b313d094-8da2-41b9-9674-7c3e09650ff6 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_b313d094-8da2-41b9-9674-7c3e09650ff6 .component-rich-text-with-button__content-row,
	#cmp_b313d094-8da2-41b9-9674-7c3e09650ff6 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_b313d094-8da2-41b9-9674-7c3e09650ff6 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_b313d094-8da2-41b9-9674-7c3e09650ff6 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/global/cmp_2b8cc702-ba72-4b3c-9262-d555f26fd4f9/component.css
 */
#cmp_2b8cc702-ba72-4b3c-9262-d555f26fd4f9.footer {
	background-color: rgb(147, 188, 81);
	color: #FFFFFF;
	font-family: Poppins;
	padding: 25px 0;

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

#cmp_2b8cc702-ba72-4b3c-9262-d555f26fd4f9.footer p {
	color: #FFFFFF;
}

#cmp_2b8cc702-ba72-4b3c-9262-d555f26fd4f9 .footer-subscribe {
	padding: 15px 0;
}

#cmp_2b8cc702-ba72-4b3c-9262-d555f26fd4f9 .footer-subscribe .btn {
	border: 1px solid #FFFFFF;
}

#cmp_2b8cc702-ba72-4b3c-9262-d555f26fd4f9 .footer-social {
	padding: 15px 0;
}

#cmp_2b8cc702-ba72-4b3c-9262-d555f26fd4f9 .footer-social a {
	display: inline-block;
	padding: 0 5px;
}

#cmp_2b8cc702-ba72-4b3c-9262-d555f26fd4f9 .footer-social svg path {
	fill: #FFFFFF;
}

#cmp_2b8cc702-ba72-4b3c-9262-d555f26fd4f9 .footer-social a:hover svg path,
#cmp_2b8cc702-ba72-4b3c-9262-d555f26fd4f9 .footer-social a:focus svg path,
#cmp_2b8cc702-ba72-4b3c-9262-d555f26fd4f9 .footer-social a:active svg path {
	fill: rgba(15, 103, 208, 0.7);
}

#cmp_2b8cc702-ba72-4b3c-9262-d555f26fd4f9 .footer-contact {
	padding: 15px 0;

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

#cmp_2b8cc702-ba72-4b3c-9262-d555f26fd4f9 .footer-contact p {
	margin: 0 0 0.5em 0;
}

@media (min-width: 768px) {
	#cmp_2b8cc702-ba72-4b3c-9262-d555f26fd4f9.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_39f1993d-e0e8-4c99-bf8d-d10d44182456/component.css
 */
#cmp_39f1993d-e0e8-4c99-bf8d-d10d44182456 {
	border-bottom: 2px solid #E8E4E2;
	padding: 0;
}

#cmp_39f1993d-e0e8-4c99-bf8d-d10d44182456 .navbar {
	background-color: #FFFFFF;
	border-radius: 0;
	padding: 0;

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

#cmp_39f1993d-e0e8-4c99-bf8d-d10d44182456 .navbar a:hover,
#cmp_39f1993d-e0e8-4c99-bf8d-d10d44182456 .navbar a:focus,
#cmp_39f1993d-e0e8-4c99-bf8d-d10d44182456 .navbar a:active {
	color: rgba(15, 103, 208, 0.7);
}

#cmp_39f1993d-e0e8-4c99-bf8d-d10d44182456 .navbar-brand {
	color: #000000;
	font-family: Poppins;
	font-size: 16px;
	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_39f1993d-e0e8-4c99-bf8d-d10d44182456 .navbar-brand img {
	max-width: 100%;
}

#cmp_39f1993d-e0e8-4c99-bf8d-d10d44182456 .navbar .navbar-toggler {
	background-color: rgb(16, 180, 224);
	border-radius: 0;
	color: #FFFFFF;
	font-size: 14px;
	letter-spacing: 0px;
	padding: 15px;
}

#cmp_39f1993d-e0e8-4c99-bf8d-d10d44182456 .navbar .navbar-toggler:hover,
#cmp_39f1993d-e0e8-4c99-bf8d-d10d44182456 .navbar .navbar-toggler:focus,
#cmp_39f1993d-e0e8-4c99-bf8d-d10d44182456 .navbar .navbar-toggler:active {
	background-color: rgb(16, 180, 224);
	color: #FFFFFF;
}

#cmp_39f1993d-e0e8-4c99-bf8d-d10d44182456 .navbar-nav {
	background-color: rgb(16, 180, 224);
	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_39f1993d-e0e8-4c99-bf8d-d10d44182456 .navbar-nav li {
	padding-top: 10px;
	padding-bottom: 10px;
}

#cmp_39f1993d-e0e8-4c99-bf8d-d10d44182456 .navbar-nav .nav-link {
	color: #FFFFFF;
	font-family: Poppins;
	font-size: 14px;;
	letter-spacing: 0px;
	padding: 0 15px 0 15px;
	text-align: center;
}

@media (max-width: 767px) {
	#cmp_39f1993d-e0e8-4c99-bf8d-d10d44182456 {
		border-width: 0;
	}
	#cmp_39f1993d-e0e8-4c99-bf8d-d10d44182456 .dropdown-menu {
		background-color: rgb(16, 180, 224);
	}
}

@media (min-width: 768px) {
	#cmp_39f1993d-e0e8-4c99-bf8d-d10d44182456 .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_39f1993d-e0e8-4c99-bf8d-d10d44182456 .navbar-brand {
		padding: 0;
		padding-bottom: 15px;
	}
	#cmp_39f1993d-e0e8-4c99-bf8d-d10d44182456 .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_39f1993d-e0e8-4c99-bf8d-d10d44182456 .navbar-nav {
		background-color: #FFFFFF;
		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_39f1993d-e0e8-4c99-bf8d-d10d44182456 .navbar-nav li {
		padding: 0;
	}
	#cmp_39f1993d-e0e8-4c99-bf8d-d10d44182456 .navbar-nav .nav-link {
		color: rgb(31, 31, 31);
	}
	#cmp_39f1993d-e0e8-4c99-bf8d-d10d44182456 .navbar a:hover,
	#cmp_39f1993d-e0e8-4c99-bf8d-d10d44182456 .navbar a:focus,
	#cmp_39f1993d-e0e8-4c99-bf8d-d10d44182456 .navbar a:active {
		color: rgb(147, 188, 81);
	}
}

/*
 * components/global/cmp_beeb92fd-30b4-45b8-b4dc-c7e5320f31da/component.css
 */
#cmp_beeb92fd-30b4-45b8-b4dc-c7e5320f31da {
	background-color: #FFFFFF;
}

#cmp_beeb92fd-30b4-45b8-b4dc-c7e5320f31da h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_beeb92fd-30b4-45b8-b4dc-c7e5320f31da h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_beeb92fd-30b4-45b8-b4dc-c7e5320f31da h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_beeb92fd-30b4-45b8-b4dc-c7e5320f31da p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}


#cmp_beeb92fd-30b4-45b8-b4dc-c7e5320f31da .btn {
	background-color: rgb(16, 180, 224);
	color: #FFFFFF;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_beeb92fd-30b4-45b8-b4dc-c7e5320f31da .btn:hover {
	background-color: rgb(16, 180, 224);
	color: #FFFFFF;
}

#cmp_beeb92fd-30b4-45b8-b4dc-c7e5320f31da .component-rich-text-with-button__content-row,
#cmp_beeb92fd-30b4-45b8-b4dc-c7e5320f31da .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_beeb92fd-30b4-45b8-b4dc-c7e5320f31da .component-rich-text-with-button__content-row,
	#cmp_beeb92fd-30b4-45b8-b4dc-c7e5320f31da .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_beeb92fd-30b4-45b8-b4dc-c7e5320f31da ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_beeb92fd-30b4-45b8-b4dc-c7e5320f31da ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_beeb92fd-30b4-45b8-b4dc-c7e5320f31da  {
	padding-top: 0;
}
/*
 * components/howitworks/cmp_42fdc877-46a8-4efb-b74d-7c17bf478024/component.css
 */
#cmp_42fdc877-46a8-4efb-b74d-7c17bf478024 {
	background-color: #FFFFFF;
}

#cmp_42fdc877-46a8-4efb-b74d-7c17bf478024 h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_42fdc877-46a8-4efb-b74d-7c17bf478024 h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_42fdc877-46a8-4efb-b74d-7c17bf478024 h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_42fdc877-46a8-4efb-b74d-7c17bf478024 p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_42fdc877-46a8-4efb-b74d-7c17bf478024 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_42fdc877-46a8-4efb-b74d-7c17bf478024 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_42fdc877-46a8-4efb-b74d-7c17bf478024 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/howitworks/cmp_8b5a3d8d-283d-4a15-81c9-947147af9b58/component.css
 */
#cmp_8b5a3d8d-283d-4a15-81c9-947147af9b58 {
	background-color: #FFFFFF;
	padding: 0;
}

#cmp_8b5a3d8d-283d-4a15-81c9-947147af9b58 .content {
	margin: 0 auto;
	padding: 25px;
}

#cmp_8b5a3d8d-283d-4a15-81c9-947147af9b58 .content .cta {
	border: 5px solid rgb(147, 188, 81);
	padding: 45px;
}

#cmp_8b5a3d8d-283d-4a15-81c9-947147af9b58 h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_8b5a3d8d-283d-4a15-81c9-947147af9b58 h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_8b5a3d8d-283d-4a15-81c9-947147af9b58 h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_8b5a3d8d-283d-4a15-81c9-947147af9b58 p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/howitworks/cmp_b62a00a0-da1b-432d-ae8a-d0fcc774363b/component.css
 */
#cmp_b62a00a0-da1b-432d-ae8a-d0fcc774363b {
	background-color: #E8E4E2;
}

#cmp_b62a00a0-da1b-432d-ae8a-d0fcc774363b .content-row {
	margin: 0;

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

#cmp_b62a00a0-da1b-432d-ae8a-d0fcc774363b .content {
	background-color: #FFFFFF;
	border: 5px solid #FFFFFF;
	margin: 15px 0;
	padding: 25px;

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

#cmp_b62a00a0-da1b-432d-ae8a-d0fcc774363b .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_b62a00a0-da1b-432d-ae8a-d0fcc774363b h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_b62a00a0-da1b-432d-ae8a-d0fcc774363b h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_b62a00a0-da1b-432d-ae8a-d0fcc774363b h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_b62a00a0-da1b-432d-ae8a-d0fcc774363b p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_b62a00a0-da1b-432d-ae8a-d0fcc774363b .content {
		margin: 15px;
	}
}
/*
 * components/index/cmp_2732fb4c-3bbc-4044-8e18-44da0d910f6c/component.css
 */
#cmp_2732fb4c-3bbc-4044-8e18-44da0d910f6c {
	background-color: #FFFFFF;
}

#cmp_2732fb4c-3bbc-4044-8e18-44da0d910f6c h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_2732fb4c-3bbc-4044-8e18-44da0d910f6c h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_2732fb4c-3bbc-4044-8e18-44da0d910f6c h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_2732fb4c-3bbc-4044-8e18-44da0d910f6c p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_2732fb4c-3bbc-4044-8e18-44da0d910f6c .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_2732fb4c-3bbc-4044-8e18-44da0d910f6c ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_2732fb4c-3bbc-4044-8e18-44da0d910f6c ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/index/cmp_3372fbd1-bd07-4821-a4b4-fc0c981fd24a/component.css
 */
#cmp_3372fbd1-bd07-4821-a4b4-fc0c981fd24a {
	background-color: #FFFFFF;
}

#cmp_3372fbd1-bd07-4821-a4b4-fc0c981fd24a h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_3372fbd1-bd07-4821-a4b4-fc0c981fd24a h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_3372fbd1-bd07-4821-a4b4-fc0c981fd24a h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_3372fbd1-bd07-4821-a4b4-fc0c981fd24a p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_3372fbd1-bd07-4821-a4b4-fc0c981fd24a .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_3372fbd1-bd07-4821-a4b4-fc0c981fd24a ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_3372fbd1-bd07-4821-a4b4-fc0c981fd24a ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/index/cmp_3e0f759b-c996-471b-b76b-42d5c826eb8f/component.css
 */
#cmp_3e0f759b-c996-471b-b76b-42d5c826eb8f {
	background-color: #FFFFFF;
}

#cmp_3e0f759b-c996-471b-b76b-42d5c826eb8f h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_3e0f759b-c996-471b-b76b-42d5c826eb8f h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_3e0f759b-c996-471b-b76b-42d5c826eb8f h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_3e0f759b-c996-471b-b76b-42d5c826eb8f p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_3e0f759b-c996-471b-b76b-42d5c826eb8f .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_3e0f759b-c996-471b-b76b-42d5c826eb8f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_3e0f759b-c996-471b-b76b-42d5c826eb8f ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/index/cmp_52874622-fdde-4b30-9b0d-42ec1a10b3ac/component.css
 */
#cmp_52874622-fdde-4b30-9b0d-42ec1a10b3ac {
	background-color: rgb(255, 255, 255);
}

#cmp_52874622-fdde-4b30-9b0d-42ec1a10b3ac h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
  	
}

#cmp_52874622-fdde-4b30-9b0d-42ec1a10b3ac h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 32px;
}

#cmp_52874622-fdde-4b30-9b0d-42ec1a10b3ac h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_52874622-fdde-4b30-9b0d-42ec1a10b3ac p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_52874622-fdde-4b30-9b0d-42ec1a10b3ac .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_52874622-fdde-4b30-9b0d-42ec1a10b3ac ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_52874622-fdde-4b30-9b0d-42ec1a10b3ac ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/index/cmp_59eed87b-e437-453c-901f-53768c2c9c91/component.css
 */
#cmp_59eed87b-e437-453c-901f-53768c2c9c91 {
	background-position: right bottom !important;
	background-repeat: no-repeat !important;
	margin: 0;
	min-height: calc(100vh - 100px);
	padding: 0;

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

#cmp_59eed87b-e437-453c-901f-53768c2c9c91 .container-fluid {
	width: 100%;
}

#cmp_59eed87b-e437-453c-901f-53768c2c9c91 .hero-row {
	margin: 0;
}

#cmp_59eed87b-e437-453c-901f-53768c2c9c91 .hero-content {
	margin: 0;
	text-align: center;
}

#cmp_59eed87b-e437-453c-901f-53768c2c9c91 .hero-content h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 36px;
  	font-stretch: 100%;
    font-weight: 700;
}

#cmp_59eed87b-e437-453c-901f-53768c2c9c91 .hero-content h2 {
	color: rgb(74, 74, 74);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_59eed87b-e437-453c-901f-53768c2c9c91 .hero-content h3 {
	color: rgb(74, 74, 74);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_59eed87b-e437-453c-901f-53768c2c9c91 .hero-content p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_59eed87b-e437-453c-901f-53768c2c9c91 .hero-content .button-container {
	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;

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

#cmp_59eed87b-e437-453c-901f-53768c2c9c91 .hero-content .btn {
	margin: 5px 0;
	padding: 1em;
	white-space: normal;
	width: 90%;
}

#cmp_59eed87b-e437-453c-901f-53768c2c9c91 .hero-content .btn-primary {
	background-color: rgb(16, 180, 224);
	color: #FFFFFF;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_59eed87b-e437-453c-901f-53768c2c9c91 .hero-content .btn-primary:hover,
#cmp_59eed87b-e437-453c-901f-53768c2c9c91 .hero-content .btn-primary:focus,
#cmp_59eed87b-e437-453c-901f-53768c2c9c91 .hero-content .btn-primary:active {
	background-color: rgb(139, 217, 236);
	color: #FFFFFF;
}

#cmp_59eed87b-e437-453c-901f-53768c2c9c91 .hero-content .btn-secondary {
	background-color: rgb(248, 213, 28);
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_59eed87b-e437-453c-901f-53768c2c9c91 .hero-content .btn-secondary:hover,
#cmp_59eed87b-e437-453c-901f-53768c2c9c91 .hero-content .btn-secondary:focus,
#cmp_59eed87b-e437-453c-901f-53768c2c9c91 .hero-content .btn-secondary:active {
	background-color: rgb(250, 228, 135);
	color: rgb(255, 255, 255);
}

@media (min-width: 768px) {
	#cmp_59eed87b-e437-453c-901f-53768c2c9c91 {
		min-height: 40vw;
	}
	#cmp_59eed87b-e437-453c-901f-53768c2c9c91 .hero-content {
		margin: 15px;
		text-align: left;
	}
	#cmp_59eed87b-e437-453c-901f-53768c2c9c91 .hero-content .button-container {
		-webkit-justify-content: flex-start;
		-moz-justify-content: flex-start;
		-ms-justify-content: flex-start;
		justify-content: flex-start;
	}
	#cmp_59eed87b-e437-453c-901f-53768c2c9c91 .hero-content .btn {
		margin: 0 15px 0 0;
		width: 45%;
	}
}

@media (min-width: 1200px) {
	#cmp_59eed87b-e437-453c-901f-53768c2c9c91 {

	}
}

/*
 * components/index/cmp_6b1e5bc9-7291-46e8-ae8e-e53cc978f8dd/component.css
 */
#cmp_6b1e5bc9-7291-46e8-ae8e-e53cc978f8dd {
	background-color: #FFFFFF;
}

#cmp_6b1e5bc9-7291-46e8-ae8e-e53cc978f8dd h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_6b1e5bc9-7291-46e8-ae8e-e53cc978f8dd h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_6b1e5bc9-7291-46e8-ae8e-e53cc978f8dd h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_6b1e5bc9-7291-46e8-ae8e-e53cc978f8dd p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_6b1e5bc9-7291-46e8-ae8e-e53cc978f8dd .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_6b1e5bc9-7291-46e8-ae8e-e53cc978f8dd ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_6b1e5bc9-7291-46e8-ae8e-e53cc978f8dd ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}


/*
 * components/index/cmp_a14fba3d-6c14-4bf8-b420-77600d36387a/component.css
 */
#cmp_a14fba3d-6c14-4bf8-b420-77600d36387a {
	background-color: rgb(126, 211, 33);
}

#cmp_a14fba3d-6c14-4bf8-b420-77600d36387a h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_a14fba3d-6c14-4bf8-b420-77600d36387a h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_a14fba3d-6c14-4bf8-b420-77600d36387a h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_a14fba3d-6c14-4bf8-b420-77600d36387a p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_a14fba3d-6c14-4bf8-b420-77600d36387a .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_a14fba3d-6c14-4bf8-b420-77600d36387a ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_a14fba3d-6c14-4bf8-b420-77600d36387a ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/index/cmp_c5250c8c-0570-44cf-841f-ea4d829484ef/component.css
 */
#cmp_c5250c8c-0570-44cf-841f-ea4d829484ef {
	background-color: #FFFFFF;
  	padding-top: 0 0 60px 0;
}

#cmp_c5250c8c-0570-44cf-841f-ea4d829484ef h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_c5250c8c-0570-44cf-841f-ea4d829484ef h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_c5250c8c-0570-44cf-841f-ea4d829484ef h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_c5250c8c-0570-44cf-841f-ea4d829484ef p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_c5250c8c-0570-44cf-841f-ea4d829484ef .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_c5250c8c-0570-44cf-841f-ea4d829484ef ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_c5250c8c-0570-44cf-841f-ea4d829484ef ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/index/cmp_dc49d00c-1fc3-4283-bea8-a6ddea11a2d0/component.css
 */
#cmp_dc49d00c-1fc3-4283-bea8-a6ddea11a2d0 {
	background-color: #FFFFFF;
}

#cmp_dc49d00c-1fc3-4283-bea8-a6ddea11a2d0 h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_dc49d00c-1fc3-4283-bea8-a6ddea11a2d0 h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_dc49d00c-1fc3-4283-bea8-a6ddea11a2d0 h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_dc49d00c-1fc3-4283-bea8-a6ddea11a2d0 p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}


#cmp_dc49d00c-1fc3-4283-bea8-a6ddea11a2d0 .btn {
	background-color: rgb(16, 180, 224);
	color: #FFFFFF;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_dc49d00c-1fc3-4283-bea8-a6ddea11a2d0 .btn:hover {
	background-color: rgb(16, 180, 224);
	color: #FFFFFF;
}

#cmp_dc49d00c-1fc3-4283-bea8-a6ddea11a2d0 .component-rich-text-with-button__content-row,
#cmp_dc49d00c-1fc3-4283-bea8-a6ddea11a2d0 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_dc49d00c-1fc3-4283-bea8-a6ddea11a2d0 .component-rich-text-with-button__content-row,
	#cmp_dc49d00c-1fc3-4283-bea8-a6ddea11a2d0 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_dc49d00c-1fc3-4283-bea8-a6ddea11a2d0 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_dc49d00c-1fc3-4283-bea8-a6ddea11a2d0 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/index/cmp_e344dfe4-b7d6-439e-9b86-39704b12cbe3/component.css
 */
#cmp_e344dfe4-b7d6-439e-9b86-39704b12cbe3 {
	background-color: rgb(245, 245, 245);
}

#cmp_e344dfe4-b7d6-439e-9b86-39704b12cbe3 h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_e344dfe4-b7d6-439e-9b86-39704b12cbe3 h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_e344dfe4-b7d6-439e-9b86-39704b12cbe3 h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_e344dfe4-b7d6-439e-9b86-39704b12cbe3 p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_e344dfe4-b7d6-439e-9b86-39704b12cbe3 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_e344dfe4-b7d6-439e-9b86-39704b12cbe3 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_e344dfe4-b7d6-439e-9b86-39704b12cbe3 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/index/cmp_e796d804-8f9b-4f25-92cd-235495a396c7/component.css
 */
#cmp_e796d804-8f9b-4f25-92cd-235495a396c7 {
	background-color: #FFFFFF;
  	min-height: 800px;
}

#cmp_e796d804-8f9b-4f25-92cd-235495a396c7 h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_e796d804-8f9b-4f25-92cd-235495a396c7 h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_e796d804-8f9b-4f25-92cd-235495a396c7 h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_e796d804-8f9b-4f25-92cd-235495a396c7 p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_e796d804-8f9b-4f25-92cd-235495a396c7 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_e796d804-8f9b-4f25-92cd-235495a396c7 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_e796d804-8f9b-4f25-92cd-235495a396c7 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/printable_gift_message/cmp_2f096985-ef42-4128-9fcd-ff9c55fe00db/component.css
 */
#cmp_2f096985-ef42-4128-9fcd-ff9c55fe00db {
	background-color: #FFFFFF;
}

#cmp_2f096985-ef42-4128-9fcd-ff9c55fe00db h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_2f096985-ef42-4128-9fcd-ff9c55fe00db h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_2f096985-ef42-4128-9fcd-ff9c55fe00db h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_2f096985-ef42-4128-9fcd-ff9c55fe00db p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_2f096985-ef42-4128-9fcd-ff9c55fe00db .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_2f096985-ef42-4128-9fcd-ff9c55fe00db ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_2f096985-ef42-4128-9fcd-ff9c55fe00db ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/printable_gift_message/cmp_f40d1b1c-d47e-4e80-8c8f-59422ef1298c/component.css
 */
#cmp_f40d1b1c-d47e-4e80-8c8f-59422ef1298c {
	background-color: #FFFFFF;
}

#cmp_f40d1b1c-d47e-4e80-8c8f-59422ef1298c h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_f40d1b1c-d47e-4e80-8c8f-59422ef1298c h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_f40d1b1c-d47e-4e80-8c8f-59422ef1298c h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_f40d1b1c-d47e-4e80-8c8f-59422ef1298c p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_f40d1b1c-d47e-4e80-8c8f-59422ef1298c .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_f40d1b1c-d47e-4e80-8c8f-59422ef1298c ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_f40d1b1c-d47e-4e80-8c8f-59422ef1298c ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/privacy_policy/cmp_418a67af-97bb-45a8-a525-d058c09502a1/component.css
 */
#cmp_418a67af-97bb-45a8-a525-d058c09502a1 {
	background-color: #FFFFFF;
}

#cmp_418a67af-97bb-45a8-a525-d058c09502a1 h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_418a67af-97bb-45a8-a525-d058c09502a1 h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_418a67af-97bb-45a8-a525-d058c09502a1 h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_418a67af-97bb-45a8-a525-d058c09502a1 p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_418a67af-97bb-45a8-a525-d058c09502a1 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_418a67af-97bb-45a8-a525-d058c09502a1 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_418a67af-97bb-45a8-a525-d058c09502a1 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/privacy_policy/cmp_ab63add0-3768-451e-9e1d-31b236b18cc7/component.css
 */
#cmp_ab63add0-3768-451e-9e1d-31b236b18cc7 {
	background-color: #FFFFFF;
}

#cmp_ab63add0-3768-451e-9e1d-31b236b18cc7 h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_ab63add0-3768-451e-9e1d-31b236b18cc7 h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_ab63add0-3768-451e-9e1d-31b236b18cc7 h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_ab63add0-3768-451e-9e1d-31b236b18cc7 p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_ab63add0-3768-451e-9e1d-31b236b18cc7 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_ab63add0-3768-451e-9e1d-31b236b18cc7 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_ab63add0-3768-451e-9e1d-31b236b18cc7 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/shop/listing/cmp_034fe969-782e-4b94-93e4-b427c4d1b966/component.css
 */
#cmp_034fe969-782e-4b94-93e4-b427c4d1b966 {
	background-color: #FFFFFF;
}

#cmp_034fe969-782e-4b94-93e4-b427c4d1b966 h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_034fe969-782e-4b94-93e4-b427c4d1b966 h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_034fe969-782e-4b94-93e4-b427c4d1b966 h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_034fe969-782e-4b94-93e4-b427c4d1b966 p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_034fe969-782e-4b94-93e4-b427c4d1b966 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_034fe969-782e-4b94-93e4-b427c4d1b966 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_034fe969-782e-4b94-93e4-b427c4d1b966 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_034fe969-782e-4b94-93e4-b427c4d1b966  {
	padding-bottom: 20px;
}
/*
 * components/shop/listing/cmp_15cc83b1-4c5d-453b-a43b-4156c433d932/component.css
 */
#cmp_15cc83b1-4c5d-453b-a43b-4156c433d932 {
	border-bottom: 1px solid #E1E1E1;
	padding: 20px 0 40px 0;
}

#cmp_15cc83b1-4c5d-453b-a43b-4156c433d932 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_6bc5a194-b729-45dd-a4ab-e8a26d665786/component.css
 */
.shop-listing-item {
	color: rgb(31, 31, 31);
}

.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/listing/cmp_c701dd30-f2eb-4669-89f2-eee68c2a23fa/component.css
 */
#cmp_c701dd30-f2eb-4669-89f2-eee68c2a23fa {
	padding: 20px 0;
}

#cmp_c701dd30-f2eb-4669-89f2-eee68c2a23fa ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/product/cmp_225adc95-836a-42aa-ac73-fd322be4aa3b/component.css
 */
#cmp_225adc95-836a-42aa-ac73-fd322be4aa3b .shop-product select {
	width: auto;
}

#cmp_225adc95-836a-42aa-ac73-fd322be4aa3b .shop-product__name {
	margin-bottom: 20px;
}

#cmp_225adc95-836a-42aa-ac73-fd322be4aa3b .shop-product__price {
	margin-bottom: 20px;
}

#cmp_225adc95-836a-42aa-ac73-fd322be4aa3b .shop-product__add-to-cart {
	margin-bottom: 20px;
}

#cmp_225adc95-836a-42aa-ac73-fd322be4aa3b .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin-bottom: 40px;
}

#cmp_225adc95-836a-42aa-ac73-fd322be4aa3b .shop-product__review-share-desktop .rating,
#cmp_225adc95-836a-42aa-ac73-fd322be4aa3b .shop-product__review-share-desktop .sharing {
	padding-top: 10px;
}

#cmp_225adc95-836a-42aa-ac73-fd322be4aa3b .shop-product__review-share-desktop h3,
#cmp_225adc95-836a-42aa-ac73-fd322be4aa3b .shop-product__review-share-mobile h3 {
	margin: 10px 0;
}
#cmp_225adc95-836a-42aa-ac73-fd322be4aa3b  {
	padding-top: 0;
}
/*
 * components/shop/product/cmp_7d7f1c0f-39b9-46e3-ad1a-c2b9d85f65e2/component.css
 */
#cmp_7d7f1c0f-39b9-46e3-ad1a-c2b9d85f65e2.shop-product-header {
	padding: 60px 0 20px 0;
}

/*
 * components/sitemap/cmp_26bfe527-1fc0-4fca-bcaa-122bc0ff5f69/component.css
 */
#cmp_26bfe527-1fc0-4fca-bcaa-122bc0ff5f69 {
	background-color: #FFFFFF;
}

#cmp_26bfe527-1fc0-4fca-bcaa-122bc0ff5f69 h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_26bfe527-1fc0-4fca-bcaa-122bc0ff5f69 h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_26bfe527-1fc0-4fca-bcaa-122bc0ff5f69 h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_26bfe527-1fc0-4fca-bcaa-122bc0ff5f69 p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_26bfe527-1fc0-4fca-bcaa-122bc0ff5f69 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_26bfe527-1fc0-4fca-bcaa-122bc0ff5f69 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_26bfe527-1fc0-4fca-bcaa-122bc0ff5f69 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/sold_out/cmp_02461237-3f46-4936-ac5b-cc6a54d6dd12/component.css
 */
#cmp_02461237-3f46-4936-ac5b-cc6a54d6dd12 img {
	max-width: 100%;
}

/*
 * components/sold_out/cmp_83f7392e-adac-46f6-bfdb-9292fc717098/component.css
 */
#cmp_83f7392e-adac-46f6-bfdb-9292fc717098 {
	background-color: #FFFFFF;
}

#cmp_83f7392e-adac-46f6-bfdb-9292fc717098 h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_83f7392e-adac-46f6-bfdb-9292fc717098 h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_83f7392e-adac-46f6-bfdb-9292fc717098 h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_83f7392e-adac-46f6-bfdb-9292fc717098 p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}


#cmp_83f7392e-adac-46f6-bfdb-9292fc717098 .btn {
	background-color: rgb(16, 180, 224);
	color: #FFFFFF;
	font-family: Poppins;
	font-size: 14px;
}

#cmp_83f7392e-adac-46f6-bfdb-9292fc717098 .btn:hover {
	background-color: rgb(16, 180, 224);
	color: #FFFFFF;
}

#cmp_83f7392e-adac-46f6-bfdb-9292fc717098 .component-rich-text-with-button__content-row,
#cmp_83f7392e-adac-46f6-bfdb-9292fc717098 .component-rich-text-with-button__button-row {
	padding: 10px 0;
}

@media (min-width: 768px) {
	#cmp_83f7392e-adac-46f6-bfdb-9292fc717098 .component-rich-text-with-button__content-row,
	#cmp_83f7392e-adac-46f6-bfdb-9292fc717098 .component-rich-text-with-button__button-row {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_83f7392e-adac-46f6-bfdb-9292fc717098 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_83f7392e-adac-46f6-bfdb-9292fc717098 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_83f7392e-adac-46f6-bfdb-9292fc717098  {
	padding-top: 0;
}
/*
 * components/subscribe/cmp_0623c438-f68e-4790-a026-2b2e596892e6/component.css
 */
#cmp_0623c438-f68e-4790-a026-2b2e596892e6 {
	background-color: #E8E4E2;
	padding-bottom: 0;
}

#cmp_0623c438-f68e-4790-a026-2b2e596892e6 .progress-bar-container {
	position: relative;
}

#cmp_0623c438-f68e-4790-a026-2b2e596892e6 .progress-bar-filler {
	background: #FFFFFF;
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_0623c438-f68e-4790-a026-2b2e596892e6 .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_0623c438-f68e-4790-a026-2b2e596892e6 .progress-bar .step {
	color: rgb(31, 31, 31);

	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_0623c438-f68e-4790-a026-2b2e596892e6 .progress-bar .step .point {
	background-color: #E8E4E2;
	border: 4px solid #FFFFFF;
	border-radius: 10px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_0623c438-f68e-4790-a026-2b2e596892e6 .progress-bar .step.active .point {
	background-color: rgb(147, 188, 81);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_0623c438-f68e-4790-a026-2b2e596892e6 .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe/cmp_07f1b71b-c662-424f-a716-f277bfbc30f5/component.css
 */
#cmp_07f1b71b-c662-424f-a716-f277bfbc30f5 {
	background-color: #E8E4E2;
}

#cmp_07f1b71b-c662-424f-a716-f277bfbc30f5 h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_07f1b71b-c662-424f-a716-f277bfbc30f5 p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_07f1b71b-c662-424f-a716-f277bfbc30f5 .sf-item {
	background-color: #FFFFFF;
}
#cmp_07f1b71b-c662-424f-a716-f277bfbc30f5  {
	padding-top: 0;
}
/*
 * components/subscribe/cmp_6e7c92fd-9ae0-4ec5-881f-d28d4b850214/component.css
 */
#cmp_6e7c92fd-9ae0-4ec5-881f-d28d4b850214 {
	background-color: #FFFFFF;
}

#cmp_6e7c92fd-9ae0-4ec5-881f-d28d4b850214 .content-row {
	margin: 0;

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

#cmp_6e7c92fd-9ae0-4ec5-881f-d28d4b850214 .content {
	background-color: #FFFFFF;
	border: 5px solid #FFFFFF;
	margin: 15px 0;
	padding: 25px;

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

#cmp_6e7c92fd-9ae0-4ec5-881f-d28d4b850214 .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_6e7c92fd-9ae0-4ec5-881f-d28d4b850214 h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_6e7c92fd-9ae0-4ec5-881f-d28d4b850214 h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_6e7c92fd-9ae0-4ec5-881f-d28d4b850214 h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_6e7c92fd-9ae0-4ec5-881f-d28d4b850214 p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_6e7c92fd-9ae0-4ec5-881f-d28d4b850214 .content {
		margin: 15px;
	}
}
#cmp_6e7c92fd-9ae0-4ec5-881f-d28d4b850214  {
	padding-top: 0;
}
/*
 * components/subscribe/cmp_ad799caf-1074-4ee7-a017-6c4ac5b76ed6/component.css
 */
#cmp_ad799caf-1074-4ee7-a017-6c4ac5b76ed6 {
	background-color: #FFFFFF;
}

#cmp_ad799caf-1074-4ee7-a017-6c4ac5b76ed6 h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_ad799caf-1074-4ee7-a017-6c4ac5b76ed6 h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_ad799caf-1074-4ee7-a017-6c4ac5b76ed6 h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_ad799caf-1074-4ee7-a017-6c4ac5b76ed6 p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_ad799caf-1074-4ee7-a017-6c4ac5b76ed6 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_ad799caf-1074-4ee7-a017-6c4ac5b76ed6 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_ad799caf-1074-4ee7-a017-6c4ac5b76ed6 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_ad799caf-1074-4ee7-a017-6c4ac5b76ed6  {
	padding-bottom: 0;
}
/*
 * components/subscribe/cmp_c539a3be-4a28-42db-898d-5cc8cc99064e/component.css
 */
#cmp_c539a3be-4a28-42db-898d-5cc8cc99064e {
	background-color: #E8E4E2;
}

#cmp_c539a3be-4a28-42db-898d-5cc8cc99064e h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_c539a3be-4a28-42db-898d-5cc8cc99064e h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_c539a3be-4a28-42db-898d-5cc8cc99064e h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_c539a3be-4a28-42db-898d-5cc8cc99064e p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_c539a3be-4a28-42db-898d-5cc8cc99064e .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_c539a3be-4a28-42db-898d-5cc8cc99064e ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_c539a3be-4a28-42db-898d-5cc8cc99064e ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_c539a3be-4a28-42db-898d-5cc8cc99064e  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_355ce5c2-c13a-48c6-a044-fc7667a7656f/component.css
 */
#cmp_355ce5c2-c13a-48c6-a044-fc7667a7656f {
	background-color: #E8E4E2;
	padding-bottom: 0;
}

#cmp_355ce5c2-c13a-48c6-a044-fc7667a7656f h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_355ce5c2-c13a-48c6-a044-fc7667a7656f p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}
#cmp_355ce5c2-c13a-48c6-a044-fc7667a7656f  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_52b4312e-1d4f-49e8-bb3f-8849ab4627f8/component.css
 */
#cmp_52b4312e-1d4f-49e8-bb3f-8849ab4627f8 {
	background-color: #E8E4E2;
}

#cmp_52b4312e-1d4f-49e8-bb3f-8849ab4627f8 h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_52b4312e-1d4f-49e8-bb3f-8849ab4627f8 p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_52b4312e-1d4f-49e8-bb3f-8849ab4627f8  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_aae246c4-bb99-4e2c-8c27-da4a06f69f80/component.css
 */
#cmp_aae246c4-bb99-4e2c-8c27-da4a06f69f80 {
	background-color: #FFFFFF;
}

#cmp_aae246c4-bb99-4e2c-8c27-da4a06f69f80 .content-row {
	margin: 0;

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

#cmp_aae246c4-bb99-4e2c-8c27-da4a06f69f80 .content {
	background-color: #FFFFFF;
	border: 5px solid #FFFFFF;
	margin: 15px 0;
	padding: 25px;

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

#cmp_aae246c4-bb99-4e2c-8c27-da4a06f69f80 .square-image {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	height: 200px;
	margin: 0 0 15px 0;
	width: 200px;
}

#cmp_aae246c4-bb99-4e2c-8c27-da4a06f69f80 h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_aae246c4-bb99-4e2c-8c27-da4a06f69f80 h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_aae246c4-bb99-4e2c-8c27-da4a06f69f80 h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_aae246c4-bb99-4e2c-8c27-da4a06f69f80 p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_aae246c4-bb99-4e2c-8c27-da4a06f69f80 .content {
		margin: 15px;
	}
}
#cmp_aae246c4-bb99-4e2c-8c27-da4a06f69f80  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_da8e51f7-5095-4f79-95b6-9fe06e75b316/component.css
 */
#cmp_da8e51f7-5095-4f79-95b6-9fe06e75b316 {
	background-color: #FFFFFF;
}

#cmp_da8e51f7-5095-4f79-95b6-9fe06e75b316 h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_da8e51f7-5095-4f79-95b6-9fe06e75b316 h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_da8e51f7-5095-4f79-95b6-9fe06e75b316 h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_da8e51f7-5095-4f79-95b6-9fe06e75b316 p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_da8e51f7-5095-4f79-95b6-9fe06e75b316 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_da8e51f7-5095-4f79-95b6-9fe06e75b316 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_da8e51f7-5095-4f79-95b6-9fe06e75b316 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_da8e51f7-5095-4f79-95b6-9fe06e75b316  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/survey_step/cmp_f3f6fbf2-4f06-4a7e-85f2-2be80a580157/component.css
 */
#cmp_f3f6fbf2-4f06-4a7e-85f2-2be80a580157 {
	background-color: #E8E4E2;
	padding-bottom: 0;
}

#cmp_f3f6fbf2-4f06-4a7e-85f2-2be80a580157 .progress-bar-container {
	position: relative;
}

#cmp_f3f6fbf2-4f06-4a7e-85f2-2be80a580157 .progress-bar-filler {
	background: #FFFFFF;
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_f3f6fbf2-4f06-4a7e-85f2-2be80a580157 .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_f3f6fbf2-4f06-4a7e-85f2-2be80a580157 .progress-bar .step {
	color: rgb(31, 31, 31);

	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_f3f6fbf2-4f06-4a7e-85f2-2be80a580157 .progress-bar .step .point {
	background-color: #E8E4E2;
	border: 4px solid #FFFFFF;
	border-radius: 10px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_f3f6fbf2-4f06-4a7e-85f2-2be80a580157 .progress-bar .step.active .point {
	background-color: rgb(147, 188, 81);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_f3f6fbf2-4f06-4a7e-85f2-2be80a580157 .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe_flow/terms_step/cmp_d0d90391-7c95-43e4-b4c0-109c6ca03f95/component.css
 */
#cmp_d0d90391-7c95-43e4-b4c0-109c6ca03f95 {
	background-color: #E8E4E2;
	padding-bottom: 0;
}

#cmp_d0d90391-7c95-43e4-b4c0-109c6ca03f95 .progress-bar-container {
	position: relative;
}

#cmp_d0d90391-7c95-43e4-b4c0-109c6ca03f95 .progress-bar-filler {
	background: #FFFFFF;
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_d0d90391-7c95-43e4-b4c0-109c6ca03f95 .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_d0d90391-7c95-43e4-b4c0-109c6ca03f95 .progress-bar .step {
	color: rgb(31, 31, 31);

	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_d0d90391-7c95-43e4-b4c0-109c6ca03f95 .progress-bar .step .point {
	background-color: #E8E4E2;
	border: 4px solid #FFFFFF;
	border-radius: 10px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_d0d90391-7c95-43e4-b4c0-109c6ca03f95 .progress-bar .step.active .point {
	background-color: rgb(147, 188, 81);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_d0d90391-7c95-43e4-b4c0-109c6ca03f95 .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe_flow/terms_step/cmp_ea99480b-40ec-4b0f-be6b-e6079ca17ac6/component.css
 */
#cmp_ea99480b-40ec-4b0f-be6b-e6079ca17ac6 {
	background-color: #E8E4E2;
}

#cmp_ea99480b-40ec-4b0f-be6b-e6079ca17ac6 h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_ea99480b-40ec-4b0f-be6b-e6079ca17ac6 h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_ea99480b-40ec-4b0f-be6b-e6079ca17ac6 p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_ea99480b-40ec-4b0f-be6b-e6079ca17ac6 .sf-item {
	background-color: #FFFFFF;
}
#cmp_ea99480b-40ec-4b0f-be6b-e6079ca17ac6  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/terms_step/cmp_f19a40d6-8280-4ee5-92b3-64928adb5df1/component.css
 */
#cmp_f19a40d6-8280-4ee5-92b3-64928adb5df1 {
	background-color: #E8E4E2;
	padding-bottom: 0;
}

#cmp_f19a40d6-8280-4ee5-92b3-64928adb5df1 h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_f19a40d6-8280-4ee5-92b3-64928adb5df1 p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}
#cmp_f19a40d6-8280-4ee5-92b3-64928adb5df1  {
	padding-bottom: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_20984c77-d16b-4235-95fa-73217a36bc69/component.css
 */
#cmp_20984c77-d16b-4235-95fa-73217a36bc69 {
	background-color: #E8E4E2;
	padding-bottom: 0;
}

#cmp_20984c77-d16b-4235-95fa-73217a36bc69 .progress-bar-container {
	position: relative;
}

#cmp_20984c77-d16b-4235-95fa-73217a36bc69 .progress-bar-filler {
	background: #FFFFFF;
	width: 90%;
	height: 2px;
	margin: 0 5%;
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	z-index: 10;
}

#cmp_20984c77-d16b-4235-95fa-73217a36bc69 .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_20984c77-d16b-4235-95fa-73217a36bc69 .progress-bar .step {
	color: rgb(31, 31, 31);

	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_20984c77-d16b-4235-95fa-73217a36bc69 .progress-bar .step .point {
	background-color: #E8E4E2;
	border: 4px solid #FFFFFF;
	border-radius: 10px;
	width: 20px;
	height: 20px;
	z-index: 20;
}

#cmp_20984c77-d16b-4235-95fa-73217a36bc69 .progress-bar .step.active .point {
	background-color: rgb(147, 188, 81);;
}

@media(min-width: 768px) and (max-width: 991px) {
	#cmp_20984c77-d16b-4235-95fa-73217a36bc69 .progress-bar::before {
		margin: 0 7%;
		width: 86%;
	}
}
/*
 * components/subscribe_flow/variant_step/cmp_63727466-be91-49c3-a062-0b2083045dad/component.css
 */
#cmp_63727466-be91-49c3-a062-0b2083045dad {
	background-color: #E8E4E2;
}

#cmp_63727466-be91-49c3-a062-0b2083045dad h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_63727466-be91-49c3-a062-0b2083045dad p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_63727466-be91-49c3-a062-0b2083045dad .sf-item {
	background-color: #FFFFFF;
}
#cmp_63727466-be91-49c3-a062-0b2083045dad  {
	padding-top: 0;
}
/*
 * components/subscribe_flow/variant_step/cmp_cadafa7e-b6f3-411b-86af-e36d840f5da8/component.css
 */
#cmp_cadafa7e-b6f3-411b-86af-e36d840f5da8 {
	background-color: #E8E4E2;
	padding-bottom: 0;
}

#cmp_cadafa7e-b6f3-411b-86af-e36d840f5da8 h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_cadafa7e-b6f3-411b-86af-e36d840f5da8 p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}
#cmp_cadafa7e-b6f3-411b-86af-e36d840f5da8  {
	padding-bottom: 0;
}
/*
 * components/terms/cmp_f495cdf5-6f87-43d7-8f9d-dd27b6a26bfa/component.css
 */
#cmp_f495cdf5-6f87-43d7-8f9d-dd27b6a26bfa {
	background-color: #FFFFFF;
}

#cmp_f495cdf5-6f87-43d7-8f9d-dd27b6a26bfa h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_f495cdf5-6f87-43d7-8f9d-dd27b6a26bfa h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_f495cdf5-6f87-43d7-8f9d-dd27b6a26bfa h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_f495cdf5-6f87-43d7-8f9d-dd27b6a26bfa p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_f495cdf5-6f87-43d7-8f9d-dd27b6a26bfa .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_f495cdf5-6f87-43d7-8f9d-dd27b6a26bfa ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_f495cdf5-6f87-43d7-8f9d-dd27b6a26bfa ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

/*
 * components/view-cart/cmp_0e9b901e-49ce-4248-86d6-8bd18e91899e/component.css
 */
#cmp_0e9b901e-49ce-4248-86d6-8bd18e91899e {
	padding: 15px 15px 100px 15px;
}

#cmp_0e9b901e-49ce-4248-86d6-8bd18e91899e .cart-thead {
	border-bottom: 1px solid #E1E1E1;
	padding: 10px 0;
}

#cmp_0e9b901e-49ce-4248-86d6-8bd18e91899e .cart-thead h3 {
	text-transform: uppercase;
}

#cmp_0e9b901e-49ce-4248-86d6-8bd18e91899e .cart-item {
	border: 1px solid #E1E1E1;
	padding: 25px 0;
	position: relative;
}

#cmp_0e9b901e-49ce-4248-86d6-8bd18e91899e .product-main {
	margin: 0 0 15px 0;
}

#cmp_0e9b901e-49ce-4248-86d6-8bd18e91899e .product-label p {
	margin: 0;
}

#cmp_0e9b901e-49ce-4248-86d6-8bd18e91899e .product-label .info {
	color: rgb(31, 31, 31);
	text-align: right;
	text-transform: uppercase;
}

#cmp_0e9b901e-49ce-4248-86d6-8bd18e91899e .product-label .meta {
	color: rgb(31, 31, 31);
	font-size: 14px;
}

#cmp_0e9b901e-49ce-4248-86d6-8bd18e91899e .product-rem-btn {
	position: absolute;
	right: 1%;
	top: 1%;
}

#cmp_0e9b901e-49ce-4248-86d6-8bd18e91899e figure {
	margin: 0 0 15px 0;
}

#cmp_0e9b901e-49ce-4248-86d6-8bd18e91899e .cart-subtotal {
	margin: 50px 0 0 0;
}

#cmp_0e9b901e-49ce-4248-86d6-8bd18e91899e .cart-subtotal h2 {
	margin: 0 0 15px 0;
}

#cmp_0e9b901e-49ce-4248-86d6-8bd18e91899e .cart-subtotal h3 {
	margin: 0 0 25px 0;
	text-transform: uppercase;
}

#cmp_0e9b901e-49ce-4248-86d6-8bd18e91899e .cart-subtotal p {
	margin: 0 0 25px 0;
}

@media (min-width: 768px) {
	#cmp_0e9b901e-49ce-4248-86d6-8bd18e91899e .cart-item {
		border-width: 0 0 1px 0;
	}
	#cmp_0e9b901e-49ce-4248-86d6-8bd18e91899e .product-rem-btn {
		top: 40%;
	}
	#cmp_0e9b901e-49ce-4248-86d6-8bd18e91899e figure {
		margin: 0;
	}
}

/*
 * components/view-cart/cmp_e0787feb-102c-4912-9a80-d77aa8d6cdb7/component.css
 */
#cmp_e0787feb-102c-4912-9a80-d77aa8d6cdb7 {
	background-color: #FFFFFF;
}

#cmp_e0787feb-102c-4912-9a80-d77aa8d6cdb7 h1 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 60px;
}

#cmp_e0787feb-102c-4912-9a80-d77aa8d6cdb7 h2 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 24px;
}

#cmp_e0787feb-102c-4912-9a80-d77aa8d6cdb7 h3 {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 16px;
}

#cmp_e0787feb-102c-4912-9a80-d77aa8d6cdb7 p {
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

@media (min-width: 768px) {
	#cmp_e0787feb-102c-4912-9a80-d77aa8d6cdb7 .content {
		margin: 0 auto;
		width: 80%;
	}
}

#cmp_e0787feb-102c-4912-9a80-d77aa8d6cdb7 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}

#cmp_e0787feb-102c-4912-9a80-d77aa8d6cdb7 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(31, 31, 31);
	font-family: Poppins;
	font-size: 14px;
}