@charset "UTF-8";
*, *::before, *::after {
  margin: 0;
  padding: 0;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.catalog__block:hover .image .fast_view > div {
  white-space:nowrap;
}

.footer__soc a, .footer__soc a svg{
  width: 25px;
  height: 25px;
}

body {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-family: "Manrope", sans-serif;
}

.main {
  min-height: 33vh;
  padding-top: 20px;
}

:focus {
  outline: none;
}

button {
  cursor: pointer;
}

a {
  padding: 0;
  margin: 0;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  padding: 0;
  margin: 0;
}

h1 {
  font-weight: 800;
  font-size: 29px;
  line-height: 40px;
  color: #222222;
  /* margin-top: 20px; */
  margin-bottom: 30px;
}

h3 {
  font-weight: 800;
  font-size: 25px;
  line-height: 34px;
  color: #222222;
}
h3 span {
  color: #F41F1F;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.container {
  max-width: 1230px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.crumbs {
  margin-bottom: 20px;
}
.crumbs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.crumbs li {
  white-space: nowrap;
  margin-right: 6px;
}
.crumbs a {
  font-weight: 600;
  font-size: 11px;
  line-height: 15px;
  color: #F41F1F;
  padding: 3px 6px 4px 7px;
  border: 1px solid rgba(34, 34, 34, 0.1);
  border-radius: 4px;
}
.crumbs p {
  font-weight: 500;
  font-size: 11px;
  line-height: 15px;
  color: #B5B5B5;
  padding-left: 4px;
}

.header__top {
  background: #FFFFFF;
}

.header__city {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.header__city a{
  text-decoration: none;
}
.header__city svg {
  cursor: pointer;
  margin-right: 10px;
}
.header__city .city {
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  color: #F41F1F;
  border: 0;
  background: transparent;
  position: relative;
}
.header__city option {
  color: #222222;
}

.header__city .arrow {
  cursor: pointer;
  position: absolute;
  right: -15px;
  top: 5px;
  z-index: 1;
  width: 10px;
  height: 10px;
  background: #FFFFFF url(../img/down.svg) no-repeat center;
}

.header__wrap {
  min-height: 120px;
}

.header__bottom {
  width: 100%;
  padding: 27px 0;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 160px rgba(0, 0, 0, 0.05), 0px 1px 1px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 160px rgba(0, 0, 0, 0.05), 0px 1px 1px rgba(0, 0, 0, 0.05);
  z-index: 99;
}

.header.fixed .header__bottom {
  position: fixed;
  top: 0;
  left: 0;
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 148px;
  height: 66px;
}
.header__logo img {
  width: 100%;
  /* padding: 20px; */
}

.header__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;  
  justify-content: flex-end;
}

.header__navbar {
  margin-left: auto;
  padding-right: 10px;
  position: relative;
}
.header__navbar ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__navbar a {
  display: block;
  padding: 9px 20px 12px 20px;
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  color: #222222;
  position: relative;
  overflow: hidden;
}
.header__navbar a::after {
  content: "";
  width: 100%;
  height: 5px;
  position: absolute;
  bottom: -6px;
  left: 0;
  background: #F41F1F;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header__navbar a:hover::after {
  bottom: 0;
}
.header__navbar .active::after {
  bottom: 0;
}

.header__navbar::after {
  content: "";
  width: 1px;
  height: 19px;
  position: absolute;
  right: 0;
  top: 9px;
  background: #D9D9D9;
}

.header__soc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 30px;
}
.header__soc a {
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 20px;
}
.header__soc a path {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.header__soc a:last-child {
  margin-right: 0;
}

.footer__soc a.wa:hover path,
.header__soc a.wa:hover path {
  fill: #3edf5b;
}
.footer__soc a.tg:hover path,
.header__soc a.tg:hover path {
  fill: #27a3e2;
}
.footer__soc a.vib:hover path,
.header__soc a.vib:hover path {
  fill: #62569d;
}

.header__catalog {
  margin-right: 30px;
  padding: 14px 23px 14px 12px;
  background: #F41F1F;
  border-radius: 8px;
  border: 0;
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-left: auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header__catalog svg:nth-child(1) {
  margin-right: 33px;
}
.header__catalog svg:nth-child(2) {
  position: absolute;
  top: 16px;
  left: 46px;
}

.header__catalog:hover {
  background: #ff4242;
}

.header__menu {
  position: absolute;
  top: 55px;
  left: 150px;
  z-index: 9;
  width: 542px;
  height: 0;
  overflow: hidden;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.05), 0px 1px 1px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.05), 0px 1px 1px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 999;
}
.header__menu .wrap {
  padding: 30px 0;
}
.header__menu a {
  display: block;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  padding: 4px 10px;
  color: #696969;
}
.header__menu ul ul {
  display: none;
  position: absolute;
  top: 30px;
  left: 226px;
  z-index: 2;
  width: 290px;
  height: 440px;
  overflow-y: auto;
  padding: 0 20px;
  padding-left: 44px;
}
.header__menu li {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.header__menu li:hover {
  background: #F7F7F7;
}
.header__menu ul::-webkit-scrollbar {
  background-color: #fff;
  width: 4px;
}
.header__menu ul::-webkit-scrollbar-track {
  background-color: #fff;
}
.header__menu ul::-webkit-scrollbar-thumb {
  background-color: #babac0;
}
.header__menu ul::-webkit-scrollbar-button {
  display: none;
}

.header__menu:hover {
  height: 500px;
}

.header__menu .wrap > ul {
  width: 250px;
  overflow-y: auto;
  height: 440px;
  border-right: 1px solid #ECECEC;
  padding: 0 20px;
}
.header__menu .wrap > ul li:hover ul {
  display: block;
}

.header__menu .wrap > ul > li:hover > a {
  font-weight: 700;
  color: #222222;
}

.header__catalog:hover + .header__menu {
  height: 500px;
}

.header__search {
  padding-left: 20px;
  position: relative;
  overflow: hidden;
}
.header__search button{
  padding: 0px;
}
.header__search .search {
  
  border: 1px solid #d7d9d8;
  margin-right: 20px;
  width: 370px;
  height: 50px;
  padding: 0 26px;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #333;
  background: transparent;
  border-radius: 8px;
}
.header__search .search::-webkit-input-placeholder {
  color: #B5B5B5;
}
.header__search .search::-moz-placeholder {
  color: #B5B5B5;
}
.header__search .search:-ms-input-placeholder {
  color: #B5B5B5;
}
.header__search .search::-ms-input-placeholder {
  color: #B5B5B5;
}
.header__search .search::placeholder {
  color: #B5B5B5;
}
.header__search .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 0;
  background: transparent;
}

.header__search::before {
  content: "";
  width: 1px;
  height: 32px;
  background: #D9D9D9;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.header__phone a {
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #F41F1F;
}
.header__phone .tel {
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  color: #222222;
}
.header__phone .tel span {
  font-weight: 700;
}

.header__basket {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-left: 30px;
  padding-left: 30px;
  position: relative;
  font-weight: 600;
  font-size: 15px;
  line-height: 25px;
  color: #222222;
}
.header__basket span {
  display: block;
  font-weight: 400;
  color: #B5B5B5;
  margin-top: -2px;
}
.header__basket svg {
  margin-right: 10px;
  display: block;
}
.header__basket .wrap-text {
  position: relative;
  top: 5px;
}

.header__basket::before {
  content: "";
  width: 1px;
  height: 32px;
  background: #D9D9D9;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.banner .container {
  padding-top: 30px;
  padding-bottom: 40px;
}

.banner__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.banner__slider {
  max-width: 895px;
  max-height: 400px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.banner__slider .slick-dots {
  bottom: 45px;
}
.banner__slider .slick-dots li {
  width: 20px;
  height: 20px;
  margin: 0 10px;
  position: relative;
}
.banner__slider .slick-dots li::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 160px rgba(0, 0, 0, 0.05), 0px 1px 1px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 160px rgba(0, 0, 0, 0.05), 0px 1px 1px rgba(0, 0, 0, 0.05);
}
.banner__slider .slick-dots li.slick-active::after {
  background: #F41F1F;
}
.banner__slider .slick-dots button {
  display: none;
}
.banner__slider .slick-prev, .banner__slider .slick-next {
  width: 50px;
  height: 50px;
  top: auto;
  bottom: 6px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 160px rgba(0, 0, 0, 0.05), 0px 1px 1px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 160px rgba(0, 0, 0, 0.05), 0px 1px 1px rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  z-index: 9;
}
.banner__slider .slick-prev::before, .banner__slider .slick-next::before {
  display: none;
}
.banner__slider .slick-next {
  right: 30px;
}
.banner__slider .slick-prev {
  left: auto;
  right: 90px;
}
.banner__slider .slick-prev::after, .banner__slider .slick-next::after {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid #222222;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.banner__slider .slick-prev::after {
  border-right: 0;
  border-top: 0;
  left: 55%;
}
.banner__slider .slick-next::after {
  border-left: 0;
  border-bottom: 0;
  left: 45%;
}

.banner__slider.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.banner__wrap {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.banner__wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}

.banner__right {
  max-width: 285px;
  width: 100%;
  min-height: 400px;
  border-radius: 10px;
  overflow: hidden;
  background: url(../img/banner-right.png) no-repeat center/cover;
}

.h2title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.h2title h2 {
  margin-bottom: 0;
}
.h2title .link {
  padding: 7px 16px 9px 13px;
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  color: #555555;
  border: 1px solid #E6E6E6;
  border-radius: 8px;
  margin-left: 20px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.h2title .link:hover {
  background-color: #F41F1F;
  color: #fff;
  border-color: #F41F1F;
}

h2 {
  font-weight: 800;
  font-size: 29px;
  line-height: 40px;
  color: #222222;
  margin-bottom: 20px;
}
h2 span {
  color: #F41F1F;
}

.prodCatalog .slick-dots {
  bottom: 0px;
}
.prodCatalog .slick-dots li {
  width: 20px;
  height: 20px;
  margin: 0 10px;
  position: relative;
}
.prodCatalog .slick-dots li::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #EBEBEB;
  -webkit-box-shadow: 0px 4px 160px rgba(0, 0, 0, 0.05), 0px 1px 1px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 160px rgba(0, 0, 0, 0.05), 0px 1px 1px rgba(0, 0, 0, 0.05);
}
.prodCatalog .slick-dots li.slick-active::after {
  background: #F41F1F;
}
.prodCatalog .slick-dots button {
  display: none;
}
.prodCatalog .slick-prev, .prodCatalog .slick-next {
  width: 50px;
  height: 50px;
  top: -35px;
  bottom: auto;
  background: #FFFFFF;
  border: 1px solid #E6E6E6;
  border-radius: 50%;
  z-index: 9;
}
.prodCatalog .slick-prev::before, .prodCatalog .slick-next::before {
  display: none;
}
.prodCatalog .slick-next {
  right: 5px;
}
.prodCatalog .slick-prev {
  left: auto;
  right: 65px;
}
.prodCatalog .slick-prev::after, .prodCatalog .slick-next::after {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid #222222;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.prodCatalog .slick-prev::after {
  border-right: 0;
  border-top: 0;
  left: 55%;
}
.prodCatalog .slick-next::after {
  border-left: 0;
  border-bottom: 0;
  left: 45%;
}
.prodCatalog .prodCatalog__slider .slick-list.draggable {
  background: #ebedec4d;
  margin-top: 15px;
}

.prodCatalog__wrap {
  padding-top: 20px;
  padding-bottom: 40px;
}

.prodCatalog__block {
  width: 285px;
  min-height: 285px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 60px rgba(0, 0, 0, 0.05), 0px 1px 1px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 60px rgba(0, 0, 0, 0.05), 0px 1px 1px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.prodCatalog__block .image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.prodCatalog__block .image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.prodCatalog__block .image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: auto;
  height: 100%;
}
.prodCatalog__block h5 {
  max-width: 135px;
  width: 100%;
  font-weight: 800;
  font-size: 20px;
  line-height: 21px;
  color: #222222;
  position: absolute;
  top: 30px;
  left: 30px;
  right: 30px;
  z-index: 3;
}
.prodCatalog__block h5::after {
  content: "";
  width: 40px;
  height: 5px;
  background: #F41F1F;
  border-radius: 10px;
  position: absolute;
  bottom: -15px;
  left: 0;
}

.prodCatalog__block::after {
  content: "";
  width: 400px;
  height: 300px;
  position: absolute;
  top: -200px;
  left: -100px;
  z-index: 2;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
  background: #FFFFFF;
}

.prodCatalog__block::before {
  content: "";
  width: 200px;
  height: 500px;
  position: absolute;
  top: 0;
  left: -190px;
  z-index: 3;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
  background: #FFFFFF;
}

.service .container {
  padding-bottom: 40px;
}

.service__box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 19px 1fr 19px 1fr 19px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 20px;
}

