.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;
  font-family: var(--font-family);
}
.productViewContainer:hover {
  top: -5px;
}

.productViewAditionalInfo {
  position: relative;
  width: 100%;
  height: 15px;
  font-size: 14px;
  line-height: 13px;
  color: var(--second);
  margin-bottom: 8px;
  font-weight: 400;
}

.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 {
  overflow: hidden;
  display: block;
  position: relative;
  width: 100%;
  z-index: 0;
  aspect-ratio: 1/1;
  background-color: #d8d8d8;
  display: flex;
  justify-content: center;
  transition: all 0.2s ease-out;
}
.figureBackground {
  top: 10px;
  bottom: unset;
  z-index: 1;
}

.productSlide .figureBackground {
  top: 10px;
  bottom: unset;
}
.productViewContainer.discount .productViewImageContainer {
  background-color: white;
  border-color: var(--first);
}

.productViewContainer:hover .productViewImageContainer {
  /* transform: translateY(-20px); */
}

.productViewImage {
  position: relative;
  margin: auto;
  width: 75%;
  height: 75%;
  aspect-ratio: 1/1;
}
.productViewContainer:hover .productViewImageContainer {
  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;
  overflow: hidden;
  color: black;
  margin: 15px auto;
}
.productViewData .productViewName {
  width: 100%;
}
.productViewData.productViewName {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.productViewData div:not(.price),
.productViewData h2 {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: auto;
  line-height: 24px;
  font-size: 18px;
  margin: 0px auto;
  font-weight: 500;
  display: flex;
  align-items: center;
}
#productAuthor {
  font-family: var(--font-family-2);
  font-size: 15px;
}
.productViewName {
  text-transform: uppercase;
}

.productViewAuthor {
  font-size: 15px !important;
  font-family: "Galliard Pro" !important;
}

.productViewPriceContainer {
  display: flex;
  align-items: center;
  justify-content: start;
  color: var(--first);
}

.productViewPriceContainer .price {
  position: relative;
  font-weight: 500;
  margin-top: 8px;
}

.productViewOldPrice {
  margin-right: 10px;
}

.productViewOldPrice::before {
  position: absolute;
  content: "";
  left: 0;
  top: calc(50% - 1px);
  border-top: 2px solid;
  border-color: inherit;
  width: 110%;
  /* -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: 100%;
  overflow: auto;
  height: auto;
  line-height: 24px;
  font-size: 18px;
  /* margin: 7px auto; */
  margin-right: 8px;
  font-weight: 500;
}
.bankPrice .bankPriceRow {
  position: relative;
  width: auto !important;
  float: left !important;
  margin-left: 0 !important;
  overflow: visible;
  display: flex;
  align-items: center;
}
.bankPriceImg {
  position: relative;
  width: 18px;
  margin-right: 0.2rem;
}

.bankPriceText {
  position: relative;
  float: left;
}
.addWishlistProduct {
  background-image: url(../../files/heartIcon.svg);
}
.remove-WishlistProduct {
  background-image: url(../../files/heart-filled.svg);
}

.discount .productViewImageContainer {
  border: 2px solid;
  background-color: white;
  border-color: #a2122e;
}

.book .productViewImageContainer {
  border: 2px solid #d8d8d8;
}
@media screen and (max-width: 768px) {
  .productViewContainer {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
  }
  .slick-slide {
    display: none;
    float: left;
    height: 126%;
    min-height: 1px;
  }
  .productSlide .productViewContainer {
    height: unset;
  }
}
@media screen and (min-width: 1100px) {
  .addWishlistProduct:hover {
    background-image: url(../../files/heart-filled.svg);
  }
  .remove-WishlistProduct:hover {
    background-image: url(../../files/heartIcon.svg);
  }
}
