Container Size: 12x330ml Serving Size: 1 RTD (330ml) Amount Per Serving: Protein: 0g Carbohydrates: 15.8g Fat: 0g Salt: 0.3g Ingredients: Purified Sparkling Water, Beet & Fruit Sugar, Lemon Juice from concentrate (4%), branched-chain amino acids BCAA 2:1:1 (L-leucine, L-valine, L-isoleucine) from corn, Passion Fruit Juice from concentrate (2%), Pineapple Juice from concentrate (2%), Herbal Extracts (Acerola, Caffeine from Green Coffee, Green Tea), Natural Flavourings, Electrolytes from Himalayan Rock salt. Please Note: Nutritional facts and ingredients may vary slightly between flavours.
/* Mark the container as a query container */
.image-container {
container-type: inline-size;
}
/* When the container’s width is at least 500px, apply a max-width style to the image */
@container (min-width: 500px) {
.image-container img {
max-width: 80%;
height: auto;
}
}