
/* Extend responsive column styling to 782px (Default is 600px) */
@media (max-width: 1024px) {
	.wp-block-columns .wp-block-column {
		flex-basis: 100% !important;
	}
	
	.wp-block-columns {
		flex-wrap: wrap !important;
	}
}

.woocommerce-account .woocommerce-EditAccountForm [type=submit], .cart-collaterals .wc-proceed-to-checkout .checkout-button, .woocommerce-cart-form button[name=update_cart], .woocommerce-cart-form button[type=submit], .woocommerce-checkout .woocommerce-checkout-payment .place-order button[type=submit] {
	border-radius: 2rem;
	padding: 1rem;
	transition: all .3s ease-in-out;
	min-width: 6rem;
}

/**
 * Shop tables
 */
table.shop_table_responsive thead {
	display: none;
}

table.shop_table_responsive tbody th {
	display: none;
}

table.shop_table_responsive tr td {
	display: block;
	text-align: right;
	clear: both;
}

table.shop_table_responsive tr td::before {
	content: attr(data-title) ": ";
	float: left;
}

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: 48em) {
	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;
	}
}

.woocommerce-cart-form__cart-item .product-remove {
	font-size: 2rem;
	text-align: center;
}

.woocommerce-cart-form__cart-item .product-thumbnail::before {
	content: none;
}

.woocommerce-cart-form__cart-item .product-thumbnail a {
	display: flex;
	justify-content: center;
}

/**
 * Products
 */
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.7966666667%;
		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.7966666667%;
	}
	
	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.4933333333%;
	}
}

.container-products-loop .woocommerce-result-count {
	text-align: right;
}

.container-products-loop .woocommerce-ordering {
	width: 100%;
	display: flex;
	justify-content: flex-end;
}

.products .product.product-type-simple a.product_type_simple {
	margin: .5rem 0;
	background-color: #e0e0e0;
	border-radius: 2rem;
	padding: 1rem 1.5rem;
	display: block;
	min-width: 6rem;
	width: fit-content;
	transition: all .3s ease-in-out;
	text-decoration: none;
}

.products .product.product-type-simple a.product_type_simple:hover {
	color: white;
	background-color: black;
}

.products .product.product-type-simple a.product_type_simple.add_to_cart_button {
	background-color: #ffc844;
	font-size: 1.1rem;
}

.products .product.product-type-simple a.product_type_simple.add_to_cart_button:hover {
	color: white;
	background-color: black;
}

.products .product.product-type-variable a.product_type_variable {
	margin: .5rem 0;
	background-color: #e0e0e0;
	border-radius: 2rem;
	padding: 1rem 1.5rem;
	display: block;
	min-width: 6rem;
	width: fit-content;
	transition: all .3s ease-in-out;
}

.products .product.product-type-variable a.product_type_variable:hover {
	color: white;
	background-color: black;
}

.products .product .woocommerce-loop-product__link {
	position: relative;
}

.products .product .woocommerce-loop-product__link .onsale {
	position: absolute;
	display: block;
	top: .5rem;
	right: .5rem;
	z-index: 1;
	background-color: #ffc844;
	color: black;
	padding: .5rem;
	border-radius: .5rem;
	width: fit-content;
}

.products .product .woocommerce-loop-product__title {
	font-size: 1.5rem;
	margin: .5rem 0;
	font-weight: 700;
}

.products .product .price {
	font-size: 1.2rem;
}

.products .product .button.product_type_simple {
	display: block;
	transition: all .3s ease-in-out;
}

.products .product .product_type_grouped {
	border-radius: 2rem;
	padding: .375rem .75rem;
	min-width: 6rem;
	text-decoration: none;
	width: fit-content;
	transition: all .3s ease-in-out;
	display: block;
	margin: .5rem 0;
}

.products .product .product_type_grouped:hover {
	color: white;
}

/**
 * Single product
 */
.single-product div.product {
	position: relative;
}

.single-product div.product .onsale {
	position: absolute;
	display: block;
	top: .5rem;
	left: .5rem;
	z-index: 1;
	background-color: #ffc844;
	color: white;
	padding: .5rem;
	border-radius: .5rem;
}

.single-product div.product .single_add_to_cart_button {
	border-radius: 2rem;
	padding: 1rem;
	min-width: 6rem;
	text-decoration: none;
	width: fit-content;
	background-color: #ffc844;
	color: black;
	transition: all .3s ease-in-out;
	display: block;
	margin: .5rem 1rem;
	border: none;
}

.single-product div.product .single_add_to_cart_button:hover {
	background-color: black;
	color: #ffc844;
}

.single-product div.product .price {
	font-size: 1.3rem;
	margin: .5rem 0;
}

.single-product div.product .woocommerce-product-details__short-description {
	font-size: 1.1rem;
}

.single-product div.product form.cart {
	display: flex;
	align-items: center;
}

.single-product div.product form.cart.variations_form {
	display: block;
}

.single-product div.product form.cart.variations_form .woocommerce-variation-add-to-cart {
	display: flex;
	align-items: center;
}

