.price-slider svg, .price-slider input[type=range] { position: absolute; left: 0; bottom: 0; } input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button { -webkit-appearance: none; } input[type=range] { -webkit-appearance: none; width: 100%; } input[type=range]::-webkit-slider-runnable-track { width: 100%; height: 5px; cursor: pointer; animate: 0.2s; background: #1da1f2; border-radius: 1px; box-shadow: none; border: 0; } input[type=range]::-webkit-slider-thumb { z-index: 2; position: relative; box-shadow: 0px 0px 0px #000; border: 1px solid #1da1f2; height: 18px; width: 18px; border-radius: 25px; background: #a1d0ff; cursor: pointer; -webkit-appearance: none; margin-top: -7px; } @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%); } }

Offroad

[{"text":"clothing (743)","title":"clothing","selectable":true,"href":"\/shop\/clothing","class":"","checked":"","nodes":[{"text":"accessories (57)","title":"accessories","selectable":true,"href":"\/shop\/clothing\/accessories","class":"","checked":"","nodes":[{"text":"brake lever protection (1)","title":"brake lever protection","selectable":true,"href":"\/shop\/clothing\/accessories\/brake-lever-protection","class":"","checked":"","nodes":null,"count":"1"},{"text":"electric (1)","title":"electric","selectable":true,"href":"\/shop\/clothing\/accessories\/electric","class":"","checked":"","nodes":null,"count":"1"},{"text":"handlebar accessories (1)","title":"handlebar accessories","selectable":true,"href":"\/shop\/clothing\/accessories\/handlebar-accessories","class":"","checked":"","nodes":null,"count":"1"},{"text":"headwear - unisex (4)","title":"headwear - unisex","selectable":true,"href":"\/shop\/clothing\/accessories\/headwear-unisex","class":"","checked":"","nodes":null,"count":"4"},{"text":"luggage - unisex (16)","title":"luggage - unisex","selectable":true,"href":"\/shop\/clothing\/accessories\/luggage-unisex","class":"","checked":"","nodes":null,"count":"16"},{"text":"luggage accessories (11)","title":"luggage accessories","selectable":true,"href":"\/shop\/clothing\/accessories\/luggage-accessories","class":"","checked":"","nodes":null,"count":"11"},{"text":"motorcycle covers (5)","title":"motorcycle covers","selectable":true,"href":"\/shop\/clothing\/accessories\/motorcycle-covers","class":"","checked":"","nodes":null,"count":"5"},{"text":"paddock stands (4)","title":"paddock stands","selectable":true,"href":"\/shop\/clothing\/accessories\/paddock-stands","class":"","checked":"","nodes":null,"count":"4"},{"text":"security products (12)","title":"security products","selectable":true,"href":"\/shop\/clothing\/accessories\/security-products","class":"","checked":"","nodes":null,"count":"12"},{"text":"tank protectors (1)","title":"tank protectors","selectable":true,"href":"\/shop\/clothing\/accessories\/tank-protectors","class":"","checked":"","nodes":null,"count":"1"},{"text":"training bike (1)","title":"training bike","selectable":true,"href":"\/shop\/clothing\/accessories\/training-bike","class":"","checked":"","nodes":null,"count":"1"}],"count":"57"},{"text":"backpacks (16)","title":"backpacks","selectable":true,"href":"\/shop\/clothing\/backpacks","class":"","checked":"","nodes":null,"count":"16"},{"text":"body armour (3)","title":"body armour","selectable":true,"href":"\/shop\/clothing\/body-armour","class":"","checked":"","nodes":null,"count":"3"},{"text":"casual wear (104)","title":"casual wear","selectable":true,"href":"\/shop\/clothing\/casual-wear","class":"","checked":"","nodes":[{"text":"baseball caps - mens (4)","title":"baseball caps - mens","selectable":true,"href":"\/shop\/clothing\/casual-wear\/baseball-caps-mens","class":"","checked":"","nodes":null,"count":"4"},{"text":"caps and beanies (11)","title":"caps and beanies","selectable":true,"href":"\/shop\/clothing\/casual-wear\/caps-and-beanies","class":"","checked":"","nodes":null,"count":"11"},{"text":"footwear (2)","title":"footwear","selectable":true,"href":"\/shop\/clothing\/casual-wear\/footwear","class":"","checked":"","nodes":null,"count":"2"},{"text":"hoodie (1)","title":"hoodie","selectable":true,"href":"\/shop\/clothing\/casual-wear\/hoodie","class":"","checked":"","nodes":null,"count":"1"},{"text":"hoodie - mens (16)","title":"hoodie - mens","selectable":true,"href":"\/shop\/clothing\/casual-wear\/hoodie-mens","class":"","checked":"","nodes":null,"count":"16"},{"text":"hoodie - womens (2)","title":"hoodie - womens","selectable":true,"href":"\/shop\/clothing\/casual-wear\/hoodie-womens","class":"","checked":"","nodes":null,"count":"2"},{"text":"jackets - mens (6)","title":"jackets - mens","selectable":true,"href":"\/shop\/clothing\/casual-wear\/jackets-mens","class":"","checked":"","nodes":null,"count":"6"},{"text":"jackets - womens (3)","title":"jackets - womens","selectable":true,"href":"\/shop\/clothing\/casual-wear\/jackets-womens","class":"","checked":"","nodes":null,"count":"3"},{"text":"kids clothing (4)","title":"kids clothing","selectable":true,"href":"\/shop\/clothing\/casual-wear\/kids-clothing","class":"","checked":"","nodes":null,"count":"4"},{"text":"kids jackets (1)","title":"kids jackets","selectable":true,"href":"\/shop\/clothing\/casual-wear\/kids-jackets","class":"","checked":"","nodes":null,"count":"1"},{"text":"shirts - mens (1)","title":"shirts - mens","selectable":true,"href":"\/shop\/clothing\/casual-wear\/shirts-mens","class":"","checked":"","nodes":null,"count":"1"},{"text":"short sleeve t shirt - mens (8)","title":"short sleeve t shirt - mens","selectable":true,"href":"\/shop\/clothing\/casual-wear\/short-sleeve-t-shirt-mens","class":"","checked":"","nodes":null,"count":"8"},{"text":"shorts (1)","title":"shorts","selectable":true,"href":"\/shop\/clothing\/casual-wear\/shorts","class":"","checked":"","nodes":null,"count":"1"},{"text":"sweatshirts - mens (3)","title":"sweatshirts - mens","selectable":true,"href":"\/shop\/clothing\/casual-wear\/sweatshirts-mens","class":"","checked":"","nodes":null,"count":"3"},{"text":"t-shirts - mens (34)","title":"t-shirts - mens","selectable":true,"href":"\/shop\/clothing\/casual-wear\/t-shirts-mens","class":"","checked":"","nodes":null,"count":"34"},{"text":"t-shirts - womens (6)","title":"t-shirts - womens","selectable":true,"href":"\/shop\/clothing\/casual-wear\/t-shirts-womens","class":"","checked":"","nodes":null,"count":"6"},{"text":"vests - mens (1)","title":"vests - mens","selectable":true,"href":"\/shop\/clothing\/casual-wear\/vests-mens","class":"","checked":"","nodes":null,"count":"1"}],"count":"104"},{"text":"cleaners & accessories (8)","title":"cleaners & accessories","selectable":true,"href":"\/shop\/clothing\/cleaners-and-accessories","class":"","checked":"","nodes":null,"count":"8"},{"text":"electric e-bikes (4)","title":"electric e-bikes","selectable":true,"href":"\/shop\/clothing\/electric-e-bikes","class":"","checked":"","nodes":[{"text":"ducati e-bikes (2)","title":"ducati e-bikes","selectable":true,"href":"\/shop\/clothing\/electric-e-bikes\/ducati-e-bikes","class":"","checked":"","nodes":null,"count":"2"},{"text":"jerseys (2)","title":"jerseys","selectable":true,"href":"\/shop\/clothing\/electric-e-bikes\/jerseys","class":"","checked":"","nodes":null,"count":"2"}],"count":"4"},{"text":"gifts and collectables (71)","title":"gifts and collectables","selectable":true,"href":"\/shop\/clothing\/gifts-and-collectables","class":"","checked":"","nodes":[{"text":"gifts - unisex (65)","title":"gifts - unisex","selectable":true,"href":"\/shop\/clothing\/gifts-and-collectables\/gifts-unisex","class":"","checked":"","nodes":null,"count":"65"},{"text":"neckwarmers (3)","title":"neckwarmers","selectable":true,"href":"\/shop\/clothing\/gifts-and-collectables\/neckwarmers","class":"","checked":"","nodes":null,"count":"3"},{"text":"sunglasses - unisex (3)","title":"sunglasses - unisex","selectable":true,"href":"\/shop\/clothing\/gifts-and-collectables\/sunglasses-unisex","class":"","checked":"","nodes":null,"count":"3"}],"count":"71"},{"text":"heated clothing (2)","title":"heated clothing","selectable":true,"href":"\/shop\/clothing\/heated-clothing","class":"","checked":"","nodes":null,"count":"2"},{"text":"heated grips (4)","title":"heated grips","selectable":true,"href":"\/shop\/clothing\/heated-grips","class":"","checked":"","nodes":null,"count":"4"},{"text":"helmets (117)","title":"helmets","selectable":true,"href":"\/shop\/clothing\/helmets","class":"","checked":"","nodes":[{"text":"accessories (1)","title":"accessories","selectable":true,"href":"\/shop\/clothing\/helmets\/accessories","class":"","checked":"","nodes":null,"count":"1"},{"text":"full-face - unisex (93)","title":"full-face - unisex","selectable":true,"href":"\/shop\/clothing\/helmets\/full-face-unisex","class":"","checked":"","nodes":null,"count":"93"},{"text":"intercoms (2)","title":"intercoms","selectable":true,"href":"\/shop\/clothing\/helmets\/intercoms","class":"","checked":"","nodes":null,"count":"2"},{"text":"modular - unisex (14)","title":"modular - unisex","selectable":true,"href":"\/shop\/clothing\/helmets\/modular-unisex","class":"","checked":"","nodes":null,"count":"14"},{"text":"open face - unisex (7)","title":"open face - unisex","selectable":true,"href":"\/shop\/clothing\/helmets\/open-face-unisex","class":"","checked":"","nodes":null,"count":"7"}],"count":"117"},{"text":"indian motorcycle clothing (13)","title":"indian motorcycle clothing","selectable":true,"href":"\/shop\/clothing\/indian-motorcycle-clothing","class":"","checked":"","nodes":[{"text":"caps and hats (1)","title":"caps and hats","selectable":true,"href":"\/shop\/clothing\/indian-motorcycle-clothing\/caps-and-hats","class":"","checked":"","nodes":null,"count":"1"},{"text":"casual - mens (3)","title":"casual - mens","selectable":true,"href":"\/shop\/clothing\/indian-motorcycle-clothing\/casual-mens","class":"","checked":"","nodes":null,"count":"3"},{"text":"footwear (1)","title":"footwear","selectable":true,"href":"\/shop\/clothing\/indian-motorcycle-clothing\/footwear","class":"","checked":"","nodes":null,"count":"1"},{"text":"gloves (3)","title":"gloves","selectable":true,"href":"\/shop\/clothing\/indian-motorcycle-clothing\/gloves","class":"","checked":"","nodes":null,"count":"3"},{"text":"leather jackets (3)","title":"leather jackets","selectable":true,"href":"\/shop\/clothing\/indian-motorcycle-clothing\/leather-jackets","class":"","checked":"","nodes":null,"count":"3"},{"text":"textile jackets (2)","title":"textile jackets","selectable":true,"href":"\/shop\/clothing\/indian-motorcycle-clothing\/textile-jackets","class":"","checked":"","nodes":null,"count":"2"}],"count":"13"},{"text":"kids clothing (1)","title":"kids clothing","selectable":true,"href":"\/shop\/clothing\/kids-clothing","class":"","checked":"","nodes":[{"text":"t-shirts (1)","title":"t-shirts","selectable":true,"href":"\/shop\/clothing\/kids-clothing\/t-shirts","class":"","checked":"","nodes":null,"count":"1"}],"count":"1"},{"text":"luggage (11)","title":"luggage","selectable":true,"href":"\/shop\/clothing\/luggage","class":"","checked":"","nodes":null,"count":"11"},{"text":"outlet (92)","title":"outlet","selectable":true,"href":"\/shop\/clothing\/outlet","class":"","checked":"","nodes":[{"text":"boots (3)","title":"boots","selectable":true,"href":"\/shop\/clothing\/outlet\/boots","class":"","checked":"","nodes":null,"count":"3"},{"text":"caps and beanies (2)","title":"caps and beanies","selectable":true,"href":"\/shop\/clothing\/outlet\/caps-and-beanies","class":"","checked":"","nodes":null,"count":"2"},{"text":"casual wear (28)","title":"casual wear","selectable":true,"href":"\/shop\/clothing\/outlet\/casual-wear","class":"","checked":"","nodes":null,"count":"28"},{"text":"gift ideas (3)","title":"gift ideas","selectable":true,"href":"\/shop\/clothing\/outlet\/gift-ideas","class":"","checked":"","nodes":null,"count":"3"},{"text":"gift voucher (1)","title":"gift voucher","selectable":true,"href":"\/shop\/clothing\/outlet\/gift-voucher","class":"","checked":"","nodes":null,"count":"1"},{"text":"gloves (6)","title":"gloves","selectable":true,"href":"\/shop\/clothing\/outlet\/gloves","class":"","checked":"","nodes":null,"count":"6"},{"text":"helmets (11)","title":"helmets","selectable":true,"href":"\/shop\/clothing\/outlet\/helmets","class":"","checked":"","nodes":null,"count":"11"},{"text":"jewellery (1)","title":"jewellery","selectable":true,"href":"\/shop\/clothing\/outlet\/jewellery","class":"","checked":"","nodes":null,"count":"1"},{"text":"kids (5)","title":"kids","selectable":true,"href":"\/shop\/clothing\/outlet\/kids","class":"","checked":"","nodes":null,"count":"5"},{"text":"leather jackets (3)","title":"leather jackets","selectable":true,"href":"\/shop\/clothing\/outlet\/leather-jackets","class":"","checked":"","nodes":null,"count":"3"},{"text":"leather trousers (2)","title":"leather trousers","selectable":true,"href":"\/shop\/clothing\/outlet\/leather-trousers","class":"","checked":"","nodes":null,"count":"2"},{"text":"riding jeans (1)","title":"riding jeans","selectable":true,"href":"\/shop\/clothing\/outlet\/riding-jeans","class":"","checked":"","nodes":null,"count":"1"},{"text":"textile jackets (17)","title":"textile jackets","selectable":true,"href":"\/shop\/clothing\/outlet\/textile-jackets","class":"","checked":"","nodes":null,"count":"17"},{"text":"textile trousers (8)","title":"textile trousers","selectable":true,"href":"\/shop\/clothing\/outlet\/textile-trousers","class":"","checked":"","nodes":null,"count":"8"}],"count":"92"},{"text":"protection (1)","title":"protection","selectable":true,"href":"\/shop\/clothing\/protection","class":"","checked":"","nodes":[{"text":"body armour - mens (1)","title":"body armour - mens","selectable":true,"href":"\/shop\/clothing\/protection\/body-armour-mens","class":"","checked":"","nodes":null,"count":"1"}],"count":"1"},{"text":"rain gear (2)","title":"rain gear","selectable":true,"href":"\/shop\/clothing\/rain-gear","class":"","checked":"","nodes":[{"text":"jackets - unisex (1)","title":"jackets - unisex","selectable":true,"href":"\/shop\/clothing\/rain-gear\/jackets-unisex","class":"","checked":"","nodes":null,"count":"1"},{"text":"trousers - unisex (1)","title":"trousers - unisex","selectable":true,"href":"\/shop\/clothing\/rain-gear\/trousers-unisex","class":"","checked":"","nodes":null,"count":"1"}],"count":"2"},{"text":"riding gear (195)","title":"riding gear","selectable":true,"href":"\/shop\/clothing\/riding-gear","class":"","checked":"","nodes":[{"text":"airbag (1)","title":"airbag","selectable":true,"href":"\/shop\/clothing\/riding-gear\/airbag","class":"","checked":"","nodes":null,"count":"1"},{"text":"base layers - mens (18)","title":"base layers - mens","selectable":true,"href":"\/shop\/clothing\/riding-gear\/base-layers-mens","class":"","checked":"","nodes":null,"count":"18"},{"text":"boots (36)","title":"boots","selectable":true,"href":"\/shop\/clothing\/riding-gear\/boots","class":"","checked":"","nodes":null,"count":"36"},{"text":"gloves - mens (26)","title":"gloves - mens","selectable":true,"href":"\/shop\/clothing\/riding-gear\/gloves-mens","class":"","checked":"","nodes":null,"count":"26"},{"text":"jeans - mens (5)","title":"jeans - mens","selectable":true,"href":"\/shop\/clothing\/riding-gear\/jeans-mens","class":"","checked":"","nodes":null,"count":"5"},{"text":"jeans - womens (4)","title":"jeans - womens","selectable":true,"href":"\/shop\/clothing\/riding-gear\/jeans-womens","class":"","checked":"","nodes":null,"count":"4"},{"text":"leather jackets - mens (15)","title":"leather jackets - mens","selectable":true,"href":"\/shop\/clothing\/riding-gear\/leather-jackets-mens","class":"","checked":"","nodes":null,"count":"15"},{"text":"leather jackets - womens (4)","title":"leather jackets - womens","selectable":true,"href":"\/shop\/clothing\/riding-gear\/leather-jackets-womens","class":"","checked":"","nodes":null,"count":"4"},{"text":"leather trousers - mens (7)","title":"leather trousers - mens","selectable":true,"href":"\/shop\/clothing\/riding-gear\/leather-trousers-mens","class":"","checked":"","nodes":null,"count":"7"},{"text":"leather trousers - womens (2)","title":"leather trousers - womens","selectable":true,"href":"\/shop\/clothing\/riding-gear\/leather-trousers-womens","class":"","checked":"","nodes":null,"count":"2"},{"text":"textile jackets - mens (41)","title":"textile jackets - mens","selectable":true,"href":"\/shop\/clothing\/riding-gear\/textile-jackets-mens","class":"","checked":"","nodes":null,"count":"41"},{"text":"textile jackets - womens (13)","title":"textile jackets - womens","selectable":true,"href":"\/shop\/clothing\/riding-gear\/textile-jackets-womens","class":"","checked":"","nodes":null,"count":"13"},{"text":"textile trousers (1)","title":"textile trousers","selectable":true,"href":"\/shop\/clothing\/riding-gear\/textile-trousers","class":"","checked":"","nodes":null,"count":"1"},{"text":"textile trousers - mens (14)","title":"textile trousers - mens","selectable":true,"href":"\/shop\/clothing\/riding-gear\/textile-trousers-mens","class":"","checked":"","nodes":null,"count":"14"},{"text":"textile trousers - womens (6)","title":"textile trousers - womens","selectable":true,"href":"\/shop\/clothing\/riding-gear\/textile-trousers-womens","class":"","checked":"","nodes":null,"count":"6"},{"text":"vests - mens (1)","title":"vests - mens","selectable":true,"href":"\/shop\/clothing\/riding-gear\/vests-mens","class":"","checked":"","nodes":null,"count":"1"}],"count":"195"},{"text":"security (7)","title":"security","selectable":true,"href":"\/shop\/clothing\/security","class":"","checked":"","nodes":[{"text":"bike covers (1)","title":"bike covers","selectable":true,"href":"\/shop\/clothing\/security\/bike-covers","class":"","checked":"","nodes":null,"count":"1"},{"text":"chains (1)","title":"chains","selectable":true,"href":"\/shop\/clothing\/security\/chains","class":"","checked":"","nodes":null,"count":"1"},{"text":"disclocks (1)","title":"disclocks","selectable":true,"href":"\/shop\/clothing\/security\/disclocks","class":"","checked":"","nodes":null,"count":"1"},{"text":"ground anchors (1)","title":"ground anchors","selectable":true,"href":"\/shop\/clothing\/security\/ground-anchors","class":"","checked":"","nodes":null,"count":"1"}],"count":"7"},{"text":"waterproofs (5)","title":"waterproofs","selectable":true,"href":"\/shop\/clothing\/waterproofs","class":"","checked":"","nodes":null,"count":"5"},{"text":"workshop accessories (5)","title":"workshop accessories","selectable":true,"href":"\/shop\/clothing\/workshop-accessories","class":"","checked":"","nodes":[{"text":"workshop accessories (5)","title":"workshop accessories","selectable":true,"href":"\/shop\/clothing\/workshop-accessories\/workshop-accessories","class":"","checked":"","nodes":null,"count":"5"}],"count":"5"}],"count":"743"},{"text":"Ducati E-Bikes (2)","title":"Ducati E-Bikes","selectable":true,"href":"\/shop\/ducati-e-bikes","class":"","checked":"","nodes":null,"count":"2"},{"text":"Parts and Accessories (155)","title":"Parts and Accessories","selectable":true,"href":"\/shop\/parts-and-accessories","class":"","checked":"","nodes":[{"text":"accessories (6)","title":"accessories","selectable":true,"href":"\/shop\/parts-and-accessories\/accessories","class":"","checked":"","nodes":[{"text":"auxiliary run, brake, and turn lighting (1)","title":"auxiliary run, brake, and turn lighting","selectable":true,"href":"\/shop\/parts-and-accessories\/accessories\/auxiliary-run-brake-and-turn-lighting","class":"","checked":"","nodes":null,"count":"1"},{"text":"battery chargers (1)","title":"battery chargers","selectable":true,"href":"\/shop\/parts-and-accessories\/accessories\/battery-chargers","class":"","checked":"","nodes":null,"count":"1"},{"text":"handlebar accessories (1)","title":"handlebar accessories","selectable":true,"href":"\/shop\/parts-and-accessories\/accessories\/handlebar-accessories","class":"","checked":"","nodes":null,"count":"1"},{"text":"luggage accessories (1)","title":"luggage accessories","selectable":true,"href":"\/shop\/parts-and-accessories\/accessories\/luggage-accessories","class":"","checked":"","nodes":null,"count":"1"},{"text":"seats (1)","title":"seats","selectable":true,"href":"\/shop\/parts-and-accessories\/accessories\/seats","class":"","checked":"","nodes":null,"count":"1"},{"text":"wheels (1)","title":"wheels","selectable":true,"href":"\/shop\/parts-and-accessories\/accessories\/wheels","class":"","checked":"","nodes":null,"count":"1"}],"count":"6"},{"text":"ducati (49)","title":"ducati","selectable":true,"href":"\/shop\/parts-and-accessories\/ducati","class":"","checked":"","nodes":[{"text":"anodised parts (8)","title":"anodised parts","selectable":true,"href":"\/shop\/parts-and-accessories\/ducati\/anodised-parts","class":"","checked":"","nodes":null,"count":"8"},{"text":"carbon parts (11)","title":"carbon parts","selectable":true,"href":"\/shop\/parts-and-accessories\/ducati\/carbon-parts","class":"","checked":"","nodes":null,"count":"11"},{"text":"controls and levers (4)","title":"controls and levers","selectable":true,"href":"\/shop\/parts-and-accessories\/ducati\/controls-and-levers","class":"","checked":"","nodes":null,"count":"4"},{"text":"crash protection (1)","title":"crash protection","selectable":true,"href":"\/shop\/parts-and-accessories\/ducati\/crash-protection","class":"","checked":"","nodes":null,"count":"1"},{"text":"engine parts (1)","title":"engine parts","selectable":true,"href":"\/shop\/parts-and-accessories\/ducati\/engine-parts","class":"","checked":"","nodes":null,"count":"1"},{"text":"exhausts (7)","title":"exhausts","selectable":true,"href":"\/shop\/parts-and-accessories\/ducati\/exhausts","class":"","checked":"","nodes":null,"count":"7"},{"text":"huggers and guards (1)","title":"huggers and guards","selectable":true,"href":"\/shop\/parts-and-accessories\/ducati\/huggers-and-guards","class":"","checked":"","nodes":null,"count":"1"},{"text":"lighting (1)","title":"lighting","selectable":true,"href":"\/shop\/parts-and-accessories\/ducati\/lighting","class":"","checked":"","nodes":null,"count":"1"},{"text":"luggage (6)","title":"luggage","selectable":true,"href":"\/shop\/parts-and-accessories\/ducati\/luggage","class":"","checked":"","nodes":null,"count":"6"},{"text":"plastics (2)","title":"plastics","selectable":true,"href":"\/shop\/parts-and-accessories\/ducati\/plastics","class":"","checked":"","nodes":null,"count":"2"},{"text":"radiator guards (2)","title":"radiator guards","selectable":true,"href":"\/shop\/parts-and-accessories\/ducati\/radiator-guards","class":"","checked":"","nodes":null,"count":"2"},{"text":"screens (1)","title":"screens","selectable":true,"href":"\/shop\/parts-and-accessories\/ducati\/screens","class":"","checked":"","nodes":null,"count":"1"},{"text":"seats (1)","title":"seats","selectable":true,"href":"\/shop\/parts-and-accessories\/ducati\/seats","class":"","checked":"","nodes":null,"count":"1"},{"text":"seats and covers (1)","title":"seats and covers","selectable":true,"href":"\/shop\/parts-and-accessories\/ducati\/seats-and-covers","class":"","checked":"","nodes":null,"count":"1"},{"text":"tail tidy (1)","title":"tail tidy","selectable":true,"href":"\/shop\/parts-and-accessories\/ducati\/tail-tidy","class":"","checked":"","nodes":null,"count":"1"}],"count":"49"},{"text":"heated grips (1)","title":"heated grips","selectable":true,"href":"\/shop\/parts-and-accessories\/heated-grips","class":"","checked":"","nodes":null,"count":"1"},{"text":"kawasaki (1)","title":"kawasaki","selectable":true,"href":"\/shop\/parts-and-accessories\/kawasaki","class":"","checked":"","nodes":[{"text":"crash protection (1)","title":"crash protection","selectable":true,"href":"\/shop\/parts-and-accessories\/kawasaki\/crash-protection","class":"","checked":"","nodes":null,"count":"1"}],"count":"1"},{"text":"ktm (39)","title":"ktm","selectable":true,"href":"\/shop\/parts-and-accessories\/ktm","class":"","checked":"","nodes":[{"text":"anodised parts (3)","title":"anodised parts","selectable":true,"href":"\/shop\/parts-and-accessories\/ktm\/anodised-parts","class":"","checked":"","nodes":null,"count":"3"},{"text":"carbon parts (2)","title":"carbon parts","selectable":true,"href":"\/shop\/parts-and-accessories\/ktm\/carbon-parts","class":"","checked":"","nodes":null,"count":"2"},{"text":"controls and levers (9)","title":"controls and levers","selectable":true,"href":"\/shop\/parts-and-accessories\/ktm\/controls-and-levers","class":"","checked":"","nodes":null,"count":"9"},{"text":"crash protection (3)","title":"crash protection","selectable":true,"href":"\/shop\/parts-and-accessories\/ktm\/crash-protection","class":"","checked":"","nodes":null,"count":"3"},{"text":"engine parts (1)","title":"engine parts","selectable":true,"href":"\/shop\/parts-and-accessories\/ktm\/engine-parts","class":"","checked":"","nodes":null,"count":"1"},{"text":"exhausts (3)","title":"exhausts","selectable":true,"href":"\/shop\/parts-and-accessories\/ktm\/exhausts","class":"","checked":"","nodes":null,"count":"3"},{"text":"huggers and guards (1)","title":"huggers and guards","selectable":true,"href":"\/shop\/parts-and-accessories\/ktm\/huggers-and-guards","class":"","checked":"","nodes":null,"count":"1"},{"text":"lighting (1)","title":"lighting","selectable":true,"href":"\/shop\/parts-and-accessories\/ktm\/lighting","class":"","checked":"","nodes":null,"count":"1"},{"text":"luggage (7)","title":"luggage","selectable":true,"href":"\/shop\/parts-and-accessories\/ktm\/luggage","class":"","checked":"","nodes":null,"count":"7"},{"text":"plastics (1)","title":"plastics","selectable":true,"href":"\/shop\/parts-and-accessories\/ktm\/plastics","class":"","checked":"","nodes":null,"count":"1"},{"text":"seats and covers (2)","title":"seats and covers","selectable":true,"href":"\/shop\/parts-and-accessories\/ktm\/seats-and-covers","class":"","checked":"","nodes":null,"count":"2"},{"text":"security (1)","title":"security","selectable":true,"href":"\/shop\/parts-and-accessories\/ktm\/security","class":"","checked":"","nodes":null,"count":"1"},{"text":"tail tidy (4)","title":"tail tidy","selectable":true,"href":"\/shop\/parts-and-accessories\/ktm\/tail-tidy","class":"","checked":"","nodes":null,"count":"4"}],"count":"39"},{"text":"outlet (33)","title":"outlet","selectable":true,"href":"\/shop\/parts-and-accessories\/outlet","class":"","checked":"","nodes":[{"text":"accessory packs (3)","title":"accessory packs","selectable":true,"href":"\/shop\/parts-and-accessories\/outlet\/accessory-packs","class":"","checked":"","nodes":null,"count":"3"},{"text":"controls and levers (4)","title":"controls and levers","selectable":true,"href":"\/shop\/parts-and-accessories\/outlet\/controls-and-levers","class":"","checked":"","nodes":null,"count":"4"},{"text":"crash protection (1)","title":"crash protection","selectable":true,"href":"\/shop\/parts-and-accessories\/outlet\/crash-protection","class":"","checked":"","nodes":null,"count":"1"},{"text":"exhausts (9)","title":"exhausts","selectable":true,"href":"\/shop\/parts-and-accessories\/outlet\/exhausts","class":"","checked":"","nodes":null,"count":"9"},{"text":"handlebars (2)","title":"handlebars","selectable":true,"href":"\/shop\/parts-and-accessories\/outlet\/handlebars","class":"","checked":"","nodes":null,"count":"2"},{"text":"panniers (1)","title":"panniers","selectable":true,"href":"\/shop\/parts-and-accessories\/outlet\/panniers","class":"","checked":"","nodes":null,"count":"1"},{"text":"screens (1)","title":"screens","selectable":true,"href":"\/shop\/parts-and-accessories\/outlet\/screens","class":"","checked":"","nodes":null,"count":"1"},{"text":"seats and covers (3)","title":"seats and covers","selectable":true,"href":"\/shop\/parts-and-accessories\/outlet\/seats-and-covers","class":"","checked":"","nodes":null,"count":"3"},{"text":"tail tidy (1)","title":"tail tidy","selectable":true,"href":"\/shop\/parts-and-accessories\/outlet\/tail-tidy","class":"","checked":"","nodes":null,"count":"1"},{"text":"top box (1)","title":"top box","selectable":true,"href":"\/shop\/parts-and-accessories\/outlet\/top-box","class":"","checked":"","nodes":null,"count":"1"},{"text":"top case (1)","title":"top case","selectable":true,"href":"\/shop\/parts-and-accessories\/outlet\/top-case","class":"","checked":"","nodes":null,"count":"1"},{"text":"tuning and style (6)","title":"tuning and style","selectable":true,"href":"\/shop\/parts-and-accessories\/outlet\/tuning-and-style","class":"","checked":"","nodes":null,"count":"6"}],"count":"33"},{"text":"parts (10)","title":"parts","selectable":true,"href":"\/shop\/parts-and-accessories\/parts","class":"","checked":"","nodes":[{"text":"belts and chains (1)","title":"belts and chains","selectable":true,"href":"\/shop\/parts-and-accessories\/parts\/belts-and-chains","class":"","checked":"","nodes":null,"count":"1"},{"text":"final drive kit (8)","title":"final drive kit","selectable":true,"href":"\/shop\/parts-and-accessories\/parts\/final-drive-kit","class":"","checked":"","nodes":null,"count":"8"},{"text":"tank and fender (1)","title":"tank and fender","selectable":true,"href":"\/shop\/parts-and-accessories\/parts\/tank-and-fender","class":"","checked":"","nodes":null,"count":"1"}],"count":"10"},{"text":"riding gear (1)","title":"riding gear","selectable":true,"href":"\/shop\/parts-and-accessories\/riding-gear","class":"","checked":"","nodes":[{"text":"leather trousers - mens (1)","title":"leather trousers - mens","selectable":true,"href":"\/shop\/parts-and-accessories\/riding-gear\/leather-trousers-mens","class":"","checked":"","nodes":null,"count":"1"}],"count":"1"},{"text":"suzuki (4)","title":"suzuki","selectable":true,"href":"\/shop\/parts-and-accessories\/suzuki","class":"","checked":"","nodes":[{"text":"crash protection (1)","title":"crash protection","selectable":true,"href":"\/shop\/parts-and-accessories\/suzuki\/crash-protection","class":"","checked":"","nodes":null,"count":"1"},{"text":"huggers and guards (2)","title":"huggers and guards","selectable":true,"href":"\/shop\/parts-and-accessories\/suzuki\/huggers-and-guards","class":"","checked":"","nodes":null,"count":"2"},{"text":"plastics (1)","title":"plastics","selectable":true,"href":"\/shop\/parts-and-accessories\/suzuki\/plastics","class":"","checked":"","nodes":null,"count":"1"}],"count":"4"},{"text":"technology (1)","title":"technology","selectable":true,"href":"\/shop\/parts-and-accessories\/technology","class":"","checked":"","nodes":null,"count":"1"},{"text":"universal (1)","title":"universal","selectable":true,"href":"\/shop\/parts-and-accessories\/universal","class":"","checked":"","nodes":[{"text":"controls and levers (1)","title":"controls and levers","selectable":true,"href":"\/shop\/parts-and-accessories\/universal\/controls-and-levers","class":"","checked":"","nodes":null,"count":"1"}],"count":"1"},{"text":"yamaha (2)","title":"yamaha","selectable":true,"href":"\/shop\/parts-and-accessories\/yamaha","class":"","checked":"","nodes":[{"text":"manuals (1)","title":"manuals","selectable":true,"href":"\/shop\/parts-and-accessories\/yamaha\/manuals","class":"","checked":"","nodes":null,"count":"1"},{"text":"tail tidy (1)","title":"tail tidy","selectable":true,"href":"\/shop\/parts-and-accessories\/yamaha\/tail-tidy","class":"","checked":"","nodes":null,"count":"1"}],"count":"2"}],"count":"155"},{"text":"powerparts (1200)","title":"powerparts","selectable":true,"href":"\/shop\/powerparts","class":"","checked":true,"nodes":[{"text":"Air filter (8)","title":"Air filter","selectable":true,"href":"\/shop\/powerparts\/air-filter","class":"","checked":"","nodes":null,"count":"8"},{"text":"Archive (12)","title":"Archive","selectable":true,"href":"\/shop\/powerparts\/archive","class":"","checked":"","nodes":null,"count":"12"},{"text":"Brakes (29)","title":"Brakes","selectable":true,"href":"\/shop\/powerparts\/brakes","class":"","checked":"","nodes":[{"text":"Brake cylinders (1)","title":"Brake cylinders","selectable":true,"href":"\/shop\/powerparts\/brakes\/brake-cylinders","class":"","checked":"","nodes":null,"count":"1"},{"text":"Brake discs (14)","title":"Brake discs","selectable":true,"href":"\/shop\/powerparts\/brakes\/brake-discs","class":"","checked":"","nodes":null,"count":"14"},{"text":"Special parts (14)","title":"Special parts","selectable":true,"href":"\/shop\/powerparts\/brakes\/special-parts","class":"","checked":"","nodes":null,"count":"14"}],"count":"29"},{"text":"Carbon (38)","title":"Carbon","selectable":true,"href":"\/shop\/powerparts\/carbon","class":"","checked":"","nodes":[{"text":"Street (38)","title":"Street","selectable":true,"href":"\/shop\/powerparts\/carbon\/street","class":"","checked":"","nodes":null,"count":"38"}],"count":"38"},{"text":"Chains\/rear sprockets (19)","title":"Chains\/rear sprockets","selectable":true,"href":"\/shop\/powerparts\/chainsrear-sprockets","class":"","checked":"","nodes":[{"text":"Chains (2)","title":"Chains","selectable":true,"href":"\/shop\/powerparts\/chainsrear-sprockets\/chains","class":"","checked":"","nodes":null,"count":"2"},{"text":"Rear sprockets (5)","title":"Rear sprockets","selectable":true,"href":"\/shop\/powerparts\/chainsrear-sprockets\/rear-sprockets","class":"","checked":"","nodes":null,"count":"5"},{"text":"Special parts (12)","title":"Special parts","selectable":true,"href":"\/shop\/powerparts\/chainsrear-sprockets\/special-parts","class":"","checked":"","nodes":null,"count":"12"}],"count":"19"},{"text":"Chassis\/triple clamp (35)","title":"Chassis\/triple clamp","selectable":true,"href":"\/shop\/powerparts\/chassistriple-clamp","class":"","checked":"","nodes":null,"count":"35"},{"text":"CNC-parts, anodized (42)","title":"CNC-parts, anodized","selectable":true,"href":"\/shop\/powerparts\/cnc-parts-anodized","class":"","checked":"","nodes":[{"text":"Chassis (27)","title":"Chassis","selectable":true,"href":"\/shop\/powerparts\/cnc-parts-anodized\/chassis","class":"","checked":"","nodes":null,"count":"27"},{"text":"Engine (15)","title":"Engine","selectable":true,"href":"\/shop\/powerparts\/cnc-parts-anodized\/engine","class":"","checked":"","nodes":null,"count":"15"}],"count":"42"},{"text":"Cooling (17)","title":"Cooling","selectable":true,"href":"\/shop\/powerparts\/cooling","class":"","checked":"","nodes":[{"text":"Hoses (4)","title":"Hoses","selectable":true,"href":"\/shop\/powerparts\/cooling\/hoses","class":"","checked":"","nodes":null,"count":"4"},{"text":"Protection (11)","title":"Protection","selectable":true,"href":"\/shop\/powerparts\/cooling\/protection","class":"","checked":"","nodes":null,"count":"11"},{"text":"Radiator fan (2)","title":"Radiator fan","selectable":true,"href":"\/shop\/powerparts\/cooling\/radiator-fan","class":"","checked":"","nodes":null,"count":"2"}],"count":"17"},{"text":"Engine (10)","title":"Engine","selectable":true,"href":"\/shop\/powerparts\/engine","class":"","checked":"","nodes":[{"text":"Engine parts, 2-stroke (4)","title":"Engine parts, 2-stroke","selectable":true,"href":"\/shop\/powerparts\/engine\/engine-parts-2-stroke","class":"","checked":"","nodes":null,"count":"4"},{"text":"Engine parts, 4-stroke (6)","title":"Engine parts, 4-stroke","selectable":true,"href":"\/shop\/powerparts\/engine\/engine-parts-4-stroke","class":"","checked":"","nodes":null,"count":"6"}],"count":"10"},{"text":"Exhaust systems (67)","title":"Exhaust systems","selectable":true,"href":"\/shop\/powerparts\/exhaust-systems","class":"","checked":"","nodes":[{"text":"2-stroke Offroad (13)","title":"2-stroke Offroad","selectable":true,"href":"\/shop\/powerparts\/exhaust-systems\/2-stroke-offroad","class":"","checked":"","nodes":null,"count":"13"},{"text":"4-stroke Offroad (4)","title":"4-stroke Offroad","selectable":true,"href":"\/shop\/powerparts\/exhaust-systems\/4-stroke-offroad","class":"","checked":"","nodes":null,"count":"4"},{"text":"Heat protection (10)","title":"Heat protection","selectable":true,"href":"\/shop\/powerparts\/exhaust-systems\/heat-protection","class":"","checked":"","nodes":null,"count":"10"},{"text":"Street (40)","title":"Street","selectable":true,"href":"\/shop\/powerparts\/exhaust-systems\/street","class":"","checked":"","nodes":null,"count":"40"}],"count":"67"},{"text":"Footpegs (14)","title":"Footpegs","selectable":true,"href":"\/shop\/powerparts\/footpegs","class":"","checked":"","nodes":null,"count":"14"},{"text":"Handlebars\/instruments\/electrics (129)","title":"Handlebars\/instruments\/electrics","selectable":true,"href":"\/shop\/powerparts\/handlebarsinstrumentselectrics","class":"","checked":"","nodes":[{"text":"Grips (22)","title":"Grips","selectable":true,"href":"\/shop\/powerparts\/handlebarsinstrumentselectrics\/grips","class":"","checked":"","nodes":null,"count":"22"},{"text":"Hand guards (32)","title":"Hand guards","selectable":true,"href":"\/shop\/powerparts\/handlebarsinstrumentselectrics\/hand-guards","class":"","checked":"","nodes":null,"count":"32"},{"text":"Handlebar supports (2)","title":"Handlebar supports","selectable":true,"href":"\/shop\/powerparts\/handlebarsinstrumentselectrics\/handlebar-supports","class":"","checked":"","nodes":null,"count":"2"},{"text":"Handlebars (8)","title":"Handlebars","selectable":true,"href":"\/shop\/powerparts\/handlebarsinstrumentselectrics\/handlebars","class":"","checked":"","nodes":null,"count":"8"},{"text":"Instruments\/electrics (27)","title":"Instruments\/electrics","selectable":true,"href":"\/shop\/powerparts\/handlebarsinstrumentselectrics\/instrumentselectrics","class":"","checked":"","nodes":null,"count":"27"},{"text":"Levers (20)","title":"Levers","selectable":true,"href":"\/shop\/powerparts\/handlebarsinstrumentselectrics\/levers","class":"","checked":"","nodes":null,"count":"20"},{"text":"Special parts (12)","title":"Special parts","selectable":true,"href":"\/shop\/powerparts\/handlebarsinstrumentselectrics\/special-parts","class":"","checked":"","nodes":null,"count":"12"},{"text":"Steering damper (6)","title":"Steering damper","selectable":true,"href":"\/shop\/powerparts\/handlebarsinstrumentselectrics\/steering-damper","class":"","checked":"","nodes":null,"count":"6"}],"count":"129"},{"text":"Luggage (100)","title":"Luggage","selectable":true,"href":"\/shop\/powerparts\/luggage","class":"","checked":"","nodes":null,"count":"100"},{"text":"Navigation (12)","title":"Navigation","selectable":true,"href":"\/shop\/powerparts\/navigation","class":"","checked":"","nodes":null,"count":"12"},{"text":"New (9)","title":"New","selectable":true,"href":"\/shop\/powerparts\/new","class":"","checked":"","nodes":null,"count":"9"},{"text":"PowerSale (4)","title":"PowerSale","selectable":true,"href":"\/shop\/powerparts\/powersale","class":"","checked":"","nodes":null,"count":"4"},{"text":"Protection (135)","title":"Protection","selectable":true,"href":"\/shop\/powerparts\/protection","class":"","checked":"","nodes":[{"text":"Chassis Offroad (30)","title":"Chassis Offroad","selectable":true,"href":"\/shop\/powerparts\/protection\/chassis-offroad","class":"","checked":"","nodes":null,"count":"30"},{"text":"Chassis Street (44)","title":"Chassis Street","selectable":true,"href":"\/shop\/powerparts\/protection\/chassis-street","class":"","checked":"","nodes":null,"count":"44"},{"text":"Engine guard, 2-stroke Offroad (20)","title":"Engine guard, 2-stroke Offroad","selectable":true,"href":"\/shop\/powerparts\/protection\/engine-guard-2-stroke-offroad","class":"","checked":"","nodes":null,"count":"20"},{"text":"Engine guard, 4-stroke Offroad (25)","title":"Engine guard, 4-stroke Offroad","selectable":true,"href":"\/shop\/powerparts\/protection\/engine-guard-4-stroke-offroad","class":"","checked":"","nodes":null,"count":"25"},{"text":"Engine guard, Street (16)","title":"Engine guard, Street","selectable":true,"href":"\/shop\/powerparts\/protection\/engine-guard-street","class":"","checked":"","nodes":null,"count":"16"}],"count":"135"},{"text":"Seats (90)","title":"Seats","selectable":true,"href":"\/shop\/powerparts\/seats","class":"","checked":"","nodes":[{"text":"Offroad (33)","title":"Offroad","selectable":true,"href":"\/shop\/powerparts\/seats\/offroad","class":"","checked":"","nodes":null,"count":"33"},{"text":"Street (57)","title":"Street","selectable":true,"href":"\/shop\/powerparts\/seats\/street","class":"","checked":"","nodes":null,"count":"57"}],"count":"90"},{"text":"Software enhancements (39)","title":"Software enhancements","selectable":true,"href":"\/shop\/powerparts\/software-enhancements","class":"","checked":"","nodes":null,"count":"39"},{"text":"Spare parts (4)","title":"Spare parts","selectable":true,"href":"\/shop\/powerparts\/spare-parts","class":"","checked":"","nodes":null,"count":"4"},{"text":"Tanks (17)","title":"Tanks","selectable":true,"href":"\/shop\/powerparts\/tanks","class":"","checked":"","nodes":null,"count":"17"},{"text":"Tool\/transport (56)","title":"Tool\/transport","selectable":true,"href":"\/shop\/powerparts\/tooltransport","class":"","checked":"","nodes":[{"text":"Stands (10)","title":"Stands","selectable":true,"href":"\/shop\/powerparts\/tooltransport\/stands","class":"","checked":"","nodes":null,"count":"10"},{"text":"Tool (31)","title":"Tool","selectable":true,"href":"\/shop\/powerparts\/tooltransport\/tool","class":"","checked":"","nodes":null,"count":"31"},{"text":"Transport (15)","title":"Transport","selectable":true,"href":"\/shop\/powerparts\/tooltransport\/transport","class":"","checked":"","nodes":null,"count":"15"}],"count":"56"},{"text":"Trim parts\/decals (271)","title":"Trim parts\/decals","selectable":true,"href":"\/shop\/powerparts\/trim-partsdecals","class":"","checked":"","nodes":[{"text":"Decals (86)","title":"Decals","selectable":true,"href":"\/shop\/powerparts\/trim-partsdecals\/decals","class":"","checked":"","nodes":null,"count":"86"},{"text":"Trim parts (185)","title":"Trim parts","selectable":true,"href":"\/shop\/powerparts\/trim-partsdecals\/trim-parts","class":"","checked":"","nodes":null,"count":"185"}],"count":"271"},{"text":"Wheels (24)","title":"Wheels","selectable":true,"href":"\/shop\/powerparts\/wheels","class":"","checked":true,"nodes":[{"text":"Offroad (3)","title":"Offroad","selectable":true,"href":"\/shop\/powerparts\/wheels\/offroad","class":"active","checked":true,"nodes":null,"count":"3"},{"text":"Special parts (16)","title":"Special parts","selectable":true,"href":"\/shop\/powerparts\/wheels\/special-parts","class":"","checked":"","nodes":null,"count":"16"},{"text":"Street (5)","title":"Street","selectable":true,"href":"\/shop\/powerparts\/wheels\/street","class":"","checked":"","nodes":null,"count":"5"}],"count":"24"},{"text":"Windshields (19)","title":"Windshields","selectable":true,"href":"\/shop\/powerparts\/windshields","class":"","checked":"","nodes":null,"count":"19"}],"count":"1200"},{"text":"powerwear (326)","title":"powerwear","selectable":true,"href":"\/shop\/powerwear","class":"","checked":"","nodes":[{"text":"Casual (107)","title":"Casual","selectable":true,"href":"\/shop\/powerwear\/casual","class":"","checked":"","nodes":[{"text":"General (74)","title":"General","selectable":true,"href":"\/shop\/powerwear\/casual\/general","class":"","checked":"","nodes":null,"count":"74"},{"text":"Kini RB (17)","title":"Kini RB","selectable":true,"href":"\/shop\/powerwear\/casual\/kini-rb","class":"","checked":"","nodes":null,"count":"17"},{"text":"Team (16)","title":"Team","selectable":true,"href":"\/shop\/powerwear\/casual\/team","class":"","checked":"","nodes":null,"count":"16"}],"count":"107"},{"text":"Functional (132)","title":"Functional","selectable":true,"href":"\/shop\/powerwear\/functional","class":"","checked":"","nodes":[{"text":"General (1)","title":"General","selectable":true,"href":"\/shop\/powerwear\/functional\/general","class":"","checked":"","nodes":null,"count":"1"},{"text":"Kini RB (3)","title":"Kini RB","selectable":true,"href":"\/shop\/powerwear\/functional\/kini-rb","class":"","checked":"","nodes":null,"count":"3"},{"text":"Offroad (78)","title":"Offroad","selectable":true,"href":"\/shop\/powerwear\/functional\/offroad","class":"","checked":"","nodes":null,"count":"78"},{"text":"Sportcar (1)","title":"Sportcar","selectable":true,"href":"\/shop\/powerwear\/functional\/sportcar","class":"","checked":"","nodes":null,"count":"1"},{"text":"Street (49)","title":"Street","selectable":true,"href":"\/shop\/powerwear\/functional\/street","class":"","checked":"","nodes":null,"count":"49"}],"count":"132"},{"text":"Merchandise\/Acc. (87)","title":"Merchandise\/Acc.","selectable":true,"href":"\/shop\/powerwear\/merchandiseacc-","class":"","checked":"","nodes":[{"text":"General (76)","title":"General","selectable":true,"href":"\/shop\/powerwear\/merchandiseacc-\/general","class":"","checked":"","nodes":null,"count":"76"},{"text":"Team (11)","title":"Team","selectable":true,"href":"\/shop\/powerwear\/merchandiseacc-\/team","class":"","checked":"","nodes":null,"count":"11"}],"count":"87"}],"count":"326"},{"text":"spareparts-kits (253)","title":"spareparts-kits","selectable":true,"href":"\/shop\/spareparts-kits","class":"","checked":"","nodes":[{"text":"Original Spare Part Kits (253)","title":"Original Spare Part Kits","selectable":true,"href":"\/shop\/spareparts-kits\/original-spare-part-kits","class":"","checked":"","nodes":[{"text":"Carburetor jet kit (1)","title":"Carburetor jet kit","selectable":true,"href":"\/shop\/spareparts-kits\/original-spare-part-kits\/carburetor-jet-kit","class":"","checked":"","nodes":null,"count":"1"},{"text":"Clutch \/ brake lever (2)","title":"Clutch \/ brake lever","selectable":true,"href":"\/shop\/spareparts-kits\/original-spare-part-kits\/clutch-brake-lever","class":"","checked":"","nodes":null,"count":"2"},{"text":"Clutch kit (30)","title":"Clutch kit","selectable":true,"href":"\/shop\/spareparts-kits\/original-spare-part-kits\/clutch-kit","class":"","checked":"","nodes":null,"count":"30"},{"text":"Consumables (2)","title":"Consumables","selectable":true,"href":"\/shop\/spareparts-kits\/original-spare-part-kits\/consumables","class":"","checked":"","nodes":null,"count":"2"},{"text":"Cylinder seal set (25)","title":"Cylinder seal set","selectable":true,"href":"\/shop\/spareparts-kits\/original-spare-part-kits\/cylinder-seal-set","class":"","checked":"","nodes":null,"count":"25"},{"text":"Drivetrain kit (28)","title":"Drivetrain kit","selectable":true,"href":"\/shop\/spareparts-kits\/original-spare-part-kits\/drivetrain-kit","class":"","checked":"","nodes":null,"count":"28"},{"text":"Engine sale (6)","title":"Engine sale","selectable":true,"href":"\/shop\/spareparts-kits\/original-spare-part-kits\/engine-sale","class":"","checked":"","nodes":null,"count":"6"},{"text":"Exhaust parts kit (3)","title":"Exhaust parts kit","selectable":true,"href":"\/shop\/spareparts-kits\/original-spare-part-kits\/exhaust-parts-kit","class":"","checked":"","nodes":null,"count":"3"},{"text":"Grip set (19)","title":"Grip set","selectable":true,"href":"\/shop\/spareparts-kits\/original-spare-part-kits\/grip-set","class":"","checked":"","nodes":null,"count":"19"},{"text":"Oil filter kit (17)","title":"Oil filter kit","selectable":true,"href":"\/shop\/spareparts-kits\/original-spare-part-kits\/oil-filter-kit","class":"","checked":"","nodes":null,"count":"17"},{"text":"Other (1)","title":"Other","selectable":true,"href":"\/shop\/spareparts-kits\/original-spare-part-kits\/other","class":"","checked":"","nodes":null,"count":"1"},{"text":"Piston kit (39)","title":"Piston kit","selectable":true,"href":"\/shop\/spareparts-kits\/original-spare-part-kits\/piston-kit","class":"","checked":"","nodes":null,"count":"39"},{"text":"Plastic parts set (4)","title":"Plastic parts set","selectable":true,"href":"\/shop\/spareparts-kits\/original-spare-part-kits\/plastic-parts-set","class":"","checked":"","nodes":null,"count":"4"},{"text":"Pre-oiled air filter (6)","title":"Pre-oiled air filter","selectable":true,"href":"\/shop\/spareparts-kits\/original-spare-part-kits\/pre-oiled-air-filter","class":"","checked":"","nodes":null,"count":"6"},{"text":"Valve kit (35)","title":"Valve kit","selectable":true,"href":"\/shop\/spareparts-kits\/original-spare-part-kits\/valve-kit","class":"","checked":"","nodes":null,"count":"35"},{"text":"Wheel repair kit (35)","title":"Wheel repair kit","selectable":true,"href":"\/shop\/spareparts-kits\/original-spare-part-kits\/wheel-repair-kit","class":"","checked":"","nodes":null,"count":"35"}],"count":"253"}],"count":"253"}]
Shop home
Shop by Department
Filter results
© Copyright 2023 Sheffield Motorcycle Centre Limited. All rights reserved

Sheffield Motorcycle Centre Ltd  is an Appointed Representative of Automotive Compliance Ltd, who is authorised and regulated by the Financial Conduct Authority (FCA No 497010). Automotive Compliance Ltd’s permissions as a Principal Firm allows Sheffield Motorcycle Centre Ltd  to act as a credit broker, not as a lender, for the introduction to a limited number of lenders and to act as an agent on behalf of the insurer for insurance distribution activities only.

We can introduce you to a selected panel of lenders, which includes manufacturer lenders linked directly to the franchises that we represent. An introduction to a lender does not amount to independent financial advice and we act as their agent for this introduction. Our approach is to introduce you first to the manufacturer lender linked directly to the particular franchise you are purchasing your vehicle from, who are usually able to offer the best available package for you, taking into account both interest rates and other contributions. If they are unable to make you an offer of finance, we then seek to introduce you to whichever of the other lenders on our panel is able to make the next best offer of finance for you. Our aim is to secure the best deal you are eligible for from our panel of lenders. Lenders may pay a fixed commission to us for introducing you to them, calculated by reference to the vehicle model or amount you borrow. Different lenders may pay different commissions for such introductions, and manufacturer lenders linked directly to the franchises that we represent may also provide preferential rates to us for the funding of our vehicle stock and also provide financial support for our training and marketing. But any such amounts they and other lenders pay us will not affect the amounts you pay under your finance agreement, all of which are set by the lender concerned. If you ask us what the amount of commission is, we will tell you in good time before the Finance agreement is executed. All finance applications are subject to status, terms and conditions apply, UK residents only, 18’s or over. Guarantees may be required.

FINANCIAL COMPLAINTS PROCEDURE:

Regulated Complaints Post: Automotive Compliance Ltd, The Factory, 44 Alfred Street, Gloucester, GL1 4DD Telephone: 01452671560 E-mail: complaints@automotive- compliance.co.uk

If we cannot resolve your complaint within 8 weeks, you may refer your dispute to the Financial Ombudsman Service. This service is free to use. Their consumer helpline is available on 0800 023 4567 or 0300 123 9123 or you can visit their website at www.financial-ombudsman.org.uk

Powered by DealerWEBS DealerWEBS™