Alimony Calculator Florida 2024

.fl-alimony-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 1px solid #e0e0e0; border-radius: 12px; background-color: #ffffff; box-shadow: 0 4px 20px rgba(0,0,0,0.05); } .fl-alimony-header { text-align: center; margin-bottom: 30px; } .fl-alimony-header h2 { color: #1a237e; margin-bottom: 10px; font-size: 28px; } .fl-alimony-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 25px; } @media (max-width: 600px) { .fl-alimony-grid { grid-template-columns: 1fr; } } .fl-input-group { display: flex; flex-direction: column; } .fl-input-group label { font-weight: 600; margin-bottom: 8px; color: #333; font-size: 14px; } .fl-input-group input { padding: 12px; border: 2px solid #ddd; border-radius: 6px; font-size: 16px; transition: border-color 0.3s; } .fl-input-group input:focus { border-color: #1a237e; outline: none; } .fl-calc-btn { width: 100%; background-color: #1a237e; color: white; padding: 15px; border: none; border-radius: 6px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background 0.3s; } .fl-calc-btn:hover { background-color: #283593; } #alimonyResult { margin-top: 30px; padding: 20px; border-radius: 8px; background-color: #f8f9fa; display: none; } .result-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #eee; } .result-label { font-weight: 500; color: #555; } .result-value { font-weight: 700; color: #1a237e; } .fl-article { margin-top: 40px; line-height: 1.6; color: #333; } .fl-article h3 { color: #1a237e; margin-top: 25px; } .disclaimer { font-size: 12px; color: #777; font-style: italic; margin-top: 20px; border-top: 1px solid #eee; padding-top: 10px; }

Florida Alimony Calculator (2024 Reform)

Estimate durational and rehabilitative alimony based on Senate Bill 1416.

Estimated Results

Marriage Classification:
Max Duration Limit (Years):
Estimated Monthly Range:
Income Difference:

*Note: The 2024 Florida law caps alimony at the lower of 35% of the income difference or the amount required to meet the recipient's reasonable needs.

Understanding Florida Alimony Laws in 2024

Effective July 1, 2023, and continuing into 2024, Florida underwent a massive overhaul of its alimony statutes via Senate Bill 1416. The most significant change was the abolishment of permanent periodic alimony. All awards are now structured as rehabilitative, bridge-the-gap, or durational alimony.

New Marriage Duration Tiers

Under the 2024 guidelines, the length of a marriage is defined from the date of marriage to the date of filing the petition. The categories are now:

  • Short-Term Marriage: Less than 10 years.
  • Moderate-Term Marriage: Between 10 and 20 years.
  • Long-Term Marriage: 20 years or longer.

How Durational Alimony is Calculated

The amount of durational alimony is generally determined by the recipient's "need" and the payer's "ability to pay." However, the law provides a hard cap: alimony cannot exceed 35% of the difference between the parties' net monthly incomes.

Example Calculation: If the Payer earns $8,000 net per month and the Payee earns $3,000, the difference is $5,000. The maximum alimony would be $1,750 (35% of $5,000).

Duration Limits in 2024

Durational alimony cannot exceed a specific percentage of the marriage's length:

  • Short-term marriages (< 10 years) are limited to 50% of the marriage length.
  • Moderate-term marriages (10-20 years) are limited to 60% of the marriage length.
  • Long-term marriages (20+ years) are limited to 75% of the marriage length.

DISCLAIMER: This calculator provides an estimate based on statutory caps and general formulas used in Florida courts. Every case is unique. Factors such as adultery, health, and standard of living are considered by judges. Please consult with a Florida family law attorney for legal advice.

function calculateFloridaAlimony() { var payerInc = parseFloat(document.getElementById('payerIncome').value); var payeeInc = parseFloat(document.getElementById('payeeIncome').value); var years = parseFloat(document.getElementById('marriageLength').value); var resultDiv = document.getElementById('alimonyResult'); var typeEl = document.getElementById('marriageType'); var durationEl = document.getElementById('maxDuration'); var rangeEl = document.getElementById('monthlyRange'); var diffEl = document.getElementById('incomeDiff'); if (isNaN(payerInc) || isNaN(payeeInc) || isNaN(years)) { alert("Please enter valid numbers for income and marriage duration."); return; } var difference = payerInc – payeeInc; if (difference <= 0) { resultDiv.style.display = "block"; typeEl.innerHTML = "N/A"; durationEl.innerHTML = "0 Years"; rangeEl.innerHTML = "$0"; diffEl.innerHTML = "$0"; return; } // Determine Marriage Tier var type = ""; var maxDur = 0; if (years < 10) { type = "Short-Term (= 10 && years < 20) { type = "Moderate-Term (10-20 yrs)"; maxDur = years * 0.6; } else { type = "Long-Term (20+ yrs)"; maxDur = years * 0.75; } // Calculate Amount Range (25% to 35% of difference is standard guideline) var maxAmount = difference * 0.35; var minAmount = difference * 0.20; // Conservative lower bound for estimate // Update UI resultDiv.style.display = "block"; typeEl.innerHTML = type; durationEl.innerHTML = maxDur.toFixed(1) + " Years"; rangeEl.innerHTML = "$" + Math.round(minAmount).toLocaleString() + " – $" + Math.round(maxAmount).toLocaleString(); diffEl.innerHTML = "$" + Math.round(difference).toLocaleString(); // Scroll to results resultDiv.scrollIntoView({ behavior: 'smooth', block: 'nearest' }); }

Leave a Reply

Your email address will not be published. Required fields are marked *