.single-product div.product form.cart .qty {
	width: 5rem;
}

.single-product div.product form.cart.grouped_form {
	display: block;
}

.single-product .woocommerce-tabs {
	margin-top: 1rem;
}

.single-product .woocommerce-tabs .tabs {
	align-items: center;
	justify-content: center;
}

.single-product .woocommerce-tabs .tabs li.active {
	border-bottom: 1px solid black;
}

.single-product .woocommerce-tabs .woocommerce-Tabs-panel {
	margin: 1rem auto;
}

.single-product .woocommerce-tabs .woocommerce-Tabs-panel h2 {
	display: none;
}

@media (min-width: 1024px) {
	.single-product .woocommerce-tabs .woocommerce-Tabs-panel {
		width: 60%;
	}
}

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

.stock.in-stock {
	color: #ffc844;
}

.stock.out-of-stock {
	color: #e2401c;
}

/**
 * Checkout
 */
@media screen and (min-width: 768px) {
	.col2-set .form-row-first {
		float: left;
		margin-right: 3.8%;
	}
	
	.col2-set .form-row-last {
		float: right;
		margin-right: 0;
	}
	
	.col2-set .form-row-first, .col2-set .form-row-last {
		width: 48.1%;
	}
}

.woocommerce-checkout .woocommerce-billing-fields input, .woocommerce-checkout .woocommerce-shipping-fields input {
	width: 100%;
	padding: .5rem;
}

.woocommerce-checkout .woocommerce-shipping-fields input[type=checkbox] {
	width: auto;
}

