/*
Theme Name: wkpls

WooCommerce styles override
*/

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

/**
 * Products
 */
ul.products,
.filters {
	margin: 0;
	padding: 0;
	display: flex;
    flex-wrap: wrap;
	justify-content: flex-start;
}
.filters {
	margin-bottom: 25px;
}
ul.products li.product,
.filters .berocket_single_filter_widget {
	list-style: none;
	position: relative;
	margin-bottom: 40px;
	margin-right:40px;
}
.filters .berocket_single_filter_widget {
	margin-bottom: 15px;
	height: 50px;
}
ul.products li.product:nth-child(4n + 4),
.filters .berocket_single_filter_widget:nth-child(4n + 4) {
    margin-right: 0;
}

body:not(.archive.search) .prodcat ul.products {
	justify-content: flex-start;
}
body:not(.archive.search) .prodcat ul.products li.product {
	margin-right:40px;
}
body:not(.archive.search) .prodcat ul.products li.product:nth-child(4n + 4) {
    margin-right: 0px;
}

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;
		overflow:hidden;
	}

	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,
	.filters .berocket_single_filter_widget {
		width: calc(25% - 30px);
	}
	ul.products.columns-4 li.product.prodcat-txt {
		width: calc(50% - 20px);
		padding: 0 80px;
	}
	ul.products.columns-5 li.product {
		width: 16.96%;
	}

	ul.products.columns-6 li.product {
		width: 13.49333%;
	}
}

li.product-category a {
	overflow:hidden;
	-webkit-transition: all .35s 0s cubic-bezier(0,.91,.47,1);
    -moz-transition: all .35s 0s cubic-bezier(0,.91,.47,1);
    -ms-transition: all .35s 0s cubic-bezier(0,.91,.47,1);
    -o-transition: all .35s 0s cubic-bezier(0,.91,.47,1);
    transition: all .35s 0s cubic-bezier(0,.91,.47,1);
}
li.product-category a:hover {
	color:#fff;
}
li.product-category a:after {
    background: #FF941A;
    content: '';
    height: 5px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
	-webkit-transition: all .35s 0s cubic-bezier(0,.91,.47,1);
    -moz-transition: all .35s 0s cubic-bezier(0,.91,.47,1);
    -ms-transition: all .35s 0s cubic-bezier(0,.91,.47,1);
    -o-transition: all .35s 0s cubic-bezier(0,.91,.47,1);
    transition: all .35s 0s cubic-bezier(0,.91,.47,1);
}
li.product-category a:hover:after {
	height: 100%;
}
ul.products li.product-category a h3 {
    font-size: 1em;
    font-weight: 600;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 20px;
    left: 30px;
    right: 30px;
    height: 90px;
    display: flex;
	overflow: hidden;
    width: calc(100% - 60px);
    align-items: center;
    justify-content: center;
    text-align: center;
	line-height: 1.33;
	z-index:1;
	color:#000;
	-webkit-transition: all .35s 0s cubic-bezier(0,.91,.47,1);
    -moz-transition: all .35s 0s cubic-bezier(0,.91,.47,1);
    -ms-transition: all .35s 0s cubic-bezier(0,.91,.47,1);
    -o-transition: all .35s 0s cubic-bezier(0,.91,.47,1);
    transition: all .35s 0s cubic-bezier(0,.91,.47,1);
}
ul.products li.product-category a:hover h3 {
	color:#fff;
}
li.product-category a .woocommerce-loop-category__description {
    font-size: .777777em;
    font-weight: 400;
	color:#fff;
    margin: 0;
    padding: 0;
    position: absolute;
    bottom: 10px;
    left: 30px;
    right: 30px;
    height: 103px;
    display: flex;
    width: calc(100% - 60px);
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    z-index: 1;
    overflow: hidden;
	opacity:0;
	-webkit-transition: all .35s 0s cubic-bezier(0,.5,.5,1);
    -moz-transition: all .35s 0s cubic-bezier(0,.5,.5,1);
    -ms-transition: all .35s 0s cubic-bezier(0,.5,.5,1);
    -o-transition: all .35s 0s cubic-bezier(0,.5,.5,1);
    transition: all .35s 0s cubic-bezier(0,.5,.5,1);
}
li.product-category a:hover .woocommerce-loop-category__description {
	opacity:1;
	bottom: 30px;
}




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

.single-product div.product .woocommerce-product-gallery {
	position: relative;
	float: left;
}

.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
	position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    z-index: 99;
    font-size: 0;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    opacity: .2;
	align-items: center;
    justify-content: center;
	-webkit-transition: opacity .35s 0s cubic-bezier(0,.91,.47,1);
    -moz-transition: opacity .35s 0s cubic-bezier(0,.91,.47,1);
    -ms-transition: opacity .35s 0s cubic-bezier(0,.91,.47,1);
    -o-transition: opacity .35s 0s cubic-bezier(0,.91,.47,1);
    transition: opacity .35s 0s cubic-bezier(0,.91,.47,1);
}
.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger:after {
	content:'';
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30' fill='none'%3E%3Crect x='14' width='2' height='30' fill='black'/%3E%3Crect y='14' width='30' height='2' fill='black'/%3E%3C/svg%3E");
	position: absolute;
	width: 26px;
    height: 26px;
	background-size: cover;
	background-repeat:no-repeat;
	-webkit-transition: all .35s 0s cubic-bezier(0,.91,.47,1);
    -moz-transition: all .35s 0s cubic-bezier(0,.91,.47,1);
    -ms-transition: all .35s 0s cubic-bezier(0,.91,.47,1);
    -o-transition: all .35s 0s cubic-bezier(0,.91,.47,1);
    transition: all .35s 0s cubic-bezier(0,.91,.47,1);
}
.single-product div.product .woocommerce-product-gallery:hover .woocommerce-product-gallery__trigger {
	opacity: .5;
}
.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger:hover {
	opacity: .7;
}
.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger:hover:after {
	-webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.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;
}

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

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

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

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

/**
 * 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 {
	border-color: #0f834d;
}

.form-row.woocommerce-invalid input.input-text {
	border-color: #e2401c;
}

.required {
	color: #f00;
}

/**
 * Notices
 */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews,
p.no-comments {
	background-color: #0f834d;
	clear: both;
	text-align: center;
    margin: 0 auto;
    margin-bottom: 3rem;
    padding: 0.5em 1em;
}

