@charset "UTF-8";
@font-face {
  font-family: "Apercu Pro";
  src: local("../fonts/Apercu Pro Thin"), local("ApercuPro-Thin"), url("../fonts/ApercuPro-Thin.woff2") format("woff2"), url("../fonts/ApercuPro-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Apercu Pro";
  src: local("../fonts/Apercu Pro ExtraLight"), local("ApercuPro-ExtraLight"), url("../fonts/ApercuPro-ExtraLight.woff2") format("woff2"), url("../fonts/ApercuPro-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Apercu Pro";
  src: local("../fonts/Apercu Pro Light"), local("ApercuPro-Light"), url("../fonts/ApercuPro-Light.woff2") format("woff2"), url("../fonts/ApercuPro-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Apercu Pro";
  src: local("../fonts/Apercu Pro Regular"), local("ApercuPro-Regular"), url("../fonts/ApercuPro-Regular.woff2") format("woff2"), url("../fonts/ApercuPro-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Apercu Pro";
  src: local("../fonts/Apercu Pro Medium"), local("ApercuPro-Medium"), url("../fonts/ApercuPro-Medium.woff2") format("woff2"), url("../fonts/ApercuPro-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Apercu Pro";
  src: local("../fonts/Apercu Pro Bold"), local("ApercuPro-Bold"), url("../fonts/ApercuPro-Bold.woff2") format("woff2"), url("../fonts/ApercuPro-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Apercu Pro";
  src: local("../fonts/Apercu Pro Black"), local("ApercuPro-Black"), url("../fonts/ApercuPro-Black.woff2") format("woff2"), url("../fonts/ApercuPro-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --primary: #2E2E2E;
  --accent: #EFC609;
  --bg-primary: #2E2E2E;
  --bg-accent: #EFC609;
  --bg-label-popular: #CEE830;
  --bg-light: #FFFFFF;
  --bg-dark: #2E2E2E;
  --bg-gray: #FAFAFA;
/*  --bg-body: #FFFFFF;*/
  --bg-body: #F6F6F6;
  --bg-bullet-defaul: #D9D9D9;
  --text-primary: #2E2E2E;
  --text-light: #FFFFFF;
  --text-dark: #2E2E2E;
  /* capital letters - used in combo with the lhCrop mixin */
  --font-primary-capital-letter: 0.75;
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body {
  font-size: 16px;
  height: 100%;
  min-width: 320px;
}

body {
  color: #2E2E2E;
  line-height: 1;
  font-family: "Apercu Pro";
  font-size: 0.9375rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "Apercu Pro";
  font-size: inherit;
  line-height: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
  max-width: 100%;
}



.topline{
    display: flex;
  text-align:center;
  color:--primary;
  text-transform: uppercase;
  padding-top: 35px;
  animation: text 15s infinite linear;
  padding-left: 100%;
  white-space: nowrap;
}
@keyframes text {
  0%{
    transform: translate(0, 0);
  }
  
  100%{
    transform: translate(-160%, 0);
  }
}


.main-title {
  font-size: 12.2rem;
}

.drop-catalog.active {
  opacity: 1;
  transform: translate(-50%, 0px);
  pointer-events: auto;
  z-index: 4000;
}

.drop-catalog__df {
  display: flex;
  align-items: flex-start;

}

.slider-img {
position: relative;
    display: flex;
    align-items: flex-end;
    margin-bottom: 60px;
    border-radius: 20px;
    aspect-ratio: 16/7;
    overflow: hidden;
}

.slider-img img {
position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

 .slider-img img {
   max-width: 100%;
  }


.drop-catalog__links {
  max-width: 245px;
  width: 100%;
  flex-shrink: 0;
  flex-wrap: wrap;
  padding-top: 20px;
}

.drop-catalog__links li {
  width: 100%;
}

.drop-catalog__links li a {
  display: block;
  padding: 11px;
  transition: .3s;
  font-weight: bold;
  font-size: 14px;
  line-height: 18px;
  color: #242731;
}

.drop-catalog__links li.active a {
  background-color: #fff;
  color: #D78F78;
}

.drop-catalog__content {
  padding-left: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #fff;
  flex-grow: 1;
  /*box-shadow: 0px 11px 14px rgba(0, 0, 0, 0.05);*/
}

.drop-catalog__inner {
  display: flex;
  margin: 0 -15px;
}

.drop-catalog__column {
  padding: 0 15px;
  width: 20%;
}

.drop-catalog__list-wrapper:not(:last-of-type) {
  margin-bottom: 30px;
}

.drop-catalog__list-title {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #242731;
  margin-bottom: 12px;
}

.drop-catalog__list li:not(:last-of-type) {
  margin-bottom: 14px;
}

.drop-catalog__list li a {
  font-weight: bold;
  font-size: 14px;
  line-height: 18px;
  color: #67788B;
}

.drop-catalog__links li.active a.first_title {
  display: none;
}

.bx-filter {
 font-family:'Apercu Pro', sans-serif;

}

.drop-catalog__links li a.first_link {
  display: none;
}


.drop-catalog__links li.active a.first_link {
  display: block;
}



.drop-search__close {
  position: absolute;
  right: 15px;
  top: 95px;
  width: 20px;
  height: 20px;
}


.drop-catalog {
  font-family:'Apercu Pro', sans-serif;
  position: absolute;
  top: 42px;
  width: 140vw;
  /* min-width: 1200px; */
  left: 50%;
  transform: translate(-50%, 20px);
  background-color: #F8F8F8;
  z-index: -500;
  text-transform: none;
  letter-spacing: 0;
  padding-bottom: 30px;
  opacity: 0;
  transition: .3s;
  pointer-events: none;
  overflow: hidden;
}


.drop-catalog__df {
  display: flex;
  align-items: flex-start;
  z-index: 3000;

}

.drop-catalog__links {
  max-width: 360px;
  width: 100%;
  flex-shrink: 0;
  flex-wrap: wrap;
  padding-top: 55px;
  padding-left: 55px;
}



.drop-catalog__links li {
  width: 100%;
  list-style-type: none;
}

.drop-catalog__links li a {
  display: block;
  padding: 11px;
  transition: .3s;
  font-weight: normal;
  font-size: 14px;
  line-height: 18px;
  color: #242731;
}

.drop-catalog__links li.active a {
    color: #000;
    text-decoration: underline;
}

.drop-catalog__content {
  padding-left: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #fff;
  flex-grow: 1;
  /*box-shadow: 0px 11px 14px rgba(0, 0, 0, 0.05);*/
}

.drop-catalog__inner {
  display: flex;
  margin: 0 -15px;
}

.drop-catalog__column {
  padding: 0 15px;
  width: 100%;
}

.drop-catalog__list-wrapper {
    width: 20%;
    float: left;
    min-height: 224px;
  }


.drop-catalog__list-wrapper:not(:last-of-type) {
  margin-bottom: 30px;
    width: 20%;
    float: left;
    min-height: 224px;
    margin-left: 27px;
}


.slick-next {
    display: block;
    border-radius: 29px;
    width: 30px;
    height: 30px;
    background: 0;
    margin: 10px auto;
    float: none !important;
}


.slick-next:before {
  content: "↓";
  color: #000;
  font-size: 15px;
}

.slick-list {
    overflow: hidden;
    max-height: 300px;
    
}

.slick-list .active{
    border: 2px solid #000;
}

.container-fluid {
    width: auto;

}


.drop-catalog__list-title {
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: #242731;
  margin-bottom: 12px;
}

.drop-catalog__list li:not(:last-of-type) {
  margin-bottom: 8px;
  list-style-type: none;
}


.drop-catalog__list li {
  list-style-type: none;
}





.drop-catalog__list li a {
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  color: #67788B;
}


.search-form {
    width: 100%;
}
.search-form input {float: left;
    border: 0;
    width: 100%;
    border: 1px solid #d7d7d7;
    border-radius: 8px;
/*  width: 700px;*/
    height: 55px;
    outline:none;
        padding-left: 15px;
}
.search-form button {height: 45px;
    width: 40px;
    float: left;
    border: 0;
    border-bottom: 1px solid #7d7d7d;
    border-radius: 0;
    display: none;

}

.sidenav {
    height: 100%;
    width: 40px;
    position: fixed;
    z-index: 30001;
    top: 0;
    left: 0;
    background-color: #f9f9f9;
    overflow-x: hidden;
    margin-top: 75px;
    padding-top: 10px;
}

/* The navigation menu links */
.sidenav a {
    
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    width: 140px;
}

.sidenav img {
    
    width: 40px;
}



.breadcrumbs .bx-breadcrumb-item {
    display: inline-block;
    position: relative;
    line-height: 22px;
    font-size: 14px;
}
.breadcrumbs .dropdown_wrapp {
    box-sizing: border-box;
    display: none;
    padding-top: 8px!important;
    top: 18px;
}

.breadcrumbs .dropdown_wrapp, ul.menu .child {
    z-index: 500;
    position: absolute;
    text-transform: none;
    font-size: 11px;
    padding-top: 20px;
}
.breadcrumbs .dropdown>a:first-child {
    margin-top: 0;
}
.breadcrumbs .dropdown>a {
    display: block;
    line-height: 17px;
    margin-top: 7px;
    text-decoration: none;
    text-transform: none;
    white-space: nowrap;
}


.breadcrumbs .dark_link::before {
    content: "• ";
    display: inline-block;
    margin-right: 5px;  // Добавляет небольшой отступ после точки
}

.breadcrumbs .drop:hover .dropdown_wrapp {
    display: block;
}
body .breadcrumbs .dropdown {
    background: var(--bg-body);
    padding: 12px;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    text-align: left;
    /*box-shadow: 0 1px 5px 1px rgba(0,0,0,.12);*/
}

.breadcrumbs .bx-breadcrumb-item.drop{
  /*padding-right: 16px;*/
  position: relative;
}
.breadcrumbs .bx-breadcrumb-item.drop:after{
/*  content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background: url(../img/arrow_open.jpg) center center no-repeat;
    position: absolute;
    right: 0;
    top: 7px;*/
}

.breadcrumbs{
  padding-left: 15px;
}


.catalog__bread_crams__link span, .catalog__bread_crams__link, .breadcrumbs span, .breadcrumbs .dark_link{
  font-size: 14px;
  color: black;
}



.product-item-detail-slider-image img {
 /*   position: absolute;*/
     position: inherit;
   /* top: 50%;
    left: 50%;*/
 /*   top: 1%;
    left: 36%;*/
    display: flex;
    max-width: 100%;
    max-height: 540px;    
    width: auto;
    height: auto;
    /*height: 349px;*/
    outline: 1px solid transparent;
    background-position: center;
    background-repeat: no-repeat;
/*    transition: background-size 450ms ease,width 450ms ease,height 450ms ease,outline 450ms ease;
    transform: translateY(5%) translateX(-29%);*/
        /* top: 0; */
    /* left: 0; */
    transition: none;
    transform: none;
}

.slicer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 5;
    display: flex;
}

.indexGoods__item__imageSlicer {
    display: flex;
    flex-grow: 1;
}

.indexGoods__item__imageDots {
    /*position: absolute;*/
    bottom: 0;
    left: 0;
    width: 100%;
    height: 16px;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
}

.indexGoods__item__imageDot {
    display: inline-block;
    width: 15px;
    height: 4px;
    border: 0;
    border-radius: 2px;
    margin: 0 3px;
    background: #efefef;
}

.indexGoods__item__imageDot.active {
    background: #000;
}

.product-item-detail-slider-controls-block {

    padding-top: 0;
}


.container-fluid__item__is_havs__konfig_custome{
  margin-top: 10px;
}
div.container-fluid__item {
    width: 270px;
    -ms-flex: 0 0 270px;
    flex: 0 0 270px;
    max-width:270px;
    height: 440px; 
    margin: 0 0px;
}
.container_description_company__oh, .container-fluid_description, .owl-mane-item-slider.owl-loaded.owl-drag, .owl-stage-outer{
  /*overflow: visible;*/
    display: flex;
    overflow-x: auto;

}

.container-fluid_description__menu__cotalog {
     overflow-x: visible;
}

.catalog-products__mobile-filter-wrap {
    display: none
}

.container-fluid_description__menu__cotalog{
        justify-content: flex-end;
}

.item_filter_catalog__type__name::after {

 content: "▲";
font-size: 0.6rem;
    margin: 0.156rem;
}

.item_filter_catalog__type__name.active::after {
  content: "▼";
  font-size: 0.6rem;
    margin: 0.156rem;
}

.rating {
    display: flex;
    width: 100%;
}

.rating .bx_item_detail_rating {
    margin: 0;
}






@media(max-width:870px){

.search-form input{
width: 300px;
}


.drop-catalog .container {
    padding-left: 0;
    padding-right: 0;

}

.drop-catalog__list-wrapper:not(:last-of-type) {
    margin-bottom: 30px;
    width: 45%;
    float: left;
    min-height: 224px;
    margin-left: 2px;
    margin-left: 8px;
}


.drop-catalog__links {

    width: 100%;
    flex-shrink: 0;
    flex-wrap: wrap;
    padding-top: 10px;
    padding-left: 0px;


}


.drop-catalog {

    width: 100%;
    margin-left: -8px;

}

.drop-catalog__content {
    padding-left: 20px;
    padding-top: 20px;

}


}














._vertical-trim {
  display: inline-block;
}
._vertical-trim::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((var(--font-primary-capital-letter) - 0.75) * 0.5em);
}


@media (min-width: 47.99875em) {
  ._vertical-trim::before {
    content: "";
    display: block;
    height: 0;
    width: 0;
    margin-top: calc((var(--font-primary-capital-letter) - 1) * 0.5em);
  }
}

._visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.outlines-on > * {
  outline: 2px solid deeppink;
}

.outlines-on > * > * {
  outline: 2px dashed lime;
  outline-offset: -2px;
}

.outlines-on > * > * > * {
  outline: 2px dotted dodgerblue;
  outline-offset: -4px;
}

.wrapper, #wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: var(--bg-body);
}
@supports (overflow: clip) {
  .wrapper, #wrapper {
    overflow: clip;
  }
}
.wrapper > main,
#wrapper > main {
  flex: 1 1 auto;
}
.wrapper > *,
#wrapper > * {
  min-width: 0;
}


[class*=__container] {
  max-width: 120rem;
  margin: 0 auto;
}
@media (min-width: 29.99875em) {
  [class*=__container] {
    padding: 0 1.25rem;
  }
}
@media (min-width: 47.99875em) {
  [class*=__container] {
    padding: 0 1.6666666667rem;
  }
}
@media (min-width: 79.99875em) {
  [class*=__container] {
    padding: 0 2.5rem;
  }
}

h1.title {
  font-size: 3.125rem;
  line-height: 100%;
  font-weight: 700;
  color: var(--text-primary);
  text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
}

h2.title {
  font-size: 2.25rem;
  line-height: 100%;
  font-weight: 700;
  color: var(--text-primary);
  text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
}

h3.title {
  font-size: 2.375rem;
  line-height: 100%;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2.5rem;
}

ul[data-style=marker] {
  display: grid;
  gap: 0.75rem;
}
ul[data-style=marker] li {
  display: flex;
  align-items: start;
  list-style: none;
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  letter-spacing: 0.34px;
}
ul[data-style=marker] li:before {
  display: inline-block;
  content: "";
  height: 1.5rem;
  width: 1.5rem;
  min-width: 1.5rem;
  border-radius: 100%;
  background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="24" rx="12" fill="%23EFC609"/><path d="M22 4L12 14.01L9 11.01" stroke="%232E2E2E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  margin-right: 1.25rem;
}

.description {
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  /* 25.5px */
  letter-spacing: 0.34px;
  text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.2);
  color: var(--text-primary);
}
.description p:not(:last-child) {
  margin-bottom: 1.875rem;
}
.description ul {
  padding-inline-start: 20px;
}
.description ul li {
  list-style: none;
}
.description ul li:before {
  display: inline-block;
  content: "";
  position: relative;
  left: -10px;
  top: -3px;
  height: 3px;
  width: 3px;
  background-color: currentColor;
  border-radius: 100%;
}

.button {
  display: inline-block;
  font-size: 1rem;
  line-height: 0.875rem;
  font-weight: 400;
  text-decoration: none;
  color: var(--text-primary);
  background-color: var(--bg-light);
  border: 0;
  border-radius: 0.5rem;
  padding: 1.1875rem 1.25rem;
  cursor: pointer;
  transition: all 0.2s ease-in;
}
.button--accent {
  color: var(--text-primary);
  background-color: var(--bg-accent);
  border-color: var(--bg-accent);
}


.form-control {
  float: left;
    border: 0;
    width: 100%;
    border: 1px solid #d7d7d7;
    border-radius: 8px;
    /* width: 700px; */
    height: 55px;
    outline: none;
    padding-left: 15px;
}


.basket-checkout-block-total-price {
    padding-left: 10px;
    text-align: right;
}


.basket-checkout-section-inner {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.form-control-feedback {
  display: none;
}

.button--accent:hover {
  color: var(--bg-light);
  background-color: var(--bg-dark);
  border-color: var(--bg-dark);
}
.button--outline {
  border: 1px solid currentColor;
  background-color: transparent;
}
.button--dark {
  color: var(--text-light);
  background-color: var(--bg-dark);
  border-color: var(--bg-dark);
}
.button--counter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1.08125rem 1.25rem;
}

#customOrderForm input {

    float: left;
    border: 1px solid #d7d7d7;
    border-radius: 8px;
    height: 50px;
    outline: none;
    margin: 0 1rem;
    padding: 0.3rem;
  }

.button--icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}
.button--catalog {
  white-space: nowrap;
  padding: 1rem;
}
.button--catalog > *:not(.icon) {
  display: none;
}
.button--card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  line-height: 140%;
  border-radius: 0.625rem;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
  padding: 0.75rem 1.25rem;
}