.service__block {
  height: 100%;
  min-height: 285px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 160px rgba(0, 0, 0, 0.05), 0px 1px 1px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 160px rgba(0, 0, 0, 0.05), 0px 1px 1px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #696969;
  padding: 30px 30px 38px 30px;
}
.service__block h5 {
  font-weight: 800;
  font-size: 20px;
  line-height: 21px;
  color: #222222;
  margin-bottom: 10px;
}
.service__block .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 61px;
  margin-bottom: 26px;
}

.products .container {
  padding-bottom: 70px;
}
.products .h2title {
  margin-bottom: 30px;
}

.products__slider {
  width: 100%;
}
.products__slider .slick-prev, .products__slider .slick-next {
  width: 50px;
  height: 50px;
  top: -20px;
  bottom: auto;
  background: #FFFFFF;
  border: 1px solid #E6E6E6;
  border-radius: 50%;
  z-index: 9;
}
.products__slider .slick-prev::before, .products__slider .slick-next::before {
  display: none;
}
.products__slider .slick-next {
  right: 5px;
}
.products__slider .slick-prev {
  left: auto;
  right: 65px;
}
.products__slider .slick-prev::after, .products__slider .slick-next::after {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid #222222;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.products__slider .slick-prev::after {
  border-right: 0;
  border-top: 0;
  left: 55%;
}
.products__slider .slick-next::after {
  border-left: 0;
  border-bottom: 0;
  left: 45%;
}
.products__slider .products__block {
  margin: 0 auto;
}

.products__slider_good_day {
  width: 100%;
}
.products__slider_good_day .slick-prev, .products__slider_good_day .slick-next {
  width: 50px;
  height: 50px;
  top: -20px;
  bottom: auto;
  background: #FFFFFF;
  border: 1px solid #E6E6E6;
  border-radius: 50%;
  z-index: 9;
}
.products__slider_good_day .slick-prev::before, .products__slider_good_day .slick-next::before {
  display: none;
}
.products__slider_good_day .slick-next {
  right: 5px;
}
.products__slider_good_day .slick-prev {
  left: auto;
  right: 65px;
}
.products__slider_good_day .slick-prev::after, .products__slider_good_day .slick-next::after {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid #222222;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.products__slider_good_day .slick-prev::after {
  border-right: 0;
  border-top: 0;
  left: 55%;
}
.products__slider_good_day .slick-next::after {
  border-left: 0;
  border-bottom: 0;
  left: 45%;
}
.products__slider_good_day .products__block {
  margin: 0 auto;
}

.products__box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 30px;
  padding-right: 20px;
}

.products__block {
  max-width: 224px;
  width: 100%;
  padding-top: 33px;
  position: relative;
}
.products__block .product__color {
  display: none;
}
.products__block .status {
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 600;
  font-size: 11px;
  line-height: 15px;
  text-transform: uppercase;
  color: #222222;
  padding: 3px 6px;
  border: 1px solid #222222;
  border-radius: 4px;
}
.products__block .status2 {
  position: absolute;
  top: 262px;
  left: 0;
  background: #65C917;
  border-radius: 4px;
  padding: 3px 6px;
  font-weight: 800;
  font-size: 11px;
  line-height: 15px;
  text-transform: uppercase;
  color: #FFFFFF;
}
.products__block .image {
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
  margin-bottom: 42px;
}
.products__block .image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}
.products__block h5 {
  min-height: 10px;
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  color: #222222;
  margin-bottom: 10px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.products__block ul {
  margin-bottom: 18px;
}
.products__block li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: #696969;
  position: relative;
  margin-bottom: 5px;
}
.products__block li:last-child {
  margin-bottom: 0;
}
.products__block li::after {
  content: "......................................................................................";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  overflow: hidden;
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: #696969;
}
.products__block h6 {
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: #696969;
  padding-right: 10px;
  background: #FFFFFF;
  position: relative;
  z-index: 2;
}
.products__block li p {
  text-align: end;
  padding-left: 10px;
  background: #FFFFFF;
  position: relative;
  z-index: 2;
}
.products__block .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.products__block:hover h5 {
  color: #F41F1F;
}

