@import url('normalize.css');
@import url('fonts.css');

:root {
  --primary-color: 57, 62, 65;
  --light-color: 140, 147, 151;
  --ultralight-color: 242, 242, 242;
  --accent-color: 255, 253,0;
  --accent-bright-color: 240, 221,19;
  --action-color: 217, 7,10;
}

html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}

body {
	font-family: 'Onest';
	font-size: 1.4rem;
	line-height: 1.4;
	color: rgb(var(--primary-color));
}

.wrapper, .heroContainer, .desktopHeader {
	max-width: 1360px;
	margin: 0 auto;
}

.desktopHeader {
	display: none;
}

.desktopHeader .logo {
	padding-top: 25px;
	width: 260px;
	flex: 0 0 auto;
	padding-left: 15px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: space-between;
	padding-bottom: 3px;
	background: rgb(var(--primary-color));
}

.desktopHeader .header {
	padding: 25px 12px 0 12px;
	width: calc(100% - 260px);
}

.w-100 {
    width: 100%;
}

.desktopHeader .logo svg {
	width: 245px;
	height: 39px;
}

.button-compare.comparison .comparison-total {
    display: block;
    visibility: hidden;
}

.msfavorites-total.ms2_counter.active {
    visibility: visible;
}

.button-compare.comparison.can_compare .comparison-total {
    display: block;
    visibility: visible;
}


.desktopHeader .header > div {
	display: flex;
	justify-content: space-between;
	gap:10px;
}

.desktopHeader .header > div + div {
	margin-top: 20px;
}

.desktopHeader .header nav {
	display: flex;
	max-width: 750px;
	flex: 1;
    justify-content: space-between;
}

.desktopHeader .header nav a {
	color: rgb(var(--primary-color));
	padding: 3px;
}

.desktopHeader .header nav a:hover {
	text-decoration: underline;
}

.desktopHeader .phone {
	margin-left: 30px;
}

.desktopHeader .phone a {
	color: rgb(var(--primary-color));
	font-size: 1.3rem;
	font-weight: 600;
}

.desktopHeader svg {
	color: rgb(var(--primary-color));
}

.desktopHeader .adress {
	color: rgb(var(--light-color));
	align-self: flex-start;
}

.wrapper {
	padding: 12px;
}

main a, button {
	color: rgb(var(--primary-color));
}

img {
	display: block;
	max-width: 100%;
}

h2 {
    font-family: 'Druk Cyr';
	font-size: 2.7rem;
	margin: 2rem 0 3rem;
}

h3 {
	font-size: 2rem;
	margin: 2rem 0 2rem;
}

h4 {
	font-size: 1.6rem;
	margin: 1.6rem 0 1.6rem;
}

p {
  margin: .8rem 0;
}

header.mobileHeader {
	background: rgb(var(--primary-color));
}

header svg {
	display: block;
}

.mobileHeader svg {
	color: #fff;
}

header .logo {
	
}

header .contacts {

}

header .phone {
	display: flex;
	align-items: center;
}

header .phone svg {
	margin-right: 4px;
}

.mobileHeader .phone a {
	color: #d6d6d6;
	font-size: 1.2rem;
}

header .search input {
	display: block;
	width: 100%;
	font-size: 1.2rem;
	background-color: transparent;
	border: none;
	padding: 0 10px 0 0;
	outline: none;
}

header .wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header a {
	text-decoration: none;
}

header .search form {
	display: flex;
	width: 100%;
}

header .search {
	background-color: rgb(var(--ultralight-color));
	padding-block: 10px;
	padding-inline: 12px;
	display: flex;
	flex: 1;
}

header .search button {
	background: transparent;
	border: none;
	padding: 0;
}

header .search svg {
	color: rgb(var(--primary-color));
}

.panelCatalog {
	display: none;
	color: rgb(var(--ultralight-color));
}

.panelCatalog .submenu a {
	color: rgb(var(--primary-color));
	text-decoration: none;
	padding: 4px;
	border-radius: 6px;
	transition: .2s;
}

.panelCatalog .submenu a:hover {
	background: #ddd;
}

.panelCatalog > .title {
	font-size: 1.7rem;
	padding: 15px 0 20px 10px;
}

.panelCatalog .title, .panelCatalog .navCategory > span {
	display: flex;
	align-items: center;
	gap:6px;
}

.panelCatalog .title svg {
	width: 32px;
	height: 32px;
} 

.panelCatalog .catalogNav svg {
	width: 25px;
	height: 25px;
}

.catalogNav {
	display: flex;
	flex-direction: column;
	gap:0;
	padding-bottom: 15px;
}

.catalogNav .navCategory {
	padding: 7px 15px 7px 10px;
	border-radius: 10px 0 0 10px;
	font-size: 1.2rem;
	cursor: pointer;
	transition: .2s;
}

.catalogNav .navCategory:hover {
	color: rgb(var(--primary-color));
	background: rgb(var(--accent-bright-color));
}

.catalogNav .submenu {
	color: rgb(var(--primary-color));
	padding: 40px 40px;
	display: none;
	position: absolute;
	background: #fff;
	top:20px;
	border-radius: 0 10px 10px 0;
	bottom: 0;
	right: 0;
	z-index: 3;
	-webkit-box-shadow: 0px 0px 8px 0px rgba(39, 39, 39, 0.2);
	-moz-box-shadow: 0px 0px 8px 0px rgba(39, 39, 39, 0.2);
	box-shadow: 0px 0px 8px 0px rgba(39, 39, 39, 0.2);
}

.catalogNav .submenu .title {
	font-size: 2rem;
	font-weight: bold;
}

.catalogNav .submenu .title + span {
	display: flex;
	gap:30px;
	margin-top: 30px;
}

.catalogNav .submenu .title + span > span {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap:10px;
	width: calc(100% / 3 - 10px);
}

.catalogNav .navCategory:hover .submenu {
	display: block;
}

.menu-panel {
	position: fixed;
	display: flex;
	justify-content: space-around;
	bottom: 0;
	width: 100%;
	padding-block: 8px;
	height: 60px;
	background-color: inherit;
	z-index: 99;
}

.menu-panel a {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 20%;
	position: relative;
}

.menu-panel span {
	font-size: 1.1rem;
	color: #fff;
	margin-top: 3px;
}


.menu-panel svg {
	width: 25px;
	height: 25px;
}

.menu-panel a.active:not(.index) svg, .menu-panel a.active span {
	color: rgb(var(--accent-color));
}