.button--card sup {
  display: inline-block;
  font-size: 0.75rem;
/*  margin-top: -0.375rem;*/
}
.button--card .button__img {
  margin: -0.375rem 0 -0.375rem -0.875rem;
}
.button--card .button__img img {
  width: 2.375rem;
  height: 2.375rem;
  min-width: 2.375rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.button--card .button__img + span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.button--card-full {
  gap: 0.9375rem;
  overflow: hidden;
  border: 1px solid rgba(46, 46, 46, 0.05);
  padding: 0;
  margin: 0 auto;
}
.button--card-full .button__img {
  border-right: 1px solid rgba(46, 46, 46, 0.05);
  box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.05) inset;
  height: 100%;
  padding: 0.3125rem 0.9375rem;
  margin: 0;
}
.button--card-full .button__price {
  padding: 1.0625rem 0.9375rem;
  border-left: 1px solid rgba(46, 46, 46, 0.05);
}
.button--card-full .button__price span {
  font-size: 1rem;
  line-height: 0.75rem;
  font-weight: 700;
}
.button--card-full .button__price sup {
  position: relative;
  top: -3px;
  font-size: 0.375rem;
  text-transform: uppercase;
}
.button--card-complete {
  gap: 0.625rem;
  overflow: hidden;
  border: 1px solid rgba(46, 46, 46, 0.05);
  padding: 0;
}
.button--card-complete .button__column {
  display: grid;
  justify-items: start;
  padding: 0.625rem 1.875rem 0.625rem 0;
}
.button--card-complete .button__img {
  padding: 0.3125rem 0.4375rem 0.3125rem 0.9375rem;
  margin: 0;
}
.button--card-complete .button__img img {
  width: 3.75rem;
  height: 3.75rem;
}
.button--card-complete .button__price {
  border-top: 1px solid var(--text-primary);
  padding-top: 0.375rem;
  margin-top: 0.5rem;
}
.button--card-complete .button__price span {
  font-size: 0.875rem;
  line-height: 0.75rem;
  font-weight: 700;
}
.button--card-complete .button__price sup {
  font-size: 0.375rem;
  font-weight: 900;
  text-transform: uppercase;
}
.button--card:hover {
  color: var(--text-light);
  background-color: var(--bg-dark);

}