.products__btn {
  padding: 7px 16px 9px 13px;
  border: 1px solid #E6E6E6;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  color: #555555;
  background-color: transparent;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.products__btn svg {
  display: none;
}

.products__btn:hover {
  color: #fff;
  background: #f84040;
  border-color: #f84040;
  -webkit-transform: translate(-1px, -1px);
          transform: translate(-1px, -1px);
  -webkit-box-shadow: 1px 1px 1px #a50b0b;
          box-shadow: 1px 1px 1px #a50b0b;
}

.products__btn:active {
  -webkit-transform: translate(0);
          transform: translate(0);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.products__price {
  max-width: calc(100% - 40px);
  position: relative;
}
.products__price h4 {
  font-weight: 600;
  font-size: 25px;
  line-height: 34px;
  color: #222222;
}
.products__price h4 span {
  font-size: 15px;
  line-height: 20px;
}
.products__price p {
  position: absolute;
  top: -10px;
  right: 0;
  font-weight: 300;
  font-size: 15px;
  line-height: 20px;
  text-decoration-line: line-through;
  color: #404040;
  background: transparent;
}

.btn1 {
  padding: 12px 33px 14px 33px;
  background: #F41F1F;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  color: #FFFFFF;
  border: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.btn1:hover {
  background: #f84040;
  -webkit-transform: translate(-1px, -1px);
          transform: translate(-1px, -1px);
  -webkit-box-shadow: 1px 1px 1px #a50b0b;
          box-shadow: 1px 1px 1px #a50b0b;
}

.btn1:active {
  -webkit-transform: translate(0);
          transform: translate(0);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn2 {
  padding: 9px 20px;
  font-weight: 700;
  font-size: 13px;
  line-height: 18px;
  color: #F41F1F;
  border: 1px solid #F41F1F;
  border-radius: 5px;
  background: transparent;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.btn2:hover {
  color: #fff;
  background: #f84040;
  -webkit-transform: translate(-1px, -1px);
          transform: translate(-1px, -1px);
  -webkit-box-shadow: 1px 1px 1px #a50b0b;
          box-shadow: 1px 1px 1px #a50b0b;
}

.btn2:active {
  -webkit-transform: translate(0);
          transform: translate(0);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #65C917;
  border-radius: 7px;
  padding: 13px 20px;
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  color: #FFFFFF;
  border: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.btn3:hover {
  background: #6edb1b;
  -webkit-transform: translate(-1px, -1px);
          transform: translate(-1px, -1px);
  -webkit-box-shadow: 1px 1px 1px #51a312;
          box-shadow: 1px 1px 1px #51a312;
}

.btn3:active {
  -webkit-transform: translate(0);
          transform: translate(0);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.banner2 {
  margin-bottom: 50px;
}

.banner2__wrap {
  width: 100%;
  min-height: 420px;
  background: #DFE9F1;
  -webkit-box-shadow: 0px 4px 160px rgba(0, 0, 0, 0.09);
          box-shadow: 0px 4px 160px rgba(0, 0, 0, 0.09);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.banner2__image {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 585px);
  height: 100%;
  overflow: hidden;
}
.banner2__image .img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 100%;
}

.banner2__image::after {
  content: "";
  width: 292px;
  height: 100%;
  background: -webkit-gradient(linear, right top, left top, from(#DFE9F1), to(rgba(223, 233, 241, 0)));
  background: linear-gradient(270deg, #DFE9F1 0%, rgba(223, 233, 241, 0) 100%);
  position: absolute;
  top: 0;
  left: 327px;
}

.banner2__content {
  max-width: 582px;
  width: 100%;
  padding: 45px 56px 45px 30px;
  margin-left: auto;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #696969;
}
.banner2__content h2 {
  line-height: 32px;
}
.banner2__content p {
  margin-bottom: 10px;
}
.banner2__content .btn1 {
  margin-top: 20px;
}

.advantages .container {
  padding-bottom: 70px;
}
.advantages h2 {
  text-align: center;
}

.advantages__box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 20px;
  background: #ebedec;
    padding: 15px;
    border-radius: 8px;
}

.advantages__block {
  min-height: 200px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 160px rgba(0, 0, 0, 0.05), 0px 1px 1px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 160px rgba(0, 0, 0, 0.05), 0px 1px 1px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 30px;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #696969;
}
.advantages__block h5 {
  font-weight: 800;
  font-size: 50px;
  line-height: 60px;
  color: #222222;
  margin-bottom: 34px;
  position: relative;
}
.advantages__block h5::after {
  content: "";
  width: 40px;
  height: 5px;
  background: #F41F1F;
  border-radius: 10px;
  position: absolute;
  bottom: -15px;
  left: 0;
}
.advantages__block p {
  max-width: 165px;
  width: 100%;
}

.formBanner .container {
  padding-bottom: 50px;
}

.formBanner__wrap {
  width: 100%;
  min-height: 300px;
  background: linear-gradient(86.43deg, #CC1414 0%, #F41F1F 100%);
  border-radius: 10px;
  position: relative;
  padding-left: 50px;
}
.formBanner__wrap .men {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 0;
  right: 340px;
  z-index: 2;
}

.formBanner__form {
  max-width: 300px;
  width: 100%;
  position: absolute;
  top: -20px;
  right: 60px;
  z-index: 3;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 160px rgba(0, 0, 0, 0.05), 0px 1px 1px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 160px rgba(0, 0, 0, 0.05), 0px 1px 1px rgba(0, 0, 0, 0.05);
  border-radius: 14px;
  padding: 31px 26px 32px 26px;
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: #BCBCCD;
}
.formBanner__form h3 {
  font-weight: 600;
  text-align: center;
}
.formBanner__form h6 {
  font-weight: 400;
  font-size: 22px;
  line-height: 22px;
  color: #F41F1F;
  margin-bottom: 16px;
  text-align: center;
}
.formBanner__form p {
  text-align: center;
}
.formBanner__form .input {
  max-width: 220px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 10px;
}
.formBanner__form .input input {
  width: 100%;
  height: 46px;
  background: #F7F7F7;
  border-radius: 7px;
  border: 0;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  text-align: center;
  color: #9494A5;
  padding: 0 20px;
}
.formBanner__form .btn3 {
  max-width: 220px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 14px;
}

.formBanner__line {
  position: absolute;
  top: 0;
  right: 0;
  width: 585px;
  height: 100%;
  overflow: hidden;
}
.formBanner__line img {
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: auto;
  height: 120%;
}

.formBanner__content {
  position: relative;
  z-index: 3;
  max-width: 570px;
  width: 100%;
  padding: 50px 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  color: #FFFFFF;
}
.formBanner__content h2 {
  font-weight: 800;
  font-size: 44px;
  line-height: 42px;
  color: #FFFFFF;
}
.formBanner__content p {
  max-width: 507px;
  width: 100%;
}
.formBanner__content p span {
  display: block;
  font-weight: 800;
}

.news .container {
  padding-bottom: 100px;
}
.news .slick-prev, .news .slick-next {
  width: 50px;
  height: 50px;
  top: -40px;
  bottom: auto;
  background: #FFFFFF;
  border: 1px solid #E6E6E6;
  border-radius: 50%;
  z-index: 9;
}
.news .slick-prev::before, .news .slick-next::before {
  display: none;
}
.news .slick-next {
  right: 5px;
}
.news .slick-prev {
  left: auto;
  right: 65px;
}
.news .slick-prev::after, .news .slick-next::after {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid #222222;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.news .slick-prev::after {
  border-right: 0;
  border-top: 0;
  left: 55%;
}
.news .slick-next::after {
  border-left: 0;
  border-bottom: 0;
  left: 45%;
}
.news .h2title {
  margin-bottom: 20px;
}

.news__block {
  width: 285px;
  padding-bottom: 10px;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #696969;
  margin: 0 auto;
}
.news__block h5 {
  font-weight: 600;
  font-size: 17px;
  line-height: 21px;
  color: #222222;
  margin-bottom: 10px;
}

.news__image {
  width: 100%;
  height: 160px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}
.news__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  min-width: 100%;
  min-height: 100%;
}

.news__date {
  display: inline-block;
  font-weight: 800;
  font-size: 11px;
  line-height: 15px;
  color: #FFFFFF;
  padding: 3px 6px;
  margin-bottom: 10px;
  background: #F41F1F;
  border-radius: 4px;
}

.product h3 {
  margin-bottom: 26px;
}
.product .container {
  /* padding-bottom: 50px; */
}
.product .service {
  /* padding-bottom: 45px; */
}

.product__add {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.05), 0px 1px 1px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.05), 0px 1px 1px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 15px 20px 0px 20px;
  position: relative;
}
.product__add .product__quantity {
  width: 100%;
}
.product__add .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid #ECECEC;
  margin-bottom: 20px;
  position: relative;
}
.product__add .delete {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 24px;
  height: 24px;
  position: absolute;
  bottom: 12px;
  right: -32px;
  border: 0;
  border-radius: 50%;
  background: #F41F1F;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.product__add .delete:hover {
  -webkit-transform: scale(1.07);
          transform: scale(1.07);
}
.product__add .wrap:nth-child(1) {
  padding: 0;
  border: 0;
}
.product__add .block {
  max-width: 153px;
  width: 100%;
  margin-right: 10px;
}
.product__add .block p {
  margin-bottom: 10px;
}
.product__add .input input {
  width: 100%;
  height: 46px;
  background: #F7F7F7;
  border-radius: 7px;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #696969;
  padding: 0 20px;
  border: 0;
  text-align: center;
}

.warning-wrap {
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.05), 0px 1px 1px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 15px 20px 15px 50px;
  position: relative;
  font-size: 12px;
}


.warning-wrap .warning {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #696969;
  border: 2px solid #696969;
  font-weight: 700;
  left: 20px;
  top: 20px;
}

.product__add .add {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 20px;
  border: 0;
  border-top: 1px solid #ECECEC;
  background: transparent;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  color: #F41F1F;
}
.product__add .add svg {
  margin-right: 10px;
}

.product__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 25px;
  border-bottom: 1px solid #ECECEC;
  margin-bottom: 30px;
}

.product__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* align-items: center; */
  justify-content: flex-start;
  flex-wrap: wrap;
  max-width: 645px;
  width: 100%;
  margin-top: 20px;
  height: max-content;
}
.product__images .product__aside {
  display: none;
}

.product_img_nav {
  max-width: 142px;
  width: 100%;
}
.product_img_nav .slick-prev, .product_img_nav .slick-next {
  width: 50px;
  height: 20px;
  z-index: 9;
}
.product_img_nav .slick-prev {
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.product_img_nav .slick-next {
  top: auto;
  /* bottom: -20px; */
  right: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.product_img_nav .slick-prev::before, .product_img_nav .slick-next::before {
  display: none;
}
.product_img_nav .slick-prev::after, .product_img_nav .slick-next::after {
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid #222222;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.product_img_nav .slick-prev::after {
  border-bottom: 0;
  border-right: 0;
}
.product_img_nav .slick-next::after {
  border-top: 0;
  border-left: 0;
}
.product_img_nav .slick-slide {
  border: 2px solid transparent;
}
.product_img_nav .wrap {
  padding: 17px 0;
  background: #FFFFFF;
  border-radius: 6px;
  margin: 5px 0;
}
.product_img_nav .img {
  cursor: pointer;
  width: 108px;
  height: 108px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.product_img_nav .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}

.product_img_nav .slick-slide.slick-current {
  border: 2px solid #F41F1F;
}

.product_img_slider {
  max-width: 500px;
  width: 100%;
}
.product_img_slider .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 500px;
}
.product_img_slider .img {
  max-width: 420px;
  width: 100%;
  min-height: 416px;
  position: relative;
  overflow: hidden;
}
.product_img_slider .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}

.product__description {
  padding-top: 50px;
}
.product__description h3 {
  margin-bottom: 20px;
}

.tab {
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #696969;
}
.tab p {
  margin-bottom: 15px;
}
.tab h6 {
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
  color: #222222;
  margin-bottom: 10px;
}
.tab ol {
  list-style: 1;
  margin-bottom: 20px;
  padding-left: 18px;
}

.tab__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #ECECEC;
  margin-bottom: 20px;
}
.tab__btn .btn {
  padding: 0 0 14px 0;
  border: 0;
  background: transparent;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #696969;
  margin-right: 28px;
  position: relative;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.tab__btn .btn::after {
  content: "";
  width: 100%;
  height: 5px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: transparent;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.tab__btn .btn.active, .tab__btn .btn:hover {
  color: #222222;
}
.tab__btn .btn.active {
  font-weight: 700;
}
.tab__btn .btn.active::after, .tab__btn .btn:hover::after {
  background: #E31E23;
}

.tab__block {
  display: none;
}

.tab__block.active {
  display: block;
}

.product__content {
  max-width: 555px;
  width: 100%;
  font-weight: 400;
  font-size: 15px;
  line-height: 30px;
  color: #696969;
}
.product__content .green {
  color: #65C917;
  margin-bottom: 20px;
}

.product__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ECECEC;
}
.product__price .price {
  font-weight: 600;
  font-size: 35px;
  line-height: 48px;
  color: #222222;
}
.product__price .price span {
  font-size: 18px;
  line-height: 24px;
}

.product__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 10px;
}
.product__info .item {
  padding: 8px 12px;
  border: 1px solid #ECECEC;
  border-radius: 4px;
  font-weight: 800;
  font-size: 11px;
  line-height: 16px;
  text-transform: uppercase;
  color: #222222;
  margin: 0;
  margin-right: 10px;
  margin-bottom: 10px;
}
.product__info .item.green {
  color: #65C917;
}
.product__info .item.red {
  color: #F41F1F;
}

.product__characteristics {
  margin-bottom: 25px;
}
.product__characteristics li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.product__characteristics p {
  position: relative;
  z-index: 9;
  background: #FFFFFF;
  padding-right: 10px;
}
.product__characteristics h6 {
  max-width: 130px;
  width: 100%;
  font-weight: 600;
  font-size: 15px;
  line-height: 30px;
  color: #222222;
  position: relative;
  z-index: 9;
  background: #FFFFFF;
  padding-left: 10px;
}
.product__characteristics li::after {
  content: "...........................................................................................................................................";
  position: absolute;
  top: 0px;
  left: 0;
  font-weight: 400;
  font-size: 15px;
  line-height: 30px;
  color: #696969;
}

.product-item-scu-block .product-item-scu-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.product-item-scu-block .product-item-scu-list .product-list__title_custom {
  margin-right: 10px;
}

.product__color {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
.product__color p {
  margin-right: 20px;
  margin-bottom: 10px;
}
.product__color .color {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  margin-bottom: 10px;
  background: #e4e4e4;
  position: relative;
  overflow: hidden;
}
.product__color .color input {
  position: absolute;
  z-index: -1;
}
.product__color .color label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.product__color .color label img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}
.product__color .color label::after {
  content: "";
  width: 100%;
  height: 100%;
  background: transparent;
  border: 3px solid transparent;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  cursor: pointer;
}
.product__color .color input:checked + label::after {
  border-color: #F41F1F;
}

.product__location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 25px;
}
.product__location h5 {
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  color: #222222;
}
.product__location a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  color: #F41F1F;
  text-decoration: underline;
}
.product__location a svg {
  margin-left: 5px;
  padding-bottom: 3px;
  border-bottom: 1px solid #F41F1F;
}

.product__cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /* padding-bottom: 40px; */
  /* border-bottom: 1px solid #ECECEC; */
  margin-bottom: 30px;  
  justify-content: flex-end;
}
.product__cart .price {
  font-weight: 600;
  font-size: 30px;
  line-height: 48px;
  color: #222222;
}

.product__cart.desctop .price span:not(.old-price, .measure,) {
  font-size: 28px !important;
}
.product__cart .product-detail__price {
  /* margin-left: 15px; */
}
.product__cart.desctop .price span .product-actions__old-price,
.product__cart.desctop .price span .product-actions__old-price span {
  font-size: 15px !important;
}
.product__cart.desctop .price span#fullSquare{
  font-size: 30px;
}
.product__cart .price span {
  font-size: 18px;
  line-height: 24px;
}
.product__cart .price:nth-child(2) {
  margin-left: auto;
  margin-right: 10px;
}
.product__cart .product__quantity {
  margin-left: auto;
}

.product__quantity {
  width: 110px;
  height: 46px;
  background: #F7F7F7;
  border-radius: 7px;
  position: relative;
  overflow: hidden;
}
.product__quantity .num {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  text-align: center;
  color: #696969;
  border: 0;
  background: transparent;
}
.product__quantity .minus, .product__quantity .plus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  z-index: 2;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 0;
  background: transparent;
}
.product__quantity .minus {
  left: 9px;
}
.product__quantity .plus {
  right: 9px;
}

