/*
Theme Name: BrightSky light

WooCommerce styles override
*/

/**
 * Shop tables
 */

 table.shop_table_responsive tr td {
	text-align: left;
	vertical-align: top;
}

table.shop_table_responsive tr td.product-remove a {
	text-align: left;
}

table.shop_table_responsive tr td.product-remove::before {
	display: none;
}

table.shop_table_responsive tr td.actions::before,
table.shop_table_responsive tr td.download-actions::before {
	display: none;
}

table.shop_table_responsive tr td.download-actions .button {
	display: block;
	text-align: center;
}

@media screen and (min-width: 768px) {
/*
	table.shop_table_responsive thead {
		display: table-header-group;
	}
*/
	table.shop_table_responsive tbody th {
		display: table-cell;
	}

	table.shop_table_responsive tr th,
	table.shop_table_responsive tr td {
		text-align: left;
	}

	table.shop_table_responsive tr td {
		display: table-cell;
	}

	table.shop_table_responsive tr td::before {
		display: none;
	}
}

/**
 * Products
 */
 .post-type-archive-product main {
	width: var(--default-page-width);
    max-width: var(--max-default-page-width);
    margin-left: auto;
    margin-right: auto;
 }
 .sp-shortcode ul.products {
    width: var(--default-page-width);
    max-width: var(--max-default-page-width);
    margin-left: auto;
    margin-right: auto;
} 
.sp-products-container {
    margin-top: 50px;
}

ul.products {
        grid-template-columns: repeat(4, 1fr);
		list-style: none;
	display: grid;
    row-gap: 30px;
    column-gap: 30px;
    padding-left: 0px;
	margin: 0;
	}

@media screen and (min-width: 768px) {
    ul.products {
    grid-template-columns: repeat(12, 1fr);
    }
}

li.product {
        grid-column: span 4;
}
li.product img.attachment-woocommerce_thumbnail {
	width: 100%;
	border-radius: var(--default-border-radius);
}
.sp-products-container.sp-shortcode-infinityloop ul.products {
	display: flex;
	overflow-x: scroll;
	overflow-y: hidden;
	padding-bottom: 20px;
	gap: 30px;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
}
.sp-products-container.sp-shortcode-infinityloop li.product {
	scroll-snap-align: start;
}

@media screen and (min-width: 1440px) {
	.sp-products-container.sp-shortcode-infinityloop li.product {
		min-width: calc(( 1440px / 3) - 20px );
		width: calc( (1440px / 3) - 20px );
	}
}
@media screen and (max-width: 1440px) {
	.sp-products-container.sp-shortcode-infinityloop li.product {
		min-width: calc( (100vw / 3) - 20px );
		width: calc( (1440px / 3) - 20px );
	}
	.sp-infinity-scrollright-btn {
		right: 0px;
	}
}
@media screen and (max-width: 768px) {
.sp-products-container.sp-shortcode-infinityloop li.product {
	min-width: 75%;
}
}
@media screen and (min-width: 768px) {
	.sp-infinity-scrollright-btn {
		cursor: pointer;
		display: block;
		position: absolute;
		content: url(assets/icons/chewron-right.svg);
		right: calc((100vw - var(--default-page-width) - 30px) / 2 );
		top: calc(50% - 100px);
		width: 50px;
		height: 50px;
		border-radius: 50%;
		background-color: var(--bg-light-color);
		z-index: 999;
	}
	.sp-infinity-scroll-left-btn {
		cursor: pointer;
		position: absolute;
		content: url(assets/icons/chewron-left.svg);
		left: calc((100vw - var(--default-page-width)) / 2 );
		top: calc(50% - 100px);
		width: 50px;
		height: 50px;
		border-radius: 50%;
		background-color: var(--bg-light-color);
		z-index: 999;
	}
	.sp-products-container.sp-shortcode-infinityloop .sp-standard-product-loop {
		padding-left: calc((100vw - var(--default-page-width))/2);
		width: 100%;
		position: relative;
	}
	.sp-products-container.sp-shortcode-infinityloop ul.products {
		width: 100%;
		scrollbar-width: thin;
		padding-right: calc((100vw - var(--default-page-width) - 30px) / 2 );
	}
	.sp-products-container.sp-shortcode-infinityloop ul.products::-webkit-scrollbar {
		width: 10px;
	}
	.sp-products-container.sp-shortcode-infinityloop ul.products::-webkit-scrollbar-button {
		display: none;
	}
		
}
	


