/* TPS Product Description Styles */
.tps-product-desc {
font-family: inherit;
color: #333;
line-height: 1.6;
}
/* Section Headers */
.tps-product-desc h2 {
font-size: 22px;
font-weight: 700;
color: #1a1a1a;
margin: 32px 0 16px 0;
padding-bottom: 8px;
border-bottom: 3px solid #45aad3;
display: inline-block;
}
.tps-product-desc h2:first-of-type {
margin-top: 0;
}
.tps-product-desc h3 {
font-size: 17px;
font-weight: 600;
color: #333;
margin: 24px 0 12px 0;
}
/* Intro Paragraph */
.tps-intro {
font-size: 16px;
color: #444;
margin-bottom: 24px;
padding: 16px;
background: #f8fafc;
border-left: 4px solid #45aad3;
border-radius: 0 8px 8px 0;
}
/* Specs Grid */
.tps-specs-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
gap: 12px;
margin: 20px 0 28px 0;
}
.tps-spec-item {
background: #f8fafc;
border: 1px solid #e2e8f0;
border-radius: 10px;
padding: 14px;
text-align: center;
transition: all 0.2s ease;
}
.tps-spec-item:hover {
border-color: #45aad3;
box-shadow: 0 4px 12px rgba(69, 170, 211, 0.15);
}
.tps-spec-item .spec-label {
font-size: 11px;
text-transform: uppercase;
letter-spacing: 0.5px;
color: #64748b;
margin-bottom: 4px;
}
.tps-spec-item .spec-value {
font-size: 15px;
font-weight: 700;
color: #1a1a1a;
}
/* Benefits List */
.tps-benefits {
list-style: none;
padding: 0;
margin: 16px 0;
}
.tps-benefits li {
position: relative;
padding: 10px 0 10px 32px;
border-bottom: 1px solid #f1f5f9;
font-size: 15px;
}
.tps-benefits li:last-child {
border-bottom: none;
}
.tps-benefits li::before {
content: ”;
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
width: 20px;
height: 20px;
background: #45aad3;
border-radius: 50%;
background-image: url(“data:image/svg+xml,%3Csvg xmlns=’http://www.w3.org/2000/svg’ viewBox=’0 0 24 24′ fill=’none’ stroke=’white’ stroke-width=’3’%3E%3Cpath d=’M5 12l5 5L20 7’/%3E%3C/svg%3E”);
background-size: 12px;
background-position: center;
background-repeat: no-repeat;
}
/* Premium Dark Brand Box */
.tps-brand-box {
display: flex;
align-items: center;
justify-content: center;
gap: 14px;
padding: 16px 22px;
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
border: 1px solid rgba(69, 170, 211, 0.3);
border-radius: 10px;
margin: 28px 0;
position: relative;
overflow: hidden;
}
.tps-brand-box::before {
content: ”;
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(
circle at 30% 30%,
rgba(69, 170, 211, 0.08) 0%,
transparent 50%
);
animation: tps-glow-move 6s ease-in-out infinite;
}
@keyframes tps-glow-move {
0%, 100% { transform: translate(0, 0); }
50% { transform: translate(10%, 10%); }
}
.tps-brand-logo {
width: 34px;
height: 34px;
object-fit: contain;
flex-shrink: 0;
filter: brightness(0) invert(1);
animation: tps-logo-iridescent 4s ease-in-out infinite;
}
@keyframes tps-logo-iridescent {
0%, 100% {
filter: brightness(0) invert(1) drop-shadow(0 0 4px rgba(69, 170, 211, 0.6));
}
33% {
filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(168, 85, 247, 0.6));
}
66% {
filter: brightness(0) invert(1) drop-shadow(0 0 4px rgba(236, 72, 153, 0.6));
}
}
.tps-brand-box span {
font-size: 14px;
font-weight: 500;
position: relative;
z-index: 1;
background: linear-gradient(
90deg,
#ffffff,
#45aad3,
#a855f7,
#45aad3,
#ffffff
);
background-size: 200% auto;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
animation: tps-text-shimmer 4s linear infinite;
}
@keyframes tps-text-shimmer {
0% { background-position: 0% center; }
100% { background-position: 200% center; }
}
.tps-brand-box strong {
font-weight: 700;
}
/* Info Box – Blue */
.tps-info-box {
background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
border: 1px solid #3b82f6;
border-radius: 10px;
padding: 16px 20px;
margin: 20px 0;
}
.tps-info-box h4 {
margin: 0 0 8px 0;
font-size: 14px;
font-weight: 700;
color: #1e40af;
display: flex;
align-items: center;
gap: 8px;
}
.tps-info-box p {
margin: 0;
font-size: 14px;
color: #1e3a8a;
}
/* Disclaimer Box */
.tps-dosage-box {
background: #fffbeb;
border: 1px solid #fcd34d;
border-radius: 10px;
padding: 16px 20px;
margin: 20px 0;
}
.tps-dosage-box h4 {
margin: 0 0 8px 0;
font-size: 14px;
font-weight: 700;
color: #92400e;
display: flex;
align-items: center;
gap: 8px;
}
.tps-dosage-box p {
margin: 0;
font-size: 14px;
color: #78350f;
}
/* Mobile Optimizations */
@media (max-width: 600px) {
.tps-specs-grid {
grid-template-columns: repeat(2, 1fr);
}
.tps-brand-box {
padding: 14px 16px;
gap: 12px;
}
.tps-brand-box span {
font-size: 13px;
}
.tps-brand-logo {
width: 28px;
height: 28px;
}
.tps-product-desc h2 {
font-size: 19px;
}
}

