/* 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é Men’s Prostate Support Tablets are specifically formulated to: Support healthy reproductive hormones Support healthy testosterone levels in healthy males Support prostate and semen health Support sperm motility and sperm production DIRECTIONS FOR USE Take 1 tablet twice daily. WARNING This medicine contains selenium which is toxic in high doses. A daily dose of 150 micrograms for adults of selenium from dietary supplements should not be exceeded. Always read the label and follow the directions for use. INGREDIENTS EACH TABLET CONTAINS: Cucurbita pepo seed Extract dry concentrate 25mg Equivalent: Cucurbita pepo (Dry) 500mg Conifer phytosterol complex 187.5mg Equivalent: (beta)-sitosterol 75mg Crateva magna rhizome Extract dry concentrate 75mg Equivalent: Crateva magna (Dry) 750mg Lycopersicon esculentum fruit Extract dry concentrate 10mg Equivalent: Lycopersicon esculentum (Dry) 3.5g Zea mays stigma Extract dry concentrate 25mg Equivalent: Zea mays (Dry) 250mg Sodium selenite 14 micrograms Equivalent: Selenium 6.5 micrograms Serenoa repens fruit Extract dry concentrate 320mg Equivalent: Serenoa repens (Dry) 4g Urtica dioica leaf powder 15mg Equivalent: Urtica dioica (Dry) 150mg Zinc gluconate 42.5mg Equivalent: Zinc 6mg QUANTITY 60 Tablets 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"); }); }