.btn_cart {
  padding: 12px 18px;
  background: #F41F1F;
  border-radius: 7px;
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  color: #FFFFFF;
  border: 0;
  margin-left: 10px;
}

.product__buy {
  padding: 12px 20px;
  border: 1px solid #F41F1F;
  border-radius: 7px;
  background: transparent;
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  color: #F41F1F;
  margin-left: 10px;
}

.product__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
}
.product__bottom h3 {
  width: 100%;
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 15px;
}
.product__bottom h5 {
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
  color: #222222;
}
.product__bottom h5 span {
  font-size: 15px;
  line-height: 20px;
}
.product__bottom .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 256px;
  width: 100%;
  color: #696969;
  margin-bottom: 14px;
}
.product__bottom p {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.product__bottom .item:hover p {
  color: #F41F1F;
}
.product__bottom .img {
  min-width: 70px;
  width: 70px;
  height: 70px;
  margin-right: 16px;
  position: relative;
  overflow: hidden;
}
.product__bottom .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}

.catalog {
  padding-bottom: 20px;
}
.catalog .product__quantity .plus svg, .catalog .product__quantity .minus svg {
  width: 14px;
}

.catalog__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.aside {
  max-width: 285px;
  width: 30%;
}

.aside__wrap {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.05), 0px 1px 1px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.05), 0px 1px 1px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  margin-bottom: 10px;
}

.aside__btn {
  min-height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
  color: #222222;
  cursor: pointer;
}
.aside__btn span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #ECECEC;
}

.aside__block {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
  padding: 0 20px;
}
.aside__block h6 {
  font-weight: 700;
  font-size: 13px;
  line-height: 18px;
  margin-bottom: 12px;
  color: #222222;
}

.aside__btn.open + .aside__block {
  max-height: 10000px;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.aside__btn.open span {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  border-color: #F41F1F;
  background: #F41F1F;
}
.aside__btn.open span path {
  stroke: #fff;
}

.aside__ul {
  padding: 6px 0 13px 0;
  border-top: 1px solid #ECECEC;
}
.aside__ul li {
  font-weight: 400;
  font-size: 15px;
  line-height: 32px;
  color: #696969;
}
.aside__ul li p {
  cursor: pointer;
}
.aside__ul li a {
  display: block;
  color: #696969;
}
.aside__ul ul ul {
  display: none;
  padding-left: 14px;
  border-left: 1px solid #F41F1F;
  margin: 10px 0;
}
.aside__ul li.open>a {
  font-weight: 700;
  color: #222222;
}

.aside__ul li.open > span {
  transform: translateY(-50%) rotate(270deg) rotate(-180deg);
  right: -5px;
  top: 16px;
}
.aside__ul li .open + ul {
  display: block;
}

.aside__ul li.open > ul {
  display: block;
}

.aside__price {
  padding-top: 20px;
  padding-bottom: 30px;
  border-top: 1px solid #ECECEC;
}
.aside__price .slider-range {
  padding-left: 10px;
  padding-right: 5px;
}

.price_num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
  user-select: none;
}
.price_num input:hover {
  cursor: default;
}
.price_num p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 110px;
  height: 36px;
  background: #F7F7F7;
  border-radius: 7px;
  padding: 0 12px;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #A8A8A8;
}
.price_num p input {
  width: 100%;
  padding-left: 5px;
  border: 0;
  background: transparent;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #A8A8A8;
}

.ui-widget.ui-widget-content {
  height: 6px;
  background: #F7F7F7;
  border-radius: 7px;
  border: 0;
}

.ui-slider-horizontal .ui-slider-range {
  background: #F41F1F;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
  width: 20px;
  height: 20px;
  margin-top: -3px; 
  background: #F41F1F;
  border: 3px solid #FFFFFF;
  -webkit-box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.05), 0px 1px 1px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.05), 0px 1px 1px rgba(0, 0, 0, 0.05);
  border-radius: 50%;
}

.aside__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 25px;
  padding-bottom: 30px;
  border-top: 1px solid #ECECEC;
  max-height: 500px;
    overflow: auto;
}
.aside__checkbox h6 {
  width: 100%;
}

.aside__check {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.aside__check input {
  min-width: 26px;
  width: 26px;
  height: 26px;
  position: relative;
  z-index: -1;
  opacity: 0;
  margin-right: 10px;
}
.aside__check label {
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #696969;
  cursor: pointer;
}
.aside__check label::after {
  content: "";
  width: 26px;
  height: 26px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #F7F7F7;
  border-radius: 7px;
}
.aside__check input:checked + label::after {
  background: #F7F7F7 url(../img/check.svg) no-repeat center;
}

.aside__check:last-child {
  margin-bottom: 0;
}

.aside__checkbox:last-child .aside__check {
  width: 50%;
}
.aside__checkbox:last-child .aside__check:last-child {
  margin-bottom: 10px;
}

.catalog__content {
  max-width: 895px;
  width: 70%;
}

.catalog__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 30px;
}
.catalog__nav .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 24%;
  min-height: 60px;
  background: #F6F6F6;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  line-height: 16px;
  color: #222222;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 13px 5px 13px 15px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.catalog__nav .item svg {
  margin-right: 12px;
}
.catalog__nav .item p {
  max-width: 152px;
}
.catalog__nav .item:last-child {
  margin-right: 0;
}
.catalog__nav .item:hover {
  background: #222222;
  color: #FFFFFF;
}

.catalog__sorting {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #696969;
  margin-bottom: 22px;
}
.catalog__sorting h6 {
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
  color: #222222;
  margin-right: 20px;
}
.catalog__sorting p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 20px;
}
.catalog__sorting svg {
  margin-left: 9px;
}
.catalog__sorting .active {
  position: relative;
  color: #F41F1F;
}
.catalog__sorting a:focus {
  text-decoration: none;
}
.catalog__sorting .active::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: calc(100% - 20px);
  height: 1px;
  border-bottom: 1px dashed #F41F1F;
}

.catalog__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.catalog__block {
  position: relative;
  padding-bottom: 10px;
}
.catalog__block .image {
  height: 285px;
  position: relative;
  overflow: hidden;
  margin: 30px 0;
}

.catalog__block .image .wrap-top-label{
  position: absolute;
  top: -30px;
  left: 0;
  z-index: 950;  
}
.catalog__block .image .wrap-bottom-label{
  position: absolute;
  bottom: -30px;
  left: 0;  
  z-index: 950;  
}

.catalog__block .image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}
.catalog__block .product-card__title {
  overflow: visible;
  height: 85px !important;
  max-width: unset;
  width: 100%;
  font-weight: 600;
  font-size: 18px;
  line-height: 20px;
  color: #222222;
  margin-bottom: 10px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;

  overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.catalog__block a:hover {
  text-decoration: none;
}
.catalog__block li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: #696969;
  margin-bottom: 5px;
  position: relative;
}
.catalog__block li h6 {
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: #696969;
  padding-right: 10px;
  position: relative;
  z-index: 2;
  background: #fff;
}
.catalog__block li p {
  padding-left: 10px;
  position: relative;
  z-index: 2;
  background: #fff;
}
.catalog__block li::after {
  width: 100%;
  overflow: hidden;
  content: "........................................................................................";
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: #696969;
}
.catalog__block .product__color {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: #696969;
  margin-bottom: 12px;
}
.catalog__block .product__color p {
  margin-right: 12px;
}
.catalog__block .color {
  width: 30px;
  height: 30px;
}
.catalog__block .btn2 {
  width: 100%;
}

.catalog__block .product-card__title:hover {
  color: #F41F1F;
}

.catalog__stock.bottom {
  width: 100%;
  position: absolute;
  top: 290px;
  left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  padding-bottom: 2px;
}
.catalog__stock.top {
  width: 100%;
  position: absolute;
  top: -25px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  padding-bottom: 2px;
}
.catalog__stock span {
  white-space: nowrap;
  display: block;
  margin-right: 5px;
  padding: 3px 7px;
  font-weight: 600;
  font-size: 11px;
  line-height: 15px;
  text-transform: uppercase;
  color: #222222;
  border: 1px solid #222222;
  border-radius: 4px;
  z-index: 50;

}
.catalog__stock .green {
  font-weight: 800;
  background: #65C917;
  border: 0;
  color: #FFFFFF;
}

.catalog__stock::-webkit-scrollbar {
  background-color: #fff;
  width: 6px;
  height: 6px;
}

.catalog__stock::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

.catalog__stock::-webkit-scrollbar-thumb {
  background-color: #babac0;
}

.catalog__stock::-webkit-scrollbar-button {
  display: none;
}

.catalog__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;

  
  display: flex;
  justify-content: space-between;
  max-height: 34px;
}
.catalog__price .price {
  white-space: nowrap;
  font-weight: 600;
  font-size: 25px;
  line-height: 34px;
  color: #222222;
  position: relative;
}
.catalog__price .btn1{
  white-space: nowrap;
}
.catalog__price .price span {
  font-size: 18px;
  line-height: 20px;
}
.catalog__price .price p {
  font-weight: 300;
  font-size: 15px;
  line-height: 20px;
  text-decoration-line: line-through;
  color: #404040;
  position: absolute;
  top: -10px;
  right: 0;
}
.catalog__price .btn1 {
  font-weight: 700;
  padding: 9px 12px;
  font-size: 13px;
  line-height: 18px;
}
.catalog__price .product__quantity {
  width: 90px;
  height: 36px;
  margin-left: auto;
  margin-right: 10px;
}

.basket .container {
  padding-bottom: 150px;
}
.basket .product__quantity .plus svg, .basket .product__quantity .minus svg {
  width: 14px;
}

.basket__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.basket__content {
  max-width: 790px;
  width: 100%;
}
.basket__content h3 {
  margin-bottom: 20px;
}

.basket__aside {
  max-width: 380px;
  width: 100%;
}

.basket__aside_wrap {
  background: #FFFFFF;
  padding: 24px 30px 26px 30px;
  -webkit-box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.05), 0px 1px 1px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.05), 0px 1px 1px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  position: sticky;
  top: 150px;
}

.basket__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  font-size: 13px;
  line-height: 32px;
  color: #222222;
  padding-bottom: 20px;
}
.basket__price h5 {
  font-weight: 600;
  font-size: 45px;
  line-height: 61px;
  color: #222222;
  margin-left: 15px;
}
.basket__price h5 span {
  font-size: 15px;
  line-height: 20px;
}

.basket__characteristics {
  border: 1px solid #ECECEC;
  border-left: 0;
  border-right: 0;
  padding-top: 20px;
  padding-bottom: 15px;
  margin-bottom: 25px;
  overflow: hidden;
}
.basket__characteristics li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #696969;
  margin-bottom: 10px;
  position: relative;
}
.basket__characteristics li::after {
  content: "....................................................................................";
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #696969;
  overflow: hidden;
}
.basket__characteristics p {
  position: relative;
  z-index: 2;
  background: #fff;
  padding-right: 10px;
}
.basket__characteristics h6 {
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
  position: relative;
  z-index: 2;
  background: #fff;
  padding-left: 10px;
}
.basket__characteristics h6 span {
  color: #222222;
}