.woocommerce-checkout h3 {
	color: #ffc844;
	font-size: 1.8rem;
	line-height: 2rem;
	font-weight: bold;
	margin-bottom: 1.5rem;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table thead {
	color: #e7ac2b;
	text-align: left;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tbody tr td {
	padding: 1rem 0;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tbody tr .product-name {
	width: 40%;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tbody .cart_item {
	border-bottom: 1px solid #cecece;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot .cart-subtotal {
	border-top: 1px solid black;
	border-bottom: 1px solid black;
	text-align: left;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot .cart-subtotal td {
	padding: 1rem 0;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot .order-total {
	color: black;
	font-size: 1.2rem;
	text-align: left;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot .order-total td {
	padding: 1rem 0;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot .woocommerce-shipping-totals th {
	vertical-align: top;
	padding-top: 1rem;
	text-align: left;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot .woocommerce-shipping-totals .woocommerce-shipping-methods {
	list-style: none;
	padding: 0;
	margin: 0;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot .woocommerce-shipping-totals .woocommerce-shipping-methods li {
	display: flex;
	align-items: center;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot .woocommerce-shipping-totals .woocommerce-shipping-methods li label {
	padding: 1rem;
}

.woocommerce-checkout .woocommerce-checkout-payment .wc_payment_methods {
	margin: 0;
	list-style: none;
	padding: 0;
}

.woocommerce-checkout .woocommerce-checkout-payment .place-order button[type=submit] {
	color: black;
	background-color: #ffc844;
	display: block;
	margin: 0 auto;
	border: none;
}

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

/**
 * 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: "SSSSS";
	opacity: .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: "SSSSS";
	top: 0;
	position: absolute;
	left: 0;
	color: #000;
}

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: "S";
	color: #000;
	text-indent: 0;
	opacity: .25;
}

p.stars a:hover ~ a::before {
	content: "S";
	color: #000;
	opacity: .25;
}

p.stars:hover a::before {
	content: "S";
	color: #000;
	opacity: 1;
}

p.stars.selected a.active::before {
	content: "S";
	color: #000;
	opacity: 1;
}

p.stars.selected a.active ~ a::before {
	content: "S";
	color: #000;
	opacity: .25;
}

p.stars.selected a:not(.active)::before {
	content: "S";
	color: #000;
	opacity: 1;
}

/**
 * Tabs
 */
.woocommerce-tabs ul.tabs {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: left;
	display: flex;
	flex-direction: row;
}

.woocommerce-tabs ul.tabs li {
	display: block;
	margin: 0 1rem;
	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: #ffc844;
}

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

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

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

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

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

.woocommerce-form-login .woocommerce-form-login__submit {
	padding: 1rem 1.5rem;
	border: none;
}

.required {
	color: #f00;
}

/**
 * Notices
 */
.woocommerce-message, .woocommerce-info, .woocommerce-error, .woocommerce-noreviews, p.no-comments {
	background-color: #ffc844;
	clear: both;
	padding: .8rem;
}

.woocommerce-info, .woocommerce-noreviews, p.no-comments {
	background-color: #e9e9e9;
	padding: .8rem;
}

.woocommerce-info .showcoupon, .woocommerce-noreviews .showcoupon, p.no-comments .showcoupon {
	text-decoration: underline;
}

.woocommerce-error {
	background-color: #e2401c;
	list-style: none;
	margin: 0;
	color: white;
	font-size: 1.5rem;
	text-align: center;
}

.demo_store {
	position: fixed;
	left: 0;
	bottom: 0;
	right: 0;
	margin: 0;
	padding: 1em;
	background-color: #e9e9e9;
	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, .2);
	}
	
	.site-header-cart:hover .widget_shopping_cart, .site-header-cart.focus .widget_shopping_cart {
		left: 0;
		display: block;
	}
}

.woocommerce-pagination {
	padding: 1rem 0;
}

.woocommerce-pagination .page-numbers {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	justify-content: center;
}

.woocommerce-pagination .page-numbers .page-numbers {
	display: block;
	text-decoration: none;
	padding: .2rem 1rem;
	font-size: 1.3rem;
	transition: all .3s ease-in-out;
	color: #ffc844;
}

.woocommerce-pagination .page-numbers .page-numbers.current {
	color: black;
	border-bottom: 1.5px solid black;
}

.woocommerce-pagination .page-numbers .page-numbers:hover {
	color: black;
}

.woocommerce-pagination .page-numbers .page-numbers.next, .woocommerce-pagination .page-numbers .page-numbers.prev {
	color: black;
}

/**
 * Cart Page
 */
.woocommerce-cart-form thead {
	color: #e7ac2b;
}

.woocommerce-cart-form .cart_item {
	border-bottom: 1px solid #cecece;
}

.woocommerce-cart-form .actions {
	text-align: right;
}

.woocommerce-cart-form .coupon {
	display: flex;
	justify-content: space-between;
	margin-top: 1rem;
	padding: .5rem 0;
}

@media (min-width: 1024px) {
	.woocommerce-cart-form .coupon {
		justify-content: end;
	}
}

.woocommerce-cart-form .coupon label {
	display: none;
}

.woocommerce-cart-form .coupon input[type=text] {
	padding: .5rem;
}

.woocommerce-cart-form .coupon #coupon_code {
	width: 50%;
}

.woocommerce-cart-form .coupon .button {
	width: 45%;
	margin: 0 .5rem;
}

@media (min-width: 1024px) {
	.woocommerce-cart-form .coupon .button {
		width: fit-content;
	}
}

.woocommerce-cart-form button[type=submit] {
	border: 1px solid black;
	color: black;
	background-color: white;
	display: inline-block;
}

.woocommerce-cart-form button[name=update_cart] {
	border: 1px solid black;
	background-color: black;
	color: #ffc844;
	display: inline-block;
}

/**
 * Cart 
 */
.cart-collaterals {
	padding: 3rem 0;
}

.cart-collaterals .shop_table .cart-subtotal {
	border-bottom: 1px solid #cecece;
}

.cart-collaterals .shop_table .cart-subtotal td {
	text-align: right;
}

.cart-collaterals .shop_table .order-total td {
	text-align: right;
}

.cart-collaterals .wc-proceed-to-checkout .checkout-button {
	background-color: #ffc844;
	color: black;
	font-size: 1.1rem;
	text-align: center;
	text-decoration: none;
}

.cart-collaterals .wc-proceed-to-checkout .checkout-button::disabled {
	opacity: .5;
}

.cart-collaterals .woocommerce-shipping-totals .woocommerce-shipping-methods {
	list-style: none;
	margin: 1.5rem 0;
}

.cart-collaterals .woocommerce-shipping-totals .woocommerce-shipping-methods li {
	display: flex;
	align-items: center;
}

.cart-collaterals .woocommerce-shipping-totals .woocommerce-shipping-methods li label {
	padding: 1rem;
}

.logged-in.woocommerce-account .woocommerce {
	display: flex;
	flex-direction: row;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
	width: 20%;
}

.woocommerce-account .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link.is-active {
	font-weight: 700;
}

.woocommerce-account .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link.is-active a {
	color: #e7ac2b;
}

.woocommerce-account .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link--customer-logout {
	background-color: #f2f2f2;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
	padding: 0;
	border-top: 1px solid #eee;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
	list-style: none;
	border-bottom: 1px solid #eee;
	padding-bottom: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
	padding: 1rem;
	display: block;
}

.woocommerce-account .woocommerce-MyAccount-content {
	margin-left: 5%;
	width: 75%;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:before {
	margin-right: 20px;
	opacity: .25;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover:before {
	opacity: 1;
}

.woocommerce-account .woocommerce-MyAccount-content h2 {
	font-size: 25px;
	text-align: center;
	font-weight: 600;
}

.woocommerce-account p.order-again {
	text-align: right;
}

.woocommerce-account .woocommerce-EditAccountForm input[type=submit] {
	margin-top: 50px;
	float: right;
}

.woocommerce-account .woocommerce-EditAccountForm .woocommerce-form-row label {
	display: block;
}

.woocommerce-account .woocommerce-EditAccountForm .woocommerce-form-row input {
	width: 100%;
}

.woocommerce-account .woocommerce-EditAccountForm [type=submit] {
	color: black;
	background-color: #ffc844;
}

.woocommerce-result-count {
	display: none;
}

/**
 * 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: #000;
	box-sizing: border-box;
	margin-top: -.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 .25em rgba(0, 0, 0, .1);
}

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

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

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

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