.woocommerce-info,
.woocommerce-noreviews,
p.no-comments {
	background-color: #ffe8ce;
}

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

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

.woocommerce-products-header {
    display: flex;
    flex-direction: row;
	align-items: flex-start;
    justify-content: space-between;
}
h1.woocommerce-products-header__title,
h1.product_title {
    margin: 0;
    line-height: 1.33;
	margin-left: 80px;
}
.archive.search-results h1.woocommerce-products-header__title {
	margin-bottom: 5rem;
    text-align: center;
    margin-left: 0;
}
nav.woocommerce-breadcrumb {
    font-size: 0.875rem;
    color: #7B7B7B;
	margin-left: 80px;
	margin-bottom: 20px;
}
nav.woocommerce-breadcrumb span {
    padding: 0 0.5em;
}
.woocommerce-products-header .dgwt-wcas-search-wrapp {
    width: calc(100% / 4 - 30px);
	margin: 0;
	height:50px;
}
.woocommerce-products-header.on-product-page .dgwt-wcas-search-wrapp {
	width: 330px;
}
.shopbody {
    background: #EFEFEF;
    font-size: 1.125em;
}


.filters .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding: 0 30px;
}
.filters .select2-container--default .select2-selection--multiple .select2-selection__rendered:after {
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid #000;
    position: absolute;
    right: 18px;
    top: 22px;
}
.filters .bapf_slct .select2 .select2-search__field {
    cursor: pointer;
}
.filters .select2-container--default .select2-selection--multiple {
    border: 1px solid #E4E2E2;
    border-radius: 3px;
    cursor: pointer;
	min-height: 50px;
    max-height: 50px;
    line-height: 50px;
}
.filters .select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid #aaa;
}
.filters .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #E4E2E2;
    border: 1px solid #E4E2E2;
    border-radius: 3px;
    max-height: 36px;
    line-height: 36px;
    padding: 0px 6px!important;
    margin-right: 5px!important;
	margin-top: 7px!important;
    font-size: 0.875rem;
	position: relative;
	min-width: 36px;
    text-align: center!important;
}
.filters .select2-container--default .select2-selection--multiple .select2-selection__choice:hover {
    background-color: #FF941A;
	border: 1px solid #FF941A;
}
.filters .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #ff941a;
    cursor: pointer;
    display: inline-block;
    font-weight: 700;
    margin-right: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
	font-size:0;
}


