/* Style the buttons that are used to open and close the accordion panel */ .accordion { color: #444; cursor: pointer; padding: 16px; width: 100%; text-align: left; border: 0px; border-bottom: 1px solid #aaa; outline: none; transition: 0.4s; font-size: 16px; font-weight: bold; /* Add a pseudo-element to show the plus-minus icon */ position: relative; background: transparent; } /* Change the background color of the button when it is active */ .active, .accordion:hover { background-color: #ccc; } /* Style the plus-minus icon */ .accordion::before { content: "+"; position: absolute; top: 50%; right: 25px; transform: translateY(-50%); font-size: 24px; font-weight: bold; transition: transform 0.4s; } /* Change the plus-minus icon when the accordion panel is open */ .active::before { content: "-"; transform: translateY(-50%) rotate(45deg); } /* Style the accordion panel. Note: hidden by default */ .panel { padding: 0 18px; background-color: transparent; overflow: hidden; transition: max-height 0.2s ease-out; max-height: 0; } /* Show the accordion panel when the button is active */ .active + .panel { max-height: 1000px; } Ultimé Hormone + PMS Support Capsules are specifically formulated to: Support female healthy hormonal balance Relieve symptoms of premenstrual tension Relieve breast tenderness associated with premenstrual tension Relieve mood changes associated with premenstrual tension Support skin health Support healthy reproductive hormones in females DIRECTIONS FOR USE Take 1 capsule twice daily. WARNING Vitex agnus-castus may affect hormones and medicines such as oral contraceptives. Consult your health professional before use or if you experience the following symptoms tingling, burning, numbness and stop taking immediately. Dietary supplements should not replace a balanced diet. Always read the label and follow the directions for use. INGREDIENTS EACH CAPSULE CONTAINS: Arthrospira platensis 50mg Lepidium meyenii tuber Extract dry concentrate 150mg Equivalent: Lepidium meyenii (Dry) 1.5g Pyridoxine hydrochloride 60.78mg Equivalent: pyridoxine 50mg Vitex agnus-castus fruit Extract dry concentrate 12.5mg Equivalent: Vitex agnus-castus (Dry) 125mg Zinc gluconate 31.5mg Equivalent: zinc 4mg QUANTITY 60 Capsules Made in Australia // Get all the accordion buttons var acc = document.getElementsByClassName("accordion"); // Loop through all the buttons and add a click event listener for (var i = 0; i < acc.length; i++) { acc[i].addEventListener("click", function() { // Toggle the active class on the button this.classList.toggle("active"); }); }