Non Fire RATED
Non fire rated access panels, riser doors, meter overboxes and loft hatches for locations where performance ratings are not required. Same build quality, faster lead times, lower cost.

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

A non fire rated access panel is a hinged or removable panel designed to provide maintenance access to concealed building services without any specific fire, acoustic, airtight or smoke performance rating. Non fire rated products are used in locations where Building Regulations do not require the access point to contribute to fire compartmentation, sound insulation, airtightness or smoke control. These locations include internal partitions that are not compartment walls, areas outside the building envelope, non-critical service access points, and any location where the surrounding construction does not carry a performance rating that the access panel needs to maintain.
Non fire rated access panels are manufactured to the same build quality and dimensional accuracy as their rated equivalents. They use the same steel frames, hinge mechanisms, locking options and powder coat finishes. The difference is the absence of intumescent strips, acoustic infill, compression gaskets or smoke seals that are required to achieve a tested performance rating. This makes non fire rated products a cost effective solution for general maintenance access where compliance ratings are not specified.
Reviewed by: Rapid Access Technical Team Last updated: February 2026 Certifications: ISO 9001 | ISO 14001 | ISO 45001
UNDERSTANDING your requirements
Not every access panel needs a fire, acoustic, airtight or smoke rating. Understanding where ratings are required and where they are not helps you avoid over-specifying and reduce project costs without compromising compliance.
Locations where Building Regulations applyAccess panels, riser doors and loft hatches require performance ratings when they are installed in locations where the surrounding construction must achieve a specific level of fire resistance, sound insulation, airtightness or smoke control. This includes compartment walls and floors (Approved Document B), separating walls between dwellings (Part E), the building envelope and air barrier line (Part L), and protected escape routes where smoke control is required. In these locations, the access panel must match or exceed the performance of the surrounding construction. Using a non fire rated product in a rated location is a Building Regulation breach and will be rejected at building control inspection.Compartment wallsSeparating wallsBuilding envelopeEscape routes
Locations where non fire rated products are appropriateNon fire rated access panels are suitable for any location where the surrounding wall, ceiling or floor does not carry a fire, acoustic, airtight or smoke requirement. This includes internal partitions between rooms within the same dwelling or tenancy, non-compartmented ceiling voids, service cupboards, plant rooms where the enclosure itself is not a fire compartment, and general maintenance access to valves, junction boxes, meters and pipework in non-critical locations. If the wall you are cutting the opening into does not need to be fire rated, the access panel does not need to be fire rated either.Internal partitionsService cupboardsPlant roomsGeneral accessNon FIRE RATED PRODUCTS
Non fire rated options are available across every product type and face configuration in the Rapid Access range. This is the widest availability of any rating category.
Applications
Non fire rated products are suitable for any location where the surrounding construction does not carry a fire, acoustic, airtight or smoke performance requirement.
Service risers, corridors, suspended ceilings and plant rooms
Bathrooms, utility spaces, loft access and apartment risers
Wards, corridors, clean rooms and service voids
Classrooms, halls, corridors and multi-storey buildings
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]Quality & Upgrades
Non fire rated products do not require independent testing or certification to a British or European Standard. However, product quality, dimensional accuracy and installation workmanship still matter.
ISO 9001:2015 Quality ManagementAll non fire rated products are manufactured under the same quality management system as our tested, rated products. This means consistent material quality, dimensional accuracy and finish across the entire rangePowder Coat FinishStandard RAL 9010 (white) at 30% gloss. Custom RAL colours available. Consistent finish across rated and non rated products from the same production lineMade to MeasureEvery non fire rated product is manufactured to your exact dimensions. Standard sizes are not held in stock. This means precise fit with no site modification required
Fire RatedUpgrade to integrity ratings up to 120 minutes, tested to BS EN 1634-1:2014. Available across access panels, riser doors, meter overboxes and loft hatchesAcoustic RatedUpgrade to sound reduction up to 48dB Rw, tested to BS EN ISO 10140. Available across access panels and riser doorsAirtight RatedUpgrade to tested air permeability to BS EN 12114 for Part L compliance. Available across access panels, riser doors and loft hatchesSmoke TestedUpgrade to Sa and S200 classification to BS EN 1634-3:2004. Available across access panels and riser doorsComparison
Non fire rated options are available across every product type. Use this table to check availability and see which rated upgrades are available for each product.
| Product | Face Type | Non Fire Rated | Rated Upgrade Available | Fastest Lead Time |
|---|---|---|---|---|
| Access Panel | Metal Faced | Available | Fire, Acoustic, Airtight, Smoke | 3 to 5 days |
| Access Panel | Tile Faced | Available | Fire, Acoustic | 3 to 5 days |
| Access Panel | Plasterboard Faced | Available | Fire, Acoustic, Airtight, Smoke | 3 to 5 days |
| Riser Door | Metal Faced | Available | Fire, Acoustic, Airtight, Smoke | 5 to 10 days |
| Riser Door | Plasterboard Faced | Available | Fire, Acoustic, Airtight, Smoke | 5 to 10 days |
| Loft Hatch | Metal Faced | Available | Fire, Airtight | 3 to 5 days |
| Meter Overbox | Metal Faced | Available | Fire | 3 to 5 days |
| Meter Overbox | External | Available | N/A | 3 to 5 days |
Access Panel Metal Faced Non Fire RatedAvailable Rated UpgradeFire, Acoustic, Airtight, Smoke Fastest Lead Time3 to 5 days Access Panel Tile Faced Non Fire RatedAvailable Rated UpgradeFire, Acoustic Fastest Lead Time3 to 5 days Access Panel Plasterboard Faced Non Fire RatedAvailable Rated UpgradeFire, Acoustic, Airtight, Smoke Fastest Lead Time3 to 5 days Riser Door Metal Faced Non Fire RatedAvailable Rated UpgradeFire, Acoustic, Airtight, Smoke Fastest Lead Time5 to 10 days Riser Door Plasterboard Faced Non Fire RatedAvailable Rated UpgradeFire, Acoustic, Airtight, Smoke Fastest Lead Time5 to 10 days Loft Hatch Metal Faced Non Fire RatedAvailable Rated UpgradeFire, Airtight Fastest Lead Time3 to 5 days Meter Overbox Metal Faced Non Fire RatedAvailable Rated UpgradeFire Fastest Lead Time3 to 5 days Meter Overbox External Non Fire RatedAvailable Rated UpgradeN/A Fastest Lead Time3 to 5 days FREQuently asked questions
EXPLORE More
Non fire rated products are often specified alongside fire, acoustic, airtight and smoke tested options. Many of our products combine multiple ratings in a single unit.
Integrity ratings up to 120 minutes tested to BS EN 1634-1
Sound reduction up to 48dB for Approved Document Part E compliance
Tested air permeability to BS EN 12114 for Part L compliance
Ambient and medium temperature smoke leakage tested to BS EN 1634-3
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]
Our technical team can help you select the right non fire rating, face type and product for your project. From initial specification through to delivery and on-site support.