ul.page-numbers {
    padding: 0;
    margin: 0;
	margin-top: 3rem;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
ul.page-numbers li a,
ul.page-numbers li span {
    min-width: 40px;
    height: 40px;
    background: #e4e2e2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #000;
}
ul.page-numbers li a:hover,
ul.page-numbers li span {
	background: #FF941A;
}
ul.page-numbers li a.next.page-numbers,
ul.page-numbers li a.prev.page-numbers {
	background: #e4e2e2!important;
	margin-right: 10px!important;
}
ul.page-numbers li a.next.page-numbers:hover,
ul.page-numbers li a.prev.page-numbers:hover {
	background: #FF941A!important;
}


.shophead .dgwt-wcas-no-submit .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
    height: 50px;
    font-size: 16px;
    font-style: normal;
    color: #000;
    padding-left: 56px;
	border:1px solid #ccc;
}
.shophead .dgwt-wcas-no-submit .dgwt-wcas-ico-magnifier {
    left: 16px;
    opacity: 1;
    fill: #000;
}
.shophead .dgwt-wcas-no-submit .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input::placeholder {color:#000;font-weight:400;font-style:normal;line-height:normal}
.shophead .dgwt-wcas-no-submit .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input::-webkit-input-placeholder{color:#000;font-weight:400;font-style:normal;line-height:normal}
.shophead .dgwt-wcas-no-submit .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input:-moz-placeholder{color:#000;font-weight:400;font-style:normal;line-height:normal}
.shophead .dgwt-wcas-no-submit .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input::-moz-placeholder{color:#000;font-weight:400;font-style:normal;line-height:normal}
.shophead .dgwt-wcas-no-submit .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input:-ms-input-placeholder{color:#000;font-weight:400;font-style:normal;line-height:normal}


p.woocommerce-loop-product__title {
    font-size: 1.125rem;
    font-weight: 500;
    margin: 28px 0;
    line-height: 1.33;
    padding: 0 24px;
    height: 48px;
    overflow: hidden;
    text-align: center;
}
ul.products li.product:not(.product-category),
ul.products li.product a img {
    background: #fff;
	-webkit-transition: all .35s 0s cubic-bezier(0,.91,.47,1);
    -moz-transition: all .35s 0s cubic-bezier(0,.91,.47,1);
    -ms-transition: all .35s 0s cubic-bezier(0,.91,.47,1);
    -o-transition: all .35s 0s cubic-bezier(0,.91,.47,1);
    transition: all .35s 0s cubic-bezier(0,.91,.47,1);
}
ul.products li.product:not(.product-category):hover {
	box-shadow: 0px 14px 14px -6px rgb(0 0 0 / 20%);	
}
ul.products li.product:hover a img {
	filter:brightness(1.05);
}
.related ul.products li.product {
    border: 2px solid #efefef;
}
ul.products li.product a {
	color:#000;
}
ul.products span.price {
    float: left;
    margin-left: 24px;
    margin-bottom: 24px;
    padding-right: 24px;
    width: calc(100% - 136px - 48px);
    font-size: 2rem;
    font-weight: 600;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
}
ul.products a.button.add_to_cart_button,
ul.products a.added_to_cart {
    float: right;
	margin-right: 24px;
	color: #000;
	font-weight: 600;
	font-size: 1rem;
    background-color: #EFEFEF;
	max-width:136px;
	width:100%;
	margin-top:0;
	display: flex;
    align-items: center;
    justify-content: center;
	margin-bottom: 24px;
	height: 48px;
	position:relative;
	z-index: 0;
	-webkit-transition: all .35s 0s cubic-bezier(0,.91,.47,1);
    -moz-transition: all .35s 0s cubic-bezier(0,.91,.47,1);
    -ms-transition: all .35s 0s cubic-bezier(0,.91,.47,1);
    -o-transition: all .35s 0s cubic-bezier(0,.91,.47,1);
    transition: all .35s 0s cubic-bezier(0,.91,.47,1);
}
ul.products a.button.add_to_cart_button.added {
	display:none;
}
ul.products a.button.add_to_cart_button:active,
ul.products a.added_to_cart:active {
	transform:scale(0.95);
}
ul.products a.button.add_to_cart_button:before,
ul.products a.added_to_cart:before {
	content:'';
	position:absolute;
	z-index:-1;
	bottom:0;
	left:0;
	width:100%;
	height:3px;
	background:#FF941A;
	-webkit-transition: all .35s 0s cubic-bezier(0,.91,.47,1);
    -moz-transition: all .35s 0s cubic-bezier(0,.91,.47,1);
    -ms-transition: all .35s 0s cubic-bezier(0,.91,.47,1);
    -o-transition: all .35s 0s cubic-bezier(0,.91,.47,1);
    transition: all .35s 0s cubic-bezier(0,.91,.47,1);
}
ul.products a.button.add_to_cart_button:hover:before,
ul.products a.button.add_to_cart_button.added_to_cart:before,
ul.products a.added_to_cart:before {
	height:100%;
}

ul.products span.woocommerce-Price-amount.amount.zapros {
    font-size: .5em;
}
ul.products span.woocommerce-Price-currencySymbol {
    font-size: .4375em;
}

/*-------------------------------------------------------------------------------------------------------------------------------------------DELETE-START*/
ul.products li.product a img,
#wps-slider-section img.wpsf-product-img {
    max-height: 260px;
    min-height: 260px;
    object-fit: cover;
}
/*-------------------------------------------------------------------------------------------------------------------------------------------DELETE-END*/

.term-description {
    margin-top: 2rem;
	margin-bottom: 2rem;
}
.term-description p {
    margin: 0;
}

.productbody,
.productbody-padd {
	position:relative;
}
.productbody-container {
    background: #efefef;
	position:relative;
	border-right: 15px solid #fff;
}
.productbody-bg {
    background: linear-gradient(to right, #efefef 50%, #fff 0%);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.productbody-padd {
    display: flex;
    flex-direction: row;
	padding-left: 80px;
}
.productbody-right {
    padding-right: 7rem;
}
.single-product div.product .woocommerce-product-gallery {
    max-width: 600px;
	min-width: 600px;
    width: 100%;
	margin-right:7rem;
}
.product .summary {
    font-size: 1.125em;
}
.prod-attrib {
    font-size: 1.125em;
    padding: 3.5rem 0 0;
}
td.woocommerce-product-attributes-item__value p {
    margin: 0;
	white-space: nowrap;
}
td.woocommerce-product-attributes-item__label {
    position: relative;
	width:100%;
}
td.woocommerce-product-attributes-item__value {
    width: auto;
}
td.woocommerce-product-attributes-item__label:before {
    border-bottom: 1px dotted #aaa;
    content: '';
    height: 1px;
    display: block;
    position: absolute;
    bottom: calc(50% - 2px);
    left: 5px;
    width: calc(100% - 13px);
}
td.woocommerce-product-attributes-item__label span {
    background: #efefef;
    position: relative;
    padding: 0 8px 0 0;
	font-weight: 500;
}
tr.woocommerce-product-attributes-item td {
    padding: 5px 0;
}
tr.woocommerce-product-attributes-item:hover {
    color: #ec6502;
}
tr.woocommerce-product-attributes-item:hover td.woocommerce-product-attributes-item__label:before {
    border-bottom: 1px dotted #ec6502;
}

.product .summary p.price {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 600;
    float: left;
	height: 60px;
    white-space: nowrap;
    margin-right: 4.5rem;
}
.product .summary .description {
    margin-bottom: 3.5rem;
}
.product .summary .description p {
    margin-bottom: .66em;
}
.product .summary .cart input[type=number].qty {
    min-width: 60px;
	max-width: 60px;
    min-height: 60px;
	max-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 0;
    border: 2px solid #E4E2E2;
    font-size: 1.5rem;
    float: left;
    margin-right: 20px;
	-moz-appearance: textfield;
}
.product .summary .cart input[type=number]::-webkit-outer-spin-button,
.product .summary .cart input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
.product .summary .cart button.single_add_to_cart_button,
.product .summary .cart a.added_to_cart {
    height: 60px;
    font-size: 1.25rem;
    font-weight: 500;
    width: 170px;
    border: 3px solid #FF941A;
    cursor: pointer;
	position: relative;
    z-index: 0;
	display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
	background: #efefef;
}
.product .summary .cart a.added_to_cart:hover {
	border-color:#ec6502;
}
.product .summary .cart button.single_add_to_cart_button.added {
	display:none;
}
.product .summary .cart button.single_add_to_cart_button:before,
.product .summary .cart a.added_to_cart:before {
    content: '';
    background: #FF941A;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0px;
    z-index: -1;
	-webkit-transition: all .35s 0s cubic-bezier(0,.91,.47,1);
    -moz-transition: all .35s 0s cubic-bezier(0,.91,.47,1);
    -ms-transition: all .35s 0s cubic-bezier(0,.91,.47,1);
    -o-transition: all .35s 0s cubic-bezier(0,.91,.47,1);
    transition: all .35s 0s cubic-bezier(0,.91,.47,1);
}
.product .summary .cart button.single_add_to_cart_button:hover:before,
.product .summary .cart a.added_to_cart:before {
    height: 100%;
}

.product .summary p.price .zapros {
    text-transform: lowercase;
}
.product .summary p.price .zapros:before {
    content: 'Цена';
    position: absolute;
	text-transform: none;
}


.pricelist {
    margin: 3rem 0;
}
.pricelist ul.products li.product a img {
    max-height: 48px;
    min-height: 48px;
    max-width: 48px;
    min-width: 48px;
}
.pricelist ul.products li.product a.woocommerce-LoopProduct-link {
    display: flex;
    align-items: center;
    justify-content: center;
	width: 100%;
}
.pricelist p.woocommerce-loop-product__title {
    width: 100%;
    text-align: left;
    height: auto;
    margin: 0;
    overflow: auto;
	font-size: 1rem;
}
.pricelist ul.products span.price {
    margin: 0;
    width: 200px;
	font-size: 1.25rem;
}
.pricelist ul.products span.woocommerce-Price-amount.amount.zapros {
    font-size: .75em;
}
.pricelist ul.products li.product:not(.product-category):hover {
    box-shadow: none;
	background:#f5f5f5;
}
.pricelist ul.products li.product {
    margin-bottom: 1rem;
    margin-right: 0px;
	display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
	border-bottom: 1px solid #eee;
}
.pricelist ul.products a.button.add_to_cart_button,
.pricelist ul.products a.added_to_cart {
	margin-bottom: 0px;
    margin-right: 0px;
    font-size: .875rem;
    width: 125px;
}


/*-------CART-PAGE------*/
table.shop_table.cart thead th {
	font-weight: 600;
    text-transform: uppercase;
    border-bottom:2px solid #FF941A;
    padding: 10px;
}
table.shop_table.cart tbody > tr td {
    padding: 10px;
}
table.shop_table.cart td.product-thumbnail img {
    max-height: 60px;
    min-height: 60px;	
	width: 100%;
	max-width: 76px;
	object-fit: cover;
}
table.shop_table.cart td.product-remove {
    text-align: center;
    width: 50px;
}
table.shop_table.cart tr td.product-remove a {
    text-align: center;
    min-width: 30px;
    min-height: 30px;
    background: #eee;
    max-width: 30px;
    max-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
	font-size: 1.25rem;
}
table.shop_table.cart tr td.product-remove a:hover {
    background: #FF941A;
    color:#000;
}
table.shop_table.cart .quantity input[type=number].qty {
	-moz-appearance: textfield;
	width: 60px;
    height: 40px;
    text-align: center;
    border: 2px solid #ccc;
    border-radius: 3px;
}
table.shop_table.cart .quantity input[type=number]::-webkit-outer-spin-button,
table.shop_table.cart .quantity input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
table.shop_table.cart span.woocommerce-Price-currencySymbol,
table.shop_table.woocommerce-checkout-review-order-table span.woocommerce-Price-currencySymbol {
    font-size: .85em;
}
table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item:hover {
	background:#f7f7f7;
}
table.shop_table.cart tbody tr:not(.woocommerce-cart-form__cart-item):last-child {
	display:none;
}
form.woocommerce-cart-form {
    margin-bottom: 3rem;
}
form.woocommerce-checkout {
    display: flex;
    flex-direction: row;
	flex-wrap: wrap;
}
form.woocommerce-checkout > div {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 5rem;
}
form.woocommerce-checkout > div.woocommerce-NoticeGroup {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    padding: 0;
}
form.woocommerce-checkout > div.col2-set {
    background: #efefef;
}
form.woocommerce-checkout span.woocommerce-input-wrapper input,
form.woocommerce-checkout span.woocommerce-input-wrapper textarea {
    border: 1px solid #ccc;
    border-radius: 2px;
	padding: .4rem 1rem;
	min-width: calc(100% - 160px);
}
form.woocommerce-checkout > div.col2-set .woocommerce-billing-fields__field-wrapper label {
    width: 160px;
    display: inline-block;
    font-weight: 500;
}
form.woocommerce-checkout > div.col2-set .woocommerce-additional-fields__field-wrapper label {
    width: 100%;
    font-weight: 500;
}
form.woocommerce-checkout > div.col2-set .woocommerce-input-wrapper textarea {
    width: 100%;
	min-height: 130px;
	margin-top: 0.5rem;
}
.woocommerce-checkout-payment button#place_order {
    border: 3px solid #ff941a;
    background: #fff;
    padding: 0.75em 1.5em;
    font-weight: 600;
    font-size: 1.125em;
	position:relative;
    cursor: pointer;
	position: relative;
    z-index: 0;
	display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}
.woocommerce-checkout-payment button#place_order:before {
    content: '';
    background: #FF941A;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0px;
    z-index: -1;
	-webkit-transition: all .35s 0s cubic-bezier(0,.91,.47,1);
    -moz-transition: all .35s 0s cubic-bezier(0,.91,.47,1);
    -ms-transition: all .35s 0s cubic-bezier(0,.91,.47,1);
    -o-transition: all .35s 0s cubic-bezier(0,.91,.47,1);
    transition: all .35s 0s cubic-bezier(0,.91,.47,1);
}
.woocommerce-checkout-payment button#place_order:hover:before {
    height: 100%;
}
table.shop_table.woocommerce-checkout-review-order-table tr.cart-subtotal {
    display: none;
}
table.shop_table.woocommerce-checkout-review-order-table thead th {
    text-align: left;
	border-bottom: 2px solid #FF941A;
    padding: 5px 10px;
	font-weight: 600;
}
table.shop_table.woocommerce-checkout-review-order-table .order-total td,
table.shop_table.woocommerce-checkout-review-order-table tfoot th {
    text-align: left;
    background: #efefef;
    padding: 5px 10px;
	font-weight: 600;
}
.woocommerce-checkout-review-order-table tbody td {
    padding: 3px 10px;
    border-bottom: 1px solid #ddd;
}
.woocommerce-checkout-review-order-table tbody tr:first-child td {
    padding-top: 1rem;
}
.woocommerce-checkout-review-order-table tbody tr:last-child td {
    padding-bottom: 1rem;
	border: none;
}
.woocommerce-checkout-payment ul.wc_payment_methods {
    /*margin: 0;
    font-size: 0.875rem;
    margin-bottom: 3rem;
    padding: 0;*/
	display:none;
}
.woocommerce-checkout-payment ul.wc_payment_methods label {
    display: none;
}
.woocommerce-checkout-payment ul.wc_payment_methods p {
    padding:0;
	margin:0;
}
.woocommerce-privacy-policy-text {
    font-size: .875em;
    margin: 1em 0 2em;
}
.woocommerce-privacy-policy-text a {
    color:#ec6501;
}
.woocommerce-privacy-policy-text a {
    color:#FF941A;
}
.woocommerce-order-received .article-padd {
    text-align: center;
    background: #d8f3de;
}
.woocommerce-order-received .woocommerce-order {
    max-width: 1000px;
    margin: 0 auto;
}
.woocommerce-order-received .woocommerce-order-details {
    text-align: left;
    padding: 1rem 2rem;
    background: #efefef;
	margin-top: 3rem;
}
.woocommerce-order-received .woocommerce-customer-details {
	display:none;
}
.woocommerce-order-received span.woocommerce-Price-currencySymbol {
    font-size: .85em;
}
.filter-btn-span {
		display:none;
	}
p.return-to-shop {
    display: none;
}























/*-----------ANIMATION-START--------------*/
body[data-aos-duration="400"] #page ul.products li.product[data-aos="anime"] {
    transform:translatey(80px);
	transition-duration: 1s;
	transition-timing-function: cubic-bezier(.075,.82,.165,1);
}

body[data-aos-duration="400"] #page ul.products li.product[data-aos="anime"].aos-animate {
	transform:translatey(0px);
}