.basket__wrap {
  padding-top: 20px;
  padding-bottom: 20px;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #696969;
  border-bottom: 1px solid #ECECEC;
  margin-bottom: 30px;
}
.basket__wrap .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}
.basket__wrap h6 {
  min-width: 99px;
  font-weight: 700;
  font-size: 13px;
  line-height: 18px;
  color: #222222;
}
.basket__wrap a {
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  color: #F41F1F;
  text-decoration: none;
}
.basket__wrap span {
  display: block;
}

.basket__btn1 {
  width: 100%;
  padding: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 15px;
}

.basket__check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.basket__check input {
  min-width: 26px;
  width: 26px;
  position: relative;
  z-index: -1;
  opacity: 0;
  margin-right: 10px;
}
.basket__check label {
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: #696969;
  cursor: pointer;
}
.basket__check label a {
  color: #F41F1F;
  text-decoration: underline;
}
.basket__check label::before {
  content: "";
  width: 26px;
  height: 26px;
  background: #F7F7F7;
  border-radius: 7px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.basket__check input:checked + label::before {
  background: #F7F7F7 url(../img/check.svg) no-repeat center;
}

.basket__radio {
  position: relative;
}
.basket__radio input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.basket__block {
  display: block;
  width: 100%;
  padding: 25px 30px 24px 30px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.05), 0px 1px 1px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.05), 0px 1px 1px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #696969;
  cursor: pointer;
  position: relative;
}
.basket__block .check {
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  top: 20px;
  right: 20px;
  background: #FFFFFF;
  border: 1px solid #ECECEC;
  border-radius: 50%;
}
.basket__block h5 {
  font-weight: 600;
  font-size: 17px;
  line-height: 23px;
  color: #222222;
  margin-bottom: 10px;
}
.basket__block p {
  margin-bottom: 5px;
}

.basket__radio {
  margin-bottom: 30px;
}

.basket__radio input:checked + .basket__block .check {
  background: #F41F1F url(../img/main-check.svg) no-repeat center;
}

.basket__form {
  padding: 30px 32px 30px 30px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.05), 0px 1px 1px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.05), 0px 1px 1px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.basket__form .input {
  max-width: 236px;
  width: 100%;
  margin-bottom: 10px;
}
.basket__form .input input {
  width: 100%;
  height: 46px;
  background: #F7F7F7;
  border-radius: 7px;
  padding: 0 20px;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #222222;
  border: 0;
}
.basket__form textarea {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 120px;
  min-height: 120px;
  max-height: 120px;
  background: #F7F7F7;
  border-radius: 7px;
  padding: 12px 20px;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #222222;
  border: 0;
}
.basket__form textarea::-webkit-input-placeholder, .basket__form input::-webkit-input-placeholder {
  color: #696969;
}
.basket__form textarea::-moz-placeholder, .basket__form input::-moz-placeholder {
  color: #696969;
}
.basket__form textarea:-ms-input-placeholder, .basket__form input:-ms-input-placeholder {
  color: #696969;
}
.basket__form textarea::-ms-input-placeholder, .basket__form input::-ms-input-placeholder {
  color: #696969;
}
.basket__form textarea::placeholder, .basket__form input::placeholder {
  color: #696969;
}

.basket__products {
  margin-bottom: 0px;
  border-top: 1px solid #ECECEC;
}

.basket__product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  min-height: 130px;
  border-bottom: 1px solid #ECECEC;
  padding: 10px 0;
  position: relative;
}

.basket__delete {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 10px;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 0;
  background: transparent;
}
.basket__delete path {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.basket__delete:hover path {
  fill: #F41F1F;
}

.basket__image {
  max-width: 110px;
  width: 100%;
  height: 110px;
  position: relative;
  overflow: hidden;
  margin-right: 30px;
}
.basket__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}

.basket__text {
  max-width: 500px;
  width: 100%;
  padding-top: 22px;
}
.basket__text h5 {
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  color: #222222;
  margin-bottom: 10px;
}
.basket__text .product__quantity {
  width: 100px;
  height: 36px;
}

.basket__prodPrice {
  padding-top: 54px;
  margin-left: auto;
}
.basket__prodPrice h4 {
  font-weight: 600;
  font-size: 25px;
  line-height: 34px;
  color: #222222;
}
.basket__prodPrice h4 span {
  font-size: 15px;
  line-height: 20px;
}


.aside__ul > ul > li span.open {
  transform: translateY(-50%) rotate(270deg) rotate(-180deg);
  right: -5px;
  top: 15px;
}

.footer {
  background: #222222;
  margin-top: 60px;

}
.footer .container {
  padding-top: 60px;
  padding-bottom: 40px;
}

.footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 26px;
}

.footer__left {
  max-width: 240px;
  width: 100%;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #FFFFFF;
}
.footer__left .copy {
  margin-top: 30px;
  color: #A5A5A5;
  font-size: 14px;
}
.footer__left .copy span {
  display: block;
}

.footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 148px;
  height: 66px;
  margin-bottom: 30px;
}
.footer__logo img {
  width: 100%;
}

.footer__address {
  max-width: 317px;
  width: 100%;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  color: #FFFFFF;
}
.footer__address h6 {
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  color: #F41F1F;
}
.footer__address .schedule {
  margin-bottom: 80px;
}
.footer__address li {
  padding-left: 20px;
  position: relative;
}
.footer__address li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
}

.footer__nav {
  max-width: 330px;
  width: 100%;
}
.footer__nav a {
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
  color: #FFFFFF;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.footer__nav a:hover {
  color: #F41F1F;
}

.footer__contacts {
  max-width: 160px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.footer__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 30px;
}
.footer__phone a {
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #F41F1F;
}
.footer__phone .tel {
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  color: #FFFFFF;
}
.footer__phone .tel span {
  font-weight: 700;
}