.menu-panel span.ms2_counter, header .button-group span.ms2_counter {
    position: absolute;
    margin-top: 0;
    padding: 0 2px;
    min-width: 12px;
    height: 14px;
    border-radius: 4px;
    line-height: 14px;
    background: rgb(var(--action-color));
    text-align: center;
    margin-left: 20px;
    visibility:hidden;
}

header .button-group span.ms2_counter {
    color:#fff;
    font-size:1.2rem;
    top:0px;
    margin-left:16px;
}

.menu-panel span.ms2_counter.full, header .button-group span.ms2_counter.full {
    visibility:visible;
}

header .button-group span.ms2_counter.msfavorites-total[data-data-value="0"] {
    visibility:hidden;
}

main {
	padding-bottom: 20px;
}

section {
	max-width: 1360px;
	margin: 0 auto 20px;
}

.slider.wrapper {
	padding: 20px 0 0 12px;
}

.swiper-wrapper {
  align-items: stretch;
}

.swiper-slide {
	border-radius: 10px;
	overflow: hidden;
}

.product.swiper-slide {
	
	height: auto !important;
	display: flex !important;
}

.swiperTopCategory svg {
	width: 45px;
	height: 45px;
}

.swiperTopCategory small {
	display: none;
	font-size: 1.4rem;
	max-width: 160px;
}

.swiperTopCategory a {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-decoration: none;
	background-color: #f6f6f6;
	border-radius: 10px;
	padding: 15px 10px;
}

.swiperTopCategory a > span {
	font-family: 'Druk Cyr';
	font-size: 1.3rem;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	gap: 12px;
}

.swiperTopCategory .swiper-slide {
    width: auto;
}

.swiperCardThumbSlider {
	margin-bottom: 30px;
}

.swiperCardThumbSlider .swiper-slide{
        cursor: pointer;
    }
.swiperCardThumbSlider .swiper-slide-thumb-active{
    outline: 2px solid #ddd;
    outline-offset: -2px;
}
.swiperCardThumbSlider img{
    vertical-align:　bottom;
}

.product {
/*  box-shadow: 0px 3px 20px 2px rgba(5, 5, 5, 0.1);*/
/*  margin: 20px 0;*/
  padding: 10px 10px 10px;
  display: flex;
  flex-direction: column;
  border-radius:10px;
}

.product:not(.main-product):hover {
		-webkit-box-shadow: inset 0px 0px 6px 0px rgba(39, 39, 39, 0.2);
		-moz-box-shadow: inset 0px 0px 6px 0px rgba(39, 39, 39, 0.2);
		box-shadow: inset 0px 0px 6px 0px rgba(39, 39, 39, 0.2);
	}

.product > a {
   text-decoration: none; 
   display: flex;
   flex-direction: column;
   flex: 1;
}

.brandProducts .product {
	background-color: var(--background);
}

.product-header, .product-label, .product-footer {
	display: flex;
	align-items: center;
	width: 100%;
}

.product-header {
    margin-bottom:8px;
}

.product-header, .product-footer {
	justify-content: space-between;
}

 .product-footer {
 	margin-top: auto;
 }

.product-caption, .product-footer .price {
	display: flex;
	flex-direction: column;
}

.product-caption {
/*	min-height: 90px;*/
margin-top: 15px;
	margin-bottom: 15px;
}

.product-caption span {
	margin-top: 5px;
/*	font-weight: bold;*/
}

.product-label svg {
	width: 32px;
	height: 32px;
}

.product-label img {
	max-width: 85px;
}

.product-label span {
	font-family: 'Druk Cyr';
	font-size: .9rem;
	text-transform: uppercase;
	margin-left: 8px;
}

.product-header .product-like {
	width: 32px;
	height: 32px;
	border-radius: 6px;
	margin-left: auto;
	cursor: pointer;
	transition: .2s;
}

.product-header .product-like:hover {
	color: rgb(var(--action-color));
	background-color: #f6e7e7;
}

.product button {
	border: none;
	padding: 0;
	background: transparent;
}

.product button svg {
	width: 32px;
	height: 32px;
}

.product-footer .price {
	min-height: 50px;
	display: flex;
  flex-direction: column;
}

.product-footer small {
	text-decoration: line-through;
	margin-bottom: auto;
	padding-left: 5px;
	font-size: 100%;
}

.product-footer .price span {
	font-size: 1.6rem;
	font-weight: bold;
	margin-top: auto;
	padding: 4px 5px;
}

.product-footer .sale-price span {
	background: #ffeb00;
	border-radius: 6px;
}

.product-footer .product-cart {
	padding: 4px;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	background: currentColor;
	align-self: end;
	cursor: pointer;
	transition: .2s;
}

.product-footer .product-cart.product-zapros {
    padding: 4px 10px;
	height: 40px;
	width:auto;
	border-radius: 10px;
	background: rgb(var(--primary-color));
	color:#fff;
	align-self: end;
	cursor: pointer;
	transition: .2s;
}

.product-footer .product-cart.product-zapros:hover {
    background: rgb(var(--action-color));
    color:#fff;
}

.product-footer .product-cart:hover {
	color: rgb(var(--action-color));
}

.product-footer .product-cart svg {
	color: #fff;
}

.show-all, .button-review {
	display: flex;
	justify-content: center;
	padding: 30px 0 20px;
}

.show-all a, .button-review a, form .action {
	color: #fff;
	font-family: 'Druk Cyr';
	font-size: 1rem;
	text-transform: uppercase;
	background: #d9070a;
	padding: 15px 20px;
	border-radius: 8px;
	text-decoration: none;
}

form .action {
    width:100%;
    border:none;
}

.popular-category .wrapper > div {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}

.popular-category .wrapper > div a {
		width: 100%;
		min-height: 150px;
		font-size: 1rem;
		padding: 15px 10px;
		background-color: #f6f6f6;
		background-image: var(--background);
		background-size: cover;
		background-position: 50%;
		text-decoration: none;
		font-weight: bold;
		text-transform: uppercase;
		border-radius: 14px;
	}

.popular-category .wrapper > div a span {
	display: block;
	max-width: 150px;
}

.banner {
	border-radius: 10px;
	overflow: hidden;
	display: block;
}

.swiperNewsFeed .anonce {
	padding: 15px 15px 0;
}

.swiperNewsFeed span {
	font-size: 1.2rem;
}

.swiperNewsFeed h4 {
	margin: 1rem 0 1.5rem;
}

