.product-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-cart {
  background: #fff;
  -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 20px 15px;
  max-width: 290px;
  width: 100%;
  margin: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.product-cart:not(:last-of-type) {
  margin-bottom: 20px;
}
.product-cart__slider {
  width: 240px;
  margin: auto auto 20px;
}
.product-cart__title {
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  color: #000;
  margin-bottom: 10px;
}
.product-cart__slide {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 170px;
}
@media screen and (min-width: 480px) {
  .product-cart {
    max-width: 370px;
    border-radius: 50px;
    padding: 48px 36px;
  }
  .product-cart__slider {
    width: 300px;
    margin-bottom: 25px;
  }
  .product-cart__title {
    font-size: 22px;
  }
  .product-cart__slide {
    height: auto;
  }
}
@media screen and (min-width: 640px) {
  .product-cart {
    max-width: calc(50% - 10px);
    padding: 20px 15px;
    margin: 0;
  }
  
  .product-cart:nth-of-type(5) {
    margin-bottom: 0;
  }
  .product-cart__slider {
    width: 220px;
    margin-top: 0;
    margin-bottom: 30px;
  }
  .product-cart__title {
    font-size: 21px;
  }
  .product-cart__slide {
    height: 170px;
  }
}
@media screen and (min-width: 768px) {
  .product-cart {
    padding: 30px 25px;
  }
  .product-cart__slider {
    width: 270px;
  }
  .product-cart__title {
    font-size: 22px;
    margin-bottom: 18px;
  }
  .product-cart__slide {
    height: auto;
  }
}
@media screen and (min-width: 1024px) {
  .product-cart {
    max-width: calc(100% / 3 - 10px);
    padding: 30px 17px;
  }
  .product-cart:not(:last-of-type) {
    margin-bottom: 0;
  }
  .product-cart:nth-of-type(-n + 3) {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1220px) {
  .product-cart {
    max-width: calc(100% / 3 - 20px);
    padding: 30px 25px;
  }
  .product-cart__slider {
    width: 290px;
  }
}
@media screen and (min-width: 1620px) {
  /* .product-cart {
    margin: 0;
    max-width: 370px;
    border-radius: 50px;
    padding: 48px 30px;
  } */
  .product-cart:nth-of-type(-n + 3) {
    margin-bottom: 30px;
  }
  .product-cart__slider {
    width: 310px;
  }
}