.footer__soc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.footer__soc a {
  width: 25px;
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 20px;
}
.footer__soc a path {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.footer__soc a:last-child {
  margin-right: 0;
}
.footer__soc a:hover path {
  fill: #F41F1F;
}

.footer__email,
.footer__email_new {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
  font-size: 15px;
  line-height: 30px;
  color: #F41F1F;
}
.footer__email_new svg{
  margin-right: 5px;
}
.footer__email svg {
  margin-right: 10px;
}

.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer__copy {
  max-width: 717px;
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #A5A5A5;
}


.catalog-section-price_one_square,
.catalog-section-price_one_square span,
.catalog__price .price .catalog-section-price_one_square span {
  font-size: 14px;
  color: #d0c8cd;
  font-family: 'PT Sans', serif;
  position: absolute;
  bottom: -20px;
}
.catalog-section-price_one_square span,
.catalog__price .price .catalog-section-price_one_square span {
  position: static;
}

.footer__kontur {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__kontur .link {
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.01em;
  color: #A5A5A5;
  margin: 5px 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.footer__kontur .link:hover {
  color: #FFFFFF;
}
.footer__kontur svg {
  margin-left: 10px;
}

.catalog-filter-open, .options-filter-open, .menu_mobile {
  display: none;
}

.banner a.banner_special {
  max-width: 285px;
  width: 100%;
}
.banner .banner__slider.main_page .slick-list.draggable{
  /* display: none; */
}

.index-slider.catalog-section-slider{
  margin-bottom: 30px;
}

@media screen and (max-width: 1220px) {
  .basket__aside {
    margin: 10px 37px 0px;
  }
  .catalog__grid {
      grid-template-columns: 1fr 1fr;
  }
  .catalog__content{
    padding-left: 25px;
  }
  

}

@media screen and (max-width: 1135px) {
  .catalog__nav .item {
    width: 48%;
  }
}
@media screen and (max-width: 768px) {
  #mobi-wrapper{
    display: block !important;
    width: 100%;
  }
  .catalog__block:hover .image .fast_view {
    display: none;
  }
  .container .product__cart.desctop h5.fullSquare {
    margin-bottom: 15px;
  }
  .footer__kontur.logo{
    margin-top: 25px;
  }
  .footer__bottom .footer__kontur.logo .footer__logo.link {
    top: auto;
  }
  .catalog__content,
  .aside {
    width: 100%;
    padding-left: 0px;
  }
  .aside__ul > ul.open > li.open > .aside__down {
    color: #F41F1F;   
    padding-left: 10px;
    font-weight: 700; 
  }
  .aside__ul > ul.open > li.open > ul.open > li.open > .aside__down {
    color: #555555;   
    padding-left: 10px;
    font-weight: 700; 
  }

.aside__ul > ul > li .aside__down::after {
  content: "";
  width: 6px;
  height: 6px;
  border: 2px solid #F41F1F;
    border-bottom-color: rgb(244, 31, 31);
    border-bottom-style: solid;
    border-bottom-width: 2px;
    border-left-color: rgb(244, 31, 31);
    border-left-style: solid;
    border-left-width: 2px;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  border-left: 0;
  border-bottom: 0;
}

.aside__ul > ul.open  li.open > .aside__down::after {
  position: absolute;
  top: 16px;
  right: auto;
  left: 0px;
  -webkit-transform: translateY(-50%) rotate(235deg);
  transform: translateY(-50%) rotate(235deg);
}



.menu_mobile .aside__ul > ul > li {
  position: relative;
}
.aside__ul > ul > li > .aside__down.open::after {
  left: 0;
  right: auto;
  -webkit-transform: translateY(-50%) rotate(45deg) rotate(-180deg);
  transform: translateY(-50%) rotate(45deg) rotate(-180deg);
}
.aside__ul > ul > li > .open {
  position: relative;
  padding-left: 10px;
}

.aside__ul > ul > li span {
  cursor: pointer;
  top: 15px;
  transform: translateY(-50%) rotate(90deg) rotate(-180deg);
}
.aside__ul > ul > li span.open {
  transform: translateY(-50%) rotate(270deg) rotate(-180deg);
  right: auto;
  left: -15px;
  top: 13px;
  position: absolute;
}


.aside__ul > ul > li > .open {
  font-weight: 700;
  color: #F41F1F;
}

.aside__ul > ul.open > li {
  display: none;
}
.aside__ul > ul > li.open {
  display: block;
}

.menu_mobile .aside__ul > ul > li {
  position: relative;
}
.aside__ul > ul > li > .aside__down.open::after {
  left: 0;
  right: auto;
  -webkit-transform: translateY(-50%) rotate(45deg) rotate(-180deg);
  transform: translateY(-50%) rotate(45deg) rotate(-180deg);
}
.aside__ul > ul > li > .open {
  position: relative;
  padding-left: 10px;
}

.aside__ul > ul.open > li {
  display: none;
}
.aside__ul > ul > li.open {
  display: block;
}

.menu_mobile__item.catalog-filter-open:focus{
  color: #696969;
  text-decoration: none;
}


.menu_mobile__item.catalog-filter-open.active,
.menu_mobile__item.catalog-filter-open.active svg path{
  fill: #F41F1F;
  color: #F41F1F;
}

.menu_mobile__item.open {
  color: #F41F1F;
}
.menu_mobile__item.open .burgir span{
  background: #F41F1F;
}

  

  .product__cart.desctop .price span.product-actions__old-price > span {
    font-size: 18px !important;
  }

  .product__cart.desctop .price span{
    font-size: 24px !important;
  }

  .product-actions__oneclick{
    width: 50%;
  }
  .product-actions__oneclick .product__buy.btn2{
    width: 100%;
    margin-left: 10px;
    text-align: center;
  }

  .product-item-scu-item-text-block {
    padding: 0 0px;
}


h5.price .old-price {
  top: -17px;
}


  
  .header.fixed .header__bottom {
    position: static;
  }
  .header.fixed  {
    width: 100%;
    z-index: 950;
    position: fixed;
    top: 0;
    left: 0;
  }
  /* .header.fixed .header__logo, */
  .header.fixed .header__city .city{
    display: none;
  }

  .header.fixed .header__top{
    display: none;
  }
  .header.fixed .header__soc {
    display: flex;
    position: fixed;
    top: 10px;
    left: 20px;
  }
  .header.fixed .header__soc a {
    width: 21px;
    height: 21px;
}

  .catalog__price {
    bottom: 0px;
    max-height: none;
  }
  .catalog__price > div {
    width: 100%;
  }
  .catalog__price > div a{
    display: block;
    text-align: center;
  }
  .banner a.banner_special{
    max-width: 100%;
  }
  section {
    /* display: none; */
  }
  section.brands-wrapper {
    display: block;
  }
  .header__search {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .header__navbar {
    display: none;
  }
  .header__soc {
    position: absolute;
    top: 79px;
    right: 15px;
  }
  .header__top {
    min-height: 50px;
    padding: 10px 0;
  }
  .header__logo {
    width: 103px;
    height: 46px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-bottom: 10px;
  }
  .header__phone {
    position: absolute;
    top: 15px;
    right: 15px;
  }  
  .header.fixed .header__phone {
    top: 27px;
  }
  .header__phone a {
    font-size: 13px;
    line-height: 18px;
  }
  .header__phone .tel {
    font-size: 15px;
    line-height: 20px;
  }
  .header__box {
    position: static;
    justify-content: space-between;
  }
  .header__city .city {
    max-width: 143px;
    width: 100%;
    font-size: 13px;
  }
  .header__bottom {
    padding: 15px 0;
  }
  .header__catalog {
    display: none;
  }
  .header__search {
    width: 100%;
    padding: 0;
  }
  .header__search::before {
    display: none;
  }
  .header__search .search {
    width: 100%;
    height: 36px;
    padding: 0 50px 0 20px;
    background: #F7F7F7;
    border-radius: 5px;
    font-size: 13px;
    line-height: 18px;
  }
  .header__search .search::-webkit-input-placeholder {
    color: #696969;
  }
  .header__search .search::-moz-placeholder {
    color: #696969;
  }
  .header__search .search:-ms-input-placeholder {
    color: #696969;
  }
  .header__search .search::-ms-input-placeholder {
    color: #696969;
  }
  .header__search .search::placeholder {
    color: #696969;
  }
  .header__search .btn {
    left: auto;
    right: 12px;
  }
  .header__basket {
    display: none;
  }
  .header__wrap {
    min-height: 65px;
  }
  .banner {
    display: block;
  }
  .banner__wrap img {
    top: 0;
    left: 0;
    -webkit-transform: translate(0);
            transform: translate(0);
    width: auto;
    /* position: absolute;
    max-width: none;
    max-height: none;
    min-width: 100%;
    min-height: 100%; */
  }
  .banner .container {
    padding-top: 0;
    padding-bottom: 30px;
  }
  .main {
    padding-top: 15px;
  }
  .banner__slider .slick-dots {
    bottom: 18px;
  }
  .banner__slider .slick-dots li {
    margin: 0 4px;
  }
  .banner__right {
    max-width: 100%;
    margin-top: 10px;
    min-height: 150px;
    background: url(../img/banner-right-mobile.png) no-repeat center/cover;
  }
  .prodCatalog {
    display: block;
  }
  .prodCatalog__block {
    width: 224px;
    min-height: 245px;
    margin-right: 16px;
  }
  .prodCatalog__block::before {
    left: -200px;
  }
  .prodCatalog__block::after {
    top: -240px;
  }
  .prodCatalog__block h5 {
    top: 17px;
    left: 20px;
    font-size: 18px;
    line-height: 19px;
  }
  .prodCatalog__block h5::after {
    width: 31px;
    height: 4px;
  }
  .prodCatalog .slick-dots {
    bottom: 0;
  }
  .prodCatalog .slick-dots li {
    margin: 0 4px;
  }
  .prodCatalog__slider {
    width: calc(100% + 15px);
  }
  .service {
    display: block;
  }
  h2 {
    font-size: 22px;
    line-height: 22px;
  }
  .h2title .link {
    padding: 7px 11px;
    white-space: nowrap;
  }
  .service__box {
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
  }
  .service__block {
    min-height: 140px;
    padding: 20px 30px 25px 20px;
  }
  .service__block p {
    display: none;
  }
  .service__block .icon {
    margin-bottom: 16px;
    height: 60px;
    display: flex;
    justify-content: center;
  }
  .service__block .icon svg {
    width: auto;
    height: 100%;
  }
  .service__block h5 {
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;    
    text-align: center;
    min-height: 36px;
  }
  .service__block .text {
    display: none;
  }
  .products {
    display: block;
  }
  .products__wrap {
    display: none;
  }
  .products__wrap:nth-child(1) {
    display: block;
  }
  .products__box {
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: 1fr 1fr;
    padding: 0;
    grid-column-gap: 10px;
    grid-row-gap: 20px;
  }
  .products__block {
    padding: 0;
    display: none;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .products__block .product__color {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 5px;
  }
  .products__block .product__color p {
    width: 100%;
  }
  .products__block .product__color .color {
    width: 24px;
    height: 24px;
    margin-right: 5px;
    margin-bottom: 5px;
  }
  .products__block:nth-child(1), .products__block:nth-child(2), .products__block:nth-child(3), .products__block:nth-child(4) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .products__block .image {
    height: 140px;
    -webkit-box-ordinal-group: -1;
        -ms-flex-order: -2;
            order: -2;
    margin-bottom: 5px;
  }
  .products__block .status2 {
    max-width: 92px;
    width: 100%;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-right: 5px;
    font-size: 10px;
    margin-bottom: 5px;
  }
  .products__block .status {
    font-size: 8px;
    top: 145px;
    left: 97px;
    white-space: nowrap;
  }
  .products__block .status2 {
    position: static;
    top: auto;
    left: auto;
  }
  .products__block h5 {
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 5px;
  }
  .products__block h6 {
    font-size: 12px;
    line-height: 16px;
  }
  .products__block li {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 3px;
  }
  .products__block ul {
    width: 100%;
    margin-bottom: 10px;
  }
  .products__block .bottom {
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .products__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    background: #F41F1F;
    border-color: #F41F1F;
    color: #fff;
  }
  .products__btn svg {
    display: block;
    margin-right: 10px;
  }
  .products__price {
    max-width: 100%;
    margin-bottom: 5px;
  }
  .products__price h4 {
    font-size: 18px;
    line-height: 25px;
  }
  .products__price h4 span {
    font-size: 12px;
  }
  .products__price p {
    white-space: nowrap;
    left: calc(100% + 5px);
    top: 0;
    right: auto;
    font-size: 13px;
    line-height: 18px;
  }
  .products .container {
    padding-bottom: 40px;
  }
  .banner2 {
    display: block;
    margin-bottom: 30px;
  }
  .banner2__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: calc(100% + 30px);
    margin-left: -15px;
    border-radius: 0;
  }
  .banner2__image {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: visible;
  }
  .banner2__image::after {
    top: auto;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 320px;
    background: -webkit-gradient(linear, left bottom, left top, from(#DFE9F1), to(rgba(223, 233, 241, 0)));
    background: linear-gradient(0deg, #DFE9F1 0%, rgba(223, 233, 241, 0) 100%);
  }
  .banner2__image .img {
    top: auto;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(0);
            transform: translate(0);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .banner2__content {
    padding: 31px 15px;
    font-size: 13px;
    line-height: 18px;
  }
  .banner2__content h2 {
    max-width: 290px;
    width: 100%;
    line-height: 22px;
    margin-bottom: 10px;
  }
  .btn1 {
    padding: 9px 22px;
    font-size: 14px;
    line-height: 19px;
  }
  .banner2__content .btn1 {
    margin-top: 4px;
  }
  .advantages {
    display: block;
  }
  .advantages h2 {
    text-align: left;
  }
  .advantages__box {
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
  }
  .advantages__block {
    min-height: 140px;
    padding: 15px 18px 35px 15px;
    font-size: 13px;
    line-height: 18px;
  }
  .advantages__block h5 {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 24px;
  }
  .advantages__block h5::after {
    width: 34px;
    height: 4px;
    bottom: -10px;
  }
  .advantages .container {
    padding-bottom: 30px;
  }
  .news {
    display: block;
  }
  .news__block {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 18px;
  }
  .news__block h5 {
    font-size: 15px;
    line-height: 18px;
  }
  .news .container {
    padding-bottom: 40px;
  }
  .formBanner {
    display: block;
  }
  .formBanner__line {
    width: 400px;
    height: 200px;
    right: -120px;
  }
  .formBanner__wrap .men {
    right: -80px;
  }
  .formBanner__content {
    padding: 33px 20px 125px 20px;
    font-size: 14px;
    line-height: 19px;
  }
  .formBanner__content h2 {
    
  font-weight: 600;
    max-width: 154px;
    width: 100%;
    font-size: 22px;
    line-height: 22px;
  }
  .formBanner__content p {
    max-width: 145px;
  }
  .formBanner__wrap {
    width: calc(100% + 30px);
    margin-left: -15px;
    border-radius: 0;
    padding-left: 0;
  }
  .formBanner__form {
    max-width: 100%;
    width: auto;
    left: 15px;
    right: 15px;
    bottom: -164px;
    top: auto;
    padding: 20px;
  }
  h3 {
    font-size: 18px;
    line-height: 25px;
  }
  .formBanner__form h6 {
    font-size: 14px;
    line-height: 19px;
    margin-top: -5px;
    margin-bottom: 10px;
  }
  .formBanner__form .input {
    max-width: 230px;
  }
  .formBanner__form .input input {
    height: 40px;
    font-size: 14px;
    line-height: 19px;
  }
  .btn3 {
    padding: 10px;
    font-size: 14px;
    line-height: 19px;
  }
  .formBanner__form .btn3 {
    max-width: 230px;
    margin-bottom: 10px;
  }
  .formBanner .container {
    padding-bottom: 200px;
  }
  .h2title {
    justify-content: space-between;
  }
  .catalog {
    display: block;
  }
  .catalog h1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: fit-content;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .catalog .qckfx {
    display: flex;
  }

  .aside {
    min-width: 100%;
    height: 0;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: fixed;
    bottom: 73px;
    left: 0;
    z-index: 99;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.05), 0px 1px 1px rgba(0, 0, 0, 0.05);
            box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.05), 0px 1px 1px rgba(0, 0, 0, 0.05);
  }
  .aside.open {
    height: 357px;
    overflow-y: auto;
  }
  .aside__btn {
    display: none;
  }
  .aside__block {
    max-height: 100%;
  }
  .aside__wrap {
    display: none;
    margin-bottom: 0;
  }
  .aside__wrap.active {
    display: block;
  }
  .catalog__grid {
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 20px;
  }
  .catalog__block {
    padding-bottom: 0;
  }
  .catalog__price .product__quantity {
    display: none;
  }
  .product {
    display: block;
  }
  .catalog__block .image {
    height: 140px;
    margin-bottom: 30px;
  }
  .catalog__stock.bottom {
    top: 145px;
}
  .catalog__stock {
    position: relative;
    top: auto;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 5px;
  }
  .catalog__stock .green {
    max-width: 92px;
    white-space: normal;
    font-size: 10px;
    line-height: 14px;
  }
  .catalog__block .product-card__title {
    font-size: 13px;
    line-height: 20px;
  }
  .catalog__block li h6 {
    font-size: 12px;
    line-height: 16px;
  }
  .catalog__block li {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 3px;
  }
  .catalog__block .btn2 {
    display: none;
  }
  .catalog__price {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 0;
  }
  .catalog__block:hover .image .fast_view {
    display: none;
  }
  .catalog__price .btn1 {
    width: 100%;
  }
  .catalog__price .btn1 .text{
    position: relative;
  }
  .catalog__price .btn1 .text.buy_btn::after {
    content: "";
    position: absolute;
    left: -30px;
    top: -5px;
    width: 30px;
    height: 26px;
    background: url(../img/cut.png) no-repeat center;
  }
  .catalog__block .product__color p {
    width: 100%;
  }
  .catalog__block .color {
    width: 24px;
    height: 24px;
    margin-right: 5px;
    margin-bottom: 5px;
  }
  .catalog__block .product__color {
    margin-bottom: 5px;
  }
  .catalog__price .price {
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 13px;
  }
  .catalog__price .price:has(.catalog-section-price_one_square){
    margin-bottom: 26px;
  }
  .catalog-section-price_one_square{
    bottom: -15px;
}
  .catalog__price .price span {
    font-size: 18px;
  }
  .catalog__price .price p {
    top: -2px;
    width: max-content;
    right: -42px;
    font-size: 13px;
    line-height: 18px;
    white-space: nowrap;
  }
  .catalog__grid .catalog__price .price p{
    width: max-content;
    font-size: 13px;
    line-height: 18px;
    white-space: nowrap;
    padding-left: 28px;
    padding-top: 13px;
  }
  .catalog__nav {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
  }
  .catalog__nav .item {
    margin: 0;
    padding: 12px;
    width: 100%;
  }
  .catalog__nav .item p {
    max-height: 32px;
    overflow: hidden;
  }
  .catalog__nav .item svg {
    min-width: 27px;
  }
  .catalog__nav {
    margin-bottom: 20px;
  }
  .catalog__sorting {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .catalog__sorting h6 {
    width: 100%;
    margin: 0;
    font-size: 13px;
    line-height: 18px;
  }
  .catalog__sorting p {
    font-size: 13px;
    line-height: 18px;
    margin-right: 12px;
  }
  .options-filter-open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: auto;
    border: 1px solid #E6E6E6;
    border-radius: 8px;
    padding: 7px 12px;
    font-weight: 600;
    font-size: 13px;
    line-height: 18px;
    color: #555555;
    background: transparent;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .options-filter-open svg {
    margin-left: 9px;
  }
  .options-filter-open path {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .options-filter-open.active {
    background: #F41F1F;
    border-color: #F41F1F;
    color: #fff;
  }
  .options-filter-open.active path {
    fill: #fff;
  }
  .catalog-filter-open span {
    width: 100%;
    height: 3px;
    background: #222222;
    border-radius: 10px;
  }
  .catalog-filter-open span:nth-child(2) {
    -webkit-transform: translateY(-0.2px);
            transform: translateY(-0.2px);
  }
  .catalog-filter-open.active span:nth-child(2) {
    opacity: 0;
  }
  .catalog-filter-open.active span:nth-child(1) {
    -webkit-transform: translateY(5.5px) rotate(45deg);
            transform: translateY(5.5px) rotate(45deg);
  }
  .catalog-filter-open.active span:nth-child(3) {
    -webkit-transform: translateY(-5.5px) rotate(-45deg);
            transform: translateY(-5.5px) rotate(-45deg);
  }
  .basket {
    display: block;
  }
  .basket .container {
    padding-bottom: 60px;
  }
  h1 {
    font-size: 22px;
    line-height: 22px;
    margin-bottom: 20px;
  }
  .basket__delete {
    width: 20px;
    height: 20px;
    top: 5px;
  }
  .basket__delete svg {
    width: 16px;
    height: 16px;
  }
  .basket__image {
    max-width: 90px;
    height: 90px;
    margin-right: 10px;
  }
  .basket__text {
    max-width: calc(100% - 100px);
    padding-top: 0;
  }
  .basket__text h5 {
    max-width: 240px;
    width: 100%;
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 16px;
  }
  .basket__text .product__quantity {
    width: 90px;
  }
  .basket__prodPrice {
    padding: 0;
    position: absolute;
    right: 0;
    bottom: 20px;
  }
  .basket__prodPrice h4 {
    font-size: 18px;
    line-height: 25px;
  }
  .basket__prodPrice h4 span {
    font-size: 13px;
  }
  .basket__product {
    min-height: auto;
  }
  .basket__products {
    margin-bottom: 30px;
  }
  .basket__block {
    padding: 20px;
    font-size: 13px;
    line-height: 18px;
  }
  .basket__block .check {
    top: 10px;
    right: 10px;
  }
  .basket__block h5 {
    font-size: 15px;
    line-height: 20px;
  }
  .basket__form {
    padding: 20px;
  }
  .basket__form .input {
    max-width: 100%;
  }
  .basket__form .input input {
    padding: 0 15px;
  }
  .basket__form textarea {
    min-height: 80px;
    height: 80px;
    max-height: 80px;
    padding: 12px 15px;
  }
  .basket__content {
    max-width: 100%;
  }
  .basket__aside {
    max-width: 100%;
    margin-right: 0px; 
  }
  .basket__aside_wrap {
    margin-bottom: 30px;
    padding: 20px;
  }
  .basket__price {
    /* display: none; */
    padding-bottom: 10px;
  }
  .basket__characteristics {
    display: none;
    padding-bottom: 15px;
    margin-bottom: 10px;
  }
  .basket__price h5 {
    font-size: 35px;
    line-height: 48px;
  }
  .basket__characteristics li {
    font-size: 13px;
    line-height: 19px;
    margin-bottom: 5px;
  }
  .basket__characteristics h6 {
    font-size: 13px;
    line-height: 19px;
  }
  .basket__characteristics li::after {
    opacity: 0.5;
  }
  .basket__wrap {
    padding-top: 0;
    font-size: 13px;
    line-height: 18px;
    padding-bottom: 5px;
    margin-bottom: 20px;
  }
  .basket__wrap a {
    font-size: 13px;
    line-height: 18px;
  }
  .basket__btn1 {
    margin-bottom: 10px;
  }
  .basket__check label {
    font-size: 12px;
    line-height: 16px;
  }
  .basket__check input {
    margin-right: 10px;
  }
  .product {
    display: block;
  }
  .product h1 {
    margin-bottom: 36px;
  }
  .product .products {
    display: none;
  }
  .product .service {
    display: none;
  }
  .menu_mobile {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 74px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.12), 0px 1px 1px rgba(0, 0, 0, 0.05);
            box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.12), 0px 1px 1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
  }
  .menu_mobile__item {
    height: 100%;
    border: 0;
    background-color: transparent;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    color: #696969;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .menu_mobile__item.basket svg{
    top: 20px
  }

  .menu_mobile__item.open .header__navbar_mobi{
    display: none;
  }
  .menu_mobile__item.open .header__navbar_mobi{
    display: flex;
  }
  .menu_mobile__item .num {    
    width: 17px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 12px;
    left: 50%;
    background: #F41F1F;
    padding: 2px 4px;
    font-weight: 700;
    font-size: 10px;
    line-height: 14px;
    color: #FFFFFF;
    z-index: 2;
    border-radius: 40px;
    transform: translate(-50%, -50%);
  }
  .menu_mobile__item p {
    padding-bottom: 15px;
  }
  .menu_mobile__item svg {
    position: absolute;
    top: 15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .menu_mobile__item:last-child > span {
    position: absolute;
    bottom: -1000px;
  }
  .burgir {
    position: absolute;
    top: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 20px;
    height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 2px 0;
  }
  .burgir span {
    width: 100%;
    height: 3px;
    background: #222222;
    border-radius: 10px;
    display: block;
  }
  .product_img_slider {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 30px;
  }
  .product_img_slider .wrap {
    min-height: 208px;
    padding: 0 10px;
  }
  .product_img_slider .img {
    /* min-height: 208px; */
  }
  .product_img_nav {
    max-width: 206px;
    margin: 0 auto;
  }
  .product_img_nav .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 62px;
    padding: 0;
    margin: 0;
    border: 0;
    position: relative;
  }
  .product_img_nav .wrap::after {
    content: "";
    width: 62px;
    height: 62px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    border: 2px solid transparent;
    border-radius: 6px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .product_img_nav .slick-prev, .product_img_nav .slick-next {
    top: 0;
    bottom: auto;
    left: auto;
    right: auto;
    width: 20px;
    height: 100%;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  .product_img_nav .slick-prev {
    left: -60px;
  }
  .product_img_nav .slick-next {
    right: -60px;
  }
  .product_img_nav .slick-next::after {
    border-top: 1px solid #222222;
    border-bottom: 0;
  }
  .product_img_nav .slick-prev::after {
    border-bottom: 1px solid #222222;
    border-top: 0;
  }
  .product_img_nav .slick-slide.slick-current {
    border: 0;
  }
  .product_img_nav .slick-slide.slick-current::after {
    border-color: #F41F1F;
  }
  .product_img_nav .img {
    width: 52px;
    height: 52px;
  }
  .product__description {
    width: 100%;
    padding-top: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #ECECEC;
  }
  .tab {
    font-size: 13px;
    line-height: 18px;
  }
  .tab p {
    margin-bottom: 10px;
  }
  .tab h6 {
    font-size: 13px;
    line-height: 18px;
  }
  .tab__btn {
    width: calc(100% + 15px);
    overflow-x: auto;
    margin-top: 15px;
  }
  .tab__btn .btn {
    white-space: nowrap;
  }
  .product__aside {
    width: 100%;
  }
  .product__images {
    margin-bottom: 20px;
  }
  .product__images .product__aside {
    display: block;
    padding-top: 20px;
  }
  .product__images {
    max-width: 100%;
  }
  .product__content {
    max-width: 100%;
    position: relative;
  }
  .product__content .product__aside {
    display: none;
  }
  .product__price {
    padding-bottom: 20px;
  }
  .product__icon {
    width: 112px;
  }
  .product__icon img {
    width: 100%;
  }
  .product__price .price {
    font-size: 25px;
    line-height: 34px;
  }
  .product__price .price span {
    font-size: 14px;
  }
  .product__content > .green {
    position: absolute;
    top: 30px;
    right: 0;
    margin-bottom: 0;
    font-size: 13px;
    line-height: 18px;
  }
  .product__info {
    max-width: 300px;
    width: 100%;
  }
  .product__info .item {
    margin-bottom: 5px;
    margin-right: 5px;
    padding: 6px 10px;
    font-size: 10px;
    line-height: 14px;
  }
  .product__location {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 16px;
  }
  .product__location h5 {
    font-size: 16px;
    line-height: 24px;
  }
  .product__location a {
    font-size: 13px;
    line-height: 18px;
  }
  .product__location a svg {
    width: 18px;
    height: auto;
    margin-left: 4px;
  }
  .product__content {
    font-size: 13px;
    line-height: 20px;
  }
  .product__characteristics h6 {
    font-size: 13px;
    line-height: 20px;
    padding-left: 5px;
  }
  .product__characteristics p {
    padding-right: 5px;
  }
  .product__characteristics li::after {
    font-size: 13px;
    line-height: 20px;
    opacity: 0.5;
  }
  .product__characteristics li {
    margin-bottom: 5px;
  }
  .product__characteristics {
    margin-bottom: 30px;
  }
  .product__color p {
    margin-right: 16px;
  }
  .product__color {
    margin-bottom: 30px;
  }
  .product__add {
    padding: 15px;
    margin-top: -20px;
    padding-bottom: 0;
    margin-bottom: 10px;
  }
  .wrapper-items-list .wrap.item-list .block p {
    max-width: 100%;
  }
  .product__add .delete {
    width: 20px;
    height: 20px;
    right: -10px;
    top: 5px;
    bottom: auto;
  }
  .product__add .delete svg {
    width: 10px;
    height: 10px;
  }
  .product__add .block p {
    font-size: 10px;
    max-width: 65px;
    overflow: hidden;
    margin-bottom: 5px;
    white-space: nowrap;
  }
  .product__add .block {
    margin: 0;
  }

  .product__cart.desctop.no-calc{

  }
  .product__cart.desctop.no-calc .product-actions__oneclick .product__buy.btn2 {
    margin-left: 0px;
    text-align: center;
  }
  .product__cart.desctop.no-calc .product-actions__oneclick {
    width: 100%;
  }
  .product__cart.desctop.no-calc .btn_cart {
    width: calc(50% - 5px) ;
    margin-left: 5px;    
    margin-top: 0px;
}
  .product__cart.desctop.no-calc .product__quantity{
    width: calc(50% - 5px) ;
    margin-right: 5px;    
    margin-left: 0px;
}

  .product__add .wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 10px;
    margin-bottom: 15px;
  }
  .product__quantity {
    height: 36px;
  }
  .product__add .input input {
    height: 36px;
    padding: 0 10px;
    font-size: 14px;
    line-height: 19px;
  }
  .product__quantity .minus svg, .product__quantity .plus svg {
    width: 15px;
    height: auto;
  }
  .product__add .add {
    padding: 15px;
    font-size: 13px;
    line-height: 18px;
  }
  .product__cart .product__quantity {
    width: calc(50% - 5px);
    margin-left: 10px;
  }
  .product__cart {
    /* padding-bottom: 30px; */
    margin-top: 0px;
    margin-bottom: 20px;
  }
  .btn_cart {
    text-align: center;
    margin: 0;
    width: calc(50% - 5px);
    padding: 8px;
    font-size: 13px;
    line-height: 18px;
    /* margin-top: 15px; */
  }
  .product__buy {
    margin: 0;
    width: calc(50% - 5px);
    padding: 8px;
    font-size: 13px;
    line-height: 18px;
    margin-left: 10px !important;
    /* margin-top: 15px; */
  }
  .product__cart .price {
    min-width: 100%;
    margin: 0;
    margin-left: auto;
    font-size: 25px;
    line-height: 34px;
    text-align: right;
  }
  .product__cart .price span {
    font-size: 14px;
  }
  .product__cart .price:nth-child(2) {
    margin-left: 10px;
    margin-right: 0;
  }
  .product__bottom {
    font-size: 13px;
    line-height: 18px;
  }
  .product__bottom h3 {
    font-size: 20px;
    line-height: 27px;
    margin-bottom: 8px;
  }
  .product__bottom .item {
    max-width: 100%;
    margin-bottom: 10px;
  }
  .product__bottom .img {
    min-width: 60px;
    width: 60px;
    height: 60px;
    margin-right: 10px;
  }
  .product__bottom h5 {
    font-size: 18px;
    line-height: 25px;
  }
  .product__bottom h5 span {
    font-size: 13px;
  }
  .product__box {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
  }
  .product .container {
    padding-bottom: 30px;
  }
  .crumbs {
    width: calc(100% + 15px);
    margin-bottom: 10px;
    overflow-x: auto;
  }
  .crumbs li {
    padding: 1px 0 5px 0;
  }
  .footer__contacts {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-left: auto;
  }
  .footer__left {
    max-width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .footer .container {
    padding-top: 42px;
    padding-bottom: 90px;
    position: relative;
  }
  .footer__logo {
    width: 103px;
    height: 46px;
    margin-bottom: 40px;
    position: absolute;
    top: 40px;
    left: 15px;
  }

  .footer__kontur .footer__logo {
    position: relative;
  }
  .footer__kontur {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    /* margin-top: 30px; */
  }
  .footer__address {
    margin-top: -100px;
  }

  .footer__phone a {
    font-size: 13px;
    line-height: 18px;
  }
  .footer__phone .tel {
    font-size: 17px;
    line-height: 23px;
  }
  .footer__phone {
    margin-bottom: 24px;
  }
  .footer__email {
    font-size: 13px;
    line-height: 30px;
  }
  .footer__address h6 {
    font-size: 13px;

  }
 
  .footer__address {
    font-size: 13px;
    margin-bottom: 20px;
  }
  .footer__nav {
    display: none;
  }
  .main {
    width: 100%;
    overflow: hidden;
  }
  .news__wrap {
    display: none;
  }
  .news__wrap:nth-child(1), .news__wrap:nth-child(2) {
    display: block;
  }
}

.pagination {
  margin: 50px 0 0px;
}

.pagination__link_type_next, .pagination__link_type_prev{
  border: 1px solid #F41F1F;
  border-radius: 5px;
}
.pagination__link{
  border-radius: 5px;
}
.pagination__link_active:focus, .pagination__link_active:hover,
.pagination__link_active {
  background-color: #F41F1F;
}
.fancybox-content .content h2 {
  margin-top: 0;
}
.tab__block {
  padding: 0px 0px 0px 0px;
}

.tab__block iframe{
  width: 100%;
}

.content #tab-block-2 .catalog-element__calc-top a:focus,
.content .catalog-element__calc-top a {
  color: #F41F1F;
}

.content .catalog-element__calc-top a:focus, .content .catalog-element__calc-top a:hover {
  color: #FFF;
}
.product.good_day .catalog__price {
  display: flex;
  justify-content: space-between;
}
.product.good_day .products__wrap {
  padding: 10px;
}

.header__catalog a {
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header__catalog a:hover {
  text-decoration: none;
}

#productview.pv_fixed-widget .pv_head_ico {
  bottom: 85px !important;
}

@media screen and (max-width: 540px) {
  .banner__wrap {
      min-height: 170px;
  }
  .banner__wrap img {
    width: 100%;
  }
}

#message-add-to-basket{
  position: fixed;
  top: 170px;
  right: 20px;
  padding: 15px;
  /* background: #21b305; */
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  color: #FFFFFF;
  border: 0;
  z-index: 990;
  display: none;
}
#message-add-to-basket .content{    
  padding: 15px;
}
#message-add-to-basket .content a{    
  color: #FFFFFF;
}
#message-add-to-basket .content .btn1{    
  display: flex;
  margin-top: 10px;
  justify-content: center;
  color: #fff;
  background: #f84040 !important;

  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  padding: 12px 33px 14px 33px !important;
}
#message-add-to-basket .product-item-image-original{
  position: relative;
  display: block;
  width: 300px;
  height: 300px;
}
#message-add-to-basket a.product-card__title,
#message-add-to-basket .product-card__title,
#message-add-to-basket .title,
#message-add-to-basket button svg{
  color: #222222;
  max-width: 300px;
}
#message-add-to-basket a.product-card__title:hover{
  color: #F41F1F;
}
#message-add-to-basket .title{
  text-align: center;
  font-size: 20px;
}