/*-----------ANIMATION-END--------------*/










@media (max-width: 992px) {
	.filter-btn {
		width: 100%;
		text-align: center;
		padding: 0.5em 1em;
		margin-bottom: 1.5em;
		border: 1px solid #ccc;
		border-radius: 5px;
		display:flex;
		justify-content: center;
		text-transform: uppercase;
		font-size: .9375rem;
		letter-spacing: .05em;
		flex-direction: column;
		align-items: center;
		max-width: calc(100vw - 30px);
		display:none;/*------delete-to-look-filter-on-mobile-------*/
	}
	.filter-btn-span {
		padding: 0.5rem;
		font-weight: 500;
		display:flex;
		align-items: center;
	}
	.filter-btn-span:after {
		content: '';
		border-left: 4px solid transparent;
		border-right: 4px solid transparent;
		border-top: 6px solid #000;
		margin-left: 0.5rem;
	}
	.filter-btn.active .filter-btn-span:after {
		content: '';
		border-top: 6px solid #ec6502;
		transform:rotate(180deg);
	}
	.filters {
		display: none;
	}
	.filter-btn.active {
		border: 1px solid #FF941A;
		color: #ec6502;
	}
	.filter-btn.active .filters {
		display: flex;
		margin-top: 0.5rem;
	}
	.filters .berocket_single_filter_widget {
		width: 100%;
		margin-right: 0;
	}
	
}
@media (max-width: 359.98px) {
	ul.products li.product:not(.product-category) a img, #wps-slider-section img.wpsf-product-img {
		max-height: 126px;
		min-height: 126px;
		height: 100%;
	}
	.pricelist ul.products li.product a img {
		max-height: 48px;
		min-height: 48px;
		max-width: 48px;
		min-width: 48px;
	}
}
@media (min-width: 360px) and (max-width: 374.98px) {
	ul.products li.product:not(.product-category) a img, #wps-slider-section img.wpsf-product-img {
		max-height: 126px;
		min-height: 126px;
		height: 100%;
	}
	.pricelist ul.products li.product a img {
		max-height: 48px;
		min-height: 48px;
		max-width: 48px;
		min-width: 48px;
	}
}
@media (min-width: 375px) and (max-width: 413.98px) {
	ul.products li.product:not(.product-category) a img, #wps-slider-section img.wpsf-product-img {
		max-height: 147px;
		min-height: 147px;
		height: 100%;
	}
	.pricelist ul.products li.product a img {
		max-height: 48px;
		min-height: 48px;
		max-width: 48px;
		min-width: 48px;
	}
}
@media (min-width: 414px) and (max-width: 575.98px) {
	ul.products li.product:not(.product-category) a img, #wps-slider-section img.wpsf-product-img {
		max-height: 160px;
		min-height: 160px;
		height: 100%;
	}
	.pricelist ul.products li.product a img {
		max-height: 48px;
		min-height: 48px;
		max-width: 48px;
		min-width: 48px;
	}
}
@media (max-width: 575.98px) {
	li.product-category a .woocommerce-loop-category__description {
		font-size: .813em;
	}
	body:not(.archive.search) .prodcat ul.products li.product {
		margin-right: 0;
	}
	.pricelist {
		margin: 2rem 0 1rem;
	}
	.pricelist p.woocommerce-loop-product__title {
		font-size: .875rem;
		padding: 0 10px;
	}
	.pricelist ul.products span.price {
		margin: 0;
		width: auto;
		font-size: 1rem;
		padding-right: 10px;
		white-space: nowrap;
	}
	.pricelist ul.products a.button.add_to_cart_button, 
	.pricelist ul.products a.added_to_cart {
		font-size: .75rem;
		width: 82px;
		min-width: 82px;
	}
	form.woocommerce-checkout {
		flex-direction: column;
	}
	form.woocommerce-checkout > div {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		padding: 2rem;
	}
	.woocommerce-billing-fields__field-wrapper > p,
	.woocommerce-additional-fields__field-wrapper > p {
		margin-bottom: 0.85em;
	}
	form.woocommerce-checkout > div.col2-set .woocommerce-billing-fields__field-wrapper label,
	.woocommerce-additional-fields__field-wrapper label {
		width: 100%;
		font-size: .875rem;
	}
	form.checkout.woocommerce-checkout h3 {
		margin-bottom: 1.25em;
	}
	body.woocommerce-checkout .content-container {
		padding: 0;
	}
	form.woocommerce-cart-form {
		margin-bottom: 1rem;
		padding: 0 1rem;
		font-size: .875rem;
	}
	table.shop_table.cart tbody > tr td.product-subtotal {
		border-bottom: 1px solid #ddd;
		margin-bottom: 2rem;
    	padding-bottom: 2rem;
	}
	table.shop_table_responsive tr td.product-thumbnail::before {
		display:none;
	}
	table.shop_table.cart td.product-remove {
		position: absolute;
	}
	form.woocommerce-checkout span.woocommerce-input-wrapper input, 
	form.woocommerce-checkout span.woocommerce-input-wrapper textarea {
		min-width: 100%;
	}
	table.woocommerce-checkout-review-order-table {
		font-size: .875em;
	}
	table.woocommerce-checkout-review-order-table bdi {
		white-space: nowrap;
	}
	table.shop_table.cart tbody > tr td {
		padding: 5px;
	}
	.woocommerce-order-received .content-padd {
		padding: 0;
		padding-top: 3rem;
	}
	p.woocommerce-notice--success {
		padding-left: 2.5em;
		font-weight: 600;
	}
	.woocommerce-order-received .woocommerce-order-details {
		padding: 2rem 2rem;
		font-size: .875rem;
	}
	nav.woocommerce-breadcrumb {
		font-size: 0.75rem;
		margin-left: 0rem;
		width: 100%;
    	max-width: calc(100% - 50px);
	}
	h1.woocommerce-products-header__title, h1.product_title {
		margin-left: 0;
	}
	table.shop_table.cart .quantity input[type=number].qty {
		width: 45px;
		height: 30px;
		border: 2px solid #FF941A;
		font-size: .875rem;
		font-weight: 600;
	}
	.woocommerce-checkout-payment button#place_order {
		margin: 1.5rem auto 0;
	}
	.woocommerce-message, 
	.woocommerce-info, 
	.woocommerce-error, 
	.woocommerce-noreviews, 
	p.no-comments {
		margin-bottom: 0;
	}
	.woocommerce-products-header {
		/*flex-direction: column;*/
		padding-left: 0rem;
		align-items: center;
	}
	.woocommerce-products-header .dgwt-wcas-search-wrapp {
		max-width: 40px;
		height: 40px;
		overflow: hidden;
		font-size: 0;
		min-width: 40px;
		position: absolute;
		right: 1rem;
		top: 6.25rem;
	}
	.shophead .dgwt-wcas-no-submit .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
		height: 40px;
		font-size: 0;
		padding-left: 0;
		border: 1px solid #ccc;
		width: 40px;
	}
	.dgwt-wcas-no-submit .dgwt-wcas-ico-magnifier {
		max-height: 18px;
		max-width: 18px;
	}
	.shophead .dgwt-wcas-no-submit .dgwt-wcas-ico-magnifier {
		left: 12px;
	}
	body.tax-product_cat ul.products.columns-4 {
		margin: 0 -7px;
	}
	body.tax-product_cat ul.products li.product {
		margin-bottom: 30px;
		margin-right: 7px;
		width: calc(50% - 15px);
		margin-left: 7px;
	}
	p.woocommerce-loop-product__title {
		font-size: .875rem;
		font-weight: 500;
		margin: 12px 0;
		line-height: 1.33;
		padding: 0 6px;
		height: 54px;
	}
	ul.products span.price {
		margin-left: 6px;
		margin-bottom: 10px;
		padding-right: 6px;
		width: 100%;
		font-size: 1.75rem;
		height: 34px;
	}
	ul.products a.button.add_to_cart_button, ul.products a.added_to_cart {
		margin-right: 20px;
		font-size: .875rem;
		max-width: calc(100% - 40px);
		width: 100%;
		margin-top: 0;
		margin-bottom: 20px;
		height: 40px;
	}
	.term-description {
		margin-top: 1.5em;
		margin-bottom: 1.5em;
		font-size: 1rem;
	}
	.productbody-container {
		border-right: 0px solid #fff;
		padding: 0;
	}
	.productbody-padd {
		flex-direction: column;
		padding-left: 0px;
		padding-top: 0;
	}
	.single-product div.product .woocommerce-product-gallery {
		max-width: 100%;
		min-width: 100%;
		width: 100%;
		margin-right: 0;
	}
	.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
		transform: scale(.8);
	}
	.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li {
		width: 72px;
		margin-left: 1rem;
		border: 1px solid #b4b2bd;
		height: 72px;
		margin-bottom: 1rem;
	}
	.productbody-right {
		padding-right: 1rem;
		padding-left: 1rem;
		margin-top: 2rem;
	}
	.product .summary,
	.prod-attrib {
		font-size: 1em;
	}
	.product .summary p.price {
		font-size: 2rem;
		height: 50px;
		margin-right: 1.5rem;
	}
	.product .summary .cart input[type=number].qty {
		min-width: 50px;
		max-width: 50px;
		min-height: 50px;
		max-height: 50px;
		font-size: 1.25rem;
		margin-right: 15px;
	}
	.product .summary .cart button.single_add_to_cart_button, .product .summary .cart a.added_to_cart {
		height: 50px;
		font-size: 1rem;
		width: 130px;
	}
	.related ul.products {
		margin: 0 -7px;
	}
	.related ul.products li.product {
		max-width: calc(50% - 14px);
		margin-right: 7px;
		margin-left: 7px;
		margin-bottom:30px;
	}
	.related ul.products li.product:nth-child(3), 
	.related ul.products li.product:nth-child(4) {
		display: none;
	}
	
	.products.subcategory li {
		width: auto!important;
	}
}
@media (min-width: 576px) and (max-width: 767.98px) {
	.productbody-container {
		border-right: 0px solid #fff;
		padding: 0;
	}
	.productbody-padd {
		flex-direction: column;
		padding-left: 0px;
		padding-top: 0;
	}
	.single-product div.product .woocommerce-product-gallery {
		max-width: 100%;
		min-width: 100%;
		width: 100%;
		margin-right: 0;
	}
	.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
		transform: scale(.8);
	}
	.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li {
		width: 80px;
		margin-left: 1rem;
		border: 1px solid #b4b2bd;
		height: 80px;
		margin-bottom: 1rem;
	}
	.productbody-right {
		padding-right: 3rem;
		padding-left: 1rem;
		margin-top: 2rem;
	}
	.product .summary,
	.prod-attrib {
		font-size: 1em;
	}
	.related ul.products li.product:nth-child(3), 
	.related ul.products li.product:nth-child(4) {
		display: none;
	}
	ul.products li.product, .filters .berocket_single_filter_widget {
		margin-bottom: 30px;
		margin-right: 15px;
		width: calc(50% - 15px);
	}
	body:not(.archive.search) .prodcat ul.products li.product {
		margin-right: 15px;
	}
	ul.products li.product.prodcat-txt {
		width: 100%;
	}
	ul.products li.product a img, #wps-slider-section img.wpsf-product-img {
		max-height: initial;
		min-height: initial;
	}
	li.product-category a .woocommerce-loop-category__description {
		height: 54px;
	}
	p.woocommerce-loop-product__title {
		margin: 28px 0 10px;
		height: 72px;
	}
	nav.woocommerce-breadcrumb {
		font-size: 0.75rem;
		margin-left: 0;
		margin-bottom: 15px;
	}
	h1.woocommerce-products-header__title, h1.product_title {
		margin-left: 0;
		font-size: 1.25rem;
	}
	ul.products span.price {
		margin-left: 0;
		margin-bottom: 24px;
		padding-right: 0;
		width: 100%;		
	}
	ul.products a.button.add_to_cart_button, ul.products a.added_to_cart {
    	float: inherit;
    	margin-right: 0;
		margin:0 auto 24px;
	}
	.shopbody {
		font-size: 1em;
	}
	.term-description {
		margin-top: 1rem;
		margin-bottom: 1rem;
	}
	ul.page-numbers {
    	margin-top: 2rem;
		margin-bottom: 3rem;
	}
	.woocommerce-products-header.on-product-page .dgwt-wcas-search-wrapp {
		display: none;
	}
	.shopbody-container {
		padding: 0;
	}
	ul.products li.product, .filters .berocket_single_filter_widget {
		margin-bottom: 15px;
	}
	form.woocommerce-checkout {
		flex-direction: column;
	}
	form.woocommerce-checkout > div {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		padding: 2rem;
	}
	.woocommerce-billing-fields__field-wrapper > p,
	.woocommerce-additional-fields__field-wrapper > p {
		margin-bottom: 0.85em;
	}
	form.woocommerce-checkout > div.col2-set .woocommerce-billing-fields__field-wrapper label,
	.woocommerce-additional-fields__field-wrapper label {
		width: 100%;
		font-size: .875rem;
	}
	form.checkout.woocommerce-checkout h3 {
		margin-bottom: 1.25em;
	}
	body.woocommerce-checkout .content-container {
		padding: 0;
	}
	form.woocommerce-cart-form {
		margin-bottom: 1rem;
		padding: 0 1rem;
		font-size: .875rem;
	}
	table.shop_table.cart tbody > tr td.product-subtotal {
		border-bottom: 1px solid #ddd;
		margin-bottom: 2rem;
    	padding-bottom: 2rem;
	}
	table.shop_table_responsive tr td.product-thumbnail::before {
		display:none;
	}
	table.shop_table.cart td.product-remove {
		position: absolute;
	}
	form.woocommerce-checkout span.woocommerce-input-wrapper input, 
	form.woocommerce-checkout span.woocommerce-input-wrapper textarea {
		min-width: 100%;
	}
	table.woocommerce-checkout-review-order-table {
		font-size: .875em;
	}
	table.woocommerce-checkout-review-order-table bdi {
		white-space: nowrap;
	}
	table.shop_table.cart tbody > tr td {
		padding: 5px;
	}
	.woocommerce-order-received .content-padd {
		padding: 0;
		padding-top: 3rem;
	}
	p.woocommerce-notice--success {
		padding-left: 2.5em;
		font-weight: 600;
	}
	.woocommerce-order-received .woocommerce-order-details {
		padding: 2rem 2rem;
		font-size: .875rem;
	}
	table.shop_table.cart .quantity input[type=number].qty {
		width: 45px;
		height: 30px;
		border: 2px solid #FF941A;
		font-size: .875rem;
		font-weight: 600;
	}
	.woocommerce-checkout-payment button#place_order {
		margin: 1.5rem auto 0;
	}
	.prodcat-text {
		margin-bottom: 1.25em;
	}
}
@media (min-width: 768px) and (max-width: 991.98px) {
	ul.products.columns-4 li.product, 
	.filters .berocket_single_filter_widget {
		width: calc(33.333333% - 20px);
	}
	ul.products li.product, .filters .berocket_single_filter_widget {
		margin-right: 30px;
	}
	ul.products li.product:nth-child(4n + 4), 
	.filters .berocket_single_filter_widget:nth-child(4n + 4) {
		margin-right: 30px;
	}
	ul.products li.product:nth-child(3n + 3), 
	.filters .berocket_single_filter_widget:nth-child(3n + 3) {
		margin-right: 0;
	}
	body:not(.archive.search) .prodcat ul.products li.product {
	margin-right:30px;
	}
	body:not(.archive.search) .prodcat ul.products li.product:nth-child(4n + 4) {
		margin-right: 30px;
	}
	body:not(.archive.search) .prodcat ul.products li.product:nth-child(3n + 3) {
		margin-right: 0px;
	}
	ul.products.columns-4 li.product.prodcat-txt {
		width: 100%;
		padding: 0 2.5rem;
	}
	ul.products li.product a img, 
	#wps-slider-section img.wpsf-product-img {
		max-height: inherit;
		min-height: inherit;
	}	
	ul.products li.product-category a h3 {
    	left: 10px;
    	right: 10px;
		width: calc(100% - 20px);
		align-items: flex-start;
	}
	.pricelist ul.products li.product:nth-child(4n + 4) {
		margin-right: 0px;
	}	
	.prodcat-container {
		box-shadow: none;
	}
	ul.products span.price {
		margin-left: 0;
		padding-right: 0;
		width: 100%;
	}
	ul.products a.button.add_to_cart_button, ul.products a.added_to_cart {
		float: initial;		
		margin: 0 auto 24px;
	}
	.related ul.products li.product:last-child {
		display:none;
	}
	.shopbody {
		font-size: 1em;
	}
	p.woocommerce-loop-product__title {
		font-size: 1rem;
		margin: 20px 0;
		padding: 0 18px;
		height: 44px;
	}
	.filters .select2-container--default .select2-selection--multiple .select2-selection__rendered {
		padding: 0 15px;
	}
	nav.woocommerce-breadcrumb {
		font-size: 0.75rem;
		margin-left: 2.5rem;
	}
	h1.woocommerce-products-header__title, h1.product_title {
		margin-left: 2.5rem;
	}
	.woocommerce-products-header .dgwt-wcas-search-wrapp {
		width: calc(100% / 3 - 30px);
		min-width: 205px;
	}
	ul.page-numbers {
		margin-top: 1.5rem;
		margin-bottom: 3rem;
	}
	.woocommerce-products-header.on-product-page .dgwt-wcas-search-wrapp {
		width: 205px;
	}
	.productbody-padd {
		padding-left: 0;
	}
	.single-product div.product .woocommerce-product-gallery {
		max-width: 300px;
		min-width: 300px;
		margin-right: 2rem;
	}
	.productbody-right {
		padding-right: 0rem;
	}
	.prod-attrib,
	.product .summary {
		font-size: 1em;
	}
	.product .summary p.price {
		font-size: 2rem;
		margin-right: 1.5rem;
		padding-top: 0.25em;
	}
	.product .summary .cart button.single_add_to_cart_button, .product .summary .cart a.added_to_cart {
		font-size: 1.125rem;
		width: 140px;
	}
	.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li {
		margin-right: 2.85%;
	}
	.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img {
		border: 1px solid #b4b2bd;
	}
	.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
		transform: scale(.75);
	}
	.product .summary .cart input[type=number].qty {
		margin-right: 12px;
	}
	form.woocommerce-checkout > div {
		padding: 2rem;
		font-size: .875rem;
	}
	form.woocommerce-checkout span.woocommerce-input-wrapper input, form.woocommerce-checkout span.woocommerce-input-wrapper textarea {
		min-width: 100%;
	}
	form.woocommerce-checkout > div#order_review {
		padding-right: 1rem;
	}
	bdi {
		white-space: nowrap;
	}
	li.product-category a .woocommerce-loop-category__description {
		color: transparent;
	}
}