.button--card:hover .counter--dark {
  color: var(--text-dark);
  background-color: var(--bg-light);
}
.button--detail {
  font-size: 0.875rem;
  font-weight: 700;
  text-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1);
  border: 0;
  border-radius: 0;
  padding: 0.1875rem 0;
}
.button--more {
  font-weight: 700;
  border-width: 2px;
  padding: 0.875rem 0.9375rem;
}

.input {
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 130%;
  border: 0;
  border-radius: 0.5rem;
  width: 100%;
  background-color: var(--bg-light);
  padding: 1.0625rem 1.375rem;
}
.input::-moz-placeholder {
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 130%;
}
.input::placeholder {
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 130%;
}

.counter {
  display: inline-block;
  font-size: 1rem;
  line-height: 0.9375rem;
  font-weight: 500;
  white-space: nowrap;
  color: var(--text-primary);
  background-color: transparent;
  border-radius: 0.375rem;
  padding: 0.375rem 0.625rem 0.25rem;
  transition: all 0.2s ease-in;
}
.counter--light {
  color: var(--text-dark);
  background-color: var(--bg-light);
}
.counter--dark {
  color: var(--text-light);
  background-color: var(--bg-dark);
}
.counter--small {
  font-size: 0.75rem;
  line-height: 1.125rem;
}

