-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
10477 lines (10477 loc) · 560 KB
/
form.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="no" data-device="desktop" data-base-path="https://www.vg.no" data-assets-url="https://www.vg.no/vgc/frimand/">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Nyheter fra Norges mest leste nettavis – VG</title>
<link rel="preconnect" href="https://cmp.vg.no">
<link rel="preconnect" href="https://cmp.vg.no" crossorigin="anonymous">
<link rel="preconnect" href="https://ib.adnxs.com">
<link rel="preconnect" href="https://cdn.adnxs.com">
<link rel="preconnect" href="https://log.medietall.no">
<link rel="preconnect" href="https://collector.schibsted.io">
<link rel="preconnect" href="https://secure.adnxs.com">
<link rel="preconnect" href="https://s1.adform.net">
<link rel="preconnect" href="https://track.adform.net">
<link rel="preconnect" href="https://cis.schibsted.com" crossorigin="anonymous">
<link rel="preconnect" href="https://cis.vg.no" crossorigin="anonymous">
<link rel="preconnect" href="https://pp.lp4.io">
<link rel="preconnect" href="https://cookie.norstatsurveys.com">
<link rel="preconnect" href="https://cogwheel.inventory.schibsted.io">
<link rel="preconnect" href="https://vgc.no">
<link rel="preconnect" href="https://user-permissions.smp.schibsted.com" crossorigin="anonymous">
<script src="https://www.vg.no/vgc/cdn/js/libs/ast/0.33.0/ast-patched.js" defer></script>
<link rel="preload" href="https://cmp.vg.no/messagingNoTcfApi.js" as="script" id="__cmp">
<style>
body{-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-font-feature-settings:"liga","kern";font-feature-settings:"liga","kern"}@font-face{font-display:swap;font-family:Austin News Text Web;font-style:normal;font-weight:400;src:url(https://www.vg.no/vgc/font-spesial/AustinNewsText/AustinNewsText-Roman-Web.woff2) format("woff2"),url(https://www.vg.no/vgc/font-spesial/AustinNewsText/AustinNewsText-Roman-Web.woff) format("woff")}@font-face{font-display:swap;font-family:Austin News Text Web;font-style:italic;font-weight:400;src:url(https://www.vg.no/vgc/font-spesial/AustinNewsText/AustinNewsText-Italic-Web.woff2) format("woff2"),url(https://www.vg.no/vgc/font-spesial/AustinNewsText/AustinNewsText-Italic-Web.woff) format("woff")}@font-face{font-display:swap;font-family:Austin News Text Web;font-style:normal;font-weight:700;src:url(https://www.vg.no/vgc/font-spesial/AustinNewsText/AustinNewsText-Bold-Web.woff2) format("woff2"),url(https://www.vg.no/vgc/font-spesial/AustinNewsText/AustinNewsText-Bold-Web.woff) format("woff")}@font-face{font-display:swap;font-family:Austin News Text Web;font-style:italic;font-weight:700;src:url(https://www.vg.no/vgc/font-spesial/AustinNewsText/AustinNewsText-BoldItalic-Web.woff2) format("woff2"),url(https://www.vg.no/vgc/font-spesial/AustinNewsText/AustinNewsText-BoldItalic-Web.woff) format("woff")}@font-face{font-display:swap;font-family:Austin News Deck Web;font-style:normal;font-weight:400;src:local("AustinNewsDeck-Roman"),url(https://www.vg.no/vgc/font-spesial/AustinNewsDeck/AustinNewsDeck-Roman-Web.woff2) format("woff2"),url(https://www.vg.no/vgc/font-spesial/AustinNewsDeck/AustinNewsDeck-Roman-Web.woff) format("woff")}@font-face{font-display:swap;font-family:Austin News Deck Web;font-style:italic;font-weight:400;src:url(https://www.vg.no/vgc/font-spesial/AustinNewsDeck/AustinNewsDeck-Italic-Web.woff2) format("woff2"),url(https://www.vg.no/vgc/font-spesial/AustinNewsDeck/AustinNewsDeck-Italic-Web.woff) format("woff")}@font-face{font-display:swap;font-family:Austin News Deck Web;font-style:normal;font-weight:600;src:url(https://vgc.no/font-spesial/AustinNewsDeck/AustinNewsDeck-Medium-Web.woff2) format("woff2"),url(https://vgc.no/font-spesial/AustinNewsDeck/AustinNewsDeck-Medium-Web.woff) format("woff")}@font-face{font-display:swap;font-family:Austin News Deck Web;font-style:italic;font-weight:600;src:local("AustinNewsDeck-MediumItalic"),url(https://www.vg.no/vgc/font-spesial/AustinNewsDeck/AustinNewsDeck-MediumItalic-Web.woff2) format("woff2"),url(https://www.vg.no/vgc/font-spesial/AustinNewsDeck/AustinNewsDeck-MediumItalic-Web.woff) format("woff")}@font-face{font-display:swap;font-family:Austin News Deck Web;font-style:normal;font-weight:700;src:local("AustinNewsDeck-Bold"),url(https://www.vg.no/vgc/font-spesial/AustinNewsDeck/AustinNewsDeck-Bold-Web.woff2) format("woff2"),url(https://www.vg.no/vgc/font-spesial/AustinNewsDeck/AustinNewsDeck-Bold-Web.woff) format("woff")}@font-face{font-display:swap;font-family:Austin News Deck Web;font-style:italic;font-weight:700;src:local("AustinNewsDeck-BoldItalic"),url(https://www.vg.no/vgc/font-spesial/AustinNewsDeck/AustinNewsDeck-BoldItalic-Web.woff2) format("woff2"),url(https://www.vg.no/vgc/font-spesial/AustinNewsDeck/AustinNewsDeck-BoldItalic-Web.woff) format("woff")}@font-face{font-display:swap;font-family:Druk Text Web;font-style:normal;font-weight:700;src:url(https://www.vg.no/vgc/font-spesial/frimand-fonts/druk201013/DrukText-Bold-Web.woff2) format("woff2"),url(https://www.vg.no/vgc/font-spesial/frimand-fonts/druk201013/DrukText-Bold-Web.woff) format("woff")}@font-face{font-display:swap;font-family:Druk Condensed Web;font-style:normal;font-weight:700;src:url(https://vgc.no/font-spesial/DrukCond/DrukCond-Super-Web.woff2) format("woff2"),url(https://vgc.no/font-spesial/DrukCond/DrukCond-Super-Web.woff) format("woff")}@font-face{font-display:swap;font-family:Druk Web;font-style:normal;font-weight:700;src:url(https://vgc.no/font-spesial/Druk/Druk-Heavy-Web.woff2) format("woff2"),url(https://vgc.no/font-spesial/Druk/Druk-Heavy-Web.woff) format("woff")}@font-face{font-display:swap;font-family:Inter;font-style:normal;font-weight:100 900;src:url(https://www.vg.no/vgc/font-spesial/Inter/3.15/Inter-roman.var.subset.woff2) format("woff2")}@font-face{font-display:swap;font-family:Inter;font-style:italic;font-weight:100 900;src:url(https://www.vg.no/vgc/font-spesial/Inter/3.15/Inter-italic.var.subset.woff2) format("woff2")}:root{--font-austin-deck:"Austin News Deck Web","Times New Roman",serif;--font-austin-text:"Austin News Text Web","Times New Roman",serif;--font-druk:"Druk Web",sans-serif;--font-druk-condensed:"Druk Condensed Web",sans-serif;--font-druk-text:"Druk Text Web",sans-serif;--font-inter:Inter,"Helvetica Neue",Helvetica,sans-serif}
</style>
<link href="https://www.vg.no/vgc/cdn/vg-nav/main.1.4.3.css" rel="stylesheet">
<link href="https://www.vg.no/vgc/frimand/css/app.a6d46021.css" rel="stylesheet">
<link href="https://www.vg.no/vgc/frimand/css/front.463376ed.css" rel="stylesheet">
<script>
if (!('noModule' in HTMLScriptElement.prototype)) {
document.addEventListener('beforeload', function(e) {
t=e.target,t instanceof HTMLScriptElement&&t.type=='module'&&e.preventDefault()
}, true);
}
if (!window.IntersectionObserver) {
document.write('<script src="https://www.vg.no/vgc/cdn/js/libs/intersection-observer/intersection-observer.js"><\/script>');
}
if(!window.CSS||!CSS.supports||!CSS.supports('(display: grid)')){
document.write('<link rel="stylesheet" href="https://www.vg.no/vgc/frimand/css/nogrid.337f4f1b.css">');
}
if (!Promise.allSettled) {
Promise.allSettled = function allSettledPolyfill(promises) {
return Promise.all(promises.map(p => p
.then(value => ({
status: 'fulfilled', value
}))
.catch(reason => ({
status: 'rejected', reason
}))
));
};
}
</script>
<script defer type="module" src="https://www.vg.no/vgc/frimand/js/app.ed54b56b.js"></script>
<meta name="description" content="Norges største nettsted. Oppdateres minutt for minutt på siste nytt innen sport, innenriks, utenriks, og underholdning.">
<meta name="twitter:description" content="Norges største nettsted. Oppdateres minutt for minutt på siste nytt innen sport, innenriks, utenriks, og underholdning.">
<meta name="og:description" content="Norges største nettsted. Oppdateres minutt for minutt på siste nytt innen sport, innenriks, utenriks, og underholdning.">
<link rel="icon" type="image/png" sizes="16x16" href="//www.vg.no/cnp-assets/favicon/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="//www.vg.no/cnp-assets/favicon/favicon-32x32.png">
<link rel="shortcut icon" href="//www.vg.no/cnp-assets/favicon/favicon.ico">
<link rel="author" href="/humans.txt">
<meta name="theme-color" content="#2b2b2b" media="(prefers-color-scheme: dark)">
<meta name="theme-color" content="#dd0000">
<meta name="msapplication-navbutton-color" content="#2b2b2b">
<meta name="apple-mobile-web-app-status-bar-style" content="#2b2b2b">
<meta name="apple-mobile-web-app-title" content="VG">
<link rel="apple-touch-icon" sizes="114x114" href="https://www.vg.no/gfx/icons/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon" sizes="72x72" href="https://www.vg.no/gfx/icons/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon" href="https://www.vg.no/gfx/icons/apple-touch-icon-57-precomposed.png">
<meta name="google-play-app" content="app-id=com.agens.android.vgsnarvei">
<meta name="title" content="Nyheter fra Norges mest leste nettavis – VG">
<meta name="twitter:title" content="Nyheter fra Norges mest leste nettavis – VG">
<meta property="twitter:card" content="summary_large_image"/>
<meta name="twitter:url" content="https://www.vg.no/">
<meta property="og:title" content="Nyheter fra Norges mest leste nettavis – VG">
<meta property="og:site_name" content="VG">
<meta property="og:url" content="https://www.vg.no/">
<meta property="og:type" content="website">
<meta property="article:publisher" content="https://www.facebook.com/vgnett">
<meta property="fb:pages" content="137059286994">
<meta property="twitter:image" content="https://1.vgc.no/vgnett-prod/img/vgLogoSquare.png?28042014-1">
<meta property="og:image" content="https://1.vgc.no/vgnett-prod/img/vgLogoSquare.png?28042014-1">
<meta property="og:site_name" content="VG">
<meta property="fb:app_id" content="152316758161786">
<meta property="al:ios:app_store_id" content="381071021">
<meta property="al:ios:app_name" content="VG">
<meta property="al:android:url" content="vg.no:///">
<meta property="al:android:package" content="com.agens.android.vgsnarvei">
<meta property="al:android:app_name" content="VG">
<meta property="al:web:url" content="https://www.vg.no/">
<meta property="lp:type" content="frontpage">
<meta name="twitter:card" content="summary_large_image">
<meta name="google-site-verification" content="OMGNEW6_tzwX7cLFR8LJG7vh4fS7rUXCaReTVZcv6bI">
<meta name="apple-itunes-app" content="app-id=381071021, affiliate-data=&uo=4&at=10lugu, app-argument=https://www.vg.no/">
<meta name="twitter:app:country" content="NO">
<meta name="twitter:app:name:iphone" content="VG">
<meta name="twitter:app:id:iphone" content="381071021">
<meta name="twitter:app:url:iphone" content="vg.no://">
<meta name="twitter:app:name:ipad" content="VG">
<meta name="twitter:app:id:ipad" content="381071021">
<meta name="twitter:app:url:ipad" content="vg.no://">
<meta name="twitter:app:name:googleplay" content="VG">
<meta name="twitter:app:id:googleplay" content="com.agens.android.vgsnarvei">
<meta name="twitter:app:url:googleplay" content="vg.no:///">
<meta name="google" content="notranslate">
<link rel="canonical" href="https://www.vg.no">
<link rel="alternate" type="application/rss+xml" title="VG :: forsiden" href="https://www.vg.no/rss/feed/forsiden/?format=rss" />
<link rel="alternate" type="application/atom+xml" title="VG :: forsiden" href="https://www.vg.no/rss/feed/forsiden/?format=atom" />
</head>
<body data-route="front" >
<script>
const __setTheme = (function __setTheme() {
try {
const settings = JSON.parse(localStorage.getItem('VG_USER_SETTINGS'));
if (settings && settings.darkmode &&
(settings.darkmode.value === 'true' || settings.darkmode.value === true) ||
(settings.darkmode.value === 'os' && window.matchMedia &&
window.matchMedia('(prefers-color-scheme: dark)').matches)) {
document.documentElement.dataset.theme = 'dark';
} else {
delete document.documentElement.dataset.theme;
}
} catch(e) {
console.log('Failed fetching darkmode setting from cache', e);
}
return __setTheme;
})();
const __storeDarkmodeTmp = () => {
window.SPiD_Identity.hasSession()
.then(async (spidUser) => {
if (localStorage.getItem('darkmodeTmp') != null) {
let userSettings = await frimandRequire('UserSettings');
userSettings = new userSettings.default();
try {
await userSettings.set('darkmode', localStorage.getItem('darkmodeTmp'));
} catch {
console.warn('[darkmode]: Invalid value in storage');
}
localStorage.removeItem('darkmodeTmp');
}
})
.catch((e) => {
return false;
});
};
if (!window.SPiD_Identity) {
window.addEventListener('identity-initialized', __storeDarkmodeTmp, false);
} else {
__storeDarkmodeTmp();
}
window.addEventListener('vg:user-settings:set', ({ detail }) => {
const { data } = detail;
if ('darkmode' in data) {
__setTheme();
}
});
</script>
<a class="screen-reader-hidden" href="#skip-nav">Hopp til hovedinnhold</a>
<a class="screen-reader-hidden" href="#skip-nav-direkte">Hopp til Nyhetsdøgnet</a>
<div id="vg-nav-container" data-js-url="https://www.vg.no/vgc/cdn/vg-nav/main.1.4.3.js"><header id="vg-nav" class="nav-YcR0y nav-c7UN8"><div class="nav-XKdx7"><div class="nav-RcMhe nav-yqXn3"><a href="https://www.vg.no/" class="nav-KGh55" aria-label="Tilbake til forsiden"><svg width="80" height="16" viewBox="0 0 80 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="M80 13.333A2.667 2.667 0 0 1 77.333 16H46.667A2.667 2.667 0 0 1 44 13.333V2.667A2.667 2.667 0 0 1 46.667 0h30.666A2.667 2.667 0 0 1 80 2.667V4H68.8v-.534a1.6 1.6 0 0 0-1.6-1.6H56.8a1.6 1.6 0 0 0-1.6 1.6v9.067a1.6 1.6 0 0 0 1.6 1.6h10.4a1.6 1.6 0 0 0 1.6-1.6V9.067H62V7.2h18v6.133ZM13.813 16 0 0h13.281l7.969 9.6L29.219 0H42.5L28.687 16H13.813Z"></path></svg></a><nav aria-label="Snarveier" class="nav-QqAtx"><h2 class="nav-peaXA">Snarveier</h2><a class="nav-JaE7z nav-eJCP4" href="https://vglive.no" aria-label="VG Live">VG Live</a><a class="nav-JaE7z nav-eJCP4" href="https://www.vgtv.no/" aria-label="VGTV">VGTV</a><a class="nav-JaE7z nav-eJCP4" href="https://www.vg.no/pluss/" aria-label="VG+">VG+</a><a class="nav-JaE7z nav-eJCP4" href="https://www.vg.no/sport/" aria-label="Sport">Sport</a><a class="nav-JaE7z nav-eJCP4" href="https://tvguide.vg.no/" aria-label="TV-guide">TV-guide</a><a class="nav-JaE7z nav-eJCP4" href="https://www.vg.no/tips-oss/" aria-label="Tips oss">Tips oss</a></nav><div class="nav-baKtZ"><div class="nav-Cb2H9"></div><div class="nav-kRON0"><form class="nav-ngrnj" action="https://www.vg.no/sok"><span class="nav-XsORu"><svg width="16" height="16" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="M6.75 1a5.75 5.75 0 0 1 4.53 9.291l3.515 3.514a.7.7 0 0 1-.99.99l-3.514-3.515A5.75 5.75 0 1 1 6.75 1Zm0 1.5a4.25 4.25 0 1 0 0 8.5 4.25 4.25 0 0 0 0-8.5Z"></path></svg></span><input type="search" autoComplete="off" placeholder="Søk" aria-label="Søk" name="q" value="" class="nav-LeOLw"/></form></div><button class="nav-M44eK nav-nEIia" aria-haspopup="true" aria-expanded="false" aria-controls="global-navigation" aria-label="Meny"><div class="nav-S1nyW"><svg width="40" height="32" viewBox="0 0 40 32" xmlns="http://www.w3.org/2000/svg" fill="#fff"><path d="M16 6a5 5 0 1 0 0 10 5 5 0 0 0 0-10Zm-3 5a3 3 0 1 1 6 0 3 3 0 0 1-6 0Z"></path><path d="M12 18a5 5 0 0 0-5 5v2a1 1 0 1 0 2 0v-2a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v2a1 1 0 1 0 2 0v-2a5 5 0 0 0-5-5h-8ZM24 8a8 8 0 1 1 16 0 8 8 0 0 1-16 0Z"></path><path d="M30.788 10.426h1.794v-.16c.01-.924.341-1.355 1.09-1.805.885-.525 1.463-1.221 1.463-2.334 0-1.657-1.336-2.623-3.215-2.623-1.72 0-3.12.9-3.163 2.793h1.931c.029-.771.602-1.183 1.222-1.183.64 0 1.155.426 1.155 1.084 0 .62-.45 1.032-1.032 1.401-.795.502-1.24 1.009-1.245 2.666v.161Zm.933 3.03c.606 0 1.131-.506 1.136-1.136a1.15 1.15 0 0 0-1.136-1.127 1.132 1.132 0 1 0 0 2.263Z" fill="#D00"></path></svg></div></button><button class="nav-JAMOn nav-nEIia" aria-haspopup="true" aria-expanded="false" aria-controls="global-navigation" aria-label="Meny"><svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="M2 5a1 1 0 0 1 1-1h18a1 1 0 1 1 0 2H3a1 1 0 0 1-1-1ZM2 12a1 1 0 0 1 1-1h18a1 1 0 1 1 0 2H3a1 1 0 0 1-1-1ZM3 18a1 1 0 1 0 0 2h18a1 1 0 1 0 0-2H3Z"></path></svg></button></div></div></div><nav aria-label="Hovedmeny" aria-hidden="true" class="nav-ecbsm"><div class="nav-QjIMR"><div class="nav-movpC"><section><h2><a href="https://www.vg.no/nyheter/" class="nav-FHqqu nav-eJCP4 nav-uwady">Nyheter</a></h2><ul class="nav-pJiJY"><li><a href="https://www.vg.no/nyheter/" class="nav-FHqqu nav-eJCP4">Alle nyheter</a></li><li><a href="https://www.vg.no/nyheter/innenriks/" class="nav-FHqqu nav-eJCP4">Innenriks</a></li><li><a href="https://www.vg.no/nyheter/utenriks/" class="nav-FHqqu nav-eJCP4">Utenriks</a></li><li><a href="https://www.vg.no/nyheter/meninger/" class="nav-FHqqu nav-eJCP4">Meninger</a></li><li><a href="https://www.vg.no/spesial/corona/" class="nav-FHqqu nav-eJCP4">Coronaviruset</a></li><li><a href="https://www.vg.no/spesial/oversikt/" class="nav-FHqqu nav-eJCP4">Spesialer</a></li></ul></section><section><h2><a href="https://www.vg.no/sport/" class="nav-FHqqu nav-eJCP4 nav-uwady">Sport</a></h2><ul class="nav-pJiJY"><li><a href="https://vglive.no" class="nav-FHqqu nav-eJCP4">VG Live</a></li><li><a href="https://www.vg.no/sport/fotball/" class="nav-FHqqu nav-eJCP4">Fotball</a></li><li><a href="https://direkte.vg.no/vinter-ol-2022/61643f1769bd5e00131cb762/2022-02-02" class="nav-FHqqu nav-eJCP4">Vinter-OL 2022</a></li><li><a href="https://direkte.vg.no/vintersport" class="nav-FHqqu nav-eJCP4">Vintersport Direkte</a></li><li><a href="https://www.vg.no/tag/6b534a18-76a9-4652-94b7-2289b3987e58/langrenn" class="nav-FHqqu nav-eJCP4">Langrenn</a></li><li><a href="https://www.vg.no/sport/skiskyting" class="nav-FHqqu nav-eJCP4">Skiskyting</a></li><li><a href="https://www.vg.no/sport/hopp" class="nav-FHqqu nav-eJCP4">Hopp</a></li><li><a href="https://www.vg.no/tag/28131b94-a5f8-49de-9934-145ee3047048/alpint" class="nav-FHqqu nav-eJCP4">Alpint</a></li><li><a href="https://direkte.vg.no/motorsport" class="nav-FHqqu nav-eJCP4">Motorsport</a></li><li><a href="https://www.vg.no/sport/haandball/" class="nav-FHqqu nav-eJCP4">Håndball</a></li><li><a href="https://www.vg.no/sport/ishockey/" class="nav-FHqqu nav-eJCP4">Ishockey</a></li><li><a href="https://direkte.vg.no/sportsdognet" class="nav-FHqqu nav-eJCP4">Sportsdøgnet</a></li></ul></section><section><h2><a href="https://www.vg.no/rampelys/" class="nav-FHqqu nav-eJCP4 nav-uwady">Rampelys</a></h2><ul class="nav-pJiJY"><li><a href="https://www.vg.no/rampelys/film/" class="nav-FHqqu nav-eJCP4">Film</a></li><li><a href="https://www.vg.no/rampelys/bok/" class="nav-FHqqu nav-eJCP4">Bok</a></li><li><a href="https://www.vg.no/rampelys/musikk/" class="nav-FHqqu nav-eJCP4">Musikk</a></li><li><a href="https://www.vg.no/rampelys/spill/" class="nav-FHqqu nav-eJCP4">Spill</a></li><li><a href="https://www.vg.no/rampelys/tv/" class="nav-FHqqu nav-eJCP4">TV</a></li><li><a href="https://www.vglista.no/" class="nav-FHqqu nav-eJCP4">VG-Lista</a></li></ul></section><section hidden=""><h2><a href="https://www.vg.no/forbruker/" class="nav-FHqqu nav-eJCP4 nav-uwady">Forbruker</a></h2><ul class="nav-pJiJY"><li><a href="https://www.vg.no/forbruker/bil-baat-og-motor/" class="nav-FHqqu nav-eJCP4">Bil, båt og motor</a></li><li><a href="https://www.vg.no/forbruker/helse/" class="nav-FHqqu nav-eJCP4">Helse</a></li><li><a href="https://www.vg.no/forbruker/livsstil/" class="nav-FHqqu nav-eJCP4">Livsstil</a></li><li><a href="https://www.vg.no/forbruker/mat-og-drikke/" class="nav-FHqqu nav-eJCP4">Mat og drikke</a></li><li><a href="https://www.vg.no/forbruker/reise" class="nav-FHqqu nav-eJCP4">Reise</a></li><li><a href="https://www.vg.no/forbruker/teknologi/" class="nav-FHqqu nav-eJCP4">Teknologi</a></li><li><a href="https://www.vg.no/sammenlign/forbrukslån/" class="nav-FHqqu nav-eJCP4">Forbrukslån</a></li></ul></section><section><h2><a href="https://www.vg.no/pluss" class="nav-FHqqu nav-eJCP4 nav-uwady">VG+</a></h2><ul class="nav-pJiJY"><li><a href="https://www.vgtv.no/vgpluss-dokumentar" class="nav-FHqqu nav-eJCP4">Dokumentarer</a></li><li><a href="https://www.vg.no/pluss/nyheter" class="nav-FHqqu nav-eJCP4">Nyheter</a></li><li><a href="https://www.vg.no/pluss/sport" class="nav-FHqqu nav-eJCP4">Sport</a></li><li><a href="https://www.vg.no/pluss/rampelys" class="nav-FHqqu nav-eJCP4">Rampelys</a></li><li><a href="https://www.vg.no/pluss/forbruker/bil-baat-og-motor/" class="nav-FHqqu nav-eJCP4">Bil, båt og motor</a></li><li><a href="https://www.vg.no/pluss/forbruker/teknologi/" class="nav-FHqqu nav-eJCP4">Teknologi</a></li><li><a href="https://www.vg.no/pluss/forbruker/mat-og-drikke/" class="nav-FHqqu nav-eJCP4">Mat og drikke</a></li><li><a href="https://www.vg.no/pluss/forbruker/helse/" class="nav-FHqqu nav-eJCP4">Helse</a></li></ul></section><section><h2><a href="https://www.vgtv.no" class="nav-FHqqu nav-eJCP4 nav-uwady">VGTV</a></h2><ul class="nav-pJiJY"><li><a href="https://www.vgtv.no/kategori/100324/underholdning" class="nav-FHqqu nav-eJCP4">Underholdning</a></li><li><a href="https://www.vgtv.no/kategori/121/dokumentar" class="nav-FHqqu nav-eJCP4">Dokumentar</a></li><li><a href="https://www.vgtv.no/live-sport" class="nav-FHqqu nav-eJCP4">Live sport</a></li></ul></section><section hidden=""><h2><a href="https://www.vg.no/tegneserier" class="nav-FHqqu nav-eJCP4 nav-uwady">Tegneserier</a></h2><ul class="nav-pJiJY"><li><a href="https://www.vg.no/tegneserier#comic-pondus" class="nav-FHqqu nav-eJCP4">Pondus</a></li><li><a href="https://www.vg.no/tegneserier#comic-lunch" class="nav-FHqqu nav-eJCP4">Lunch</a></li><li><a href="https://www.vg.no/tegneserier#comic-hjalmar" class="nav-FHqqu nav-eJCP4">Hjalmar</a></li><li><a href="https://www.vg.no/tegneserier#comic-storefri" class="nav-FHqqu nav-eJCP4">Storefri</a></li><li><a href="https://www.vg.no/tegneserier#comic-the-good-innvandrer" class="nav-FHqqu nav-eJCP4">The Good innvandrer</a></li><li><a href="https://www.vg.no/tegneserier#comic-tegnehanne" class="nav-FHqqu nav-eJCP4">Tegnehanne</a></li></ul></section><section hidden=""><h2><a href="https://www.vg.no/podkast" class="nav-FHqqu nav-eJCP4 nav-uwady">Podkast</a></h2><ul class="nav-pJiJY"></ul></section><section><h2><a class="nav-FHqqu nav-eJCP4 nav-uwady">Annet innhold</a></h2><ul class="nav-pJiJY"><li><a href="https://www.vg.no/podkast" class="nav-FHqqu nav-eJCP4">Podkast</a></li><li><a href="https://www.vg.no/spill/ordstjernen" class="nav-FHqqu nav-eJCP4">Ordstjernen</a></li><li><a href="https://e24.no/" class="nav-FHqqu nav-eJCP4">E24</a></li><li><a href="https://www.minmote.no/" class="nav-FHqqu nav-eJCP4">MinMote</a></li><li><a href="https://www.godt.no/" class="nav-FHqqu nav-eJCP4">Godt</a></li><li><a href="https://pent.no/" class="nav-FHqqu nav-eJCP4">Pent</a></li><li><a href="https://www.tek.no/" class="nav-FHqqu nav-eJCP4">Tek.no</a></li><li><a href="https://www.dinepenger.no/" class="nav-FHqqu nav-eJCP4">DinePenger</a></li><li><a href="https://tvguide.vg.no/" class="nav-FHqqu nav-eJCP4">TV-guide</a></li><li><a href="https://www.vektklubb.no/" class="nav-FHqqu nav-eJCP4">Vektklubb</a></li><li><a href="https://www.vg.no/tegneserier" class="nav-FHqqu nav-eJCP4">Tegneserier</a></li><li><a href="https://vgd.no" class="nav-FHqqu nav-eJCP4">VG Debatt</a></li><li><a href="https://vg.e-pages.pub/" class="nav-FHqqu nav-eJCP4">E-avis</a></li></ul></section></div><div class="nav-vYhxw"><div class="nav-q2G21"><section class="nav-bTmRw"><h2>Tjenester</h2><ul class="nav-JiTj3 nav-ijxPo"><li><a href="https://www.vg.no/minnesider/">VG Minnesider</a></li><li><a href="https://www.penger.no/?utm_source=vgno&utm_medium=menu">Penger.no</a></li><li><a href="https://www.diskusjon.no/?utm_source=vgno&utm_medium=vgnav">Diskusjon.no</a></li><li><a href="https://www.vg.no/strom?utm_source=vgnav">Strømguiden</a></li><li><a href="https://www.vg.no/bil/">Bilguiden</a></li><li><a href="http://vgpartnerstudio.no/">Partnerstudio</a></li><li><a href="https://www.vg.no/black-friday">Black Friday</a></li><li><a href="https://www.vg.no/rabattkode/">Rabattkoder</a></li><li><a href="https://matkanalen.tv/">Matkanalen</a></li><li><a href="https://mittanbud.no/">Mitt anbud</a></li><li><a href="https://butikk.vg.no/">VG Butikk</a></li><li><a href="https://elton.app/?utm_source=vgno&utm_medium=meny">Ladeappen Elton</a></li><li><a href="https://kupp.no/?utm_source=vgno&utm_medium=meny">Kupp</a></li></ul></section><section class="nav-bTmRw"><h2>Info og kontakt</h2><ul class="nav-JiTj3"><li><a href="https://www.vg.no/tips-oss/">Tips oss</a></li><li><a href="https://www.vg.no/informasjon/kontakt-oss">Kontakt VG</a></li><li><a href="https://www.vg.no/informasjon/om-schibsted">Informasjon</a></li></ul></section></div></div></div></nav><nav aria-label="Brukermeny" aria-hidden="true" class="nav-z_Hz3"><div class="nav-DRS3A"><div class="nav-nXPWd"></div><div class="nav-EsPst"><div class="nav-DOwj4"><span class="nav-GhF2w nav-eJCP4"><svg width="40" height="32" viewBox="0 0 40 32" xmlns="http://www.w3.org/2000/svg" fill="#fff"><path d="M16 6a5 5 0 1 0 0 10 5 5 0 0 0 0-10Zm-3 5a3 3 0 1 1 6 0 3 3 0 0 1-6 0Z"></path><path d="M12 18a5 5 0 0 0-5 5v2a1 1 0 1 0 2 0v-2a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v2a1 1 0 1 0 2 0v-2a5 5 0 0 0-5-5h-8ZM24 8a8 8 0 1 1 16 0 8 8 0 0 1-16 0Z"></path><path d="M30.788 10.426h1.794v-.16c.01-.924.341-1.355 1.09-1.805.885-.525 1.463-1.221 1.463-2.334 0-1.657-1.336-2.623-3.215-2.623-1.72 0-3.12.9-3.163 2.793h1.931c.029-.771.602-1.183 1.222-1.183.64 0 1.155.426 1.155 1.084 0 .62-.45 1.032-1.032 1.401-.795.502-1.24 1.009-1.245 2.666v.161Zm.933 3.03c.606 0 1.131-.506 1.136-1.136a1.15 1.15 0 0 0-1.136-1.127 1.132 1.132 0 1 0 0 2.263Z" fill="#D00"></path></svg>Du er ikke logget inn</span></div><div class="nav-p1rV2"><span class="nav-SpURe"><svg class="nav-Fq8rp" width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="M12 2a5 5 0 1 0 0 10 5 5 0 0 0 0-10ZM9 7a3 3 0 1 1 6 0 3 3 0 0 1-6 0ZM8 14a5 5 0 0 0-5 5v2a1 1 0 1 0 2 0v-2a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v2a1 1 0 1 0 2 0v-2a5 5 0 0 0-5-5H8Z"></path></svg>Min oversikt</span></div><div class="nav-p1rV2"><span class="nav-SpURe"><svg class="nav-Fq8rp" width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="M20.3064 2C20.5825 2 20.8064 2.22386 20.8064 2.5V21.5C20.8064 21.7761 20.5825 22 20.3064 22H3.3064C3.03025 22 2.8064 21.7761 2.8064 21.5V2.5C2.8064 2.22386 3.03025 2 3.3064 2H20.3064ZM18.8064 4H4.8064V20H18.8064V4ZM16.8064 16V17H6.8064V16H16.8064ZM16.8064 14V15H6.8064V14H16.8064ZM10.8064 12V13H6.8064V12H10.8064ZM16.8064 8V13H11.8064V8H16.8064ZM10.8064 10V11H6.8064V10H10.8064ZM10.8064 8V9H6.8064V8H10.8064Z"></path></svg>Mitt abonnement</span></div><div class="nav-p1rV2"><span class="nav-SpURe"><svg class="nav-Fq8rp" width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="M14.788 12.053c0-1.704-1.396-3.093-3.11-3.093-1.716 0-3.111 1.39-3.111 3.093s1.395 3.092 3.11 3.092c1.715 0 3.11-1.389 3.11-3.092Zm1.609 0c0 2.594-2.118 4.701-4.72 4.701s-4.72-2.107-4.72-4.701c0-2.594 2.118-4.702 4.72-4.702s4.72 2.108 4.72 4.702Zm5.29-1.243v2.338c0 .64-.504 1.107-1.097 1.158l-1.195.264a8.912 8.912 0 0 1-.39.964c.182.26.395.55.73 1.002.432.453.446 1.185.002 1.627l-1.672 1.665c-.435.432-1.128.405-1.579.035a91.562 91.562 0 0 1-1.052-.665 9.495 9.495 0 0 1-1.003.433l-.065.408a49.03 49.03 0 0 0-.13.83C14.2 21.474 13.704 22 13.074 22h-2.392c-.636 0-1.105-.5-1.159-1.09a211.948 211.948 0 0 1-.256-1.125 7.945 7.945 0 0 1-1.114-.43l-.336.241c-.331.236-.493.353-.67.483-.454.428-1.183.441-1.625.001l-1.671-1.664c-.44-.437-.41-1.138-.03-1.589a89.553 89.553 0 0 0 .657-1.02 9.178 9.178 0 0 1-.486-1.14l-.372-.062-.284-.046c-.2-.033-.363-.059-.517-.082-.605-.038-1.131-.53-1.131-1.16v-2.36c0-.638.502-1.104 1.093-1.157.34-.079.65-.148 1.166-.262.129-.393.29-.777.485-1.15l-.218-.297-.471-.652c-.438-.464-.454-1.229.002-1.602l1.672-1.665c.434-.432 1.128-.405 1.578-.035.192.12.365.23.715.456l.359.23c.345-.172.71-.317 1.1-.44l.063-.398c.067-.425.1-.63.141-.868C9.417 2.517 9.91 2 10.534 2h2.392c.635 0 1.102.497 1.159 1.086.058.242.112.484.198.876l.107.487c.318.11.628.242.931.395l.37-.268c.35-.254.523-.379.714-.514.454-.421 1.178-.432 1.617.005l1.672 1.664c.44.437.409 1.139.03 1.59-.096.145-.196.3-.316.489l-.174.272-.277.434c.146.303.276.617.387.942l.387.063c.455.075.6.098.801.128.602.033 1.09.474 1.156 1.16Zm-2.217.299c-.395-.065-.615-.1-.859-.135a.805.805 0 0 1-.662-.581 6.804 6.804 0 0 0-.624-1.527.805.805 0 0 1 .029-.836c.147-.224.263-.405.523-.813l.175-.275.226-.35-1.106-1.1c-.136.096-.292.21-.536.386-.252.183-.412.3-.554.4-.221.314-.65.482-1.072.23a6.097 6.097 0 0 0-1.514-.652.804.804 0 0 1-.57-.593c-.062-.26-.088-.378-.215-.956a53.95 53.95 0 0 0-.156-.698h-1.633c-.027.16-.056.344-.1.628-.073.454-.106.657-.15.917a.805.805 0 0 1-.594.642 6.2 6.2 0 0 0-1.632.65.805.805 0 0 1-.834-.009 56.783 56.783 0 0 1-.772-.49c-.26-.168-.42-.271-.563-.36l-1.1 1.09.34.469c.2.276.356.486.51.685a.805.805 0 0 1 .052.912 6.022 6.022 0 0 0-.711 1.673.805.805 0 0 1-.607.59c-.713.157-1.093.242-1.464.326v1.59l.299.048.287.048c.424.07.611.1.843.135.314.046.57.272.657.577.167.59.41 1.162.728 1.714a.805.805 0 0 1-.025.841c-.13.2-.235.362-.472.731l-.347.54 1.103 1.098.512-.367c.362-.259.522-.374.72-.52a.804.804 0 0 1 .867-.056 6.3 6.3 0 0 0 1.65.635.805.805 0 0 1 .607.603l.19.836.14.606h1.624l.097-.609c.07-.438.101-.631.135-.87a.805.805 0 0 1 .56-.655 7.863 7.863 0 0 0 1.593-.688.804.804 0 0 1 .825.015c.215.134.383.24.758.478l.556.352 1.105-1.1c-.43-.58-.65-.887-.91-1.274a.805.805 0 0 1-.032-.843 7.23 7.23 0 0 0 .627-1.534.805.805 0 0 1 .599-.563l1.486-.329.003-1.563-.612-.1Z"></path></svg>Mine preferanser</span></div><div class="nav-p1rV2"><span class="nav-SpURe"><svg class="nav-Fq8rp" width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="M3.806 18V7.868l7.445 4.964a1 1 0 0 0 1.11 0l7.445-4.964V18h-16ZM17.503 7l-5.697 3.798L6.11 7h11.394Zm3.303-2h-18a1 1 0 0 0-1 1v13a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1Z"></path></svg>Nyhetsbrev</span></div><div class="nav-p1rV2"><a href="https://www.vg.no/informasjon/kontakt-oss" class="nav-GhF2w nav-eJCP4"><svg class="nav-Fq8rp" width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="m4.39 19.419 3.802-1.268a1 1 0 0 1 .767.056 7.384 7.384 0 0 0 3.349.793 7.501 7.501 0 0 0 6.707-4.15 7.379 7.379 0 0 0 .793-3.347l.002-.448C19.6 7.248 16.56 4.21 12.808 4h-.502a7.385 7.385 0 0 0-3.35.795 7.5 7.5 0 0 0-4.148 6.708 7.38 7.38 0 0 0 .793 3.346 1 1 0 0 1 .056.767L4.389 19.42Zm17.418-7.92a9.376 9.376 0 0 1-1.005 4.248A9.5 9.5 0 0 1 12.31 21a9.382 9.382 0 0 1-3.869-.824L3.124 21.95a1 1 0 0 1-1.265-1.265l1.773-5.318A9.498 9.498 0 0 1 8.057 3.007 9.378 9.378 0 0 1 12.308 2l.555.002c4.825.266 8.677 4.118 8.945 8.998v.499Z"></path></svg>Kundeservice</a></div><div class="nav-V_AKw">Schibsted konto</div><div class="nav-p1rV2"><span class="nav-SpURe">Min Schibsted-konto<svg class="nav-SfYMK" width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="M17 6a1.027 1.027 0 0 1 .423.094 1.014 1.014 0 0 1 .284.199l-.09-.08A1.008 1.008 0 0 1 18 7l-.004-.086.004.054V13a1 1 0 1 1-2 0V9.414l-8.293 8.293a1 1 0 0 1-1.32.083l-.094-.083a1 1 0 0 1 0-1.414L14.584 8H11a1 1 0 0 1-.993-.883L10 7a1 1 0 0 1 1-1h6Z"></path></svg></span></div><div class="nav-p1rV2"><a href="https://www.vg.no/minside/personvern" class="nav-GhF2w nav-eJCP4">Personverninnstillinger<svg class="nav-SfYMK" width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="M17 6a1.027 1.027 0 0 1 .423.094 1.014 1.014 0 0 1 .284.199l-.09-.08A1.008 1.008 0 0 1 18 7l-.004-.086.004.054V13a1 1 0 1 1-2 0V9.414l-8.293 8.293a1 1 0 0 1-1.32.083l-.094-.083a1 1 0 0 1 0-1.414L14.584 8H11a1 1 0 0 1-.993-.883L10 7a1 1 0 0 1 1-1h6Z"></path></svg></a></div><div class="nav-sTrZc"></div></div></div></nav></header><script type="application/json" id="VG_NAV_CONFIG" data-reactroot="">{"vgDeviceHeader":"desktop","pathname":"/","hideMastheadExtension":"true"}</script></div>
<!-- googleoff: index -->
<div class="schibsted-data-controller"></div>
<!-- googleon: index -->
<div class="app">
<div class="advert-wrap advert-device-desktop">
<span class="advert-label ">annonse</span>
<div
id="advert-topboard"
class="advert advert-topboard "
style="min-width: 980px; min-height: 150px;"
></div>
<script type="application/json" id="advert-topboard-tag">{"targetId":"advert-topboard","invCode":"no-vg-wde-front_topboard","sizes":[[980,150],[1000,150],[1010,150],[980,300],[1010,300],[728,90],[928,120],[980,240]],"format":"topboard","group":"horseshoe","disableCogwheel":false,"disableLabel":false,"blinkIntegration":false,"partnerstudioFallback":false,"inFeed":false,"threshold":150,"defaultWidth":980,"defaultHeight":150,"allowNativeAds":false,"allowNativeVideo":true,"allowVideo":false}</script>
</div>
<div class="skyscraper-wrap wrap-r">
<div class="advert-wrap advert-device-desktop">
<span class="advert-label ">annonse</span>
<div
id="advert-skyscraperright_1"
class="advert advert-skyscraperright_1 "
style="min-width: 160px; min-height: 600px;"
></div>
<script type="application/json" id="advert-skyscraperright_1-tag">{"targetId":"advert-skyscraperright_1","invCode":"no-vg-wde-front_skyscraperright_1","sizes":[[160,600],[180,500],[180,700],[300,600]],"format":"skyscraperright_1","group":"horseshoe","disableCogwheel":false,"disableLabel":false,"blinkIntegration":false,"partnerstudioFallback":false,"inFeed":false,"threshold":150,"defaultWidth":160,"defaultHeight":600,"allowNativeAds":false,"allowNativeVideo":true,"allowVideo":false}</script>
</div>
</div>
<div class="skyscraper-wrap wrap-l">
<div class="advert-wrap advert-device-desktop">
<span class="advert-label ">annonse</span>
<div
id="advert-skyscraperleft_1"
class="advert advert-skyscraperleft_1 "
style="min-width: 180px; min-height: 701px;"
></div>
<script type="application/json" id="advert-skyscraperleft_1-tag">{"targetId":"advert-skyscraperleft_1","invCode":"no-vg-wde-front_skyscraperleft_1","sizes":[[180,701],[180,501]],"format":"skyscraperleft_1","group":"horseshoe","disableCogwheel":false,"disableLabel":false,"blinkIntegration":false,"partnerstudioFallback":false,"inFeed":false,"threshold":150,"defaultWidth":180,"defaultHeight":701,"allowNativeAds":false,"allowNativeVideo":true,"allowVideo":false}</script>
</div>
</div>
<div class="front-container" >
<h1 class="screen-reader-hidden">VG Forside</h1>
<a class="screen-reader-anchor" name="skip-nav"></a>
<style>
:root {
--base-front-size: 734;
}
</style>
<main
class="main-column"
id="hovedlopet"
data-version="1925419"
data-published="2022-02-19 12:54:08"
style="--front-main-column-width: 734px"
>
<div class="articles" style="margin-bottom: 1rem" >
<div class="widget-winter-olympics-2022 widget container"></div>
<div
id="touchpoint-placement-front-1"
style="grid-column: span 30;"
class="hide-on-empty touchpoint-placement"
></div>
<div class="container container-package" data-article-type="dropp-toppstripe" data-skin="default">
<div class="articles no-header "> <article
class="article article-extract article-width-full has-article-image has-floating-image has-floating-image-left newsroom-vgtv skin-default"
data-article-type="default"
data-skin="default"
data-paywall="false"
itemscope=""
itemtype="https://schema.org/NewsArticle"
data-drfront-id="df-86-de57f32a"
>
<div class="article-container">
<a itemprop="url" href="https://www.vgtv.no/video/233345/vg-i-kyiv-ingen-kan-ignorere-frykten?utm_source=vgfront&utm_content=hovedlopet_row1_pos1">
<figure style="width: 31.2%;">
<div style=" padding-bottom: 77.450980392157%">
<img
alt=""
class="article-image"
sizes="(min-width: 734px) 224px, 30.5vw"
loading="eager"
srcset="https://akamai.vgc.no/drfront/images/2022/02/19/c=233,55,698,541;w=204;h=158;666706.jpg 204w, https://akamai.vgc.no/drfront/images/2022/02/19/c=233,55,698,541;w=337;h=261;666706.jpg 337w"
src="https://akamai.vgc.no/drfront/images/2022/02/19/c=233,55,698,541;w=204;h=158;666706.jpg"
width="224"
height="173" itemprop="image"
onerror="this.src = this.src.replaceAll('https://akamai.vgc.no', 'https://vgc.no'); this.srcset = this.srcset.replaceAll('https://akamai.vgc.no', 'https://vgc.no');"
>
<div class="type-icon">
<img
src="https://www.vg.no/vgc/frimand/gfx/icons/vgtv_play_simple.svg"
loading="lazy"
alt=""
width="24"
height="24"
aria-label="VGTV"
style="opacity: 0; transition: opacity 0.3s ease-in;"
onload="this.style.opacity = 1; this.onload = null;"
/>
</div>
</div>
</figure>
<div class="titles ">
<span class="insert-title " itemprop="alternativeHeadline" role="presentation" aria-hidden="true">VG i Kyiv:</span>
<h3 class="headline" style="font-size: 1.75rem;" itemprop="headline" aria-label="VG i Kyiv: SE: - Innbyggerne har fått lister">
<span aria-hidden="true" class="d-block " style="font-size: 3.438rem;"><strong class="breaking">SE:</strong> - Innbyggerne</span>
<span aria-hidden="true" class="d-block " style="font-size: 4.688rem;">har fått lister</span>
</h3>
<div hidden class="article-meta">
<p class="timestamp"><time class="format-distance-to-now" itemprop="datePublished" datetime="2022-02-19T13:10:33.000Z">2022-02-19T13:10:33.000Z</time></p>
</div>
</div>
</a>
</div>
<script class="tracking-data" type="application/json">{"articleId":"233345","drFrontId":"df-86-de57f32a","drFrontRow":1,"brand":"vgtv.no","row":1,"size":1,"skin":"default","skinIcon":"play-button","experimentId":null,"variantId":null,"teaserText":"SE: - Innbyggerne har f\u00e5tt lister","position":1}</script>
<span hidden itemprop="publisher">VG</span>
</article>
<article
class="article article-extract article-width-full has-article-image has-full-width-image newsroom-vg skin-default"
data-article-type="default"
data-skin="default"
data-paywall="false"
itemscope=""
itemtype="https://schema.org/NewsArticle"
data-drfront-id="df-86-n2966f95"
>
<div class="article-container">
<a itemprop="url" href="https://www.vg.no/nyheter/utenriks/i/47KrmV/russisk-militaeroevelse-farevarsel-utenfor-finnmarkskysten?utm_source=vgfront&utm_content=hovedlopet_row2_pos1">
<figure >
<div style=" padding-bottom: 75.382262996942%">
<img
alt=""
class="article-image"
sizes="(min-width: 734px) 734px, 100vw"
loading="eager"
srcset="https://akamai.vgc.no/drfront/images/2022/02/19/c=131,1,942,710;w=654;h=493;666697.jpg 654w, https://akamai.vgc.no/drfront/images/2022/02/19/c=131,1,942,710;w=1080;h=814;666697.jpg 1080w"
src="https://akamai.vgc.no/drfront/images/2022/02/19/c=131,1,942,710;w=654;h=493;666697.jpg"
width="734"
height="553" itemprop="image"
onerror="this.src = this.src.replaceAll('https://akamai.vgc.no', 'https://vgc.no'); this.srcset = this.srcset.replaceAll('https://akamai.vgc.no', 'https://vgc.no');"
>
</div>
</figure>
<div class="titles ">
<span class="insert-title " itemprop="alternativeHeadline" role="presentation" aria-hidden="true">Russisk atomøvelse i gang utenfor Finnmark:</span>
<h3 class="headline" style="font-size: 1.75rem;" itemprop="headline" aria-label="Russisk atomøvelse i gang utenfor Finnmark: - Dramatisk og provoserende">
<span aria-hidden="true" class="d-block " style="font-size: 6.438rem;">- Dramatisk og</span>
<span aria-hidden="true" class="d-block " style="font-size: 6.75rem;">provoserende</span>
</h3>
<div hidden class="article-meta">
<p class="timestamp"><time class="format-distance-to-now" itemprop="datePublished" datetime="2022-02-19T10:55:02.000Z">2022-02-19T10:55:02.000Z</time></p>
</div>
</div>
</a>
</div>
<script class="tracking-data" type="application/json">{"articleId":"47KrmV","drFrontId":"df-86-n2966f95","drFrontRow":1,"brand":"vg.no","row":2,"size":1,"skin":"default","skinIcon":null,"experimentId":null,"variantId":null,"teaserText":"- Dramatisk og provoserende","position":1}</script>
<span hidden itemprop="publisher">VG</span>
</article>
<article
class="article article-extract article-width-full no-article-image has-full-width-image newsroom-direkte skin-default"
data-article-type="default"
data-skin="default"
data-paywall="false"
itemscope=""
itemtype="https://schema.org/NewsArticle"
data-drfront-id="df-86-d28011db"
>
<div class="article-container">
<a itemprop="url" href="https://direkte.vg.no/nyhetsdognet/news/nato-flytter-ukraina-staben-ut-av-kyiv.soYLns4z0?utm_source=vgfront&utm_content=hovedlopet_row3_pos1">
<div class="titles ">
<h3 class="headline" style="font-size: 1.75rem;" itemprop="headline" aria-label="SISTE: Nato flytter Ukraina- staben ut av Kyiv">
<span aria-hidden="true" class="d-block " style="font-size: 3.313rem;"><strong class="breaking">SISTE:</strong> Nato flytter Ukraina-</span>
<span aria-hidden="true" class="d-block " style="font-size: 5.563rem;">staben ut av Kyiv</span>
</h3>
<div hidden class="article-meta">
<p class="timestamp"><time class="format-distance-to-now" itemprop="datePublished" datetime="2022-02-19T12:13:51.000Z">2022-02-19T12:13:51.000Z</time></p>
</div>
</div>
</a>
</div>
<script class="tracking-data" type="application/json">{"articleId":"soYLns4z0","drFrontId":"df-86-d28011db","drFrontRow":1,"brand":"direkte.vg.no","row":3,"size":1,"skin":"default","skinIcon":null,"experimentId":null,"variantId":null,"teaserText":"SISTE: Nato flytter Ukraina- staben ut av Kyiv","position":1}</script>
<span hidden itemprop="publisher">VG</span>
</article>
<article
class="article article-extract article-width-full has-article-image has-floating-image has-floating-image-left newsroom-e24 skin-default"
data-article-type="default"
data-skin="default"
data-paywall="false"
itemscope=""
itemtype="https://schema.org/NewsArticle"
data-drfront-id="df-86-d76b2c45"
>
<div class="article-container">
<a itemprop="url" href="https://e24.no/teknologi/i/wOpgOP/den-nye-krigfoeringen?utm_source=vgfront&utm_content=hovedlopet_row4_pos1&referer=https%3A%2F%2Fwww.vg.no">
<figure style="width: 31.2%;">
<div style=" padding-bottom: 81.862745098039%">
<img
alt=""
class="article-image"
sizes="(min-width: 734px) 224px, 30.5vw"
loading="eager"
srcset="https://akamai.vgc.no/drfront/images/2022/02/19/c=262,40,742,607;w=204;h=167;666702.jpg 204w, https://akamai.vgc.no/drfront/images/2022/02/19/c=262,40,742,607;w=337;h=276;666702.jpg 337w"
src="https://akamai.vgc.no/drfront/images/2022/02/19/c=262,40,742,607;w=204;h=167;666702.jpg"
width="224"
height="183" itemprop="image"
onerror="this.src = this.src.replaceAll('https://akamai.vgc.no', 'https://vgc.no'); this.srcset = this.srcset.replaceAll('https://akamai.vgc.no', 'https://vgc.no');"
>
<div class="type-icon e24-icon ">
<img
src="https://www.vg.no/vgc/frimand/gfx/icons/e24.svg?x=2"
loading="lazy"
style="opacity: 0;"
onload="this.style.opacity = 1; this.onload = null"
alt=""
width="24"
height="24"
aria-label="E24" />
</div>
</div>
</figure>
<div class="titles ">
<span class="insert-title " itemprop="alternativeHeadline" role="presentation" aria-hidden="true">Amerikanerne advarer:</span>
<h3 class="headline" style="font-size: 1.75rem;" itemprop="headline" aria-label="Amerikanerne advarer: «Tiden for å handle er nå»">
<span aria-hidden="true" class="d-block " style="font-size: 5.188rem;">«Tiden for å</span>
<span aria-hidden="true" class="d-block " style="font-size: 4.625rem;">handle er nå»</span>
</h3>
<div hidden class="article-meta">
<p class="timestamp"><time class="format-distance-to-now" itemprop="datePublished" datetime="2022-02-19T06:04:09.000Z">2022-02-19T06:04:09.000Z</time></p>
</div>
</div>
</a>
</div>
<script class="tracking-data" type="application/json">{"articleId":"wOpgOP","drFrontId":"df-86-d76b2c45","drFrontRow":1,"brand":"e24.no","row":4,"size":1,"skin":"default","skinIcon":"e24","experimentId":null,"variantId":null,"teaserText":"\u00abTiden for \u00e5 handle er n\u00e5\u00bb","position":1}</script>
<span hidden itemprop="publisher">VG</span>
</article>
</div> </div> <article
class="article article-extract article-width-half has-article-image has-full-width-image newsroom-direkte skin-default lazy-render-auto"
data-article-type="default"
data-skin="default"
data-paywall="false"
itemscope=""
itemtype="https://schema.org/NewsArticle"
data-drfront-id="df-86-df22fe2b"
>
<div class="article-container">
<a itemprop="url" href="https://direkte.vg.no/vinter-ol-2022/news/kvinnens-tremil-i-ol-flyttes-starter-natt-til-soendag-kl-0400-norsk-tid.YHCD687fX?utm_source=vgfront&utm_content=hovedlopet_row5_pos1">
<figure >
<div style=" padding-bottom: 76.175548589342%">
<img
alt=""
class="article-image"
sizes="(min-width: 734px) 359px, 48.9vw"
src="https://akamai.vgc.no/gfx/t.gif"
loading="lazy"
data-srcset="https://akamai.vgc.no/drfront/images/2022/02/12/c=1677,293,2924,2227;w=319;h=243;664804.jpg 319w, https://akamai.vgc.no/drfront/images/2022/02/12/c=1677,293,2924,2227;w=527;h=401;664804.jpg 527w"
data-src="https://akamai.vgc.no/drfront/images/2022/02/12/c=1677,293,2924,2227;w=319;h=243;664804.jpg"
width="359"
height="273" itemprop="image"
onerror="this.src = this.src.replaceAll('https://akamai.vgc.no', 'https://vgc.no'); this.srcset = this.srcset.replaceAll('https://akamai.vgc.no', 'https://vgc.no');"
>
<noscript>
<img
alt=""
class="article-image"
sizes="(min-width: 734px) 359px, 48.9vw"
loading="eager"
srcset="https://akamai.vgc.no/drfront/images/2022/02/12/c=1677,293,2924,2227;w=319;h=243;664804.jpg 319w, https://akamai.vgc.no/drfront/images/2022/02/12/c=1677,293,2924,2227;w=527;h=401;664804.jpg 527w"
src="https://akamai.vgc.no/drfront/images/2022/02/12/c=1677,293,2924,2227;w=319;h=243;664804.jpg"
width="359"
height="273" itemprop="image"
onerror="this.src = this.src.replaceAll('https://akamai.vgc.no', 'https://vgc.no'); this.srcset = this.srcset.replaceAll('https://akamai.vgc.no', 'https://vgc.no');"
>
</noscript>
</div>
</figure>
<div class="titles ">
<h3 class="headline" style="font-size: 1.75rem;" itemprop="headline" aria-label="Tremila flyttes">
<span aria-hidden="true" class="d-block " style="font-size: 5.313rem;">Tremila</span>
<span aria-hidden="true" class="d-block " style="font-size: 7rem;">flyttes</span>
</h3>
<div hidden class="article-meta">
<p class="timestamp"><time class="format-distance-to-now" itemprop="datePublished" datetime="2022-02-19T10:37:42.000Z">2022-02-19T10:37:42.000Z</time></p>
</div>
</div>
</a>
</div>
<script class="tracking-data" type="application/json">{"articleId":"YHCD687fX","drFrontId":"df-86-df22fe2b","drFrontRow":2,"brand":"direkte.vg.no","row":5,"size":0.5,"skin":"default","skinIcon":null,"experimentId":null,"variantId":null,"teaserText":"Tremila flyttes","position":1}</script>
<span hidden itemprop="publisher">VG</span>
</article>
<article
class="article article-extract article-width-half has-article-image has-full-width-image newsroom-vg skin-default lazy-render-auto"
data-article-type="default"
data-skin="default"
data-paywall="false"
itemscope=""
itemtype="https://schema.org/NewsArticle"
data-drfront-id="df-86-v24c36a0"
>
<div class="article-container">
<a itemprop="url" href="https://www.vg.no/rampelys/musikk/i/qWrmLm/svensk-ekspert-om-melodi-grand-prix-norge-maa-sende-subwoolfer-til-eurovision?utm_source=vgfront&utm_content=hovedlopet_row5_pos2">
<figure >
<div style=" padding-bottom: 101.56739811912%">
<img
alt=""
class="article-image"
sizes="(min-width: 734px) 359px, 48.9vw"
src="https://akamai.vgc.no/gfx/t.gif"
loading="lazy"
data-srcset="https://akamai.vgc.no/drfront/images/2022/02/19/c=233,18,817,829;w=319;h=324;666699.jpg 319w, https://akamai.vgc.no/drfront/images/2022/02/19/c=233,18,817,829;w=527;h=535;666699.jpg 527w"
data-src="https://akamai.vgc.no/drfront/images/2022/02/19/c=233,18,817,829;w=319;h=324;666699.jpg"
width="359"
height="365" itemprop="image"
onerror="this.src = this.src.replaceAll('https://akamai.vgc.no', 'https://vgc.no'); this.srcset = this.srcset.replaceAll('https://akamai.vgc.no', 'https://vgc.no');"
>
<noscript>
<img
alt=""
class="article-image"
sizes="(min-width: 734px) 359px, 48.9vw"
loading="eager"
srcset="https://akamai.vgc.no/drfront/images/2022/02/19/c=233,18,817,829;w=319;h=324;666699.jpg 319w, https://akamai.vgc.no/drfront/images/2022/02/19/c=233,18,817,829;w=527;h=535;666699.jpg 527w"
src="https://akamai.vgc.no/drfront/images/2022/02/19/c=233,18,817,829;w=319;h=324;666699.jpg"
width="359"
height="365" itemprop="image"
onerror="this.src = this.src.replaceAll('https://akamai.vgc.no', 'https://vgc.no'); this.srcset = this.srcset.replaceAll('https://akamai.vgc.no', 'https://vgc.no');"
>
</noscript>
</div>
</figure>
<div class="titles ">
<span class="insert-title " itemprop="alternativeHeadline" role="presentation" aria-hidden="true">Svensk ekspert:</span>
<h3 class="headline" style="font-size: 1.75rem;" itemprop="headline" aria-label="Svensk ekspert: - Vil garantere Norge finaleplass">
<span aria-hidden="true" class="d-block " style="font-size: 3rem;">- Vil garantere</span>
<span aria-hidden="true" class="d-block " style="font-size: 2.5rem;">Norge finaleplass</span>
</h3>
<div hidden class="article-meta">
<p class="timestamp"><time class="format-distance-to-now" itemprop="datePublished" datetime="2022-02-19T11:49:07.000Z">2022-02-19T11:49:07.000Z</time></p>
</div>
</div>
</a>
</div>
<script class="tracking-data" type="application/json">{"articleId":"qWrmLm","drFrontId":"df-86-v24c36a0","drFrontRow":2,"brand":"vg.no","row":5,"size":0.5,"skin":"default","skinIcon":null,"experimentId":null,"variantId":null,"teaserText":"- Vil garantere Norge finaleplass","position":2}</script>
<span hidden itemprop="publisher">VG</span>
</article>
<article
class="article article-extract article-width-full no-article-image has-full-width-image newsroom-direkte skin-default lazy-render-auto"
data-article-type="default"
data-skin="default"
data-paywall="false"
itemscope=""
itemtype="https://schema.org/NewsArticle"
data-drfront-id="df-86-b2bde2bd"
>
<div class="article-container">
<a itemprop="url" href="https://direkte.vg.no/nyhetsdognet/news/snoescooterulykke-i-porsanger.p_s8ERFXa?utm_source=vgfront&utm_content=hovedlopet_row6_pos1">
<div class="titles ">
<span class="insert-title " itemprop="alternativeHeadline" role="presentation" aria-hidden="true">Porsanger:</span>
<h3 class="headline" style="font-size: 1.75rem;" itemprop="headline" aria-label="Porsanger: Redningshelikopter ut til snøscooterulykke">
<span aria-hidden="true" class="d-block " style="font-size: 4.063rem;">Redningshelikopter ut</span>
<span aria-hidden="true" class="d-block " style="font-size: 4.563rem;">til snøscooterulykke</span>
</h3>
<div hidden class="article-meta">
<p class="timestamp"><time class="format-distance-to-now" itemprop="datePublished" datetime="2022-02-19T12:05:11.000Z">2022-02-19T12:05:11.000Z</time></p>
</div>
</div>
</a>
</div>
<script class="tracking-data" type="application/json">{"articleId":"p_s8ERFXa","drFrontId":"df-86-b2bde2bd","drFrontRow":2,"brand":"direkte.vg.no","row":6,"size":1,"skin":"default","skinIcon":null,"experimentId":null,"variantId":null,"teaserText":"Redningshelikopter ut til sn\u00f8scooterulykke","position":1}</script>
<span hidden itemprop="publisher">VG</span>
</article>
<div
id="partnerstudio-x"
class="partnerstudio-front partnerstudio-empty "
style="grid-column: span 30; visibility: hidden;"
>
<div class="inscreen-target"></div>
</div>
<div class="advert-wrap advert-device-desktop">
<span class="advert-label ">annonse</span>
<div
id="advert-board_1_backfill"
class="advert advert-board_1_backfill "
style="min-width: 580px; min-height: 400px;"
></div>
<script type="application/json" id="advert-board_1_backfill-tag">{"targetId":"advert-board_1_backfill","invCode":"no-vg-wde-front_netboard_1","sizes":[[580,400],[580,500],[1,1]],"format":["netboard_1"],"group":"netboard","disableCogwheel":false,"disableLabel":false,"blinkIntegration":false,"partnerstudioFallback":false,"inFeed":false,"threshold":150,"defaultWidth":580,"defaultHeight":400,"allowNativeAds":true,"allowNativeVideo":true,"allowVideo":true}</script>
</div>
<div class="container" id="vgpluss-offer"></div>
</div>
<div class="defer-render" style="margin-bottom: 1rem" >
<div class="articles" >
<div
id="touchpoint-placement-front-3"
style="grid-column: span 30;"
class="hide-on-empty touchpoint-placement"
></div>
<div class="container container-package" data-article-type="dropp-toppstripe" data-skin="default">
<div class="articles no-header "> <article
class="article article-extract article-width-three-fifth has-article-image has-full-width-image newsroom-vg skin-default lazy-render-auto"
data-article-type="default"
data-skin="default"
data-paywall="false"
itemscope=""
itemtype="https://schema.org/NewsArticle"
data-drfront-id="df-86-g06dc1af"
>
<div class="article-container">
<a itemprop="url" href="https://www.vg.no/sport/langrenn/i/Or2lqk/roeper-bolsjunov-sinne-han-lekte-med-resten?utm_source=vgfront&utm_content=hovedlopet_row7_pos1">
<figure >
<div style=" padding-bottom: 56.382978723404%">
<img
alt=""
class="article-image"
sizes="(min-width: 734px) 403px, 54.9vw"
src="https://akamai.vgc.no/gfx/t.gif"
loading="lazy"
data-srcset="https://akamai.vgc.no/drfront/images/2022/02/19/w=376;h=212;666701.jpg 376w, https://akamai.vgc.no/drfront/images/2022/02/19/w=621;h=350;666701.jpg 621w"
data-src="https://akamai.vgc.no/drfront/images/2022/02/19/w=376;h=212;666701.jpg"
width="403"
height="227" itemprop="image"
onerror="this.src = this.src.replaceAll('https://akamai.vgc.no', 'https://vgc.no'); this.srcset = this.srcset.replaceAll('https://akamai.vgc.no', 'https://vgc.no');"
>
<noscript>
<img
alt=""
class="article-image"
sizes="(min-width: 734px) 403px, 54.9vw"
loading="eager"
srcset="https://akamai.vgc.no/drfront/images/2022/02/19/w=376;h=212;666701.jpg 376w, https://akamai.vgc.no/drfront/images/2022/02/19/w=621;h=350;666701.jpg 621w"
src="https://akamai.vgc.no/drfront/images/2022/02/19/w=376;h=212;666701.jpg"
width="403"
height="227" itemprop="image"
onerror="this.src = this.src.replaceAll('https://akamai.vgc.no', 'https://vgc.no'); this.srcset = this.srcset.replaceAll('https://akamai.vgc.no', 'https://vgc.no');"
>
</noscript>
</div>
</figure>
<div class="titles ">
<h3 class="headline" style="font-size: 1.75rem;" itemprop="headline" aria-label="Bolsjunov-trener: - Han var sint">
<span aria-hidden="true" class="d-block " style="font-size: 3rem;">Bolsjunov-trener:</span>
<span aria-hidden="true" class="d-block " style="font-size: 4.063rem;">- Han var sint</span>
</h3>
<div hidden class="article-meta">
<p class="timestamp"><time class="format-distance-to-now" itemprop="datePublished" datetime="2022-02-19T11:44:10.000Z">2022-02-19T11:44:10.000Z</time></p>
</div>
</div>
</a>
</div>
<script class="tracking-data" type="application/json">{"articleId":"Or2lqk","drFrontId":"df-86-g06dc1af","drFrontRow":3,"brand":"vg.no","row":7,"size":0.6,"skin":"default","skinIcon":null,"experimentId":null,"variantId":null,"teaserText":"Bolsjunov-trener: - Han var sint","position":1}</script>
<span hidden itemprop="publisher">VG</span>
</article>
<article
class="article article-extract article-width-two-fifth has-article-image has-full-width-image newsroom-vgtv skin-default lazy-render-auto"
data-article-type="default"
data-skin="default"
data-paywall="false"
itemscope=""
itemtype="https://schema.org/NewsArticle"
data-drfront-id="df-86-g6db7450"
>
<div class="article-container">
<a itemprop="url" href="https://www.vgtv.no/video/233340/russeren-roter-det-til?utm_source=vgfront&utm_content=hovedlopet_row7_pos2">
<figure >
<div style=" padding-bottom: 75.190839694656%">
<img
alt=""
class="article-image"
sizes="(min-width: 734px) 259px, 35.3vw"
src="https://akamai.vgc.no/gfx/t.gif"
loading="lazy"
data-srcset="https://akamai.vgc.no/drfront/images/2022/02/19/c=331,72,860,647;w=262;h=197;666688.jpg 262w, https://akamai.vgc.no/drfront/images/2022/02/19/c=331,72,860,647;w=433;h=325;666688.jpg 433w"
data-src="https://akamai.vgc.no/drfront/images/2022/02/19/c=331,72,860,647;w=262;h=197;666688.jpg"
width="259"
height="195" itemprop="image"
onerror="this.src = this.src.replaceAll('https://akamai.vgc.no', 'https://vgc.no'); this.srcset = this.srcset.replaceAll('https://akamai.vgc.no', 'https://vgc.no');"
>
<noscript>
<img
alt=""
class="article-image"
sizes="(min-width: 734px) 259px, 35.3vw"
loading="eager"
srcset="https://akamai.vgc.no/drfront/images/2022/02/19/c=331,72,860,647;w=262;h=197;666688.jpg 262w, https://akamai.vgc.no/drfront/images/2022/02/19/c=331,72,860,647;w=433;h=325;666688.jpg 433w"
src="https://akamai.vgc.no/drfront/images/2022/02/19/c=331,72,860,647;w=262;h=197;666688.jpg"
width="259"
height="195" itemprop="image"
onerror="this.src = this.src.replaceAll('https://akamai.vgc.no', 'https://vgc.no'); this.srcset = this.srcset.replaceAll('https://akamai.vgc.no', 'https://vgc.no');"
>
</noscript>
<video
class="preview-video"
data-src="https://svpvodps-vh.akamaized.net/2022/02/6210c992c63f67a8ebfb8a0d/meta_preview_vivi_category.mp4"
loading="lazy"
preload="none"
autoplay
playsinline
muted
loop
disableremoteplayback
></video>
<div class="type-icon">
<img
src="https://www.vg.no/vgc/frimand/gfx/icons/vgtv_play_simple.svg"
loading="lazy"
alt=""
width="24"
height="24"
aria-label="VGTV"
style="opacity: 0; transition: opacity 0.3s ease-in;"
onload="this.style.opacity = 1; this.onload = null;"
/>
<span class="duration" aria-label="0 minutter">00:57</span>
</div>
<div class="type-icon continue-watching" style="display: none">
<img
src="gfx/icons/vgtv_play_simple.svg"
loading="lazy"
alt=""
width="24"
height="24"
aria-label="VGTV"
style="opacity: 0; transition: opacity 0.3s ease-in;"
onload="this.style.opacity = 1; this.onload = null;"
/>
</div>
</div>
</figure>
<div class="titles ">
<h3 class="headline" style="font-size: 1.75rem;" itemprop="headline" aria-label="Russeren roter det til">
<span aria-hidden="true" class="d-block " style="font-size: 3.625rem;">Russeren</span>
<span aria-hidden="true" class="d-block " style="font-size: 3rem;">roter det til</span>
</h3>
<div hidden class="article-meta">
<p class="timestamp"><time class="format-distance-to-now" itemprop="datePublished" datetime="2022-02-19T11:44:39.000Z">2022-02-19T11:44:39.000Z</time></p>
</div>
</div>
</a>
</div>
<script class="tracking-data" type="application/json">{"articleId":"233340","drFrontId":"df-86-g6db7450","drFrontRow":3,"brand":"vgtv.no","row":7,"size":0.4,"skin":"default","skinIcon":"play-button","experimentId":null,"variantId":null,"teaserText":"Russeren roter det til","position":2}</script>
<span hidden itemprop="publisher">VG</span>
</article>
</div> </div> <article
class="article article-extract article-width-two-fifth has-article-image has-full-width-image newsroom-vg skin-review text-center lazy-render-auto"
data-article-type="review"
data-skin="default"
data-paywall="false"
itemscope=""
itemtype="https://schema.org/NewsArticle"
data-drfront-id="df-86-h2e3e3dc"
>
<div class="article-container">
<a itemprop="url" href="https://www.vg.no/rampelys/bok/i/Kz23j4/forfatteren-bak-hyllet-tv-serie-imponerer-enda-mer-med-andreboken?utm_source=vgfront&utm_content=hovedlopet_row8_pos1">
<figure >
<div style=" padding-bottom: 121.37404580153%">
<img
alt=""
class="article-image"
sizes="(min-width: 734px) 284px, 38.7vw"
src="https://akamai.vgc.no/gfx/t.gif"
loading="lazy"
data-srcset="https://akamai.vgc.no/drfront/images/2022/02/19/c=104,13,582,707;w=262;h=318;666700.jpg 262w, https://akamai.vgc.no/drfront/images/2022/02/19/c=104,13,582,707;w=433;h=525;666700.jpg 433w"
data-src="https://akamai.vgc.no/drfront/images/2022/02/19/c=104,13,582,707;w=262;h=318;666700.jpg"
width="284"
height="345" itemprop="image"
onerror="this.src = this.src.replaceAll('https://akamai.vgc.no', 'https://vgc.no'); this.srcset = this.srcset.replaceAll('https://akamai.vgc.no', 'https://vgc.no');"
>
<noscript>
<img
alt=""
class="article-image"
sizes="(min-width: 734px) 284px, 38.7vw"
loading="eager"
srcset="https://akamai.vgc.no/drfront/images/2022/02/19/c=104,13,582,707;w=262;h=318;666700.jpg 262w, https://akamai.vgc.no/drfront/images/2022/02/19/c=104,13,582,707;w=433;h=525;666700.jpg 433w"
src="https://akamai.vgc.no/drfront/images/2022/02/19/c=104,13,582,707;w=262;h=318;666700.jpg"
width="284"
height="345" itemprop="image"
onerror="this.src = this.src.replaceAll('https://akamai.vgc.no', 'https://vgc.no'); this.srcset = this.srcset.replaceAll('https://akamai.vgc.no', 'https://vgc.no');"
>
</noscript>
</div>
</figure>
<div class="topic-sticker"><img class="dice" src="https://www.vg.no/vgc/frimand/gfx/icons/old-dice-5.svg" loading="lazy" alt="" aria-label="Terninkast 5" width="20" height="20" />
<span>bok</span>
</div>
<div class="titles ">
<h3 class="headline" style="font-size: 2.25rem;" itemprop="headline" aria-label="Wow, som hun kan skrive!">
<span aria-hidden="true" class="d-block titlewrap " >Wow, som hun</span>
<span aria-hidden="true" class="d-block titlewrap " >kan skrive!</span>
</h3>
<div hidden class="article-meta">
<p class="timestamp"><time class="format-distance-to-now" itemprop="datePublished" datetime="2022-02-19T09:00:00.000Z">2022-02-19T09:00:00.000Z</time></p>
</div>
</div>
</a>
</div>
<script class="tracking-data" type="application/json">{"articleId":"Kz23j4","drFrontId":"df-86-h2e3e3dc","drFrontRow":4,"brand":"vg.no","row":8,"size":0.4,"skin":"review","skinIcon":"meninger","experimentId":null,"variantId":null,"teaserText":"Wow, som hun kan skrive!","position":1}</script>
<span hidden itemprop="publisher">VG</span>
</article>
<article
class="article article-extract article-width-three-fifth has-article-image has-full-width-image newsroom-vgtv skin-default lazy-render-auto"
data-article-type="default"
data-skin="default"
data-paywall="false"
itemscope=""
itemtype="https://schema.org/NewsArticle"
data-drfront-id="df-86-k213cec9"
>
<div class="article-container">
<a itemprop="url" href="https://www.vgtv.no/video/233320/hovland-slag-forbloeffer-gaar-ikke-an-aa-forklare?utm_source=vgfront&utm_content=hovedlopet_row8_pos2">
<figure >
<div style=" padding-bottom: 65.425531914894%">
<img
alt=""
class="article-image"
sizes="(min-width: 734px) 434px, 59.1vw"
src="https://akamai.vgc.no/gfx/t.gif"
loading="lazy"
data-srcset="https://akamai.vgc.no/drfront/images/2022/02/19/c=297,12,977,640;w=376;h=246;666641.jpg 376w, https://akamai.vgc.no/drfront/images/2022/02/19/c=297,12,977,640;w=621;h=406;666641.jpg 621w"
data-src="https://akamai.vgc.no/drfront/images/2022/02/19/c=297,12,977,640;w=376;h=246;666641.jpg"
width="434"
height="284" itemprop="image"
onerror="this.src = this.src.replaceAll('https://akamai.vgc.no', 'https://vgc.no'); this.srcset = this.srcset.replaceAll('https://akamai.vgc.no', 'https://vgc.no');"
>
<noscript>
<img
alt=""
class="article-image"
sizes="(min-width: 734px) 434px, 59.1vw"
loading="eager"
srcset="https://akamai.vgc.no/drfront/images/2022/02/19/c=297,12,977,640;w=376;h=246;666641.jpg 376w, https://akamai.vgc.no/drfront/images/2022/02/19/c=297,12,977,640;w=621;h=406;666641.jpg 621w"
src="https://akamai.vgc.no/drfront/images/2022/02/19/c=297,12,977,640;w=376;h=246;666641.jpg"
width="434"
height="284" itemprop="image"
onerror="this.src = this.src.replaceAll('https://akamai.vgc.no', 'https://vgc.no'); this.srcset = this.srcset.replaceAll('https://akamai.vgc.no', 'https://vgc.no');"
>
</noscript>
<video
class="preview-video"
data-src="https://svpvodps-vh.akamaized.net/2022/02/62104d3fc63f674c53fb89fc/meta_preview_vivi_category.mp4"
loading="lazy"
preload="none"
autoplay
playsinline
muted
loop
disableremoteplayback
></video>
<div class="type-icon">
<img
src="https://www.vg.no/vgc/frimand/gfx/icons/vgtv_play_simple.svg"
loading="lazy"
alt=""
width="24"
height="24"
aria-label="VGTV"
style="opacity: 0; transition: opacity 0.3s ease-in;"
onload="this.style.opacity = 1; this.onload = null;"
/>
<span class="duration" aria-label="1 minutter">01:20</span>
</div>
<div class="type-icon continue-watching" style="display: none">
<img
src="gfx/icons/vgtv_play_simple.svg"
loading="lazy"
alt=""
width="24"
height="24"
aria-label="VGTV"
style="opacity: 0; transition: opacity 0.3s ease-in;"
onload="this.style.opacity = 1; this.onload = null;"
/>
</div>
</div>
</figure>
<div class="titles ">
<span class="insert-title " itemprop="alternativeHeadline" role="presentation" aria-hidden="true">Hovland-slag forbløffer:</span>
<h3 class="headline" style="font-size: 1.75rem;" itemprop="headline" aria-label="Hovland-slag forbløffer: - Går ikke an å forklare">
<span aria-hidden="true" class="d-block " style="font-size: 4.25rem;">- Går ikke an</span>
<span aria-hidden="true" class="d-block " style="font-size: 5.438rem;">å forklare</span>
</h3>
<div hidden class="article-meta">
<p class="timestamp"><time class="format-distance-to-now" itemprop="datePublished" datetime="2022-02-19T07:28:54.000Z">2022-02-19T07:28:54.000Z</time></p>
</div>
</div>
</a>
</div>
<script class="tracking-data" type="application/json">{"articleId":"233320","drFrontId":"df-86-k213cec9","drFrontRow":4,"brand":"vgtv.no","row":8,"size":0.6,"skin":"default","skinIcon":"play-button","experimentId":null,"variantId":null,"teaserText":"- G\u00e5r ikke an \u00e5 forklare","position":2}</script>
<span hidden itemprop="publisher">VG</span>
</article>
<div class="container ordstjernen-retention" hidden>
<article
class="article article-extract article-width-full has-article-image has-floating-image has-floating-image-left newsroom- skin- lazy-render-auto"
data-article-type=""
data-skin=""
data-paywall="null"
itemscope=""
itemtype="https://schema.org/NewsArticle"
data-drfront-id=""
>
<div class="article-container">
<a itemprop="url" href="https://www.vg.no/spill/ordstjernen?utm_source=vgfront&utm_campaign=retention&utm_content=row5">
<figure style="width: 30.6%;">
<div style=" padding-bottom: 60%">
<img
alt=""
class="article-image"
sizes="(min-width: 734px) 225px, 30.7vw"
src="https://akamai.vgc.no/gfx/t.gif"
loading="lazy"
data-srcset="https://www.vg.no/spill/ordstjernen/preview/today-nice.png 200w"
data-src="https://www.vg.no/spill/ordstjernen/preview/today-nice.png"
width="225"
height="135" itemprop="image"
onerror="this.src = this.src.replaceAll('https://akamai.vgc.no', 'https://vgc.no'); this.srcset = this.srcset.replaceAll('https://akamai.vgc.no', 'https://vgc.no');"
>
<noscript>
<img
alt=""
class="article-image"
sizes="(min-width: 734px) 225px, 30.7vw"
loading="eager"
srcset="https://www.vg.no/spill/ordstjernen/preview/today-nice.png 200w"
src="https://www.vg.no/spill/ordstjernen/preview/today-nice.png"
width="225"
height="135" itemprop="image"
onerror="this.src = this.src.replaceAll('https://akamai.vgc.no', 'https://vgc.no'); this.srcset = this.srcset.replaceAll('https://akamai.vgc.no', 'https://vgc.no');"
>
</noscript>
</div>
</figure>
<div class="titles ">
<span class="insert-title " itemprop="alternativeHeadline" role="presentation" aria-hidden="true">Nyhet - nå med flerspiller:</span>
<h3 class="headline" style="font-size: 1.75rem;" itemprop="headline" aria-label="Nyhet - nå med flerspiller: Klarer du dagens ordstjerne?">
<span aria-hidden="true" class="d-block " style="font-size: 3.688rem;">Klarer du dagens</span>
<span aria-hidden="true" class="d-block " style="font-size: 5.5rem;">ordstjerne?</span>
</h3>
<div hidden class="article-meta">
</div>
</div>
</a>
</div>
<script class="tracking-data" type="application/json">{"articleId":"vg-ordstjernen-retention","drFrontId":"vg-ordstjernen-retention","drFrontRow":null,"brand":"vg.no","row":5,"size":1,"skin":null,"skinIcon":null,"experimentId":null,"variantId":null,"teaserText":"Klarer du dagens ordstjerne?","position":null}</script>
<span hidden itemprop="publisher">VG</span>
</article>
</div>
<section class="container widget widget-corona" style="max-width: 100%;"></section>
<article
class="article article-extract article-width-full has-article-image has-floating-image has-floating-image-right newsroom-vg skin-default lazy-render-auto"
data-article-type="default"
data-skin="default"
data-paywall="false"
itemscope=""
itemtype="https://schema.org/NewsArticle"
data-drfront-id="df-86-d51535f4"
>
<div class="article-container">
<a itemprop="url" href="https://www.vg.no/rampelys/i/rEGk3w/haddy-njie-og-trond-giske-har-faatt-en-datter?utm_source=vgfront&utm_content=hovedlopet_row9_pos1">
<figure style="width: 31.2%;">
<div style=" padding-bottom: 107.35294117647%">
<img
alt=""
class="article-image"
sizes="(min-width: 734px) 229px, 31.2vw"
src="https://akamai.vgc.no/gfx/t.gif"
loading="lazy"
data-srcset="https://akamai.vgc.no/drfront/images/2022/02/19/c=128,17,708,760;w=204;h=219;666704.jpg 204w, https://akamai.vgc.no/drfront/images/2022/02/19/c=128,17,708,760;w=337;h=362;666704.jpg 337w"
data-src="https://akamai.vgc.no/drfront/images/2022/02/19/c=128,17,708,760;w=204;h=219;666704.jpg"
width="229"
height="246" itemprop="image"
onerror="this.src = this.src.replaceAll('https://akamai.vgc.no', 'https://vgc.no'); this.srcset = this.srcset.replaceAll('https://akamai.vgc.no', 'https://vgc.no');"
>
<noscript>
<img
alt=""
class="article-image"
sizes="(min-width: 734px) 229px, 31.2vw"
loading="eager"
srcset="https://akamai.vgc.no/drfront/images/2022/02/19/c=128,17,708,760;w=204;h=219;666704.jpg 204w, https://akamai.vgc.no/drfront/images/2022/02/19/c=128,17,708,760;w=337;h=362;666704.jpg 337w"
src="https://akamai.vgc.no/drfront/images/2022/02/19/c=128,17,708,760;w=204;h=219;666704.jpg"
width="229"
height="246" itemprop="image"
onerror="this.src = this.src.replaceAll('https://akamai.vgc.no', 'https://vgc.no'); this.srcset = this.srcset.replaceAll('https://akamai.vgc.no', 'https://vgc.no');"
>
</noscript>
</div>
</figure>
<div class="titles ">
<h3 class="headline" style="font-size: 1.75rem;" itemprop="headline" aria-label="Haddy har født: Dette skal barnet hete">
<span aria-hidden="true" class="d-block " style="font-size: 4.063rem;">Haddy har født:</span>
<span aria-hidden="true" class="d-block " style="font-size: 6.313rem;">Dette skal</span>
<span aria-hidden="true" class="d-block " style="font-size: 5.5rem;">barnet hete</span>
</h3>
<div hidden class="article-meta">
<p class="timestamp"><time class="format-distance-to-now" itemprop="datePublished" datetime="2022-02-19T12:07:32.000Z">2022-02-19T12:07:32.000Z</time></p>
</div>
</div>
</a>
</div>
<script class="tracking-data" type="application/json">{"articleId":"rEGk3w","drFrontId":"df-86-d51535f4","drFrontRow":5,"brand":"vg.no","row":9,"size":1,"skin":"default","skinIcon":null,"experimentId":null,"variantId":null,"teaserText":"Haddy har f\u00f8dt: Dette skal barnet hete","position":1}</script>
<span hidden itemprop="publisher">VG</span>
</article>
<article
class="article article-extract article-width-full has-article-image has-full-width-image newsroom-vg skin-default lazy-render-auto"
data-article-type="default"
data-skin="default"
data-paywall="false"
itemscope=""
itemtype="https://schema.org/NewsArticle"
data-drfront-id="df-86-n6e33fe5"
>
<div class="article-container">
<a itemprop="url" href="https://www.vg.no/nyheter/innenriks/i/rEy8Pe/erna-solberg-ser-ikke-for-meg-noen-internasjonal-toppjobb?utm_source=vgfront&utm_content=hovedlopet_row10_pos1">
<figure >
<div style=" padding-bottom: 66.666666666667%">
<img
alt=""
class="article-image"
sizes="(min-width: 734px) 734px, 100vw"
src="https://akamai.vgc.no/gfx/t.gif"
loading="lazy"
data-srcset="https://akamai.vgc.no/drfront/images/2022/02/19/w=654;h=436;666671.jpg 654w, https://akamai.vgc.no/drfront/images/2022/02/19/w=1080;h=720;666671.jpg 1080w"
data-src="https://akamai.vgc.no/drfront/images/2022/02/19/w=654;h=436;666671.jpg"
width="734"
height="489" itemprop="image"
onerror="this.src = this.src.replaceAll('https://akamai.vgc.no', 'https://vgc.no'); this.srcset = this.srcset.replaceAll('https://akamai.vgc.no', 'https://vgc.no');"
>
<noscript>
<img
alt=""
class="article-image"
sizes="(min-width: 734px) 734px, 100vw"
loading="eager"
srcset="https://akamai.vgc.no/drfront/images/2022/02/19/w=654;h=436;666671.jpg 654w, https://akamai.vgc.no/drfront/images/2022/02/19/w=1080;h=720;666671.jpg 1080w"
src="https://akamai.vgc.no/drfront/images/2022/02/19/w=654;h=436;666671.jpg"
width="734"
height="489" itemprop="image"
onerror="this.src = this.src.replaceAll('https://akamai.vgc.no', 'https://vgc.no'); this.srcset = this.srcset.replaceAll('https://akamai.vgc.no', 'https://vgc.no');"
>
</noscript>
</div>
</figure>
<div class="titles ">
<span class="insert-title " itemprop="alternativeHeadline" role="presentation" aria-hidden="true">Erna blir i Norge:</span>
<h3 class="headline" style="font-size: 1.75rem;" itemprop="headline" aria-label="Erna blir i Norge: Vil fjerne Jonas">
<span aria-hidden="true" class="d-block " style="font-size: 6.063rem;">Vil fjerne Jonas</span>