.swiperNewsFeed .swiper-slide {
	border-radius: 10px;
/*  box-shadow: 10px 0px 9px 0px rgba(5, 5, 5, 0.07);*/
}

section.other-block {
    box-shadow: 0 -10px 15px -5px rgba(0, 0, 0, .1);
    max-width: 100%;
    margin-top: 50px;
}

.catalog .main-item {
	display: flex;
	align-items: center;
	padding: 15px 0;
}

.catalog .main-item .pic svg {
	width: 50px;
	aspect-ratio: 1/1;
	margin-right: 10px;
}

.catalog .sub-items {
	padding-left: 60px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.catalog a {
	color: rgb(var(--primary-color));
	text-decoration: none;
}

.catalog .main-item span {
	font-weight: bold;
	font-size: 1.8rem;
}

.catalog .sub-items a {
	font-size: 1.6rem;
	padding: 6px 0;
}

.catalog .sub-items a + a {
	margin-top: 6px;
}

.categorySection {
	display: flex;
	flex-wrap: wrap;
	gap: 40px 12px;
/*	column-gap: 10px;*/
}

.categorySection .product {
	width: calc(50% - 6px);
/*	padding-left: 0;*/
/*	padding-right: 0;*/
}

.categorySection .product:nth-child(odd) {
/*	border-right:1px solid #eee;*/
}

.categorySection .product:nth-child(even) {
/*	border-left:1px solid #eee;*/
}

.categorySection .product-label svg, .categorySection .product button svg {
    width: 26px;
    height: 26px;
}

/* .categorySection .product-footer .product-cart {
    width: 34px;
    height: 34px;
} */

.categorySection .product-label span {
/*    font-size: .7rem;*/
/*    margin-left: 6px;*/
}


.product-footer {
    flex-direction: column;
    align-items: flex-start;
}

.product-footer .product-cart {
		margin-top: 15px;
    align-self: start;
}

.breadcrumbs {
	overflow: scroll;
}

.breadcrumbs ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: nowrap;
/*	line-height: 20px;*/
	padding: 15px 0 15px 5px;
}

.breadcrumbs li {
	white-space: nowrap;
	color: #bbb;
}

.breadcrumbs li a {
	text-decoration: none;
	padding: 5px;
	color: rgb(var(--primary-color));
}

.breadcrumbs li:not(:last-child):after {
	content: ">";
	margin: 0 5px;
}

