@import url("custom.css?v=10");

/* .content-product-relative {
  width: 100%;
  overflow: hidden;
} */
.content-product {
  height: fit-content;
  position: relative;
  width: 100%;
  background-color: var(--bs-white);
}
.content-down-product {
  transition: var(--primary-transition);
  overflow: hidden;
}
.content-product-image{
  transition: var(--primary-transition);
}
.content-product-image:hover{
  transform: scale(1.1);
}
.selected-quantity , .selected-size{ 
    border-radius: 2px;  
    padding: 5px 12px;
    color: var(--bs-primary);
    border: 1px solid gainsboro;
}
/* Progress */
.progress{
    position: relative;
    width: 350px; 
    height: 10px;
    border-radius: 10px; 
  }
  .progress-bar{
    border-radius: 10px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--bs-info);
  }

  @media (max-width: 565px) {
    .progress{
      width: 250px;
    }
    /* .add-fixed.on {
      transform: translateY(-80%);
    }
    .product-back {
      height: 600px;
    }
    .add-cart-fixed {
      width: 100px;
    }
    .product-fixed {
      display: none;
    } */
  }

  /* Container payment */
  .container-payment
  {
    z-index: 1000;
    background-color: rgb(0,0,0,0.5);
    opacity:1;
    pointer-events: visible;
    transition: 0.5s;
  }

  .container-payment.off{
    opacity: 0;
    pointer-events: none;
  }