.price {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  text-align: right;
  color: var(--text-primary);
  text-transform: uppercase;
}
.price__wrapper {
  display: grid;
  gap: 0.25rem;
}
.price__base {
  font-size: 2.25rem;
  line-height: 1;
}
.price__base sup {
  position: relative;
  top: -0.375rem;
}
.price__currency {
  font-size: 0.8125rem;
}
.price sup {
  display: inline-block;
  font-size: 0.5rem;
  line-height: 120%;
  margin-left: 2px;
}
.price--detail sup, .price--basket sup {
  font-size: 0.75rem;
}
.price--basket {
  padding: 0 0.625rem;
}

.icon {
  display: inline-flex;
}
.icon--pdf {
  width: 2.3125rem;
  height: 2.8125rem;
  min-width: 2.3125rem;
  background-image: url("../images/icons/PDF_file.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.card-product {
  max-width: 41.25rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(46, 46, 46, 0.05);
  background: var(--bg-light);
  height: 100%;
  box-shadow: 0.625rem 0.625rem 0.625rem 1rem rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
}


.card-product__content {

      display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}


/*  .product-detail__title {
  padding: 1rem;
}
.product-detail__title .title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.3em;
  height: 2.3em;
  font-size: 3.125rem;
}

@media (min-width: 47.99875em) {
  h1.title {
    font-size: 7.625rem !important;
  }
  h2.title {
    font-size: 4.5rem;
  }
}*/

.product-item-container {  
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.related-products__item {

   transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.related-products__item:hover {
  /*  -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);*/
    border: 0px solid rgba(65, 65, 65, 1);
/*    background-color: rgba(235, 245, 255, 1);*/
    border-radius: 0;
/*    box-shadow: 0px 0px 20px 1px rgba(0,0,0,0.05);*/
    z-index: 9999;
}




.item_filter_catalog__type__name {
    background-color: #E9E9E9;
    padding: 10px 15px;
    cursor: pointer;
    position: relative;
}

/* Стили для кнопки фильтра при наведении */
.item_filter_catalog__type__name:hover {
    background-color: #ffffff;
}

/* Стили для стрелочки (значка) */
/*.item_filter_catalog__type__name:after {
    content: "▼";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}*/

/* Список свойств скрыт по умолчанию */
.bx-filter-block {
    display: none;
}

/* Показываем список свойств при наведении на кнопку */
/*.item_filter_catalog__type__name:hover + .bx-filter-block {
    display: block;
}*/

.smartfilter {
  display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem;
}

.bx-filter .bx-filter-parameters-box-title {

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    line-height: 140%;
    border-radius: 0.625rem;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
    padding: 0.75rem 1.25rem;
    min-width: 10rem;
    justify-content: space-between;
}

.bx-filter .bx-filter-parameters-box-title.active {


  /*display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    line-height: 140%;*/
    border-radius: 0.625rem 0.625rem 0 0 ;
    box-shadow: none;
    padding: 0.75rem 1.25rem;
    background: rgb(255, 255, 255);

    
}

.item_filter_catalog__type__raddio  {
  padding: 0.75rem 1rem;
}





.catalog-products__filter{

  margin-top: 1rem;
}

.related-products__tags {
  margin-bottom: 3.75rem;
}

.bx-filter-block {

  display: block;
    position: absolute;
    background: rgb(255, 255, 255);
    z-index: 1;
    width: 100%;
    border-radius: 0 0 0.625rem 0.625rem;
}




.card-product__gallery {
  width: 100%;
  border-radius: 8px 8px 0px 0px;
/*  background: var(--bg-gray);*/
}
.card-product__title, .card-product__description, .card-product__price {
  border-top: 1px solid rgba(46, 46, 46, 0.05);
  padding: 1.875rem 1.875rem;
}
.card-product__title {
  font-size: 1.25rem;
  line-height: 100%;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
/*  min-height: 8.5rem;*/
}
.card-product__description {
  font-size: 0.9375rem;
  line-height: 140%;
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: 0.3px;
  text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
  padding: 0.9375rem 1.875rem;
}
.card-product__description > * {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  /* number of lines to show */
  line-clamp: 4;
  -webkit-box-orient: vertical;
}
.card-product__price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-height: 6.875rem;
}

.card-product__price a:hover{
 color: #999;
 text-decoration: none;
}

.slider-card__slide_shadow{
    width: 100%;
    height: 100%;
    box-shadow: inset 0px 0px 35px 35px var(--bg-body);
    position: absolute;
}




/* Скрываем реальный чекбокс */
.item_filter_catalog__type__raddio__item__label__input {
    display: none;
}

/* Скрываем активный SVG по умолчанию */
#comp-k8zqekqw1checkbox0checkmarkActive {
    display: none;
}

/* Стилизация текста и SVG для красоты */
.item_filter_catalog__type__raddio__item__label {
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: space-between;

}

.item_filter_catalog__type__raddio__item__label__img {
    margin-left: 10px; /* Отступ между текстом и SVG */
}

/* При активации чекбокса */
.item_filter_catalog__type__raddio__item__label__input:checked + .item_filter_catalog__type__raddio__item__label__span + #comp-k8zqekqw1checkbox0checkmarkInactive {
    display: none; /* Скрываем неактивный SVG */
}