@media (min-width: 992px) and (max-width: 1199.98px) {
	ul.products.columns-4 li.product, 
	.filters .berocket_single_filter_widget {
		width: calc(33.333333% - 20px);
	}
	ul.products.columns-4 li.product.prodcat-txt {
		width: calc(66.666666% - 10px);
		padding: 0 20px 0 80px;
	}	
	.productbody-right {
		padding-right: 1rem;
	}
	ul.products li.product, .filters .berocket_single_filter_widget {
		margin-right: 30px;
	}
	ul.products li.product:nth-child(4n + 4), 
	.filters .berocket_single_filter_widget:nth-child(4n + 4) {
		margin-right: 30px;
	}
	ul.products li.product:nth-child(3n + 3), 
	.filters .berocket_single_filter_widget:nth-child(3n + 3) {
		margin-right: 0;
	}
	body:not(.archive.search) .prodcat ul.products li.product {
	margin-right:30px;
	}
	body:not(.archive.search) .prodcat ul.products li.product:nth-child(4n + 4) {
		margin-right: 30px;
	}
	body:not(.archive.search) .prodcat ul.products li.product:nth-child(3n + 3) {
		margin-right: 0px;
	}
	.shopbody {
		font-size: 1em;
	}
	ul.products a.button.add_to_cart_button, ul.products a.added_to_cart {
		max-width: 125px;
	}
	ul.products span.price {
		width: calc(100% - 125px - 48px);
	}
	.search-results .prodcat-container:before {
		display:none;
	}
	.search-results .prodcat {
		background: #efefef;
	}
	.woocommerce-products-header .dgwt-wcas-search-wrapp {
		width: calc(100% / 3 - 20px);
	}
	.productbody-padd {
		padding-left: 0;
	}
	.single-product div.product .woocommerce-product-gallery {
		max-width: 450px;
		min-width: 450px;
	}
	.single-product div.product .woocommerce-product-gallery {
		margin-right: 3rem;
	}
	.product .summary {
		font-size: 1em;
	}
	.prod-attrib {
		font-size: 1em;
	}
	.product .summary p.price {
		margin-right: 2.5rem;
	}
	.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li {
		margin-right: 2.85%;
	}
	.product .summary .cart button.single_add_to_cart_button, .product .summary .cart a.added_to_cart {
		width: 160px;
	}
	.related ul.products li.product:last-child {
		display: none;
	}
	.woocommerce-products-header.on-product-page .dgwt-wcas-search-wrapp {
		width: 275px;
	}
	form.woocommerce-checkout > div {
		padding: 3rem;
	}
	form.woocommerce-checkout > div#order_review {
		padding-right: 1rem;
	}
	bdi {
		white-space: nowrap;
	}
	form.woocommerce-checkout span.woocommerce-input-wrapper input, form.woocommerce-checkout span.woocommerce-input-wrapper textarea {
		min-width: 100%;
	}
	.woocommerce-checkout-review-order-table tbody td {
		font-size: .875rem;
	}
	.pricelist ul.products li.product {
		margin-right: 0;
	}
	ul.products li.product a img, #wps-slider-section img.wpsf-product-img {
		max-height: inherit;
		min-height: inherit;
	}
}
@media (min-width: 1200px) and (max-width: 1299.98px) {
	.productbody-right {
		padding-right: 1rem;
	}
	.single-product div.product .woocommerce-product-gallery {
		margin-right: 3rem;
	}
	ul.products li.product, .filters .berocket_single_filter_widget {
		margin-right: 20px;
	}
	ul.products li.product {
		margin-bottom: 40px;
	}
	.filters .berocket_single_filter_widget {
		margin-bottom: 20px;
	}
	ul.products.columns-4 li.product, 
	.filters .berocket_single_filter_widget {
		width: calc(25% - 15px);
	}
	body:not(.archive.search) .prodcat ul.products li.product {
	margin-right:20px;
	}
	body:not(.archive.search) .prodcat ul.products li.product:nth-child(4n + 4) {
		margin-right: 0px;
	}
	
	ul.products li.product-category a h3 {
    	left: 20px;
    	right: 20px;
		width: calc(100% - 40px);
	}
	bdi {
		white-space: nowrap;
	}
	ul.products a.button.add_to_cart_button, ul.products a.added_to_cart {
		max-width: 120px;
	}
	ul.products span.price {
		width: calc(100% - 120px - 48px);
	}
	.product .summary {
		font-size: 1em;
	}
	.single-product div.product .woocommerce-product-gallery {
		max-width: 540px;
		min-width: 540px;
	}
	.prodcat-container:before {
		display:none;
	}
}
@media (min-width: 1300px) and (max-width: 1399.98px) {
	ul.products a.button.add_to_cart_button, 
	ul.products a.added_to_cart {
		max-width: 126px;
	}
	ul.products span.price {
	    margin-left: 16px;
    	width: calc(100% - 118px - 48px);
	}
	ul.products li.product a img, 
	#wps-slider-section img.wpsf-product-img {
		max-height: inherit;
		min-height: inherit;
		object-fit: cover;
	}
	.productbody-right {
		padding-right: 1rem;
	}
	.single-product div.product .woocommerce-product-gallery {
		margin-right: 4rem;
	}
	ul.products li.product-category a h3 {
		font-weight: 500;
	}
}

.products.subcategory {
	justify-content: center!important;
}