Inheritance Tax Calculator
:root {
–primary-blue: #004a99;
–success-green: #28a745;
–light-background: #f8f9fa;
–border-color: #dee2e6;
–text-color: #343a40;
–heading-color: var(–primary-blue);
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #ffffff;
color: var(–text-color);
line-height: 1.6;
margin: 0;
padding: 20px;
}
.loan-calc-container {
max-width: 800px;
margin: 40px auto;
background-color: #fff;
padding: 30px;
border-radius: 8px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
border: 1px solid var(–border-color);
}
h1, h2 {
color: var(–heading-color);
text-align: center;
margin-bottom: 30px;
}
.input-group {
margin-bottom: 20px;
padding: 15px;
background-color: var(–light-background);
border-radius: 5px;
border: 1px solid var(–border-color);
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
}
.input-group label {
display: block;
margin-bottom: 8px;
font-weight: 600;
color: var(–primary-blue);
flex-basis: 100%;
text-align: left;
}
.input-group input[type="number"],
.input-group input[type="text"],
.input-group select {
width: calc(100% – 12px);
padding: 10px;
border: 1px solid var(–border-color);
border-radius: 4px;
font-size: 1rem;
box-sizing: border-box;
margin-top: 5px;
}
.input-group select {
background-color: white;
cursor: pointer;
}
.input-group.button-group {
background-color: transparent;
border: none;
justify-content: center;
padding: 0;
}
button {
background-color: var(–primary-blue);
color: white;
padding: 12px 25px;
border: none;
border-radius: 5px;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
transition: background-color 0.3s ease;
margin: 5px;
}
button:hover {
background-color: #003366;
}
.result-section {
margin-top: 30px;
padding: 25px;
background-color: var(–success-green);
color: white;
border-radius: 5px;
text-align: center;
box-shadow: 0 2px 10px rgba(40, 167, 69, 0.3);
}
.result-section h3 {
margin-top: 0;
margin-bottom: 15px;
font-size: 1.5rem;
}
.result-value {
font-size: 2.5rem;
font-weight: 700;
display: block;
margin-top: 10px;
}
.result-section.zero-tax {
background-color: #6c757d; /* Grey for no tax */
}
.article-section {
margin-top: 50px;
padding: 30px;
background-color: var(–light-background);
border-radius: 8px;
border: 1px solid var(–border-color);
}
.article-section h2 {
text-align: left;
margin-bottom: 20px;
color: var(–primary-blue);
}
.article-section p, .article-section ul {
margin-bottom: 15px;
}
.article-section li {
margin-bottom: 8px;
}
.article-section strong {
color: var(–primary-blue);
}
@media (max-width: 600px) {
.loan-calc-container {
padding: 20px;
}
h1 {
font-size: 1.8rem;
}
.input-group {
flex-direction: column;
align-items: flex-start;
}
.input-group label {
flex-basis: auto;
}
.input-group input[type="number"],
.input-group input[type="text"],
.input-group select {
width: 100%;
}
button {
width: 100%;
padding: 15px;
}
.result-value {
font-size: 2rem;
}
}
Inheritance Tax Calculator
Estimated Inheritance Tax Liability
£0.00
Understanding Inheritance Tax
Inheritance Tax (IHT) is a tax levied on the estate of a deceased person. It is typically paid by the beneficiaries who inherit assets. The tax applies to the value of the estate that exceeds a certain threshold, known as the Nil Rate Band.
How Inheritance Tax is Calculated
The calculation of Inheritance Tax can be complex, but here's a simplified breakdown:
- Calculate the Taxable Estate: Start with the total value of the deceased's assets (property, money, possessions) and subtract any debts, funeral expenses, and exemptions.
- Apply the Nil Rate Band (NRB): This is the portion of the estate that is free from IHT. For the tax year 2023-2024, the standard NRB is £325,000. If the estate is passed to a spouse or civil partner, it may be exempt. There is also an additional allowance called the Residence Nil Rate Band (RNRB) which can increase the NRB if the deceased owned a home that is passed to direct descendants.
- Consider Spouse/Civil Partner Exemption: Estates passing to a UK domiciled spouse or civil partner are generally exempt from IHT.
- Account for Gifts Given: Gifts made by the deceased in the seven years before their death may be subject to 'taper relief' if they fall outside this period but within the seven years, or they may be included in the estate at full value if made within the seven-year period.
- Calculate the Taxable Amount: Subtract the total available exemptions (including NRB and any spousal exemption) from the value of the estate after debts and expenses.
- Apply the Tax Rate: The standard rate of Inheritance Tax is 40%. However, if at least 10% of the net value of the estate is left to charity, the rate on the portion of the estate above the NRB is reduced to 36%.
Key Terms and Thresholds (Illustrative – check current government guidance)
- Estate Value: The total worth of all assets owned by the deceased.
- Nil Rate Band (NRB): The amount of the estate that can be passed on tax-free. Standard NRB for 2023-2024 is £325,000.
- Residence Nil Rate Band (RNRB): An additional allowance if a home is passed to direct descendants. This can add up to £175,000 per person (for 2023-2024), phasing out for estates over £2 million.
- Spouse/Civil Partner Exemption: Generally, assets passed to a spouse or civil partner are exempt.
- Lifetime Gifts: Gifts made within 7 years of death can impact IHT.
- Tax Rate: Standard 40%, or 36% if 10% of the estate goes to charity.
Using the Calculator
Our Inheritance Tax Calculator helps you estimate your potential IHT liability. Enter the total value of the estate, the applicable Nil Rate Band (including any transferable NRB from a previous spouse/civil partner and RNRB if applicable), and any spousal exemption. The calculator will then provide an estimated tax amount based on the standard tax rate.
Disclaimer: This calculator provides an estimate for informational purposes only and does not constitute financial or legal advice. Tax laws and thresholds can change. Always consult with a qualified tax advisor or solicitor for personalized advice regarding your specific circumstances.
function calculateInheritanceTax() {
var estateValue = parseFloat(document.getElementById("estateValue").value);
var exemptAmount = parseFloat(document.getElementById("exemptAmount").value);
var spouseExemption = parseFloat(document.getElementById("spouseExemption").value);
var giftsGiven = parseFloat(document.getElementById("giftsGiven").value);
var taxRate = parseFloat(document.getElementById("taxRate").value);
var resultSection = document.getElementById("resultSection");
var taxResultElement = document.getElementById("taxResult");
var taxNoteElement = document.getElementById("taxNote");
// Clear previous results and notes
taxResultElement.textContent = "£0.00";
taxNoteElement.textContent = "";
resultSection.style.display = "none";
// Input validation
if (isNaN(estateValue) || isNaN(exemptAmount) || isNaN(spouseExemption) || isNaN(giftsGiven) || isNaN(taxRate)) {
alert("Please enter valid numbers for all fields.");
return;
}
// Basic calculation: Taxable amount = Estate Value – Exempt Amount – Spouse Exemption
// Note: This is a simplified model. Real IHT can involve more complex rules like RNRB, lifetime gifts, etc.
// For this calculator, we'll consider gifts as reducing the taxable estate directly for simplicity,
// though in reality, gifts given within 7 years can be taxable or subject to taper relief.
// We are NOT including RNRB or transferable NRB in this specific calculation's logic for simplicity,
// assuming the user enters the *total available* exemption amount in 'exemptAmount'.
var taxableEstate = estateValue – exemptAmount – spouseExemption;
// Ensure taxable estate is not negative
if (taxableEstate 0) {
calculatedTax = amountSubjectToTax * taxRate;
if (taxRate === 0.36) {
note = "Rate includes a 10% discount for charitable donations.";
} else {
note = "Standard rate applied.";
}
// Adjust for gifts given in last 7 years (simplified model)
// In a real scenario, gifts might be taxed differently (e.g., taper relief)
// For this calculator, we'll subtract gifts *from the taxable amount before tax*
// which is a very simplified representation.
var taxAfterGifts = amountSubjectToTax – giftsGiven;
if (taxAfterGifts 0) {
note += " The value of gifts given in the last 7 years has been accounted for.";
}
// Display result
taxResultElement.textContent = "£" + calculatedTax.toFixed(2).replace(/\B(?=(\d{3})+(?!\d))/g, ",");
taxNoteElement.textContent = note;
resultSection.style.display = "block";
if (calculatedTax === 0) {
resultSection.classList.add("zero-tax");
} else {
resultSection.classList.remove("zero-tax");
}
} else {
// If taxable estate is zero or negative, no tax is due.
taxResultElement.textContent = "£0.00";
taxNoteElement.textContent = "The estate value is within the available exemptions, so no Inheritance Tax is due.";
resultSection.style.display = "block";
resultSection.classList.add("zero-tax"); // Use the zero-tax styling
}
}
function resetForm() {
document.getElementById("estateValue").value = "";
document.getElementById("exemptAmount").value = "";
document.getElementById("spouseExemption").value = "0";
document.getElementById("giftsGiven").value = "0";
document.getElementById("taxRate").value = "0.40"; // Default to 40%
document.getElementById("resultSection").style.display = "none";
document.getElementById("taxResult").textContent = "£0.00";
document.getElementById("taxNote").textContent = "";
}