Alimony Calculator in Florida

.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.08); color: #333; } .fl-alimony-header { text-align: center; margin-bottom: 25px; } .fl-alimony-header h2 { color: #1a3a5f; margin-bottom: 10px; } .fl-alimony-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; } .fl-alimony-input-group { display: flex; flex-direction: column; } .fl-alimony-input-group label { font-weight: 600; margin-bottom: 8px; font-size: 14px; color: #444; } .fl-alimony-input-group input { padding: 12px; border: 1px solid #ccc; border-radius: 6px; font-size: 16px; } .fl-alimony-btn { grid-column: span 2; background-color: #1a3a5f; color: white; padding: 15px; border: none; border-radius: 6px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background 0.3s; } .fl-alimony-btn:hover { background-color: #2c5282; } .fl-alimony-result { margin-top: 25px; padding: 20px; background-color: #f8fafc; border-radius: 8px; border-left: 5px solid #1a3a5f; display: none; } .fl-alimony-result h3 { margin-top: 0; color: #1a3a5f; } .fl-alimony-data-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #eee; } .fl-alimony-data-row:last-child { border-bottom: none; } .fl-alimony-article { margin-top: 40px; line-height: 1.6; color: #444; } .fl-alimony-article h2 { color: #1a3a5f; border-bottom: 2px solid #eee; padding-bottom: 10px; } .fl-alimony-article h3 { color: #2c5282; margin-top: 25px; } @media (max-width: 600px) { .fl-alimony-grid { grid-template-columns: 1fr; } .fl-alimony-btn { grid-column: span 1; } }

Florida Alimony Estimator

Based on Florida Statutes ยง 61.08 (2023/2024 Reform Laws)

Estimation Results

Marriage Classification:
Estimated Monthly Payment:
Maximum Duration:

Note: Florida does not have a "formulaic" alimony law like child support. This tool uses the 35% difference cap and 2023 statutory duration limits as a guideline for Durational Alimony.

Understanding Alimony in Florida (2024 Update)

Calculating alimony in Florida changed significantly on July 1, 2023, when Governor Ron DeSantis signed Senate Bill 1416 into law. This reform effectively eliminated "Permanent Periodic Alimony" and established clearer guidelines for the duration and amount of support based on the length of the marriage.

How Marriage Length is Classified

In Florida, the "length of marriage" is calculated from the date of the marriage to the date of filing the petition for dissolution. The new statutes define marriages as follows:

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

The "Need and Ability" Test

Before any calculation occurs, a Florida court must first make a factual determination as to whether one party has a legal need for alimony and whether the other party has the ability to pay. If need and ability are established, the court then looks at the "rebuttable presumption" that the amount should not exceed 35% of the difference between the parties' monthly gross incomes.

Duration Limits Under the New Law

Except in exceptional circumstances, durational alimony may not be awarded for a period exceeding:

  • 50% of the length of a short-term marriage.
  • 60% of the length of a moderate-term marriage.
  • 75% of the length of a long-term marriage.

Calculation Example

If a couple was married for 15 years (Moderate-Term), and the Payor earns $10,000 per month while the Payee earns $2,000 per month:

  • Income Difference: $8,000
  • Max Monthly Alimony (35% Cap): $2,800
  • Max Duration (60% of 15 years): 9 years

Types of Alimony Still Available

While permanent alimony is gone, four types remain in Florida:

  1. Bridge-the-Gap: To assist with short-term needs (maximum 2 years).
  2. Rehabilitative: To help a spouse become self-sufficient through education or training (maximum 5 years).
  3. Durational: To provide economic assistance for a set period.
  4. Temporary: Awarded during the divorce proceedings.
function calculateFloridaAlimony() { var payorAnnual = parseFloat(document.getElementById('payorIncome').value); var payeeAnnual = parseFloat(document.getElementById('payeeIncome').value); var years = parseFloat(document.getElementById('marriageLength').value); var childSupport = parseFloat(document.getElementById('childSupport').value) || 0; if (isNaN(payorAnnual) || isNaN(payeeAnnual) || isNaN(years)) { alert("Please enter valid numbers for income and marriage length."); return; } // Convert to monthly var payorMonthly = payorAnnual / 12; var payeeMonthly = payeeAnnual / 12; // Calculate Difference var diff = payorMonthly – payeeMonthly; // Alimony usually doesn't apply if payee makes more if (diff <= 0) { document.getElementById('alimonyResult').style.display = 'block'; document.getElementById('marriageType').innerText = "N/A"; document.getElementById('monthlyAmount').innerText = "$0.00"; document.getElementById('maxDuration').innerText = "0 years"; return; } // 35% Rule of Thumb cap based on 2023 reforms var estimatedAlimony = diff * 0.35; // Ensure Payor is not left with less than Payee if ((payorMonthly – estimatedAlimony) < (payeeMonthly + estimatedAlimony)) { estimatedAlimony = diff / 2; } // Marriage Classification & Duration Limits var mType = ""; var mDuration = ""; if (years < 10) { mType = "Short-Term (= 10 && years < 20) { mType = "Moderate-Term (10-20 yrs)"; mDuration = (years * 0.60).toFixed(1) + " years (60% max)"; } else { mType = "Long-Term (20+ yrs)"; mDuration = (years * 0.75).toFixed(1) + " years (75% max)"; } // Format currency var formatter = new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD', }); document.getElementById('marriageType').innerText = mType; document.getElementById('monthlyAmount').innerText = formatter.format(estimatedAlimony); document.getElementById('maxDuration').innerText = mDuration; document.getElementById('alimonyResult').style.display = 'block'; }

Leave a Reply

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