@import url("style.scss");
.product-card {
  border-radius: 25px;
  -webkit-transition: all .5s linear;
  transition: all .5s linear;
  padding: 10px 0;
  margin-bottom: 35px;
}

.product-card .img-box {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.product-card .img-box img {
  width: 75%;
  height: 100%;
  display: block;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.product-card .img-box .icons-wrapper {
  position: absolute;
  top: 10px;
  left: 10px;
}

.product-card .img-box .icons-wrapper .icon {
  display: block;
  width: 35px;
  height: 35px;
  background-color: #202020;
  border: 1px solid #202020;
  color: #fff;
  border-radius: 50%;
  margin: 5px 0;
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
}

.product-card .img-box .icons-wrapper .icon:nth-of-type(1) {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.product-card .img-box .icons-wrapper .icon:nth-of-type(2) {
  -webkit-transition: all .6s linear;
  transition: all .6s linear;
}

.product-card .img-box .icons-wrapper .icon:nth-of-type(3) {
  -webkit-transition: all .9s linear;
  transition: all .9s linear;
}

.product-card .img-box .badge {
  width: 100px;
  height: 35px;
  line-height: 35px;
  background-color: #222;
  color: #fff;
  display: block;
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 0;
}

.product-card .card-body .prod-name,
.product-card .card-body .price {
  font-weight: bold;
  color: #000;
}

.product-card .card-body .desc {
  margin-bottom: .5rem;
}

.product-card:hover {
  -webkit-box-shadow: 0 0 35px 0 #eee;
          box-shadow: 0 0 35px 0 #eee;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.product-card:hover .icons-wrapper .icon {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}
/*# sourceMappingURL=product-style.css.map */