.productViewContainer {
  position: relative;
  float: left;
  width: 24%;
  padding-top: 10px;
  height: auto;
  background-color: #fff;
  border-radius: 15px;
  cursor: pointer;
  margin-right: .5%;
  margin-left: .5%;
  box-shadow: 0 0 9px 4px rgb(0 0 0 / 4%);
  top: 0;
  margin-bottom: 40px;
  transition: top 0.2s ease-out;
  -moz-transition: top 0.2s ease-out;
  -webkit-transition: top 0.2s ease-out;
  -o-transition: top 0.2s ease-out
}

.productSlide .productViewContainer {
  width: 95%;
  min-height: 350px;
  height: auto!important;
  margin-bottom: 10px;
  border-radius: 10px;
  margin-top: 15px
}

.productViewContainer:hover {
  top: -10px
}

.productSlide .figureBackground {
  bottom: 88px
}

.noProductsImgContainer img {
  width: 40%;
  display: inherit;
  margin-left: 23%;
  position: relative
}

.hoverImg {
  background: #fff;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 11;
  opacity: .5;
  border-radius: 15px
}

.buyContainer {
  background-image: url(../../files/no-stock.png);
  background-size: contain;
  height: 50px;
  background-repeat: no-repeat;
  width: 50%;
  position: absolute;
  top: 130px;
  left: 25%;
  z-index: 99
}

.buyContainer.preOrder {
  background: #097bed;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  height: 20px;
  border-radius: 10px;
  text-transform: uppercase;
  line-height: 20px;
  color: #fff;
  margin: 10px 0 15px;
  padding: 10px 15px;
  cursor: pointer;
}

.productViewTop {
  position: relative;
  width: 80%;
  height: 15.5vw;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin: auto;
  transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out
}

.productViewBottom {
  height: auto;
  overflow: hidden;
  width: 100%;
  display: block;
  text-align: center;
  padding-bottom: 5px
}

.productViewImage {
  height: 100%;
  width: 100%
}

.productViewName {
  overflow: hidden;
  color: #575757;
  font-size: 17px;
  line-height: 21px;
  margin-bottom: 0;
  margin-top: 5px;
  height: 42px;
  width: calc(100% - 20px);
  margin-left: 15px;
  text-align: left
}

.productViewPrice {
  overflow: hidden;
  color: #564b4b;
  width: fit-content;
  font-size: 18px;
  margin-left: 15px;
  font-family: "Baloo-Chettan";
  float: left;
  font-weight: 500;
  text-align: left;
  padding-top: 5px;
  padding-bottom: 5px
}

.badgeFile {
  position: absolute;
  top: 0;
  left: 0;
  width: 68px;
  height: auto
}

.oldPrice {
  position: relative;
  color: #9e9e9e;
  font-size: 17px;
  float: right;
  margin-left: 12px
}

.oldPrice:before {
  position: absolute;
  content: "";
  left: 0;
  top: 9px;
  right: 0;
  border-top: 2px solid;
  border-color: inherit;
  -moz-transform: rotate(5deg);
  -ms-transform: rotate(5deg);
  -o-transform: rotate(5deg);
  color: #8b8b8b
}

.bankPrice {
  position: relative;
  font-size: 13px;
  color: #d93128;
  line-height: 35px;
  min-height: 35px;
  height: 34px;
  overflow: hidden;
  width: 95%;
  display: flex;
  border-radius: 10px;
  margin: 0 auto;
  gap: 6px
}

.greyBk.bankPrice {
  background: rgb(158 158 158 / 10%);
  width: calc(95% - 4px);
  padding-left: 4px
}

.bankPriceRow {
  height: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-right: 13px;
}

.bankPriceRow.onlyRow {
  justify-content: flex-start
}

.bankPriceImg {
  position: relative;
  height: 16px;
  /* max-width: 32px; */
  margin-right: 4px
}

.greyBk .bankPriceText {
  font-size: 14px
}

.bankPriceText {
  position: relative;
  font-weight: 600;
  font-size: 16px;
  font-family: "Baloo-Chettan"
}