.item_filter_catalog__type__raddio__item__label__input:checked + .item_filter_catalog__type__raddio__item__label__span + #comp-k8zqekqw1checkbox0checkmarkInactive + #comp-k8zqekqw1checkbox0checkmarkActive {
    display: block; /* Показываем активный SVG */
}

.bx-filter-block__niceScroll {
  z-index: 2;
}

.item_filter_catalog__type__raddio__item__label__text {
  overflow: hidden;
}


.catalog_filter_button__link {
  display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    line-height: 140%;
    border-radius: 0.625rem;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
    padding: 0.75rem 1.25rem;
    min-width: 10rem;
    justify-content: space-between;
    background-color: #C1F598;
    cursor: pointer;
    position: relative;
}

.catalog_filter_button__link:hover {
    background-color: #FFFFFF;

}





.btn.btn-default.btn-buy.btn-sm {



    font-size: 1rem;
    line-height: 0.875rem;
    font-weight: 400;
    text-decoration: none;
    color: var(--text-primary);
    background-color: var(--bg-light);
    border: 0;
    border-radius: 0.5rem;
   
    cursor: pointer;
    transition: all 0.2s ease-in;

  display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.8125rem 1.25rem;
        color: var(--text-primary);
    background-color: var(--bg-accent);
    border-color: var(--bg-accent);

}










