Cica Calculator

CICA Compensation Calculator (UK) .cica-calculator-wrapper { max-width: 800px; margin: 0 auto; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; color: #333; line-height: 1.6; } .cica-calc-box { background-color: #f8f9fa; border: 1px solid #e9ecef; border-radius: 8px; padding: 30px; margin-bottom: 40px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); } .cica-calc-title { text-align: center; margin-bottom: 25px; color: #2c3e50; font-size: 24px; font-weight: 700; } .cica-input-group { margin-bottom: 20px; } .cica-input-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #495057; } .cica-input-wrapper { position: relative; } .cica-input-wrapper span { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: #6c757d; font-weight: bold; } .cica-input-field { width: 100%; padding: 12px 15px 12px 35px; /* Padding left for currency symbol */ border: 1px solid #ced4da; border-radius: 6px; font-size: 16px; box-sizing: border-box; transition: border-color 0.15s ease-in-out; } .cica-input-field:focus { border-color: #0056b3; outline: none; box-shadow: 0 0 0 3px rgba(0,86,179,0.1); } .cica-btn { width: 100%; padding: 15px; background-color: #0056b3; color: white; border: none; border-radius: 6px; font-size: 18px; font-weight: 700; cursor: pointer; transition: background-color 0.2s; margin-top: 10px; } .cica-btn:hover { background-color: #004494; } .cica-result-box { margin-top: 25px; padding: 20px; background-color: #fff; border: 1px solid #dee2e6; border-radius: 6px; display: none; } .cica-result-row { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 15px; } .cica-result-total { margin-top: 15px; padding-top: 15px; border-top: 2px solid #e9ecef; display: flex; justify-content: space-between; font-size: 20px; font-weight: 800; color: #28a745; } .cica-note { font-size: 12px; color: #6c757d; margin-top: 10px; text-align: center; } .article-content h2 { color: #2c3e50; margin-top: 40px; font-size: 28px; border-bottom: 2px solid #eee; padding-bottom: 10px; } .article-content h3 { color: #0056b3; margin-top: 30px; font-size: 22px; } .article-content p { margin-bottom: 15px; color: #4a4a4a; } .article-content ul { margin-bottom: 20px; padding-left: 20px; } .article-content li { margin-bottom: 10px; color: #4a4a4a; } .info-box { background-color: #e8f4fd; border-left: 5px solid #0056b3; padding: 15px; margin: 20px 0; }
CICA Compensation Estimator

Enter the tariff amounts for up to 3 distinct injuries based on the CICA Scheme 2012.

£
£
£
Primary Injury (100%): £0.00
Secondary Injury (30%): £0.00
Tertiary Injury (15%): £0.00
Estimated Total: £0.00
*Calculation based on standard CICA multiple injury formula. Excludes special damages or loss of earnings.

Understanding the Criminal Injuries Compensation Authority (CICA)

The Criminal Injuries Compensation Authority (CICA) is a government organization in the United Kingdom that administers the compensation scheme for victims of violent crime. Unlike civil lawsuits where damages are calculated based on specific individual losses, the CICA operates on a fixed Tariff of Injuries.

If you have been physically or mentally injured because of a violent crime in England, Scotland, or Wales, you may be eligible to claim compensation. However, calculating the exact amount can be complex, particularly if you have sustained multiple injuries in the same incident.

How is CICA Compensation Calculated?

The CICA uses a specific set of rules defined in the Criminal Injuries Compensation Scheme 2012. Every injury is assigned a tariff level, which corresponds to a fixed financial award. These awards range from £1,000 for minor injuries to £250,000 for the most severe life-changing injuries.

Key Eligibility Rule: To be eligible for any payment, your primary injury must be valued at a minimum of £1,000 on the tariff. Injuries valued below this threshold typically do not qualify for compensation under the scheme.

The Multiple Injury Formula

When a victim suffers more than one injury during a single incident (for example, a broken arm and a facial scar), the CICA does not simply add the full value of both injuries together. Instead, they apply a sliding scale formula to prevent over-compensation. This is often referred to as the "Multiple Injury Formula."

The formula works as follows:

  • The Most Serious Injury: Paid at 100% of the tariff value.
  • The Second Most Serious Injury: Paid at 30% of the tariff value.
  • The Third Most Serious Injury: Paid at 15% of the tariff value.

Generally, the scheme only compensates for the three most serious injuries. Additional minor injuries beyond the top three are usually not included in the financial calculation, although they will be noted on your record. Exceptions exist for specific patterns of injury (like abuse) or if the victim becomes pregnant or loses a foetus as a result of the crime.

Example Calculation

Consider a scenario where a victim sustains three injuries with the following tariff values:

  • Fractured Ulna (Arm): £6,200
  • Deviated Nasal Septum (Nose): £1,500
  • Scarring (Face): £2,400

The CICA will first sort these by value from highest to lowest:

  1. First Injury (£6,200): 100% = £6,200
  2. Second Injury (£2,400): 30% = £720
  3. Third Injury (£1,500): 15% = £225

Total Award: £7,145 (compared to £10,100 if simply added together).

Loss of Earnings and Special Expenses

While this calculator focuses on the tariff for injuries, you may also be entitled to "Loss of Earnings" or "Special Expenses." These are calculated separately from the injury tariff.

To claim loss of earnings, you generally must have been unable to work for more than 28 weeks. Statutory Sick Pay (SSP) is deducted from any award. Special expenses can cover costs like care, equipment, or adaptations to a home, provided they are necessary, reasonable, and not available free of charge from the NHS or local authority.

function calculateCICA() { // Get input values var i1 = document.getElementById('injury1').value; var i2 = document.getElementById('injury2').value; var i3 = document.getElementById('injury3').value; // Parse to float, default to 0 if empty or invalid var val1 = parseFloat(i1); var val2 = parseFloat(i2); var val3 = parseFloat(i3); if (isNaN(val1)) val1 = 0; if (isNaN(val2)) val2 = 0; if (isNaN(val3)) val3 = 0; // Store in array and sort descending (Highest value first) // This is crucial because CICA always pays 100% of the highest value, regardless of input order var injuries = [val1, val2, val3]; injuries.sort(function(a, b) { return b – a; }); // Apply CICA Formula // 1st: 100% // 2nd: 30% // 3rd: 15% var payment1 = injuries[0] * 1.0; var payment2 = injuries[1] * 0.30; var payment3 = injuries[2] * 0.15; var total = payment1 + payment2 + payment3; // Display Results var resultBox = document.getElementById('cicaResult'); resultBox.style.display = 'block'; // Helper function for currency formatting function formatGBP(num) { return '£' + num.toFixed(2).replace(/\d(?=(\d{3})+\.)/g, '$&,'); } document.getElementById('res_inj1').innerHTML = formatGBP(payment1) + " (Base: " + formatGBP(injuries[0]) + ")"; document.getElementById('res_inj2').innerHTML = formatGBP(payment2) + " (Base: " + formatGBP(injuries[1]) + ")"; document.getElementById('res_inj3').innerHTML = formatGBP(payment3) + " (Base: " + formatGBP(injuries[2]) + ")"; document.getElementById('res_total').innerHTML = formatGBP(total); }

Leave a Reply

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