.bankPriceText[data-bank-id="12"] {
  color: #000
}

.addWishlistProduct {
  background-image: url(../../files/wishlistHeart.png);
  height: 45px;
  width: 45px
}

.remove-WishlistProduct {
  background-image: url(../../files/heartFilled.png);
  height: 45px;
  width: 45px
}

.addWishlistProduct:hover {
  background-image: url(../../files/heartFilled.png)
}

.remove-WishlistProduct:hover {
  background-image: url(../../files/wishlistHeart.png)
}

.figureBackground {
  z-index: 1
}

.noProductsImgContainer {
  width: 100%;
  display: flex;
  margin: 0 0% 0 0%;
  margin-top: 20px;
  text-align: center;
  position: relative
}

@media screen and (max-width: 1410px) {
  .productViewPrice {
      width:calc(60% - 15px);
      font-size: 16px
  }
}

@media screen and (min-width: 769px) and (max-width:1100px) {
  .widthContainer {
      width:100%;
      min-width: 0
  }

  .productViewContainer {
      width: 30%;
      margin-right: 1.5%;
      margin-left: 1.5%
  }

  .productViewName {
      font-size: 15px;
      height: 40px;
      margin-left: 10px
  }

  .productViewPrice {
      font-size: 16px;
      margin-left: 10px;
      width: 100%
  }

  .bankPrice {
      font-size: 13px
  }

  .productSlide .productViewContainer {
      min-height: 300px
  }
}

@media screen and (max-width: 768px) {
  .productViewContainer {
      width:48%;
      height: auto;
      overflow: hidden;
      margin-bottom: 15px;
      padding-top: 10px;
      text-align: center;
      margin-right: 1%;
      margin-left: 1%
  }

  .productViewBottom {
      width: 90%;
      margin: auto
  }

  .productViewTop {
      height: 41.5vw;
      width: 90%
  }

  .productViewImage {
      height: auto
  }

  .productSlide .figureBackground {
      top: 5px;
      right: 4px
  }

  .productViewName {
      font-size: 13px;
      margin-bottom: 0;
      margin-top: 0;
      margin-left: 0;
      align-items: center;
      height: 42px;
      width: 100%;
      display: flex;
      line-height: 14px
  }

  .productViewPrice {
      font-size: 14px;
      margin-left: 0;
      margin-top: 0;
      width: 100%;
      padding-bottom: 0;
      height: 19px;
      line-height: 15px
  }

  .oldPrice {
      font-size: 14px
  }

  .oldPrice:before {
      top: 7px
  }

  .bankPriceImg {
      width: 2.8vh!important
  }

  .greyBk .bankPriceImg {
      margin-right: 0
  }

  .bankPriceText {
      font-size: 15px;
      line-height: unset
  }

  .greyBk .bankPriceText {
      font-size: 12.5px;
      line-height: 12px
  }

  .productSlide .productViewContainer {
      min-height: 260px
  }

  .badgeFile {
      top: -10px;
      width: 50px!important
  }

  .addWishlistProduct {
      height: 35px;
      width: 35px
  }

  .productViewContainer:hover {
      top: 0
  }

  .remove-WishlistProduct {
      height: 35px;
      width: 35px
  }

  .remove-WishlistProduct:hover {
      background-image: url(../../files/heartFilled.png)
  }

  .noProductsImgContainer {
      width: 100%;
      margin: auto;
      display: flex;
      margin-top: 20px;
      margin-bottom: 20px;
      align-items: center
  }

  .noProductsImgContainer img {
      width: 50%;
      margin: auto
  }

  .bankPrice {
      height: 41px;
      width: 100%;
      border-radius: 5px;
      gap: 5px;
      display: flex;
      align-items: center
  }

  .bankPrice.greyBk {
      display: grid;
      width: calc(99% - 4px);
      grid-template-columns: repeat(3,1fr)
  }

  .greyBk .bankPriceRow {
      flex-direction: column
  }
}