.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1.25rem 0;
}
.breadcrumbs__item {
  padding: 0.25rem;
}
.breadcrumbs__name {
  font-size: 0.9375rem;
  line-height: 130%;
  font-weight: 400;
  text-align: center;
  color: var(--text-primary);
}
.breadcrumbs__separator {
  display: flex;
}

.slider-detail {
  overflow: hidden;
  max-width: 100%;
  min-width: 0;
  height: 100%;
  width: 100%;
  max-height: 41.875rem;
}
.slider-detail__slide[class*=slide] {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
}
.slider-detail__slide[class*=slide] img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 18.75rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}


.slider-detail__slide[class*=slide] img::after {
   box-shadow: inset 3px 3px 10px 0 #000000;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}



.slider-thumbs {
  overflow: hidden;
  max-width: 100%;
  min-width: 0;
  padding: 2.5rem 0.9375rem;
}
.slider-thumbs__slide[class*=slide] {
  width: 100%;
  height: 4.6875rem;
  border-radius: 0.5rem;
  border: 0.0625rem solid transparent;
  outline: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease-in;
}
.slider-thumbs__slide[class*=slide]:hover, .slider-thumbs__slide[class*=slide][class*=thumb-active] {
  border-color: rgba(46, 46, 46, 0.1);
  outline-color: var(--bg-primary);
  background-color: var(--bg-light);
}
.slider-thumbs__slide[class*=slide] img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  border-radius: 0.5rem;
}

.slider-card {
  position: relative;
  overflow: hidden;
  height: 22.875rem;
  min-width: 0;
}

.slider-main {
  position: relative;
  overflow: hidden;
  height: clamp(10px, 4.873239px + 58.2253521127vw, 1080px);
  min-width: 0;
}


