forked from adobe/storefront-product-listing-page
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdev-template.html
8938 lines (5994 loc) · 576 KB
/
dev-template.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="sv">
<head >
<script>
var BASE_URL = 'https://mcstaging.teletec.se/';
var require = {
"baseUrl": "https://mcstaging.teletec.se/static/version1717408326/frontend/NWT/teletec-theme/sv_SE",
"skipDataMain": true
};
var cacheApiTest = false;
if ('caches' in window) {
// Test if CacheStorage can be used.
caches.has('improove-test').then(function () {
cacheApiTest = true;
}).catch(function () {
cacheApiTest = false;
});
}
window.lazySizesConfig = {
loadMode: 1,
loadHidden: false,
expand: 0
};
</script>
<meta charset="utf-8"/>
<meta name="title" content="| Teletec Connect"/>
<meta name="description" content="Vi har ett stort utbud av säkerhetsprodukter för både privat boende och företag."/>
<meta name="keywords" content="inbrottslarm, larmsändare- ip-larmsändare, hemlarm, villalarm, larm"/>
<meta name="robots" content="NOINDEX,NOFOLLOW"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no"/>
<meta name="format-detection" content="telephone=no"/>
<title>| Teletec Connect</title>
<link rel="stylesheet" type="text/css" media="print" href="http://local.teletec.se/static/version1717408326/frontend/Magento/luma/default/css/print.min.css" />
<link rel="stylesheet" type="text/css" media="screen and (min-width: 1px)" href="http://local.teletec.se/static/version1717760897/frontend/NWT/teletec-theme/sv_SE/css/bundle.css" />
<link rel="stylesheet" type="text/css" media="all" href="http://local.teletec.se/static/version1717408326/frontend/Magento/base/default/Amasty_LibSwiperJs/vendor/swiper/swiper.min.css" />
<link rel="stylesheet" type="text/css" media="all" href="http://local.teletec.se/static/version1717408326/base/Magento/base/default/Amasty_ShopbyBase/css/chosen/chosen.min.css" />
<script type="text/javascript" src="https://mcstaging.teletec.se/static/version1717408326/_cache/merged/13ee5a9b05fd8517651e5bad85755634.js"></script>
<link rel="preload" as="font" crossorigin="anonymous" href="https://mcstaging.teletec.se/static/version1717408326/frontend/NWT/teletec-theme/default/fonts/teletec-icons/teletec_icons.ttf" />
<link rel="preload" as="font" crossorigin="anonymous" href="https://mcstaging.teletec.se/static/version1717408326/frontend/NWT/base-theme/default/fonts/nwt-icons/nwt_icons.ttf" />
<link rel="preload" as="font" crossorigin="anonymous" href="https://mcstaging.teletec.se/static/version1717408326/frontend/NWT/teletec-theme/default/fonts/webfonts/CircularStd-Bold.woff2" />
<link rel="preload" as="font" crossorigin="anonymous" href="https://mcstaging.teletec.se/static/version1717408326/frontend/NWT/teletec-theme/default/fonts/webfonts/CircularStd-Medium.woff2" />
<link rel="preload" as="font" crossorigin="anonymous" href="https://mcstaging.teletec.se/static/version1717408326/frontend/NWT/teletec-theme/default/fonts/webfonts/CircularStd-Book.woff2" />
<link rel="canonical" href="https://mcstaging.teletec.se/inbrottslarm" />
<link rel="icon" type="image/x-icon" href="https://mcstaging.teletec.se/media/favicon/stores/1/Teletec_Favicon_Vit_RGB.png" />
<link rel="shortcut icon" type="image/x-icon" href="https://mcstaging.teletec.se/media/favicon/stores/1/Teletec_Favicon_Vit_RGB.png" />
<!--40aa028e4076ec0d3719b1b8e0706e00-->
<!-- Hotjar Tracking Code for http://www.teletec.se -->
<script>
(function(h,o,t,j,a,r){
h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
h._hjSettings={hjid:290650,hjsv:5};
a=o.getElementsByTagName('head')[0];
r=o.createElement('script');r.async=1;
r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
a.appendChild(r);
})(window,document,'//static.hotjar.com/c/hotjar-','.js?sv=');
</script> <script type="text/x-idle-init" data-priority="medium">
{
"*": {
"Magento_PageCache/js/form-key-provider": {}
}
}
</script>
<!-- GOOGLE TAG MANAGER -->
<script type="text/x-idle-init" data-priority="low">
{
"*": {
"Magento_GoogleTagManager/js/google-tag-manager": {
"isCookieRestrictionModeEnabled": 0,
"currentWebsite": 1,
"cookieName": "user_allowed_save_cookie",
"gtmAccountId": "GTM\u002DK3DSXH",
"storeCurrencyCode": "SEK",
"ordersData": [] }
}
}
</script>
<!-- END GOOGLE TAG MANAGER -->
<script>
require(['magentoStorefrontEvents'], function (magentoStorefrontEvents) {
if(!magentoStorefrontEvents) return;
window.magentoStorefrontEvents = magentoStorefrontEvents;
magentoStorefrontEvents.context.setStorefrontInstance(
{"storeUrl":"https:\/\/mcstaging.teletec.se\/","websiteId":1,"websiteCode":"se","storeId":1,"storeCode":"sweden_group","storeViewId":1,"storeViewCode":"se","websiteName":"Sweden Website","storeName":"Sweden Group","storeViewName":"Sweden Standard","baseCurrencyCode":"SEK","storeViewCurrencyCode":"SEK","catalogExtensionVersion":"103.2.6","environmentId":"8f1e67c0-408b-41fb-b19a-80e51bd29cb3","environment":"Testing","storefrontTemplate":"Luma"} );
magentoStorefrontEvents.context.setMagentoExtension({
magentoExtensionVersion: "7.4.0",
});
magentoStorefrontEvents.context.setDataServicesExtension({
version: "7.4.0",
});
magentoStorefrontEvents.context.setPage({
pageType: "Default"
});
magentoStorefrontEvents.context.setContext("pageExtended", {
action: "page-view"
});
});
</script>
<script type="text/x-magento-init">
{
"*": {
"dataServicesBase": {
"isCookieRestrictionModeEnabled": 0,
"isEnabled": 1 },
"magentoStorefrontEventCollector": {}
}
}
</script>
<script
type="text/javascript"
src="https://unpkg.com/@adobe/magento-storefront-events-sdk@qa/dist/index.js"
></script>
<script
type="text/javascript"
src="https://unpkg.com/@adobe/magento-storefront-event-collector@qa/dist/index.js"
></script>
</head>
<body data-container="body" data-idle-init='{"loaderAjax": {}, "loader": { "icon": "https://mcstaging.teletec.se/static/version1717408326/frontend/NWT/base-theme/default/images/loader-2.gif"}}' id="html-body" class="page-products page-with-filter categorypath-inbrottslarm category-inbrottslarm page-layout-2columns-left catalog-category-view page-layout-category-full-width">
<script type="text/x-idle-init" data-priority="low">
{
"*": {
"Magento_PageBuilder/js/widget-initializer": {
"config": {"[data-content-type=\"slider\"][data-appearance=\"default\"]":{"Magento_PageBuilder\/js\/content-type\/slider\/appearance\/default\/widget":false},"[data-content-type=\"map\"]":{"Magento_PageBuilder\/js\/content-type\/map\/appearance\/default\/widget":false},"[data-content-type=\"row\"]":{"Magento_PageBuilder\/js\/content-type\/row\/appearance\/default\/widget":false},"[data-content-type=\"tabs\"]":{"Magento_PageBuilder\/js\/content-type\/tabs\/appearance\/default\/widget":false},"[data-content-type=\"slide\"]":{"Magento_PageBuilder\/js\/content-type\/slide\/appearance\/default\/widget":{"buttonSelector":".pagebuilder-slide-button","showOverlay":"hover","dataRole":"slide"}},"[data-content-type=\"banner\"]":{"Magento_PageBuilder\/js\/content-type\/banner\/appearance\/default\/widget":{"buttonSelector":".pagebuilder-banner-button","showOverlay":"hover","dataRole":"banner"}},"[data-content-type=\"buttons\"]":{"Magento_PageBuilder\/js\/content-type\/buttons\/appearance\/inline\/widget":false},"[data-content-type=\"products\"][data-appearance=\"carousel\"]":{"Magento_PageBuilder\/js\/content-type\/products\/appearance\/carousel\/widget":false}},
"breakpoints": {"desktop":{"label":"Desktop","stage":true,"default":true,"class":"desktop-switcher","icon":"Magento_PageBuilder::css\/images\/switcher\/switcher-desktop.svg","conditions":{"min-width":"1024px"},"options":{"products":{"default":{"slidesToShow":"5"}}}},"tablet":{"conditions":{"max-width":"1024px","min-width":"768px"},"options":{"products":{"default":{"slidesToShow":"4"},"continuous":{"slidesToShow":"3"}}}},"mobile":{"label":"Mobile","stage":true,"class":"mobile-switcher","icon":"Magento_PageBuilder::css\/images\/switcher\/switcher-mobile.svg","media":"only screen and (max-width: 768px)","conditions":{"max-width":"768px","min-width":"640px"},"options":{"products":{"default":{"slidesToShow":"3"}}}},"mobile-small":{"conditions":{"max-width":"640px"},"options":{"products":{"default":{"slidesToShow":"2"},"continuous":{"slidesToShow":"1"}}}}} }
}
}
</script>
<script type="text/x-idle-init" data-priority="low">
{
"*": {
"mage/cookies": {
"expires": null,
"path": "\u002F",
"domain": ".mcstaging.teletec.se",
"secure": false,
"lifetime": "31536000"
}
}
}
</script>
<noscript>
<div class="message global noscript">
<div class="content">
<p>
<strong>JavaScript seems to be disabled in your browser.</strong>
<span>
For the best experience on our site, be sure to turn on Javascript in your browser. </span>
</p>
</div>
</div>
</noscript>
<!-- ko scope: 'company' -->
<div class="message company-warning _hidden" data-bind="css: { _hidden: !isCompanyBlocked() }">
<span><!-- ko i18n: 'Your company account is blocked and you cannot place orders. If you have questions, please contact your company administrator.' --><!-- /ko --></span>
</div>
<!-- /ko -->
<script type="text/x-idle-init" data-priority="low">
{
"*": {
"Magento_Ui/js/core/app": {
"components": {
"company": {
"component": "Magento_Company/js/view/company",
"logoutUrl": "https://mcstaging.teletec.se/customer/account/logout/"
}
}
}
}
}
</script>
<!-- Google Tag Manager -->
<script>
dataLayer = [{
'storeId': '1',
'storeCode': 'se',
'currency': 'SEK',
'locale': 'sv_SE',
'ga4Account': 'test-ga4-account'
}];
(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','test-tagmanager-account');
</script>
<script type="text/x-magento-init">
{
"*": {
"ecommTracker": {}
}
}
</script>
<!-- End Google Tag Manager -->
<script type="text/x-idle-init" data-priority="low">
{
"*": {
"Magento_GoogleTagManager/js/google-tag-manager-cart": {
"blockNames": ["category.products.list","product.info.upsell","catalog.product.related","checkout.cart.crosssell","search_result_list"],
"cookieAddToCart": "add_to_cart",
"cookieRemoveFromCart": "remove_from_cart"
}
}
}
</script>
<script>
require.config({
paths: {
googleMaps: 'https\u003A\u002F\u002Fmaps.googleapis.com\u002Fmaps\u002Fapi\u002Fjs\u003Fv\u003D3\u0026key\u003DAIzaSyDf58w2M86qOvSuMA\u002DyQ9OOFXiiWUpW4Dk'
},
config: {
'Magento_PageBuilder/js/utils/map': {
style: ''
},
'Magento_PageBuilder/js/content-type/map/preview': {
apiKey: 'AIzaSyDf58w2M86qOvSuMA\u002DyQ9OOFXiiWUpW4Dk',
apiKeyErrorMessage: 'You\u0020must\u0020provide\u0020a\u0020valid\u0020\u003Ca\u0020href\u003D\u0027https\u003A\u002F\u002Fmcstaging.teletec.se\u002Fadminhtml\u002Fsystem_config\u002Fedit\u002Fsection\u002Fcms\u002F\u0023cms_pagebuilder\u0027\u0020target\u003D\u0027_blank\u0027\u003EGoogle\u0020Maps\u0020API\u0020key\u003C\u002Fa\u003E\u0020to\u0020use\u0020a\u0020map.'
},
'Magento_PageBuilder/js/form/element/map': {
apiKey: 'AIzaSyDf58w2M86qOvSuMA\u002DyQ9OOFXiiWUpW4Dk',
apiKeyErrorMessage: 'You\u0020must\u0020provide\u0020a\u0020valid\u0020\u003Ca\u0020href\u003D\u0027https\u003A\u002F\u002Fmcstaging.teletec.se\u002Fadminhtml\u002Fsystem_config\u002Fedit\u002Fsection\u002Fcms\u002F\u0023cms_pagebuilder\u0027\u0020target\u003D\u0027_blank\u0027\u003EGoogle\u0020Maps\u0020API\u0020key\u003C\u002Fa\u003E\u0020to\u0020use\u0020a\u0020map.'
},
}
});
</script>
<script>
require.config({
shim: {
'Magento_PageBuilder/js/utils/map': {
deps: ['googleMaps']
}
}
});
</script>
<script>
require([
'Amasty_InvisibleCaptcha/js/model/am-recaptcha',
], function (amRecaptchaModel) {
amRecaptchaModel.setConfig({
"formsToProtect": "form\u005Baction\u002A\u003D\u0022https\u003A\u002F\u002Fwww.teletec.se\u002Famasty_customform\u002Fform\u002Fsubmit\u002F\u0022\u005D,form\u005Baction\u002A\u003D\u0022amasty_customform\u002Fform\u002Fsubmit\u002F\u0022\u005D,form\u005Baction\u002A\u003D\u0022amasty_customform\u002Fform\u002Fsubmit\u0022\u005D,form\u005Baction\u002A\u003D\u0022customer\u002Faccount\u002FloginPost\u0022\u005D,form\u005Baction\u002A\u003D\u0022newsletter\u002Fsubscriber\u002Fnew\u0022\u005D,form\u005Baction\u002A\u003D\u0022contact\u002Findex\u002Fpost\u0022\u005D,form\u005Baction\u002A\u003D\u0022review\u002Fproduct\u002Fpost\u0022\u005D,form\u005Baction\u002A\u003D\u0022amasty_customform\u002Fform\u002Fsubmit\u0022\u005D",
"isEnabledOnPayments": "",
"checkoutRecaptchaValidateUrl": "https://mcstaging.teletec.se/amcapthca/checkout/validate/",
"invisibleCaptchaCustomForm": "1",
"recaptchaConfig": {
"lang": "hl\u003Den",
"theme": "light",
"badge": "bottomright",
"sitekey": "6LfGtGgpAAAAALYerD1OhRsM9mm3EoGFMQcfm74V",
"size": "invisible",
"isInvisible": true },
"reCaptchaErrorMessage": "Prove you are not a robot"
})
});
</script>
<script>
// Fix to prevent 'no reCaptcha Token' error while slow site loading.
// Submit button should catch am-captcha.js initialization8 first
(function () {
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', onReadyStateListener);
} else {
onReadyState();
}
function onReadyStateListener() {
onReadyState();
}
function onReadyState (formsOnPage) {
if (typeof formsOnPage === 'undefined') {
let formsToProtect = "form\u005Baction\u002A\u003D\u0022https\u003A\u002F\u002Fwww.teletec.se\u002Famasty_customform\u002Fform\u002Fsubmit\u002F\u0022\u005D,form\u005Baction\u002A\u003D\u0022amasty_customform\u002Fform\u002Fsubmit\u002F\u0022\u005D,form\u005Baction\u002A\u003D\u0022amasty_customform\u002Fform\u002Fsubmit\u0022\u005D,form\u005Baction\u002A\u003D\u0022customer\u002Faccount\u002FloginPost\u0022\u005D,form\u005Baction\u002A\u003D\u0022newsletter\u002Fsubscriber\u002Fnew\u0022\u005D,form\u005Baction\u002A\u003D\u0022contact\u002Findex\u002Fpost\u0022\u005D,form\u005Baction\u002A\u003D\u0022review\u002Fproduct\u002Fpost\u0022\u005D,form\u005Baction\u002A\u003D\u0022amasty_customform\u002Fform\u002Fsubmit\u0022\u005D";
let forms = formsToProtect.split(',');
formsOnPage = [];
forms.forEach(form => {
let existingForm = form ? document.querySelectorAll(form) : [];
if (existingForm.length) {
formsOnPage.push(existingForm);
}
})
}
formsOnPage.forEach(form => {
let submit = form[0].querySelector('[type="submit"]');
if (submit) {
let isAlreadyDisabled = submit.getAttribute('disabled');
if (!isAlreadyDisabled) {
submit.setAttribute('disabled', true);
submit.setAttribute('am-captcha-protect', true);
}
}
})
}
window.addEventListener('amform-elements-rendered', function (event) {
onReadyState([event.detail.form]);
});
window.addEventListener('am-recaptcha-submit-event', function (event) {
onReadyState([event.detail.form]);
});
})();
</script>
<script type="text/javascript" excluded >
!function(t){function e(){}function s(t,e){for(var r=t.length;r--;)if(t[r].listener===e)return r;return-1}function r(t){return function(){return this[t].apply(this,arguments)}}var i=e.prototype,n=t.EventEmitter;i.getListeners=function(t){var e,r=this._getEvents();if(t instanceof RegExp){var i={};for(e in r)r.hasOwnProperty(e)&&t.test(e)&&(i[e]=r[e])}else i=r[t]||(r[t]=[]);return i},i.flattenListeners=function(t){for(var e=[],r=0;r<t.length;r+=1)e.push(t[r].listener);return e},i.getListenersAsObject=function(t){var e,r=this.getListeners(t);return r instanceof Array&&((e={})[t]=r),e||r},i.addListener=function(t,e){if(!function t(e){return"function"==typeof e||e instanceof RegExp||!(!e||"object"!=typeof e)&&t(e.listener)}(e))throw new TypeError("listener must be a function");var r,i=this.getListenersAsObject(t),n="object"==typeof e;for(r in i)i.hasOwnProperty(r)&&-1===s(i[r],e)&&i[r].push(n?e:{listener:e,once:!1});return this},i.on=r("addListener"),i.addOnceListener=function(t,e){return this.addListener(t,{listener:e,once:!0})},i.once=r("addOnceListener"),i.defineEvent=function(t){return this.getListeners(t),this},i.defineEvents=function(t){for(var e=0;e<t.length;e+=1)this.defineEvent(t[e]);return this},i.removeListener=function(t,e){var r,i,n=this.getListenersAsObject(t);for(r in n)!n.hasOwnProperty(r)||-1!==(i=s(n[r],e))&&n[r].splice(i,1);return this},i.off=r("removeListener"),i.addListeners=function(t,e){return this.manipulateListeners(!1,t,e)},i.removeListeners=function(t,e){return this.manipulateListeners(!0,t,e)},i.manipulateListeners=function(t,e,r){var i,n,s=t?this.removeListener:this.addListener;if(t=t?this.removeListeners:this.addListeners,"object"!=typeof e||e instanceof RegExp)for(i=r.length;i--;)s.call(this,e,r[i]);else for(i in e)e.hasOwnProperty(i)&&(n=e[i])&&("function"==typeof n?s:t).call(this,i,n);return this},i.removeEvent=function(t){var e,r=typeof t,i=this._getEvents();if("string"==r)delete i[t];else if(t instanceof RegExp)for(e in i)i.hasOwnProperty(e)&&t.test(e)&&delete i[e];else delete this._events;return this},i.removeAllListeners=r("removeEvent"),i.emitEvent=function(t,e){var r,i=this.getListenersAsObject(t);for(r in i)if(i.hasOwnProperty(r))for(var n=i[r].slice(0),s=0;s<n.length;s++){var o=n[s];!0===o.once&&this.removeListener(t,o.listener),o.listener.apply(this,e||[])===this._getOnceReturnValue()&&this.removeListener(t,o.listener)}return this},i.trigger=r("emitEvent"),i.emit=function(t){var e=Array.prototype.slice.call(arguments,1);return this.emitEvent(t,e)},i.setOnceReturnValue=function(t){return this._onceReturnValue=t,this},i._getOnceReturnValue=function(){return!this.hasOwnProperty("_onceReturnValue")||this._onceReturnValue},i._getEvents=function(){return this._events||(this._events={})},e.noConflict=function(){return t.EventEmitter=n,e},t&&(t.EventEmitter=e)}("undefined"!=typeof window?window:this||{}),window.eventEmitter=new EventEmitter,function(){NodeList&&NodeList.prototype&&!NodeList.prototype.hasOwnProperty("contains")&&(NodeList.prototype.contains=function(e){if(e&&e.constructor&&e.constructor.prototype instanceof Element){for(let t=0;t<this.length;++t)if(e===this[t])return!0;return!1}throw new Error("Incorrect input; must be of Element prototype chain")}),Element.prototype.hasOwnProperty("querySelectorAll")&&!Element.prototype.hasOwnProperty("reverseSelectorAll")&&(Element.prototype.reverseSelectorAll=function(t,e){var r=e||[],i=this.parentNode;if(i){e=i.parentNode;if(e){var n=e.querySelectorAll(t);if(n.length)for(let t=0;t<n.length;t++)if(n[t]==i){r.push(i);break}return this.parentNode.reverseSelectorAll(t,r)}return r&&r.length?r:null}return r&&r.length?r:null}),Element.prototype.hasOwnProperty("querySelector")&&!Element.prototype.hasOwnProperty("reverseSelector")&&(Element.prototype.reverseSelector=function(t){var e=this.parentNode;if(!e)return null;var r=e.parentNode;if(!r)return null;var i=r.querySelectorAll(t);if(!i.length)return e.reverseSelector(t);for(let t=0;t<i.length;t++)if(i[t]==e)return e})}.call(this),window.WEBSTORAGE_ENABLED=function(){if(!window.localStorage)return!1;try{return window.localStorage.setItem("test","test"),window.localStorage.removeItem("test"),!0}catch(t){return!1}}(),function(){function t(t,e){this.endpoint=t,this.xhr=new XMLHttpRequest,this.events=new EventEmitter,this.type=e?e.toUpperCase():"GET",this.executing=!1;var r=this;this.xhr.onload=function(){var t=JSON.parse(this.responseText);r.executing=!1,r.events.trigger("complete",[{from:r.endpoint,xhr:this,text:this.responseText,json:t}])},this.xhr.open(this.type,this.endpoint),this.xhr.setRequestHeader("Content-type","application/x-www-form-urlencoded")}this.Fajx=(t.prototype={exec:function(){this.events.trigger("starting",[{to:this.endpoint,with:this.payload}]),this.executing=!0,this.xhr.send()}},t)}.call(this),function(){function t(t,e){this.storeKey=t,this.storage=e?sessionStorage:localStorage,this.get&&(this.data=this.get())}function e(t,e){r.apply(this,arguments),this.data=this.get()}var r;function i(){this.messages={}}this.ClientCache=(t.prototype.get=function(){if(WEBSTORAGE_ENABLED){var t=this.storage.getItem(this.storeKey);return this.data=this.parse?this.parse(t):t,this.data}return!1},t.prototype.set=function(t){if(WEBSTORAGE_ENABLED&&t){this.data=t;t=this.stringify?this.stringify(t):t;return this.storage.setItem(this.storeKey,t),!0}return!1},t.prototype.purge=function(){if(WEBSTORAGE_ENABLED)return this.storage.removeItem(this.storeKey),!0},t),this.ClientJSONCache=(r=ClientCache,((e.prototype=Object.create(ClientCache.prototype)).constructor=e).prototype.parse=function(t){try{return JSON.parse(t)}catch(t){console&&console.log?console.log("Error thrown in parsing JSON",t):alert("Error thrown in parsing JSON")}return null},e.prototype.stringify=function(t){try{return JSON.stringify(t)}catch(t){console&&console.log?console.log("Error thrown in stringify from JSON",t):alert("Error thrown in stringify from JSON")}return null},e),this.asyncMessenger=(i.prototype={events:new EventEmitter,registerMessage:function(t,e){this.messages[t]||(this.messages[t]=[]),this.messages[t].push(e),this.events.trigger("message",[t,e])},getMessagesForNamespace:function(t){t=this.messages[t];if(t&&t.length)return t},resetMessagesForNamepace:function(t){this.messages[t]=[]}},new i)}.call(window),function(){function t(t,e){r.apply(this,arguments),this.get()&&this.hasValidTimeStamp()?this.data=this.get():(this.purge(),this.data={price:null,stock:null,nextdeliverydate:null})}var r;function e(t,e){this.sku=t,this.containerElement=e,this.data=new ProductRemoteDataPersistentStorage(this.getCacheKey(),!0),this.priceTargets=this.getPriceTargets(),this.stockTargets=this.getStockTargets(),this.nextDeliveryDateTarget=this.getNextDeliveryDateTarget(),this.discountTargets=this.getDiscountTargets(),this.listPriceTargets=this.getListPriceTargets(),this.eventEmitter=new EventEmitter,this.hasActiveDataRequest=!1,this.currencySignIsKroner=!1,this.currencySignIsEuro=!1,this.complete={price:!1,stock:!1}}function i(t){this.products=new ProductCollection,this.products.setEventEmitter(this.eventEmitter),this.asyncMessenger=t,this.queue=[],this.possibleSkus=[],this.currentlyRemotelyFetching=[],this.hasActiveDataRequest=!1,this.lastCheckQueueCount=0,this.intervalsActive=!1,this.endpoint="/vismaproductdata",this.bindEvents(),this.getStoredMessages()}this.ProductRemoteDataPersistentStorage=(r=ClientJSONCache,((t.prototype=Object.create(ClientJSONCache.prototype)).constructor=t).prototype.setData=function(t,e,r){this.setPrice(t),this.setStock(e),this.setNextDeliveryDate(r)},t.prototype.setPrice=function(t){this.data.price=t,this.setTimeStamp(),this.set(this.data)},t.prototype.setStock=function(t){this.data.stock=t,this.setTimeStamp(),this.set(this.data)},t.prototype.setNextDeliveryDate=function(t){this.data.nextdeliverydate=t,this.setTimeStamp(),this.set(this.data)},t.prototype.getPrice=function(){return this.data.price},t.prototype.getTTL=function(){return this.data.stock&&10<=parseInt(this.data.stock)?36e5:9e5},t.prototype.getStock=function(){return this.data.stock},t.prototype.getNextDeliveryDate=function(){return this.data.nextdeliverydate},t.prototype.getCurrentTimeStamp=function(){return(new Date).getTime()},t.prototype.setTimeStamp=function(){this.data.timeStamp=this.getCurrentTimeStamp()},t.prototype.hasValidTimeStamp=function(){var t=this.data.timeStamp;return!!t&&this.getCurrentTimeStamp()-t<this.getTTL()},t),this.ProductRemoteDataTarget=(e.prototype={init:function(){return this.bindEvents(),this.print()},bindEvents:function(){var e=this;this.eventEmitter.on("requesteddatarecieved",function(t){e.setData(t)}),this.eventEmitter.on("dataupdated",function(){e.print(e.data)})},getCacheKey:function(){return"product-"+this.sku+"-data"},print:function(){if(this.priceTargets=this.getPriceTargets(),this.getPrice()&&this.priceTargets.length)for(var t=0;t<this.priceTargets.length;t++){var e=this.priceTargets[t],r=this.getPrice().toLocaleString(void 0,{minimumFractionDigits:2,maximumFractionDigits:2});r.indexOf(".")&&r.length-r.indexOf(".")==2&&this.currencySignIsKroner&&(r+="0"),e.getAttribute("data-price-amount")?e.setAttribute("data-price-amount",r):e.parentNode.getAttribute("data-price-amount")&&e.parentNode.setAttribute("data-price-amount",r),this.currencySignIsKroner?e.setAttribute("data-currency-sign-after"," kr"):this.currencySignIsEuro&&e.setAttribute("data-currency-sign-before","€"),e.innerText=r}if(this.stockTargets=this.getStockTargets(),null!=this.getStock()&&this.stockTargets.length)for(t=0;t<this.stockTargets.length;t++)(e=this.stockTargets[t]).innerText=this.getStock(),0==this.getStock()&&(e.classList.add("out_of_stock"),document.getElementById("block-upsell-heading")&&document.getElementById("link-to-upsell")&&(document.getElementById("link-to-upsell").style.display="block"));if(this.nextDeliveryDateTarget=this.getNextDeliveryDateTarget(),this.getNextDeliveryDate()&&this.nextDeliveryDateTarget.length)for(t=0;t<this.nextDeliveryDateTarget.length;t++)(e=this.nextDeliveryDateTarget[t]).innerText=this.getNextDeliveryDate(),e.parentElement.classList.remove("_hidden");if(this.discountTargets=this.getDiscountTargets(),this.listPriceTargets=this.getListPriceTargets(),this.discountTargets.length&&this.listPriceTargets.length)for(t=0;t<this.discountTargets.length;t++){var i=this.discountTargets[t],n=(e=this.listPriceTargets[t]).getAttribute("data-list-price");n>this.getPrice()?(n=Math.round((n-this.getPrice())/n*100),e.setAttribute("data-discount-percent",n),i.innerText=n+"%"):i.parentElement.style.display="none"}},getPriceTargets:function(){var t,e=this.containerElement.querySelectorAll(".price-final_price .price");return!e.length||this.currencySignIsKroner||this.currencySignIsEuro||(t=e[0],this.currencySignIsKroner=-1!=t.innerText.indexOf("kr"),this.currencySignIsEuro=-1!=t.innerText.indexOf("€")),e},getStockTargets:function(){return this.containerElement.querySelectorAll(".visma-stock")},getNextDeliveryDateTarget:function(){return this.containerElement.querySelectorAll(".next_delivery_date")},getDiscountTargets:function(){return this.containerElement.querySelectorAll(".visma-discount")},getListPriceTargets:function(){return this.containerElement.querySelectorAll(".visma-list-price")},requestData:function(){return this.hasActiveDataRequest?null:(this.hasActiveDataRequest=!0,this.eventEmitter.emitEvent("datarequest",[{sku:this.sku}]))},_setPrice:function(t){this.data.setPrice(t)},_setStock:function(t){this.data.setStock(t)},_setNextDeliveryDate:function(t){this.data.setNextDeliveryDate(t)},setData:function(t){if(!this.sku==t.sku)return!1;this.hasActiveDataRequest=!1,this._setStock(t.stock_qty),this._setPrice(t.price||null),this._setNextDeliveryDate(t.next_delivery_date),this.eventEmitter.trigger("dataupdated")},getPrice:function(){return this.data.getPrice()&&this.data.hasValidTimeStamp()?this.data.getPrice():(this.requestData(),!1)},getStock:function(){return this.data.getStock()&&this.data.hasValidTimeStamp()||this.requestData(),this.data.getStock()},getNextDeliveryDate:function(){return this.data.getNextDeliveryDate()&&this.data.hasValidTimeStamp()||this.requestData(),this.data.getNextDeliveryDate()}},e),this.ProductCollection=function(){(t.prototype=Object.create(Array.prototype)).constructor=Array.prototype.constructor;var e={};function t(){}return t.prototype.addProduct=function(t){return t?(this.push(t),this.setBySku(t),t):null},t.prototype.getSortedBySku=function(t){return t?e[t]:e},t.prototype.setBySku=function(t){if(sku=t.sku,!sku)return!1;null==e[sku]&&(e[sku]=[]),e[sku].push(t)},t.prototype.setEventEmitter=function(t){return this.eventEmitter=t},t}(),this.ProductDataController=(i.prototype={eventEmitter:new EventEmitter,registerElements:function(t){var e,r,i=this;if(t.length)for(var n=0;n<t.length;++n)r=e=void 0,e=t[n],(r=e.getAttribute("data-sku"))&&i.registerElementBySku(e,r)},registerElementBySku:function(t,e){return t&&e?(instance=this.createTargetEntity(t,e),this.products.addProduct(instance),instance):null},createTargetEntity:function(t,e){if(t&&e){var r=this,t=new ProductRemoteDataTarget(e,t);return t.eventEmitter.on("datarequest",function(t){r.eventEmitter.emitEvent("datarequest",[t])}),t.init(),t}return null},bindEvents:function(){var r=this;this.eventEmitter.on("datarequest",function(t){r.dataRequestListener(t.sku)}),this.asyncMessenger.events.on("message",function(t,e){"productDataController.registerElementBySku"==t&&(r.registerElementBySku.apply(r,e),r.asyncMessenger.resetMessagesForNamepace("productDataController.registerElementBySku"))})},getStoredMessages:function(){var t,e=this,r=this.asyncMessenger.getMessagesForNamespace("productDataController.registerElementBySku");if(r&&r.length){for(var i=0;i<r.length;++i)t=r[i],e.registerElementBySku.apply(e,t);this.asyncMessenger.resetMessagesForNamepace("productDataController.registerElementBySku")}},getXHRObject:function(t){return new Fajx(this.endpoint+t,"GET")},handleResponse:function(t){var n,s=this;for(sku in this.currentlyRemotelyFetching=[],t&&t.xhr&&(n=JSON.parse(t.xhr.responseText)),n)!function(t){for(var e=s.products.getSortedBySku(t),r=n[t],i=0;i<e.length;++i)e[i].eventEmitter.emitEvent("requesteddatarecieved",[r])}(sku)},requestRemoteData:function(){var e=this,t="?skus=["+this.queue.toString()+"]",t=this.getXHRObject(t);t.events.on("complete",function(t){e.handleResponse(t),e.hasActiveDataRequest=!1,e.eventEmitter.trigger("datarecieved",["yep"])}),this.hasActiveDataRequest=!0,t.exec(),this.currentlyRemotelyFetching=this.queue,this.queue=[]},hasMoreRequestsQueuedSinceLastCheck:function(){return this.lastCheckQueueCount.length<this.queue.length},dataRequestListener:function(t){var e,r;-1==this.queue.indexOf(t)&&-1==this.currentlyRemotelyFetching.indexOf(t)&&-1==this.possibleSkus.indexOf(t)&&((e=this).queue.push(t),this.possibleSkus.push(t),this.intervalsActive||(this.lastCheckQueueCount=this.queue.length,e.intervalsActive=!0,r=setInterval(function(){e.hasMoreRequestsQueuedSinceLastCheck()||this.hasActiveDataRequest?e.lastCheckQueueCount=e.queue.length:(clearInterval(r),e.requestRemoteData(),this.lastCheckQueueCount=0,e.intervalsActive=!1)},100)))}},i)}.call(this),window.productDataController=new ProductDataController(asyncMessenger);
</script>
<script type="text/javascript">
document.addEventListener('render', function (event) {
if (event.detail && event.detail.products && event.detail.products.length) {
event.detail.products.forEach(function (product) {
var tile = document.querySelector(`div.products-grid .product-item[data-unit-id="${event.detail.unitId}"][data-sku="${product.sku}"]`);
asyncMessenger.registerMessage('productDataController.registerElementBySku',[tile , product.sku]);
});
}
});
</script>
<script>
window.loggedInUserCanBuyProducts = true;
</script>
<div data-bind="scope: 'add_to_requisition_popup'">
<!-- ko template: getTemplate() --><!-- /ko -->
</div>
<script type="text/x-idle-init" data-priority="low">
{
"*": {
"Magento_Ui/js/core/app": {
"components": {
"add_to_requisition_popup": {
"component": "Magento_RequisitionList/js/requisition/list/edit/modal",
"options": {
"title": "Skapa inköpslista"
},
"children": {
"form": {
"component": "Magento_RequisitionList/js/requisition/list/edit/form",
"template": "Magento_RequisitionList/requisition-list/form"
}
}
}
}
}
}
}
</script>
<div class="nwt_page-wrapper"><div class="page-wrapper">
<script>
require(['magentoStorefrontEvents'], function (magentoStorefrontEvents) {
magentoStorefrontEvents?.context?.setContext("recsContext", {
alternateEnvironmentId: ""
});
});
</script>
<script type="text/x-magento-init">
{
"*": {
"Magento_ProductRecommendationsLayout/js/recsFetcher": {}
}
}
</script>
<header class="page-header"><div class="panel wrapper"><div class="nwt_panel-wrapper"><div class="nwt_panel-wrapper_left"><div class="nwt_header-usp"><div data-content-type="row" data-appearance="contained" data-element="main"><div data-enable-parallax="0" data-parallax-speed="0.5" data-background-images="{}" data-element="inner" data-pb-style="619CBD4CD451F"><div data-content-type="text" data-appearance="default" data-element="main" data-pb-style="619CBD4CD4530"><ul><li><a href="https://mcstaging.teletec.se/kontakta-oss/">Kontakta oss</a></li>
<li><a href="https://mcstaging.teletec.se/om-oss/">Om oss</a></li>
</ul></div></div></div><style>#html-body [data-pb-style="619CBD4CD451F"]{justify-content: flex-start; display: flex; flex-direction: column; background-position: left top; background-size: cover; background-repeat: no-repeat; background-attachment: scroll; border-style: none; border-width: 1px; border-radius: 0px;}#html-body [data-pb-style="619CBD4CD4530"]{border-style: none; border-width: 1px; border-radius: 0px; margin: 0px; padding: 0px;}</style></div></div><div class="nwt_panel-wrapper_right"><div class="panel header"><ul class="compare wrapper"><li class="item link compare" data-bind="scope: 'compareProducts'" data-role="compare-products-link">
<a class="action compare no-display" title="Jämför produkter"
data-bind="attr: {'href': compareProducts().listUrl}, css: {'no-display': !compareProducts().count}"
>
Jämför produkter <span class="counter qty" data-bind="text: compareProducts().countCaption"></span>
</a>
</li>
<script type="text/x-idle-init" data-priority="low">
{"[data-role=compare-products-link]": {"Magento_Ui/js/core/app": {"components":{"compareProducts":{"component":"Magento_Catalog\/js\/view\/compare-products"}}}}}
</script>
</ul><ul class="header links quick_order_link"><li><a href="https://mcstaging.teletec.se/quickorder/" id="idQ0vFKy4Y" >Snabborder</a></li></ul><ul class="header links"> <li class="greet welcome" data-bind="scope: 'customer'">
<!-- ko if: customer().fullname -->
<span class="logged-in"
data-bind="text: new String('Välkommen, %1!').replace('%1', customer().fullname)">
</span>
<!-- /ko -->
<!-- ko ifnot: customer().fullname -->
<span class="not-logged-in"
data-bind="html: ''"></span>
<!-- /ko -->
</li>
<script type="text/x-idle-init">
{
"*": {
"Magento_Ui/js/core/app": {
"components": {
"customer": {
"component": "Magento_Customer/js/view/customer"
}
}
}
}
}
</script>
<li class="my-orders">
<a href="https://mcstaging.teletec.se/teletec_customer/order/history/referer/aHR0cHM6Ly9tY3N0YWdpbmcudGVsZXRlYy5zZS9pbmJyb3R0c2xhcm0%3D/" title="Mina beställningar">
Mina beställningar </a>
</li>
<li>
<a class="campaigns_link" href="https://mcstaging.teletec.se/campaigns/"
title="Kampanjer">
Kampanjer </a>
</li>
<li class="customer-welcome">
<span class="customer-name"
role="link"
tabindex="0"
data-mage-init='{"dropdown":{}}'
data-toggle="dropdown"
data-trigger-keypress-button="true"
data-bind="scope: 'customer'">
<button type="button"
class="action switch"
tabindex="-1"
data-action="customer-menu-toggle">
<span>Ändra</span>
</button>
</span>
<script type="text/x-magento-init">
{
"*": {
"Magento_Ui/js/core/app": {
"components": {
"customer": {
"component": "Magento_Customer/js/view/customer"
}
}
}
}
}
</script>
<div class="customer-menu" data-target="dropdown">
<ul class="header links"><li><a href="https://mcstaging.teletec.se/customer/account/start/" id="idwV8wZoYN" >Mitt konto</a></li><li class="requisition_link">
<a href="https://mcstaging.teletec.se/requisition_list/requisition/index/">
Mina inköpslistor </a>
</li>
<li class="link wishlist" data-bind="scope: 'wishlist'">
<a href="https://mcstaging.teletec.se/wishlist/">Min önskelista <!-- ko if: wishlist().counter -->
<span data-bind="text: wishlist().counter" class="counter qty"></span>
<!-- /ko -->
</a>
</li>
<script type="text/x-magento-init">
{
"*": {
"Magento_Ui/js/core/app": {
"components": {
"wishlist": {
"component": "Magento_Wishlist/js/view/wishlist"
}
}
}
}
}
</script>
<li><a href="https://mcstaging.teletec.se/invitation/index/send/" id="invitation-send-link" >Send Invitations</a></li><li class="link authorization-link" data-label="Eller">
<a href="https://mcstaging.teletec.se/customer/account/logout/" data-post='{"action":"https:\/\/mcstaging.teletec.se\/customer\/account\/logout\/","data":{"uenc":"aHR0cHM6Ly9tY3N0YWdpbmcudGVsZXRlYy5zZS9pbmJyb3R0c2xhcm0,"}}'>Logga ut</a>
</li>
</ul> </div>
</li>
<li class="link authorization-link" data-label="Eller">
<a href="https://mcstaging.teletec.se/customer/account/logout/" data-post='{"action":"https:\/\/mcstaging.teletec.se\/customer\/account\/logout\/","data":{"uenc":"aHR0cHM6Ly9tY3N0YWdpbmcudGVsZXRlYy5zZS9pbmJyb3R0c2xhcm0,"}}'>Logga ut</a>
</li>
</ul></div></div></div></div><div class="header content"><div class="nwt_header-content"><div class="nwt_header-content_left"><span data-ammenu-js="menu-toggle"
class="ammenu-menu-toggle"
>
</span>
<span data-action="toggle-nav" class="action nav-toggle" style="display: none;"><span>Toggle Nav</span></span>
<a
class="logo"
href="https://mcstaging.teletec.se/"
title="Teletec Connect"
aria-label="store logo">
<img src="https://mcstaging.teletec.se/static/version1717408326/frontend/NWT/teletec-theme/default/images/logo.svg"
title="Teletec Connect"
alt="Teletec Connect"
width="258" height="46" />
</a>
</div>
<div class="block block-search">
<div class="block block-title"><strong>Sök</strong></div>
<div class="block block-content">
<form class="form minisearch" id="search_mini_form" action="https://mcstaging.teletec.se/catalogsearch/result/" method="get" data-dashlane-rid="bb0f57588449a2e3" data-form-type="">
<div class="field search">
<label class="label" for="search" data-role="minisearch-label">
<span>Sök</span>
</label>
<div class="control">
<input id="search_test" type="text" name="q" value="apoll" placeholder="Sök produkt" class="input-text" maxlength="128" role="combobox" aria-haspopup="false" aria-autocomplete="both" autocomplete="off" aria-expanded="false" onchange="" data-dashlane-rid="27d8c275ff17bcc5" data-form-type="">
<div class="amsearch-form-block">
<div id="search_autocomplete" class="amsearch-result-section"><div lang="en-GB" dir="ltr" class="JuTe6q_spectrum _5QszkG_spectrum _5QszkG_i18nFontFamily PFjRbG_spectrum--light xSyFOq_spectrum--medium zA6MfG_spectrum zA6MfG_spectrum--dark zA6MfG_spectrum--darkest zA6MfG_spectrum--large zA6MfG_spectrum--light zA6MfG_spectrum--lightest zA6MfG_spectrum--medium" style="isolation: isolate; background-color: transparent; width: 100%; color-scheme: light;"></div></div>
</div>
</div>
</div>
<div class="actions">
<button type="submit" title="Sök" class="action search" aria-label="Search" data-dashlane-rid="5762c2c3ae83619f" data-dashlane-label="true" data-form-type="">
<span>Sök</span>
</button>
</div>
</form>
</div>
</div>
<div class="nwt_header-content_middle">
</div><div class="nwt_header-content_right"><div class="-empty"><!-- Empty --></div> <a class="link authorization-link--mobile logged" aria-label="Mitt Konto" href="https://mcstaging.teletec.se/customer/account/logout/"></a>
<!-- BLOCK tel.header.checkout.button --> <div class="nwt-go-to-checkout_wrapper">
<button type="button"
data-role="proceed-to-checkout"
title="Till kassan"
data-idle-init='{"Magento_Checkout/js/proceed-to-checkout":{"checkoutUrl":"https://mcstaging.teletec.se/checkout/"}}'
data-priority="low"
class="action to-checkout"
>
<span>Till kassan</span>
</button>
</div>
<!-- /BLOCK tel.header.checkout.button --></div></div>
<div class="nwt_nav-cart-container"><div class="nwt_nav-cart-container_left"> <div class="ammenu-nav-sections nav-sections"
data-idle-init='{"amastyMenuOpenType":{
"openType": "drill",
"hamburgerStatus": "0"
}}'
data-priority="low"
data-ammenu-js='nav-sections'>
<div class="ammenu-tabs-container"
data-ammenu-js="tabs-container">
<div class="ammenu-title" data-role="collapsible">
<a class="ammenu-link"
title="Menu"
data-toggle="switch"
href="#store.menu">
Menu </a>
</div>
<div class="ammenu-content" id="store.menu" data-role="content">
<section class="ammenu-menu-wrapper -desktop"
data-ammenu-js="desktop-menu"
data-idle-init='{"amastyMegaMenu":{"stickyStatus": 0,
"desktopStatus": 1 }}'>
<nav class="ammenu-main-container">
<ul class="ammenu-items" data-idle-init='{ "megaMenu": {} }'>
<li class="ammenu-item -main -products -parent -full">
<a class="ammenu-link -main -parent" href="" title="Produkter">Produkter</a>
<div class="nwt-submenu-container nwt-submenu -full">
<div class="nwt-submenu-wrapper">
<ul class="nwt-menu-items-list">
<li class="ammenu-item current">
<a href="https://mcstaging.teletec.se/inbrottslarm"
class="-level0 ammenu-link -parent"
title="Inbrottslarm">
Inbrottslarm </a>
<div class="nwt-child-container nwt-child">
<div data-content-type="row" data-appearance="contained" data-element="main"><div data-enable-parallax="0" data-parallax-speed="0.5" data-background-images="{}" data-element="inner" style="justify-content: flex-start; display: flex; flex-direction: column; background-position: left top; background-size: cover; background-repeat: no-repeat; background-attachment: scroll; border-style: none; border-width: 1px; border-radius: 0px; margin: 0px 0px 10px; padding: 10px;"><div data-content-type="ammega_menu_widget" data-appearance="default" data-element="main" style="border-style: none; border-width: 1px; border-radius: 0px; margin: 0px; padding: 0px;"><div class="ammenu-categories-container ammenu-categories">
<ul class="ammenu-item -child  -col-1" >
<li class="ammenu-wrapper category-item"
>
<span class="ammenu-arrow ammenu-icon -small "
data-ammenu-js="submenu-toggle"></span>
<a href="https://mcstaging.teletec.se/inbrottslarm/hybrida-larmsystem"
title="Hybrida Larmsystem"
class="ammenu-link -level1 ">
<span class="ammenu-wrapper">
Hybrida Larmsystem </span>
</a>
<ul class="ammenu-item -child " >
<li class="ammenu-wrapper category-item"
data-ammenu-js="parent-subitem">
<span class="ammenu-arrow ammenu-icon -small -down"
data-ammenu-js="submenu-toggle"></span>
<a href="https://mcstaging.teletec.se/inbrottslarm/hybrida-larmsystem/neo"
title="PowerSeries Neo"
class="ammenu-link -level2 ">
<span class="ammenu-wrapper">
PowerSeries Neo </span>
</a>
<ul class="ammenu-item -child " style="display: none;">
<li class="ammenu-wrapper category-item"
>
<a href="https://mcstaging.teletec.se/inbrottslarm/hybrida-larmsystem/neo/neo-centraler"
title="Neo Centraler"
class="ammenu-link -level3 ">
<span class="ammenu-wrapper">
Neo Centraler </span>
</a>
</li>
<li class="ammenu-wrapper category-item"
>
<a href="https://mcstaging.teletec.se/inbrottslarm/hybrida-larmsystem/neo/larmsandare"
title="Larmsändare"
class="ammenu-link -level3 ">
<span class="ammenu-wrapper">
Larmsändare </span>
</a>
</li>
<li class="ammenu-wrapper category-item"
>
<a href="https://mcstaging.teletec.se/inbrottslarm/hybrida-larmsystem/neo/knappsatser"
title="Knappsatser"
class="ammenu-link -level3 ">
<span class="ammenu-wrapper">
Knappsatser </span>
</a>
</li>
<li class="ammenu-wrapper category-item"
>
<a href="https://mcstaging.teletec.se/inbrottslarm/hybrida-larmsystem/neo/tradbunden-utbyggnad"
title="Systemutbyggnad"
class="ammenu-link -level3 ">
<span class="ammenu-wrapper">
Systemutbyggnad </span>
</a>
</li>
<li class="ammenu-wrapper category-item"
>
<a href="https://mcstaging.teletec.se/inbrottslarm/hybrida-larmsystem/neo/tradlosa-tillbehor"
title="Trådlösa tillbehör Power G"
class="ammenu-link -level3 ">
<span class="ammenu-wrapper">
Trådlösa tillbehör Power G </span>
</a>
</li>
<li class="ammenu-wrapper category-item"
>
<a href="https://mcstaging.teletec.se/inbrottslarm/hybrida-larmsystem/neo/ovriga-tillbehor"
title="Övriga tillbehör för Neo"
class="ammenu-link -level3 ">
<span class="ammenu-wrapper">
Övriga tillbehör för Neo </span>
</a>
</li>
<li class="ammenu-wrapper category-item"
>
<a href="https://mcstaging.teletec.se/inbrottslarm/hybrida-larmsystem/neo/uppkoppling-till-larmcentral"
title="Uppkoppling till larmcentral"
class="ammenu-link -level3 ">
<span class="ammenu-wrapper">
Uppkoppling till larmcentral </span>
</a>
</li>
</ul>
</li>
<li class="ammenu-wrapper category-item"
data-ammenu-js="parent-subitem">
<span class="ammenu-arrow ammenu-icon -small -down"
data-ammenu-js="submenu-toggle"></span>
<a href="https://mcstaging.teletec.se/inbrottslarm/hybrida-larmsystem/powerseries-pro-psp"
title="PowerSeries Pro (PSP)"
class="ammenu-link -level2 ">
<span class="ammenu-wrapper">
PowerSeries Pro (PSP) </span>
</a>
<ul class="ammenu-item -child " style="display: none;">
<li class="ammenu-wrapper category-item"
>
<a href="https://mcstaging.teletec.se/inbrottslarm/hybrida-larmsystem/powerseries-pro-psp/centraler-och-tillbehor"
title="PSP Centraler"
class="ammenu-link -level3 ">
<span class="ammenu-wrapper">
PSP Centraler </span>
</a>
</li>
<li class="ammenu-wrapper category-item"
>
<a href="https://mcstaging.teletec.se/inbrottslarm/hybrida-larmsystem/powerseries-pro-psp/larmsandare"
title="Larmsändare"
class="ammenu-link -level3 ">
<span class="ammenu-wrapper">
Larmsändare </span>
</a>
</li>
<li class="ammenu-wrapper category-item"
>
<a href="https://mcstaging.teletec.se/inbrottslarm/hybrida-larmsystem/powerseries-pro-psp/knappsatser"
title="Knappsatser"
class="ammenu-link -level3 ">
<span class="ammenu-wrapper">
Knappsatser </span>
</a>
</li>
<li class="ammenu-wrapper category-item"
>
<a href="https://mcstaging.teletec.se/inbrottslarm/hybrida-larmsystem/powerseries-pro-psp/systemutbyggnad"
title="Systemutbyggnad"
class="ammenu-link -level3 ">
<span class="ammenu-wrapper">
Systemutbyggnad </span>
</a>
</li>
<li class="ammenu-wrapper category-item"
>
<a href="https://mcstaging.teletec.se/inbrottslarm/hybrida-larmsystem/powerseries-pro-psp/powerg-tradlosa-tillbehor"
title="Trådlösa tillbehör (Power G)"
class="ammenu-link -level3 ">
<span class="ammenu-wrapper">
Trådlösa tillbehör (Power G) </span>
</a>
</li>
<li class="ammenu-wrapper category-item"
>
<a href="https://mcstaging.teletec.se/inbrottslarm/hybrida-larmsystem/powerseries-pro-psp/tradbundna-tillbehor"
title="Trådbundna tillbehör klass 3"
class="ammenu-link -level3 ">
<span class="ammenu-wrapper">
Trådbundna tillbehör klass 3 </span>
</a>
</li>
<li class="ammenu-wrapper category-item"
>
<a href="https://mcstaging.teletec.se/inbrottslarm/hybrida-larmsystem/powerseries-pro-psp/uppkoppling-till-larmcentral-psp"
title="Uppkoppling till larmcentral"
class="ammenu-link -level3 ">
<span class="ammenu-wrapper">
Uppkoppling till larmcentral </span>
</a>
</li>
</ul>
</li>
<li class="ammenu-wrapper category-item"
data-ammenu-js="parent-subitem">
<span class="ammenu-arrow ammenu-icon -small -down"
data-ammenu-js="submenu-toggle"></span>
<a href="https://mcstaging.teletec.se/inbrottslarm/hybrida-larmsystem/ksenia"
title="Ksenia"
class="ammenu-link -level2 ">
<span class="ammenu-wrapper">
Ksenia </span>
</a>
<ul class="ammenu-item -child " style="display: none;">
<li class="ammenu-wrapper category-item"
>
<a href="https://mcstaging.teletec.se/inbrottslarm/hybrida-larmsystem/ksenia/ksenia-centraler"
title="Ksenia Centraler"
class="ammenu-link -level3 ">
<span class="ammenu-wrapper">
Ksenia Centraler </span>
</a>
</li>
<li class="ammenu-wrapper category-item"
>
<a href="https://mcstaging.teletec.se/inbrottslarm/hybrida-larmsystem/ksenia/larmsandare"
title="Larmsändare"
class="ammenu-link -level3 ">
<span class="ammenu-wrapper">
Larmsändare </span>
</a>
</li>
<li class="ammenu-wrapper category-item"
>
<a href="https://mcstaging.teletec.se/inbrottslarm/hybrida-larmsystem/ksenia/knappsatser"
title="Knappsatser"
class="ammenu-link -level3 ">
<span class="ammenu-wrapper">
Knappsatser </span>
</a>
</li>
<li class="ammenu-wrapper category-item"
>
<a href="https://mcstaging.teletec.se/inbrottslarm/hybrida-larmsystem/ksenia/systemutbyggnad"
title="Systemutbyggnad"
class="ammenu-link -level3 ">
<span class="ammenu-wrapper">
Systemutbyggnad </span>
</a>
</li>
<li class="ammenu-wrapper category-item"
>
<a href="https://mcstaging.teletec.se/inbrottslarm/hybrida-larmsystem/ksenia/tradlosa-tillbehor"
title="Trådlösa tillbehör"
class="ammenu-link -level3 ">
<span class="ammenu-wrapper">
Trådlösa tillbehör </span>
</a>
</li>
<li class="ammenu-wrapper category-item"
>
<a href="https://mcstaging.teletec.se/inbrottslarm/hybrida-larmsystem/ksenia/tradbundna-tillbehor"
title="Trådbundna tillbehör"
class="ammenu-link -level3 ">
<span class="ammenu-wrapper">
Trådbundna tillbehör </span>
</a>
</li>
</ul>
</li>
<li class="ammenu-wrapper category-item"
data-ammenu-js="parent-subitem">
<span class="ammenu-arrow ammenu-icon -small -down"
data-ammenu-js="submenu-toggle"></span>
<a href="https://mcstaging.teletec.se/inbrottslarm/hybrida-larmsystem/powerserien"
title="PC1616/1864 (Tillbehör)"
class="ammenu-link -level2 ">
<span class="ammenu-wrapper">
PC1616/1864 (Tillbehör) </span>
</a>
<ul class="ammenu-item -child " style="display: none;">
<li class="ammenu-wrapper category-item"
>
<a href="https://mcstaging.teletec.se/inbrottslarm/hybrida-larmsystem/powerserien/centralapparater"
title="Centralapparater"
class="ammenu-link -level3 ">
<span class="ammenu-wrapper">
Centralapparater </span>
</a>
</li>