@media (max-width: 426px) {
  .basket__aside {
      margin: 0;
    padding: 0 15px 0;
  }
}

.container .product__cart.desctop h5 {
  flex-grow: 1;
}

.container .product-detail__price {
  position: relative;
}
.banner__right.mobi {
  display: none;
}
@media screen and (max-width: 1210px) { 

  .banner__right.desktop {
    display: none;
  }
}

@media screen and (max-width: 768px) {  
  .prodCatalog__slider .slick-dots {
    display: flex;
    justify-content: center
  }
  
  img.banner__right.mobi {
    display: block;
    max-width: 425px;
    margin: 20px auto 0;
  }
  .banner__right.desktop {
    display: none;
  }

  .footer__soc a,
  .footer__soc a svg,
  .header__soc a svg,
  .header__soc a {
    width: 25px;
    height: 25px;
  }


}
@media screen and (max-width: 370px) {  
  .advantages__block p {
    max-width: 110px;
  }

}

.header__navbar .child {
  display: none;
}

.header__navbar .parent:hover .child {
  display: block;
}
.header__navbar a{
  text-decoration: none;
}
.header__navbar .parent:after {
  content: "";
  position: absolute;
  right: 4px;
  top: 13px;
  z-index: 1;
  width: 10px;
  height: 10px;
  background: #FFFFFF url(../img/down.svg) no-repeat center;
}
.header__navbar .parent {
  position: relative;
}
.header__navbar .parent > ul {
  position: absolute;
  min-width: 225px;
  left: 0;
  top: 30px;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  z-index: 50;
  box-shadow: 1px 4px 160px rgba(0, 0, 0, 0.05), 0px 1px 1px rgba(0, 0, 0, 0.05);
}