/*
ul.products {
	margin: 0;
	padding: 0;
}

ul.products li.product {
	list-style: none;
	position: relative;
	margin-bottom: 2em;
}

ul.products li.product img {
	display: block;
}

ul.products li.product .button {
	display: block;
} */
/*
@media screen and (min-width: 48em) {

	ul.products li.product {
		width: 30.79667%;
		float: left;
		margin-right: 3.8%;
	}

	ul.products li.product.first {
		clear: both;
	}

	ul.products li.product.last {
		margin-right: 0;
	}

	ul.products.columns-1 li.product {
		float: none;
		width: 100%;
	}

	ul.products.columns-2 li.product {
		width: 48.1%;
	}

	ul.products.columns-3 li.product {
		width: 30.79667%;
	}

	ul.products.columns-4 li.product {
		width: 22.15%;
	}

	ul.products.columns-5 li.product {
		width: 16.96%;
	}

	ul.products.columns-6 li.product {
		width: 13.49333%;
	}
}
*/
/**
 * Single product
 */
div.product {
	position: relative;
	width: var(--default-page-width);
    max-width: var(--max-default-page-width);
    margin-left: auto;
    margin-right: auto;
    display: grid;
    row-gap: 30px;
    column-gap: 30px;
}
/* prodpage with only sp-elements */
.sp-single-product-view {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	row-gap: 30px;
	column-gap: 30px;
}
@media screen and (min-width: 768px) {
	.sp-single-product-view {
		grid-template-columns: repeat(12, 1fr);
	}
}
.sp-product-details {
	grid-column: span 4;
}
@media screen and (min-width: 768px) {
	.sp-product-details {
		grid-column: span 12;
	}
}
.sp-swatches {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.sp-swatch {
    width: 15%;
    text-align: center;
}
nav.sp-tab-menu {
	display: flex;
	gap: 15px;
	padding-bottom: 5px;
	overflow-x: auto; /* scroll only if content is wider than the container */
}
@media screen and (min-width: 768px) {
nav.sp-tab-menu {
		scrollbar-width: none; /* hide scrollbar in Firefox */
}
nav.sp-tab-menu::-webkit-scrollbar {
	display: none; /* hide scrollbar in Chrome, Safari, Opera */
}
}
.sp-tab {
    cursor: pointer;
	flex-shrink: 0;
}
.sp-tab.active {
    font-weight: bold;
}
.sp-tab-panel {
	display: none;
}
.sp-tab-panel.active {
	display: block;
}
.sp-techdata-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	border-bottom: 1px solid var(--default-stroke-color);
	padding: 10px 0px;
}
.sp-techdata-label {
	font-weight: bold;
}
/* SKYPIM PRODUCT GALLERY */
.sp-product-gallery {
	width: 100%;
	grid-column: span 4;
}
@media screen and (min-width: 768px) {
	.sp-product-gallery {
		grid-column: span 6;
	}
}
.sp-product-info {
	grid-column: span 4;
}
@media screen and (min-width: 768px) {
	.sp-product-info {
		grid-column: span 6;
	}
}
.sp-product-gallery-images {
    display: none;
    overflow-x: scroll;
	scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 20px;
}
.sp-product-gallery-images.active {
    display: flex;
    
}
.sp-product-gallery-image-container {
	width: 100%;
	flex-shrink: 0;
	border-radius: var(--default-border-radius);
	overflow: hidden;
	scroll-snap-align: start;
}


.sp-product-gallery-thumbs {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 30px;
    column-gap: 30px;
	margin-top: 25px;
	width: 100%;
	max-width: 100%;
}
.sp-product-gallery-thumbs.active {
    display: grid;
}
.sp-product-gallery-thumb-container {
	width: 100%;
	flex-shrink: 0;
	border-radius: var(--default-border-radius);
	overflow: hidden;
}
.sp-product-gallery-thumb-container:not(.active) .sp-product-gallery-thumb img {
	opacity: 0.7;  /* make the actice thumb stand out */
}

