.swiper {
  width: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  padding: 15px;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  margin: 0 auto;
}

.swiper-slide .produt-col {
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.swiper-slide .produt-col figure {
  padding: 0;
  margin: 0;
  position: relative;
}

.swiper-slide .produt-col figure .tag {
  position: absolute;
  right: 15px;
  top: 15px;
  background-color: #e64232;
  color: #fff;
  text-align: center;
  padding: 5px 15px;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 25px;
}

.swiper-slide .product-desc {
  text-align: left;
  padding: 20px;
  border: solid 1px #eee;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.swiper-slide .product-desc h2 {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
}

.swiper-slide .product-desc h2 a {
  color: #000000;
  text-decoration: none;
}

.swiper-slide .product-desc .price small {
  opacity: 0.5;
}

.swiper-slide .product-desc .small {
  font-size: 14px;
  color: #666;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  font-weight: 300;
  margin-bottom: 10px;
  margin-top: 5px;
}

.swiper-slide .product-desc .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.swiper-slide .product-desc .content .price {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  flex: 1;
  margin-top: 3px;
}

.swiper-slide .product-desc .content .btn-primary {
  background-color: #ff6f61;
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.swiper-slide .product-desc .content .btn-primary:hover {
  background-color: #e64232;
}

.swiper-pagination {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  background-color: #000;
  background-image: none;
  border-radius: 100%;
  padding: 20px;
  width: 25px;
  height: 25px;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: #ff6f61;
}

.swiper-button-prev:hover:after,
.swiper-button-next:hover:after {
  color: #fff;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 20px;
  font-weight: 600;
  color: #fff;

}

.swiper-button-prev:after {
  left: -1px;
  position: relative;
}

.swiper-button-next:after {
  right: -1px;
  position: relative;
}


@media (max-width: 767px) {

  .swiper-pagination {
    display: block;
  }

  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }

  .swiper-pagination-bullet-active {
    background: #ff6f61;
  }

}