@keyframes showSweetAlert { 0% { transform: scale(0.7); } 45% { transform: scale(1.05); } 80% { transform: scale(0.95); } 100% { transform: scale(1); } } @keyframes hideSweetAlert { 0% { transform: scale(1); } 100% { transform: scale(0.5); } } @keyframes slideFromTop { 0% { top: 0%; } 100% { top: 50%; } } @keyframes slideToTop { 0% { top: 50%; } 100% { top: 0%; } } @keyframes slideFromBottom { 0% { top: 70%; } 100% { top: 50%; } } @keyframes slideToBottom { 0% { top: 50%; } 100% { top: 70%; } } .showSweetAlert { animation: showSweetAlert 0.3s; } .showSweetAlert[data-animation=none] { animation: none; } .showSweetAlert[data-animation=slide-from-top] { animation: slideFromTop 0.3s; } .showSweetAlert[data-animation=slide-from-bottom] { animation: slideFromBottom 0.3s; } .hideSweetAlert { animation: hideSweetAlert 0.3s; } .hideSweetAlert[data-animation=none] { animation: none; } .hideSweetAlert[data-animation=slide-from-top] { animation: slideToTop 0.3s; } .hideSweetAlert[data-animation=slide-from-bottom] { animation: slideToBottom 0.3s; } @keyframes animateSuccessTip { 0% { width: 0; left: 1px; top: 19px; } 54% { width: 0; left: 1px; top: 19px; } 70% { width: 50px; left: -8px; top: 37px; } 84% { width: 17px; left: 21px; top: 48px; } 100% { width: 25px; left: 14px; top: 45px; } } @keyframes animateSuccessLong { 0% { width: 0; right: 46px; top: 54px; } 65% { width: 0; right: 46px; top: 54px; } 84% { width: 55px; right: 0px; top: 35px; } 100% { width: 47px; right: 8px; top: 38px; } } @keyframes rotatePlaceholder { 0% { transform: rotate(-45deg); } 5% { transform: rotate(-45deg); } 12% { transform: rotate(-405deg); } 100% { transform: rotate(-405deg); } } .animateSuccessTip { animation: animateSuccessTip 0.75s; } .animateSuccessLong { animation: animateSuccessLong 0.75s; } .sa-icon.sa-success.animate::after { animation: rotatePlaceholder 4.25s ease-in; } @keyframes animateErrorIcon { 0% { transform: rotateX(100deg); opacity: 0; } 100% { transform: rotateX(0deg); opacity: 1; } } .animateErrorIcon { animation: animateErrorIcon 0.5s; } @keyframes animateXMark { 0% { transform: scale(0.4); margin-top: 26px; opacity: 0; } 50% { transform: scale(0.4); margin-top: 26px; opacity: 0; } 80% { transform: scale(1.15); margin-top: -6px; } 100% { transform: scale(1); margin-top: 0; opacity: 1; } } .animateXMark { animation: animateXMark 0.5s; } @keyframes pulseWarning { 0% { border-color: #F8D486; } 100% { border-color: #F8BB86; } } .pulseWarning { animation: pulseWarning 0.75s infinite alternate; } @keyframes pulseWarningIns { 0% { background-color: #F8D486; } 100% { background-color: #F8BB86; } } .pulseWarningIns { animation: pulseWarningIns 0.75s infinite alternate; } @keyframes rotate-loading { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } body.stop-scrolling { height: 100%; overflow: hidden; } .sweet-overlay { background-color: rgba(0, 0, 0, 0.4); position: fixed; left: 0; right: 0; top: 0; bottom: 0; display: none; z-index: 1040; } .sweet-alert { background-color: #ffffff; width: 478px; padding: 17px; border-radius: 0px; text-align: center; position: fixed; left: 50%; top: 50%; margin-left: -256px; margin-top: -200px; overflow: hidden; display: none; z-index: 2000; } @media all and (max-width: 768px) { .sweet-alert { width: auto; margin-left: 0; margin-right: 0; left: 15px; right: 15px; } } .sweet-alert .form-group { display: none; } .sweet-alert .form-group .sa-input-error { display: none; } .sweet-alert.show-input .form-group { display: block; } .sweet-alert .sa-confirm-button-container { display: inline-block; position: relative; } .sweet-alert .la-ball-fall { position: absolute; left: 50%; top: 50%; margin-left: -27px; margin-top: -9px; opacity: 0; visibility: hidden; } .sweet-alert button[disabled] { opacity: .6; cursor: default; } .sweet-alert button.confirm[disabled] { color: transparent; } .sweet-alert button.confirm[disabled] ~ .la-ball-fall { opacity: 1; visibility: visible; transition-delay: 0s; } .sweet-alert .sa-icon { width: 80px; height: 80px; border: 4px solid gray; border-radius: 50%; margin: 20px auto; position: relative; box-sizing: content-box; } .sweet-alert .sa-icon.sa-error { border-color: #d43f3a; } .sweet-alert .sa-icon.sa-error .sa-x-mark { position: relative; display: block; } .sweet-alert .sa-icon.sa-error .sa-line { position: absolute; height: 5px; width: 47px; background-color: #d9534f; display: block; top: 37px; border-radius: 2px; } .sweet-alert .sa-icon.sa-error .sa-line.sa-left { transform: rotate(45deg); left: 17px; } .sweet-alert .sa-icon.sa-error .sa-line.sa-right { transform: rotate(-45deg); right: 16px; } .sweet-alert .sa-icon.sa-warning { border-color: #eea236; } .sweet-alert .sa-icon.sa-warning .sa-body { position: absolute; width: 5px; height: 47px; left: 50%; top: 10px; border-radius: 2px; margin-left: -2px; background-color: #f0ad4e; } .sweet-alert .sa-icon.sa-warning .sa-dot { position: absolute; width: 7px; height: 7px; border-radius: 50%; margin-left: -3px; left: 50%; bottom: 10px; background-color: #f0ad4e; } .sweet-alert .sa-icon.sa-info { border-color: #46b8da; } .sweet-alert .sa-icon.sa-info::before { content: ""; position: absolute; width: 5px; height: 29px; left: 50%; bottom: 17px; border-radius: 2px; margin-left: -2px; background-color: #5bc0de; } .sweet-alert .sa-icon.sa-info::after { content: ""; position: absolute; width: 7px; height: 7px; border-radius: 50%; margin-left: -3px; top: 19px; background-color: #5bc0de; } .sweet-alert .sa-icon.sa-success { border-color: #4cae4c; } .sweet-alert .sa-icon.sa-success::before, .sweet-alert .sa-icon.sa-success::after { content: ''; border-radius: 50%; position: absolute; width: 60px; height: 120px; background: #ffffff; transform: rotate(45deg); } .sweet-alert .sa-icon.sa-success::before { border-radius: 120px 0 0 120px; top: -7px; left: -33px; transform: rotate(-45deg); transform-origin: 60px 60px; } .sweet-alert .sa-icon.sa-success::after { border-radius: 0 120px 120px 0; top: -11px; left: 30px; transform: rotate(-45deg); transform-origin: 0px 60px; } .sweet-alert .sa-icon.sa-success .sa-placeholder { width: 80px; height: 80px; border: 4px solid rgba(92, 184, 92, 0.2); border-radius: 50%; box-sizing: content-box; position: absolute; left: -4px; top: -4px; z-index: 2; } .sweet-alert .sa-icon.sa-success .sa-fix { width: 5px; height: 90px; background-color: #ffffff; position: absolute; left: 28px; top: 8px; z-index: 1; transform: rotate(-45deg); } .sweet-alert .sa-icon.sa-success .sa-line { height: 5px; background-color: #5cb85c; display: block; border-radius: 2px; position: absolute; z-index: 2; } .sweet-alert .sa-icon.sa-success .sa-line.sa-tip { width: 25px; left: 14px; top: 46px; transform: rotate(45deg); } .sweet-alert .sa-icon.sa-success .sa-line.sa-long { width: 47px; right: 8px; top: 38px; transform: rotate(-45deg); } .sweet-alert .sa-icon.sa-custom { background-size: contain; border-radius: 0; border: none; background-position: center center; background-repeat: no-repeat; } .sweet-alert .btn-default:focus { border-color: #cccccc; outline: 0; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(204, 204, 204, 0.6); box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(204, 204, 204, 0.6); } .sweet-alert .btn-success:focus { border-color: #4cae4c; outline: 0; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(76, 174, 76, 0.6); box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(76, 174, 76, 0.6); } .sweet-alert .btn-info:focus { border-color: #46b8da; outline: 0; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(70, 184, 218, 0.6); box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(70, 184, 218, 0.6); } .sweet-alert .btn-danger:focus { border-color: #d43f3a; outline: 0; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(212, 63, 58, 0.6); box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(212, 63, 58, 0.6); } .sweet-alert .btn-warning:focus { border-color: #eea236; outline: 0; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(238, 162, 54, 0.6); box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(238, 162, 54, 0.6); } .sweet-alert button::-moz-focus-inner { border: 0; } .la-ball-fall, .la-ball-fall > div { position: relative; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .la-ball-fall { display: block; font-size: 0; color: #fff; } .la-ball-fall.la-dark { color: #333; } .la-ball-fall > div { display: inline-block; float: none; background-color: currentColor; border: 0 solid currentColor; } .la-ball-fall { width: 54px; height: 18px; } .la-ball-fall > div { width: 10px; height: 10px; margin: 4px; border-radius: 100%; opacity: 0; -webkit-animation: ball-fall 1s ease-in-out infinite; -moz-animation: ball-fall 1s ease-in-out infinite; -o-animation: ball-fall 1s ease-in-out infinite; animation: ball-fall 1s ease-in-out infinite; } .la-ball-fall > div:nth-child(1) { -webkit-animation-delay: -200ms; -moz-animation-delay: -200ms; -o-animation-delay: -200ms; animation-delay: -200ms; } .la-ball-fall > div:nth-child(2) { -webkit-animation-delay: -100ms; -moz-animation-delay: -100ms; -o-animation-delay: -100ms; animation-delay: -100ms; } .la-ball-fall > div:nth-child(3) { -webkit-animation-delay: 0ms; -moz-animation-delay: 0ms; -o-animation-delay: 0ms; animation-delay: 0ms; } .la-ball-fall.la-sm { width: 26px; height: 8px; } .la-ball-fall.la-sm > div { width: 4px; height: 4px; margin: 2px; } .la-ball-fall.la-2x { width: 108px; height: 36px; } .la-ball-fall.la-2x > div { width: 20px; height: 20px; margin: 8px; } .la-ball-fall.la-3x { width: 162px; height: 54px; } .la-ball-fall.la-3x > div { width: 30px; height: 30px; margin: 12px; } @-webkit-keyframes ball-fall { 0% { opacity: 0; -webkit-transform: translateY(-145%); transform: translateY(-145%); } 10% { opacity: .5; } 20% { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); } 80% { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); } 90% { opacity: .5; } 100% { opacity: 0; -webkit-transform: translateY(145%); transform: translateY(145%); } } @-moz-keyframes ball-fall { 0% { opacity: 0; -moz-transform: translateY(-145%); transform: translateY(-145%); } 10% { opacity: .5; } 20% { opacity: 1; -moz-transform: translateY(0); transform: translateY(0); } 80% { opacity: 1; -moz-transform: translateY(0); transform: translateY(0); } 90% { opacity: .5; } 100% { opacity: 0; -moz-transform: translateY(145%); transform: translateY(145%); } } @-o-keyframes ball-fall { 0% { opacity: 0; -o-transform: translateY(-145%); transform: translateY(-145%); } 10% { opacity: .5; } 20% { opacity: 1; -o-transform: translateY(0); transform: translateY(0); } 80% { opacity: 1; -o-transform: translateY(0); transform: translateY(0); } 90% { opacity: .5; } 100% { opacity: 0; -o-transform: translateY(145%); transform: translateY(145%); } } @keyframes ball-fall { 0% { opacity: 0; -webkit-transform: translateY(-145%); -moz-transform: translateY(-145%); -o-transform: translateY(-145%); transform: translateY(-145%); } 10% { opacity: .5; } 20% { opacity: 1; -webkit-transform: translateY(0); -moz-transform: translateY(0); -o-transform: translateY(0); transform: translateY(0); } 80% { opacity: 1; -webkit-transform: translateY(0); -moz-transform: translateY(0); -o-transform: translateY(0); transform: translateY(0); } 90% { opacity: .5; } 100% { opacity: 0; -webkit-transform: translateY(145%); -moz-transform: translateY(145%); -o-transform: translateY(145%); transform: translateY(145%); } }
£53.52

Ktm Hand Protection (fits Most Models)

Part No: 78002079100EB
Brand:
Stock:
Description
Ktm Hand Protection (fits Most Models)

The KTM Handguard Kit 78002079100EB is designed with a two-component plastic construction, providing maximum strength and flexibility under the toughest conditions. Improved optics give the kit an enhanced look, while its closed design offers the highest level of protection. The kit features black middle sections for added strength.

  • Closed design
  • 2-component plastic handguard
  • Black middle section = maximum strength for optimum protection
  • Coloured top and bottom parts = highly flexible under the roughest conditions
  • Improved optics

This hand guard kit is compatible with the following KTM motorcycle models:

  • 1090 Adventure 2017-2018
  • 1090 Adventure L 2019
  • 1090 Adventure R 2017-2019
  • 1090 Adventure S 2019
  • 125 EXC 2005-2016
  • 125 EXC Champion Edition 2010
  • 125 EXC Factory Edition 2011-2015
  • 125 EXC Six Days 2005-2016
  • 125 SX 2005-2024
  • 125 SX Tyla Rattery 2005
  • 125 SXS 2005-2008
  • 125 XC 2021-2024
  • 125 XC-W 2017-2019
  • 1290 Super Adventure 2015-2016
  • 1290 Super Adventure R 2017-2024
  • 1290 Super Adventure S 2017-2024
  • 1290 Super Adventure T 2017
  • 144 SX 2007-2008
  • 150 EXC 2023-2024
  • 150 EXC TPI 2020-2022
  • 150 SX 2009-2022
  • 150 XC 2010-2014
  • 150 XC-W 2017-2023
  • 150 XC-W TPI 2020-2022
  • 200 EXC 2005-2016
  • 200 XC 2006-2009
  • 200 XC-W 2006-2016
  • 250 EXC 2005-2024
  • 250 EXC E-Starter 2010
  • 250 EXC Factory 2005
  • 250 EXC Factory Edition 2011-2015
  • 250 EXC Racing 2005-2006
  • 250 EXC Six Days 2005-2024
  • 250 EXC Six Days TPI 2019-2022
  • 250 EXC TPI 2018-2022
  • 250 EXC TPI SIX DAYS 2018-2021
  • 250 EXC-F 2006-2024
  • 250 EXC-F Champion Edition 2010
  • 250 EXC-F Factory Edition 2011-2015
  • 250 EXC-F Six Days 2007-2024
  • 250 SX 2005-2024
  • 250 SX-F 2005-2024
  • 250 SX-F Factory Edition 2015-2024
  • 250 SX-F Factory Replica Musquin Edition 2010
  • 250 SX-F Musquin Replica 2011
  • 250 SX-F Prado 2020
  • 250 SX-F Roczen Replica 2012
  • 250 SX-F Troy Lee Designs 2021
  • 250 SXS 2005-2007
  • 250 SXS-F 2007-2008
  • 250 XC 2006-2024
  • 250 XC TPI 2020-2022
  • 250 XC-F 2007-2024
  • 250 XCF-W 2006-2016
  • 250 XCF-W Champion Edition 2010
  • 250 XCF-W Six Days 2011
  • 250 XC-W 2006-2023
  • 250 XC-W TPI 2018-2022
  • 300 EXC 2005-2024
  • 300 EXC Erzbergrodeo 2023
  • 300 EXC Factory Edition 2011-2015
  • 300 EXC Hardenduro 2024
  • 300 EXC Six Days 2005-2024
  • 300 EXC Six Days TPI 2019-2022
  • 300 EXC TPI 2018-2022
  • 300 EXC TPI Erzberg Edition 2020
  • 300 EXC TPI Erzbergrodeo 2021-2022
  • 300 EXC TPI SIX DAYS 2018-2021
  • 300 EXC-E 2007-2008
  • 300 EXC-E Six Days 2008-2011
  • 300 MXC 2005
  • 300 SX 2023-2024
  • 300 XC 2006-2024
  • 300 XC TPI 2020-2022
  • 300 XC-W 2006-2023
  • 300 XC-W Erzbergrodeo 2023
  • 300 XC-W Six Days 2014-2018
  • 300 XC-W Six Days TPI 2020
  • 300 XC-W TPI 2019-2022
  • 300 XC-W TPI Erzbergrodeo 2022
  • 300 XC-W TPI Six Days 2019
  • 350 EXC-F 2012-2024
  • 350 EXC-F Factory Edition 2015-2022
  • 350 EXC-F Six Days 2012-2024
  • 350 EXC-F Wess 2021
  • 350 SX-F 2011-2024
  • 350 SX-F Cairoli Replica 2011-2012
  • 350 XC-F 2011-2024
  • 350 XC-F Factory Edition 2022-2024
  • 350 XC-F Kailub Russel 2021
  • 350 XCF-W 2012-2022
  • 350 XCF-W Six Days 2014-2016
  • 400 EXC 2009-2011
  • 400 EXC Factory 2005
  • 400 EXC Factory Edition 2011
  • 400 EXC Factory Racing 2007
  • 400 EXC Racing 2005-2007
  • 400 EXC-G Racing 2006
  • 400 XC-W 2007-2010
  • 450 EXC 2007-2016
  • 450 EXC Champions Edition 2010
  • 450 EXC Factory 2005
  • 450 EXC Factory Edition 2011
  • 450 EXC Factory Racing 2007
  • 450 EXC F-Factory Edition 2015
  • 450 EXC Racing 2005-2007
  • 450 EXC Racing Six-Days 2005-2007
  • 450 EXC Six Days 2009-2016
  • 450 EXC-F 2017-2024
  • 450 EXC-F Six Days 2017-2024
  • 450 EXC-G Racing 2005-2006
  • 450 EXC-R 2008
  • 450 EXC-R Six-Days 2008
  • 450 MXC-G Racing 2005
  • 450 Rallye Factory Replica 2005
  • 450 SMR 2005-2024
  • 450 SX 2006
  • 450 SX Racing 2005
  • 450 SX Steve Ramon 2005
  • 450 SX-F 2007-2024
  • 450 SX-F Cairoli 2020
  • 450 SX-F Factory Edition 2013-2024
  • 450 SX-F Factory Replica 2012
  • 450 SX-F Factory Replica Nagl 2010
  • 450 SX-F Factory-Edition 2016
  • 450 SX-F HERLINGS REPLICA 2019
  • 450 SX-F Preseries 2006
  • 450 SXS 2006
  • 450 SXS Racing 2005
  • 450 SXS-F 2007-2008
  • 450 XC 2007
  • 450 XC-F 2008-2024
  • 450 XCF-W 2023
  • 450 XC-G Racing 2006
  • 450 XCr-W 2008
  • 450 XC-W 2007-2016
  • 450 XC-W Champion Edition 2010
  • 450 XC-W Six Days 2010-2011
  • 500 EXC 2012-2016
  • 500 EXC Six Days 2012-2016
  • 500 EXC-F 2017-2024
  • 500 EXC-F Six Days 2017-2024
  • 500 XCF-W 2020-2022
  • 500 XC-W 2012-2016
  • 505 SX-F 2008
  • 505 SX-F Preseries 2007
  • 505 XC-F 2008-2009
  • 525 EXC 2007
  • 525 EXC Factory 2005
  • 525 EXC Factory Racing 2007
  • 525 EXC Racing 2005-2007
  • 525 EXC Racing Six Days 2005-2007
  • 525 EXC-G Racing 2005-2006
  • 525 MXC Desert Racing 2005
  • 525 MXC-G Racing 2005
  • 525 SMR 2005
  • 525 SX 2006
  • 525 SX Racing 2005
  • 525 XC 2007
  • 525 XC Desert Racing 2006-2007
  • 525 XC G Racing 2006
  • 525 XC W 2007
  • 530 EXC 2009-2011
  • 530 EXC Champion Edition 2010
  • 530 EXC Factory Edition 2011
  • 530 EXC Six Days 2009-2011
  • 530 EXC-R 2008
  • 530 EXC-R Six-Days 2008
  • 530 XC W 2009-2010
  • 530 XC W Six Days 2010-2011
  • 530 XCr W 2008
  • 540 SXS 2006
  • 540 SXS Racing 2005
  • 560 SMR 2006-2007
  • 625 SMC 2005-2006
  • 625 SXC 2005-2007
  • 640 Adventure 2005-2007
  • 640 LC4 Adventure 2006
  • 640 LC4 Enduro Orange 2005-2006
  • 640 LC4 Supermoto 2005-2006
  • 660 Rally Factory Replica 2007
  • 660 Rallye Factory Replica 2005-2006
  • 660 SMC 2005-2006
  • 690 Duke 2008-2011
  • 690 Duke R 2010-2011
  • 690 Enduro 2008-2010
  • 690 Enduro R 2009-2024
  • 690 Rally Factory Replica 2007
  • 690 SMC 2008-2011
  • 690 SMC R 2020-2024
  • 690 Supermoto 2007-2009
  • 690 Supermoto R 2008
  • 790 Adventure 2019-2024
  • 790 Adventure R 2019-2022
  • 790 Adventure R Rally 2020
  • 890 Adventure 2021-2024
  • 890 Adventure L 2021-2022
  • 890 Adventure R 2021-2024
  • 890 Adventure R Rally 2021-2024
  • 890 SMT 2023-2024
  • 950 Adventure 2005-2006
  • 950 Adventure S 2005-2006
  • 950 Super Enduro 2006
  • 950 Super Enduro Erzberg 2008
  • 950 Super Enduro R 2006-2009
  • 950 Supermoto 2005-2007
  • 950 Supermoto R 2007-2008
  • 990 Adventure 2006-2012
  • 990 Adventure R 2009-2012
  • 990 Adventure S 2006-2008
  • 990 Supermoto 2008
  • FREERIDE 250 F 2018-2020
  • Freeride 250 R 2014-2017
  • Freeride 350 2012-2017
  • Freeride E-SM 2015-2017
  • Freeride E-SX 2014-2017
  • Freeride E-XC 2015-2023
  • FREERIDE E-XC NG 2018