.productViewImagesContainer {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
  height: auto;
  margin: 0 auto;
}

.productViewContainer {
  position: relative;
  float: left;
  cursor: pointer;
  margin-right: 0%;
  margin-left: 0%;
  top: 0;
  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;
  overflow: hidden;
}

.productViewContainer:hover .figureBackground {
  display: block;
}

.productViewContainer .specGroupTitle {
  display: none;
}

.figureBackground {
  top: -3px;
  right: 0;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  background: unset;
  display: none;
}

.addWishlistProduct {
  background-image: url(../../files/heart.png);
  background-size: 45%;
}

.remove-WishlistProduct {
  background-image: url(../../files/heartFillPV.png);
  background-size: 45%;
}

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

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

.productViewContainer:hover .firstImg {
  opacity: 0;
}

.productViewTop {
  overflow: hidden;
  display: block;
  position: relative;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  -o-object-fit: contain;
  object-fit: contain;
  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;
  transition-property: opacity;
  transition-duration: 0.3s;
  padding: 15px 30px;
  box-sizing: border-box;
}

.productViewTop iframe {
  width: 100%;
  height: 100%;
}

.productViewBottom {
  height: auto;
  overflow: hidden;
  width: 100%;
  text-align: center;
  display: flex;
  /* flex-wrap: wrap; */
  align-items: center;
  /* align-content: flex-start; */
  position: relative;
  margin-top: 20px;
  font-size: var(--base-font-size);
  line-height: var(--base-line-height);
  flex-direction: column;
}

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

.productViewName {
  position: relative;
  margin-top: 10px;
  margin-bottom: 7px;
  height: auto;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
}

.productViewBottomRow {
  display: flex;
  justify-content: center;
  width: 100%;
  align-items: center;
  gap: 10px;
  color: #58595b;
}

.productBrand {
  text-transform: uppercase;
  color: var(--darkGrey);
  width: 100%;
  font-size: 12px;
  margin-top: 5px;
  font-weight: var(--semibold);
  margin-bottom: 5px;
  letter-spacing: 0.1em;
}

.productViewPrice {
  display: flex;
  position: relative;
  float: left;
  overflow: hidden;
  margin: 0;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: var(--regular);
  text-align: center;
  width: auto;
}
.badgeFile {
  position: absolute;
  width: auto;
  height: 30px;
  inset: 0;
  max-width: 100%;
  max-height: 100%;
  display: none !important;
}
.oldPrice {
  position: relative;
  color: #a5a5a5;
  margin-right: 6px;
  font-weight: var(--regular);
}

.oldPrice:before {
  position: absolute;
  content: "";
  left: 0;
  top: calc(50% - 3px);
  right: 0;
  border-top: 1px solid;
  border-color: inherit;
}

.bankPrice {
  position: relative;
  height: auto;
  overflow: hidden;
  display: flex;
  width: auto;
  font-size: 14px;
  font-weight: var(--regular);
  color: var(--base);
  /* display: none; */
  margin: 0;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.bankPriceRow {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.bankPriceImg {
  position: relative;
  height: 18px;
  margin-right: 5px;
  width: auto;
  margin-bottom: 5px;
}

.transferImg {
  height: 20px;
}

.bankPriceText {
  position: relative;
  float: left;
  font-size: 14px;
  /* margin-top: 5px; */
  color: #58595b;
}

.bank13 {
  color: var(--bbva);
}

.transferText {
  margin-left: 0;
}

.bankPriceText.bank4 {
  color: var(--santander);
}

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

.bankPriceText.bank5 {
  color: var(--scotia);
}

.bankPriceText.bank16 {
  color: var(--scotiaBlack);
}

.bankPriceText.bank12 {
  color: #000;
}

.badgesContainer {
  position: absolute;
  top: 15px;
  left: 15px;
  max-width: 25%;
}

.productViewContainer .lds-ring {
  display: none;
}

.productViewContainer .specGroupsContainer {
  height: auto;
}

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

  .figureBackground,
  .addWishlistProduct,
  .remove-WishlistProduct {
    width: 38px;
    height: 38px;
  }

  .productViewContainer .bankPriceRow {
    font-size: 14px;
    color: #58595b;
  }
  .bankPriceText {
    font-size: 16px;
  }
  .bankPriceImg {
    height: 14px;
    width: 14px;
  }
  .productViewImagesContainer {
    aspect-ratio: 1 / 1;
  }
  .productViewTop {
    overflow: hidden;
    padding: 0;
  }

  .productViewImage {
    height: auto;
  }

  .productSlide .badgeFile {
    top: 0;
  }

  .productViewName {
    margin-bottom: 15px;
    margin-top: 20px;
    margin-left: 0;
    font-size: 18px;
    font-weight: 500;
  }

  .slick-dotted .slick-slider {
    height: 400px;
    width: 100%;
  }

  .slider-nav {
    width: 0% !important;
  }

  .slider-for {
    margin-left: 0;
    width: 100%;
  }

  .productViewPrice {
    font-size: 16px;
    gap: 4px;
  }

  .oldPrice:before {
    border-top: 1px solid;
  }

  .productViewBottom {
    height: auto;
    min-height: 0;
  }

  .transferImg {
    height: 20px;
    margin-right: 7px;
    width: auto !important;
    margin-left: 25px;
  }

  .bankPrice {
    margin-left: 0;
    font-size: 16px;
  }

  .productViewContainer .figureBackground {
    opacity: 1;
    top: 0px;
    bottom: unset;
    display: block;
    right: 0;
  }

  .productViewContainer .specGroupsContainer {
    height: auto;
  }

  .groupContainer {
    margin-top: 5px;
    margin-bottom: 7px;
  }

  .quickView {
    display: none !important;
  }

  .productViewBottomRow {
    flex-direction: row;
    align-items: center;
    color: #58595b;
  }
}

@media screen and (min-width: 1100px) {
  .addWishlistProduct:hover {
    background-image: url(../../files/heartFillPV.png);
  }

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