Produkteigenschaften:6,3 mm (1/4")-VierkantantriebSteckschlüssel-Einsätze und Bedienungselemente aus SpezialstahlOberfläche verchromtSchraubendreher-Einsätze CVD-TiN-beschichtetalle Werkzeuge sind rüttelfest in einer 2-Komponenten-Weichschaum-Einlage angeordnet (Safety-Insert-System) Inhalt: 1 Hebel-Umschaltknarre (90 Zähne) je 1 6-kant- Steckschlüssel-Einsatz SW 5 / 5,5 / 6 / 7 / 8 / 9 / 10 / 11 / 12 / 13 / 14 mm je 1 Steckschlüssel-Einsatz für Schrauben mit Außen-TORX®-Profil Gr. E 5 / 6 / 7 / 8 / 10 je 1 Verlängerung 55 / 147 mm 1 schwenkbare Verlängerung 101,5 mm 1 Kardangelenk 1 Handgriff mit Vierkant 1 Steckschlüssel-Einsatz für Schlitzschrauben 5,5 x 1,0 mm 1 Steckschlüssel-Einsatz für Schrauben mit Kreuzschlitz (PH) Gr. 2 je 1 Steckschlüssel-Einsatz für Schrauben mit Innen-TORX®-Profil Gr. T 10 / 15 / 20 / 25 / 30 je 1 Steckschlüssel-Einsatz für Schrauben mit Innensechskant-Profil SW 3 / 4 / 5 / 6 mm Technische Daten:Inhalt: 33-teilig Antrieb: 1/4"Knarre: Umschaltknarre Form: 6-Kant Marke: HAZET Verpackung: Kunststoffkassette Antrieb mm: 6,3 mmAnzahl Zähne: 90 Schlüsselweiten: 5-14 mmRückschwenkwinkel: 4°Material: Spezialstahl Lieferung in Kunststoffkassette (1/9) 165-SLieferumfang:1x Hazet Steckschlüsselsatz 854T 33-teilig 1/4" Schlüsselweiten 5-14 mm Anzahl Zähne 90 6-Kant
- Hersteller
- Hazet-Werk Hermann Zerver GmbH & Co. KG
-
Güldenwerther Bahnhofstr. 25-29,
42857 Remscheid,
Deutschland
- 02191/7920
Hazet Steckschlüsselsatz 854T 33-teilig 1/4" Schlüsselweiten 5-14 mm Anzahl Zähne 90 6-Kant
- Artikel-Nr.: 854T
- EAN: 4000896109579
- Hersteller: HAZET

Nicht lagernd
const observer = new MutationObserver(() => {
const el = document.getElementById("delivery-date-template");
if (el) {
el.innerHTML = el.innerHTML.replace(
"Lieferung:",
"Lieferung:"
);
observer.disconnect();
clearTimeout(timeoutId);
}
});
observer.observe(document.body, { childList: true, subtree: true });
const timeoutId = setTimeout(() => observer.disconnect(), 2000);
DHL Paket
if(!document.getElementById('paypal-smart-payment-script'))
{
var script = document.createElement("script");
script.type = "module";
script.id = "paypal-smart-payment-script";
script.src = "https://cdn02.plentymarkets.com/qddd911h1zyd/plugin/118/paypal/js/smartPaymentScript.min.js";
script.setAttribute("data-client-id", "AfslQana4f4CQjHvRBnUc6vBJg5jgJuZFwM-SbrTiGKUAqB7MrxQv3QWFdQ6U1h7ogMDokT1DNBzRxMw");
script.setAttribute("data-user-id-token", "");
script.setAttribute("data-merchant-id", "9NUA4DV8EVBB8");
script.setAttribute("data-currency", "EUR");
script.setAttribute("data-append-trailing-slash", "");
script.setAttribute("data-locale", "de_DE");
script.setAttribute("sandbox", "");
script.setAttribute("googlePayComponent", 0);
script.setAttribute("applePayComponent", 0);
script.setAttribute("logToken", "f6764a7edb6e8e6276d4e050b8d3ad08");
document.body.appendChild(script);
} else {
var script = document.getElementById('paypal-smart-payment-script');
script.src = "https://cdn02.plentymarkets.com/qddd911h1zyd/plugin/118/paypal/js/smartPaymentScript.min.js";
script.setAttribute("data-client-id", "AfslQana4f4CQjHvRBnUc6vBJg5jgJuZFwM-SbrTiGKUAqB7MrxQv3QWFdQ6U1h7ogMDokT1DNBzRxMw");
script.setAttribute("data-user-id-token", "");
script.setAttribute("data-merchant-id", "9NUA4DV8EVBB8");
script.setAttribute("data-currency", "EUR");
script.setAttribute("data-append-trailing-slash", "");
script.setAttribute("data-locale", "de_DE");
script.setAttribute("sandbox", "");
script.setAttribute("googlePayComponent", 0);
script.setAttribute("applePayComponent", 0);
script.setAttribute("logToken", "f6764a7edb6e8e6276d4e050b8d3ad08");
}

- Versandkostenfreie Lieferung in DE ab 100€
- Kostenloser Rückversand
$(document).ready(function() {
setTimeout(function () {
if (
window.innerWidth < 1200 &&
$('#m1').length &&
$('#mM').length &&
$('#m1').is(':empty')
) {
$('#mM').appendTo('#m1');
}
}, 1000);
$( window ).resize(function() {
if ($(window).outerWidth() < 1200 ) {
$('#mM').appendTo('#m1');
} else {
$('#mM').appendTo('#m2');
}
});
});
$(function () {
const $links = $('.anchors a');
const nav = document.querySelector('.anchors');
function updateActiveLink() {
const scrollTop = $(document).scrollTop();
$links.each(function (i, link) {
const targetId = $(link).attr('href');
const $target = $(targetId);
if (!$target.length) return;
const top = $target.offset().top;
let bottom;
if (i < $links.length - 1) {
const nextLinkHref = $($links[i + 1]).attr('href');
const $nextTarget = $(nextLinkHref);
bottom = $nextTarget.length ? $nextTarget.offset().top : $(document).height();
} else {
bottom = $(document).height();
}
if (scrollTop >= top - 120 && scrollTop < bottom - 120) {
$links.removeClass('active');
$(link).addClass('active');
scrollNavToLink(link);
return false; // break .each()
}
});
}
function scrollNavToLink(link) {
if (!nav) return;
const linkLeft = link.offsetLeft;
const linkWidth = link.offsetWidth;
const navWidth = nav.offsetWidth;
const scrollTo = linkLeft - (navWidth / 2) + (linkWidth / 2);
nav.scrollTo({ left: scrollTo, behavior: 'smooth' });
}
let scrollTimer;
$(document).on('scroll', function () {
updateActiveLink(); // run immediately
clearTimeout(scrollTimer);
scrollTimer = setTimeout(updateActiveLink, 100); // trailing update
});
updateActiveLink(); // on load
});