div.product .woocommerce-product-gallery {
	grid-column: span 4;
}
.sp-product-gallery-arrows {
    display: none;
}


@media screen and (min-width: 768px) {
	.sp-product-gallery {
		position: relative;
	}
	.sp-product-gallery-thumb-container {
		width: 100%;
		cursor: pointer;
	}
	div.product .woocommerce-product-gallery {
		grid-column: span 6;
	}
	/* hide scrollbar on desktop */
	.sp-product-gallery-images {
		scrollbar-width: none; /* Firefox */
		-ms-overflow-style: none; /* IE 10+ */
		/* position: relative; */
	}
	
	.sp-product-gallery-images::-webkit-scrollbar {
		display: none; /* Chrome, Safari, and Opera */
	}
	.sp-product-gallery-arrows {
		display: block;
	}
	.sp-prodgallery-prev {
     content: url(assets/icons/chewron-left.svg);
    left: 0;
		top: calc( 50% - 135px);
    margin-left: 5px;
    height: 100%;   
    width: 50px;
    height: 50px;
    background-color: var(--default-color);
    border-radius: 50%;
    position: absolute;
	cursor: pointer;
}
.sp-prodgallery-next {
    position: absolute;
    content: url(assets/icons/chewron-right.svg);
    right: 0;
	top: calc( 50% - 135px);
    height: 100%;
    margin-right: 5px;
    width: 50px;
    height: 50px;
    background-color: var(--default-color);
    border-radius: 50%;
	cursor: pointer;
}
}
.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
	position: absolute;
	top: 2em;
	right: 1em;
	display: block;
	z-index: 99;
}