.slider-card__slide[class*=slide] {
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-main__slide[class*=slide] {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
}


.slider-card__pagination {
  display: flex;
  align-items: center;
}
.slider-card__pagination[class*=bullets][class*=bullets] {
  position: absolute;
  right: 1.875rem;
  bottom: 2.1875rem;
  left: auto;
  width: auto;
  z-index: 1;
}
.slider-card__pagination [class*=bullet] {
  --swiper-pagination-bullet-width: 4px;
  --swiper-pagination-bullet-height: 4px;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 3px;
  --swiper-pagination-bullet-inactive-color: var(--bg-bullet-defaul);
}
.slider-card__pagination [class*=bullet][class*=active] {
  --swiper-pagination-bullet-width: 6px;
  --swiper-pagination-bullet-height: 6px;
  --swiper-pagination-color: var(--bg-primary);
}



.slider-main__pagination {
  display: flex;
  align-items: center;
}
.slider-main__pagination[class*=bullets][class*=bullets] {
  position: absolute;
  right: 1.875rem;
  bottom: 0.1875rem;
  left: auto;
  width: auto;
  z-index: 1;
}
.slider-main__pagination [class*=bullet] {
  --swiper-pagination-bullet-width: 4px;
  --swiper-pagination-bullet-height: 4px;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 3px;
  --swiper-pagination-bullet-inactive-color: var(--bg-bullet-defaul);
}
.slider-main__pagination [class*=bullet][class*=active] {
  --swiper-pagination-bullet-width: 6px;
  --swiper-pagination-bullet-height: 6px;
  --swiper-pagination-color: var(--bg-primary);
}


.slider-popular__pagination {
  display: flex;
  align-items: center;
}
.slider-popular__pagination[class*=bullets][class*=bullets] {
  z-index: 1;
}
.slider-popular__pagination [class*=bullet] {
  --swiper-pagination-bullet-width: 4px;
  --swiper-pagination-bullet-height: 4px;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 3px;
  --swiper-pagination-bullet-inactive-color: var(--bg-bullet-defaul);
}
.slider-popular__pagination .swiper-pagination-bullet-active {
    border-radius: 50%;
    border: 2px solid transparent;
    border-color: var(--bd-primary);
	background: none;
}




.exchange-currency {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0 0.625rem;
}
.exchange-currency__unit, .exchange-currency__equally, .exchange-currency__cost {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
}
.exchange-currency__unit sup, .exchange-currency__equally sup, .exchange-currency__cost sup {
  position: relative;
  top: 0.125rem;
  display: inline-block;
  font-size: 0.5rem;
  font-weight: 900;
  margin-left: 0.125rem;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 0.625rem;
  padding: 0.3125rem 0;
}
.pagination__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.875rem;
  height: 2.875rem;
}
.pagination__arrow._disabled {
  display: none;
}
.pagination__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
}
.pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 140%;
  font-weight: 500;
  color: var(--text-primary);
  width: 2.875rem;
  height: 2.875rem;
  cursor: pointer;
}



.slider-main__pagination .swiper-pagination-bullet {
      display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 140%;
  font-weight: 500;
  color: var(--text-primary);
  width: 2.875rem;
  height: 2.875rem;
  background: transparent;

  }


.slider-main__pagination .swiper-pagination-bullet-active {
 
    border-radius: 50%;
    border: 2px solid transparent;
  border-color: var(--bd-primary);

}



.pagination--round .pagination__arrow._disabled {
  display: inherit;
  opacity: 0.4;
}
.pagination--round .pagination__item {
  border-radius: 50%;
  border: 2px solid transparent;
}
.pagination--round .pagination__item._active {
  border-color: var(--bd-primary);
}

.label {
  padding: 0.75rem 0.5rem;
  border-radius: 0.5rem;
}
.label--popular {
  background-color: var(--bg-label-popular);
}

.table-props {
  overflow: auto;
  max-width: 100%;
}
.table-props table {
  border-spacing: 0;
  border-collapse: separate;
  border-radius: 10px;
  border: 1px solid var(--bg-primary);
}
.table-props table th {
  font-size: 0.625rem;
  line-height: 100%;
  font-weight: 400;
  color: var(--text-primary);
  text-transform: uppercase;
  text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid var(--bg-primary);
  padding: 0.875rem 0;
}
.table-props table th:not(:last-child) {
  border-right: 1px solid var(--bg-primary);
}
.table-props table td {
  font-size: 0.875rem;
  line-height: 100%;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  text-transform: uppercase;
  text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
  padding: 1.125rem 1.875rem;
}
.table-props table td:not(:last-child) {
  border-right: 1px solid var(--bg-primary);
}

.dot-leader {
  align-items: flex-end;
  display: flex;
  justify-content: center;
}

.dot-leader__dots {
  position: relative;
  top: -0.25rem;
  background-image: url('data:image/svg+xml,<svg width="8" height="2" viewBox="0 0 8 2" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5 1C5 1.55228 4.55228 2 4 2C3.44772 2 3 1.55228 3 1C3 0.447715 3.44772 0 4 0C4.55228 0 5 0.447715 5 1Z" fill="%232E2E2E" fill-opacity="0.5"/></svg>');
  background-repeat: repeat-x;
  height: 0.125rem;
  flex: 1;
  margin: 0 0.625rem;
}

.property-list {
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 300;
  line-height: 145%;
  letter-spacing: 0.34px;
  text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.2);
  color: var(--text-primary);
}
.property-list__line {
  padding: 0.1875rem 0;
}
.property-list__name, .property-list__value {
  max-width: 40%;
}
.property-list__value {
  text-align: right;
  text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
}

.files-list {
  display: grid;
  gap: 0.625rem;
}
.files-list__item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.files-list__name {
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 300;
  line-height: 145%;
  letter-spacing: 0.34px;
}

.logo {
  height: 1.6875rem;
  width: 100%;
  max-width: 14.375rem;
}

.logo-description {
  font-size: 0.9375rem;
  line-height: 130%;
  color: var(--text-primary);
}

.section-breadcrumbs {
  display: none;
}

.section-related {
  padding: 2.5rem 0 6.25rem;
}

.section-categories,
.section-viewed {
  padding: 1.25rem 0;
}

.section-popular {
  padding: 1.25rem 0;
}

.section-similar,
.section-categories {
  background-color: var(--bg-light);
}

.product-detail {
  display: flex;
  flex-direction: column-reverse;
  padding: 0 0.5rem;
}
.product-detail__gallery {
  min-width: 18.75rem;
  max-width: 100%;
  margin: 0 auto;
}
.product-detail__slider {
  position: sticky;
  top: 0;
}
.product-detail__content {
  display: grid;
  place-content: start;
  gap: 1.25rem;
  padding: 1.25rem 0 5rem;
}
.product-detail__title, .product-detail__selling, .product-detail__preview-text, .product-detail__table-props, .product-detail__tags, .product-detail__advantages, .product-detail__description, .product-detail__properties, .product-detail__set, .product-detail__files {
  padding: 0.625rem 0;
}
.product-detail__title, .product-detail__selling {
  text-align: center;
}





