.productViewContainer {
  position: relative;
  float: left;
  width: 99%;
  height: auto;
  cursor: pointer;
  box-sizing: border-box;
  top: 0px;
  background: #f9f9f9;
  transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
}
.greenBkg {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease-out;
  -moz-transition: opacity 0.5s ease-out;
  -webkit-transition: opacity 0.5s ease-out;
  -o-transition: opacity 0.5s ease-out;
  background: rgba(77, 160, 52, 0.5);
}
.productViewContainer:hover .greenBkg {
  opacity: 0.5;
}

.productViewContainer:hover {
  box-shadow: 4px 16px 11px rgb(0 0 0 / 2%);
}

.figureBackground {
  display: none;
  background: #f4f4f4;
  position: absolute;
  background-repeat: no-repeat;
  z-index: 1;
  right: 5%;
  top: 18px;
  height: 30px;
  width: 30px;
  border-radius: 50%;
}

.buyText {
  text-align: center;
  font-size: 13px;
  font-weight: 300;
}

.productViewTop {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.productViewTopImg {
  overflow: hidden;
  display: block;
  height: 70%;
  position: absolute;
  top: 15%;
  left: 15%;
  width: 70%;
  mix-blend-mode: multiply;
  margin: auto;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  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;
}
.productViewTopImg.secondImg {
  opacity: 0;
}
.productViewContainer:hover .productViewTopImg.firstImg {
  opacity: 0;
}
.productViewContainer:hover .productViewTopImg.secondImg {
  opacity: 1;
}
.productViewBottom {
  min-height: 6rem;
  height: 8rem;
  overflow: hidden;
  width: 85%;
  padding-top: 0.5rem;
  padding-bottom: 1rem;
  margin: auto;
  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;
}

.productViewName {
  position: relative;
  float: left;
  color: #464646;
  font-size: 1.6rem;
  height: auto;
  overflow: hidden;
  margin: 0rem 0 1rem;
  font-weight: 400;
  line-height: 2rem;
  display: flex;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.priceContainer {
  float: left;
  width: 100%;
  overflow: hidden;
}

.productViewPrice {
  position: relative;
  height: auto;
  display: block;
  width: 100%;
  float: left;
  overflow: hidden;
  color: #464646;
  font-size: 1.6rem;
  text-align: center;
  font-weight: 600;
}

.bankPrice {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  font-size: 13px;
  color: #ee3223;
  line-height: 27px;
  display: inline-block;
  font-weight: 600;
  margin-top: 0px;
}

.remove-WishlistProduct {
  background-size: 50%;
  height: 40px;
  width: 40px;
}
.remove-WishlistProduct:hover {
  background-image: url(../../files/heartWishlist.svg);
}

.productGo {
  color: #464646;
  background-color: #ffffff;
  font-size: 1.6rem;
  text-align: center;
  width: 14rem;
  position: absolute;
  line-height: 3.5rem;
  border-radius: 2.5rem;
  top: calc(50% - 1.75rem);
  left: calc(50% - 7rem);
  transition: background-color 0.4s ease-out;
  -moz-transition: background-color 0.4s ease-out;
  -webkit-transition: background-color 0.4s ease-out;
  -o-transition: background-color 0.4s ease-out;
}
.productGo:hover {
  color: #ffffff;
  background-color: #4da034;
}

/* view more effect */

/* view more entrance */
.productViewContainer:hover .productGo.slide-in-blurred-bottom {
  -webkit-animation: slide-in-blurred-bottom 0.6s
    cubic-bezier(0.455, 0.03, 0.515, 0.955) 0.2s both;
  animation: slide-in-blurred-bottom 0.6s
    cubic-bezier(0.455, 0.03, 0.515, 0.955) 0.2s both;
}

@-webkit-keyframes slide-in-blurred-bottom {
  0% {
    -webkit-transform: translateY(30rem) scaleY(2.5) scaleX(0.2);
    transform: translateY(30rem) scaleY(2.5) scaleX(0.2);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-filter: blur(40px);
    filter: blur(40px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0) scaleY(1) scaleX(1);
    transform: translateY(0) scaleY(1) scaleX(1);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes slide-in-blurred-bottom {
  0% {
    -webkit-transform: translateY(30rem) scaleY(2.5) scaleX(0.2);
    transform: translateY(30rem) scaleY(2.5) scaleX(0.2);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-filter: blur(40px);
    filter: blur(40px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0) scaleY(1) scaleX(1);
    transform: translateY(0) scaleY(1) scaleX(1);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}
/* view more exit */
.productGo {
  -webkit-animation: slide-out-blurred-bottom 0.3s
    cubic-bezier(0.755, 0.05, 0.855, 0.06) both;
  animation: slide-out-blurred-bottom 0.3s
    cubic-bezier(0.755, 0.05, 0.855, 0.06) both;
}

@-webkit-keyframes slide-out-blurred-bottom {
  0% {
    -webkit-transform: translateY(0) scaleY(1) scaleX(1);
    transform: translateY(0) scaleY(1) scaleX(1);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(30rem) scaleY(2) scaleX(0.2);
    transform: translateY(30rem) scaleY(2) scaleX(0.2);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-filter: blur(40px);
    filter: blur(40px);
    opacity: 0;
  }
}
@keyframes slide-out-blurred-bottom {
  0% {
    -webkit-transform: translateY(0) scaleY(1) scaleX(1);
    transform: translateY(0) scaleY(1) scaleX(1);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(30rem) scaleY(2) scaleX(0.2);
    transform: translateY(30rem) scaleY(2) scaleX(0.2);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-filter: blur(40px);
    filter: blur(40px);
    opacity: 0;
  }
}
/*end of view more effect */

/*------------------------------ AGREGADO-------------------- */

.fastBuyContainer {
  display: none;
  position: relative;
  width: calc(100% - 2px);
  height: 35px;
}

.fastBuyContainer.visible {
  display: flex;
  justify-content: space-evenly;
}

.fastBuySelectContainer {
  display: flex;
  align-items: center;
  width: 65%;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  border-radius: 25px;
  text-align: center;
  border: 1px solid #d6d6d6;
}

.fastBuyContainer .fastBuyMinusSign {
  left: 0;
  z-index: 2;
}

.fastBuyContainer .fastBuyPlusSign {
  right: 0;
  z-index: 2;
}

.fastBuyContainer .productQuantityFastBuy {
  border: 0px;
  color: #000000;
  position: relative;
  width: 30px;
  border: 0px;
  text-align: center;
  color: #000000;
  padding: 0px;
  width: 90%;
  margin: auto;
  position: relative;
}

.fastBuyAddToCart {
  line-height: 31px;
  width: 55%;
  height: 100%;
  background-color: #3392fc;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  text-transform: capitalize;
  cursor: pointer;
  color: #ffffff;
  border-radius: 25px;
  margin-left: 5px;
  box-sizing: border-box;
  border: 2px solid transparent;
}

.fastBuyAddToCart:hover {
  border: 2px solid #3392fc;
  color: #3392fc;
  background-color: #ffffff;
}

.addedToCartBadge.visible {
  display: block;
}

.addedToCartBadge::before {
  content: "";
  background-image: url("../../files/cartIcon.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 14px;
  position: absolute;
  top: 26%;
  left: 19.5%;
}

.priceBanner {
  position: absolute;
  top: 18px;
  left: 0px;
  width: 65px;
  display: none !important;
  height: 24px;
  z-index: 1;
  background: #ffae00;
  color: white;
  display: flex;
  align-items: center;
  padding-right: 10px;
  font-size: 14px;
  justify-content: flex-end;
}

.priceBanner strong {
  font-weight: 800;
  margin-left: 5px;
}

.fastBuyContainer .fastBuyMinusSign,
.fastBuyContainer .fastBuyPlusSign {
  width: 40%;
  text-align: center;
  color: black;
  position: absolute;
}

.addedToCartBadge {
  width: 25px;
  height: 25px;
  display: none;
  color: white;
  background: #3392fc;
  border-radius: 100%;
  left: 6.5%;
  position: absolute;
  top: 20px;
}

.addedToCartBadge::before {
  width: 14px;
  top: 5px;
}

.noStockAlert {
  display: none;
  color: red;
  font-weight: 600;
  width: 100%;
  height: 25px;
  line-height: 10px;
  font-size: 12px;
}

.noStockAlert.open {
  display: flex;
  position: relative;
  justify-content: center;
  bottom: 5px;
  line-height: 12px;
}

.noStockAlert::before {
  content: "";
  background-image: url("../../files/alertIcon.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px;
  width: 12px;
  height: 12px;
  position: relative;
  left: -2%;
  bottom: 1px;
}

/* end of fastAdded */

@media screen and (max-width: 1280px) {
  .noStockAlert {
    font-size: 11px;
  }

  .noStockAlert::before {
    left: -2px;
  }
}

@media screen and (min-width: 1681px) and (max-width: 1920px) {
  .noStockAlert::before {
    left: -1%;
  }
}

@media screen and (max-width: 768px) {
  .productViewContainer {
    box-shadow: none;
    width: 100%;
    height: auto;
    overflow: hidden;
    padding-top: 15px;
    text-align: center;
  }

  .productViewTop {
    overflow: visible;
    width: 90%;
    margin: auto;
  }

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

  .productViewImage {
    height: auto;
  }

  .productSlide .badgeFile {
    top: 15px;
    width: 50%;
    display: none;
    margin: inherit;
  }

  .productViewName {
    font-size: 1.3rem;
    text-align: center;
    line-height: 1.7rem;
    height: 3.4rem;
    margin-top: 1rem;
    display: block;
  }

  .productViewPrice {
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 10px;
  }

  .productViewBottom {
    width: 83%;
    height: auto;
  }

  .productSlide .figureBackground {
    right: -8px;
  }

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

  .buyContainer {
    width: 73%;
    min-width: 160px;
    height: 32px;
    line-height: 32px;
    top: -7px;
  }
  .productSlide .buyText {
    font-size: 12px;
  }
  .productViewContainer:hover .buyContainer {
    top: -7px;
  }

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

  .fastBuyContainer.visible {
    width: 100%;
    height: 30px;
    position: relative;
    line-height: 30px;
    top: -7px;
  }

  .productViewContainer:hover .fastBuyContainer {
    top: 0px;
  }

  .fastBuySelectContainer {
    justify-content: space-between;
  }

  .fastBuySelectContainer,
  .fastBuyAddToCart {
    font-size: 12px;
  }

  .fastBuyContainer .productQuantityFastBuy {
    text-align: center;
  }

  .fastBuyAddToCart {
    line-height: 25px;
    font-weight: 400;
    width: 55%;
  }

  .addedToCartBadge {
    width: 22px;
    height: 22px;
    top: 22px;
    right: 13px;
  }

  .addedToCartBadge::before {
    width: 13px;
    height: 14px;
    top: 16%;
  }

  .noStockAlert {
    font-size: 9px;
  }

  .noStockAlert.open {
    bottom: -2px;
  }

  .noStockAlert::before {
    background-size: 9px;
    width: 10px;
    height: 10px;
    left: 7%;
  }
  .priceContainer {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .figureBackground {
    height: 30px;
    width: 30px;
    right: 6%;
    top: 2px;
  }
  .productSlide .productViewName {
    height: 33px;
  }
  .fastBuyContainer .fastBuyMinusSign {
    margin-right: unset;
  }
  .productViewTopImg {
    top: 2.5%;
    left: 2.5%;
    width: 95%;
    height: 95%;
  }
}

@media screen and (min-width: 415px) and (max-width: 768px) {
  .fastBuyContainer.visible {
    width: 60%;
    margin: auto;
  }
  .buyContainer {
    max-width: 20rem;
  }
}