.single-product div.product .woocommerce-product-gallery .flex-viewport {
	margin-bottom: 1em;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs {
	margin: 0;
	padding: 0;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li {
	list-style: none;
	cursor: pointer;
	float: left;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img {
	opacity: 0.5;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img.flex-active {
	opacity: 1;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li:hover img {
	opacity: 1;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li {
	width: 48.1%;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li:nth-child(2n) {
	margin-right: 0;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li:nth-child(2n+1) {
	clear: both;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li {
	width: 30.79667%;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n) {
	margin-right: 0;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n+1) {
	clear: both;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li {
	width: 22.15%;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n) {
	margin-right: 0;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n+1) {
	clear: both;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li {
	width: 16.96%;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n) {
	margin-right: 0;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n+1) {
	clear: both;
}
@media only screen and (max-width: 600px) {
    .summary.entry-summary {
        grid-column: span 4;
    }
}
@media only screen and (min-width: 600px) {
    .summary.entry-summary {
        grid-column: span 6;
    }
}
@media only screen and (max-width: 600px) {
    .woocommerce-tabs.wc-tabs-wrapper {
        grid-column: span 4;
    }
}
@media only screen and (min-width: 600px) {
    .woocommerce-tabs.wc-tabs-wrapper {
        grid-column: span 12;
    }
}
section.related.products {
    width: var(--default-page-width);
    max-width: var(--max-default-page-width);
    margin-left: auto;
    margin-right: auto;
}
section.related.products ul {
    margin-left: 0;
}
@media only screen and (max-width: 600px) {
    section.related.products {
        grid-column: span 4;
    }
}
@media only screen and (min-width: 600px) {
    section.related.products {
        grid-column: span 12;
    }
}



.stock:empty::before {
	display: none;
}

.stock.in-stock {
	color: #0f834d;
}

.stock.out-of-stock {
	color: #e2401c;
}
/**
 * Cart
 */
.woocommerce-cart-form__contents thead {
	display: none;
}
@media screen and (min-width: 768px) {
	.woocommerce-cart-form__contents thead {
		display: none;
	}
	.woocommerce-cart .entry-content .woocommerce {
		display: grid;
		grid-template-columns: repeat(12, 1fr);
		column-gap: 25px;
	}
	.woocommerce-notices-wrapper {
		grid-column: span 12;
	}
	.woocommerce-cart-form {
		grid-column: span 9;
	}
}
.woocommerce-cart-form__contents tbody {
	max-width: 100%;
}
 .woocommerce-cart main {
    width: var(--default-page-width);
    max-width: var(--max-default-page-width);
    margin-left: auto;
    margin-right: auto;
    padding-top: 25px;
    padding-bottom: 50px;
}
.woocommerce-cart-form .product-thumbnail img {
    width: 100%;
}
.woocommerce-cart-form table {
	border-collapse:collapse;
	margin-top: 0px;
	margin-bottom: 25px;
	max-width: 100%;
}
@media screen and (min-width: 768px) {
	.woocommerce-cart-form table {
		display: table;
	}
}
	
.woocommerce-cart-form .woocommerce-cart-form__cart-item.cart_item {
	border: 1px solid var(--default-stroke-color);
	border-radius: var(--default-border-radius);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	max-width: 100%;
}
@media screen and (min-width: 768px) {
	.woocommerce-cart-form .woocommerce-cart-form__cart-item.cart_item {
		grid-template-columns: repeat(8, 1fr);
	}
	
}
.woocommerce-cart-form .woocommerce-cart-form__cart-item.cart_item td {
	padding: 10px;
}
.woocommerce-cart-form .woocommerce-cart-form__cart-item.cart_item td.product-thumbnail {
	grid-column: span 1;
}
.woocommerce-cart-form .woocommerce-cart-form__cart-item.cart_item td.product-name {
	grid-column: span 3;
}
.woocommerce-cart-form .woocommerce-cart-form__cart-item.cart_item td.product-name:not(td.product-name dd), .woocommerce-cart-form .woocommerce-cart-form__cart-item.cart_item td.product-name a {
	text-decoration: none;
	font-weight: 600;
}
.woocommerce-cart-form .woocommerce-cart-form__cart-item.cart_item td.product-price {
	grid-column: span 2;
	text-align: right;
	padding: 0 10px;
}
@media screen and (min-width: 768px) {
	.woocommerce-cart-form .woocommerce-cart-form__cart-item.cart_item td.product-price {
	grid-column: span 1;
		padding: 10px;
	}
}
.woocommerce-cart-form .woocommerce-cart-form__cart-item.cart_item td.product-quantity {
	grid-column: span 2;
	text-align: right;
	padding: 0 10px;
}
@media screen and (min-width: 768px) {
	.woocommerce-cart-form .woocommerce-cart-form__cart-item.cart_item td.product-quantity {
		padding: 10px;
	}
}

td.product-quantity .quantity {
	float: right;
	display: flex;
	gap: 4px;
}
td.product-quantity .quantity input {
	width: 58px;
	text-align: right;
	padding: 5px 10px;
}
td.product-quantity .quantity .plus, td.product-quantity .quantity .minus {
	background-color: unset;
	color: var(--default-text-color);
	border-radius: unset;
	height:  36px;
}


.woocommerce-cart-form .woocommerce-cart-form__cart-item.cart_item td.product-subtotal {
	grid-column: span 1;
	text-align: right;
	padding: 10px 10px;
	font-weight:  600;
}
.woocommerce-cart-form .woocommerce-cart-form__cart-item.cart_item td.product-remove {
	grid-column: span 4;
	text-align: left;
	padding: 10px 10px;
	font-size: 12px;
}
dl.variation {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 0;
}
dl.variation dt {
    margin: unset;
    margin-right: 5px;
    padding: unset;
}
dl.variation dd {
    margin: unset;
    padding: unset;
}
dl.variation dd p {
    display: inline;
}
td.actions {
	padding-top: 25px;
	padding-bottom: 25px;
}

td.actions .coupon {
	border: 1px solid var(--default-stroke-color);
	border-radius: var(--default-border-radius);
	padding: 15px;
	display: flex;
	justify-content: space-between;
}
td.actions .button[name="update_cart"] {
	float: right;
	margin-top: 15px;
	
}
.cart-collaterals {
	padding: 10px;
	border: 1px solid var(--default-stroke-color);
	border-radius: Var(--default-border-radius);
}
@media screen and (min-width: 768px) {
	.cart-collaterals {
		grid-column: span 3;
		border: unset;
	}
	.cart_totals {
		border: 1px solid var(--default-stroke-color);
		padding: 25px;
		border-radius: var(--default-border-radius);
	}
	.cart_totals h2 {
		margin-top: unset;
	}
}
.cart-collaterals table td span.woocommerce-Price-amount.amount {
	float: right;
}
.cart-collaterals table th {
	vertical-align: top;
}
.cart-collaterals ul {
	list-style: none;
}
a.checkout-button.button.alt.wc-forward {
    color: white;
    text-decoration: none;
    background-color: var(--bg-dark-color);
    padding: 10px 15px;
    border-radius: var(--default-button-border-radius);
	margin-top: 25px;
	margin-bottom: 25px;
	float: right;
}
@media screen and (min-width: 768px) {
	a.checkout-button.button.alt.wc-forward {
		margin-top: 50px;
		width: 100%;
		text-align: center;
	}
}

/**
 * Checkout
 */
 .woocommerce-checkout main {
    width: var(--default-page-width);
    max-width: var(--max-default-page-width);
    margin-left: auto;
    margin-right: auto;
    padding-top: 50px;
    padding-bottom: 50px;
}
#customer_details {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		grid-column-gap: 30px;
	}	

	#customer_details .col-1, #customer_details .col-2 {
		grid-column: span 6;
	}
#customer_details p label, #customer_details p span input {
	display: block;
	width: 100%;
}
.product-total {
	text-align: right;
}
.woocommerce-checkout-review-order-table tfoot td {
	text-align: right;
}
.woocommerce-checkout-review-order-table tfoot ul {
	list-style: none;
}
#payment ul {
	list-style: none;
	margin-left: 0;
	padding-left: 0;
	margin-top: 25px;
}
#payment ul li .payment_box {
	font-size: var(--p-regular-size);
}
@media screen and (min-width: 768px) {
	#customer_details {
		display: grid;
		grid-template-columns: repeat(12, 1fr);
		grid-column-gap: 30px;
	}	
	.woocommerce-checkout-review-order {
		display: grid;
		grid-template-columns: repeat(12, 1fr);
		grid-column-gap: 30px;
	}
	.woocommerce-checkout-review-order-table {
		grid-column: span 8;
	}
	#payment {
		grid-column: span 4;
	}
}
/**
*thank you page 
**/

.woocommerce-order-received p.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
    font-size: var(--h4-size);
    margin-bottom: 25px;
}
.woocommerce-order-received .woocommerce-order ul.order_details {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--default-stroke-color);
}
.woocommerce-order-received ul.wc-item-meta {
	list-style: none;
	margin-left: 0;
	padding-left: 0;
}
.woocommerce-order-received ul.wc-item-meta li {
	display: flex;
	gap: 5px;
}
.woocommerce-order-received ul.wc-item-meta li p {
	margin: 0;
}
.woocommerce-order-received a {
	text-decoration: none;
}
tr.woocommerce-table__line-item.order_item td {
	border-bottom: 1px solid var(--default-stroke-color);
}
/**
 * General WooCommerce components
 */

/**
 * Header cart
 */
.site-header-cart {
	position: relative;
	margin: 0;
	padding: 0;
}

.site-header-cart .cart-contents {
	text-decoration: none;
}

.site-header-cart .widget_shopping_cart {
	display: none;
}

.site-header-cart .product_list_widget {
	margin: 0;
	padding: 0;
}
/* header cart bs-version */
a.sp-header-cart-link {
    text-decoration: none;
    font-family: var(--primary-font);
}
a.sp-header-cart-link .sp-header-cart-content {
    height: 100%;
    display: flex;
}


/**
 * Star rating
 */
.star-rating {
	overflow: hidden;
	position: relative;
	height: 1.618em;
	line-height: 1.618;
	width: 5.3em;
	font-family: star;
	font-weight: 400;
}

.star-rating::before {
	content: "\53\53\53\53\53";
	opacity: 0.25;
	float: left;
	top: 0;
	left: 0;
	position: absolute;
}

.star-rating span {
	overflow: hidden;
	float: left;
	top: 0;
	left: 0;
	position: absolute;
	padding-top: 1.5em;
}

.star-rating span::before {
	content: "\53\53\53\53\53";
	top: 0;
	position: absolute;
	left: 0;
	color: #4169e1;
}

p.stars a {
	position: relative;
	height: 1em;
	width: 1em;
	text-indent: -999em;
	display: inline-block;
	text-decoration: none;
	margin-right: 1px;
	font-weight: 400;
}

p.stars a::before {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 1em;
	height: 1em;
	line-height: 1;
	font-family: star;
	content: "\53";
	color: #404040;
	text-indent: 0;
	opacity: 0.25;
}

p.stars a:hover ~ a::before {
	content: "\53";
	color: #404040;
	opacity: 0.25;
}

p.stars:hover a::before {
	content: "\53";
	color: #4169e1;
	opacity: 1;
}

p.stars.selected a.active::before {
	content: "\53";
	color: #4169e1;
	opacity: 1;
}

p.stars.selected a.active ~ a::before {
	content: "\53";
	color: #404040;
	opacity: 0.25;
}

p.stars.selected a:not(.active)::before {
	content: "\53";
	color: #4169e1;
	opacity: 1;
}

/**
 * WOO DEFAULT Tabs
 */
.woocommerce-tabs ul.tabs {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: left;
}

.woocommerce-tabs ul.tabs li {
	display: block;
	margin: 0;
	position: relative;
}

.woocommerce-tabs ul.tabs li a {
	padding: 1em 0;
	display: block;
}

.woocommerce-tabs .panel h2:first-of-type {
	margin-bottom: 1em;
}

/**
 * Password strength meter
 */
.woocommerce-password-strength {
	text-align: right;
}

.woocommerce-password-strength.strong {
	color: #0f834d;
}

.woocommerce-password-strength.short {
	color: #e2401c;
}

.woocommerce-password-strength.bad {
	color: #e2401c;
}

.woocommerce-password-strength.good {
	color: #3d9cd2;
}

/**
 * Forms
 */
.form-row.woocommerce-validated input.input-text {
	box-shadow: inset 2px 0 0 #0f834d;
}

.form-row.woocommerce-invalid input.input-text {
	box-shadow: inset 2px 0 0 #e2401c;
}

.required {
	color: #f00;
}

/**
 * Notices
 */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews,
p.no-comments {
	background-color: #0f834d;
	clear: both;
}

.woocommerce-info,
.woocommerce-noreviews,
p.no-comments {
	background-color: var(--default-color);
	color: white;
	padding: 15px;
}
.woocommerce-info a,
.woocommerce-noreviews a,
p.no-comments a {
	color: white;
}

.woocommerce-error {
	background-color: #e2401c;
}

.demo_store {
	position: fixed;
	left: 0;
	bottom: 0;
	right: 0;
	margin: 0;
	padding: 1em;
	background-color: #3d9cd2;
	z-index: 9999;
}

@media screen and (min-width: 48em) {

	/**
	 * Header cart
	 */
	.site-header-cart .widget_shopping_cart {
		position: absolute;
		top: 100%;
		width: 100%;
		z-index: 999999;
		left: -999em;
		display: block;
		box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	}

	.site-header-cart:hover .widget_shopping_cart,
	.site-header-cart.focus .widget_shopping_cart {
		left: 0;
		display: block;
	}
}

/**
 * WooCommerce widgets
 */

/**
 * WooCommerce Price Filter
 */
.widget_price_filter .price_slider {
	margin-bottom: 1.5em;
}

.widget_price_filter .price_slider_amount {
	text-align: right;
	line-height: 2.4;
}

.widget_price_filter .price_slider_amount .button {
	float: left;
}

.widget_price_filter .ui-slider {
	position: relative;
	text-align: left;
}

.widget_price_filter .ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 1em;
	height: 1em;
	cursor: ew-resize;
	outline: none;
	background: #4169e1;
	box-sizing: border-box;
	margin-top: -0.25em;
	opacity: 1;
}

.widget_price_filter .ui-slider .ui-slider-handle:last-child {
	margin-left: -1em;
}

.widget_price_filter .ui-slider .ui-slider-handle:hover,
.widget_price_filter .ui-slider .ui-slider-handle.ui-state-active {
	box-shadow: 0 0 0 0.25em rgba(0, 0, 0, 0.1);
}

.widget_price_filter .ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	display: block;
	border: 0;
	background: #4169e1;
}

.widget_price_filter .price_slider_wrapper .ui-widget-content {
	background: rgba(0, 0, 0, 0.1);
}

.widget_price_filter .ui-slider-horizontal {
	height: 0.5em;
}

.widget_price_filter .ui-slider-horizontal .ui-slider-range {
	height: 100%;
}
