.product__item * {
   z-index: 20;
 }
 .product__item:hover .product__img_front {
   opacity: 0;
 }
 .product__item:hover .product__img_back {
   opacity: 1;
 }
 .product__img-wrapper {
   background-color: transparent;
   padding-bottom: 0;
 }
 .product__img {
   position: absolute;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
   max-width: 100%;
   max-height: 100%;
   margin: auto;
   transition: .3s ease;
   object-fit: cover;
   z-index: 10;
 }
 .product__img_front {
   opacity: 1;
 }
 .product__img_back {
   opacity: 0;
 }
 .filter-btn {
   border: 1px solid transparent;
 }
 .filter-btn:hover,
 .filter-btn:active,
 .filter-btn:focus {
   outline: none;
 }
 .active.size-item {
   border: 1px solid #4abc84;
 }
 @media (max-width: 700px) {
   .catalog__wrapper {
     margin-top: 0px;
   }
   .catalog-filter__btn_mob {
     margin-left: auto;
     margin-right: auto;
   }
 }
 @media (max-width: 992px) {
   .catalog__filter {
     z-index: -2;
   }
   .catalog__filter.mob_view {
     z-index: 1000;
   }
 }
  .sect-basket .product__img {
    position: static;
  }