Produktbeschreibung:Der Einhell E-Case L ist Mitglied im modularen E-Case System von Einhell und eignet sich optimal zur Aufbewahrung und zum Transport von Maschinen, Werkzeug, Zubehör und anderen Geräten.Ein praktisches Verriegelungssystem für die Verbindung gestapelter Koffer sorgt bei der Lagerung für systematische Ordnung und ermöglicht einen sicheren Transport.Der Koffer ist aus Polypropylen gefertigt und weißt damit eine hohe Steifigkeit, Hitzebeständigkeit und Schlagresistenz auf.Die stabile Konstruktion erlaubt eine Gesamtnutzlast von bis zu 120 kg.Maschinen und Werkzeug können einfach transportiert werden, nicht zuletzt dank des teleskopierbaren und extra breiten Griffs.Die großen, gummierten Räder (Ø 15cm) ermöglichen einen angenehmen Transport auf jedem Untergrund.Dank des intelligenten Designs ist der Koffer spritzwassergeschützt und kann bei jedem Wetter transportiert werden.Der einklappbare und ergonomische Handgriff sorgt für einen optimalen Tragekomfort, beispielsweise beim Herausnehmen aus einem Kofferraum.Der E-Case L kann mit einem Vorhängeschloss ausgestattet werden, um ihn gegen einen Diebstahl zu sichern.Im Lieferumfang enthalten sind eine herausnehmbare Einlage für Handwerkzeug und Beschriftungsaufkleber, um den Inhalt zu kennzeichnen.Technische Daten:Abstandshalter am Transportgriff: JaAnzahl Tragegriffe: 1 pcsAnzahl Tragegriffe (Koffer 1): 1 pcsBeschriftungsaufkleber: JaBreite außen: 406 mmBreite innen: 273 mmE-Case System: JaHöhe außen: 355 mmHöhe innen: 320 mmInnenleben: Einlage für HandwerkzeugInnenleben (Koffer 1): Einlage für HandwerkzeugLänge außen: 444 mmLänge innen: 415 mmMax. Zuladung: 120 KgProduktgewicht: 5.96 KgRaddurchmesser: 150 mmSealed: NeinSpritzwassergeschützt: JaStapelbar: JaTeleskopierbarer Transportgriff: JaTransporträder: JaVerriegelung Stapel: JaVorrichtung für Anhängeschloss: JaLieferumfang:1x Einhell Systemkoffer E-Case L mit Rädern1x Einlage Handwerkzeug1x Beschriftungsaufkleber2x Abstandshalter
Einhell Systemkoffer E-Case L mit Rädern
- Artikel-Nr.: 4540014
- EAN: 4006825660562
- Hersteller: EINHELL

78,99 €
UVP 92,95 €
-15%
inkl. MwSt., ggf. zzgl. Versandkosten
Inhalt
1 Stück
Auf Lager
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.plentyone.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", "3463c490be5b7ad25245ef7c4e6624a5");
document.body.appendChild(script);
} else {
var script = document.getElementById('paypal-smart-payment-script');
script.src = "https://cdn02.plentyone.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", "3463c490be5b7ad25245ef7c4e6624a5");
}
Ähnliche Artikel
$(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
});
