.product-item-scu-item-list.color-custom {
  padding-left: 5px;
}

.footer__kontur.logo {
  display: flex;
  flex-direction: column;
}

#mobi-wrapper {
  display: none;
}
.hide-count-wrapper { 
  position: fixed;
  top: -1000px;
  left: -1000px;
  opacity: 0;
}

#wrapper-items-list .width {
  cursor: not-allowed;
}

.bx-section-desc {
  margin-top: 60px;
}

#pop-up-city-contact .contact {
  text-align: end; 
  margin-top: 15px;
}
#pop-up-city-contact .contact a {
  color: #F41F1F;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  padding: 15px;
}

.sale-popup .title-popup {
  color: #222222;
  font-weight: 700;
  line-height: 1.1;
  font-size: 30px;
}

.catalog__grid .product-card {
  margin-top: 20px;
}
.product-card .catalog__price .btn1{
  color: #fff;
}



.product-item-image-original, .product-item-image-alternative {
  background-size: cover;
}

.wrap-fullSquare {
  display: flex;
  align-items: center;
  margin-left: 15px;
}

.wrap-fullSquare .price.fullSquare{
  font-size: 22px;
  color: #222222;
  font-weight: 600;
  margin-left: 10px;
}

#bx-soa-paysystem .bx-soa-section-content.container-fluid,
#bx-soa-delivery .order-info__container.bx-soa-pp-item-container {
  background: #ebedec4d;
  padding: 15px 15px 5px;
  border-radius: 8px;
}
