{"id":20619,"date":"2024-12-02T16:50:09","date_gmt":"2024-12-02T08:50:09","guid":{"rendered":"https:\/\/manlybattery.com\/?page_id=20619"},"modified":"2025-07-03T16:01:07","modified_gmt":"2025-07-03T08:01:07","slug":"wie-lange-h%c3%a4lt-eine-200-ah-batterie-im-taschenrechner","status":"publish","type":"page","link":"https:\/\/manlybattery.com\/de\/battery-tools-and-resources\/how-long-will-a-200ah-battery-last-calculator\/","title":{"rendered":"Rechner zur Lebensdauer einer 200-Ah-Batterie"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"20619\" class=\"elementor elementor-20619\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7c375a5 elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile e-flex e-con-boxed e-con e-parent\" data-id=\"7c375a5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-23af372 elementor-widget elementor-widget-text-editor\" data-id=\"23af372\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <meta name=\"description\" content=\"How Long Will a 200Ah Battery Last Calculator - Calculate the runtime of a 200Ah battery for RVs, marine applications, golf carts, solar setups, and more.\">\n    <title>How Long Will a 200Ah Battery Last Calculator<\/title>\n    <style>\n        #battery-runtime-calculator {\n            font-family: Arial, sans-serif;\n            background-color: #f8f8f8;\n            color: #333;\n            line-height: 1.6;\n            padding: 20px;\n        }\n        #battery-runtime-calculator .calculator {\n            max-width: 500px;\n            margin: 0 auto;\n            padding: 20px;\n            background: #fff;\n            border-radius: 8px;\n            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);\n        }\n        #battery-runtime-calculator input, \n        #battery-runtime-calculator select {\n            width: calc(100% - 24px);\n            padding: 10px;\n            margin-bottom: 10px;\n            border: 1px solid #ccc;\n            border-radius: 4px;\n            box-sizing: border-box;\n        }\n        #battery-runtime-calculator button {\n            width: 100%;\n            padding: 10px;\n            background-color: #007BFF;\n            color: #fff;\n            border: none;\n            border-radius: 4px;\n            cursor: pointer;\n            font-size: 16px;\n        }\n        #battery-runtime-calculator button:hover {\n            background-color: #0056b3;\n        }\n        #battery-runtime-calculator .result {\n            margin-top: 20px;\n            font-weight: bold;\n            text-align: center;\n        }\n    <\/style>\n<\/head>\n<body>\n    <div id=\"battery-runtime-calculator\">\n        <div class=\"calculator\">\n            <h2>200Ah Battery Runtime Calculator<\/h2>\n\n            <label for=\"applicationType\">Application:<\/label>\n            <select id=\"applicationType\" onchange=\"updateBatteryTypes()\">\n                <option value=\"rv\">RV<\/option>\n                <option value=\"marine\">Marine<\/option>\n                <option value=\"solar\">Solar Power System<\/option>\n                <option value=\"backup\">Backup Power<\/option>\n                <option value=\"golf_cart\">Golf Cart<\/option>\n                <option value=\"other\">Other<\/option>\n            <\/select>\n\n            <label for=\"batteryType\">Battery Type:<\/label>\n            <select id=\"batteryType\">\n                <option value=\"lead_acid\">Lead Acid<\/option>\n                <option value=\"agm\">AGM<\/option>\n                <option value=\"lithium\">Lithium LiFePO4<\/option>\n            <\/select>\n\n            <label for=\"load\">Load (W):<\/label>\n            <input type=\"number\" id=\"load\" placeholder=\"Enter load in watts (e.g., 500)\" min=\"1\">\n\n            <label for=\"initialCharge\">Initial Charge (%):<\/label>\n            <input type=\"number\" id=\"initialCharge\" placeholder=\"Enter initial charge (e.g., 50)\" min=\"0\" max=\"100\" value=\"100\">\n\n            <label for=\"dod\">Depth of Discharge (DoD, %):<\/label>\n            <input type=\"number\" id=\"dod\" placeholder=\"Enter DoD (e.g., 80 for lead-acid)\" min=\"1\" max=\"100\" value=\"80\">\n\n            <button onclick=\"calculateRuntime()\">Calculate Runtime<\/button>\n            <div class=\"result\" id=\"result\"><\/div>\n        <\/div>\n    <\/div>\n    <script>\n        function updateBatteryTypes() {\n            const application = document.getElementById('applicationType').value;\n            const batteryType = document.getElementById('batteryType');\n            batteryType.innerHTML = \"\"; \/\/ Clear existing options\n\n            if (application === \"marine\") {\n                batteryType.innerHTML = `\n                    <option value=\"lead_acid\">Lead Acid<\/option>\n                    <option value=\"agm\">AGM (Starting or Deep Cycle)<\/option>\n                    <option value=\"lithium\">Lithium LiFePO4<\/option>\n                `;\n            } else {\n                batteryType.innerHTML = `\n                    <option value=\"lead_acid\">Lead Acid<\/option>\n                    <option value=\"agm\">AGM<\/option>\n                    <option value=\"lithium\">Lithium LiFePO4<\/option>\n                `;\n            }\n        }\n\n        function calculateRuntime() {\n            const load = parseFloat(document.getElementById('load').value);\n            const initialCharge = parseFloat(document.getElementById('initialCharge').value) \/ 100;\n            const dod = parseFloat(document.getElementById('dod').value) \/ 100;\n            const batteryType = document.getElementById('batteryType').value;\n\n            if (isNaN(load) || isNaN(initialCharge) || isNaN(dod)) {\n                document.getElementById('result').innerText = \"Please fill in all required fields.\";\n                return;\n            }\n\n            const batteryCapacity = 200; \/\/ 200Ah\n            let efficiency;\n\n            switch (batteryType) {\n                case \"lead_acid\":\n                    efficiency = 0.5;\n                    break;\n                case \"agm\":\n                    efficiency = 0.6;\n                    break;\n                case \"lithium\":\n                    efficiency = 0.95;\n                    break;\n                default:\n                    efficiency = 1;\n            }\n\n            const usableCapacity = batteryCapacity * dod * efficiency;\n            const runtime = (usableCapacity * 12) \/ load; \/\/ Convert Ah to Wh by multiplying by 12V\n\n            document.getElementById('result').innerText = `Estimated Runtime: ${runtime.toFixed(2)} hours`;\n        }\n    <\/script>\n<\/body>\n<\/html>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6cf72a58 e-flex e-con-boxed e-con e-parent\" data-id=\"6cf72a58\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-81bc21d elementor-widget elementor-widget-text-editor\" data-id=\"81bc21d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<h1 style=\"text-align: center;\">How Long Will a 200Ah Battery Last Calculator<\/h1>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5a829c5 elementor-widget elementor-widget-html\" data-id=\"5a829c5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"manly-runtime-calculator\">\r\n  <h2>200Ah Battery Runtime Calculator<\/h2>\r\n\r\n  <label for=\"manly-runtime-application\">Application:<\/label>\r\n  <select id=\"manly-runtime-application\">\r\n    <option value=\"rv\">RV<\/option>\r\n    <option value=\"marine\">Marine<\/option>\r\n    <option value=\"solar\">Solar Power System<\/option>\r\n    <option value=\"backup\">Backup Power<\/option>\r\n    <option value=\"golf_cart\">Golf Cart<\/option>\r\n    <option value=\"other\">Other<\/option>\r\n  <\/select>\r\n\r\n  <label for=\"manly-runtime-battery\">Battery Type:<\/label>\r\n  <select id=\"manly-runtime-battery\">\r\n    <option value=\"lead_acid\">Lead Acid<\/option>\r\n    <option value=\"agm\">AGM<\/option>\r\n    <option value=\"lithium\">Lithium LiFePO4<\/option>\r\n  <\/select>\r\n\r\n  <label for=\"manly-runtime-load\">Load (W):<\/label>\r\n  <input type=\"number\" id=\"manly-runtime-load\" placeholder=\"Enter load in watts (e.g., 500)\" min=\"1\">\r\n\r\n  <label for=\"manly-runtime-charge\">Initial Charge (%):<\/label>\r\n  <input type=\"number\" id=\"manly-runtime-charge\" placeholder=\"e.g. 100\" value=\"100\" min=\"0\" max=\"100\">\r\n\r\n  <label for=\"manly-runtime-dod\">Depth of Discharge (DoD %):<\/label>\r\n  <input type=\"number\" id=\"manly-runtime-dod\" placeholder=\"e.g. 80\" value=\"80\" min=\"1\" max=\"100\">\r\n\r\n  <button id=\"manly-runtime-calc-btn\">Calculate Runtime<\/button>\r\n\r\n  <div class=\"manly-runtime-result\" id=\"manly-runtime-result\"><\/div>\r\n<\/div>\r\n\r\n<style>\r\n.manly-runtime-calculator {\r\n  font-family: Arial, sans-serif;\r\n  background-color: #f8f8f8;\r\n  color: #333;\r\n  line-height: 1.6;\r\n  padding: 20px;\r\n  max-width: 500px;\r\n  margin: 0 auto;\r\n  background: #fff;\r\n  border-radius: 8px;\r\n  box-shadow: 0 0 10px rgba(0,0,0,0.1);\r\n}\r\n.manly-runtime-calculator input,\r\n.manly-runtime-calculator select {\r\n  width: calc(100% - 24px);\r\n  padding: 10px;\r\n  margin-bottom: 10px;\r\n  border: 1px solid #ccc;\r\n  border-radius: 4px;\r\n  box-sizing: border-box;\r\n}\r\n.manly-runtime-calculator button {\r\n  width: 100%;\r\n  padding: 10px;\r\n  background-color: #007BFF;\r\n  color: #fff;\r\n  border: none;\r\n  border-radius: 4px;\r\n  cursor: pointer;\r\n  font-size: 16px;\r\n}\r\n.manly-runtime-calculator button:hover {\r\n  background-color: #0056b3;\r\n}\r\n.manly-runtime-calculator .manly-runtime-result {\r\n  margin-top: 20px;\r\n  font-weight: bold;\r\n  text-align: center;\r\n}\r\n<\/style>\r\n\r\n<script>\r\n(function() {\r\n  const appSelect = document.getElementById('manly-runtime-application');\r\n  const batterySelect = document.getElementById('manly-runtime-battery');\r\n  const loadInput = document.getElementById('manly-runtime-load');\r\n  const chargeInput = document.getElementById('manly-runtime-charge');\r\n  const dodInput = document.getElementById('manly-runtime-dod');\r\n  const resultDiv = document.getElementById('manly-runtime-result');\r\n  const button = document.getElementById('manly-runtime-calc-btn');\r\n\r\n  appSelect.addEventListener('change', function() {\r\n    const application = appSelect.value;\r\n    batterySelect.innerHTML = ''; \/\/ Clear existing options\r\n\r\n    if (application === 'marine') {\r\n      batterySelect.innerHTML = `\r\n        <option value=\"lead_acid\">Lead Acid<\/option>\r\n        <option value=\"agm\">AGM (Starting or Deep Cycle)<\/option>\r\n        <option value=\"lithium\">Lithium LiFePO4<\/option>\r\n      `;\r\n    } else {\r\n      batterySelect.innerHTML = `\r\n        <option value=\"lead_acid\">Lead Acid<\/option>\r\n        <option value=\"agm\">AGM<\/option>\r\n        <option value=\"lithium\">Lithium LiFePO4<\/option>\r\n      `;\r\n    }\r\n  });\r\n\r\n  button.addEventListener('click', function() {\r\n    const load = parseFloat(loadInput.value);\r\n    const initialCharge = parseFloat(chargeInput.value) \/ 100;\r\n    const dod = parseFloat(dodInput.value) \/ 100;\r\n    const batteryType = batterySelect.value;\r\n\r\n    if (isNaN(load) || isNaN(initialCharge) || isNaN(dod) || load <= 0) {\r\n      resultDiv.innerText = \"Please fill in all required fields.\";\r\n      return;\r\n    }\r\n\r\n    const batteryCapacity = 200; \/\/ Ah\r\n    let efficiency;\r\n\r\n    switch (batteryType) {\r\n      case \"lead_acid\": efficiency = 0.5; break;\r\n      case \"agm\": efficiency = 0.6; break;\r\n      case \"lithium\": efficiency = 0.95; break;\r\n      default: efficiency = 1;\r\n    }\r\n\r\n    const usableCapacity = batteryCapacity * dod * efficiency * initialCharge;\r\n    const runtime = (usableCapacity * 12) \/ load; \/\/ 12V system\r\n\r\n    resultDiv.innerText = `Estimated Runtime: ${runtime.toFixed(2)} hours`;\r\n  });\r\n})();\r\n<\/script>\r\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1038514b elementor-widget elementor-widget-text-editor\" data-id=\"1038514b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\tUnderstanding the runtime of a battery is crucial for efficient energy management in various applications. It ensures you can power essential devices without interruptions and avoid overloading or draining the battery prematurely. For a <a href=\"https:\/\/manlybattery.com\/product-item\/12v-200ah-lifepo4-battery\/\"><strong>200Ah battery<\/strong><\/a>, runtime estimation helps users maximize its potential while ensuring longevity and reliability.\n\n<a href=\"https:\/\/manlybattery.com\/product-item\/12v-200ah-lifepo4-battery\/\"><img decoding=\"async\" class=\"aligncenter wp-image-20609 size-full\" title=\"200ah battery - lithium rv battery\" src=\"https:\/\/manlybattery.com\/wp-content\/uploads\/2024\/11\/200ah-battery-lithium-rv-battery.webp\" alt=\"200ah battery - lithium rv battery\" width=\"800\" height=\"457\" srcset=\"https:\/\/manlybattery-static-cdn.cimen.club\/manlybattery\/wp-content\/uploads\/2024\/11\/200ah-battery-lithium-rv-battery.webp 800w, https:\/\/manlybattery-static-cdn.cimen.club\/manlybattery\/wp-content\/uploads\/2024\/11\/200ah-battery-lithium-rv-battery-300x171.webp 300w, https:\/\/manlybattery-static-cdn.cimen.club\/manlybattery\/wp-content\/uploads\/2024\/11\/200ah-battery-lithium-rv-battery-768x439.webp 768w, https:\/\/manlybattery-static-cdn.cimen.club\/manlybattery\/wp-content\/uploads\/2024\/11\/200ah-battery-lithium-rv-battery-705x403.webp 705w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/a>\n<h3><strong>Why Knowing Battery Runtime Is Essential<\/strong><\/h3>\nA battery&#8217;s runtime directly impacts its usability in critical applications like powering an RV during a road trip, supporting a solar power system during cloudy days, or ensuring backup power in emergencies. Knowing how long a 200Ah battery will last allows you to plan effectively and prevents unexpected power outages, especially in scenarios where reliable electricity is essential.\n<h3><strong>Overview of 200Ah Batteries and Their Common Applications<\/strong><\/h3>\nA 200Ah battery is versatile and commonly used in a range of scenarios, including:\n<ol>\n \t<li><strong>RVs and Campers<\/strong>: Ideal for powering appliances like refrigerators, lights, and small devices during outdoor adventures.<\/li>\n \t<li><strong>Marine Applications<\/strong>: Supports trolling motors, onboard electronics, and navigation systems in boats.<\/li>\n \t<li><strong>Solar Power Systems<\/strong>: Stores energy for later use, ensuring a steady power supply when sunlight is unavailable.<\/li>\n \t<li><strong>Golf Carts<\/strong>: Provides consistent power for smooth operation across long distances.<\/li>\n \t<li><strong>Backup Power Systems<\/strong>: Acts as a reliable energy source during outages, keeping essential devices operational.<\/li>\n<\/ol>\n<h3><strong>Benefits of Using a Calculator to Estimate Runtime<\/strong><\/h3>\nUsing a 200Ah battery runtime calculator provides precise estimates tailored to your specific load and battery type. Key advantages include:\n<ul>\n \t<li><strong>Accurate Planning<\/strong>: Helps avoid underestimating or overestimating runtime, ensuring proper energy allocation.<\/li>\n \t<li><strong>Increased Efficiency<\/strong>: Guides users in optimizing battery usage to extend its lifespan.<\/li>\n \t<li><strong>Cost Savings<\/strong>: Prevents unnecessary expenses from overloading or underutilizing the battery.<\/li>\n \t<li><strong>Customization<\/strong>: Adapts to different battery types (e.g., lead-acid, AGM, lithium) and load requirements for tailored results.<\/li>\n<\/ul>\n<h2><strong>Understanding 200Ah Battery Capacity and Runtime<\/strong><\/h2>\nA 200Ah battery can theoretically deliver 200 amps for one hour or 20 amps for ten hours, but actual performance varies based on several factors.\n<h3><strong>Explanation of Amp-Hours and How They Relate to Runtime<\/strong><\/h3>\nAn ampere-hour (Ah) measures a battery&#8217;s capacity to provide a specific current over time. For instance, a 200Ah battery can supply 200 amps for one hour, 20 amps for ten hours, or 2 amps for 100 hours. This rating helps estimate how long a battery can power a device before needing a recharge.\n<h3><strong>Voltage Considerations (e.g., 12V Systems)<\/strong><\/h3>\nBattery voltage is crucial in determining the total energy available. In a 12V system, a 200Ah battery stores:\n\n<strong>Energy (Wh) = Capacity (Ah) \u00d7 Voltage (V) = 200Ah \u00d7 12V = 2,400Wh<\/strong>\n\nThis means the battery can theoretically provide 2,400 watt-hours of energy. However, actual usable energy depends on factors like discharge rates and battery efficiency.\n<h3><strong>The Relationship Between Power Consumption (W) and Runtime<\/strong><\/h3>\nTo estimate runtime, divide the battery&#8217;s total energy by the device&#8217;s power consumption:\n\n<strong>Runtime (hours) = Total Energy (Wh) \u00f7 Power Consumption (W)<\/strong>\n\nFor example, powering a 500W device:\n\n<strong>Runtime = 2,400Wh \u00f7 500W = 4.8 hours<\/strong>\n\nThis calculation assumes 100% efficiency and doesn&#8217;t account for factors like depth of discharge or battery age, which can affect actual runtime.\n\nUnderstanding these concepts is essential for effectively utilizing a 200Ah battery in various applications, ensuring devices operate reliably and efficiently.\n<h2><strong>How to Calculate 200Ah Battery Runtime<\/strong><\/h2>\nEstimating the runtime of a 200Ah battery involves several key factors:\n<ul>\n \t<li><strong>Load Power (W):<\/strong> Higher power consumption reduces runtime.<\/li>\n \t<li><strong>Battery Type:<\/strong> Different types like lead-acid, AGM, and LiFePO\u2084 have varying efficiencies.<\/li>\n \t<li><strong>Depth of Discharge (DoD):<\/strong> The percentage of battery capacity used affects longevity.<\/li>\n \t<li><strong>Initial Charge Level:<\/strong> A fully charged battery provides maximum runtime.<\/li>\n \t<li><strong>Environmental Temperature:<\/strong> Extreme temperatures can diminish battery performance.<\/li>\n<\/ul>\nBy considering these factors, you can accurately estimate how long your 200Ah battery will last under specific conditions.\n<h3><strong>Factors Influencing Runtime<\/strong><\/h3>\n<ol>\n \t<li><strong>Load Power (W):<\/strong> Devices with higher wattage draw more current, leading to shorter battery life. For example, a 500W device will deplete the battery faster than a 100W device.<\/li>\n \t<li><strong>Battery Type:<\/strong>\n<ul>\n \t<li><strong>Lead-Acid:<\/strong> Typically have lower efficiency and higher internal resistance.<\/li>\n \t<li><strong>AGM (Absorbent Glass Mat):<\/strong> Offer better performance than standard lead-acid batteries.<\/li>\n \t<li><strong>LiFePO\u2084 (Lithium Iron Phosphate):<\/strong> Provide higher efficiency and longer lifespan.<\/li>\n<\/ul>\n<\/li>\n \t<li><strong>Depth of Discharge (DoD):<\/strong> Refers to the percentage of the battery&#8217;s capacity that has been used. Shallower DoD can extend battery life, while deeper discharges may shorten it.<\/li>\n \t<li><strong>Initial Charge Level:<\/strong> Starting with a fully charged battery ensures maximum available capacity.<\/li>\n \t<li><strong>Environmental Temperature:<\/strong> Extreme heat or cold can adversely affect battery efficiency and capacity.<\/li>\n<\/ol>\n<h4><strong>Step-by-Step Guide to Using the Runtime Calculator<\/strong><\/h4>\n<ol>\n \t<li><strong>Determine Battery Specifications:<\/strong>\n<ul>\n \t<li><strong>Capacity:<\/strong> 200Ah<\/li>\n \t<li><strong>Voltage:<\/strong> Commonly 12V for many applications<\/li>\n<\/ul>\n<\/li>\n \t<li><strong>Identify Load Power Consumption:<\/strong>\n<ul>\n \t<li>Measure or find the power consumption of your device in watts (W).<\/li>\n<\/ul>\n<\/li>\n \t<li><strong>Assess Battery Type and Efficiency:<\/strong>\n<ul>\n \t<li>Refer to the battery&#8217;s datasheet for efficiency ratings.<\/li>\n<\/ul>\n<\/li>\n \t<li><strong>Estimate Depth of Discharge (DoD):<\/strong>\n<ul>\n \t<li>Decide the percentage of total capacity you plan to use.<\/li>\n<\/ul>\n<\/li>\n \t<li><strong>Calculate Runtime Using the Formula:<\/strong><strong>Runtime (hours) = (Battery Capacity \u00d7 Voltage \u00d7 DoD \u00d7 Efficiency) \u00f7 Load<\/strong>For example, using a 200Ah battery (12V) with 80% DoD and 85% efficiency to power a 500W load:<strong>Runtime = (200Ah \u00d7 12V \u00d7 0.8 \u00d7 0.85) \u00f7 500W = 3.26 hours<\/strong><\/li>\n<\/ol>\nThis calculation provides an estimate; actual runtime may vary based on real-world conditions.\n\nBy following these steps, you can effectively estimate the runtime of your 200Ah battery for various applications, ensuring reliable and efficient power management.\n<h2>Real-Life Examples of 200Ah Battery Runtime<\/h2>\nEstimating the runtime of a 200Ah battery across various applications requires understanding specific load requirements and battery characteristics. Below are real-life scenarios illustrating how long a 200Ah battery can power different devices:\n<h3><strong>Example 1: Powering a 600W Appliance in an RV<\/strong><\/h3>\nRecreational vehicles often utilize appliances such as microwaves or small air conditioners, which may consume around 600 watts. Using a 12V <strong>200Ah battery<\/strong> with an 80% Depth of Discharge (DoD) and 85% efficiency, the estimated runtime is approximately 2.72 hours.\n<h3><strong>Example 2: Operating a 160W Load in a Solar Power System<\/strong><\/h3>\nIn solar power setups, devices like LED lighting systems or small fans typically consume about 160 watts. Under similar battery conditions (12V, 80% DoD, 85% efficiency), the 200Ah battery would last approximately 10.2 hours.\n<h3><strong>Example 3: Running a Golf Cart with a 200Ah Battery<\/strong><\/h3>\nGolf carts generally draw significant power, with consumption rates varying between 500W to 1,000W depending on usage and terrain. Assuming a 1,000W load, the 200Ah battery would provide power for approximately 1.63 hours.\n<h3><strong>Example 4: Backup Power for a Home Refrigerator (1000W)<\/strong><\/h3>\nHome refrigerators can consume around 1,000 watts, especially during startup cycles. With the same battery parameters, the 200Ah battery would supply power for about 1.63 hours.\n\n<strong>Note:<\/strong> These calculations are theoretical estimates. Actual runtimes can vary based on factors such as battery age, environmental conditions, and the specific power draw of appliances.\n\nBy understanding these examples, users can better anticipate the performance of a 200Ah battery in various real-world scenarios, ensuring efficient and reliable power management.\n<h2>How to Maximize the Runtime of a 200Ah Battery<\/h2>\nMaximizing the runtime of a <strong>200Ah battery<\/strong> involves selecting the appropriate battery type for your application, adhering to proper maintenance practices, minimizing power consumption, and ensuring optimal storage conditions.\n\n<strong>Choosing the Right Battery for Specific Applications<\/strong>\n\nSelecting a battery that aligns with your specific needs is crucial. For instance, <a href=\"https:\/\/manlybattery.com\/\"><strong>LiFePO4 batteries<\/strong><\/a> are known for their high energy density and long lifespan, making them suitable for applications like solar energy storage and electric vehicles. Conversely, lead-acid batteries are often used in backup power systems due to their reliability and cost-effectiveness. Matching the battery type to your application&#8217;s requirements ensures efficient performance and longevity.\n\n<strong>Proper Maintenance<\/strong>\n<ul>\n \t<li><strong>Avoiding Overcharging or Over-Discharging:<\/strong> Overcharging can lead to overheating and reduced battery life, while over-discharging can cause irreversible damage. Utilizing a quality battery management system (BMS) helps monitor and regulate charge levels, preventing these issues.<\/li>\n \t<li><strong>Regular Inspection and Cleaning:<\/strong> Periodically check for signs of wear, corrosion, or damage. Clean terminals and connections to maintain optimal conductivity and prevent power loss.<\/li>\n<\/ul>\n<strong>Reducing Load Power Consumption<\/strong>\n<ul>\n \t<li><strong>Energy-Efficient Appliances:<\/strong> Employing devices with lower power requirements extends battery runtime. For example, using LED lighting instead of incandescent bulbs can significantly reduce energy consumption.<\/li>\n \t<li><strong>Smart Energy Management Systems:<\/strong> Implementing systems that monitor and control energy usage ensures that power is allocated efficiently, reducing unnecessary drain on the battery.<\/li>\n<\/ul>\n<strong>Storing Batteries in Optimal Conditions<\/strong>\n\nProper storage significantly impacts battery health:\n<ul>\n \t<li><strong>Temperature Control:<\/strong> Store batteries in a cool, dry place, ideally between 68\u00b0F to 77\u00b0F (20\u00b0C to 25\u00b0C), to prevent capacity loss and degradation.<\/li>\n \t<li><strong>Humidity Levels:<\/strong> Maintain relative humidity below 50% to avoid moisture-related damage.<\/li>\n \t<li><strong>Avoiding Extreme Conditions:<\/strong> Protect batteries from freezing temperatures and direct sunlight to preserve their lifespan.<\/li>\n<\/ul>\nBy conscientiously selecting the appropriate battery type, maintaining it properly, optimizing power consumption, and storing it under ideal conditions, you can maximize the runtime and overall lifespan of your 200Ah battery.\n<h2><strong>Why Choose MANLY Battery for Your Power Solutions?<\/strong><\/h2>\nChoosing the right battery supplier is crucial for ensuring reliable performance and long-term value. MANLY Battery, a leading manufacturer with over a decade of expertise, provides high-quality power solutions designed to meet diverse energy needs. Their commitment to safety, innovation, and customer satisfaction makes them a top choice for professionals and enthusiasts alike.\n\n<a href=\"https:\/\/manlybattery.com\/product-item\/12v-200ah-lifepo4-battery\/\"><img decoding=\"async\" class=\"aligncenter wp-image-18995 size-full\" title=\"200ah 12 volt lithium marine battery\" src=\"https:\/\/manlybattery.com\/wp-content\/uploads\/2024\/09\/200ah-12-volt-lithium-marine-battery.webp\" alt=\"200ah 12 volt lithium marine battery\" width=\"600\" height=\"600\" srcset=\"https:\/\/manlybattery-static-cdn.cimen.club\/manlybattery\/wp-content\/uploads\/2024\/09\/200ah-12-volt-lithium-marine-battery.webp 600w, https:\/\/manlybattery-static-cdn.cimen.club\/manlybattery\/wp-content\/uploads\/2024\/09\/200ah-12-volt-lithium-marine-battery-300x300.webp 300w, https:\/\/manlybattery-static-cdn.cimen.club\/manlybattery\/wp-content\/uploads\/2024\/09\/200ah-12-volt-lithium-marine-battery-80x80.webp 80w, https:\/\/manlybattery-static-cdn.cimen.club\/manlybattery\/wp-content\/uploads\/2024\/09\/200ah-12-volt-lithium-marine-battery-36x36.webp 36w, https:\/\/manlybattery-static-cdn.cimen.club\/manlybattery\/wp-content\/uploads\/2024\/09\/200ah-12-volt-lithium-marine-battery-180x180.webp 180w\" sizes=\"(max-width: 600px) 100vw, 600px\" \/><\/a>\n<h3><strong>About MANLY Battery<\/strong><\/h3>\n<strong>Decades of Expertise<\/strong>\n\nMANLY Battery has been at the forefront of <a href=\"https:\/\/manlybattery.com\/\">battery manufacturing<\/a> for over 13 years, combining advanced technology with rigorous quality control. With a daily production capacity of 6MWh and over 3,000 assembled batteries, MANLY ensures consistent quality and reliability.\n\n<strong>Commitment to Safety and Quality<\/strong>\n\nMANLY products meet global safety certifications, including UN38.3, IEC62133, UL, and CE. These standards underscore their dedication to delivering safe, efficient, and durable batteries.\n\n<strong>Cutting-Edge Innovation<\/strong>\n\nOperating from state-of-the-art facilities in Shenzhen, Dongguan, and Huizhou, MANLY integrates modern features like Bluetooth connectivity and advanced Battery Management Systems (BMS) into their products. These innovations enhance usability and performance, setting MANLY apart from competitors.\n<h3><strong>Highlighting the MANLY 12V 200Ah LiFePO4 Battery<\/strong><\/h3>\n<strong>Key Features<\/strong>\n<ol>\n \t<li><strong>High Energy Density and Lightweight Design<\/strong>\nWeighing 40% less than traditional lead-acid batteries, the MANLY <a href=\"https:\/\/manlybattery.com\/product-item\/12v-200ah-lifepo4-battery\/\"><strong>12V 200Ah LiFePO4 battery<\/strong><\/a> offers enhanced portability without compromising capacity.<\/li>\n \t<li><strong>Long Lifespan<\/strong>\nWith over 6,000 cycles and up to 95% efficiency, this battery provides exceptional value and longevity, significantly outlasting lead-acid alternatives.<\/li>\n \t<li><strong>Superior Performance in Extreme Temperatures<\/strong>\nDesigned to operate from -4\u00b0F to 167\u00b0F (-20\u00b0C to 75\u00b0C), this battery is ideal for harsh environments, including marine and off-grid applications.<\/li>\n \t<li><strong>Advanced Safety Features<\/strong>\nEquipped with a robust BMS, the battery protects against overcharge, over-discharge, and overheating, ensuring safe and reliable operation.<\/li>\n<\/ol>\n<strong>Applications<\/strong>\n<ul>\n \t<li><strong>RVs and Campers:<\/strong> Power appliances like refrigerators and lights during extended trips.<\/li>\n \t<li><strong>Solar Systems:<\/strong> Store and deliver energy for off-grid setups, ensuring consistent power supply.<\/li>\n \t<li><strong>Marine Use:<\/strong> With waterproof ratings up to IP67, this battery is perfect for trolling motors and onboard electronics.<\/li>\n \t<li><strong>Backup Power:<\/strong> A dependable solution for keeping essential systems operational during outages.<\/li>\n<\/ul>\n<h4><strong>Customer Support<\/strong><\/h4>\n<ul>\n \t<li><strong>10-Year Warranty:<\/strong> MANLY stands behind their products with a decade-long warranty, offering peace of mind for customers.<\/li>\n \t<li><strong>Tailored Solutions:<\/strong> Whether you need custom voltage, capacity, or aesthetics, MANLY delivers batteries that meet your specific requirements.<\/li>\n \t<li><strong>Dedicated Support Team:<\/strong> With a 24-hour response time for all inquiries, MANLY ensures exceptional customer satisfaction.<\/li>\n<\/ul>\n<h3><strong>Why MANLY Stands Out<\/strong><\/h3>\n<ol>\n \t<li><strong>Eco-Friendly Solutions<\/strong>\nBuilt with Grade A+ LiFePO4 cells, MANLY batteries are free from harmful chemicals and designed for sustainable energy storage, reducing environmental impact.<\/li>\n \t<li><strong>Efficient Energy Management<\/strong>\nAchieving up to 95% energy efficiency, the<a href=\"https:\/\/manlybattery.com\/product-item\/12v-200ah-lifepo4-battery\/\"> <strong>200Ah lithium battery<\/strong><\/a>\u00a0supports faster charging and lower energy loss, ideal for high-demand applications.<\/li>\n \t<li><strong>Scalable Integration<\/strong>\nThe MANLY 12V 200Ah LiFePO4 battery can seamlessly integrate into existing systems, supporting up to four units in series or parallel for increased energy demands.<\/li>\n<\/ol>\n<h2><strong>Conclusion<\/strong><\/h2>\nA <strong>200Ah battery<\/strong> can power your devices for varying lengths of time depending on several factors, including the type of battery, the load it supports, and environmental conditions. By understanding these elements, you can optimize battery performance and make informed choices for your power needs.\n\n<strong>Summary of Key Points<\/strong>\n<ul>\n \t<li><strong>Battery Type Matters:<\/strong> Lithium-ion batteries, particularly LiFePO4, provide higher efficiency and a longer lifespan compared to traditional lead-acid or AGM batteries.<\/li>\n \t<li><strong>Load Power Impacts Runtime:<\/strong> Higher power-consuming devices reduce runtime, while energy-efficient appliances can extend it.<\/li>\n \t<li><strong>Environmental Conditions and Maintenance:<\/strong> Proper storage and care, such as avoiding extreme temperatures and over-discharging, significantly enhance the performance and longevity of your 200Ah battery.<\/li>\n<\/ul>\n<strong>Final Advice<\/strong>\n\nChoosing the right battery for your application is crucial. Whether you&#8217;re powering an RV, supporting a solar power system, or using the battery for backup energy, consider factors such as energy needs, budget, and environmental conditions. For long-term reliability and efficiency, a LiFePO4 200Ah battery is often the best choice.\n\n<strong>Encouragement to Use the Runtime Calculator<\/strong>\n\nTo make the most of your 200Ah battery, utilize a runtime calculator to estimate performance based on your specific requirements. By inputting details such as load power, battery type, and depth of discharge, you\u2019ll gain a precise understanding of how long your battery will last in real-world conditions. This simple tool can save time, reduce guesswork, and ensure you\u2019re prepared for any energy demands.\n\nBy leveraging this knowledge and tools like the runtime calculator, you can maximize the efficiency and value of your 200Ah battery across all applications.\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-fee50c1 e-flex e-con-boxed e-con e-parent\" data-id=\"fee50c1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-70b1fcd elementor-widget__width-inherit elementor-widget elementor-widget-shortcode\" data-id=\"70b1fcd\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\">\t\t\t\t\t<div class=\"astra-advanced-hook-23721 \">\n\t\t\t\t\t\t<div data-elementor-type=\"wp-post\" data-elementor-id=\"23721\" class=\"elementor elementor-23721\" data-elementor-post-type=\"astra-advanced-hook\">\n\t\t\t\t<div class=\"elementor-element elementor-element-04bc954 e-flex e-con-boxed e-con e-parent\" data-id=\"04bc954\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7f3ae6c elementor-widget elementor-widget-text-editor\" data-id=\"7f3ae6c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<h2>Contact Us<\/h2><p>To receive your email faster, please copy <span style=\"color: #f66a38;\"><strong>info@manlybattery.com<\/strong> <\/span>and send your email directly, or fill out the form below.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-79d2220 elementor-mobile-button-align-stretch elementor-button-align-stretch elementor-widget elementor-widget-form\" data-id=\"79d2220\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;step_next_label&quot;:&quot;Next&quot;,&quot;step_previous_label&quot;:&quot;Previous&quot;,&quot;step_type&quot;:&quot;number_text&quot;,&quot;step_icon_shape&quot;:&quot;circle&quot;}\" data-widget_type=\"form.default\">\n\t\t\t\t\t\t\t<form class=\"elementor-form\" method=\"post\" name=\"\u8be2\u76d8\u8868\u5355\" aria-label=\"\u8be2\u76d8\u8868\u5355\">\n\t\t\t<input type=\"hidden\" name=\"post_id\" value=\"23721\"\/>\n\t\t\t<input type=\"hidden\" name=\"form_id\" value=\"79d2220\"\/>\n\t\t\t<input type=\"hidden\" name=\"referer_title\" value=\"\" \/>\n\n\t\t\t\n\t\t\t<div class=\"elementor-form-fields-wrapper elementor-labels-\">\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-name elementor-col-50 elementor-field-required\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-name\" class=\"elementor-field-label elementor-screen-only\">\n\t\t\t\t\t\t\t\tName\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"text\" name=\"form_fields[name]\" id=\"form-field-name\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" placeholder=\"Your Name *\" required=\"required\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-email elementor-field-group elementor-column elementor-field-group-email elementor-col-50 elementor-field-required\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-email\" class=\"elementor-field-label elementor-screen-only\">\n\t\t\t\t\t\t\t\tEmail\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"email\" name=\"form_fields[email]\" id=\"form-field-email\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" placeholder=\"Your E-mail *\" required=\"required\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-field_e48e53c elementor-col-100 elementor-field-required\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-field_e48e53c\" class=\"elementor-field-label elementor-screen-only\">\n\t\t\t\t\t\t\t\tSubject*\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"text\" name=\"form_fields[field_e48e53c]\" id=\"form-field-field_e48e53c\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" placeholder=\"Your Subject*\" required=\"required\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-textarea elementor-field-group elementor-column elementor-field-group-message elementor-col-100 elementor-field-required\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-message\" class=\"elementor-field-label elementor-screen-only\">\n\t\t\t\t\t\t\t\tMessage\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t<textarea class=\"elementor-field-textual elementor-field  elementor-size-sm\" name=\"form_fields[message]\" id=\"form-field-message\" rows=\"5\" placeholder=\"Your Message *\" required=\"required\"><\/textarea>\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-group elementor-column elementor-field-type-submit elementor-col-100 e-form__buttons\">\n\t\t\t\t\t<button class=\"elementor-button elementor-size-sm\" type=\"submit\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Submit<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/button>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/form>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7dbc336 e-flex e-con-boxed e-con e-parent\" data-id=\"7dbc336\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e0b59e6 elementor-widget elementor-widget-heading\" data-id=\"e0b59e6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Hot Research\n<\/h2>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-8f34f04 e-con-full e-flex e-con e-child\" data-id=\"8f34f04\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e9cd70c elementor-widget elementor-widget-heading\" data-id=\"e9cd70c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/manlybattery.com\/de\/product-category\/lithium-golf-cart-battery\/\">Lithium Golf Cart Battery<\/a><\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6ccd7b8 elementor-widget elementor-widget-heading\" data-id=\"6ccd7b8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/manlybattery.com\/de\/battery-shop\/marine-lithium-battery-charger\/\">Marine Lithium Battery<\/a><\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8115e25 elementor-widget elementor-widget-heading\" data-id=\"8115e25\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/manlybattery.com\/de\/product-category\/solar-battery\/\">Solar Battery<\/a><\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6acca42 elementor-widget elementor-widget-heading\" data-id=\"6acca42\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/manlybattery.com\/de\/battery-shop\/\">LiFePO4 Lithium Battery<\/a><\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-cdb258d e-con-full e-flex e-con e-child\" data-id=\"cdb258d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ca7ad96 elementor-widget elementor-widget-heading\" data-id=\"ca7ad96\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/manlybattery.com\/de\/battery-shop\/lithium-battery-golf-cart-for-sale\/\">Lithium Battery Golf Cart for Sale<\/a><\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-456d1a8 elementor-widget elementor-widget-heading\" data-id=\"456d1a8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/manlybattery.com\/de\/battery-shop\/wholesale-battery-distributors\/\">Wholesale Battery Distributors <\/a><\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-25720d5 elementor-widget elementor-widget-heading\" data-id=\"25720d5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/manlybattery.com\/de\/battery-shop\/bulk-batteries\/\">Bulk Batteries<\/a><\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-49f14ad e-flex e-con-boxed e-con e-parent\" data-id=\"49f14ad\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c3c98d7 elementor-widget-divider--view-line_text elementor-widget-divider--element-align-left elementor-widget elementor-widget-divider\" data-id=\"c3c98d7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t\t<p class=\"elementor-divider__text elementor-divider__element\">\n\t\t\t\tTrending Now\t\t\t\t<\/p>\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-eff6fcf e-flex e-con-boxed e-con e-parent\" data-id=\"eff6fcf\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b53dc41 e-n-tabs-mobile elementor-widget elementor-widget-n-tabs\" data-id=\"b53dc41\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;tabs_justify_horizontal&quot;:&quot;center&quot;,&quot;horizontal_scroll&quot;:&quot;disable&quot;}\" data-widget_type=\"nested-tabs.default\">\n\t\t\t\t\t\t\t<div class=\"e-n-tabs\" data-widget-number=\"190045249\" aria-label=\"Guias. Abra os itens com Enter ou Espa\u00e7o, feche com Escape e navegue usando as teclas de seta.\">\n\t\t\t<div class=\"e-n-tabs-heading\" role=\"tablist\">\n\t\t\t\t\t<button id=\"e-n-tab-title-1900452491\" data-tab-title-id=\"e-n-tab-title-1900452491\" class=\"e-n-tab-title\" aria-selected=\"true\" data-tab-index=\"1\" role=\"tab\" tabindex=\"0\" aria-controls=\"e-n-tab-content-1900452491\" style=\"--n-tabs-title-order: 1;\">\n\t\t\t\t\t\t<span class=\"e-n-tab-title-text\">\n\t\t\t\tAll \/\t\t\t<\/span>\n\t\t<\/button>\n\t\t\t\t<button id=\"e-n-tab-title-1900452492\" data-tab-title-id=\"e-n-tab-title-1900452492\" class=\"e-n-tab-title\" aria-selected=\"false\" data-tab-index=\"2\" role=\"tab\" tabindex=\"-1\" aria-controls=\"e-n-tab-content-1900452492\" style=\"--n-tabs-title-order: 2;\">\n\t\t\t\t\t\t<span class=\"e-n-tab-title-text\">\n\t\t\t\t12V Lithium Battery \/\t\t\t<\/span>\n\t\t<\/button>\n\t\t\t\t<button id=\"e-n-tab-title-1900452493\" data-tab-title-id=\"e-n-tab-title-1900452493\" class=\"e-n-tab-title\" aria-selected=\"false\" data-tab-index=\"3\" role=\"tab\" tabindex=\"-1\" aria-controls=\"e-n-tab-content-1900452493\" style=\"--n-tabs-title-order: 3;\">\n\t\t\t\t\t\t<span class=\"e-n-tab-title-text\">\n\t\t\t\tmarine lithium battery\t\t\t<\/span>\n\t\t<\/button>\n\t\t\t\t\t<\/div>\n\t\t\t<div class=\"e-n-tabs-content\">\n\t\t\t\t<div id=\"e-n-tab-content-1900452491\" role=\"tabpanel\" aria-labelledby=\"e-n-tab-title-1900452491\" data-tab-index=\"1\" style=\"--n-tabs-title-order: 1;\" class=\"e-active elementor-element elementor-element-c25e9b3 e-con-full e-flex e-con e-child\" data-id=\"c25e9b3\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-23200ea elementor-widget elementor-widget-ucaddon_woocommerce_product_grid\" data-id=\"23200ea\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"ucaddon_woocommerce_product_grid.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n<!-- start Woo Product Grid -->\n\t\t<link id='font-awesome-css' href='https://manlybattery-static-cdn.cimen.club/manlybattery/de/https:\/\/manlybattery.com\/wp-content\/plugins\/unlimited-elements-for-elementor-premium\/assets_libraries\/font-awesome6\/fontawesome-all.min.css' type='text\/css' rel='stylesheet' >\n\t\t<link id='font-awesome-4-shim-css' href='https://manlybattery-static-cdn.cimen.club/manlybattery/de/https:\/\/manlybattery.com\/wp-content\/plugins\/unlimited-elements-for-elementor-premium\/assets_libraries\/font-awesome6\/fontawesome-v4-shims.min.css' type='text\/css' rel='stylesheet' >\n\n<style>\/* widget: Woo Product Grid *\/\n\n\n\n#uc_woocommerce_product_grid_elementor_23200ea * {\n\t-webkit-box-sizing: border-box;\n\t-moz-box-sizing: border-box;\n\tbox-sizing: border-box;    \n}\n\n\n#uc_woocommerce_product_grid_elementor_23200ea .ue_woocommerce_product_label-custom-field{\n\tz-index: 100;\n}\n\n#uc_woocommerce_product_grid_elementor_23200ea .ue_category_wrapper{\n  display: flex;\n  flex-wrap: wrap;\n}\n\n#uc_woocommerce_product_grid_elementor_23200ea .uc_post_grid_style_one_item{\n\ttransition: all.3s;\n}\n\n#uc_woocommerce_product_grid_elementor_23200ea span.add-to-cart__loader{\n  \tposition: absolute;\n  \tright: 0;\n  \ttop: 50%;\n  \ttransform: translate(0, -50%);\n  \tline-height: 1em;\n}\n#uc_woocommerce_product_grid_elementor_23200ea .add_to_cart_button.loading span.add-to-cart__loader{\n\tdisplay: inline-block !important;\n}\n\n#uc_woocommerce_product_grid_elementor_23200ea .uc-grid-count-buttons{\n\tdisplay: flex;\n}\n\n#uc_woocommerce_product_grid_elementor_23200ea .uc-grid-count-buttons button{\n\tdisplay: flex;\n    align-items:center;\n    justify-content:center;\n    flex-grow:0;\n    flex-shrink:0;\n    line-height:1em;\n}\n\n#uc_woocommerce_product_grid_elementor_23200ea .uc-grid-count-buttons button:disabled{\n\topacity:0.5;\n}\n\n#uc_woocommerce_product_grid_elementor_23200ea .uc_more_btn-custom-field{\n  text-align:center;\n  text-decoration:none;\n  transition:0.3s;\n}\n\n#uc_woocommerce_product_grid_elementor_23200ea .uc-grid-count-buttons button svg{\n\theight:1em;\n    width:1em;\n}\n\n#uc_woocommerce_product_grid_elementor_23200ea input.uc-grid-count-buttons__number{\n  text-align:center;\n  flex-grow:1;\n}\n\n#uc_woocommerce_product_grid_elementor_23200ea {\n  margin:0 auto;\n  position:relative;  \n}\n\n.uc_post_grid_style_one .uc_post_grid_style_one_item {\n\tcolor: #111;\n\tfont-size: 16px;\n\toverflow: hidden;\n  \tposition: relative;\n}\n\n#uc_woocommerce_product_grid_elementor_23200ea .uc_post_grid_style_one_image {\n\twidth: 100%;\n\toverflow: hidden;\n\tdisplay: block;\n  \tposition: relative;\n}\n\n#uc_woocommerce_product_grid_elementor_23200ea .uc_post_image {\n    position:relative;\n\tdisplay: block;\n\ttransition: all 0.25s ease-in-out;\n    overflow:hidden;\n}\n\n#uc_woocommerce_product_grid_elementor_23200ea .uc_post_image--second{\n  \twidth: 100%;\n    height: 100%;\n    object-fit: cover;\n\tposition: absolute;\n  \ttop: 0;\n  \tright: 0;\n  \t  \t\topacity: 0;\n  \t \n  \ttransition: all .3s;\n}\n\n#uc_woocommerce_product_grid_elementor_23200ea .uc_post_grid_style_one_image:hover .uc_post_image--second{  \n  \t  \t\topacity: 1;\n  \t}\n\n#uc_woocommerce_product_grid_elementor_23200ea  .uc_post_image img\n{\n  width:100%;\n  display: block;\n  transition:0.3s;\n}\n\n\n.uc_post_grid_style_one .uc_title {\n    font-size: 21px;   \n}\n\n.uc_post_grid_style_one .uc_title a {\n\ttext-decoration: none;\n   transition: all .3s ease;\n}\n\n\n#uc_woocommerce_product_grid_elementor_23200ea .uc_post_grid_style_one_button > a,\n#uc_woocommerce_product_grid_elementor_23200ea .uc_post_grid_style_one_button > button,\n#uc_woocommerce_product_grid_elementor_23200ea .uc-button-addcart,\n#uc_woocommerce_product_grid_elementor_23200ea .added_to_cart,\n#uc_woocommerce_product_grid_elementor_23200ea .uc_more_btn-custom-field{\n\tdisplay: inline-block;\n\ttext-align: center;\n    text-decoration: none;\n    text-transform: none;\n\ttransition: all 0.25s ease-in-out;\n    vertical-align: middle;\n}\n\n  #uc_woocommerce_product_grid_elementor_23200ea .uc-button-addcart.added{\n    display:none;\n  }\n\n#uc_woocommerce_product_grid_elementor_23200ea.uc_post_grid_style_one .uc_post_grid_style_one_wrap {\t\n    display: grid;\n}\n\n    #uc_woocommerce_product_grid_elementor_23200ea.uc_post_grid_style_one .uc_content{\n      flex-grow: 1;\n      display: flex;\n      flex-flow: column nowrap;\n    }\n    #uc_woocommerce_product_grid_elementor_23200ea .ue_grid_item_bottom    {\n      margin-top:auto;\n    }\n\n  .uc_post_grid_style_one .uc_post_grid_style_one_item {\n      flex-direction:column;\n      display:flex;\n  }\n\n\n\n\n\n@media (max-width:1023px){\n\t#uc_woocommerce_product_grid_elementor_23200ea.uc_post_grid_style_one .uc_post_grid_style_one_wrap {\n\t\tgrid-template-columns: repeat(2, 1fr);\n\t}\n}\n@media (max-width:639px){\n\t#uc_woocommerce_product_grid_elementor_23200ea.uc_post_grid_style_one .uc_post_grid_style_one_wrap {\n\t\tgrid-template-columns: repeat(2, 1fr);\n\t}\n}\n\n\n\n\n#uc_woocommerce_product_grid_elementor_23200ea .ue_category_label{\n  display:block;\n  text-decoration:none;\n  transition: all .3s ease;\n  position: relative;\n}\n\n\/* hide default arrows in input type number *\/\n\/* Chrome, Safari, Edge, Opera *\/\n#uc_woocommerce_product_grid_elementor_23200ea input.uc-grid-count-buttons__number::-webkit-outer-spin-button,\n#uc_woocommerce_product_grid_elementor_23200ea input.uc-grid-count-buttons__number::-webkit-inner-spin-button{\n\t-webkit-appearance: none;\n  \tmargin: 0;\n}\n\n\/* Firefox *\/\n#uc_woocommerce_product_grid_elementor_23200ea input.uc-grid-count-buttons__number[type=number]{\n\t-moz-appearance: textfield;\n}\n\/* end hide default arrows in input type number *\/\n\n#uc_woocommerce_product_grid_elementor_23200ea .uc_regular_price:not(.uc_regular_price--single){\n  text-decoration:line-through !important;\n}\n\n#uc_woocommerce_product_grid_elementor_23200ea del{\n  display: block;\n  color: #000;\n  opacity: .5;\n  font-size: 26px;\n  font-weight: 400;\n  text-decoration:line-through !important;\n}\n\n#uc_woocommerce_product_grid_elementor_23200ea ins{\n  color: #000;\n  font-size: 36px;\n  font-weight: 400;\n  text-decoration: none;\n}\n\n#uc_woocommerce_product_grid_elementor_23200ea .ue_woocommerce_product_carousel_sale_label{\n  display:inline-block;\n  position:absolute;\n  z-index: 1;\n  left:10px;\n  top:10px;\n}\n\n#uc_woocommerce_product_grid_elementor_23200ea .ue_woocommerce_product_grid_out_of_stock_label{\n  \t    position: absolute;\n  \t  \twidth: fit-content;\n  \tleft:10px;\n  \ttop:10px;\n  \tz-index: 1;\n}\n\n#uc_woocommerce_product_grid_elementor_23200ea .ue-inner-btn-wrapper{\n  display:flex;\n  align-items:center;\n  justify-content:center;\n  position: relative;\n  pointer-events: none;\n}\n\n<\/style>\n\n<div class=\"uc_post_grid_style_one woocommerce_product_grid uc-filterable-grid  \" id=\"uc_woocommerce_product_grid_elementor_23200ea\"   data-ajax='true'  data-filterbehave='mixed'  querydata='{&quot;count_posts&quot;:4,&quot;total_posts&quot;:92,&quot;page&quot;:1,&quot;num_pages&quot;:23,&quot;orderby&quot;:&quot;date&quot;,&quot;woo&quot;:true}' style=\"direction:ltr;text-align:left;\">\n  <div class=\"uc_post_grid_style_one_wrap uc-items-wrapper ue-woo-grid\">\n    \n\n\n\n\n\n\n\n\n\n\n\n\n \n<div class=\"uc_post_grid_style_one_item ue-item\" id=\"uc_woocommerce_product_grid_elementor_23200ea_item1\">\n   \n    \n \n     \t\n     \n  \n      <div class=\"uc_post_grid_style_one_image-wrapper\">\n      <a class=\"uc_post_grid_style_one_image\" href=\"https:\/\/manlybattery.com\/de\/product-item\/12v-70ah-agm-battery\/\">     \n\n        <div class=\"uc_post_image\"> \n                      <img decoding=\"async\" src=\"https:\/\/manlybattery-static-cdn.cimen.club\/manlybattery\/wp-content\/uploads\/2026\/01\/Manly-12v-70ah-agm-starter-battery\u200b-agm-battery-manufacturer-768x768.webp\"  alt=\"Manly 12v 70ah Agm Starter Battery\u200b Agm Battery Manufacturer\">\n          \t\n            \n                \t\n   \n        <\/div>\n                       \n            <div class=\"uc_post_image uc_post_image--second\">\n              <img decoding=\"async\" src=\"https:\/\/manlybattery-static-cdn.cimen.club\/manlybattery\/wp-content\/uploads\/2026\/01\/Manly-12v-70ah-starter-battery-agm-battery-supplier\u200b-768x768.webp\" alt=\"Manly 12v 70ah Agm Starter Battery\u200b Agm Battery Manufacturer\">\n            <\/div>                  \n      <\/a>    <\/div> \n    \n      \n  \n  <div class=\"uc_content padding\">\n    \n         \n          \n          \n          \n      <h3 class=\"uc_title\"><a href=\"https:\/\/manlybattery.com\/de\/product-item\/12v-70ah-agm-battery\/\">12V 70Ah AGM Battery<\/a><\/h3>    \n          \n            \n                        \n      <div class=\"ue_grid_item_bottom\">\n      \n       <div class=\"ue_grid_prices\">         \n                    <div class=\"uc_regular_price uc_regular_price--single\">\n                                   \n  \n             \n                           \n           <\/div>                 \n                 \t<div class=\"uc_price\">\n                                     \n  \n           \n                           \n         \t<\/div>                  \n       <\/div>\t  \n      <div class=\"uc_post_grid_style_one_button\">\n        \n                \n                \n              <\/div>\n    <\/div> \n  <\/div>\n\n    \t\n\n<\/div>\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n<div class=\"uc_post_grid_style_one_item ue-item\" id=\"uc_woocommerce_product_grid_elementor_23200ea_item2\">\n   \n    \n \n     \t\n     \n  \n      <div class=\"uc_post_grid_style_one_image-wrapper\">\n      <a class=\"uc_post_grid_style_one_image\" href=\"https:\/\/manlybattery.com\/de\/product-item\/72v-100ah-lithium-battery\/\">     \n\n        <div class=\"uc_post_image\"> \n                      <img decoding=\"async\" src=\"https:\/\/manlybattery-static-cdn.cimen.club\/manlybattery\/wp-content\/uploads\/2025\/06\/72v-100ah-lifepo4-lithium-battery-768x768.webp\"  alt=\"72v 100ah lifepo4 lithium battery\">\n          \t\n            \n                \t\n   \n        <\/div>\n                       \n            <div class=\"uc_post_image uc_post_image--second\">\n              <img decoding=\"async\" src=\"https:\/\/manlybattery-static-cdn.cimen.club\/manlybattery\/wp-content\/uploads\/2025\/06\/72v-100ah-lithium-battery-robot-battery-768x768.webp\" alt=\"72v 100ah lifepo4 lithium battery\">\n            <\/div>                  \n      <\/a>    <\/div> \n    \n      \n  \n  <div class=\"uc_content padding\">\n    \n         \n          \n          \n          \n      <h3 class=\"uc_title\"><a href=\"https:\/\/manlybattery.com\/de\/product-item\/72v-100ah-lithium-battery\/\">72V 100Ah Lithium Battery<\/a><\/h3>    \n          \n            \n                        \n      <div class=\"ue_grid_item_bottom\">\n      \n       <div class=\"ue_grid_prices\">         \n                    <div class=\"uc_regular_price uc_regular_price--single\">\n                                   \n  \n             \n                           \n           <\/div>                 \n                 \t<div class=\"uc_price\">\n                                     \n  \n           \n                           \n         \t<\/div>                  \n       <\/div>\t  \n      <div class=\"uc_post_grid_style_one_button\">\n        \n                \n                \n              <\/div>\n    <\/div> \n  <\/div>\n\n    \t\n\n<\/div>\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n<div class=\"uc_post_grid_style_one_item ue-item\" id=\"uc_woocommerce_product_grid_elementor_23200ea_item3\">\n   \n    \n \n     \t\n     \n  \n      <div class=\"uc_post_grid_style_one_image-wrapper\">\n      <a class=\"uc_post_grid_style_one_image\" href=\"https:\/\/manlybattery.com\/de\/product-item\/36v-100ah-lithium-battery\/\">     \n\n        <div class=\"uc_post_image\"> \n                      <img decoding=\"async\" src=\"https:\/\/manlybattery-static-cdn.cimen.club\/manlybattery\/wp-content\/uploads\/2025\/06\/Buy-36v-100ah-lifepo4-lithium-battery-768x768.webp\"  alt=\"Buy 36v 100ah Lifepo4 Lithium Battery\">\n          \t\n            \n                \t\n   \n        <\/div>\n                       \n            <div class=\"uc_post_image uc_post_image--second\">\n              <img decoding=\"async\" src=\"https:\/\/manlybattery-static-cdn.cimen.club\/manlybattery\/wp-content\/uploads\/2025\/06\/36v-100ah-lifepo4-lithium-battery-1-768x768.webp\" alt=\"Buy 36v 100ah Lifepo4 Lithium Battery\">\n            <\/div>                  \n      <\/a>    <\/div> \n    \n      \n  \n  <div class=\"uc_content padding\">\n    \n         \n          \n          \n          \n      <h3 class=\"uc_title\"><a href=\"https:\/\/manlybattery.com\/de\/product-item\/36v-100ah-lithium-battery\/\">36V 100Ah Lithium Battery<\/a><\/h3>    \n          \n            \n                        \n      <div class=\"ue_grid_item_bottom\">\n      \n       <div class=\"ue_grid_prices\">         \n                    <div class=\"uc_regular_price uc_regular_price--single\">\n                                   \n  \n             \n                           \n           <\/div>                 \n                 \t<div class=\"uc_price\">\n                                     \n  \n           \n                           \n         \t<\/div>                  \n       <\/div>\t  \n      <div class=\"uc_post_grid_style_one_button\">\n        \n                \n                \n              <\/div>\n    <\/div> \n  <\/div>\n\n    \t\n\n<\/div>\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n<div class=\"uc_post_grid_style_one_item ue-item\" id=\"uc_woocommerce_product_grid_elementor_23200ea_item4\">\n   \n    \n \n     \t\n     \n  \n      <div class=\"uc_post_grid_style_one_image-wrapper\">\n      <a class=\"uc_post_grid_style_one_image\" href=\"https:\/\/manlybattery.com\/de\/product-item\/48v-60ah-lithium-battery\/\">     \n\n        <div class=\"uc_post_image\"> \n                      <img decoding=\"async\" src=\"https:\/\/manlybattery-static-cdn.cimen.club\/manlybattery\/wp-content\/uploads\/2025\/06\/48v-60ah-lifepo4-lithium-battery-768x768.webp\"  alt=\"48v 60ah lifepo4 lithium battery\">\n          \t\n            \n                \t\n   \n        <\/div>\n                       \n            <div class=\"uc_post_image uc_post_image--second\">\n              <img decoding=\"async\" src=\"https:\/\/manlybattery-static-cdn.cimen.club\/manlybattery\/wp-content\/uploads\/2025\/06\/48v-60ah-lithium-battery-robot-battery-768x768.webp\" alt=\"48v 60ah lifepo4 lithium battery\">\n            <\/div>                  \n      <\/a>    <\/div> \n    \n      \n  \n  <div class=\"uc_content padding\">\n    \n         \n          \n          \n          \n      <h3 class=\"uc_title\"><a href=\"https:\/\/manlybattery.com\/de\/product-item\/48v-60ah-lithium-battery\/\">48V 60Ah Lithium Battery<\/a><\/h3>    \n          \n            \n                        \n      <div class=\"ue_grid_item_bottom\">\n      \n       <div class=\"ue_grid_prices\">         \n                    <div class=\"uc_regular_price uc_regular_price--single\">\n                                   \n  \n             \n                           \n           <\/div>                 \n                 \t<div class=\"uc_price\">\n                                     \n  \n           \n                           \n         \t<\/div>                  \n       <\/div>\t  \n      <div class=\"uc_post_grid_style_one_button\">\n        \n                \n                \n              <\/div>\n    <\/div> \n  <\/div>\n\n    \t\n\n<\/div>\n\n  <\/div>\n<\/div>\n\n\n  <div id=\"uc_woocommerce_product_grid_elementor_23200ea_empty_message\" class=\"ue-no-posts-found\"  style=\"display:none\" >No products found<\/div>\n\n<!-- end Woo Product Grid -->\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-145c4be elementor-widget__width-inherit elementor-widget elementor-widget-ucaddon_archive_pagination\" data-id=\"145c4be\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"ucaddon_archive_pagination.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n<!-- start Post Pagination -->\n\n<style>\/* widget: Post Pagination *\/\n\n#uc_archive_pagination_elementor_145c4be nav\n{\n  padding:0px;\n  margin:0px;\n}\n\n#uc_archive_pagination_elementor_145c4be \n{\n  display:flex;\n  flex-wrap: wrap;\n  justify-content:center;\n}\n\n#uc_archive_pagination_elementor_145c4be .nav-links\n{\n  display:flex;\n  justify-content:center;\n}\n\n#uc_archive_pagination_elementor_145c4be .nav-links > *\n{\n}\n\n#uc_archive_pagination_elementor_145c4be .page-numbers\n{\n  display:flex;\n  \n  align-items:center;\n  justify-content:center;\n  transition:0.3s;\n  line-height:1em;\n}\n\n\n#uc_archive_pagination_elementor_145c4be a.page-numbers, #uc_archive_pagination_elementor_145c4be .dots\n{\n  color:#393939;\n  background-color:;\n}\n\n#uc_archive_pagination_elementor_145c4be a.page-numbers:hover\n{\n  color:#6e6e6e;\n  background-color:#eeeeee;\n}\n\n#uc_archive_pagination_elementor_145c4be .page-numbers.current,\n#uc_archive_pagination_elementor_145c4be .page-numbers.current:hover\n{\n  background-color:#005FB3;\n  color:#ffffff;\n}\n\n\n#uc_archive_pagination_elementor_145c4be .page-numbers.prev, #uc_archive_pagination_elementor_145c4be .page-numbers.next\n{\n  padding-left:15px;\n  padding-right:15px;\n}\n\n\n\n#uc_archive_pagination_elementor_145c4be .prev:before {\n   font-family: \"Font Awesome 5 Free\";\n   content: \"\\f053\";\n   display: inline-block;\n   vertical-align: middle;\n   font-weight: 900;\n   padding-right:10px;}\n\n#uc_archive_pagination_elementor_145c4be .next:after {\n   font-family: \"Font Awesome 5 Free\";\n   content: \"\\f054\";\n   display: inline-block;\n   vertical-align: middle;\n   font-weight: 900;\n   padding-left:10px;}\n\n#uc_archive_pagination_elementor_145c4be.uc-ajax-loading{\n\topacity:1 !important;\n}\n\n#uc_archive_pagination_elementor_145c4be.uc-ajax-loading .current{\n\tposition:relative;\n    overflow:hidden;\n}\n\n\n#uc_archive_pagination_elementor_145c4be.uc-ajax-loading .current:before{\n  content: \"\";\n  display:block;\n  width:100%;\n  height:100%;\n  box-sizing:border-box;\n  position:absolute;\n  top:0px;\n  left:0px;\n  background-color: #c2c2c2;\n  animation: uc-spinning-border 0.5s linear infinite;\n  opacity:50%;\n  border-radius:inherit;\n}\n\n@keyframes uc-spinning-border {\n\t0%{transform: scale(0);}\n\t100%{transform: scale(1); }\t\n}\n\n\n\n<\/style>\n\n<div id=\"uc_archive_pagination_elementor_145c4be\" class=\"archive_pagination uc-filter-pagination \">\n<span aria-label=\"Seite 1\" aria-current=\"page\" class=\"page-numbers current\">1<\/span>\n<a aria-label=\"Seite 2\" class=\"page-numbers\" href=\"https:\/\/manlybattery.com\/de\/battery-tools-and-resources\/how-long-will-a-200ah-battery-last-calculator\/2\/\" data-e-disable-page-transition=\"true\">2<\/a>\n<a aria-label=\"Seite 3\" class=\"page-numbers\" href=\"https:\/\/manlybattery.com\/de\/battery-tools-and-resources\/how-long-will-a-200ah-battery-last-calculator\/3\/\" data-e-disable-page-transition=\"true\">3<\/a>\n<span class=\"page-numbers dots\">&hellip;<\/span>\n<a aria-label=\"Seite 23\" class=\"page-numbers\" href=\"https:\/\/manlybattery.com\/de\/battery-tools-and-resources\/how-long-will-a-200ah-battery-last-calculator\/23\/\" data-e-disable-page-transition=\"true\">23<\/a>\n<a class=\"next page-numbers\" href=\"https:\/\/manlybattery.com\/de\/battery-tools-and-resources\/how-long-will-a-200ah-battery-last-calculator\/2\/\" data-e-disable-page-transition=\"true\">Next<\/a>\n<\/div>\n<!-- end Post Pagination -->\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div id=\"e-n-tab-content-1900452492\" role=\"tabpanel\" aria-labelledby=\"e-n-tab-title-1900452492\" data-tab-index=\"2\" style=\"--n-tabs-title-order: 2;\" class=\" elementor-element elementor-element-a839ed3 e-con-full e-flex e-con e-child\" data-id=\"a839ed3\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-23d0993 elementor-widget elementor-widget-ucaddon_woocommerce_product_grid\" data-id=\"23d0993\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"ucaddon_woocommerce_product_grid.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n<!-- start Woo Product Grid -->\n\n<style>\/* widget: Woo Product Grid *\/\n\n\n\n#uc_woocommerce_product_grid_elementor_23d0993 * {\n\t-webkit-box-sizing: border-box;\n\t-moz-box-sizing: border-box;\n\tbox-sizing: border-box;    \n}\n\n\n#uc_woocommerce_product_grid_elementor_23d0993 .ue_woocommerce_product_label-custom-field{\n\tz-index: 100;\n}\n\n#uc_woocommerce_product_grid_elementor_23d0993 .ue_category_wrapper{\n  display: flex;\n  flex-wrap: wrap;\n}\n\n#uc_woocommerce_product_grid_elementor_23d0993 .uc_post_grid_style_one_item{\n\ttransition: all.3s;\n}\n\n#uc_woocommerce_product_grid_elementor_23d0993 span.add-to-cart__loader{\n  \tposition: absolute;\n  \tright: 0;\n  \ttop: 50%;\n  \ttransform: translate(0, -50%);\n  \tline-height: 1em;\n}\n#uc_woocommerce_product_grid_elementor_23d0993 .add_to_cart_button.loading span.add-to-cart__loader{\n\tdisplay: inline-block !important;\n}\n\n#uc_woocommerce_product_grid_elementor_23d0993 .uc-grid-count-buttons{\n\tdisplay: flex;\n}\n\n#uc_woocommerce_product_grid_elementor_23d0993 .uc-grid-count-buttons button{\n\tdisplay: flex;\n    align-items:center;\n    justify-content:center;\n    flex-grow:0;\n    flex-shrink:0;\n    line-height:1em;\n}\n\n#uc_woocommerce_product_grid_elementor_23d0993 .uc-grid-count-buttons button:disabled{\n\topacity:0.5;\n}\n\n#uc_woocommerce_product_grid_elementor_23d0993 .uc_more_btn-custom-field{\n  text-align:center;\n  text-decoration:none;\n  transition:0.3s;\n}\n\n#uc_woocommerce_product_grid_elementor_23d0993 .uc-grid-count-buttons button svg{\n\theight:1em;\n    width:1em;\n}\n\n#uc_woocommerce_product_grid_elementor_23d0993 input.uc-grid-count-buttons__number{\n  text-align:center;\n  flex-grow:1;\n}\n\n#uc_woocommerce_product_grid_elementor_23d0993 {\n  margin:0 auto;\n  position:relative;  \n}\n\n.uc_post_grid_style_one .uc_post_grid_style_one_item {\n\tcolor: #111;\n\tfont-size: 16px;\n\toverflow: hidden;\n  \tposition: relative;\n}\n\n#uc_woocommerce_product_grid_elementor_23d0993 .uc_post_grid_style_one_image {\n\twidth: 100%;\n\toverflow: hidden;\n\tdisplay: block;\n  \tposition: relative;\n}\n\n#uc_woocommerce_product_grid_elementor_23d0993 .uc_post_image {\n    position:relative;\n\tdisplay: block;\n\ttransition: all 0.25s ease-in-out;\n    overflow:hidden;\n}\n\n#uc_woocommerce_product_grid_elementor_23d0993 .uc_post_image--second{\n  \twidth: 100%;\n    height: 100%;\n    object-fit: cover;\n\tposition: absolute;\n  \ttop: 0;\n  \tright: 0;\n  \t  \t\topacity: 0;\n  \t \n  \ttransition: all .3s;\n}\n\n#uc_woocommerce_product_grid_elementor_23d0993 .uc_post_grid_style_one_image:hover .uc_post_image--second{  \n  \t  \t\topacity: 1;\n  \t}\n\n#uc_woocommerce_product_grid_elementor_23d0993  .uc_post_image img\n{\n  width:100%;\n  display: block;\n  transition:0.3s;\n}\n\n\n.uc_post_grid_style_one .uc_title {\n    font-size: 21px;   \n}\n\n.uc_post_grid_style_one .uc_title a {\n\ttext-decoration: none;\n   transition: all .3s ease;\n}\n\n\n#uc_woocommerce_product_grid_elementor_23d0993 .uc_post_grid_style_one_button > a,\n#uc_woocommerce_product_grid_elementor_23d0993 .uc_post_grid_style_one_button > button,\n#uc_woocommerce_product_grid_elementor_23d0993 .uc-button-addcart,\n#uc_woocommerce_product_grid_elementor_23d0993 .added_to_cart,\n#uc_woocommerce_product_grid_elementor_23d0993 .uc_more_btn-custom-field{\n\tdisplay: inline-block;\n\ttext-align: center;\n    text-decoration: none;\n    text-transform: none;\n\ttransition: all 0.25s ease-in-out;\n    vertical-align: middle;\n}\n\n  #uc_woocommerce_product_grid_elementor_23d0993 .uc-button-addcart.added{\n    display:none;\n  }\n\n#uc_woocommerce_product_grid_elementor_23d0993.uc_post_grid_style_one .uc_post_grid_style_one_wrap {\t\n    display: grid;\n}\n\n    #uc_woocommerce_product_grid_elementor_23d0993.uc_post_grid_style_one .uc_content{\n      flex-grow: 1;\n      display: flex;\n      flex-flow: column nowrap;\n    }\n    #uc_woocommerce_product_grid_elementor_23d0993 .ue_grid_item_bottom    {\n      margin-top:auto;\n    }\n\n  .uc_post_grid_style_one .uc_post_grid_style_one_item {\n      flex-direction:column;\n      display:flex;\n  }\n\n\n\n\n\n@media (max-width:1023px){\n\t#uc_woocommerce_product_grid_elementor_23d0993.uc_post_grid_style_one .uc_post_grid_style_one_wrap {\n\t\tgrid-template-columns: repeat(2, 1fr);\n\t}\n}\n@media (max-width:639px){\n\t#uc_woocommerce_product_grid_elementor_23d0993.uc_post_grid_style_one .uc_post_grid_style_one_wrap {\n\t\tgrid-template-columns: repeat(2, 1fr);\n\t}\n}\n\n\n\n\n#uc_woocommerce_product_grid_elementor_23d0993 .ue_category_label{\n  display:block;\n  text-decoration:none;\n  transition: all .3s ease;\n  position: relative;\n}\n\n\/* hide default arrows in input type number *\/\n\/* Chrome, Safari, Edge, Opera *\/\n#uc_woocommerce_product_grid_elementor_23d0993 input.uc-grid-count-buttons__number::-webkit-outer-spin-button,\n#uc_woocommerce_product_grid_elementor_23d0993 input.uc-grid-count-buttons__number::-webkit-inner-spin-button{\n\t-webkit-appearance: none;\n  \tmargin: 0;\n}\n\n\/* Firefox *\/\n#uc_woocommerce_product_grid_elementor_23d0993 input.uc-grid-count-buttons__number[type=number]{\n\t-moz-appearance: textfield;\n}\n\/* end hide default arrows in input type number *\/\n\n#uc_woocommerce_product_grid_elementor_23d0993 .uc_regular_price:not(.uc_regular_price--single){\n  text-decoration:line-through !important;\n}\n\n#uc_woocommerce_product_grid_elementor_23d0993 del{\n  display: block;\n  color: #000;\n  opacity: .5;\n  font-size: 26px;\n  font-weight: 400;\n  text-decoration:line-through !important;\n}\n\n#uc_woocommerce_product_grid_elementor_23d0993 ins{\n  color: #000;\n  font-size: 36px;\n  font-weight: 400;\n  text-decoration: none;\n}\n\n#uc_woocommerce_product_grid_elementor_23d0993 .ue_woocommerce_product_carousel_sale_label{\n  display:inline-block;\n  position:absolute;\n  z-index: 1;\n  left:10px;\n  top:10px;\n}\n\n#uc_woocommerce_product_grid_elementor_23d0993 .ue_woocommerce_product_grid_out_of_stock_label{\n  \t    position: absolute;\n  \t  \twidth: fit-content;\n  \tleft:10px;\n  \ttop:10px;\n  \tz-index: 1;\n}\n\n#uc_woocommerce_product_grid_elementor_23d0993 .ue-inner-btn-wrapper{\n  display:flex;\n  align-items:center;\n  justify-content:center;\n  position: relative;\n  pointer-events: none;\n}\n\n<\/style>\n\n<div class=\"uc_post_grid_style_one woocommerce_product_grid uc-filterable-grid  \" id=\"uc_woocommerce_product_grid_elementor_23d0993\"   data-ajax='true'  data-filterbehave='mixed'  querydata='{&quot;count_posts&quot;:4,&quot;total_posts&quot;:24,&quot;page&quot;:1,&quot;num_pages&quot;:6,&quot;orderby&quot;:&quot;date&quot;,&quot;woo&quot;:true}' style=\"direction:ltr;text-align:left;\">\n  <div class=\"uc_post_grid_style_one_wrap uc-items-wrapper ue-woo-grid\">\n    \n\n\n\n\n\n\n\n\n\n\n\n\n \n<div class=\"uc_post_grid_style_one_item ue-item\" id=\"uc_woocommerce_product_grid_elementor_23d0993_item1\">\n   \n    \n \n     \t\n     \n  \n      <div class=\"uc_post_grid_style_one_image-wrapper\">\n      <a class=\"uc_post_grid_style_one_image\" href=\"https:\/\/manlybattery.com\/de\/product-item\/12v-400ah-lifepo4-lithium-battery\/\">     \n\n        <div class=\"uc_post_image\"> \n                      <img decoding=\"async\" src=\"https:\/\/manlybattery-static-cdn.cimen.club\/manlybattery\/wp-content\/uploads\/2025\/06\/Buy-12v-400ah-lifepo4-lithium-battery-768x768.webp\"  alt=\"Buy 12v 400ah lifepo4 lithium battery\">\n          \t\n            \n                \t\n   \n        <\/div>\n                       \n            <div class=\"uc_post_image uc_post_image--second\">\n              <img decoding=\"async\" src=\"https:\/\/manlybattery-static-cdn.cimen.club\/manlybattery\/wp-content\/uploads\/2025\/06\/12v-400ah-lifepo4-lithium-battery-wholesale-battery-768x768.webp\" alt=\"Buy 12v 400ah lifepo4 lithium battery\">\n            <\/div>                  \n      <\/a>    <\/div> \n    \n      \n  \n  <div class=\"uc_content padding\">\n    \n         \n          \n          \n          \n      <h3 class=\"uc_title\"><a href=\"https:\/\/manlybattery.com\/de\/product-item\/12v-400ah-lifepo4-lithium-battery\/\">12v 400Ah Lithium Battery<\/a><\/h3>    \n          \n            \n                        \n      <div class=\"ue_grid_item_bottom\">\n      \n       <div class=\"ue_grid_prices\">         \n                    <div class=\"uc_regular_price uc_regular_price--single\">\n                                   \n  \n             \n                           \n           <\/div>                 \n                 \t<div class=\"uc_price\">\n                                     \n  \n           \n                           \n         \t<\/div>                  \n       <\/div>\t  \n      <div class=\"uc_post_grid_style_one_button\">\n        \n                \n                \n              <\/div>\n    <\/div> \n  <\/div>\n\n    \t\n\n<\/div>\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n<div class=\"uc_post_grid_style_one_item ue-item\" id=\"uc_woocommerce_product_grid_elementor_23d0993_item2\">\n   \n    \n \n     \t\n     \n  \n      <div class=\"uc_post_grid_style_one_image-wrapper\">\n      <a class=\"uc_post_grid_style_one_image\" href=\"https:\/\/manlybattery.com\/de\/product-item\/12v-5ah-lithium-lifepo4-deep-cycle-battery-f2\/\">     \n\n        <div class=\"uc_post_image\"> \n                      <img decoding=\"async\" src=\"https:\/\/manlybattery-static-cdn.cimen.club\/manlybattery\/wp-content\/uploads\/2025\/06\/Buy-12v-lifepo4-lithium-battery-1ah-12ah-768x768.webp\"  alt=\"Buy 12v Lifepo4 Lithium Battery 1ah to 12ah\">\n          \t\n            \n                \t\n   \n        <\/div>\n                       \n            <div class=\"uc_post_image uc_post_image--second\">\n              <img decoding=\"async\" src=\"https:\/\/manlybattery-static-cdn.cimen.club\/manlybattery\/wp-content\/uploads\/2025\/06\/12v-lifepo4-lithium-battery-wholesale-battery-1ah-12ah-768x768.webp\" alt=\"Buy 12v Lifepo4 Lithium Battery 1ah to 12ah\">\n            <\/div>                  \n      <\/a>    <\/div> \n    \n      \n  \n  <div class=\"uc_content padding\">\n    \n         \n          \n          \n          \n      <h3 class=\"uc_title\"><a href=\"https:\/\/manlybattery.com\/de\/product-item\/12v-5ah-lithium-lifepo4-deep-cycle-battery-f2\/\">12v 5Ah Lithium Lifepo4 Deep Cycle Battery<\/a><\/h3>    \n          \n            \n                        \n      <div class=\"ue_grid_item_bottom\">\n      \n       <div class=\"ue_grid_prices\">         \n                    <div class=\"uc_regular_price uc_regular_price--single\">\n                                   \n  \n             \n                           \n           <\/div>                 \n                 \t<div class=\"uc_price\">\n                                     \n  \n           \n                           \n         \t<\/div>                  \n       <\/div>\t  \n      <div class=\"uc_post_grid_style_one_button\">\n        \n                \n                \n              <\/div>\n    <\/div> \n  <\/div>\n\n    \t\n\n<\/div>\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n<div class=\"uc_post_grid_style_one_item ue-item\" id=\"uc_woocommerce_product_grid_elementor_23d0993_item3\">\n   \n    \n \n     \t\n     \n  \n      <div class=\"uc_post_grid_style_one_image-wrapper\">\n      <a class=\"uc_post_grid_style_one_image\" href=\"https:\/\/manlybattery.com\/de\/product-item\/12v-150ah-lifepo4-battery\/\">     \n\n        <div class=\"uc_post_image\"> \n                      <img decoding=\"async\" src=\"https:\/\/manlybattery-static-cdn.cimen.club\/manlybattery\/wp-content\/uploads\/2025\/06\/Buy-12v-150ah-lifepo4-lithium-battery-768x768.webp\"  alt=\"Buy 12v 150ah lifepo4 lithium battery\">\n          \t\n            \n                \t\n   \n        <\/div>\n                       \n            <div class=\"uc_post_image uc_post_image--second\">\n              <img decoding=\"async\" src=\"https:\/\/manlybattery-static-cdn.cimen.club\/manlybattery\/wp-content\/uploads\/2025\/06\/12v-150ah-lifepo4-lithium-battery-wholesale-battery-768x768.webp\" alt=\"Buy 12v 150ah lifepo4 lithium battery\">\n            <\/div>                  \n      <\/a>    <\/div> \n    \n      \n  \n  <div class=\"uc_content padding\">\n    \n         \n          \n          \n          \n      <h3 class=\"uc_title\"><a href=\"https:\/\/manlybattery.com\/de\/product-item\/12v-150ah-lifepo4-battery\/\">12v 150Ah Deep Cycle Lithium Battery<\/a><\/h3>    \n          \n            \n                        \n      <div class=\"ue_grid_item_bottom\">\n      \n       <div class=\"ue_grid_prices\">         \n                    <div class=\"uc_regular_price uc_regular_price--single\">\n                                   \n  \n             \n                           \n           <\/div>                 \n                 \t<div class=\"uc_price\">\n                                     \n  \n           \n                           \n         \t<\/div>                  \n       <\/div>\t  \n      <div class=\"uc_post_grid_style_one_button\">\n        \n                \n                \n              <\/div>\n    <\/div> \n  <\/div>\n\n    \t\n\n<\/div>\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n<div class=\"uc_post_grid_style_one_item ue-item\" id=\"uc_woocommerce_product_grid_elementor_23d0993_item4\">\n   \n    \n \n     \t\n     \n  \n      <div class=\"uc_post_grid_style_one_image-wrapper\">\n      <a class=\"uc_post_grid_style_one_image\" href=\"https:\/\/manlybattery.com\/de\/product-item\/12v-100ah-lifepo4-battery\/\">     \n\n        <div class=\"uc_post_image\"> \n                      <img decoding=\"async\" src=\"https:\/\/manlybattery-static-cdn.cimen.club\/manlybattery\/wp-content\/uploads\/2025\/06\/Buy-12v-100ah-lifepo4-lithium-battery-768x768.webp\"  alt=\"Buy 12v 100ah lifepo4 lithium battery\">\n          \t\n            \n                \t\n   \n        <\/div>\n                       \n            <div class=\"uc_post_image uc_post_image--second\">\n              <img decoding=\"async\" src=\"https:\/\/manlybattery-static-cdn.cimen.club\/manlybattery\/wp-content\/uploads\/2025\/06\/12v-100ah-lifepo4-lithium-battery-wholesale-battery-768x768.webp\" alt=\"Buy 12v 100ah lifepo4 lithium battery\">\n            <\/div>                  \n      <\/a>    <\/div> \n    \n      \n  \n  <div class=\"uc_content padding\">\n    \n         \n          \n          \n          \n      <h3 class=\"uc_title\"><a href=\"https:\/\/manlybattery.com\/de\/product-item\/12v-100ah-lifepo4-battery\/\">12 Volt Lithium Battery 100Ah<\/a><\/h3>    \n          \n            \n                        \n      <div class=\"ue_grid_item_bottom\">\n      \n       <div class=\"ue_grid_prices\">         \n                    <div class=\"uc_regular_price uc_regular_price--single\">\n                                   \n  \n             \n                           \n           <\/div>                 \n                 \t<div class=\"uc_price\">\n                                     \n  \n           \n                           \n         \t<\/div>                  \n       <\/div>\t  \n      <div class=\"uc_post_grid_style_one_button\">\n        \n                \n                \n              <\/div>\n    <\/div> \n  <\/div>\n\n    \t\n\n<\/div>\n\n  <\/div>\n<\/div>\n\n\n  <div id=\"uc_woocommerce_product_grid_elementor_23d0993_empty_message\" class=\"ue-no-posts-found\"  style=\"display:none\" >No products found<\/div>\n\n<!-- end Woo Product Grid -->\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-45c249c elementor-widget__width-inherit elementor-widget elementor-widget-ucaddon_archive_pagination\" data-id=\"45c249c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"ucaddon_archive_pagination.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n<!-- start Post Pagination -->\n\n<style>\/* widget: Post Pagination *\/\n\n#uc_archive_pagination_elementor_45c249c nav\n{\n  padding:0px;\n  margin:0px;\n}\n\n#uc_archive_pagination_elementor_45c249c \n{\n  display:flex;\n  flex-wrap: wrap;\n  justify-content:center;\n}\n\n#uc_archive_pagination_elementor_45c249c .nav-links\n{\n  display:flex;\n  justify-content:center;\n}\n\n#uc_archive_pagination_elementor_45c249c .nav-links > *\n{\n}\n\n#uc_archive_pagination_elementor_45c249c .page-numbers\n{\n  display:flex;\n  \n  align-items:center;\n  justify-content:center;\n  transition:0.3s;\n  line-height:1em;\n}\n\n\n#uc_archive_pagination_elementor_45c249c a.page-numbers, #uc_archive_pagination_elementor_45c249c .dots\n{\n  color:#393939;\n  background-color:;\n}\n\n#uc_archive_pagination_elementor_45c249c a.page-numbers:hover\n{\n  color:#6e6e6e;\n  background-color:#eeeeee;\n}\n\n#uc_archive_pagination_elementor_45c249c .page-numbers.current,\n#uc_archive_pagination_elementor_45c249c .page-numbers.current:hover\n{\n  background-color:#005FB3;\n  color:#ffffff;\n}\n\n\n#uc_archive_pagination_elementor_45c249c .page-numbers.prev, #uc_archive_pagination_elementor_45c249c .page-numbers.next\n{\n  padding-left:15px;\n  padding-right:15px;\n}\n\n\n\n#uc_archive_pagination_elementor_45c249c .prev:before {\n   font-family: \"Font Awesome 5 Free\";\n   content: \"\\f053\";\n   display: inline-block;\n   vertical-align: middle;\n   font-weight: 900;\n   padding-right:10px;}\n\n#uc_archive_pagination_elementor_45c249c .next:after {\n   font-family: \"Font Awesome 5 Free\";\n   content: \"\\f054\";\n   display: inline-block;\n   vertical-align: middle;\n   font-weight: 900;\n   padding-left:10px;}\n\n#uc_archive_pagination_elementor_45c249c.uc-ajax-loading{\n\topacity:1 !important;\n}\n\n#uc_archive_pagination_elementor_45c249c.uc-ajax-loading .current{\n\tposition:relative;\n    overflow:hidden;\n}\n\n\n#uc_archive_pagination_elementor_45c249c.uc-ajax-loading .current:before{\n  content: \"\";\n  display:block;\n  width:100%;\n  height:100%;\n  box-sizing:border-box;\n  position:absolute;\n  top:0px;\n  left:0px;\n  background-color: #c2c2c2;\n  animation: uc-spinning-border 0.5s linear infinite;\n  opacity:50%;\n  border-radius:inherit;\n}\n\n@keyframes uc-spinning-border {\n\t0%{transform: scale(0);}\n\t100%{transform: scale(1); }\t\n}\n\n\n\n<\/style>\n\n<div id=\"uc_archive_pagination_elementor_45c249c\" class=\"archive_pagination uc-filter-pagination \">\n<span aria-label=\"Seite 1\" aria-current=\"page\" class=\"page-numbers current\">1<\/span>\n<a aria-label=\"Seite 2\" class=\"page-numbers\" href=\"https:\/\/manlybattery.com\/de\/battery-tools-and-resources\/how-long-will-a-200ah-battery-last-calculator\/2\/\" data-e-disable-page-transition=\"true\">2<\/a>\n<a aria-label=\"Seite 3\" class=\"page-numbers\" href=\"https:\/\/manlybattery.com\/de\/battery-tools-and-resources\/how-long-will-a-200ah-battery-last-calculator\/3\/\" data-e-disable-page-transition=\"true\">3<\/a>\n<span class=\"page-numbers dots\">&hellip;<\/span>\n<a aria-label=\"Seite 6\" class=\"page-numbers\" href=\"https:\/\/manlybattery.com\/de\/battery-tools-and-resources\/how-long-will-a-200ah-battery-last-calculator\/6\/\" data-e-disable-page-transition=\"true\">6<\/a>\n<a class=\"next page-numbers\" href=\"https:\/\/manlybattery.com\/de\/battery-tools-and-resources\/how-long-will-a-200ah-battery-last-calculator\/2\/\" data-e-disable-page-transition=\"true\">Next<\/a>\n<\/div>\n<!-- end Post Pagination -->\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div id=\"e-n-tab-content-1900452493\" role=\"tabpanel\" aria-labelledby=\"e-n-tab-title-1900452493\" data-tab-index=\"3\" style=\"--n-tabs-title-order: 3;\" class=\" elementor-element elementor-element-7e5dbfa e-con-full e-flex e-con e-child\" data-id=\"7e5dbfa\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c2465d6 elementor-widget elementor-widget-ucaddon_woocommerce_product_grid\" data-id=\"c2465d6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"ucaddon_woocommerce_product_grid.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n<!-- start Woo Product Grid -->\n\n<style>\/* widget: Woo Product Grid *\/\n\n\n\n#uc_woocommerce_product_grid_elementor_c2465d6 * {\n\t-webkit-box-sizing: border-box;\n\t-moz-box-sizing: border-box;\n\tbox-sizing: border-box;    \n}\n\n\n#uc_woocommerce_product_grid_elementor_c2465d6 .ue_woocommerce_product_label-custom-field{\n\tz-index: 100;\n}\n\n#uc_woocommerce_product_grid_elementor_c2465d6 .ue_category_wrapper{\n  display: flex;\n  flex-wrap: wrap;\n}\n\n#uc_woocommerce_product_grid_elementor_c2465d6 .uc_post_grid_style_one_item{\n\ttransition: all.3s;\n}\n\n#uc_woocommerce_product_grid_elementor_c2465d6 span.add-to-cart__loader{\n  \tposition: absolute;\n  \tright: 0;\n  \ttop: 50%;\n  \ttransform: translate(0, -50%);\n  \tline-height: 1em;\n}\n#uc_woocommerce_product_grid_elementor_c2465d6 .add_to_cart_button.loading span.add-to-cart__loader{\n\tdisplay: inline-block !important;\n}\n\n#uc_woocommerce_product_grid_elementor_c2465d6 .uc-grid-count-buttons{\n\tdisplay: flex;\n}\n\n#uc_woocommerce_product_grid_elementor_c2465d6 .uc-grid-count-buttons button{\n\tdisplay: flex;\n    align-items:center;\n    justify-content:center;\n    flex-grow:0;\n    flex-shrink:0;\n    line-height:1em;\n}\n\n#uc_woocommerce_product_grid_elementor_c2465d6 .uc-grid-count-buttons button:disabled{\n\topacity:0.5;\n}\n\n#uc_woocommerce_product_grid_elementor_c2465d6 .uc_more_btn-custom-field{\n  text-align:center;\n  text-decoration:none;\n  transition:0.3s;\n}\n\n#uc_woocommerce_product_grid_elementor_c2465d6 .uc-grid-count-buttons button svg{\n\theight:1em;\n    width:1em;\n}\n\n#uc_woocommerce_product_grid_elementor_c2465d6 input.uc-grid-count-buttons__number{\n  text-align:center;\n  flex-grow:1;\n}\n\n#uc_woocommerce_product_grid_elementor_c2465d6 {\n  margin:0 auto;\n  position:relative;  \n}\n\n.uc_post_grid_style_one .uc_post_grid_style_one_item {\n\tcolor: #111;\n\tfont-size: 16px;\n\toverflow: hidden;\n  \tposition: relative;\n}\n\n#uc_woocommerce_product_grid_elementor_c2465d6 .uc_post_grid_style_one_image {\n\twidth: 100%;\n\toverflow: hidden;\n\tdisplay: block;\n  \tposition: relative;\n}\n\n#uc_woocommerce_product_grid_elementor_c2465d6 .uc_post_image {\n    position:relative;\n\tdisplay: block;\n\ttransition: all 0.25s ease-in-out;\n    overflow:hidden;\n}\n\n#uc_woocommerce_product_grid_elementor_c2465d6 .uc_post_image--second{\n  \twidth: 100%;\n    height: 100%;\n    object-fit: cover;\n\tposition: absolute;\n  \ttop: 0;\n  \tright: 0;\n  \t  \t\topacity: 0;\n  \t \n  \ttransition: all .3s;\n}\n\n#uc_woocommerce_product_grid_elementor_c2465d6 .uc_post_grid_style_one_image:hover .uc_post_image--second{  \n  \t  \t\topacity: 1;\n  \t}\n\n#uc_woocommerce_product_grid_elementor_c2465d6  .uc_post_image img\n{\n  width:100%;\n  display: block;\n  transition:0.3s;\n}\n\n\n.uc_post_grid_style_one .uc_title {\n    font-size: 21px;   \n}\n\n.uc_post_grid_style_one .uc_title a {\n\ttext-decoration: none;\n   transition: all .3s ease;\n}\n\n\n#uc_woocommerce_product_grid_elementor_c2465d6 .uc_post_grid_style_one_button > a,\n#uc_woocommerce_product_grid_elementor_c2465d6 .uc_post_grid_style_one_button > button,\n#uc_woocommerce_product_grid_elementor_c2465d6 .uc-button-addcart,\n#uc_woocommerce_product_grid_elementor_c2465d6 .added_to_cart,\n#uc_woocommerce_product_grid_elementor_c2465d6 .uc_more_btn-custom-field{\n\tdisplay: inline-block;\n\ttext-align: center;\n    text-decoration: none;\n    text-transform: none;\n\ttransition: all 0.25s ease-in-out;\n    vertical-align: middle;\n}\n\n  #uc_woocommerce_product_grid_elementor_c2465d6 .uc-button-addcart.added{\n    display:none;\n  }\n\n#uc_woocommerce_product_grid_elementor_c2465d6.uc_post_grid_style_one .uc_post_grid_style_one_wrap {\t\n    display: grid;\n}\n\n    #uc_woocommerce_product_grid_elementor_c2465d6.uc_post_grid_style_one .uc_content{\n      flex-grow: 1;\n      display: flex;\n      flex-flow: column nowrap;\n    }\n    #uc_woocommerce_product_grid_elementor_c2465d6 .ue_grid_item_bottom    {\n      margin-top:auto;\n    }\n\n  .uc_post_grid_style_one .uc_post_grid_style_one_item {\n      flex-direction:column;\n      display:flex;\n  }\n\n\n\n\n\n@media (max-width:1023px){\n\t#uc_woocommerce_product_grid_elementor_c2465d6.uc_post_grid_style_one .uc_post_grid_style_one_wrap {\n\t\tgrid-template-columns: repeat(2, 1fr);\n\t}\n}\n@media (max-width:639px){\n\t#uc_woocommerce_product_grid_elementor_c2465d6.uc_post_grid_style_one .uc_post_grid_style_one_wrap {\n\t\tgrid-template-columns: repeat(2, 1fr);\n\t}\n}\n\n\n\n\n#uc_woocommerce_product_grid_elementor_c2465d6 .ue_category_label{\n  display:block;\n  text-decoration:none;\n  transition: all .3s ease;\n  position: relative;\n}\n\n\/* hide default arrows in input type number *\/\n\/* Chrome, Safari, Edge, Opera *\/\n#uc_woocommerce_product_grid_elementor_c2465d6 input.uc-grid-count-buttons__number::-webkit-outer-spin-button,\n#uc_woocommerce_product_grid_elementor_c2465d6 input.uc-grid-count-buttons__number::-webkit-inner-spin-button{\n\t-webkit-appearance: none;\n  \tmargin: 0;\n}\n\n\/* Firefox *\/\n#uc_woocommerce_product_grid_elementor_c2465d6 input.uc-grid-count-buttons__number[type=number]{\n\t-moz-appearance: textfield;\n}\n\/* end hide default arrows in input type number *\/\n\n#uc_woocommerce_product_grid_elementor_c2465d6 .uc_regular_price:not(.uc_regular_price--single){\n  text-decoration:line-through !important;\n}\n\n#uc_woocommerce_product_grid_elementor_c2465d6 del{\n  display: block;\n  color: #000;\n  opacity: .5;\n  font-size: 26px;\n  font-weight: 400;\n  text-decoration:line-through !important;\n}\n\n#uc_woocommerce_product_grid_elementor_c2465d6 ins{\n  color: #000;\n  font-size: 36px;\n  font-weight: 400;\n  text-decoration: none;\n}\n\n#uc_woocommerce_product_grid_elementor_c2465d6 .ue_woocommerce_product_carousel_sale_label{\n  display:inline-block;\n  position:absolute;\n  z-index: 1;\n  left:10px;\n  top:10px;\n}\n\n#uc_woocommerce_product_grid_elementor_c2465d6 .ue_woocommerce_product_grid_out_of_stock_label{\n  \t    position: absolute;\n  \t  \twidth: fit-content;\n  \tleft:10px;\n  \ttop:10px;\n  \tz-index: 1;\n}\n\n#uc_woocommerce_product_grid_elementor_c2465d6 .ue-inner-btn-wrapper{\n  display:flex;\n  align-items:center;\n  justify-content:center;\n  position: relative;\n  pointer-events: none;\n}\n\n<\/style>\n\n<div class=\"uc_post_grid_style_one woocommerce_product_grid uc-filterable-grid  \" id=\"uc_woocommerce_product_grid_elementor_c2465d6\"   data-ajax='true'  data-filterbehave='mixed'  querydata='{&quot;count_posts&quot;:4,&quot;total_posts&quot;:20,&quot;page&quot;:1,&quot;num_pages&quot;:5,&quot;orderby&quot;:&quot;date&quot;,&quot;woo&quot;:true}' style=\"direction:ltr;text-align:left;\">\n  <div class=\"uc_post_grid_style_one_wrap uc-items-wrapper ue-woo-grid\">\n    \n\n\n\n\n\n\n\n\n\n\n\n\n \n<div class=\"uc_post_grid_style_one_item ue-item\" id=\"uc_woocommerce_product_grid_elementor_c2465d6_item1\">\n   \n    \n \n     \t\n     \n  \n      <div class=\"uc_post_grid_style_one_image-wrapper\">\n      <a class=\"uc_post_grid_style_one_image\" href=\"https:\/\/manlybattery.com\/de\/product-item\/12v-70ah-agm-battery\/\">     \n\n        <div class=\"uc_post_image\"> \n                      <img decoding=\"async\" src=\"https:\/\/manlybattery-static-cdn.cimen.club\/manlybattery\/wp-content\/uploads\/2026\/01\/Manly-12v-70ah-agm-starter-battery\u200b-agm-battery-manufacturer-768x768.webp\"  alt=\"Manly 12v 70ah Agm Starter Battery\u200b Agm Battery Manufacturer\">\n          \t\n            \n                \t\n   \n        <\/div>\n                       \n            <div class=\"uc_post_image uc_post_image--second\">\n              <img decoding=\"async\" src=\"https:\/\/manlybattery-static-cdn.cimen.club\/manlybattery\/wp-content\/uploads\/2026\/01\/Manly-12v-70ah-starter-battery-agm-battery-supplier\u200b-768x768.webp\" alt=\"Manly 12v 70ah Agm Starter Battery\u200b Agm Battery Manufacturer\">\n            <\/div>                  \n      <\/a>    <\/div> \n    \n      \n  \n  <div class=\"uc_content padding\">\n    \n         \n          \n          \n          \n      <h3 class=\"uc_title\"><a href=\"https:\/\/manlybattery.com\/de\/product-item\/12v-70ah-agm-battery\/\">12V 70Ah AGM Battery<\/a><\/h3>    \n          \n            \n                        \n      <div class=\"ue_grid_item_bottom\">\n      \n       <div class=\"ue_grid_prices\">         \n                    <div class=\"uc_regular_price uc_regular_price--single\">\n                                   \n  \n             \n                           \n           <\/div>                 \n                 \t<div class=\"uc_price\">\n                                     \n  \n           \n                           \n         \t<\/div>                  \n       <\/div>\t  \n      <div class=\"uc_post_grid_style_one_button\">\n        \n                \n                \n              <\/div>\n    <\/div> \n  <\/div>\n\n    \t\n\n<\/div>\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n<div class=\"uc_post_grid_style_one_item ue-item\" id=\"uc_woocommerce_product_grid_elementor_c2465d6_item2\">\n   \n    \n \n     \t\n     \n  \n      <div class=\"uc_post_grid_style_one_image-wrapper\">\n      <a class=\"uc_post_grid_style_one_image\" href=\"https:\/\/manlybattery.com\/de\/product-item\/36v-100ah-lithium-battery\/\">     \n\n        <div class=\"uc_post_image\"> \n                      <img decoding=\"async\" src=\"https:\/\/manlybattery-static-cdn.cimen.club\/manlybattery\/wp-content\/uploads\/2025\/06\/Buy-36v-100ah-lifepo4-lithium-battery-768x768.webp\"  alt=\"Buy 36v 100ah Lifepo4 Lithium Battery\">\n          \t\n            \n                \t\n   \n        <\/div>\n                       \n            <div class=\"uc_post_image uc_post_image--second\">\n              <img decoding=\"async\" src=\"https:\/\/manlybattery-static-cdn.cimen.club\/manlybattery\/wp-content\/uploads\/2025\/06\/36v-100ah-lifepo4-lithium-battery-1-768x768.webp\" alt=\"Buy 36v 100ah Lifepo4 Lithium Battery\">\n            <\/div>                  \n      <\/a>    <\/div> \n    \n      \n  \n  <div class=\"uc_content padding\">\n    \n         \n          \n          \n          \n      <h3 class=\"uc_title\"><a href=\"https:\/\/manlybattery.com\/de\/product-item\/36v-100ah-lithium-battery\/\">36V 100Ah Lithium Battery<\/a><\/h3>    \n          \n            \n                        \n      <div class=\"ue_grid_item_bottom\">\n      \n       <div class=\"ue_grid_prices\">         \n                    <div class=\"uc_regular_price uc_regular_price--single\">\n                                   \n  \n             \n                           \n           <\/div>                 \n                 \t<div class=\"uc_price\">\n                                     \n  \n           \n                           \n         \t<\/div>                  \n       <\/div>\t  \n      <div class=\"uc_post_grid_style_one_button\">\n        \n                \n                \n              <\/div>\n    <\/div> \n  <\/div>\n\n    \t\n\n<\/div>\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n<div class=\"uc_post_grid_style_one_item ue-item\" id=\"uc_woocommerce_product_grid_elementor_c2465d6_item3\">\n   \n    \n \n     \t\n     \n  \n      <div class=\"uc_post_grid_style_one_image-wrapper\">\n      <a class=\"uc_post_grid_style_one_image\" href=\"https:\/\/manlybattery.com\/de\/product-item\/24v-300ah-lithium-battery\/\">     \n\n        <div class=\"uc_post_image\"> \n                      <img decoding=\"async\" src=\"https:\/\/manlybattery-static-cdn.cimen.club\/manlybattery\/wp-content\/uploads\/2025\/06\/24v-300ah-lifepo4-lithium-battery-768x768.webp\"  alt=\"24v 300ah lifepo4 lithium battery\">\n          \t\n            \n                \t\n   \n        <\/div>\n                       \n            <div class=\"uc_post_image uc_post_image--second\">\n              <img decoding=\"async\" src=\"https:\/\/manlybattery-static-cdn.cimen.club\/manlybattery\/wp-content\/uploads\/2025\/06\/24v-300ah-lithium-battery-robot-battery-768x768.webp\" alt=\"24v 300ah lifepo4 lithium battery\">\n            <\/div>                  \n      <\/a>    <\/div> \n    \n      \n  \n  <div class=\"uc_content padding\">\n    \n         \n          \n          \n          \n      <h3 class=\"uc_title\"><a href=\"https:\/\/manlybattery.com\/de\/product-item\/24v-300ah-lithium-battery\/\">24V 300Ah Lithium Battery<\/a><\/h3>    \n          \n            \n                        \n      <div class=\"ue_grid_item_bottom\">\n      \n       <div class=\"ue_grid_prices\">         \n                    <div class=\"uc_regular_price uc_regular_price--single\">\n                                   \n  \n             \n                           \n           <\/div>                 \n                 \t<div class=\"uc_price\">\n                                     \n  \n           \n                           \n         \t<\/div>                  \n       <\/div>\t  \n      <div class=\"uc_post_grid_style_one_button\">\n        \n                \n                \n              <\/div>\n    <\/div> \n  <\/div>\n\n    \t\n\n<\/div>\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n<div class=\"uc_post_grid_style_one_item ue-item\" id=\"uc_woocommerce_product_grid_elementor_c2465d6_item4\">\n   \n    \n \n     \t\n     \n  \n      <div class=\"uc_post_grid_style_one_image-wrapper\">\n      <a class=\"uc_post_grid_style_one_image\" href=\"https:\/\/manlybattery.com\/de\/product-item\/24v-200ah-lifepo4-battery\/\">     \n\n        <div class=\"uc_post_image\"> \n                      <img decoding=\"async\" src=\"https:\/\/manlybattery-static-cdn.cimen.club\/manlybattery\/wp-content\/uploads\/2025\/06\/Buy-24v-200ah-lifepo4-lithium-battery-768x768.webp\"  alt=\"Buy 24v 200ah Lifepo4 Lithium Battery\">\n          \t\n            \n                \t\n   \n        <\/div>\n                       \n            <div class=\"uc_post_image uc_post_image--second\">\n              <img decoding=\"async\" src=\"https:\/\/manlybattery-static-cdn.cimen.club\/manlybattery\/wp-content\/uploads\/2025\/06\/24v-200ah-lifepo4-lithium-battery-1-768x768.webp\" alt=\"Buy 24v 200ah Lifepo4 Lithium Battery\">\n            <\/div>                  \n      <\/a>    <\/div> \n    \n      \n  \n  <div class=\"uc_content padding\">\n    \n         \n          \n          \n          \n      <h3 class=\"uc_title\"><a href=\"https:\/\/manlybattery.com\/de\/product-item\/24v-200ah-lifepo4-battery\/\">24v 200Ah Lithium Battery<\/a><\/h3>    \n          \n            \n                        \n      <div class=\"ue_grid_item_bottom\">\n      \n       <div class=\"ue_grid_prices\">         \n                    <div class=\"uc_regular_price uc_regular_price--single\">\n                                   \n  \n             \n                           \n           <\/div>                 \n                 \t<div class=\"uc_price\">\n                                     \n  \n           \n                           \n         \t<\/div>                  \n       <\/div>\t  \n      <div class=\"uc_post_grid_style_one_button\">\n        \n                \n                \n              <\/div>\n    <\/div> \n  <\/div>\n\n    \t\n\n<\/div>\n\n  <\/div>\n<\/div>\n\n\n  <div id=\"uc_woocommerce_product_grid_elementor_c2465d6_empty_message\" class=\"ue-no-posts-found\"  style=\"display:none\" >No products found<\/div>\n\n<!-- end Woo Product Grid -->\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d0fb0d elementor-widget__width-inherit elementor-widget elementor-widget-ucaddon_archive_pagination\" data-id=\"0d0fb0d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"ucaddon_archive_pagination.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n<!-- start Post Pagination -->\n\n<style>\/* widget: Post Pagination *\/\n\n#uc_archive_pagination_elementor_0d0fb0d nav\n{\n  padding:0px;\n  margin:0px;\n}\n\n#uc_archive_pagination_elementor_0d0fb0d \n{\n  display:flex;\n  flex-wrap: wrap;\n  justify-content:center;\n}\n\n#uc_archive_pagination_elementor_0d0fb0d .nav-links\n{\n  display:flex;\n  justify-content:center;\n}\n\n#uc_archive_pagination_elementor_0d0fb0d .nav-links > *\n{\n}\n\n#uc_archive_pagination_elementor_0d0fb0d .page-numbers\n{\n  display:flex;\n  \n  align-items:center;\n  justify-content:center;\n  transition:0.3s;\n  line-height:1em;\n}\n\n\n#uc_archive_pagination_elementor_0d0fb0d a.page-numbers, #uc_archive_pagination_elementor_0d0fb0d .dots\n{\n  color:#393939;\n  background-color:;\n}\n\n#uc_archive_pagination_elementor_0d0fb0d a.page-numbers:hover\n{\n  color:#6e6e6e;\n  background-color:#eeeeee;\n}\n\n#uc_archive_pagination_elementor_0d0fb0d .page-numbers.current,\n#uc_archive_pagination_elementor_0d0fb0d .page-numbers.current:hover\n{\n  background-color:#005FB3;\n  color:#ffffff;\n}\n\n\n#uc_archive_pagination_elementor_0d0fb0d .page-numbers.prev, #uc_archive_pagination_elementor_0d0fb0d .page-numbers.next\n{\n  padding-left:15px;\n  padding-right:15px;\n}\n\n\n\n#uc_archive_pagination_elementor_0d0fb0d .prev:before {\n   font-family: \"Font Awesome 5 Free\";\n   content: \"\\f053\";\n   display: inline-block;\n   vertical-align: middle;\n   font-weight: 900;\n   padding-right:10px;}\n\n#uc_archive_pagination_elementor_0d0fb0d .next:after {\n   font-family: \"Font Awesome 5 Free\";\n   content: \"\\f054\";\n   display: inline-block;\n   vertical-align: middle;\n   font-weight: 900;\n   padding-left:10px;}\n\n#uc_archive_pagination_elementor_0d0fb0d.uc-ajax-loading{\n\topacity:1 !important;\n}\n\n#uc_archive_pagination_elementor_0d0fb0d.uc-ajax-loading .current{\n\tposition:relative;\n    overflow:hidden;\n}\n\n\n#uc_archive_pagination_elementor_0d0fb0d.uc-ajax-loading .current:before{\n  content: \"\";\n  display:block;\n  width:100%;\n  height:100%;\n  box-sizing:border-box;\n  position:absolute;\n  top:0px;\n  left:0px;\n  background-color: #c2c2c2;\n  animation: uc-spinning-border 0.5s linear infinite;\n  opacity:50%;\n  border-radius:inherit;\n}\n\n@keyframes uc-spinning-border {\n\t0%{transform: scale(0);}\n\t100%{transform: scale(1); }\t\n}\n\n\n\n<\/style>\n\n<div id=\"uc_archive_pagination_elementor_0d0fb0d\" class=\"archive_pagination uc-filter-pagination \">\n<span aria-label=\"Seite 1\" aria-current=\"page\" class=\"page-numbers current\">1<\/span>\n<a aria-label=\"Seite 2\" class=\"page-numbers\" href=\"https:\/\/manlybattery.com\/de\/battery-tools-and-resources\/how-long-will-a-200ah-battery-last-calculator\/2\/\" data-e-disable-page-transition=\"true\">2<\/a>\n<a aria-label=\"Seite 3\" class=\"page-numbers\" href=\"https:\/\/manlybattery.com\/de\/battery-tools-and-resources\/how-long-will-a-200ah-battery-last-calculator\/3\/\" data-e-disable-page-transition=\"true\">3<\/a>\n<span class=\"page-numbers dots\">&hellip;<\/span>\n<a aria-label=\"Seite 5\" class=\"page-numbers\" href=\"https:\/\/manlybattery.com\/de\/battery-tools-and-resources\/how-long-will-a-200ah-battery-last-calculator\/5\/\" data-e-disable-page-transition=\"true\">5<\/a>\n<a class=\"next page-numbers\" href=\"https:\/\/manlybattery.com\/de\/battery-tools-and-resources\/how-long-will-a-200ah-battery-last-calculator\/2\/\" data-e-disable-page-transition=\"true\">Next<\/a>\n<\/div>\n<!-- end Post Pagination -->\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>How Long Will a 200Ah Battery Last Calculator 200Ah Battery Runtime Calculator Application: RVMarineSolar Power SystemBackup PowerGolf CartOther Battery Type: [&hellip;]<\/p>\n","protected":false},"author":4,"featured_media":18995,"parent":16730,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"class_list":["post-20619","page","type-page","status-publish","has-post-thumbnail","hentry"],"acf":[],"featured_image_url":{"thumbnail":"https:\/\/manlybattery-static-cdn.cimen.club\/manlybattery\/wp-content\/uploads\/2024\/09\/200ah-12-volt-lithium-marine-battery-80x80.webp","medium":"https:\/\/manlybattery-static-cdn.cimen.club\/manlybattery\/wp-content\/uploads\/2024\/09\/200ah-12-volt-lithium-marine-battery-300x300.webp","medium_large":"https:\/\/manlybattery-static-cdn.cimen.club\/manlybattery\/wp-content\/uploads\/2024\/09\/200ah-12-volt-lithium-marine-battery.webp","large":"https:\/\/manlybattery-static-cdn.cimen.club\/manlybattery\/wp-content\/uploads\/2024\/09\/200ah-12-volt-lithium-marine-battery.webp","1536x1536":"https:\/\/manlybattery-static-cdn.cimen.club\/manlybattery\/wp-content\/uploads\/2024\/09\/200ah-12-volt-lithium-marine-battery.webp","2048x2048":"https:\/\/manlybattery-static-cdn.cimen.club\/manlybattery\/wp-content\/uploads\/2024\/09\/200ah-12-volt-lithium-marine-battery.webp","trp-custom-language-flag":"https:\/\/manlybattery-static-cdn.cimen.club\/manlybattery\/wp-content\/uploads\/2024\/09\/200ah-12-volt-lithium-marine-battery.webp","wpgs_custom_main":"https:\/\/manlybattery-static-cdn.cimen.club\/manlybattery\/wp-content\/uploads\/2024\/09\/200ah-12-volt-lithium-marine-battery.webp","wpgs_custom_thumb":"https:\/\/manlybattery-static-cdn.cimen.club\/manlybattery\/wp-content\/uploads\/2024\/09\/200ah-12-volt-lithium-marine-battery.webp","woocommerce_thumbnail":"https:\/\/manlybattery-static-cdn.cimen.club\/manlybattery\/wp-content\/uploads\/2024\/09\/200ah-12-volt-lithium-marine-battery.webp","woocommerce_single":"https:\/\/manlybattery-static-cdn.cimen.club\/manlybattery\/wp-content\/uploads\/2024\/09\/200ah-12-volt-lithium-marine-battery.webp","woocommerce_gallery_thumbnail":"https:\/\/manlybattery-static-cdn.cimen.club\/manlybattery\/wp-content\/uploads\/2024\/09\/200ah-12-volt-lithium-marine-battery.webp"},"post_author":"administrator","assigned_categories":"","aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/manlybattery.com\/de\/wp-json\/wp\/v2\/pages\/20619","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/manlybattery.com\/de\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/manlybattery.com\/de\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/manlybattery.com\/de\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/manlybattery.com\/de\/wp-json\/wp\/v2\/comments?post=20619"}],"version-history":[{"count":15,"href":"https:\/\/manlybattery.com\/de\/wp-json\/wp\/v2\/pages\/20619\/revisions"}],"predecessor-version":[{"id":28074,"href":"https:\/\/manlybattery.com\/de\/wp-json\/wp\/v2\/pages\/20619\/revisions\/28074"}],"up":[{"embeddable":true,"href":"https:\/\/manlybattery.com\/de\/wp-json\/wp\/v2\/pages\/16730"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/manlybattery.com\/de\/wp-json\/wp\/v2\/media\/18995"}],"wp:attachment":[{"href":"https:\/\/manlybattery.com\/de\/wp-json\/wp\/v2\/media?parent=20619"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}