th {
    text-align: center;
}

.product-detail__selling {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
.product-detail__selling-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.375rem;
}
.product-detail__preview-text {
  text-align: center;
  text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
}
.product-detail__table-props {
  margin: 0 auto;
}

.related-products__title {
  text-align: center;
  padding: 1.25rem;
  margin-bottom: 3.75rem;
}
.related-products__items {
  --min: calc(340px - 4px);
  --gap: 4px;
  display: grid;
  grid-gap: var(--gap);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--min)), 1fr));
}
.related-products__item--heading {
  grid-column: 1/2;
  padding: 0 0.625rem 2.5rem;
}
.related-products__navigation {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.625rem;
  padding-top: 1.25rem;
}
.related-products__show-more, .related-products__pagination {
  display: flex;
  justify-content: center;
  flex: 1 1 50%;
  padding-top: 1.25rem;
}
.related-products__pagination {
  max-width: 100%;
  overflow: auto;
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem;
}

.similar-products__title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 6.25rem 1.25rem;
}
.similar-products__items {
  --min: calc(340px - 4px);
  --gap: 4px;
  display: grid;
  grid-gap: var(--gap);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--min)), 1fr));
}
.similar-products__item--heading {
  grid-column: 1/2;
  padding: 0 0.625rem;
}
.similar-products__navigation {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.25rem 0;
}

.categories-nearby__heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
}
.categories-nearby__title {
  margin-bottom: 1.5rem;
}
.categories-nearby__title, .categories-nearby__tags {
  flex: 1 1 100%;
}

.viewed-previously__heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
}
.viewed-previously__title {
  margin-bottom: 1.5rem;
}
.viewed-previously__title, .viewed-previously__tags {
  flex: 1 1 100%;
}

.popular-products__heading {
  display: grid;
  align-items: start;
  place-content: start;
  gap: 0.625rem;
  background-image: url("../images/icons/popular-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.popular-products__tags {
  display: grid;
  gap: 0.625rem;
}
.popular-products__heading {
  text-align: center;
  padding: 1.25rem 0 6.25rem;
}
.popular-products__heading, .popular-products__content {
  flex: 1 1 100%;
  max-width: 100%;
}
.popular-products__description {
  font-size: 1rem;
  line-height: 140%;
  color: var(--text-primary);
  padding: 0 1.875rem;
}
.popular-products__show-more {
  margin: 0 auto;
}
.popular-products__items {
  --min: calc(340px - 4px);
  --gap: 4px;
  margin-bottom: 0.625rem;
  display: grid;
  grid-gap: var(--gap);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--min)), 1fr));
}
.popular-products__navigation {
  padding-top: 1.25rem;
}
.popular-products__pagination {
  overflow: auto;
}

.item-contact {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.375rem 0.3125rem;
}
.item-contact__icon {
  width: 1.5rem;
  min-width: 1.5rem;
}

.header {
  padding-top: 1.25rem;
}
.header__top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1.25rem 0;
}
@media (min-width: 47.99875em) {
  .header__top {
    justify-content: start;
    gap: 2.5rem;
  }
}
.header__bottom {
  display: none;
}
@media (min-width: 47.99875em) {
  .header__bottom {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1.25rem 0;
  }
}
.header__description {
  display: none;

}

.slider_description {
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.68rem;
}

@media (min-width: 47.99875em) {
  .header__description {
    display: inherit;
  }
}
@media (min-width: 47.99875em) {
  .header__burger {
    display: none;
  }
}
.header__search {
  width: 100%;
}
.header__exchange-currency, .header__basket {
  white-space: nowrap;
}
.header__basket {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.footer {
  background-color: var(--bg-light);
  padding: 1.25rem 0;
}
@media (min-width: 47.99875em) {
  .footer {
    padding: 6.25rem 0;
  }
}
.footer__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.footer__wrapper > * {
  flex: 1 1 25rem;
}
.footer__block {
  padding: 0 0.25rem;
}
.footer__block--grid {
  display: grid;
  align-items: start;
  padding: 2.0625rem 1.25rem;
}
@media (min-width: 47.99875em) {
  .footer__block--grid {
    padding: 0.9375rem;
  }
}
.footer__list {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.footer__item {
  padding: 0.9375rem;
}
.footer__item:last-child {
  margin: auto 0 0 0;
}
.footer__massage-warning {
  line-height: 145%;
}
.footer__copyright {
  margin: 1.875rem 0 0 0;
}
@media (min-width: 61.99875em) {
  .footer__copyright {
    margin: auto 0 0 0;
  }
}/*# sourceMappingURL=main.css.map */

.price-old {
	background-color: #e4c241;
    width: 85px;
    height: 50px;
    padding: 10px 5px;
	border-radius: 0.5rem;
}
.price-discount {
	width: 100%;
    display: block;
    background: black;
    color: white;
    border-radius: 5px;
    text-align: center;
	margin-top: 3px;
}