Quanta Pharma Bacteriostatic Water is a pharmaceutical-grade sterile water solution containing 0.9% benzyl alcohol as a bacteriostatic preservative. This essential diluent from Quanta Pharma is designed for reconstituting lyophilised peptides, allowing for multiple withdrawals whilst inhibiting bacterial growth. The perfect companion for all Quanta Pharma peptide products. Available for UK delivery with fast dispatch.

Quanta Pharma Bacteriostatic Water Specifications

Product
Bac Water
Preservative
0.9% Benzyl Alcohol
Volume
10ml
Sterility
Pharmaceutical Grade
Container
Sealed Vial
Storage
Room Temp / 2-8°C

Quanta Pharma
Bacteriostatic Water by Quanta Pharma

Quanta Pharma Bacteriostatic Water Benefits

  • Multi-use capability – Benzyl alcohol preservative allows multiple withdrawals from the same vial without contamination
  • Extended peptide stability – Maintains reconstituted peptide integrity for longer storage periods compared to sterile water
  • Pharmaceutical-grade sterility – Manufactured under strict quality controls for research-grade applications
  • Universal compatibility – Suitable for reconstituting all lyophilised peptides including BPC-157, TB-500, and GHK-Cu
  • Convenient volume – 10ml vial provides sufficient diluent for multiple peptide reconstitutions

How to Use Quanta Pharma Bacteriostatic Water

Quanta Pharma Bacteriostatic Water is specifically designed for reconstituting lyophilised (freeze-dried) peptides. The 0.9% benzyl alcohol acts as a bacteriostatic agent, inhibiting the growth of bacteria and allowing the solution to be used multiple times over an extended period.

To reconstitute peptides, draw the desired volume of Quanta Pharma Bacteriostatic Water into a sterile syringe and inject slowly against the inside wall of the peptide vial. Allow the lyophilised powder to dissolve naturally – do not shake vigorously. Once reconstituted with Quanta Pharma bacteriostatic water, peptides should be stored refrigerated at 2-8°C.

Quanta Pharma Bacteriostatic Water vs Sterile Water

Unlike plain sterile water, Quanta Pharma Bacteriostatic Water contains benzyl alcohol which inhibits bacterial growth. This makes it suitable for multi-dose vials where the septum will be punctured multiple times. Plain sterile water should only be used for single-use applications, whereas Quanta Pharma bacteriostatic water maintains sterility across multiple uses for up to 28 days when stored correctly.

Why Choose Quanta Pharma Bacteriostatic Water?

Quanta Pharma is renowned for producing pharmaceutical-grade products with exceptional quality and consistency. Quanta Pharma Bacteriostatic Water is manufactured under strict sterility protocols to ensure researchers receive a reliable, contamination-free diluent for their peptide reconstitution needs. Pair with any Quanta Pharma peptide for optimal results.

💧 STORAGE & HANDLING

Before opening: Store at room temperature or refrigerated (2-8°C)

After first use: Store refrigerated at 2-8°C and use within 28 days

Best practice: Always use sterile technique when withdrawing solution. Swab vial septum with alcohol before each use.

⚠️ FOR LABORATORY RESEARCH USE ONLY

NOT FOR HUMAN OR VETERINARY DIAGNOSTIC OR THERAPEUTIC USE

Safety Classification:
– For use by qualified research personnel only
– Keep detailed records of usage and storage as per UK research regulations

Legal Notice: This product is exclusively intended for in vitro laboratory research conducted in controlled environments by qualified research staff. It is not for pharmaceutical, domestic, or any other applications. The purchaser accepts that acquiring and using this material is governed by all relevant UK regulations concerning research chemicals.