.productViewContainer {
  position: relative;
  width: 100%;
  height: auto;
  cursor: pointer;
  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;
  width: 100%;
  box-sizing: border-box;
  border-radius: 12px;
}
.productViewContainer:hover .figureBackground .addWishlistProduct {
  opacity:1;
}

.productViewAditionalInfo {
  position: relative;
  width: 100%;
  height: 15px;
  font-size: 14px;
  line-height: 13px;
  color: var(--second);
  margin-bottom: 8px;
  font-weight: 400;
  display: none;
}

.productViewAditionalInfo.altColor {
  color: #a0a0a0;
}

.secondImg {
  opacity: 0;
  position: absolute !important;
  left: 0px;
  top: 0px;
}

.productViewContainer:hover .secondImg {
  opacity: 1;
}

.productViewTop.firstImg,
.productViewTop.secondImg {
  height: 300px !important;
}

.productViewImageContainer {
  display: block;
  position: relative;
  width: 100%;
  z-index: 0;
  aspect-ratio: 1/1;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  transition: all 0.2s ease-out;
  background: var(--product-card-bkg);
  border-radius: 12px;
  padding: 30px;
  box-sizing: border-box;
}
.figureBackground {
  right: 8px;
  z-index: 1;
  bottom: 8px;
  background: transparent;
  border-radius: 100px;
}

.productSlide .figureBackground {
  /* top: 10px; */
  bottom: 4px;
  transition: 0.3s all ease;
}
.productViewContainer.discount .productViewImageContainer {
  background-color: white;
  border-color: var(--first);
}

.productViewContainer:hover .productViewImageContainer {
  /* transform: translateY(-20px); */
}

.productViewImage {
  position: relative;
  /* margin: auto; */
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  transition: 0.3s all ease;
}
.productViewContainer:hover .productViewImageContainer .productViewImage {
  opacity: 0.7;
}
.backgroundImage {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.coffeeShop .productViewImage {
  height: 100%;
  width: 100%;
  background-size: cover;
}

.productViewData {
  position: relative;
  width: 100%;
  text-align: left;
  height: auto;
  color: var(--base);
  margin: 18px auto 8px;
  font-size: var(--base-font-size);
  line-height: var(--base-line-height);
}
.productViewData .productViewName {
  width: 100%;
  align-items: start;
  line-height: 18px;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 400;
}
.productViewData.productViewName {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.productViewData div:not(.price),
.productViewData h2 {
  position: relative;
  width: fit-content;
  overflow: hidden;
  height: auto;
  margin: 0px;
  display: flex;
  gap: 4px 12px;
  align-items: center;
  float: left;
  line-height: 24px;
}

#productAuthor {
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 600;
}
.productViewName {
  /* text-transform: uppercase; */
}

.productViewAuthor {
  font-size: 15px !important;
  font-family: "Galliard Pro" !important;
}

.productViewPriceContainer {
  display: flex;
  align-items: center;
  justify-content: start;
}
.productViewContainer .productViewData .productViewPriceContainer {
    /* margin-bottom: 8px; */
    /* margin-top: 8px; */
    margin-right: 12px;
}


.productViewPriceContainer .price {
  position: relative;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  /* margin-top: 4px; */
  /* margin-bottom: 8px; */
}

.productViewOldPrice {
  /* margin-right: 10px; */
  color: #646F2560;
}

.productViewOldPrice::before {
  position: absolute;
  content: "";
  left: 0;
  top: calc(50% - 1px);
  border-top: 1px solid;
  border-color: #646F2560;
  width: 100%;
  /* -webkit-transform: rotate(5deg);
        -moz-transform: rotate(5deg);
        -ms-transform: rotate(5deg);
        -o-transform: rotate(5deg);
        transform: rotate(5deg); */
}

.productViewContainer.discount .productViewPrice::before {
  position: relative;
  content: "/";
  width: auto;
}

.badgeFile {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 90px;
}

#MMFiles .badgeFile {
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
}
.bankPrice {
  width: 100%;
  display: flex;
}
.bankPrice div:not(.price),
.bankPrice h2 {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  flex-direction: row;
  height: auto;
  /* margin-right: 8px; */
  flex-wrap: wrap;
  font-weight: 400;
  font-size: 20px;
  gap: 0px;
}

.bankPriceImg {
  position: relative;
  width: 18px;
  margin-right: 4px;
}

.bankPriceText {
  position: relative;
  float: left;
}

.addWishlistProduct {
   background-image: url(../../files/heartIcon.png);
   background-size: 54%;
   background-repeat: no-repeat;
   height: 26px;
   width: 26px;
   background-position: center;
   z-index: 1;
   position:relative;
   background-color: var(--base-aux);
   border-radius:100px
}

.remove-WishlistProduct {
  background-image: url(../../files/heart-filled.svg);
  height: 26px;
  width: 26px;
  background-size: 54%;
  background-color: var(--base-aux);
  border-radius: 100px;
}

.discount .productViewImageContainer {
  border: 2px solid;
  background-color: white;
  border-color: #a2122e;
}

.book .productViewImageContainer {
  /* border: 2px solid #d8d8d8; */
}

.bankPriceText.bank22 {
  color: var(--itau);
}

.bankPriceText.bank4 {
  color: var(--santander);
}
.bankPriceText.bank1 {
  color: var(--itau);
}
.bankPriceText.bank5 {
  color: var(--scotia);
}
.bankPriceText.bank16 {
  color: var(--scotiaBlack);
}
.bankPriceText.bank12 {
  color: #000;
}


@media screen and (max-width: 768px) {
  .productViewContainer {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    padding: 0;
  }
.productViewImageContainer {

  padding:20px;

}
  .productViewPriceContainer .price {
  position: relative;
  /* font-weight: 700; */
  margin: 0px;
  font-size: 16px;
  line-height: 20px;
}
.productViewData div:not(.price),
.productViewData h2 {
  /* gap: 4px 8px; */
}
  
  .bankPrice div:not(.price),
.bankPrice h2 {
  position: relative;
  margin: 0;
  gap: 0;
  font-size: 16px;
}
.bankPriceImg {
        height: 14px !important;
        width: 14px;
    }
  .productViewData {
  font-size: 14px;
  line-height: 14px;
  margin-top: 14px;
}
  #productAuthor {
   /* font-size:8px; */
}
  .productViewContainer:nth-child(odd) {
    border-left: none;
  }
   .productViewContainer:nth-child(even) {
    border-left: none;
    border-right: none;
  }
  .figureBackground {
  height: 24px;
  width: 24px;
  right: 4px;
  bottom: 4px;
  z-index: 1;
  background: transparent;
  opacity: 1;
  background: #DBD7C7;
}
  .productViewContainer:nth-child(3), .productViewContainer:nth-child(4){
    border-top: none;
  }
  .slick-slide {
    display: none;
    float: left;
    height: 126%;
    min-height: 1px;
  }
  .productSlide .productViewContainer {
    height: unset;
  }
  .productViewContainer .figureBackground .addWishlistProduct {
  opacity:1;
  height: 24px;
  width: 24px;
}
}
@media screen and (min-width: 1100px) {
  .addWishlistProduct:hover {
    background-image: url(../../files/heart-filled.svg);
    background-size: 54%;
  }

  .remove-WishlistProduct:hover {
    background-image: url(../../files/heartIcon.png);
    background-size: 54%;
  }
}
  