.product-abilities {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.product-abilities .items {
	display: flex;
	flex-wrap: wrap;
}

.product-abilities .items .tag {
	padding: 5px 10px;
	background: #f2f2f2;
	border-radius: 4px;
	border: 1px solid #d8d8d8;
	font-size: 1.2rem;
} 

.product-abilities .rate {
	padding: 5px 10px;
	display: flex;
	align-items: center;
	gap: 4px;
}

.product-abilities .rate svg {
	width: 20px;
	height: 20px;
	color: #f3c161;
}

.product-main, .items-cart {
	margin-top: 15px;
	padding: 20px 12px;
	background: #f2f2f2;
	border-radius: 20px;
}

.product h4 {
	font-weight: 600;
	font-size: 1.6rem;
	line-height: 150%;
	margin: 1.6rem 0 1.2rem;
}

.product-main .product-footer {
	margin-top: 25px;
}

.product-main .moneysave {
		background: #dedede;
    border-radius: 6px;
    font-size: 1.2rem;
    font-style: normal;
		padding: 0 5px;
		margin-left: 10px;
		align-content: center;
}

.product-main .product-footer .price > div {
	display: flex;
	align-items: stretch;
}

.product-main .product-cart, .items-cart .product-cart {
	margin: 30px 0 20px;
	width: 100%;
	border-radius: 10px;
	font-family: 'Druk Cyr';
	font-size: 1.1rem;
	background: rgb(var(--action-color));
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 5px;
	text-transform: uppercase;
}

.product-cart span {
	color: #fff;
}

.product .remains {
	display: flex;
	column-gap: 5px;
	align-items: center;
	align-self: center;
	color: rgb(var(--light-color));
	font-size: 1.2rem;
}

.product .remains:before {
	content: "!";
	width: 15px;
	height: 15px;
	text-align: center;
	line-height: 15px;
	border: 1px solid currentColor;
	border-radius: 100%;
}

.product-tabs .tablink {
	text-decoration: none;
	background: transparent;
	border-radius: 10px;
	padding: 10px 10px;
	display: flex;
	align-items: center;
	gap: 6px;
	border: 1px solid #ddd;
}

.swiperPtabsSlider .swiper-slide {
    width: auto;
}

.tabContent + .tabContent{
	margin-top: 40px;
}

.product-tabs {
	position: sticky;
	top:0;
	padding: 0 0 15px 0;
	background: #fff;
	z-index: 10;
}

.product-tabs + div {
	padding-right: 12px;
}

.product-tabs .tablink.is-active {
	background: #f2f2f2;
}

.product-tabs svg {
	width: 30px;
	height: 30px;
}

.card-anounce {
	margin-top: 20px;
	width: 100%;
}

.card-anounce .brand img {
	max-width: 160px;
}

.card-anounce span {
	display: block;
	margin: 7px 0;
}

.card-anounce .title {
	margin-top: 20px;
	font-weight: bold;
}

.card-specs {
	list-style: none;
	margin: 0;
	padding: 0;
}

.card-specs li {
	display: flex;
	justify-content: space-between;
}

.card-specs li small {
	flex: 1 0;
  height: 1em;
  margin: 0 .4em;
	border-bottom: 1px dotted #d8d8d8;
}

.card-specs li small + span {
	text-align: right;
}

.card-specs li {
	margin: 7px 0;
}

.estimation-block{
	display: flex;
}
.estimation {
	display: flex;
	flex-direction: column;
}
.estimation .result {
	font-size: 6rem;
	font-weight: bold;
	line-height: 80px;
}

.stars {
	display: flex;
	gap:3px;
	margin-bottom: 10px;
}

.stars svg {
	width: 20px;
	height: 20px;
	color:#f3c161;
}

.stars svg:last-child {
	color:#d9d8d8;
}

.levels {
	flex:1;
	display: flex;
	flex-direction: column;
	gap:8px;
	margin-left: 25px;
}

.levels div {
	display: flex;
	align-items: center;
	gap:10px;
}

.levels small {
	max-width: 260px;
	width: 100%;
	height: 10px;
	background: #f2f2f2;
	border-radius: 5px;
	position: relative;
	overflow: hidden;
}

.levels span {
	width: 15px;
	text-align: right;
}

.levels small:before {
	content: "";
	position: absolute;
	left:0;
	top:0;
	height: 10px;
	background: #f3c161;
}

.levels div:nth-of-type(1) small:before {
	width: 78%;
}

.levels div:nth-of-type(2) small:before {
	width: 50%;
}

.levels div:nth-of-type(3) small:before {
	width: 10%;
}

.add-review {
	margin: 30px 0 30px;
}

.button-review {
	padding-top: 10px;
}

.button-review a {
	width: 100%;
	text-align: center;
}

.list-reviews > div + div {
	margin-top: 30px;
}

.docs {
	display: flex;
	flex-direction: column;
	row-gap: 30px;
}

.docs a {
	display: flex;
	align-items: center;
	gap:10px;
}

.docs svg {
	box-sizing: content-box;
	width: 26px;
	height: 26px;
	border-radius: 4px;
	border:6px solid #f2f2f2;
}

.button-review.all-reviews a {
	background: #f2f2f2;
	color: #959799;
}

.swiper-pagination-bullet {
    background: #393e41 !important;
    width: 10px !important;
    height: 10px !important;
}

.newsFeed {
	display: flex;
	flex-direction: column;
	gap:30px;
}

.cartContainer {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap:50px;
}

.itemslist .item {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap:5px;
}

.itemslist .item + .item {
	margin-top: 50px;
}

.itemslist .item .tovar {
	display: flex;
	gap:15px;
}

.itemslist .item .tovar small {
	display: block;
	margin-top: 10px;
}

.itemslist .item .image img {
	max-width: 90px;
}

.itemslist .control-remlike {
	margin-right: auto;
	display: flex;
	gap:8px;
}

.itemslist .control-remlike button {
	border: none;
    padding: 0;
    background: transparent;
	color: rgb(var(--primary-color));
	width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    transition: .2s;
}

.itemslist .control-remlike button:hover {
	color: rgb(var(--action-color));
	background-color: #f6e7e7;
}

.itemslist .control-remlike svg {
	width: 32px;
    height: 32px;
}

.itemslist .tovar-info {
	display: flex;
	flex-wrap: wrap;
	gap:20px;
	justify-content: space-between;
	align-items: center;
}

.itemslist .price {
	font-weight: 600;
	font-size: 1.6rem;
}

.cartGo {
	padding: 25px 20px;
    background: #f2f2f2;
    border-radius: 20px;
}

.cartGo .sum {
	font-size: 2rem;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	font-weight: 600;
}

.cartGo .sum .counter:before {
	content: "Итого:";
	display: block;
	font-size: 1.2rem;
	color: #6e7172;
}

.button {
	border-radius: 10px;
    font-family: 'Druk Cyr';
    font-size: 1.1rem;
    background: rgb(var(--action-color));
    color: #fff;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    padding: 14px 20px;
}

.cartGo .button {
	width: 100%;
	display: block;
	margin-top: 20px;
}

.input-number {
    display: flex;
    align-items: center;
    background: transparent;
    border: 1px solid rgb(var(--primary-color));
    box-sizing: border-box;
    border-radius: 6px;
    color: rgb(var(--primary-color));
    font-size: 1.4rem;
    text-align: center;
    width: calc(33px* 3);
}

.input-number__minus, .input-number__plus {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
}

.input-number__input {
    background: transparent;
    color: rgb(var(--primary-color));
    width: 32px;
    height: 32px;
    border: none;
    padding: 8px;
    text-align: center;
}

.categoryOptions {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 10px;
	padding: 0 12px;
}
.categoryContainer {

}

.showFilters {
	display: flex;
	align-items: center;
	outline: none;
	border: none;
	background: transparent;
	cursor: pointer;
}

.filters-header {
	position: sticky;
	top: 0;
	padding: 15px 20px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}

.filters-header .close {
	margin-left: auto;
	width: 30px;
	height: 30px;
	padding: 0;
	border: none;
	outline: none;
	background: transparent;
}

.filters-header h4 {
	margin: 0 0 0 auto;
	transform: translateX(15px);
	font-size: 1.6rem;
}
.categoryFilters {
	display: none;
	position: fixed;
	overflow: scroll;
	top:0;
	bottom: 0;
	width: 100%;
	background: #fff;
	padding: 0 0 60px;
}
.categoryFilters.show {
	display: block;
}
.filters-list {
	padding: 30px 0;
}
.filters-list > div {
	padding: 15px 20px 20px;
}
.filters-list > div + div {
	border-top: 1px solid #ddd;
}
.filters-list h5 {
	margin: 0 0 15px;
	font-size: 1.5rem;
}

.filter.tags {
	display: flex;
	flex-wrap: wrap;
	gap:8px;
}

.filter.tags button {
	padding: 8px 16px;
	border: 1px solid #ccc;
	outline: none;
	background: transparent;
	border-radius: 15px;
	cursor: pointer;
	transition: .2s;
}

.filter.tags button:hover {
	background: #eee;
}

.filter .input-row {
	display: flex;
	justify-content: space-between;
	gap:12px;
}

.filter .input-row.row-2 > * {
	width: calc(50% - 6px);
}

.filter .input-row.row-3 {
	gap:6px;
}

.filter .input-row.row-3 > * {
	width: calc(33.3333% - 2px);
}

.filter input[type="text"] {
	padding: 10px 16px;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 1.5rem;
	width: 100%;
}

.grid-container {
    max-width:1100px;
    margin:15px auto;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.brands-container {
    margin:15px 0;
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    gap:20px;
}

.brands-container > div {
    width:calc(33.3333% - 13.3333px);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content: center;
}

.brands-container .img {
    display:block;
    max-width:100%;
}

.contacts-block {
    display: flex;
    flex-direction:column;
    gap:30px;
}

.contacts-block > div {
    background-color: rgb(var(--ultralight-color));
    padding: 10px 10px 20px;
    border-radius:20px;
}

.contactus {
    display: flex;
    flex-direction:column;
    gap:10px;
}

.contactus a {
    font-size:1.8rem;
    text-decoration:none;
}

.contactus .icon-wa {
    background-color:#43d854;
    color:#fff;
    padding:5px 12px;
    border-radius:8px;
    display:inline-block;
}
.map {
    border-radius:20px;
    overflow:hidden;
    margin-top:25px;
}

.visual-info {
    background-color: rgb(var(--ultralight-color));
    padding: 10px 10px 20px;
    border-radius:20px;
    margin:20px 0;
    display:flex;
    flex-direction:column;
    gap:20px
}

.visual-info > span {
    max-width:140px;
    flex: 0 0 140px;
}

.visual-info.visual-warning {
    background-color:#f9e9e9;
}

.modal {
    /* max-width: 350px; */
}

.md-content {
    padding:15px 10px;
}

.md-content h3 {
  	color: rgb(var(--accent-bright-color));
	font-family: 'Druk Cyr';
	font-size: 1.6rem;
	margin:0 0 1rem;
	text-transform: uppercase;  
}

.md-content {
    color:#fff;
}

.md-content .button-row {
    margin:1.5rem 0 1rem;
    display:flex;
    justify-content:center;
}

.faq {
    margin:30px 0 50px;
}

.appeal {
    /* background-color: rgb(var(--ultralight-color)); */
    background-color: #fff5e7;
    border-radius:15px;
    padding: 10px 20px 30px;
}

.appeal .faq {
    margin-bottom:0;
    align-items:center
}

.faq .image {
    border-radius:10px;
    overflow:hidden;
    margin-bottom:20px;
    max-width:420px;
}

details{
  display:block;
  background-color: rgb(var(--ultralight-color));
  width:100%;
  overflow:hidden;
  padding: 15px 15px;
  margin-bottom:20px;
  border-radius:10px;
  
}
summary + * {
    margin-top:15px;
}
summary::-webkit-details-marker{display:none;}
summary::-moz-list-bullet{list-style-type:none;}
summary::marker{display:none;} 
summary {
   display:block;
   padding: .3em 1em .3em .4em;
   cursor: pointer;
   position: relative;
   transition:.3s;
}
summary:before {  
  top: .4em;
  right: .3em;
  color: transparent;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMTYuNTkgOC41OUwxMiAxMy4xNyA3LjQxIDguNTkgNiAxMGw2IDYgNi02eiIvPjxwYXRoIGQ9Ik0wIDBoMjR2MjRIMHoiIGZpbGw9Im5vbmUiLz48L3N2Zz4=") no-repeat 50% 50% / 1em 1em;
  width: 1em;
  height: 1em;  
  content: "";
  position: absolute;
  transition: transform .5s;
}
details[open] > summary:before {
  transform: scale(1,-1);
}
summary ~ * {
   padding: 0 1em 10px 0.6em;
}
details[open] summary ~ *{ 
  animation: sweep .5s ease-in-out;
}
summary:hover {
    color:rgb(var(--action-color));
}
details[open] summary {
    font-weight:bold;
}
@keyframes sweep {
  0%    {opacity: 0;}
  100%  {opacity: 1;}
}
summary:focus {
  outline:0;
}
.faq form {
    /* margin-top:30px; */
}

form .inputs {
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    margin-bottom:20px;
}

form small {
    display:block;
    line-height:140%;
}


form .inputs > *, .form-control {
    padding:15px;
    width:100%;
    border:1px solid #999;
    border-radius:10px;
}

.tabs__nav {
	display: flex;
	flex-wrap: wrap;
	justify-content:flex-start;
	gap:1rem;
	margin: 0;
	position: relative;
	z-index: 1;
	margin-bottom:25px;
}

.tabs__btn {
    color:rgb(var(--primary-color));
    background: rgb(var(--ultralight-color));
    font-size:1.2rem;
	padding: 8px 12px;
	border-radius:6px;
	border:none;
	text-align: center;
	cursor: pointer;
	/*white-space: nowrap;*/
	transition: .2s;
}

.tabs__btn_active {
    background: rgb(var(--primary-color));
    color:#fff;
	cursor: default;
	text-decoration: none;
}

.tabs__btn:not(.tabs__btn_active):hover,
  .tabs__btn:not(.tabs__btn_active):focus {
	background: rgb(var(--accent-color));
}

.tabs__content {
	/* padding: 1rem; */
}

.tabs__pane {
	display: none;
}

.tabs__pane_show {
	display: block;
}

.scrollup {
    width: 50px;
    height: 50px;
    opacity: 0.5;
    position: fixed;
    bottom: 70px;
    right: 10px;
    display: none;
    text-indent: -9999px;
    background: #ddd;
    border-radius: 15px;
    z-index: 96;
    /* transition: .2s; */
}

.scrollup:hover {
	opacity: 0.6;
}

.scrollup:before {
	content: "";
	left: 19px;
	top:21px;
	  position: absolute;
      width: 10px;
      height: 10px;
      border-top: 2px solid #555;
      border-right: 2px solid #555;
/*      margin-right: 20px;*/
      transform: rotate(-45deg);
  } 
  
 .tabs-auth {
     border-radius:15px;
     border:1px solid #ccc;
     overflow:hidden;
     max-width:500px;
     margin:0 auto;
 }
 
 .tabs-auth .tabs__nav {
     gap:0;
     margin-bottom:0;
 }
 
  .tabs-auth .tabs__btn {
      width:50%;
      border-radius:0;
      padding: 20px 20px;
      background:#fff;
  }
  
  .tabs-auth .tabs__btn_active {
      color: rgb(var(--primary-color));
      background: rgb(var(--ultralight-color));
  }

  
  .tabs-auth h4 {
      margin-top:0;
  }
  
  .auth-block {
      padding:35px 15px 30px;
  }
  
  .tabs-auth form .action {
      width:100%;
  }
  
  .tabs-auth .tabs__btn:not(.tabs__btn_active):hover,
  .tabs-auth .tabs__btn:not(.tabs__btn_active):focus {
	background: #fff;
	text-decoration:underline;
}

.ms-block {
    background-color: rgb(var(--ultralight-color));
    padding: 15px 15px 25px;
    border-radius:20px;
}

/* .ms-block + .ms-block {
    margin-top:20px;
} */

.ms-order-container, .ms-block-itog, .form-flex {
    display:flex;
    flex-direction:column;
    gap: 20px 30px;
    flex: 1;
}

.ms-block h4 {
    margin-top:1rem;
}

.group-checkbox {
    display:flex;
    flex-direction:row;
    gap:10px;
}
.checkbox {
    background:#fff;
    border-radius:10px;
    border:1px solid #ddd;
    width:calc(50% - 5px);
    padding:5px;
    border: 2px solid #eee;
}

.checkbox .brand-input {
    display:flex;
    align-items:center;
    gap:10px;
    
}

.checkbox .brand-input .image {
    flex:0 0 40px;
}

.checkbox input[type="radio"] {
    visibility:hidden;
    height:0;
    width:0;
    display:block;
}

.checkbox:has([type="radio"]:checked) {
  border: 2px solid rgb(var(--primary-color));
}

.actions-container {
    display:flex;
    flex-direction:column;
    gap:25px;
}

.actions-container .image {
    border-radius:15px;
    overflow:hidden;
}

.cartGo div[class *= "-sum"] {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.total-sum {
    color:#888;
}
.discount-sum {
    color:#888;
    margin: 5px 0 10px;
}

.discount-sum .discount {
    color:#2da162;
}

.result-sum {
    font-size:2rem;
    font-weight:600;
}

button {
    border:none;
}

.ms-block-row {
    display:flex;
    flex-direction:column;
    gap: 20px;
}

.ms-block-row + .ms-block-row {
    margin-top:20px;
}

.order-support b {
    display:block;
    margin-bottom:6px;
}

#msCart + section {
    margin-top:50px;
}

.ec-d-rating__line-progress {
    right: 0 !important;
}

.rating-reviews {
    max-width: 360px
}

.ec-d-rating {
    max-width: 100% !important;
}

.comparison-table .comparison-corner {
    text-align: left !important;
    padding-right: 15px !important;
}
.comparison-table .comparison-head {
    max-width: 180px !important;
}

a.comparison-link.active {
    background: transparent !important;
}

.x-panel.main-wrapper {
    overflow: scroll !important;
}

footer {
	margin-bottom: 60px;
	background-color: rgb(var(--primary-color));
	color: rgb(var(--ultralight-color));
/*	padding: 20px 0;*/
	padding: 0 0 20px 0;
}

footer nav {
	display: flex;
	flex-direction: column;
	margin-bottom: 25px;
}

footer a {
	color: rgb(var(--ultralight-color));
	text-decoration: none;
}

footer a:hover {
	text-decoration: underline;
}

footer details[open] summary {
	margin-bottom: 1.6rem;
}


footer nav > * {
	padding: 15px 0;
}

footer nav > * + * {
	border-top: 1px solid #404649;
}

footer .contacts {
	display: flex;
	flex-direction: column;
	gap:15px;
}

footer .to2gis {
	color: #7b7f81;
}

footer .contacts > small {
	display: block;
}

footer input[type=checkbox] {
	display: none;
}

footer .title {
	font-size: 1.5rem;
}

footer .subMenu > div {
  display: none;
  flex-direction: column;
  gap:15px;
  margin-top: 15px;
  font-size: 1.3rem;
}

footer .subMenu:has(input[type=checkbox]:checked) > div {
	display: flex;
	
}
 

footer .social a {
	padding: 4px;
	border-radius: 6px;
	background-color: #494f53;
}

footer .social > div {
	display: flex;
	gap:5px;
	margin-top: 15px;
}

footer .social svg {
	display: block;
}

.mainCatalog {
	background: rgb(var(--primary-color));
	position: absolute;
	height: 100%;
	width: 100%;
	z-index: 999;
	overflow-y: scroll;
	bottom: 60px;
}

.mainCatalog p {
	color:#fff;
}

.desktopBR {
	display: none;
}

.ec-form__row.checkbox {
    width:100%;
    font-size:1.2rem;
}


@media (min-width: 375px) {

	header .phone svg {
	    width: 20px;
	    height: 20px;
	}

	header .phone a {
	    font-size: 1.4rem;
	}
	
	.product-footer {
	    flex-direction: row;
	    align-items: flex-end;
	    flex-wrap: wrap;
	}
	
}

@media (min-width: 430px) {
	
	.popular-category .wrapper > div a {
		width: calc((100% / 2) - 10px);
		min-height: 150px;
		font-size: 1.2rem;
	}

	.swiperNewsFeed span {
	    font-size: 1.4rem;
	}
	
	.contactus {
	    background: url('../images/firm/contacts.png') 120% 100% no-repeat;
        background-size:60%;
	}
}

@media (min-width: 500px) {
	.swiperTopCategory svg {
	    width: 35px;
	    height: 35px;
	    flex: 0 0 auto;
	}
	.swiperTopCategory a {
	    font-size: 1rem;
	}

	.categorySection .product {
    	width: calc(33.3333% - 8px);
	}

	
	.product .remains {
	    width: 100%;
	    justify-content: end;
	    margin-top: 20px;
	}

	.product-main .product-cart {
	    margin: 0;
	    padding: 4px 20px;
	    width: auto;
	    align-self: end;
	}
	.product-gallery {
		display: flex;
		flex-wrap: wrap;
		min-height: 0;
	}

	.swiperCardSlider  {
	    width: calc(100% - 100px);
	}

	.product-gallery .product-abilities {
		width: 100%;
	}

	.swiperCardThumbSlider {
		order: -1;
		width: 100px;
		flex: 0 0 auto;
		height: 100%;
		margin-bottom: 0;
	}
	
	.grid-container {
        flex-direction:row;
        flex-wrap:wrap;
    }
    .grid-container > .fr1 {
        width: calc(50% - 5px);
    }
    .brands-container > div {
        width:calc(25% - 15px);
    }
    
    h2 {
    	font-size: 3rem;
    }
    
}

@media (min-width: 660px) {
	.categorySection .product {
    	width: calc(25% - 9px);
	}
	.newsFeed {
		flex-direction: row;
		flex-wrap: wrap;
		gap:30px;
	}

	.newsFeed .item {
		width: calc(50% - 15px);
	}

	.itemslist .item {
		flex-direction: row;
		flex-wrap: nowrap;
		gap:20px;
	}

	.itemslist .control-remlike {
	    margin-right: 0;
	    width: 100%;
	    justify-content: flex-end;
	}

	.itemslist .item .tovar {
	    width: 60%;
	}

	.itemslist .item .tovar-info {
	    width: 40%;
	    justify-content: flex-end;
	}

	.itemslist .control-count {
		order:3;
	}
    
 .contactus {
        background: url(../images/firm/contacts.png) 80% 100% no-repeat;
        background-size: 45%;
    }
    .tabs__btn {
        font-size:1.4rem;
    	padding: 12px 20px;
    }
    
    .scrollup {
        right: 20px;
    }
}

@media (min-width: 720px) {

	.banner picture {
		display: flex;
		justify-content: center;
	}
	
	.banner img {
/*		transform: scale(1.2);*/
	max-width: 1000px;
	}

	.catalog {
		display: flex;
		gap: 20px;
		flex-wrap: wrap;
	}

	.catalog > .category {
		width: calc(50% - 10px);
	}

	.product {
	  flex-direction: column;
	  flex-wrap: wrap;
	  justify-content: space-between;
	  align-items: flex-start;
	}
	
	.productCard .product {
	   flex-direction: row; 
	}

	.product-abilities {
	    width: 100%;
	    order: -3;
	    margin-top: 15px;
	    margin-bottom: 15px;
	}
	 .swiperCardSlider .product-image img{
/*		max-width: 400px;*/
    }

	.product-main {
	    width: 45%;
	}
	.product-gallery {
        width: 50%;
    }

    .product-gallery {
/*        display: block;*/
    }

    /*.swiperCardThumbSlider {
		width: 100%;
		flex: 0 0 auto;
		height: auto;
		margin-bottom: 30px;
	}*/
	.product-footer {
	    /* flex-direction: column; */
	    /* align-items: flex-start; */
	}
	.product-main .product-cart {
	    margin: 30px 0 20px;
	    width: 100%;
	}
	.product .remains {
         margin-top: 0;
         align-items: center;
    	align-self: center; 
    	justify-content: center;
    }
    
    .visual-info {
        flex-direction:row;
        gap:20px
    }
    
    form .inputs input[type="text"], form .action {
        width:calc(50% - 10px);
    }
    
    .actions-container {
        flex-direction:row;
    }
    
    .actions-container .image {
        flex:0 0 300px;
    }

}

@media (min-width: 800px) {

	.product-gallery {
        width: 46%;
    }
    .grid-container > .fr1 {
        width: calc(33.3333% - 6.6666px);
    }
    .grid-container > .fr2 {
        width: calc(66.6666% - 3.3333px);
    }
    
    .brands-container > div {
        width:calc(20% - 16px);
    }
    .contactus {
        background: url(../images/firm/contacts.png) 120% 100% no-repeat;
        background-size: 60%;
    }
    
    .contacts-block > div {
        padding: 20px 30px 30px;
        width:calc(50% - 15px);
    }
    
    .contacts-block {
       flex-direction:row;
    }
    
    .actions-container .image {
        flex:0 0 350px;
    }
    
    .form-flex {
        flex-direction:row;
        align-items: flex-start;
        justify-content: space-between;
    }
    
    .form-flex .ms-block-itog {
        flex:0 0 360px;
        position:sticky;
        top:20px;
    }
  
}

@media (min-width: 880px) {
	.categorySection .product {
    	width: calc(20% - 9.6px);
	}
	.swiperTopCategory a {
		padding: 20px 120px 25px 15px;
		min-height: 200px;
		background-position: 100% 50%;
		background-repeat: no-repeat;
		background-size: contain;
	}
	.swiperTopCategory small {
		display: block;
	}
	.topCategoryPopular {
		background-image: url('../images/ui/topPopular.jpg');
	}
	.topCategoryNew {
		background-image: url('../images/ui/topNew.jpg');
	}
	.topCategoryLike {
		background-image: url('../images/ui/topLike.jpg');
	}

	.cartContainer {
	    flex-direction: row;
	    justify-content: space-between;
	    align-items: flex-start;
	    gap:25px;
	}

	.cartGo {
		/* width: 28%; */
	}

	.itemslist {
	    flex: 1;
		padding: 35px 25px;
		border-radius: 15px;
		width: calc(72% - 25px);
		-webkit-box-shadow: 0px 0px 6px 0px rgba(39, 39, 39, 0.2);
		-moz-box-shadow: 0px 0px 6px 0px rgba(39, 39, 39, 0.2);
		box-shadow: 0px 0px 6px 0px rgba(39, 39, 39, 0.2);
	}
    
    .modal-container {
        display:flex;
        align-items: center;
    }
    
    .modal {
        max-width: 750px;
    }
    .md-image {
        flex: 0 0 350px;
    }
    
    .md-content {
        display:flex;
        flex-direction: column;
        min-height:250px;
    }
    .md-content .button-row {
        margin-top: auto;
    }
}



@media (min-width: 1024px) {

	.desktopHeader {
		display: flex;
	}

	.desktopHeader .search {
		border-radius: 15px;
	}

	header .search {
	    min-width: 230px;
	}

	.button-group {
		display: flex;
		gap:5px;
		background-color: rgb(var(--ultralight-color));
    	padding-block: 5px;
    	padding-inline: 5px;
    	border-radius: 15px;
	}

	header .button-group a[class^="button"] {
		border-radius: 12px;
	}

	header a[class^="button"] {
		color: rgb(var(--primary-color));
		background-color: rgb(var(--ultralight-color));
		display: flex;
		gap:3px;
		align-items: center;
		padding: 4px 8px;
		border-radius: 15px;
		transition: .2s;
		position: relative;
	}

	header a[class^="button"]:hover {
		background-color: rgb(var(--accent-bright-color));
	}

	.mobileHeader {
		display: none;
	}
	
	main {
	    max-width:1360px;
	    margin:0 auto;
	    position:relative;
	}

	.heroContainer {
		display: flex;
		flex:0 0 auto;
		position:absolute;
		top:0;
		width:100%;
		z-index:99;
		/* position: relative; */
/*		padding-left: 12px;*/
	}
	
	.heroContainer.index {
	    position:relative;
	}
	
	body:not(.index) main {
	    padding-top: 70px;
	}

	.categorySection .product {
        /* width: calc(25%); */
    }

	.catalogNav .submenu {
		left: 260px;
		/* width:100%; */
	}

	.panelCatalog {
		display: block;
		/* position:absolute; */
		width: 260px;
		flex: 0 0 auto;
		padding-left: 15px;
		background: rgb(var(--primary-color));
		border-radius: 0 0 10px 10px;
	}

	.panelCatalog.pageCatalog {
		padding-bottom: 30px;
/*		border-radius: 10px;*/
	}

	.panelCatalog.dropdown .catalogNav {
		display: none;
	}

	.panelCatalog.dropdown .title {
		cursor: pointer;
	}

	.panelCatalog.dropdown:hover .catalogNav {
		display: flex;
	}

	.hero {
		width: calc(100% - 260px);
	}

	.breadcrumbs {
		overflow: hidden;
	}

	.breadcrumbs ul {
		padding: 23px 12px 0 12px;
	}

	.breadcrumbs li {
	    font-size: 1.3rem;
	}

	.productCard {
		margin-top: 20px;
	}

		.popular-category .wrapper > div a {
	/*	flex: 1 1 calc((100% / 3) - 20px);*/
		width: calc((100% / 3) - 20px);
		min-height: 160px;
		padding: 20px;
/*		font-size: 1.5rem;*/
		background-size: 80%;
    	background-position: 50% 100%;
		background-repeat: no-repeat;
	}

	.popular-category .wrapper > div a span {
	    max-width: 100%;
	}

	.catalog > .category {
		width: calc(33.3333% - (40px / 3));
	}

	.catalog .sub-items a {
	    font-size: 1.4rem;
	    padding: 4px;
		border-radius: 6px;
		transition: .2s;
	}

	.catalog .sub-items a:hover {
		background: #ddd;
	}

	.newsFeed .item {
		width: calc(33.3333% - 20px);
	}

	.swiper-slide.product {
		transition: .2s;
	}

	.categoryOptions .showFilters {
		display: none;
	}

	.categoryContainer {
		display: flex;
		gap:20px;
	}
	.categoryFilters {
		display: block;
	    position: static;
	    overflow: hidden;
	    width: 280px;
	    padding: 0 0 30px;
	    border-radius: 15px;
	    -webkit-box-shadow: 0px 0px 15px 0px rgba(39, 39, 39, 0.1);
		-moz-box-shadow: 0px 0px 15px 0px rgba(39, 39, 39, 0.1);
		box-shadow: 0px 0px 15px 0px rgba(39, 39, 39, 0.1)
	}


	.categoryFilters + .categorySection {
		width: calc(100% - 300px);
	}

	.filters-header {
		display: none;
	}

	.filters-list {
	    padding: 0;
	}

	.filters-list h5 {
	    font-size: 1.3rem;
	}

	.filter.tags button {
	    padding: 6px 12px;
	    font-size: 1.3rem;
	}

	.filters-list > div + div {
	    border-top: none;
	}

	footer {
		margin-bottom: 0;
	}

	footer nav {
	    flex-direction: row;
	    justify-content: space-between;
	}
	footer nav > * + * {
	    border-top: none;
	}

	footer .subMenu > div {
		display: flex;
	}

	.desktopBR {
		display: block;
	}

	.product-gallery {
	    width: 40%;
	}
	.product-main {
	    width: 28%;
	    order: 3;
	}
	.card-anounce {
	    width: 32%;
	    margin-top: 3px;
	}
	
	.brands-container > div {
        width:calc(16.666% - 16.6666px);
    }
    
    .table-grid {
        display:flex;
        flex-wrap:wrap;
        gap:0 20px;
        margin-bottom:40px;
    }
    
    .table-grid > * {
        width:calc(50% - 10px);
    }
    
    .table-grid .visual-info {
        margin-bottom:0;
    }
    
    .faq {
        display:flex;
        flex-direction:row-reverse;
        gap:60px;
    }
    
    .faq .image {
        width:374px;
    }
    
    .faq .content {
        flex:1;
    }
    
    .actions-container .image {
        flex:0 0 420px;
    }
    
    .checkbox .brand-input .image {
        flex: 0 0 70px;
    }
    
    .checkbox {
        width: calc(33.333% - 2.6666px);
    }
    
    .ms-block-row {
        flex-direction:row;
        flex-wrap:wrap;
    }
    
    .ms-block-row .form-group.form-group-2x {
        width:calc(50% - 10px);
    }
    
    .ms-block-row .form-group {
        width:100%;
    }
    
    .ms-block {
        padding: 15px 20px 25px;
    }
    
    .scrollup {
        bottom: 30px;
    }
    
    .review-container {
        display:flex;
        gap:30px;
        position:relative;
        align-items: flex-start;
    }
    
    .rating-reviews {
        flex: 0 0 360px;
        position:sticky;
        top:70px;
    }
    
    .tabs-lk {
        display:flex;
    }

}

@media (min-width: 1100px) {
	.categorySection .product {
    	/* width: calc(20%); */
	}
	.catalogNav .submenu {
		left: 300px;
	}

	.panelCatalog, .desktopHeader .logo {
		width: 300px;
	}
	.hero, .desktopHeader .header {
		width: calc(100% - 300px);
	}
	.desktopHeader .logo svg {
		width: 285px;
		height: 45px;
	}
	.desktopHeader .phone a {
		font-size: 1.4rem;
	}
	.catalogNav .navCategory {
		font-size: 1.4rem;
	}
	.product-gallery {
        width: 36%;
    }
    .contactus {
        background-size: 55%;
    }
}

@media (min-width: 1200px) {
	.catalogNav {
		/* gap:10px; */
	}
	.catalogNav > a {
		font-size: 1.4rem;
	}
	.newsFeed .item {
		width: calc(25% - 22.5px);
	}
	.contactus {
        background: url(../images/firm/contacts.png) 90% 100% no-repeat;
        background-size: 50%;
    }
    
    .ms-block-row .form-group.form-group-2x {
        width: calc(33.3333% - 13.3333px);
    }
}

@media (min-width: 1280px) {
	.categorySection .product {
    	width: calc(16.6666% - 10px);
	}
}


@media (min-width: 1360px) {
	.catalogNav .submenu {
		left: 350px;
	}

	.panelCatalog, .desktopHeader .logo {
		width: 350px;
	}
	.hero, .desktopHeader .header {
		width: calc(100% - 350px);
	}
	.desktopHeader .logo svg {
		width: 335px;
		height: 53px;
	}
	.desktopHeader .logo {
		padding-bottom: 0;
	}
	.desktopHeader .header > div {
	    gap: 15px;
	}
}






/*.like {
	color: #fff;
}


.panel {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

header svg {
	display: block;
	color: #fff;
}


.logo {
	padding-block: 13px;
	box-shadow: rgba(0, 0, 0, .7) 25px 0px 25px -20px;
}

.header-buttons svg {
	width: 23px;
	height: 23px;
}
.header-buttons, .group {
	display: flex;
}

.group a {
	margin-inline: 5px;
}
.mobile-menu svg {
	color: rgb(var(--accent-color));
	width: 23px;
	height: 23px;
	transform: scale(1.4);
}

.panel .cart {
	position: relative;
}

.panel .cart:after {
	content: "2";
	position: absolute;
	width: 12px;
	height: 12px;
	top: 0;
	right: -4px;
	background: red;
	color: #fff;
	font-size: .8rem;
	line-height: 12px;
	text-align: center;
	border-radius: 50%;
}

@media (min-width: 320px) {

	.wrapper {
		padding-inline: 15px;
	}
}*/