Products / Airtight Rated

AIRTIGHT RATED

Sealed Tight.Tested to Prove It.

Airtight rated access panels, riser doors and loft hatches tested to BS EN 12114, supporting Part L compliance and energy performance targets.

Access Panels

Lead Time: 3-5 working days | Bespoke: 4 working days

What Is a Airtight Rated Access Panel?

An airtight rated access panel is a hinged or removable panel fitted with compression gaskets or seals that has been independently tested to minimise uncontrolled air leakage through the building envelope. Airtight rated access panels, riser doors and loft hatches prevent draughts, heat loss and pressure imbalances at service access points in walls, ceilings and floors.Airtightness is measured as air permeability, expressed in m3/(h.m2) at a reference pressure of 50 Pascals. The lower the value, the less air leaks through the product. Rapid Access airtight products are tested to BS EN 12114 at an independent UKAS accredited laboratory. Airtight products are essential for meeting Building Regulations Approved Document Part L (Conservation of Fuel and Power), which sets maximum air permeability rates for new buildings and requires all penetrations in the building envelope to be sealed against uncontrolled air leakage.

Reviewed by: Rapid Access Technical Team Last updated: February 2026 Certifications: ISO 9001 | ISO 14001 | ISO 45001

UNDERSTANDING FIRE RATING

Air Permeability vs Air Leakage

Fire ratings are classified by two criteria, integrity and insulation. Understanding the difference helps you specify the correct product for your project.

Air Permeability

Building Regulations Part L metricAir permeability is the measure used in Building Regulations Approved Document Part L. It is expressed as the volume of air passing through the building envelope per hour, per square metre of envelope area, at a pressure of 50 Pascals. The Part L target for new dwellings is 10 m3/(h.m2) at 50Pa, though most modern designs target 5 m3/(h.m2) or lower. Every penetration in the building envelope, including access panels and loft hatches, must contribute to achieving this target.Part L target:10 m3/(h.m2)Best practice: 5 m3/(h.m2)

Air Pressure Testing

Blower door test to BS EN ISO 9972An insulated fire rating means the panel provides both integrity and insulation, preventing flame passage while also limiting temperature rise on the unexposed face to below 140°C average (180°C peak). This is required wherever the unexposed side is an occupied or escape route area, preventing radiant heat from causing injury or igniting materials nearby.Tested at 50 PascalsRequired for Part L complianceOUR AIRTIGHT RANGE

Available Across Access Panels, Riser Doors & Loft Hatches

​Airtight rated options are available in metal faced and plasterboard faced configurations across our access panel, riser door and loft hatch ranges.

ACCESS PANELS

Airtight Access Panels

RISER DOORS

Airtight Riser Doors

LOFT HATCHES

Airtight Loft Hatches

Applications

Where Airtight rated Products Are Required

Any building where air permeability targets must be met will benefit from airtight rated access panels, riser doors and loft hatches.

Commercial & Office

Service risers, corridors, suspended ceilings and plant rooms

Residential

Bathrooms, utility spaces, loft access and apartment risers

Healthcare & Hospitals

Wards, corridors, clean rooms and service voids

Education & Schools

Classrooms, halls, corridors and multi-storey buildings

Infrastructure

Transport hubs, data centres, utilities and public buildings

[tcb-script](function() { const rapAppsTrack = document.getElementById(‘rapAppsSliderTrack’); const rapAppsPrev = document.getElementById(‘rapAppsPrevBtn’); const rapAppsNext = document.getElementById(‘rapAppsNextBtn’); const rapAppsCards = document.querySelectorAll(‘#rapAppsSliderTrack .rapApps-product-card’); if (!rapAppsTrack || !rapAppsPrev || !rapAppsNext || rapAppsCards.length === 0) return; let rapAppsIndex = 0; let rapAppsStartX = 0; let rapAppsTranslate = 0; let rapAppsPrevTranslate = 0; let rapAppsDragging = false; let rapAppsAnimID = 0; let rapAppsStartY = 0; let rapAppsHorizontal = false; const rapAppsGap = 12; function getRapAppsCardWidth() { if (rapAppsCards.length > 0) { return rapAppsCards[0].getBoundingClientRect().width; } return 420; } function isMobile() { return window.innerWidth <= 768; } // Calculate available visible width using actual DOM measurements // This correctly handles scrollbar width, WordPress container padding, etc. function getRapAppsAvailable() { if (rapAppsCards.length === 0) return window.innerWidth; var firstCardLeft = rapAppsCards[0].getBoundingClientRect().left – rapAppsPrevTranslate; var viewport = document.querySelector(‘.rapApps-slider-viewport’); var containerRight = viewport ? viewport.getBoundingClientRect().right : window.innerWidth; var rightBuffer = isMobile() ? 20 : 0; return containerRight – firstCardLeft – rightBuffer; } // Max translate so last card right edge aligns with viewport right edge function getMaxTranslate() { const cardW = getRapAppsCardWidth(); const slideW = cardW + rapAppsGap; const totalWidth = (rapAppsCards.length * slideW) – rapAppsGap; const available = getRapAppsAvailable(); return Math.max(0, totalWidth – available); } function getMaxIndex() { const cardW = getRapAppsCardWidth(); const slideW = cardW + rapAppsGap; const maxT = getMaxTranslate(); return Math.ceil(maxT / slideW); } setTimeout(() => { setRapAppsPosition(); }, 200); let rapAppsResizeTimer; window.addEventListener(‘resize’, () => { clearTimeout(rapAppsResizeTimer); rapAppsResizeTimer = setTimeout(() => { // Clamp index if window got bigger const maxIdx = getMaxIndex(); if (rapAppsIndex > maxIdx) rapAppsIndex = maxIdx; setRapAppsPosition(); }, 50); }); function updateRapAppsNav() { const maxIdx = getMaxIndex(); if (rapAppsIndex <= 0) { rapAppsPrev.classList.add(‘disabled’); rapAppsPrev.classList.remove(‘active’); } else { rapAppsPrev.classList.remove(‘disabled’); rapAppsPrev.classList.add(‘active’); } if (rapAppsIndex >= maxIdx) { rapAppsNext.classList.add(‘disabled’); rapAppsNext.classList.remove(‘active’); } else { rapAppsNext.classList.remove(‘disabled’); rapAppsNext.classList.add(‘active’); } } function setRapAppsPosition() { const cardW = getRapAppsCardWidth(); const slideW = cardW + rapAppsGap; const maxIdx = getMaxIndex(); const maxT = getMaxTranslate(); // Clamp index if (rapAppsIndex > maxIdx) rapAppsIndex = maxIdx; if (rapAppsIndex < 0) rapAppsIndex = 0; // On the last step, snap exactly to maxTranslate so last card is fully visible let translateX; if (rapAppsIndex >= maxIdx) { translateX = -maxT; } else { translateX = -(rapAppsIndex * slideW); } rapAppsTranslate = translateX; rapAppsPrevTranslate = rapAppsTranslate; rapAppsTrack.style.transform = ‘translateX(‘ + rapAppsTranslate + ‘px)’; updateRapAppsNav(); } function rapAppsGoNext() { const maxIdx = getMaxIndex(); if (rapAppsIndex < maxIdx) { rapAppsIndex++; setRapAppsPosition(); } } function rapAppsGoPrev() { if (rapAppsIndex > 0) { rapAppsIndex–; setRapAppsPosition(); } } function rapAppsTouchStart(event) { rapAppsDragging = true; rapAppsStartX = event.type.includes(‘mouse’) ? event.pageX : event.touches[0].clientX; rapAppsStartY = event.type.includes(‘mouse’) ? event.pageY : event.touches[0].clientY; rapAppsHorizontal = false; rapAppsAnimID = requestAnimationFrame(rapAppsAnimate); rapAppsTrack.style.cursor = ‘grabbing’; } function rapAppsTouchMove(event) { if (!rapAppsDragging) return; var curX = event.type.includes(‘mouse’) ? event.pageX : event.touches[0].clientX; var curY = event.type.includes(‘mouse’) ? event.pageY : event.touches[0].clientY; var diffX = Math.abs(curX – rapAppsStartX); var diffY = Math.abs(curY – rapAppsStartY); if (!rapAppsHorizontal && diffX > 5) { rapAppsHorizontal = diffX > diffY; } if (rapAppsHorizontal && event.cancelable) { event.preventDefault(); } rapAppsTranslate = rapAppsPrevTranslate + (curX – rapAppsStartX); } function rapAppsTouchEnd() { rapAppsDragging = false; rapAppsHorizontal = false; cancelAnimationFrame(rapAppsAnimID); rapAppsTrack.style.cursor = ‘grab’; var moved = rapAppsTranslate – rapAppsPrevTranslate; var maxIdx = getMaxIndex(); if (moved < -50 && rapAppsIndex < maxIdx) rapAppsIndex++; if (moved > 50 && rapAppsIndex > 0) rapAppsIndex–; setRapAppsPosition(); } function rapAppsAnimate() { if (rapAppsDragging) { rapAppsTrack.style.transform = ‘translateX(‘ + rapAppsTranslate + ‘px)’; requestAnimationFrame(rapAppsAnimate); } } rapAppsTrack.addEventListener(‘mousedown’, rapAppsTouchStart); rapAppsTrack.addEventListener(‘touchstart’, rapAppsTouchStart, { passive: true }); rapAppsTrack.addEventListener(‘mousemove’, rapAppsTouchMove); rapAppsTrack.addEventListener(‘touchmove’, rapAppsTouchMove, { passive: false }); rapAppsTrack.addEventListener(‘mouseup’, rapAppsTouchEnd); rapAppsTrack.addEventListener(‘mouseleave’, rapAppsTouchEnd); rapAppsTrack.addEventListener(‘touchend’, rapAppsTouchEnd); rapAppsPrev.addEventListener(‘click’, rapAppsGoPrev); rapAppsNext.addEventListener(‘click’, rapAppsGoNext); rapAppsTrack.addEventListener(‘dragstart’, function(e) { e.preventDefault(); }); setRapAppsPosition(); // MODAL var rapAppsModal = document.getElementById(‘rapAppsModal’); var rapAppsModalOverlay = document.getElementById(‘rapAppsModalOverlay’); var rapAppsModalClose = document.getElementById(‘rapAppsModalClose’); var rapAppsModalSector = document.getElementById(‘rapAppsModalSector’); var rapAppsModalTitle = document.getElementById(‘rapAppsModalTitle’); var rapAppsModalDesc = document.getElementById(‘rapAppsModalDescription’); var rapAppsScrollPos = 0; var rapAppsData = [ { sector: ‘Sector’, title: ‘Commercial & Office’, description: ‘Access panels in commercial and office buildings provide maintenance access to service risers, HVAC ducting, fire dampers and electrical distribution behind walls, ceilings and floors. Fire rated panels maintain compartmentation in corridors and escape routes. Acoustic rated options ensure sound separation between offices, meeting rooms and open-plan areas. Metal faced panels are the most common choice for suspended ceilings and plant rooms where durability and a clean finish are priorities.’ }, { sector: ‘Sector’, title: ‘Residential’, description: ‘In residential developments, access panels provide discreet maintenance access to plumbing, electrical wiring and heating systems. Plasterboard faced panels are popular for living areas and bedrooms where a flush, invisible finish is essential. Tile faced panels are used in bathrooms, en-suites and kitchens to maintain a seamless tiled surface. Fire rated panels are required in apartment buildings where compartmentation between dwellings must be maintained under Approved Document B.’ }, { sector: ‘Sector’, title: ‘Healthcare & Hospitals’, description: ‘Healthcare environments demand the highest levels of fire safety, hygiene and acoustic performance. Access panels in hospitals must maintain fire compartmentation to protect patients, staff and escape routes. Acoustic rated panels help control noise between wards, theatres and corridors. Airtight options support infection control by preventing air leakage between clean and contaminated zones. All panels must withstand frequent cleaning and meet strict NHS and HTM requirements.’ }, { sector: ‘Sector’, title: ‘Education & Schools’, description: ‘Schools and educational buildings require durable, tamper-resistant access panels that maintain fire safety and acoustic separation between classrooms, corridors and halls. Fire rated panels are essential in multi-storey school buildings to meet Building Regulations. Acoustic rated options help reduce noise transfer between teaching spaces. Metal faced panels are commonly specified for their durability in high-traffic environments.’ }, { sector: ‘Sector’, title: ‘Infrastructure’, description: ‘Transport hubs, data centres, stations and public service buildings require robust access panels that withstand heavy use and demanding environments. Fire rated panels are essential in underground and enclosed spaces where escape routes must be protected. Metal faced panels offer the durability needed in high-traffic public areas. Acoustic rated options help control noise in station concourses and passenger areas. Bespoke sizes and non-standard configurations are commonly required.’ } ]; function openRapAppsModal(index) { var data = rapAppsData[index]; rapAppsModalSector.textContent = data.sector; rapAppsModalTitle.textContent = data.title; rapAppsModalDesc.textContent = data.description; rapAppsScrollPos = window.pageYOffset || document.documentElement.scrollTop; document.body.appendChild(rapAppsModal); document.body.style.position = ‘fixed’; document.body.style.top = ‘-‘ + rapAppsScrollPos + ‘px’; document.body.style.width = ‘100%’; document.body.classList.add(‘rapApps-modal-open’); rapAppsModal.classList.add(‘active’); } function closeRapAppsModal() { rapAppsModal.classList.remove(‘active’); var scrollY = rapAppsScrollPos; document.body.classList.remove(‘rapApps-modal-open’); document.body.style.position = ”; document.body.style.top = ”; document.body.style.width = ”; requestAnimationFrame(function() { window.scrollTo(0, scrollY); }); } rapAppsCards.forEach(function(card, index) { card.addEventListener(‘click’, function(e) { if (!rapAppsDragging || Math.abs(rapAppsTranslate – rapAppsPrevTranslate) < 5) { openRapAppsModal(index); } }); }); rapAppsModalClose.addEventListener(‘click’, closeRapAppsModal); rapAppsModalOverlay.addEventListener(‘click’, closeRapAppsModal); document.addEventListener(‘keydown’, function(e) { if (e.key === ‘Escape’ && rapAppsModal.classList.contains(‘active’)) { closeRapAppsModal(); } });})();[/tcb-script]Compliance

Standards & Testing

All airtightness ratings are independently tested at UKAS accredited laboratories and certified to current British and European standards.

Test Standards

BS EN 12114:2000Thermal performance of buildings. Air permeability of building components and building elements. Laboratory test methodBS EN ISO 9972:2015Thermal performance of buildings. Determination of air permeability of buildings. Fan pressurisation method (blower door test)BS EN 13829:2001Thermal performance of buildings. Determination of air permeability of buildings. Fan pressurisation method (predecessor standard)BS 476: Part 22:1987Methods for determination of fire resistance of non-loadbearing elements of construction (legacy standard, still referenced)

Building Regulations & Guidance

Approved Document L1A (2021)Conservation of fuel and power in new dwellings. Sets maximum air permeability of 10 m3/(h.m2) at 50Pa with mandatory pressure testingApproved Document L2A (2021)Fire safety in the design, management and use of buildings. Code of practiceSAP 10.2 / SBEMStandard Assessment Procedure for dwellings and Simplified Building Energy Model for non-domestic buildings. Air permeability is a key input for calculating energy performance and CO2 emissionsATTMA TSL1 (2022)Air Tightness Testing and Measurement Association. Technical Standard for measuring air permeability of building envelopes in dwellings and non-dwellingsComparison

Airtight Availability by Product & Face Type

Airtight rated options are available across most product types and face configurations. Use this table to check availability for your specification.

Product Face Type Airtight Rated Combined Fire Rating Test Standard
Access Panel Metal Faced Available Up to 120 minutes BS EN 12114
Access Panel Tile Faced Not available Up to 120 minutes N/A
Access Panel Plasterboard Faced Available Up to 120 minutes BS EN 12114
Riser Door Metal Faced Available Up to 120 minutes BS EN 12114
Riser Door Plasterboard Faced Available Up to 120 minutes BS EN 12114
Loft Hatch Metal Faced Available Up to 60 minutes BS EN 12114

Access Panel Metal Faced Airtight RatedAvailable Combined Fire RatingUp to 120 minutes Test StandardBS EN 12114 Access Panel Tile Faced Airtight RatedNot available Combined Fire RatingUp to 120 minutes Test StandardN/A Access Panel Plasterboard Faced Airtight RatedAvailable Combined Fire RatingUp to 120 minutes Test StandardBS EN 12114 Riser Door Metal Faced Airtight RatedAvailable Combined Fire RatingUp to 120 minutes Test StandardBS EN 12114 Riser Door Plasterboard Faced Airtight RatedAvailable Combined Fire RatingUp to 120 minutes Test StandardBS EN 12114 Loft Hatch Metal Faced Airtight RatedAvailable Combined Fire RatingUp to 60 minutes Test StandardBS EN 12114 FREQuently asked questions

Airtight Rated FAQs

EXPLORE OTHER RATINGS

Related Performance Ratings

Airtight rated products are often specified alongside fire, acoustic and smoke tested options. Many of our products combine multiple ratings in a single unit.

Fire Rated

Integrity ratings up to 120 minutes tested to BS EN 1634-1

Acoustic Rated

Sound reduction up to 48dB for Approved Document Part E compliance

Airtight Rated

Tested air permeability to BS EN 12114 for Part L compliance

Smoke Tested

Ambient and medium temperature smoke leakage tested to BS EN 1634-3

Non Fire Rated

Standard access panels for general maintenance and service access

[tcb-script](function() { var rapRatingsTrack = document.getElementById(‘rapRatingsSliderTrack’); var rapRatingsPrev = document.getElementById(‘rapRatingsPrevBtn’); var rapRatingsNext = document.getElementById(‘rapRatingsNextBtn’); var rapRatingsCards = document.querySelectorAll(‘#rapRatingsSliderTrack .rapRatings-product-card’); if (!rapRatingsTrack || !rapRatingsPrev || !rapRatingsNext || rapRatingsCards.length === 0) return; var rapRatingsIndex = 0; var rapRatingsStartX = 0; var rapRatingsTranslate = 0; var rapRatingsPrevTranslate = 0; var rapRatingsDragging = false; var rapRatingsAnimID = 0; var rapRatingsStartY = 0; var rapRatingsHorizontal = false; var rapRatingsGap = 12; function getRapRatingsCardWidth() { if (rapRatingsCards.length > 0) { return rapRatingsCards[0].getBoundingClientRect().width; } return 420; } function isMobile() { return window.innerWidth <= 768; } function getRapRatingsAvailable() { if (rapRatingsCards.length === 0) return window.innerWidth; var firstCardLeft = rapRatingsCards[0].getBoundingClientRect().left – rapRatingsPrevTranslate; var viewport = rapRatingsTrack.closest(‘.rapRatings-slider-viewport’); var containerRight = viewport ? viewport.getBoundingClientRect().right : window.innerWidth; var rightBuffer = isMobile() ? 20 : 0; return containerRight – firstCardLeft – rightBuffer; } function getMaxTranslate() { var cardW = getRapRatingsCardWidth(); var slideW = cardW + rapRatingsGap; var totalWidth = (rapRatingsCards.length * slideW) – rapRatingsGap; var available = getRapRatingsAvailable(); return Math.max(0, totalWidth – available); } function getMaxIndex() { var cardW = getRapRatingsCardWidth(); var slideW = cardW + rapRatingsGap; var maxT = getMaxTranslate(); return Math.ceil(maxT / slideW); } setTimeout(function() { setRapRatingsPosition(); }, 200); var rapRatingsResizeTimer; window.addEventListener(‘resize’, function() { clearTimeout(rapRatingsResizeTimer); rapRatingsResizeTimer = setTimeout(function() { var maxIdx = getMaxIndex(); if (rapRatingsIndex > maxIdx) rapRatingsIndex = maxIdx; setRapRatingsPosition(); }, 50); }); function updateRapRatingsNav() { var maxIdx = getMaxIndex(); if (rapRatingsIndex <= 0) { rapRatingsPrev.classList.add(‘disabled’); rapRatingsPrev.classList.remove(‘active’); } else { rapRatingsPrev.classList.remove(‘disabled’); rapRatingsPrev.classList.add(‘active’); } if (rapRatingsIndex >= maxIdx) { rapRatingsNext.classList.add(‘disabled’); rapRatingsNext.classList.remove(‘active’); } else { rapRatingsNext.classList.remove(‘disabled’); rapRatingsNext.classList.add(‘active’); } } function setRapRatingsPosition() { var cardW = getRapRatingsCardWidth(); var slideW = cardW + rapRatingsGap; var maxIdx = getMaxIndex(); var maxT = getMaxTranslate(); if (rapRatingsIndex > maxIdx) rapRatingsIndex = maxIdx; if (rapRatingsIndex < 0) rapRatingsIndex = 0; var translateX; if (rapRatingsIndex >= maxIdx) { translateX = -maxT; } else { translateX = -(rapRatingsIndex * slideW); } rapRatingsTranslate = translateX; rapRatingsPrevTranslate = rapRatingsTranslate; rapRatingsTrack.style.transform = ‘translateX(‘ + rapRatingsTranslate + ‘px)’; updateRapRatingsNav(); } function rapRatingsGoNext() { var maxIdx = getMaxIndex(); if (rapRatingsIndex < maxIdx) { rapRatingsIndex++; setRapRatingsPosition(); } } function rapRatingsGoPrev() { if (rapRatingsIndex > 0) { rapRatingsIndex–; setRapRatingsPosition(); } } function rapRatingsTouchStart(event) { rapRatingsDragging = true; rapRatingsStartX = event.type.includes(‘mouse’) ? event.pageX : event.touches[0].clientX; rapRatingsStartY = event.type.includes(‘mouse’) ? event.pageY : event.touches[0].clientY; rapRatingsHorizontal = false; rapRatingsAnimID = requestAnimationFrame(rapRatingsAnimate); rapRatingsTrack.style.cursor = ‘grabbing’; } function rapRatingsTouchMove(event) { if (!rapRatingsDragging) return; var curX = event.type.includes(‘mouse’) ? event.pageX : event.touches[0].clientX; var curY = event.type.includes(‘mouse’) ? event.pageY : event.touches[0].clientY; var diffX = Math.abs(curX – rapRatingsStartX); var diffY = Math.abs(curY – rapRatingsStartY); if (!rapRatingsHorizontal && diffX > 5) { rapRatingsHorizontal = diffX > diffY; } if (rapRatingsHorizontal && event.cancelable) { event.preventDefault(); } rapRatingsTranslate = rapRatingsPrevTranslate + (curX – rapRatingsStartX); } function rapRatingsTouchEnd() { rapRatingsDragging = false; rapRatingsHorizontal = false; cancelAnimationFrame(rapRatingsAnimID); rapRatingsTrack.style.cursor = ‘grab’; var moved = rapRatingsTranslate – rapRatingsPrevTranslate; var maxIdx = getMaxIndex(); if (moved < -50 && rapRatingsIndex < maxIdx) rapRatingsIndex++; if (moved > 50 && rapRatingsIndex > 0) rapRatingsIndex–; setRapRatingsPosition(); } function rapRatingsAnimate() { if (rapRatingsDragging) { rapRatingsTrack.style.transform = ‘translateX(‘ + rapRatingsTranslate + ‘px)’; requestAnimationFrame(rapRatingsAnimate); } } rapRatingsTrack.addEventListener(‘mousedown’, rapRatingsTouchStart); rapRatingsTrack.addEventListener(‘touchstart’, rapRatingsTouchStart, { passive: true }); rapRatingsTrack.addEventListener(‘mousemove’, rapRatingsTouchMove); rapRatingsTrack.addEventListener(‘touchmove’, rapRatingsTouchMove, { passive: false }); rapRatingsTrack.addEventListener(‘mouseup’, rapRatingsTouchEnd); rapRatingsTrack.addEventListener(‘mouseleave’, rapRatingsTouchEnd); rapRatingsTrack.addEventListener(‘touchend’, rapRatingsTouchEnd); rapRatingsPrev.addEventListener(‘click’, rapRatingsGoPrev); rapRatingsNext.addEventListener(‘click’, rapRatingsGoNext); rapRatingsTrack.addEventListener(‘dragstart’, function(e) { e.preventDefault(); }); setRapRatingsPosition(); // MODAL var rapRatingsModal = document.getElementById(‘rapRatingsModal’); var rapRatingsModalOverlay = document.getElementById(‘rapRatingsModalOverlay’); var rapRatingsModalCloseBtn = document.getElementById(‘rapRatingsModalClose’); var rapRatingsModalSector = document.getElementById(‘rapRatingsModalSector’); var rapRatingsModalTitle = document.getElementById(‘rapRatingsModalTitle’); var rapRatingsModalDesc = document.getElementById(‘rapRatingsModalDescription’); var rapRatingsScrollPos = 0; var rapRatingsData = [ { sector: ‘Rating’, title: ‘Fire Rated’, description: ‘Our fire rated access panels and riser doors are tested to BS EN 1634-1 and BS EN 1364-1, providing integrity ratings of 30, 60, 90 and 120 minutes. Fire rated products maintain compartmentation in walls, ceilings and floors, protecting escape routes and preventing the spread of fire between building zones. Essential for compliance with Approved Document B (Fire Safety) in corridors, risers, service voids and any location where fire compartment lines must be maintained. Available across metal faced, tile faced and plasterboard faced product ranges.’ }, { sector: ‘Rating’, title: ‘Acoustic Rated’, description: ‘Acoustic rated access panels deliver sound reduction performance up to 48dB, independently tested to BS EN ISO 10140. Acoustic separation is critical in environments where noise transfer between spaces must be controlled, including offices, classrooms, hospital wards and residential apartments. Our acoustic options help you meet Approved Document Part E and BB93 requirements for schools. Available across metal faced (up to 48dB), plasterboard faced (up to 37dB) and tile faced (up to 36dB) ranges.’ }, { sector: ‘Rating’, title: ‘Airtight Rated’, description: ‘Airtight rated access panels are tested for air permeability to BS EN 12114, helping you meet Approved Document Part L requirements and energy performance targets. Airtight products minimise heat loss and uncontrolled air leakage through the building envelope at access points, supporting overall building energy efficiency. Critical for projects targeting BREEAM, Passivhaus or other energy performance standards. Available across metal faced and plasterboard faced product ranges.’ }, { sector: ‘Rating’, title: ‘Smoke Tested’, description: ‘Smoke tested access panels are tested for ambient and medium temperature smoke leakage to BS EN 1634-3:2004. Smoke control is a key element of fire safety strategy, preventing smoke spread through corridors, lobbies and service risers during a fire event. Smoke tested products support compartmentation and protect escape routes, helping you meet the smoke control provisions of Approved Document B. Available across metal faced and plasterboard faced product ranges.’ }, { sector: ‘Rating’, title: ‘Non Fire Rated’, description: ‘Non fire rated access panels provide standard maintenance access where no specific fire, acoustic or airtightness rating is required. Ideal for general service access in non-fire-critical locations such as concealed valves, junction boxes, meters and pipework. Available in metal faced, tile faced and plasterboard faced options with a range of frame types and locking mechanisms. A cost-effective solution where compliance ratings are not specified.’ } ]; function openRapRatingsModal(index) { var data = rapRatingsData[index]; rapRatingsModalSector.textContent = data.sector; rapRatingsModalTitle.textContent = data.title; rapRatingsModalDesc.textContent = data.description; rapRatingsScrollPos = window.pageYOffset || document.documentElement.scrollTop; document.body.appendChild(rapRatingsModal); document.body.style.position = ‘fixed’; document.body.style.top = ‘-‘ + rapRatingsScrollPos + ‘px’; document.body.style.width = ‘100%’; document.body.classList.add(‘rapRatings-modal-open’); rapRatingsModal.classList.add(‘active’); } function closeRapRatingsModal() { rapRatingsModal.classList.remove(‘active’); var scrollY = rapRatingsScrollPos; document.body.classList.remove(‘rapRatings-modal-open’); document.body.style.position = ”; document.body.style.top = ”; document.body.style.width = ”; requestAnimationFrame(function() { window.scrollTo(0, scrollY); }); } rapRatingsCards.forEach(function(card, index) { card.addEventListener(‘click’, function(e) { if (!rapRatingsDragging || Math.abs(rapRatingsTranslate – rapRatingsPrevTranslate) < 5) { openRapRatingsModal(index); } }); }); rapRatingsModalCloseBtn.addEventListener(‘click’, closeRapRatingsModal); rapRatingsModalOverlay.addEventListener(‘click’, closeRapRatingsModal); document.addEventListener(‘keydown’, function(e) { if (e.key === ‘Escape’ && rapRatingsModal.classList.contains(‘active’)) { closeRapRatingsModal(); } });})();[/tcb-script]

Need Help Specifying Airtight Products?

Our technical team can help you select the right airtight rating, face type and product for your project. From initial specification through to delivery and on-site support.