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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
|
<!DOCTYPE html>
<html lang="en" class="large-screen-ready v2023 " data-source="cms">
<head>
<link rel="dns-prefetch" href="//www.googletagmanager.com">
<link rel="dns-prefetch" href="//cdn-production-opera-website.operacdn.com">
<link rel="dns-prefetch" href="//connect.facebook.net">
<link rel="dns-prefetch" href="//www.clarity.ms">
<link rel="dns-prefetch" href="//bat.bing.com">
<link rel="preconnect" href="//www.googletagmanager.com" crossorigin>
<link rel="preconnect" href="//cdn-production-opera-website.operacdn.com" crossorigin>
<link rel="preconnect" href="//connect.facebook.net" crossorigin>
<link rel="preconnect" href="//www.clarity.ms" crossorigin>
<link rel="preconnect" href="//bat.bing.com" crossorigin>
<link rel="preload" href="https://cdn-production-opera-website.operacdn.com/staticfiles/b21a8376d942833de6fc.91f7ad7162e8.woff2" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="https://cdn-production-opera-website.operacdn.com/staticfiles/067e5dad13c9184c2ba1.c0d25ced7cb5.woff2" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="https://cdn-production-opera-website.operacdn.com/staticfiles/runtime-opera.859fb6b88ebd.js" as="script">
<link rel="preload" href="https://cdn-production-opera-website.operacdn.com/staticfiles/vendors-opera.50c621ac0d9e.js" as="script">
<link rel="preload" href="https://cdn-production-opera-website.operacdn.com/staticfiles/main.35e846c97cdc.js" as="script">
<!-- Google Tag Manager dataLayer init, Default consent states -->
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('consent', 'default', {
'ad_storage': '',
'ad_user_data': '',
'ad_personalization': '',
'analytics_storage': ''
});
</script>
<!-- Default MS UET consent state -->
<script>
window.uetq = window.uetq || [];
window.uetq.push('consent', 'default', {
'ad_storage': ''
});
</script>
<script>
let isOfa;
let isOfaPromise = navigator.userAgentData.getHighEntropyValues([
"brands",
"platform",
]);
isOfaPromise.then(ua => {
isOfa = JSON.stringify(ua.brands).includes('OperaMobile') && ua.platform.includes('Android');
if (!isOfa) {
(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', 'GTM-PRBZ42F');
}
})
</script>
<meta charset="UTF-8">
<meta name="viewport"
content="initial-scale=1, width=device-width">
<title>Privacy Statement</title>
<meta name="description" content="Privacy Statement">
<meta name="theme-color" content="#FF1B2D">
<link rel="apple-touch-icon" href="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/favicon/opera/apple-touch-icon.00d9278d6de6.png">
<link rel="apple-touch-icon" sizes="180x180" href="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/favicon/opera/apple-touch-icon-180x180.00d9278d6de6.png">
<link rel="apple-touch-icon" sizes="167x167" href="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/favicon/opera/apple-touch-icon-167x167.51b4e69b6ca8.png">
<link rel="apple-touch-icon" sizes="152x152" href="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/favicon/opera/apple-touch-icon-152x152.9015ccf59125.png">
<link rel="apple-touch-icon" sizes="120x120" href="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/favicon/opera/apple-touch-icon-120x120.83ce850a6a9a.png">
<link rel="apple-touch-icon" sizes="76x76" href="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/favicon/opera/apple-touch-icon-76x76.006d0edce766.png">
<link rel="apple-touch-icon" sizes="57x57" href="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/favicon/opera/apple-touch-icon-57x57.fb71e1144d70.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/favicon/opera/favicon-32x32.a769c19798b2.png">
<link rel="icon" type="image/png" sizes="16x16" href="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/favicon/opera/favicon-16x16.981be286c249.png">
<link rel="manifest" href="/webmanifest">
<link rel="mask-icon" href="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/favicon/opera/safari-pinned-tab.2ff3aa479bec.svg" color="#ff0a21">
<link rel="shortcut icon" href="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/favicon/opera/favicon.90b13d0c7b36.ico">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-config" content="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/favicon/opera/browserconfig.f5848516ccd3.xml">
<meta name="theme-color" content="#ffffff">
<meta name="robots" content="noindex,nofollow" />
<meta property="og:title" content="Privacy Statement">
<meta property="og:image" content="">
<meta property="og:description" content="Privacy Statement">
<meta property="og:type" content="website">
<meta property="og:url" content="https://www.opera.com/legal/privacy">
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@opera">
<meta name="twitter:title" content="Privacy Statement">
<meta name="twitter:description" content="Privacy Statement">
<meta name="twitter:image" content="">
<meta property="vk:image" content="">
<style>.wrapper{box-sizing:border-box;margin:0 auto;max-width:136.7rem}.container-fluid{margin-left:auto;margin-right:auto;padding-left:2rem;padding-right:2rem}@media only screen and (min-width:1224px){.container-fluid{padding-left:9.3rem;padding-right:9.3rem}}.row{box-sizing:border-box;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;margin-left:-1rem;margin-right:-1rem;-webkit-box-flex:0,1,auto;-moz-box-flex:0,1,auto;-webkit-flex:0,1,auto;-ms-flex:0,1,auto;flex:0,1,auto;-webkit-flex-direction:row;-moz-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;-moz-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.row.reverse{-webkit-flex-direction:row-reverse;-moz-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.col.reverse{-webkit-flex-direction:column-reverse;-moz-flex-direction:column-reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.col-xs{-webkit-flex-basis:auto;-moz-flex-basis:auto;-ms-flex-basis:auto;flex-basis:auto}.col-xs,.col-xs-1{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-1{-webkit-flex-basis:8.3333333333%;-moz-flex-basis:8.3333333333%;-ms-flex-basis:8.3333333333%;flex-basis:8.3333333333%;max-width:8.3333333333%}.col-xs-2{-webkit-flex-basis:16.6666666667%;-moz-flex-basis:16.6666666667%;-ms-flex-basis:16.6666666667%;flex-basis:16.6666666667%;max-width:16.6666666667%}.col-xs-2,.col-xs-3{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-3{-webkit-flex-basis:25%;-moz-flex-basis:25%;-ms-flex-basis:25%;flex-basis:25%;max-width:25%}.col-xs-4{-webkit-flex-basis:33.3333333333%;-moz-flex-basis:33.3333333333%;-ms-flex-basis:33.3333333333%;flex-basis:33.3333333333%;max-width:33.3333333333%}.col-xs-4,.col-xs-5{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-5{-webkit-flex-basis:41.6666666667%;-moz-flex-basis:41.6666666667%;-ms-flex-basis:41.6666666667%;flex-basis:41.6666666667%;max-width:41.6666666667%}.col-xs-6{-webkit-flex-basis:50%;-moz-flex-basis:50%;-ms-flex-basis:50%;flex-basis:50%;max-width:50%}.col-xs-6,.col-xs-7{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-7{-webkit-flex-basis:58.3333333333%;-moz-flex-basis:58.3333333333%;-ms-flex-basis:58.3333333333%;flex-basis:58.3333333333%;max-width:58.3333333333%}.col-xs-8{-webkit-flex-basis:66.6666666667%;-moz-flex-basis:66.6666666667%;-ms-flex-basis:66.6666666667%;flex-basis:66.6666666667%;max-width:66.6666666667%}.col-xs-8,.col-xs-9{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-9{-webkit-flex-basis:75%;-moz-flex-basis:75%;-ms-flex-basis:75%;flex-basis:75%;max-width:75%}.col-xs-10{-webkit-flex-basis:83.3333333333%;-moz-flex-basis:83.3333333333%;-ms-flex-basis:83.3333333333%;flex-basis:83.3333333333%;max-width:83.3333333333%}.col-xs-10,.col-xs-11{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-11{-webkit-flex-basis:91.6666666667%;-moz-flex-basis:91.6666666667%;-ms-flex-basis:91.6666666667%;flex-basis:91.6666666667%;max-width:91.6666666667%}.col-xs-12{-webkit-flex-basis:100%;-moz-flex-basis:100%;-ms-flex-basis:100%;flex-basis:100%;max-width:100%}.col-xs-12,.col-xs-offset-0{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-offset-0{margin-left:0}.col-xs-offset-1{margin-left:8.3333333333%}.col-xs-offset-1,.col-xs-offset-2{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-offset-2{margin-left:16.6666666667%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-3,.col-xs-offset-4{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-offset-4{margin-left:33.3333333333%}.col-xs-offset-5{margin-left:41.6666666667%}.col-xs-offset-5,.col-xs-offset-6{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-offset-6{margin-left:50%}.col-xs-offset-7{margin-left:58.3333333333%}.col-xs-offset-7,.col-xs-offset-8{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-offset-8{margin-left:66.6666666667%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-9,.col-xs-offset-10{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-offset-10{margin-left:83.3333333333%}.col-xs-offset-11{margin-left:91.6666666667%}.col-xs-offset-11,.col-xs-offset-12{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-offset-12{margin-left:100%}.col-xs{-webkit-flex-basis:0;-moz-flex-basis:0;-ms-flex-basis:0;flex-basis:0;-webkit-flex-grow:1;-moz-flex-grow:1;-ms-flex-grow:1;flex-grow:1;max-width:100%}.start-xs{-webkit-justify-content:flex-start;-moz-justify-content:flex-start;-ms-justify-content:flex-start;justify-content:flex-start;text-align:left;-ms-flex-pack:flex-start}.center-xs{-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;text-align:center;-ms-flex-pack:center}.end-xs{-webkit-justify-content:flex-end;-moz-justify-content:flex-end;-ms-justify-content:flex-end;justify-content:flex-end;text-align:right;-ms-flex-pack:flex-end}.top-xs{-webkit-align-items:flex-start;-moz-align-items:flex-start;-ms-align-items:flex-start;align-items:flex-start}.middle-xs{-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;align-items:center}.bottom-xs{-webkit-align-items:flex-end;-moz-align-items:flex-end;-ms-align-items:flex-end;align-items:flex-end}.around-xs{-webkit-justify-content:space-around;-moz-justify-content:space-around;-ms-justify-content:space-around;justify-content:space-around;-ms-flex-pack:space-around}.between-xs{-webkit-justify-content:space-between;-moz-justify-content:space-between;-ms-justify-content:space-between;justify-content:space-between;-ms-flex-pack:space-between}.first-xs{order:-1}.last-xs{order:1}@media only screen and (min-width:320px){.container{width:32rem}.col-xs{-webkit-flex-basis:auto;-moz-flex-basis:auto;-ms-flex-basis:auto;flex-basis:auto}.col-xs,.col-xs-1{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-1{-webkit-flex-basis:8.3333333333%;-moz-flex-basis:8.3333333333%;-ms-flex-basis:8.3333333333%;flex-basis:8.3333333333%;max-width:8.3333333333%}.col-xs-2{-webkit-flex-basis:16.6666666667%;-moz-flex-basis:16.6666666667%;-ms-flex-basis:16.6666666667%;flex-basis:16.6666666667%;max-width:16.6666666667%}.col-xs-2,.col-xs-3{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-3{-webkit-flex-basis:25%;-moz-flex-basis:25%;-ms-flex-basis:25%;flex-basis:25%;max-width:25%}.col-xs-4{-webkit-flex-basis:33.3333333333%;-moz-flex-basis:33.3333333333%;-ms-flex-basis:33.3333333333%;flex-basis:33.3333333333%;max-width:33.3333333333%}.col-xs-4,.col-xs-5{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-5{-webkit-flex-basis:41.6666666667%;-moz-flex-basis:41.6666666667%;-ms-flex-basis:41.6666666667%;flex-basis:41.6666666667%;max-width:41.6666666667%}.col-xs-6{-webkit-flex-basis:50%;-moz-flex-basis:50%;-ms-flex-basis:50%;flex-basis:50%;max-width:50%}.col-xs-6,.col-xs-7{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-7{-webkit-flex-basis:58.3333333333%;-moz-flex-basis:58.3333333333%;-ms-flex-basis:58.3333333333%;flex-basis:58.3333333333%;max-width:58.3333333333%}.col-xs-8{-webkit-flex-basis:66.6666666667%;-moz-flex-basis:66.6666666667%;-ms-flex-basis:66.6666666667%;flex-basis:66.6666666667%;max-width:66.6666666667%}.col-xs-8,.col-xs-9{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-9{-webkit-flex-basis:75%;-moz-flex-basis:75%;-ms-flex-basis:75%;flex-basis:75%;max-width:75%}.col-xs-10{-webkit-flex-basis:83.3333333333%;-moz-flex-basis:83.3333333333%;-ms-flex-basis:83.3333333333%;flex-basis:83.3333333333%;max-width:83.3333333333%}.col-xs-10,.col-xs-11{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-11{-webkit-flex-basis:91.6666666667%;-moz-flex-basis:91.6666666667%;-ms-flex-basis:91.6666666667%;flex-basis:91.6666666667%;max-width:91.6666666667%}.col-xs-12{-webkit-flex-basis:100%;-moz-flex-basis:100%;-ms-flex-basis:100%;flex-basis:100%;max-width:100%}.col-xs-12,.col-xs-offset-0{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-offset-0{margin-left:0}.col-xs-offset-1{margin-left:8.3333333333%}.col-xs-offset-1,.col-xs-offset-2{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-offset-2{margin-left:16.6666666667%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-3,.col-xs-offset-4{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-offset-4{margin-left:33.3333333333%}.col-xs-offset-5{margin-left:41.6666666667%}.col-xs-offset-5,.col-xs-offset-6{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-offset-6{margin-left:50%}.col-xs-offset-7{margin-left:58.3333333333%}.col-xs-offset-7,.col-xs-offset-8{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-offset-8{margin-left:66.6666666667%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-9,.col-xs-offset-10{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-offset-10{margin-left:83.3333333333%}.col-xs-offset-11{margin-left:91.6666666667%}.col-xs-offset-11,.col-xs-offset-12{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-offset-12{margin-left:100%}.col-xs{-webkit-flex-basis:0;-moz-flex-basis:0;-ms-flex-basis:0;flex-basis:0;-webkit-flex-grow:1;-moz-flex-grow:1;-ms-flex-grow:1;flex-grow:1;max-width:100%}.start-xs{-webkit-justify-content:flex-start;-moz-justify-content:flex-start;-ms-justify-content:flex-start;justify-content:flex-start;text-align:left;-ms-flex-pack:flex-start}.center-xs{-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;text-align:center;-ms-flex-pack:center}.end-xs{-webkit-justify-content:flex-end;-moz-justify-content:flex-end;-ms-justify-content:flex-end;justify-content:flex-end;text-align:right;-ms-flex-pack:flex-end}.top-xs{-webkit-align-items:flex-start;-moz-align-items:flex-start;-ms-align-items:flex-start;align-items:flex-start}.middle-xs{-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;align-items:center}.bottom-xs{-webkit-align-items:flex-end;-moz-align-items:flex-end;-ms-align-items:flex-end;align-items:flex-end}.around-xs{-webkit-justify-content:space-around;-moz-justify-content:space-around;-ms-justify-content:space-around;justify-content:space-around;-ms-flex-pack:space-around}.between-xs{-webkit-justify-content:space-between;-moz-justify-content:space-between;-ms-justify-content:space-between;justify-content:space-between;-ms-flex-pack:space-between}.first-xs{order:-1}.last-xs{order:1}}@media only screen and (min-width:640px){.container{width:57rem}.col-sm{-webkit-flex-basis:auto;-moz-flex-basis:auto;-ms-flex-basis:auto;flex-basis:auto}.col-sm,.col-sm-1{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-sm-1{-webkit-flex-basis:8.3333333333%;-moz-flex-basis:8.3333333333%;-ms-flex-basis:8.3333333333%;flex-basis:8.3333333333%;max-width:8.3333333333%}.col-sm-2{-webkit-flex-basis:16.6666666667%;-moz-flex-basis:16.6666666667%;-ms-flex-basis:16.6666666667%;flex-basis:16.6666666667%;max-width:16.6666666667%}.col-sm-2,.col-sm-3{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-sm-3{-webkit-flex-basis:25%;-moz-flex-basis:25%;-ms-flex-basis:25%;flex-basis:25%;max-width:25%}.col-sm-4{-webkit-flex-basis:33.3333333333%;-moz-flex-basis:33.3333333333%;-ms-flex-basis:33.3333333333%;flex-basis:33.3333333333%;max-width:33.3333333333%}.col-sm-4,.col-sm-5{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-sm-5{-webkit-flex-basis:41.6666666667%;-moz-flex-basis:41.6666666667%;-ms-flex-basis:41.6666666667%;flex-basis:41.6666666667%;max-width:41.6666666667%}.col-sm-6{-webkit-flex-basis:50%;-moz-flex-basis:50%;-ms-flex-basis:50%;flex-basis:50%;max-width:50%}.col-sm-6,.col-sm-7{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-sm-7{-webkit-flex-basis:58.3333333333%;-moz-flex-basis:58.3333333333%;-ms-flex-basis:58.3333333333%;flex-basis:58.3333333333%;max-width:58.3333333333%}.col-sm-8{-webkit-flex-basis:66.6666666667%;-moz-flex-basis:66.6666666667%;-ms-flex-basis:66.6666666667%;flex-basis:66.6666666667%;max-width:66.6666666667%}.col-sm-8,.col-sm-9{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-sm-9{-webkit-flex-basis:75%;-moz-flex-basis:75%;-ms-flex-basis:75%;flex-basis:75%;max-width:75%}.col-sm-10{-webkit-flex-basis:83.3333333333%;-moz-flex-basis:83.3333333333%;-ms-flex-basis:83.3333333333%;flex-basis:83.3333333333%;max-width:83.3333333333%}.col-sm-10,.col-sm-11{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-sm-11{-webkit-flex-basis:91.6666666667%;-moz-flex-basis:91.6666666667%;-ms-flex-basis:91.6666666667%;flex-basis:91.6666666667%;max-width:91.6666666667%}.col-sm-12{-webkit-flex-basis:100%;-moz-flex-basis:100%;-ms-flex-basis:100%;flex-basis:100%;max-width:100%}.col-sm-12,.col-sm-offset-0{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-sm-offset-0{margin-left:0}.col-sm-offset-1{margin-left:8.3333333333%}.col-sm-offset-1,.col-sm-offset-2{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-sm-offset-2{margin-left:16.6666666667%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-3,.col-sm-offset-4{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-sm-offset-4{margin-left:33.3333333333%}.col-sm-offset-5{margin-left:41.6666666667%}.col-sm-offset-5,.col-sm-offset-6{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-sm-offset-6{margin-left:50%}.col-sm-offset-7{margin-left:58.3333333333%}.col-sm-offset-7,.col-sm-offset-8{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-sm-offset-8{margin-left:66.6666666667%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-9,.col-sm-offset-10{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-sm-offset-10{margin-left:83.3333333333%}.col-sm-offset-11{margin-left:91.6666666667%}.col-sm-offset-11,.col-sm-offset-12{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-sm-offset-12{margin-left:100%}.col-sm{-webkit-flex-basis:0;-moz-flex-basis:0;-ms-flex-basis:0;flex-basis:0;-webkit-flex-grow:1;-moz-flex-grow:1;-ms-flex-grow:1;flex-grow:1;max-width:100%}.start-sm{-webkit-justify-content:flex-start;-moz-justify-content:flex-start;-ms-justify-content:flex-start;justify-content:flex-start;text-align:left;-ms-flex-pack:flex-start}.center-sm{-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;text-align:center;-ms-flex-pack:center}.end-sm{-webkit-justify-content:flex-end;-moz-justify-content:flex-end;-ms-justify-content:flex-end;justify-content:flex-end;text-align:right;-ms-flex-pack:flex-end}.top-sm{-webkit-align-items:flex-start;-moz-align-items:flex-start;-ms-align-items:flex-start;align-items:flex-start}.middle-sm{-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;align-items:center}.bottom-sm{-webkit-align-items:flex-end;-moz-align-items:flex-end;-ms-align-items:flex-end;align-items:flex-end}.around-sm{-webkit-justify-content:space-around;-moz-justify-content:space-around;-ms-justify-content:space-around;justify-content:space-around;-ms-flex-pack:space-around}.between-sm{-webkit-justify-content:space-between;-moz-justify-content:space-between;-ms-justify-content:space-between;justify-content:space-between;-ms-flex-pack:space-between}.first-sm{order:-1}.last-sm{order:1}}@media only screen and (min-width:768px){.container{width:64rem}.col-md{-webkit-flex-basis:auto;-moz-flex-basis:auto;-ms-flex-basis:auto;flex-basis:auto}.col-md,.col-md-1{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-md-1{-webkit-flex-basis:8.3333333333%;-moz-flex-basis:8.3333333333%;-ms-flex-basis:8.3333333333%;flex-basis:8.3333333333%;max-width:8.3333333333%}.col-md-2{-webkit-flex-basis:16.6666666667%;-moz-flex-basis:16.6666666667%;-ms-flex-basis:16.6666666667%;flex-basis:16.6666666667%;max-width:16.6666666667%}.col-md-2,.col-md-3{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-md-3{-webkit-flex-basis:25%;-moz-flex-basis:25%;-ms-flex-basis:25%;flex-basis:25%;max-width:25%}.col-md-4{-webkit-flex-basis:33.3333333333%;-moz-flex-basis:33.3333333333%;-ms-flex-basis:33.3333333333%;flex-basis:33.3333333333%;max-width:33.3333333333%}.col-md-4,.col-md-5{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-md-5{-webkit-flex-basis:41.6666666667%;-moz-flex-basis:41.6666666667%;-ms-flex-basis:41.6666666667%;flex-basis:41.6666666667%;max-width:41.6666666667%}.col-md-6{-webkit-flex-basis:50%;-moz-flex-basis:50%;-ms-flex-basis:50%;flex-basis:50%;max-width:50%}.col-md-6,.col-md-7{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-md-7{-webkit-flex-basis:58.3333333333%;-moz-flex-basis:58.3333333333%;-ms-flex-basis:58.3333333333%;flex-basis:58.3333333333%;max-width:58.3333333333%}.col-md-8{-webkit-flex-basis:66.6666666667%;-moz-flex-basis:66.6666666667%;-ms-flex-basis:66.6666666667%;flex-basis:66.6666666667%;max-width:66.6666666667%}.col-md-8,.col-md-9{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-md-9{-webkit-flex-basis:75%;-moz-flex-basis:75%;-ms-flex-basis:75%;flex-basis:75%;max-width:75%}.col-md-10{-webkit-flex-basis:83.3333333333%;-moz-flex-basis:83.3333333333%;-ms-flex-basis:83.3333333333%;flex-basis:83.3333333333%;max-width:83.3333333333%}.col-md-10,.col-md-11{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-md-11{-webkit-flex-basis:91.6666666667%;-moz-flex-basis:91.6666666667%;-ms-flex-basis:91.6666666667%;flex-basis:91.6666666667%;max-width:91.6666666667%}.col-md-12{-webkit-flex-basis:100%;-moz-flex-basis:100%;-ms-flex-basis:100%;flex-basis:100%;max-width:100%}.col-md-12,.col-md-offset-0{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-md-offset-0{margin-left:0}.col-md-offset-1{margin-left:8.3333333333%}.col-md-offset-1,.col-md-offset-2{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-md-offset-2{margin-left:16.6666666667%}.col-md-offset-3{margin-left:25%}.col-md-offset-3,.col-md-offset-4{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-md-offset-4{margin-left:33.3333333333%}.col-md-offset-5{margin-left:41.6666666667%}.col-md-offset-5,.col-md-offset-6{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-md-offset-6{margin-left:50%}.col-md-offset-7{margin-left:58.3333333333%}.col-md-offset-7,.col-md-offset-8{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-md-offset-8{margin-left:66.6666666667%}.col-md-offset-9{margin-left:75%}.col-md-offset-9,.col-md-offset-10{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-md-offset-10{margin-left:83.3333333333%}.col-md-offset-11{margin-left:91.6666666667%}.col-md-offset-11,.col-md-offset-12{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-md-offset-12{margin-left:100%}.col-md{-webkit-flex-basis:0;-moz-flex-basis:0;-ms-flex-basis:0;flex-basis:0;-webkit-flex-grow:1;-moz-flex-grow:1;-ms-flex-grow:1;flex-grow:1;max-width:100%}.start-md{-webkit-justify-content:flex-start;-moz-justify-content:flex-start;-ms-justify-content:flex-start;justify-content:flex-start;text-align:left;-ms-flex-pack:flex-start}.center-md{-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;text-align:center;-ms-flex-pack:center}.end-md{-webkit-justify-content:flex-end;-moz-justify-content:flex-end;-ms-justify-content:flex-end;justify-content:flex-end;text-align:right;-ms-flex-pack:flex-end}.top-md{-webkit-align-items:flex-start;-moz-align-items:flex-start;-ms-align-items:flex-start;align-items:flex-start}.middle-md{-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;align-items:center}.bottom-md{-webkit-align-items:flex-end;-moz-align-items:flex-end;-ms-align-items:flex-end;align-items:flex-end}.around-md{-webkit-justify-content:space-around;-moz-justify-content:space-around;-ms-justify-content:space-around;justify-content:space-around;-ms-flex-pack:space-around}.between-md{-webkit-justify-content:space-between;-moz-justify-content:space-between;-ms-justify-content:space-between;justify-content:space-between;-ms-flex-pack:space-between}.first-md{order:-1}.last-md{order:1}}@media only screen and (min-width:1024px){.container{width:80rem}.col-lg{-webkit-flex-basis:auto;-moz-flex-basis:auto;-ms-flex-basis:auto;flex-basis:auto}.col-lg,.col-lg-1{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-lg-1{-webkit-flex-basis:8.3333333333%;-moz-flex-basis:8.3333333333%;-ms-flex-basis:8.3333333333%;flex-basis:8.3333333333%;max-width:8.3333333333%}.col-lg-2{-webkit-flex-basis:16.6666666667%;-moz-flex-basis:16.6666666667%;-ms-flex-basis:16.6666666667%;flex-basis:16.6666666667%;max-width:16.6666666667%}.col-lg-2,.col-lg-3{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-lg-3{-webkit-flex-basis:25%;-moz-flex-basis:25%;-ms-flex-basis:25%;flex-basis:25%;max-width:25%}.col-lg-4{-webkit-flex-basis:33.3333333333%;-moz-flex-basis:33.3333333333%;-ms-flex-basis:33.3333333333%;flex-basis:33.3333333333%;max-width:33.3333333333%}.col-lg-4,.col-lg-5{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-lg-5{-webkit-flex-basis:41.6666666667%;-moz-flex-basis:41.6666666667%;-ms-flex-basis:41.6666666667%;flex-basis:41.6666666667%;max-width:41.6666666667%}.col-lg-6{-webkit-flex-basis:50%;-moz-flex-basis:50%;-ms-flex-basis:50%;flex-basis:50%;max-width:50%}.col-lg-6,.col-lg-7{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-lg-7{-webkit-flex-basis:58.3333333333%;-moz-flex-basis:58.3333333333%;-ms-flex-basis:58.3333333333%;flex-basis:58.3333333333%;max-width:58.3333333333%}.col-lg-8{-webkit-flex-basis:66.6666666667%;-moz-flex-basis:66.6666666667%;-ms-flex-basis:66.6666666667%;flex-basis:66.6666666667%;max-width:66.6666666667%}.col-lg-8,.col-lg-9{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-lg-9{-webkit-flex-basis:75%;-moz-flex-basis:75%;-ms-flex-basis:75%;flex-basis:75%;max-width:75%}.col-lg-10{-webkit-flex-basis:83.3333333333%;-moz-flex-basis:83.3333333333%;-ms-flex-basis:83.3333333333%;flex-basis:83.3333333333%;max-width:83.3333333333%}.col-lg-10,.col-lg-11{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-lg-11{-webkit-flex-basis:91.6666666667%;-moz-flex-basis:91.6666666667%;-ms-flex-basis:91.6666666667%;flex-basis:91.6666666667%;max-width:91.6666666667%}.col-lg-12{-webkit-flex-basis:100%;-moz-flex-basis:100%;-ms-flex-basis:100%;flex-basis:100%;max-width:100%}.col-lg-12,.col-lg-offset-0{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-lg-offset-0{margin-left:0}.col-lg-offset-1{margin-left:8.3333333333%}.col-lg-offset-1,.col-lg-offset-2{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-lg-offset-2{margin-left:16.6666666667%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-3,.col-lg-offset-4{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-lg-offset-4{margin-left:33.3333333333%}.col-lg-offset-5{margin-left:41.6666666667%}.col-lg-offset-5,.col-lg-offset-6{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-lg-offset-6{margin-left:50%}.col-lg-offset-7{margin-left:58.3333333333%}.col-lg-offset-7,.col-lg-offset-8{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-lg-offset-8{margin-left:66.6666666667%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-9,.col-lg-offset-10{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-lg-offset-10{margin-left:83.3333333333%}.col-lg-offset-11{margin-left:91.6666666667%}.col-lg-offset-11,.col-lg-offset-12{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-lg-offset-12{margin-left:100%}.col-lg{-webkit-flex-basis:0;-moz-flex-basis:0;-ms-flex-basis:0;flex-basis:0;-webkit-flex-grow:1;-moz-flex-grow:1;-ms-flex-grow:1;flex-grow:1;max-width:100%}.start-lg{-webkit-justify-content:flex-start;-moz-justify-content:flex-start;-ms-justify-content:flex-start;justify-content:flex-start;text-align:left;-ms-flex-pack:flex-start}.center-lg{-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;text-align:center;-ms-flex-pack:center}.end-lg{-webkit-justify-content:flex-end;-moz-justify-content:flex-end;-ms-justify-content:flex-end;justify-content:flex-end;text-align:right;-ms-flex-pack:flex-end}.top-lg{-webkit-align-items:flex-start;-moz-align-items:flex-start;-ms-align-items:flex-start;align-items:flex-start}.middle-lg{-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;align-items:center}.bottom-lg{-webkit-align-items:flex-end;-moz-align-items:flex-end;-ms-align-items:flex-end;align-items:flex-end}.around-lg{-webkit-justify-content:space-around;-moz-justify-content:space-around;-ms-justify-content:space-around;justify-content:space-around;-ms-flex-pack:space-around}.between-lg{-webkit-justify-content:space-between;-moz-justify-content:space-between;-ms-justify-content:space-between;justify-content:space-between;-ms-flex-pack:space-between}.first-lg{order:-1}.last-lg{order:1}}@media only screen and (min-width:1224px){.container{width:106.4rem}.col-xl{-webkit-flex-basis:auto;-moz-flex-basis:auto;-ms-flex-basis:auto;flex-basis:auto}.col-xl,.col-xl-1{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xl-1{-webkit-flex-basis:8.3333333333%;-moz-flex-basis:8.3333333333%;-ms-flex-basis:8.3333333333%;flex-basis:8.3333333333%;max-width:8.3333333333%}.col-xl-2{-webkit-flex-basis:16.6666666667%;-moz-flex-basis:16.6666666667%;-ms-flex-basis:16.6666666667%;flex-basis:16.6666666667%;max-width:16.6666666667%}.col-xl-2,.col-xl-3{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xl-3{-webkit-flex-basis:25%;-moz-flex-basis:25%;-ms-flex-basis:25%;flex-basis:25%;max-width:25%}.col-xl-4{-webkit-flex-basis:33.3333333333%;-moz-flex-basis:33.3333333333%;-ms-flex-basis:33.3333333333%;flex-basis:33.3333333333%;max-width:33.3333333333%}.col-xl-4,.col-xl-5{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xl-5{-webkit-flex-basis:41.6666666667%;-moz-flex-basis:41.6666666667%;-ms-flex-basis:41.6666666667%;flex-basis:41.6666666667%;max-width:41.6666666667%}.col-xl-6{-webkit-flex-basis:50%;-moz-flex-basis:50%;-ms-flex-basis:50%;flex-basis:50%;max-width:50%}.col-xl-6,.col-xl-7{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xl-7{-webkit-flex-basis:58.3333333333%;-moz-flex-basis:58.3333333333%;-ms-flex-basis:58.3333333333%;flex-basis:58.3333333333%;max-width:58.3333333333%}.col-xl-8{-webkit-flex-basis:66.6666666667%;-moz-flex-basis:66.6666666667%;-ms-flex-basis:66.6666666667%;flex-basis:66.6666666667%;max-width:66.6666666667%}.col-xl-8,.col-xl-9{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xl-9{-webkit-flex-basis:75%;-moz-flex-basis:75%;-ms-flex-basis:75%;flex-basis:75%;max-width:75%}.col-xl-10{-webkit-flex-basis:83.3333333333%;-moz-flex-basis:83.3333333333%;-ms-flex-basis:83.3333333333%;flex-basis:83.3333333333%;max-width:83.3333333333%}.col-xl-10,.col-xl-11{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xl-11{-webkit-flex-basis:91.6666666667%;-moz-flex-basis:91.6666666667%;-ms-flex-basis:91.6666666667%;flex-basis:91.6666666667%;max-width:91.6666666667%}.col-xl-12{-webkit-flex-basis:100%;-moz-flex-basis:100%;-ms-flex-basis:100%;flex-basis:100%;max-width:100%}.col-xl-12,.col-xl-offset-0{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xl-offset-0{margin-left:0}.col-xl-offset-1{margin-left:8.3333333333%}.col-xl-offset-1,.col-xl-offset-2{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xl-offset-2{margin-left:16.6666666667%}.col-xl-offset-3{margin-left:25%}.col-xl-offset-3,.col-xl-offset-4{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xl-offset-4{margin-left:33.3333333333%}.col-xl-offset-5{margin-left:41.6666666667%}.col-xl-offset-5,.col-xl-offset-6{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xl-offset-6{margin-left:50%}.col-xl-offset-7{margin-left:58.3333333333%}.col-xl-offset-7,.col-xl-offset-8{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xl-offset-8{margin-left:66.6666666667%}.col-xl-offset-9{margin-left:75%}.col-xl-offset-9,.col-xl-offset-10{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xl-offset-10{margin-left:83.3333333333%}.col-xl-offset-11{margin-left:91.6666666667%}.col-xl-offset-11,.col-xl-offset-12{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xl-offset-12{margin-left:100%}.col-xl{-webkit-flex-basis:0;-moz-flex-basis:0;-ms-flex-basis:0;flex-basis:0;-webkit-flex-grow:1;-moz-flex-grow:1;-ms-flex-grow:1;flex-grow:1;max-width:100%}.start-xl{-webkit-justify-content:flex-start;-moz-justify-content:flex-start;-ms-justify-content:flex-start;justify-content:flex-start;text-align:left;-ms-flex-pack:flex-start}.center-xl{-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;text-align:center;-ms-flex-pack:center}.end-xl{-webkit-justify-content:flex-end;-moz-justify-content:flex-end;-ms-justify-content:flex-end;justify-content:flex-end;text-align:right;-ms-flex-pack:flex-end}.top-xl{-webkit-align-items:flex-start;-moz-align-items:flex-start;-ms-align-items:flex-start;align-items:flex-start}.middle-xl{-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;align-items:center}.bottom-xl{-webkit-align-items:flex-end;-moz-align-items:flex-end;-ms-align-items:flex-end;align-items:flex-end}.around-xl{-webkit-justify-content:space-around;-moz-justify-content:space-around;-ms-justify-content:space-around;justify-content:space-around;-ms-flex-pack:space-around}.between-xl{-webkit-justify-content:space-between;-moz-justify-content:space-between;-ms-justify-content:space-between;justify-content:space-between;-ms-flex-pack:space-between}.first-xl{order:-1}.last-xl{order:1}}@media only screen and (min-width:1824px){.container{width:106.4rem}.col-xxl{-webkit-flex-basis:auto;-moz-flex-basis:auto;-ms-flex-basis:auto;flex-basis:auto}.col-xxl,.col-xxl-1{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xxl-1{-webkit-flex-basis:8.3333333333%;-moz-flex-basis:8.3333333333%;-ms-flex-basis:8.3333333333%;flex-basis:8.3333333333%;max-width:8.3333333333%}.col-xxl-2{-webkit-flex-basis:16.6666666667%;-moz-flex-basis:16.6666666667%;-ms-flex-basis:16.6666666667%;flex-basis:16.6666666667%;max-width:16.6666666667%}.col-xxl-2,.col-xxl-3{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xxl-3{-webkit-flex-basis:25%;-moz-flex-basis:25%;-ms-flex-basis:25%;flex-basis:25%;max-width:25%}.col-xxl-4{-webkit-flex-basis:33.3333333333%;-moz-flex-basis:33.3333333333%;-ms-flex-basis:33.3333333333%;flex-basis:33.3333333333%;max-width:33.3333333333%}.col-xxl-4,.col-xxl-5{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xxl-5{-webkit-flex-basis:41.6666666667%;-moz-flex-basis:41.6666666667%;-ms-flex-basis:41.6666666667%;flex-basis:41.6666666667%;max-width:41.6666666667%}.col-xxl-6{-webkit-flex-basis:50%;-moz-flex-basis:50%;-ms-flex-basis:50%;flex-basis:50%;max-width:50%}.col-xxl-6,.col-xxl-7{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xxl-7{-webkit-flex-basis:58.3333333333%;-moz-flex-basis:58.3333333333%;-ms-flex-basis:58.3333333333%;flex-basis:58.3333333333%;max-width:58.3333333333%}.col-xxl-8{-webkit-flex-basis:66.6666666667%;-moz-flex-basis:66.6666666667%;-ms-flex-basis:66.6666666667%;flex-basis:66.6666666667%;max-width:66.6666666667%}.col-xxl-8,.col-xxl-9{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xxl-9{-webkit-flex-basis:75%;-moz-flex-basis:75%;-ms-flex-basis:75%;flex-basis:75%;max-width:75%}.col-xxl-10{-webkit-flex-basis:83.3333333333%;-moz-flex-basis:83.3333333333%;-ms-flex-basis:83.3333333333%;flex-basis:83.3333333333%;max-width:83.3333333333%}.col-xxl-10,.col-xxl-11{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xxl-11{-webkit-flex-basis:91.6666666667%;-moz-flex-basis:91.6666666667%;-ms-flex-basis:91.6666666667%;flex-basis:91.6666666667%;max-width:91.6666666667%}.col-xxl-12{-webkit-flex-basis:100%;-moz-flex-basis:100%;-ms-flex-basis:100%;flex-basis:100%;max-width:100%}.col-xxl-12,.col-xxl-offset-0{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xxl-offset-0{margin-left:0}.col-xxl-offset-1{margin-left:8.3333333333%}.col-xxl-offset-1,.col-xxl-offset-2{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xxl-offset-2{margin-left:16.6666666667%}.col-xxl-offset-3{margin-left:25%}.col-xxl-offset-3,.col-xxl-offset-4{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xxl-offset-4{margin-left:33.3333333333%}.col-xxl-offset-5{margin-left:41.6666666667%}.col-xxl-offset-5,.col-xxl-offset-6{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xxl-offset-6{margin-left:50%}.col-xxl-offset-7{margin-left:58.3333333333%}.col-xxl-offset-7,.col-xxl-offset-8{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xxl-offset-8{margin-left:66.6666666667%}.col-xxl-offset-9{margin-left:75%}.col-xxl-offset-9,.col-xxl-offset-10{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xxl-offset-10{margin-left:83.3333333333%}.col-xxl-offset-11{margin-left:91.6666666667%}.col-xxl-offset-11,.col-xxl-offset-12{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xxl-offset-12{margin-left:100%}.col-xxl{-webkit-flex-basis:0;-moz-flex-basis:0;-ms-flex-basis:0;flex-basis:0;-webkit-flex-grow:1;-moz-flex-grow:1;-ms-flex-grow:1;flex-grow:1;max-width:100%}.start-xxl{-webkit-justify-content:flex-start;-moz-justify-content:flex-start;-ms-justify-content:flex-start;justify-content:flex-start;text-align:left;-ms-flex-pack:flex-start}.center-xxl{-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;text-align:center;-ms-flex-pack:center}.end-xxl{-webkit-justify-content:flex-end;-moz-justify-content:flex-end;-ms-justify-content:flex-end;justify-content:flex-end;text-align:right;-ms-flex-pack:flex-end}.top-xxl{-webkit-align-items:flex-start;-moz-align-items:flex-start;-ms-align-items:flex-start;align-items:flex-start}.middle-xxl{-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;align-items:center}.bottom-xxl{-webkit-align-items:flex-end;-moz-align-items:flex-end;-ms-align-items:flex-end;align-items:flex-end}.around-xxl{-webkit-justify-content:space-around;-moz-justify-content:space-around;-ms-justify-content:space-around;justify-content:space-around;-ms-flex-pack:space-around}.between-xxl{-webkit-justify-content:space-between;-moz-justify-content:space-between;-ms-justify-content:space-between;justify-content:space-between;-ms-flex-pack:space-between}.first-xxl{order:-1}.last-xxl{order:1}}:host,:root{--bg-primary:#fff;--bg-primary-50:hsla(0,0%,100%,0.5);--bg-bw-100:#fff;--bg-bw-100-reversed:#000;--border-primary:#d0dbe3;--border-radius-default:3.2rem;--border-radius-download:1.6rem;--border-radius-button:1.2rem;--button-download-default:#5021ff;--button-download-hover:#4500cc;--button-download-text:#fff;--button-download-bg-img:none;--button-download-bg-img-hover:none;--font-family:"Be Vietnam Pro","Be Vietnam Pro Fallback",roboto,"Roboto Fallback",sans-serif;--font-family-accent:"Be Vietnam Pro","Be Vietnam Pro Fallback",roboto,"Roboto Fallback",sans-serif;--font-family-accent-transform:none;--icon:#3c4055;--surface-white:#fff;--surface-primary:#f2f5f8;--surface-brand:#5021ff;--text-primary:#000;--text-secondary:#252836;--text-brand:#5021ff;--text-bw-100:#000;--text-bw-100-reversed:#fff;--text-heading-weight:900;--hero-background:#f2f5f8}@font-face{ascent-override:92%;descent-override:23%;font-family:Be Vietnam Pro Fallback;line-gap-override:0;size-adjust:103.8%;src:local("Arial")}@font-face{ascent-override:92%;descent-override:23%;font-family:Be Vietnam Pro Fallback;font-weight:700;line-gap-override:0;size-adjust:103.8%;src:local("Arial Bold")}@font-face{ascent-override:92%;descent-override:23%;font-family:Be Vietnam Pro Fallback;font-weight:900;line-gap-override:0;size-adjust:103.8%;src:local("Arial Black")}@font-face{ascent-override:92.7%;descent-override:24.4%;font-family:Roboto Fallback;line-gap-override:0;size-adjust:100%;src:local("Arial")}@font-face{ascent-override:92.7%;descent-override:24.4%;font-family:Roboto Fallback;font-weight:700;line-gap-override:0;size-adjust:100%;src:local("Arial Bold")}@font-face{ascent-override:85%;descent-override:15%;font-family:Space Mono Fallback;line-gap-override:0;size-adjust:95%;src:local("Courier New")}@font-face{ascent-override:85%;descent-override:15%;font-family:Space Mono Fallback;font-weight:700;line-gap-override:0;size-adjust:95%;src:local("Courier New Bold")}html{font-size:62.5%;margin:0;padding:0;scroll-behavior:smooth;scroll-padding-top:7.5rem}@media(width >= 1366px){html{font-size:.732vw}}@media(min-width:1924px){html{font-size:88.3%}}body{background-color:#fff;color:#000;display:flex;flex-direction:column;font-variant-numeric:lining-nums proportional-nums;font-weight:400;margin:0;min-height:100%;padding:0;-webkit-font-smoothing:antialiased}body,main{font-family:var(--font-family)}main{box-sizing:border-box;flex:1 0 auto;letter-spacing:.02em;line-height:1.5;width:100%}img{height:auto;max-width:100%}.hf{flex:none;font-size:1.2rem;letter-spacing:.03rem;line-height:1.5;-webkit-font-smoothing:antialiased;font-family:var(--font-family)}header.hf__header{left:0;min-height:10.4rem;position:fixed;top:0;width:100vw;z-index:9999}@media(min-width:1924px){header.hf__header{min-height:12rem}}.header{background-color:transparent;box-sizing:border-box;flex:1;flex-direction:row;font-size:0;height:10.4rem;padding:2.4rem 0;position:relative;z-index:2}.header,.header__wrapper{align-items:center;display:flex}.header__wrapper{flex:0 1 auto;flex-direction:row;flex-wrap:wrap;width:100%}.header__brand{display:block;flex-shrink:0;margin-right:3.4rem;position:relative;width:10.5rem}.header__brand img{display:block;height:3rem;width:auto}.header__main-nav-items{align-items:center;display:flex;flex-direction:row;flex-grow:1;list-style:none;margin:0;overflow:visible;padding:0;position:static}.header__main-nav-item{align-items:center;display:flex;margin-right:2.4rem;position:relative}.header__main-nav-anchor{align-items:center;color:var(--text-primary);display:flex;font-size:1.4rem;font-weight:600;padding:.8rem 0;text-decoration:none}.header__menu{flex-grow:1}.header__mobile{display:none}.header__main-nav-item--dropdown__panel{max-height:0;overflow:hidden}@media(max-width:1223px){.header{height:7.2rem}.header__mobile{align-items:center;backdrop-filter:blur(15px);-webkit-backdrop-filter:blur(15px);box-sizing:border-box;display:flex;flex:1;font-size:0;height:7.2rem;justify-content:flex-end;left:0;padding:1.6rem 2rem;position:absolute;top:0;transition:height .4s ease;width:4rem;width:100vw;z-index:2}.header__mobile__brand{display:block;left:1.8rem;margin-right:2rem;position:absolute;z-index:10000}.header__mobile__brand img{height:3rem;width:auto}.header__brand{display:none}.header__main-nav-items{display:none;position:absolute}.header__menu-switcher{display:block;height:2.4rem;position:absolute;right:1.8rem;top:50%;transform:translateY(-50%);width:2.4rem}}@media(min-width:1224px)and (hover:hover){header.hf__header.active .header,header.hf__header.keep-active .header{backdrop-filter:blur(15px);-webkit-backdrop-filter:blur(15px)}}html.dark-theme .hidden-in-darkmode,html:not(.dark-theme) .hidden-in-lightmode{display:none}.hero{background-color:var(--hero-background);color:var(--text-primary);margin-bottom:11rem;padding-bottom:9.6rem;padding-top:12.2rem;position:relative}@media only screen and (min-width:1024px){.hero{padding-top:12.2rem}}@media only screen and (min-width:1224px){.hero{padding-top:15.4rem}}@media only screen and (min-width:1924px){.hero{padding-top:17rem}}.hero.hero--banner{padding-top:7rem}@media only screen and (min-width:768px){.hero.hero--banner{padding-top:23.2rem}}@media only screen and (min-width:1224px){.hero.hero--banner{padding-top:26.4rem}}@media only screen and (min-width:1924px){.hero.hero--banner{padding-top:28rem}}.hero__image{bottom:-9rem;margin-top:-9rem}.hero__image .floating-image-wrapper{bottom:-6rem;display:block;position:absolute;right:0;top:0;z-index:1}.hero__title{line-height:normal;margin:0 auto;width:67%}.hero .cta__container{margin-bottom:3.2rem;margin-top:3.2rem}.icon-component{align-items:center;display:inline-flex;height:2.4rem;justify-content:center;min-width:2.4rem;vertical-align:middle;width:2.4rem}.icon-component svg{height:auto;width:100%}.text-align--center{text-align:center}.text-align--left{text-align:left}.text-align--right{text-align:right}.text-align--justify{text-align:justify}.flex{display:flex}.flex-direction--column{flex-direction:column}.flex-direction--row{flex-direction:row}.justify-content--center{justify-content:center}.justify-content--between{justify-content:space-between}.align-items--center{align-items:center}.align-items--start{align-items:start}.block--relative{position:relative}.block--inline-block{display:inline-block}.font-weight--heading{font-weight:var(--text-heading-weight)}.font-weight--700,.font-weight--black{font-weight:700}.h-level-1,h1{font-size:4rem;line-height:1}.text-level-1{font-size:1.8rem}@media only screen and (min-width:768px){.text-level-1{font-size:2.4rem}}.text-40{font-size:4rem}@media only screen and (min-width:768px){.text-md-56{font-size:5.6rem}}.hero__content{position:relative}.hero h1{font-family:var(--font-family-accent);margin:0 0 1rem}.hidden--clip{border:none;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}@media(max-width:768px){.hidden--to-md{display:none!important}}@media(min-width:769px){.hidden--from-md{display:none!important}}@media(max-width:1224px){.hidden--to-xl{display:none!important}}@media(min-width:1225px){.hidden--from-xl{display:none!important}}.air-banner{contain:layout style paint;left:0;min-height:10.4rem;position:absolute;right:0;top:10rem;z-index:2}.air-banner>a{color:var(--text-primary);display:flex;flex-direction:column;height:10.4rem;justify-content:center;text-decoration:none}.air-banner__content{align-items:center;display:flex;flex-direction:row;justify-content:space-between;min-height:8.6rem}.air-banner__content h2{margin:0;vertical-align:middle}.air-banner__content i{align-items:center;display:inline-flex;justify-content:center;vertical-align:middle}.air-banner__content i:after{background-color:rgba(40,85,70,.302);content:"";display:inline-block;height:2.04rem;margin-left:1.6rem;width:.2rem}.mobile-banner{margin-top:7.3rem;min-height:18rem;position:static;z-index:2}.mobile-banner>a{display:flex;flex-direction:column;justify-content:center;min-height:18rem;text-decoration:none}.mobile-banner__content{align-items:center;display:flex;flex-direction:row;justify-content:space-between}.mini-banner{left:0;position:absolute;right:0;top:7rem;z-index:2}.mini-banner>a{display:flex;flex-direction:column;justify-content:center;text-decoration:none}.mini-banner__content{align-items:center;display:flex;flex-direction:row}.rewind-banner{background-color:#000;contain:layout style paint;left:0;min-height:18rem;overflow:hidden;position:absolute;right:0;top:7.3rem;z-index:2}@media(width <= 767px){.rewind-banner{display:none!important}}@media only screen and (min-width:768px){.rewind-banner{min-height:10.4rem;top:6rem}}@media only screen and (min-width:1224px){.rewind-banner{top:10rem}}.rewind-banner>a{color:#fff;display:flex;flex-direction:column;height:18rem;justify-content:center;text-decoration:none}@media only screen and (min-width:768px){.rewind-banner>a{height:10.4rem}}.rewind-banner__content{align-items:center;justify-content:space-between}@media(min-width:768px){.rewind-banner__content{min-height:8.6rem}}.rewind-banner__text-wrapper{align-items:center;display:flex;flex-wrap:nowrap;gap:1.5rem}@media(min-width:768px)and (max-width:1223px){.air-banner{contain:layout style paint;min-height:10.4rem;position:absolute}.air-banner>a{height:10.4rem}.air-banner__content h2{font-size:1.8rem;line-height:1.4}}</style>
<link rel="preload"
as="style"
media="screen"
href="https://cdn-production-opera-website.operacdn.com/staticfiles/latinext.a83b049961e4.css"/>
<link rel="stylesheet"
type="text/css"
media="screen"
href="https://cdn-production-opera-website.operacdn.com/staticfiles/latinext.a83b049961e4.css"/>
<link rel="preload" href="https://cdn-production-opera-website.operacdn.com/staticfiles/main.fda26858709e.css" as="style">
<link rel="stylesheet"
href="https://cdn-production-opera-website.operacdn.com/staticfiles/main.fda26858709e.css"
media="print"
onload="this.media='all'; this.onload=null;">
<noscript>
<link rel="stylesheet" href="https://cdn-production-opera-website.operacdn.com/staticfiles/main.fda26858709e.css">
</noscript>
<link rel="preload"
href="https://cdn-production-opera-website.operacdn.com/staticfiles/main-320.7f746f3896e8.css"
as="style"
media="(max-width: 767px)">
<link rel="stylesheet"
href="https://cdn-production-opera-website.operacdn.com/staticfiles/main-320.7f746f3896e8.css"
media="print"
onload="this.media='(max-width: 767px)'; this.onload=null;">
<link rel="preload"
href="https://cdn-production-opera-website.operacdn.com/staticfiles/main-640.eb207c945869.css"
as="style"
media="(min-width: 640px) and (max-width: 767px)">
<link rel="stylesheet"
href="https://cdn-production-opera-website.operacdn.com/staticfiles/main-640.eb207c945869.css"
media="print"
onload="this.media='(min-width: 640px) and (max-width: 767px)'; this.onload=null;">
<link rel="preload"
href="https://cdn-production-opera-website.operacdn.com/staticfiles/main-768.c095843b336b.css"
as="style"
media="(min-width: 768px)">
<link rel="stylesheet"
href="https://cdn-production-opera-website.operacdn.com/staticfiles/main-768.c095843b336b.css"
media="print"
onload="this.media='(min-width: 768px)'; this.onload=null;">
<link rel="preload"
href="https://cdn-production-opera-website.operacdn.com/staticfiles/main-1024.aad96fd23526.css"
as="style"
media="(min-width: 1024px)">
<link rel="stylesheet"
href="https://cdn-production-opera-website.operacdn.com/staticfiles/main-1024.aad96fd23526.css"
media="print"
onload="this.media='(min-width: 1024px)'; this.onload=null;">
<link rel="preload"
href="https://cdn-production-opera-website.operacdn.com/staticfiles/main-1224.cd20c7ec9f47.css"
as="style"
media="(min-width: 1224px)">
<link rel="stylesheet"
href="https://cdn-production-opera-website.operacdn.com/staticfiles/main-1224.cd20c7ec9f47.css"
media="print"
onload="this.media='(min-width: 1224px)'; this.onload=null;">
<link rel="preload"
href="https://cdn-production-opera-website.operacdn.com/staticfiles/main-1824.b6240ca8263f.css"
as="style"
media="(min-width: 1824px)">
<link rel="stylesheet"
href="https://cdn-production-opera-website.operacdn.com/staticfiles/main-1824.b6240ca8263f.css"
media="print"
onload="this.media='(min-width: 1824px)'; this.onload=null;">
<link rel="preload"
href="https://cdn-production-opera-website.operacdn.com/staticfiles/main-1924.0713dcc8a47e.css"
as="style"
media="(min-width: 1924px)">
<link rel="stylesheet"
href="https://cdn-production-opera-website.operacdn.com/staticfiles/main-1924.0713dcc8a47e.css"
media="print"
onload="this.media='(min-width: 1924px)'; this.onload=null;">
</head>
<body class="">
<header id="header"
class="hf hf__header">
<input id="header__switcher"
aria-label="Open mobile menu"
class="hidden--clip header__switcher"
type="checkbox">
<div class="header "
role="navigation">
<div class="header__wrapper container-fluid wrapper">
<a class="header__brand"
aria-label="Back to Main Page"
href="/">
<i class="icon-component "
data-icon-name="Opera (text)"
data-icon-type="Logo"
data-icon-alt="Opera (text)"
data-icon-width="104"></i>
</a>
<div class="header__menu">
<ul class="header__main-nav-items"
role="menu">
<li class="header__main-nav-item header__main-nav-item--dropdown active" role="menuitem">
<a href="/browsers" class="header__main-nav-anchor"
data-code="header-nav--browsers"
data-menu="Browsers">
<i class="icon-component hover-color"
data-icon-name="Browsers"
data-icon-type="Header"
data-icon-alt="Browsers"
data-icon-width="24"></i>
<span class="header__main-nav-anchor__title">
Browsers
</span>
</a>
<div class="header__main-nav-item--dropdown__panel">
<a href="/opera"
data-code="header-nav--opera-browser"
class="header__main-nav-item--dropdown__bar text-12 font-weight--700">
Opera Browser
<span class="header__main-nav-item--dropdown__badge header__main-nav-item--dropdown__badge--updated">Updated</span>
</a>
<a href="/air"
data-code="header-nav--opera-air"
class="header__main-nav-item--dropdown__bar text-12 font-weight--700">
Opera Air
</a>
<a href="/gx"
data-code="header-nav--opera-gx"
class="header__main-nav-item--dropdown__bar text-12 font-weight--700">
Opera GX
</a>
<a href="https://www.operaneon.com" target="_blank"
data-code="header-nav--opera-neon"
class="header__main-nav-item--dropdown__bar text-12 font-weight--700">
Opera Neon
<span class="header__main-nav-item--dropdown__badge header__main-nav-item--dropdown__badge--new">New</span>
</a>
<a href="/mini"
data-code="header-nav--opera-mini"
class="header__main-nav-item--dropdown__bar text-12 font-weight--700">
Opera Mini
</a>
<a href="/download"
data-code="header-nav--download"
class="header__main-nav-item--dropdown__bar text-12 font-weight--700">
Downloads
</a>
<a href="/features"
data-code="header-nav--features"
class="header__main-nav-item--dropdown__bar text-12 font-weight--700">
Features
</a>
<a href="/opera/compare"
data-code="header-nav--compare"
class="header__main-nav-item--dropdown__bar text-12 font-weight--700">
Compare Browsers
</a>
</div>
</li>
<li class="header__main-nav-item" role="menuitem">
<a href="/secure-private-browser" class="header__main-nav-anchor"
data-menu="Privacy & Security">
<i class="icon-component hover-color"
data-icon-name="Security"
data-icon-type="Header"
data-icon-alt="Security"
data-icon-width="24"></i>
<span class="header__main-nav-anchor__title">
Privacy & Security
</span>
</a>
</li>
<li class="header__main-nav-item header__main-nav-item--dropdown" role="menuitem">
<a href="/about" class="header__main-nav-anchor"
data-menu="About">
<i class="icon-component hover-color"
data-icon-name="About us"
data-icon-type="Header"
data-icon-alt="About us"
data-icon-width="24"></i>
<span class="header__main-nav-anchor__title">
About
</span>
</a>
<div class="header__main-nav-item--dropdown__panel">
<a href="/about"
class="header__main-nav-item--dropdown__bar text-12 font-weight--700">
About Opera
</a>
<a href="https://blogs.opera.com/"
target="_blank"
aria-label="Opera Blog"
class="header__main-nav-item--dropdown__bar text-12 font-weight--700">
Opera Blog
</a>
</div>
</li>
<li class="header__main-nav-item" role="menuitem">
<a href="/help" class="header__main-nav-anchor"
data-menu="Help">
<i class="icon-component hover-color"
data-icon-name="Help"
data-icon-type="Header"
data-icon-alt="Help"
data-icon-width="24"></i>
<span class="header__main-nav-anchor__title">
Help
</span>
</a>
</li>
</ul>
<div class="header__download">
<span class="download-button--wrapper download-button--desktop
download-button--full download-button--small "
role="button">
<a href="https://download.opera.com/download/get/?partner=www&opsys=Linux"
data-code='download-button'
class="button os-linux"
data-platform="auto"
data-event-action="download_opera"
data-event-category="new_floating_header"
rel="nofollow noopener"
data-alternative="None">
<span class="cta">Download now</span>
</a>
</span>
</div>
</div>
<div class="header__mobile container-fluid">
<a class="header__mobile__brand"
aria-label="Back to Main Page"
href="/">
<img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/logo/logo-flat-horizontal.3a48a9c34651.svg"
alt="Opera"
width="274"
height="100"
class="hidden-in-darkmode"
style="height: 3rem; width: auto; aspect-ratio: 274/100;"
fetchpriority="high">
<img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/logo/logo-flat-white-horizontal.35e1a8f1fc3b.svg"
alt="Opera"
width="274"
height="100"
class="hidden-in-lightmode"
style="height: 3rem; width: auto; aspect-ratio: 274/100;"
fetchpriority="high">
</a>
<label class="header__menu-switcher"
for="header__switcher">
language:
</label>
</div>
</div>
</div>
</header>
<main class="legal-page">
<section class="container-fluid legal-page--content wrapper">
<div class="text-content">
<h2 data-block-key="sbqlq">Opera Privacy Statement</h2><p data-block-key="ecbs0"><i>Last updated: March 25, 2026</i></p><p data-block-key="rtpc"></p><h2 data-block-key="9048n">Introduction</h2><p data-block-key="6ve8k">This privacy statement describes how we use data in our browsers, websites, and services. Some of the data we use is considered “personal data” under applicable law. However, even when we use personal data, we have no practical way of actually identifying you as an individual. This means that our users are essentially anonymous to us.</p><p data-block-key="egojb">The specific categories of data that we collect, use, or otherwise process can vary from product to product, from one purpose to another, and in some cases based on your location. This Privacy Statement gives you detailed information about when, how, and why we process your data (including but not limited to personal data), as well as your rights under applicable law.</p><p data-block-key="7piq5"></p><h2 data-block-key="b34lk">Definitions</h2><p data-block-key="5chog">First, let’s define some key terms. Many of these definitions are adapted from the General Data Protection Regulation (or “GDPR”), the data privacy law which applies in the European Union as well as in Norway. We use the GDPR as a guidepost because it applies directly to us as a European company and because we believe it sets the highest legal standards for our users’ privacy. In some cases we have simplified definitions here in order to make them easier to understand.</p><p data-block-key="a8qk9"><b>Personal data:</b> Any information relating to an identified or identified natural person, as outlined in the GDPR. This includes data such as your IP address, device IDs, advertising IDs. Important: This is just an example of what the GDPR considers personal data. We do not collect all this data at all times. You can check below, under each service to see what data we do collect. There we also explain how we process personal data, and list our specific purposes and legal basis for processing under the GDPR.</p><p data-block-key="4il4c"><b>Data controller:</b> The person or company that decides whether and how to process personal data. For the purposes of this Privacy Statement, this is Opera Norway AS.</p><p data-block-key="d5r48"><b>Data processor:</b> Someone who processes personal data on behalf of a data controller.</p><p data-block-key="dvkbo"><b>Legal basis:</b> The specific legal reason that allows us to process personal data. The GDPR sets out six specific grounds for processing personal data. The ones most relevant to our Applications are as follows:</p><p data-block-key="2uqm4"><b>Consent:</b> When we process personal data based on your consent, that means we have asked for your permission to do so and you’ve expressly given it to us.</p><p data-block-key="5769p"><b>Contractual grounds:</b> When we process personal data because it is necessary to perform a contract, for example to provide you with a service as described in our Terms of Service or some other agreement.</p><p data-block-key="431lg"><b>Legitimate interest:</b> When we process personal data based on legitimate interest, that means we have a legitimate reason to use the personal data (such as ensuring that products work properly, or alerting users about promotions and updates), which is in balance with your right to privacy.</p><p data-block-key="2ocg"><b>Legal compliance:</b> In some instances it is necessary for us to process personal data in order to fulfill other obligations under the law, for example detecting fraud, making sure you are who you say you are, etc.</p><p data-block-key="29goq"><b>Applications:</b> The specific apps we offer, as mentioned below, including our desktop and mobile browsers.</p><p data-block-key="3kobs"><b>Monetization:</b> Making money. Nearly all of our Applications are free to download and use. Therefore we monetize our products in various ways, primarily by selling advertising within the Applications themselves. The money we make helps us keep the lights on, pay the salaries of our staff, and continue developing the most innovative, independent browsers on the market. We do not sell users’ personal data to anyone, either to monetize or to provide advertising.</p><p data-block-key="74oci"><b>Purpose:</b> The specific reason or reasons we have for processing data, including personal data.</p><p data-block-key="fm5op"><b>Process or processing:</b> Collecting or using personal data. As defined in the GDPR, the word “processing” can mean doing almost anything with personal data. However, it never means selling such data or making it available to anyone in ways that are not covered by the GDPR. Below we have used it in this general sense when we have a general meaning in mind, and used more specific terms (like “store” or “share”) where appropriate.</p><p data-block-key="bbiqa"><b>Retention / retain:</b> The time period for which we will continue to store data. In general, we do not process or store personal data longer than needed and therefore delete it after a certain period of time. Below we have included some more specific details on retention periods, which vary depending on the type of personal data at issue and the purpose for which it is processed.</p><p data-block-key="2m7gs"><b>Transfer:</b> Personal data is “transferred” when it is sent or made available to someone or some other company outside the European Economic Area (or EEA - that is the European Union plus Norway, Iceland, and Liechtenstein).</p><p data-block-key="fla3"><b>Opera Group:</b> Our affiliated group of companies, including Opera Norway AS (a Norwegian company) which develops and publishes the Opera browsers, as well as other subsidiaries and affiliated companies around the world. For more information, see below.</p>
</div>
</section>
<div class="legal-page--other-content mt5">
<section class="simple-block container-fluid wrapper">
<h2 data-block-key="87msk">Applications</h2><p data-block-key="cscgh">The kinds of data (including personal data) that we process may vary depending on which applications you use. You can read more about how each of our products processes data below.</p>
</section>
</div>
<div class="legal-page--other-content mt5">
<section class="container-fluid wrapper accordion section-component " >
<div>
<div class="accordion__block">
<h3 class="text-20 text-md-24 accordion__button ">
Desktop Browsers
</h3>
<div class="accordion__panel">
<div class="text-16 mt5 dark-text-opacity">
<p data-block-key="v5oja">The following sections describe how we process data (including, but not limited to personal data) in our desktop applications – Opera browser for Computers (on Windows, Mac, and Linux) and Opera GX desktop (on Windows and Mac).</p><h3 data-block-key="a62d6">Opera Account</h3><p data-block-key="68m56">Our browsers do not require you to sign in to start using them for regular browsing activities, such as browsing the web. However, you have the option to create an <a href="https://auth.opera.com/">Opera account</a> to use certain services (like commenting on our Forum or blogs, subscribing to VPN Pro, accessing Cashback, etc.). Note that even if you create an Opera account, your account and its associated data is not associated with the random ID of your browser installation, which remains separate.</p><p data-block-key="a4h5k">If you choose to create an <a href="https://auth.opera.com/">Opera account</a>, we ask for a preferred username and an email address. The email address will be used to identify you as a user and for password recovery. Alternatively, you can use your Google, Facebook, Twitter, or VK account to sign in to an Opera account and access our services with the same profile. If you use these social networks to sign in, we may collect information such as your name, profile picture, and email address from them. If you use your Opera account in conjunction with a service like VPN Pro or Cashback, the data we process in connection with those services will be associated with your Opera account.</p><p data-block-key="acg0m">You can modify your Opera account, delete it, or request a copy of your data using your <a href="https://auth.opera.com/account/edit-profile">profile page</a>. We retain your data for seven days after you’ve decided to discontinue your Opera account in case you choose to change your mind. After this seven-day period, your account and data are permanently deleted. Your Opera account with a verified email address will be deleted automatically if you don’t sign in for two years. Accounts with unverified email addresses will be deleted after six months of inactivity.</p><p data-block-key="1palu">Note also that Opera allows you to sync your browser data, such as Speed Dial entries and bookmarks, between devices that have another Opera browser installed on them. The synced data is retained until your Opera account is deleted, and it is never associated with your browser installation’s randomly generated ID.</p><p data-block-key="3krgt"><b>Purpose:</b> To allow you to access certain services.</p><p data-block-key="7rbsi"><b>Legal basis:</b> Contractual grounds (e.g., providing you the services).</p><p data-block-key="ejc04"></p><h3 data-block-key="4dsvl">Personalized Content</h3><p data-block-key="cac13">Our browsers may include personalized content features, such as a native News Feed, or specialty content features such as Shopping Corner. When you interact with these features, we collect some information, such as the articles you read in the News Feed, and your general location (your city or country). We use this information to build a profile of your interests, which we use only to select more relevant content for you. This information is only linked to your browser installation’s randomly generated ID and may be stored on our servers for up to three months - after this three-month period, this data is automatically deleted. We process this data based on your consent. If you would like to withdraw your consent, you can go to the Settings menu under ‘Privacy and security’ and ‘Privacy consent settings’, and disable ‘Personalized content’.</p><p data-block-key="cqv6k"><b>Purpose:</b> Providing a more personalized experience and encouraging user engagement; monetization.</p><p data-block-key="eafim"><b>Legal basis:</b> Consent.</p><p data-block-key="6oka6"></p><h3 data-block-key="ekas0">Browser Extensions</h3><p data-block-key="6je09">You can install browser extensions or add-ons, which can be downloaded from the <a href="https://addons.opera.com/">Opera add-ons</a> website. Most of these extensions are developed by third parties and are subject to their own privacy terms. Please carefully review the terms before installing extensions. Please note that, as described in our Terms of Service, the sidebar messaging services (such as WhatsApp, Telegram, Facebook Messenger, etc.) offered within Opera are provided by third parties. These services will not collect any data from you through the sidebar tool unless you specifically sign into them and use them. Opera does not collect any data when you use these services.</p><p data-block-key="d2err"></p><h3 data-block-key="51ign">Free VPN</h3><p data-block-key="bgtj">Our free, built-in browser VPN is a no-log service. This means we do not log any personal data, or any other data, related to your browsing and originating network address on our servers while you use the VPN. When the VPN is active, all browser traffic is encrypted using strong, industry-standard AES-256 encryption.</p><p data-block-key="a5t89"></p><h3 data-block-key="8h2f4">VPN Pro</h3><p data-block-key="9h315">Depending on where you live, you may be able to purchase a premium VPN service called ‘VPN Pro’ through a subscription.</p><ul><li data-block-key="5h4uf">VPN Pro is provided by a third-party service provider which owns, operates, and maintains the infrastructure which provides the Service. Data communicated through VPN Pro will be encrypted and routed through one of thousands of servers around the world. However, we do not promise that the service is absolutely secure.</li><li data-block-key="4g916">VPN Pro is a no-log service. Neither we nor our third-party service provider collect or store records of web pages you visit or links you click on in the servers dedicated for this Service.</li><li data-block-key="bp4rt">In some cases, to use VPN Pro you need to create and sign in to an Opera account. We use your Opera account to identify you as a valid subscriber to the VPN Pro service. We will share only information required to identify you as a subscriber with our third-party service provider, including a random ID number that is not associated with any of your real-life personal information. We do not share other data or personal data such as your email or name with our third-party service provider.</li></ul><p data-block-key="2s4bh"><b>Purpose:</b> To provide the service.</p><p data-block-key="c0cqe"><b>Legal basis:</b> Contractual grounds.</p><p data-block-key="6p000"></p><h3 data-block-key="ec4q4"><b>AI Chat</b></h3><p data-block-key="7c5em">Depending on which version of the browser you are using, you may be able to access an AI-powered chat assistant (‘AI Chat’). AI Chat is powered by OpenAI and Google (both US-based companies).</p><p data-block-key="5v8vu">To access AI Chat, you do not need to sign into your Opera account, however if you do log in, you’ll get access to additional/extended features of AI Chat. We do not share your Opera account data with anyone, including OpenAI or Google. For more information on how we use and retain Opera account data, see the section on Opera account above.</p><p data-block-key="4guck">In order to provide you with its functionalities, AI Chat engine processes data from (i) your input - which means anything that you choose to type into or attach to AI Chat chatbox, including any personal data you choose to include; (ii) opened websites/tabs or groups of websites/tabs, where you operate while using AI Chat. To learn more about specific functionalities of AI Chat, please read our <a href="https://help.opera.com/en/browser-ai-faq/">FAQ</a>.</p><p data-block-key="b6fsv">Your input is first processed by AI Chat to understand how to build the best possible answer. Based on your prompt, AI Chat selects and shares it with either OpenAI or Google to generate a response, depending on which model is best suited for your request. This helps ensure you receive more accurate and relevant answers. Moreover, based on your input, AI Chat may identify prompts with potential for further exploration—either through AI Chat itself or by searching for something relevant on Google. In such cases, your input may be shared with Google to generate Search Suggestions that enrich the response. You can always opt out of the Google Search Suggestions feature in AI Chat “Settings”.</p><p data-block-key="9ei2i">Additionally, AI Chat also identifies prompts related to shopping, and may enrich its responses with relevant product suggestions from our partners. If AI Chat’s response to your input includes information about specific products, AI Chat will share relevant keywords, plus your country, language, and a partial IP address (with the last octet removed, to prevent precise identification), with our third-party partners, and return a shopping suggestion if possible. We will ask for your consent for such data processing when our service detects for the first time that it may include shopping suggestions in the response(s) while you’re using AI Chat. These shopping suggestions are advertisements, and Opera may earn a commission from them. AI Chat does not share your prompts with our advertising partners (or anyone else) for this purpose, nor does AI Chat use your prompts to build a profile of you or your interests. You can opt out of this feature in the “Settings” menu at any time.</p><p data-block-key="48p5c">After your session is complete, your chats, URLs of sites you visited, and tab names will be stored locally on your device and on Opera servers but will not be retained by OpenAI or Google. This is needed to allow you to continue your conversations with AI Chat.</p><p data-block-key="f9avi">The aforementioned data is stored, fully encrypted, on Opera’s servers, and will be automatically deleted after 365 days if you use AI Chat while logged into your Opera Account. If you use AI Chat without being logged into your Opera account, the data will be deleted after 30 days. At any time, you can delete your chats (both stored locally and on Opera servers) by using a provided option.</p><p data-block-key="34a68"><b>Purpose:</b> To provide and manage the service, and to support monetization through shopping suggestions for the enhanced convenience of the user.</p><p data-block-key="b56qv"><b>Legal basis:</b> Legitimate interest (for Opera account data), Consent (for any data you input to AI Chat, and shopping suggestions), Contractual grounds (other data).</p><p data-block-key="4resa"></p><h3 data-block-key="51aue">Cashback</h3><p data-block-key="cmich">Cashback is an incentive program where you can earn rewards when purchasing goods or services from participating online merchants. If you choose to use the Cashback program and visit supported websites, we will collect merchant URLs, a list of your purchased items, transaction amounts, and IP address. This data is required for the Cashback service to function, and we also use it to provide more relevant partner deals, and to detect fraud and misuse of the service. To enable payouts, your <a href="https://auth.opera.com/">Opera account</a> will be linked with a payment service provider, which will receive your customer ID, and relevant payment related data with Opera. Your payment data may be stored for up to five years due to regulatory requirements. You can modify your Opera account, delete it, or request a copy of your data using your <a href="https://auth.opera.com/account/edit-profile">profile page</a>. Your Cashback data will be automatically deleted after two years of inactivity. You may choose to delete your Cashback account, which will erase your personal data from the system, through the Account Setting menus in Cashback account.</p><p data-block-key="7cn0o"><b>Purpose:</b> To provide and improve the service.</p><p data-block-key="dkvql"><b>Legal basis:</b> Contractual grounds, legal compliance.</p><p data-block-key="5mtg3"></p><h3 data-block-key="8nlds">GX Cloud</h3><p data-block-key="53pqr">GX Cloud is a set of online services, and a community for gamers, consisting of the following websites: GX Games, GX Store,, GX Dev and GX Me.These give you access to games, and other content as well as the option to play, compete in, and create video games, mods, and so on. Certain content available on the GX Cloud feature needs to be purchased (“Paid Content”). You may also use GX Cloud as a publisher to publish and distribute content and Paid Content.</p><p data-block-key="8lj5f">You do not need an account to play most games; however, to get access to certain content (including Paid Content), participate in OPyramid rewards program and other challenges, publish, distribute or create content, you need an<a href="https://auth.opera.com/"> Opera account</a>. Opera Account dedicated to GX Cloud feature is further referred to as “GX Me Account“. After signing up for the first time, you will be prompted to provide your date of birth and an optional avatar. We use your date of birth to ensure you are eligible to use the service. You can modify your GX Me Account, delete it, or request a copy of your data using your<a href="https://auth.opera.com/account/edit-profile"> profile page</a>. For more information on how we use and retain GX Me Account data, see the section on Opera Account above.</p><p data-block-key="a3i7j">You need to have an active payment account established with a payment service provider, bank, and/or other partner who cooperates with Opera for purposes of purchasing or distributing Paid Content. The payment service provider may process additional data, including your name, email address, full address, phone number and card ID. The payment service provider will share your customer ID, email address, and relevant payment-related data with Opera. Your payment data may be stored for up to five years due to regulatory requirements.</p><p data-block-key="biae">Within the OPyramid rewards program we give you an option to participate in certain qualifying activities and earn rewards. Such activities might be organized and offered by Opera or third parties. For the purposes of OPyramid organization we may process your GX Me Account data (to contact you if needed e.g. for the purpose of redeeming reward). In some cases OPyramid quest may require linking your GX Me Account with your account that you registered with a third party - then we will share and receive some of your data (like your user ID and data related to quest progress). If some additional data would be required we will inform you about it in OPyramid specific terms.</p><p data-block-key="chv9u"><b>Purpose:</b> To provide the service.</p><p data-block-key="8t9q4"><b>Legal basis:</b> Contractual grounds.</p><p data-block-key="97reb"></p><h3 data-block-key="30s3f">GameMaker</h3><p data-block-key="15tp">Depending on where you live, it may be possible to purchase a license to the proprietary computer software program known as ‘GameMaker’, as well as to access platforms and websites that we operate, where you may use our content, or publish your content.</p><p data-block-key="1mqo9">To access and use GameMaker, you will need to sign into your Opera account. We do not share your Opera account data with anyone. For more information on how we use and retain Opera account data, see the section on Opera account above. We may process your Opera account data (including email, user ID, location, device ID), as well as your other personal data such as first name and last name, only to identify you as a valid subscriber to GameMaker. If you use a legacy GameMaker account (meaning an account created before September 21st, 2022) we process additional data, such as: your home address, phone number, security questions answers, VAT number.</p><p data-block-key="e9o9g">To enable payments (both making and receiving), your Opera account will be linked with a payment service provider. The payment service provider may process additional data, including your full address and card ID. The payment service provider will share your customer ID, and relevant payment-related data with Opera. Your payment data may be stored for up to five years due to regulatory requirements.</p><p data-block-key="40bql">If you use GameMaker Forum, we will additionally collect and process your date of birth. This is to ensure that you are over the required age limit.</p><p data-block-key="aa6dq">Various educational subscriptions for GameMaker are available to schools and other institutions of learning, licensed under applicable law to teach (‘Educational Institutions’). We do not collect and/or process any personal data or any personally identifiable data from Educational Institutions’ students, pursuant to or in connection with educational subscriptions, and thus students remain entirely anonymous to us. We do collect and process personal data from Authorised Representatives of Education Institutions (e.g. teachers) in the course of opening an account. For more information, please see our <a href="/legal/terms">GameMaker Feature Terms of Service</a>.</p><p data-block-key="4d887">Please note that with reference to your data processed in scope of GameMaker service, you may make inquiries or requests (including a request to access or delete any of your personal data that we might possess) by sending an email to <a href="mailto:datacontroller@yoyogames.com">datacontroller@yoyogames.com</a>.</p><p data-block-key="3b3ep"><b>Purpose:</b> To provide the service.</p><p data-block-key="8q2ef"><b>Legal basis:</b> Contractual grounds.</p><p data-block-key="bji2m"></p><h3 data-block-key="8nfd9">My Flow</h3><p data-block-key="9bqml">If you use the “My Flow” function, a random ID is generated by the Flow server and assigned to each client device. These IDs are used solely to enable pairing functionality between Opera desktop and mobile applications and persist only while your devices are connected to My Flow. Your data is protected with end-to-end encryption and we retain it only as long as you continue to use the feature. You can disconnect your devices from My Flow, and delete your data through the application’s <a href="https://help.opera.com/touch/my-flow/">Settings</a> menu.</p><p data-block-key="6jgik"></p><h3 data-block-key="97tq2">Usage Statistics</h3><p data-block-key="1v0b5">When you install an Opera application, a random installation ID is generated. We collect this identifier, as well as Machine ID, hardware specifications (model, release date, etc.), operating system, environment configuration, and feature usage data to improve our products and services. For example, we may use it to analyze how our users interact with our applications, or to determine the effectiveness of promotional campaigns, or to detect and debug problems. We have no practical way of using any of this data to identify you personally. We retain this usage data for up to three years. You can opt out of reporting extended statistics through the Settings menu under ‘Privacy and Security’, by disabling ‘Help improve Opera by sending feature usage information’.</p><p data-block-key="f1hkp"><b>Purpose:</b> Improving our products.</p><p data-block-key="jsnh"><b>Legal basis:</b> Legitimate interest (debugging and improving products and services).</p><p data-block-key="9unjc"></p><h3 data-block-key="6dbf7">Crash Reports and Logs</h3><p data-block-key="fnvj8">If an Opera application crashes, we collect a log that includes some information about your browser’s version, your operating system, platform and some memory data related to the crash. We collect this data with the sole purpose of improving our products and services. Crash logs are kept for up to five months. You can opt out of reporting this data to us through the Settings menu under ‘Privacy and security’, by disabling “Automatically send crash reports to Opera” .</p><p data-block-key="9alvq">If you visit our websites, we may collect your IP address to help diagnose problems with our servers and to administer our websites. We use IP addresses of website visitors solely for this purpose and may keep these website access logs for up to six months.</p><p data-block-key="8c3un"></p><h3 data-block-key="82q0t">Browser Assistant</h3><p data-block-key="7idmo">Opera for computers on Windows includes a component called Browser Assistant that displays notifications promoting the browser’s features or the browser itself. Browser Assistant checks if any notifications are pending on a scheduled basis and may report occurrences of certain system events (such as low battery, low hard disk space, new Wi-Fi network connected, another browser installed). Browser Assistant collects this data, as well as a randomly generated Opera ID so that we can determine and evaluate the effectiveness and performance of the notifications that we display to users. We may retain this data for up to four years. You can opt out of this data collection through the Settings menu under ‘Privacy and Security’, by disabling ‘Display promotional notifications’.</p><p data-block-key="f015k"><b>Purpose:</b> Improving our products.</p><p data-block-key="66dhv"><b>Legal basis:</b> Legitimate interest (improving our products by understanding effectiveness of notifications of users).</p><p data-block-key="s277"></p><h3 data-block-key="aevg7">Malicious-site Check</h3><p data-block-key="52rqf">We use a fraud prevention framework (which includes Google Safe Browsing) to check the primary domain name of the website you visit against lists of known, malicious websites to protect you online. We do not collect full URLs of pages you visit for this purpose. We do not process any personal data in this context. You can disable this feature by heading to your browser Settings under ‘Privacy and security’, ‘Security’, and disabling ‘Protect me from malicious sites’.</p><p data-block-key="9sk3m"></p><h3 data-block-key="a1qq8">Search Providers</h3><p data-block-key="f8ac5">Opera browsers allow you to customize the search engine used in the browser address bar. In most cases Google is the default provider, but other providers (such as Bing) might be set as default based on which version of the Application you are using. You can always change your default provider in the settings menu. Opera does not share personal data with search engine providers to enable search within Opera browsers.</p><p data-block-key="oe70">Just like any other third-party website you might access, use of any search engine is subject to the terms of service and privacy policy offered by the specific search engine provider. Some of the web search services available in the Application may be provided by partners of CodeFuel Ltd. including, for example, bing.com. For information on the web search services data collection, please visit the search provider’s privacy policy.</p><p data-block-key="2l21d"></p><h3 data-block-key="8gfpp">Personalized Ads & Profiling</h3><p data-block-key="u2ah">Based on data such as IP address, hashed user ID, and your general location (your country or city), some of our Applications serve targeted ads. These ads are provided by our monetization partners. You can always adjust your personalized ad choices in the application’s Settings menu or through your operating system’s settings.</p><p data-block-key="8mlq8">As noted in our End User License Agreements for <a href="/legal/eula-computers">computers</a>, <a href="/legal/eula-mobile">mobiles</a>, and the <a href="/legal/terms">Terms of Service</a>, our applications are generally provided for free and are therefore ad-supported. You can choose to share this data with us to help us provide a more personalized experience for you and offset the costs of our business. You can consent to sharing this data when you first install our applications or at any point through the settings.</p><p data-block-key="18kq8">We may also combine this data with other elements – including categories of websites you search and visit, device information (model, release date, device IDs, hardware specifications, operating system, etc.), and categories of ads you have clicked on in our products. We use this to build a better understanding of what our users are interested in.</p><p data-block-key="2vc6f">We do not log or store your entire browsing history for this purpose. Instead we make a simple record of whether you have visited certain categories of websites based on the primary domains of pages you visit and mix it with other data (which might depend on which application you use, and may include page loads, number of Speed Dial clicks, whether you have ad blocker enabled or not, etc.) to make an informed guess about whether you are interested in broad categories of interests (such as sports, gaming, news, etc.). We then add this basic profile to other data, such as your general location (country or city) in order to enable our advertising partners to target their ads to groups of users who might be interested in their products and services.</p><p data-block-key="5s0lk">We do not share your personal interests or browsing history with anyone. We retain this data for up to one year, after which it is deleted automatically.</p><p data-block-key="f5g4p">We only process this data based on your consent. If you would like to view your options, or to withdraw your consent, please visit the settings menu of the application you are using.</p><p data-block-key="8pcc7"><b>Purpose:</b> Improving our products and services, monetization.</p><p data-block-key="86ref"><b>Legal basis:</b> Consent.</p><p data-block-key="7oon5"></p><h3 data-block-key="c8kk">Speed Dials</h3><p data-block-key="6foa2">Our browsers include visual bookmarks on the home screen which we call Speed Dials. You can customize the Speed Dials through the Application’s settings menu. Some Speed Dials are ads provided by our advertising partners. If you choose to use Opera’s default Speed Dials, you may be redirected through Opera’s partners or other third parties. These partners and third parties may collect data from you independently of Opera. This data may include third party cookies, device IDs, and session statistics. If you wish to opt out of such data collection, you can block third-party cookies through your browser’s Cookie Settings. You may also choose not to receive Speed Dial suggestions, or to adjust your Speed Dials by deleting preset options based on your own preference.</p><p data-block-key="7s3l2"></p><h3 data-block-key="eercn">Promotion & Marketing</h3><p data-block-key="f5q1p">We process some data in order to promote and market our products and services. Some of this data comes directly from you when you submit it to us for some specific purpose. For example, if you decide to provide feedback to Opera, or participate in a promotional campaign, contest, or survey, organized by Opera or our partners on behalf of Opera, we may ask for information such as your name, age, phone number, email, or postal address. Depending on the nature of the campaign or contest, it may be necessary to share your data with third parties. When that applies, we will make it clear in the terms applicable to the campaign.</p><p data-block-key="besaq">If you agree to receive marketing information from Opera via email, SMS, or push notifications, we may use third party technology providers to deliver such messages to you. You can opt out from marketing communications at any time in your Opera account profile settings or directly from a marketing email you received.</p><p data-block-key="emmrf">If you submit your phone number or email address on an application download page, we may send you a download link via SMS or email for your convenience.</p><p data-block-key="8lucn">In Opera for Windows computers, we may use the Browser Assistant component to promote the browser and its features to you. Browser Assistant comes as part of the Opera Browser for Windows, and may be manually removed from the system’s startup list, or via the browser settings. To learn more about Browser Assistant, please read our dedicated section on it in this statement.</p><p data-block-key="a8dc5">In general when we process data in the context of a promotional campaign, contest, or survey, we process your personal data on the basis that doing so is necessary to enable you to participate in the campaign. In some cases we process data for marketing purposes based on your consent. In any case we will not retain your data for longer than necessary to fulfill the specific purpose for which it was initially collected. You can always control your preferences via the settings menu or through your account, and if you have other concerns you can reach out to us <a href="https://security.opera.com/privacy-inquiry">through this form</a>.</p><p data-block-key="3b6pe"><b>Purpose:</b> To promote our products and services.</p><p data-block-key="5sl7p"><b>Legal basis:</b> Varies by context as explained above - may include contractual grounds, legitimate interest, or consent (in some cases).</p><p data-block-key="cts7g"></p><h3 data-block-key="f991k">Third Party Technologies</h3><p data-block-key="9l3o1">Our applications and services include third-party technology or code, some of which may use your data in different ways. When such third-party technologies use previously collected data, they typically act as data processors for us. When they collect data on their own, they typically act as independent data controllers. For convenience, we have included links to their privacy policies below. Data controllers are marked with an asterisk.</p><ul><li data-block-key="60mgq"><b>Third-party features:</b><ul><li data-block-key="91dje"><a href="https://www.google.com/policies/privacy">Google Geolocation API</a> (Windows only)*</li><li data-block-key="6jbgh"><a href="https://policies.google.com/privacy">Google Safe Browsing</a></li><li data-block-key="bi3a8"><a href="https://policies.google.com/privacy">Google Ads</a></li><li data-block-key="aq5qj"><a href="https://policies.google.com/privacy">Firebase Analytics</a></li></ul></li><li data-block-key="5nrnt"><b>Payment service providers:</b><ul><li data-block-key="enc90"><a href="https://www.paypal.com/webapps/mpp/ua/privacy-full">Paypal</a>*</li><li data-block-key="f7id"><a href="https://corporate.payu.com/global-privacy-statement/">PayU</a>*</li><li data-block-key="agcf4"><a href="https://policies.google.com/privacy">Google Billing Services</a></li><li data-block-key="6qm5j"><a href="https://cypix.io/">Cypix</a></li><li data-block-key="538hp"><a href="https://www.rapyd.net/privacypolicy">Rapyd</a></li><li data-block-key="er5h3"><a href="https://xsolla.com/privacypolicy">Xsolla</a></li><li data-block-key="683ch"><a href="https://corporatev4.nexway.com/legal-notice-privacy/">NexWay SAS</a></li><li data-block-key="a4en"><a href="https://stripe.com/en-pl/privacy">Stripe</a></li></ul></li><li data-block-key="a43jh"><b>Technology providers:</b><ul><li data-block-key="1bjcj"><a href="https://www.brevo.com/legal/privacypolicy/">Brevo</a></li><li data-block-key="1i0jb"><a href="https://www.sendinblue.com/legal/privacypolicy/">Sendinblue</a></li><li data-block-key="aao6h"><a href="https://www.freshworks.com/privacy/">Freshdesk</a></li><li data-block-key="d9oa6"><a href="https://openai.com/policies/privacy-policy">OpenAI</a></li><li data-block-key="be3sn"><a href="https://policies.google.com/privacy?hl=en-US">Google</a></li><li data-block-key="97l19"><a href="https://www.zendesk.com/company/agreements-and-terms/privacy-notice/">Zendesk</a></li><li data-block-key="ev78h"><a href="https://mixpanel.com/legal/privacy-policy/">Mixpanel</a></li><li data-block-key="gsea"><a href="https://xenforo.com/privacy-policy/">Xenforo</a></li></ul></li></ul><p data-block-key="c6fg2">Please note that this list of third-party entities applies only to the currently supported versions of our applications and services.</p>
</div>
</div>
</div>
</div>
</section>
</div>
<div class="legal-page--other-content mt5">
<section class="container-fluid wrapper accordion section-component " >
<div>
<div class="accordion__block">
<h3 class="text-20 text-md-24 accordion__button ">
Mobile Browsers
</h3>
<div class="accordion__panel">
<div class="text-16 mt5 dark-text-opacity">
<p data-block-key="v5oja">The following sections describe how we process data (including, but not limited to personal data) in our mobile applications – Opera for Android, Opera Mini, Opera for iOS, and Opera GX Mobile.</p><p data-block-key="fee68"></p><h3 data-block-key="10n79">Opera Account</h3><p data-block-key="1a081">Our browsers do not require you to sign in to start using them for regular browsing activities, such as browsing the web. However, you have the option to create an<a href="https://auth.opera.com/"> Opera account</a> to use certain services (like commenting on our Forum or blogs, subscribing to VPN Pro, accessing Cashback, etc.). Note that even if you create an Opera account, your account and its associated data is not associated with the random ID of your browser installation, which remains separate.</p><p data-block-key="8sr8p">If you choose to create an <a href="https://auth.opera.com/">Opera account</a>, we ask for a preferred username and an email address. The email address will be used to identify you as a user and for password recovery. Alternatively, you can use your Google, Facebook, Twitter, or VK account to sign in to an Opera account and access our services with the same profile. If you use these social networks to sign in, we may collect information such as your name, profile picture, and email address from them. If you use your Opera account in conjunction with a service like VPN Pro or Cashback, the data we process in connection with those services will be associated with your Opera account.</p><p data-block-key="d8ba8">You can modify your Opera account, delete it, or request a copy of your data using your <a href="https://auth.opera.com/account/edit-profile">profile page</a>. We retain your data for seven days after you’ve decided to discontinue your Opera account in case you choose to change your mind. After this seven-day period, your account and data are permanently deleted. Your Opera account with a verified email address will be deleted automatically if you don’t sign in for two years. Accounts with unverified email addresses will be deleted after six months of inactivity.</p><p data-block-key="3n2rt">Note also that Opera allows you to sync your browser data, such as Speed Dial entries and bookmarks, between devices that have another Opera browser installed on them. The synced data is retained until your Opera account is deleted, and it is never associated with your browser installation’s randomly generated ID.</p><p data-block-key="8ntq4"><b>Purpose:</b> To allow you to access certain services.</p><p data-block-key="10ud7"><b>Legal basis:</b> Contractual grounds (e.g., providing you the services).</p><p data-block-key="d3u74"></p><h3 data-block-key="72evq">Personalized news</h3><p data-block-key="clcj6">Certain applications include a native News Feed feature. To provide you with more relevant news content in certain countries and languages, we collect some information about the articles you read in the application’s native News Feed, and your general location (your city or country). We use this information to build a profile of your interests, which we use to show you more relevant articles. This information is linked to a randomly generated News ID and stored on our servers for up to four years. We process this data based on your consent. If you would like to withdraw your consent, you can go to the settings menu and disable ‘Personalized news’.</p><p data-block-key="43qka">News applications like Apex News and Apex Football are offered by our affiliate, Opera Technology Singapore Pte. Ltd.</p><p data-block-key="7jh8t"><b>Purpose:</b> Providing a more personalized experience and encouraging user engagement; monetization.</p><p data-block-key="c81en"><b>Legal basis:</b> Consent.</p><p data-block-key="2piv1"></p><h3 data-block-key="1ohqt">Free VPN</h3><p data-block-key="vsaj">Our free, built-in browser VPN is a no-log service. This means we do not log any personal data, or any other data, related to your browsing and originating network address on our servers while you use the VPN. When the VPN is active, all browser traffic is encrypted using strong, industry-standard AES-256 encryption.</p><p data-block-key="eg2f7"></p><h3 data-block-key="24ic7">VPN Pro</h3><p data-block-key="ei5rs">Depending on where you live, you may be able to purchase a premium VPN service called ‘VPN Pro’ through a subscription.</p><ul><li data-block-key="77gjg">VPN Pro is provided by a third-party service provider which owns, operates, and maintains the infrastructure which provides the Service. Data communicated through VPN Pro will be encrypted and routed through one of thousands of servers around the world. However, we do not promise that the service is absolutely secure.</li><li data-block-key="fej4p">VPN Pro is a no-log service. Neither we nor our third-party service provider collect or store records of web pages you visit or links you click on in the servers dedicated for this Service.</li><li data-block-key="4gudl">In some cases, to use VPN Pro you need to create and sign in to an Opera account. We use your Opera account to identify you as a valid subscriber to the VPN Pro service. We will share only information required to identify you as a subscriber with our third-party service provider, including a random ID number that is not associated with any of your real-life personal information. We do not share other data or personal data such as your email or name with our third-party service provider.</li></ul><p data-block-key="7ne4n"><b>Purpose:</b> To provide the service.</p><p data-block-key="124al"><b>Legal basis:</b> Contractual grounds.</p><p data-block-key="b7u9b"></p><h3 data-block-key="9gngc">Aria</h3><p data-block-key="jac0">Depending on which version of the browser you are using, you may be able to access an AI-powered chat assistant (‘Aria’ or ‘AI Chat’). Aria is powered by OpenAI and Google (both US-based companies).</p><p data-block-key="7jinj">To access Aria, you do not need to sign into your Opera account, however if you do log in, you’ll get access to additional/extended features of Aria. We do not share your Opera account data with anyone, including OpenAI or Google. For more information on how we use and retain Opera account data, see the section on Opera account above.</p><p data-block-key="5qcrs">Your input (which means anything that you choose to type into Aria’s chatbox, including any personal data you choose to include) is first processed by Aria to understand how to build the best possible answer. Based on your prompt, Aria selects and shares it with either OpenAI or Google to generate a response, depending on which model is best suited for your request. This helps ensure you receive more accurate and relevant answers. Moreover, based on your input, Aria may identify prompts with potential for further exploration—either through Aria itself or by searching for something relevant on Google. In such cases, your input may be shared with Google to generate Search Suggestions that enrich the response. You can always opt out of the Google Search Suggestions feature in Aria Settings.</p><p data-block-key="50q0s">Aria has several additional features, which you may choose to use (e.g. context mode, image generation, voice output, image understanding, tabs management). Aforesaid features may require collecting and processing additional data, i.e. URL and tab names. To learn more, please read our <a href="https://help.opera.com/en/browser-ai-faq/">FAQ</a>.</p><p data-block-key="dhks1">After your session is complete, your chats, URLs of sites you visited, and chat tab names will be stored locally on your device and on Opera servers but will not be retained by OpenAI or Google. This is needed to allow you to continue your conversations with Aria.</p><p data-block-key="5lee5">The aforementioned data will be automatically removed after 30 days from Opera’s servers but will still be available on your device. At any time, you can delete your chats (both stored locally and on Opera servers), by going to the chats list by tapping the timeline icon on the top bar of the chat. There you can either delete them one at a time by swiping, or you can select multiple chats and delete them all at once by clicking the bin icon.</p><p data-block-key="2k7od"><b>Purpose:</b> To provide and manage the service</p><p data-block-key="2jife"><b>Legal basis:</b> Legitimate interest (for Opera account data), Consent (for any data you input to Aria), Contractual grounds (other data).</p><p data-block-key="3ddgb"></p><h3 data-block-key="e9cla"><b>Opera Rewards Points</b></h3><p data-block-key="erekd">Opera Rewards Points is a rewards program where you can earn Opera Points when participating in multiple activities throughout Opera Mini.</p><p data-block-key="b8kb">In order to redeem Opera Points you need to use the functionality of Opera Mini. The processing of your data while using the aforesaid Opera products, will happen in accordance with sections of this document applicable to Opera Mini.</p><p data-block-key="74n9p"><b>Purpose:</b> To provide and improve the service.</p><p data-block-key="6a4dj"><b>Legal basis:</b> Contractual grounds.</p><p data-block-key="2c4d2"></p><h3 data-block-key="3s9p5">Data Compression</h3><p data-block-key="4lh14">Extreme-savings mode in Opera Mini renders web pages on our servers before sending a compressed version of the content to the application on your device. High-savings mode (Opera Turbo) does not render content, but our servers look through your requests to see if any elements on the page can be compressed before sending them to your device. If you use extreme-savings mode or Opera Turbo in Opera Mini, we log your IP address, a randomly generated ID, advertising ID, and URLs of your requests that are sent through our servers, but not the content. We may also log a phone number and IMEI, if they were provided by your mobile operator. If you use Opera Turbo in Opera for Android, we log your IP address ,a randomly generated ID, advertising ID, and URLs of your requests that are sent through our servers, but not the content. We use this data to debug and improve our services, and we store it in our server logs for up to forty-five days, after which it is deleted automatically.</p><p data-block-key="94n8j"><b>Purpose:</b> To provide the service; improving our products and services.</p><p data-block-key="aoonu"><b>Legal basis:</b> Contractual grounds.</p><p data-block-key="5drl4"></p><h3 data-block-key="ej6eq">Cashback</h3><p data-block-key="avlhc">Cashback is an incentive program where you can earn rewards when purchasing goods or services from participating online merchants. If you choose to use the Cashback program and visit supported websites, we will collect merchant URLs, a list of your purchased items, transaction amounts, and IP address. This data is required for the Cashback service to function, and we also use it to provide more relevant partner deals, and to detect fraud and misuse of the service. To enable payouts, your <a href="https://auth.opera.com/">Opera account</a> will be linked with a payment service provider, which will receive your customer ID, and relevant payment related data with Opera. Your payment data may be stored for up to five years due to regulatory requirements. You can modify your Opera account, delete it, or request a copy of your data using your <a href="https://auth.opera.com/account/edit-profile">profile page</a>. Your Cashback data will be automatically deleted after two years of inactivity. You may choose to delete your Cashback account, which will erase your personal data from the system, through the Account Setting menus in Cashback account.</p><p data-block-key="64i52"><b>Purpose:</b> To provide and improve the service.</p><p data-block-key="6ief9"><b>Legal basis:</b> Contractual grounds, legal compliance.</p><p data-block-key="e2hvd"></p><h3 data-block-key="14ntp">Malicious-site Check</h3><p data-block-key="aq76q">We use a fraud prevention framework and check the URLs you visit against lists of known, malicious websites to protect you online. We do not process any personal data in this context. You can disable this feature by heading to your browser Settings under ‘Privacy and security’ and disabling ‘Safe Browsing’.</p><p data-block-key="2s0mr"></p><h3 data-block-key="b3qig">Search Providers</h3><p data-block-key="fc3bi">Opera browsers allow you to customize the search engine used in the browser address bar. In most cases Google is the default provider, but other providers (such as Bing) might be set as default based on which version of the Application you are using. You can always change your default provider in the settings menu. Opera does not share personal data with search engine providers to enable search within Opera browsers.</p><p data-block-key="89qh6">Just like any other third-party website you might access, use of any search engine is subject to the terms of service and privacy policy offered by the specific search engine provider. Some of the web search services available in the Application may be provided by partners of CodeFuel Ltd. including, for example, bing.com. For information on the web search services data collection, please visit the search provider’s privacy policy.</p><p data-block-key="8h2s3"></p><h3 data-block-key="29jcs">Usage Statistics</h3><p data-block-key="7v7mr">When you install an Opera application, a random installation ID is generated. We collect this identifier, as well as Machine ID, hardware specifications (model, release date, etc.), operating system, environment configuration, and feature usage data to improve our products and services. For example, we may use it to analyze how our users interact with our applications, or to determine the effectiveness of promotional campaigns, or to detect and debug problems. We have no practical way of using any of this data to identify you personally. We retain this usage data linked to installation ID for up to three years.</p><p data-block-key="cphfu">We use aggregated and anonymized statistics to understand website popularity in different regions and to improve our product strategy, overall quality, and site compatibility. To generate these statistics, the browser may send the domains you access, your region, and a random identifier. Any collected domain data is kept for no more than seven days before it is fully aggregated and anonymized.</p><p data-block-key="eptjs">You can opt out of reporting extended statistics through the Settings menu under ‘Privacy and Security’, then going to the ‘Data collection’ section, and disabling ‘Send usage reports’.</p><p data-block-key="8u47o"><b>Purpose:</b> Improving our products.</p><p data-block-key="4s8ja"><b>Legal basis:</b> Legitimate interest (debugging and improving products and services).</p><p data-block-key="5bdeb"></p><h3 data-block-key="31rc">Personalized Ads & Profiling</h3><p data-block-key="7qbko">Based on data such as IP address, hashed user ID, and your general location (your country or city), some of our Applications serve targeted ads. These ads are provided by our monetization partners. You can always adjust your personalized ad choices in the application’s Settings menu or through your operating system’s settings.</p><p data-block-key="a25bv">As noted in our End User License Agreements for <a href="/legal/eula-computers">computers</a> and <a href="/legal/eula-mobile">mobiles</a>, and <a href="/legal/terms">Terms of Service</a>, our applications are generally provided for free and are therefore ad-supported. You can choose to share this data with us to help us provide a more personalized experience for you and offset the costs of our business. You can consent to sharing this data when you first install our applications or at any point through the settings.</p><p data-block-key="3p2r0">We may also combine this data with other elements – including categories of websites you search and visit, device information (model, release date, device IDs, hardware specifications, operating system, etc.), and categories of ads you have clicked on in our products. We use this to build a better understanding of what our users are interested in.</p><p data-block-key="5hfnc">We do not log or store your entire browsing history for this purpose. Instead we make a simple record of whether you have visited certain categories of websites based on the primary domains of pages you visit and mix it with other data (which might depend on which application you use, and may include page loads, number of Speed Dial clicks, whether you have ad blocker enabled or not, etc.) to make an informed guess about whether you are interested in broad categories of interests (such as sports, gaming, news, etc.). We then add this basic profile to other data, such as your general location (country or city) in order to enable our advertising partners to target their ads to groups of users who might be interested in their products and services.</p><p data-block-key="ecu3p">We do not share your personal interests or browsing history with anyone. We retain this data for up to one year, after which it is deleted automatically.</p><p data-block-key="380bd">We only process this data based on your consent. If you would like to view your options, or to withdraw your consent, please visit the settings menu of the application you are using.</p><p data-block-key="ephb5"><b>Purpose:</b> Improving our products and services, monetization.</p><p data-block-key="9u2p4"><b>Legal basis:</b> Consent.</p><p data-block-key="dn7tf"></p><h3 data-block-key="d1gqp">Speed Dials</h3><p data-block-key="b7fe7">Our browsers include visual bookmarks on the home screen which we call Speed Dials. You can customize the Speed Dials through the Application’s settings menu. Some Speed Dials are ads provided by our advertising partners. If you choose to use Opera’s default Speed Dials, you may be redirected through Opera’s partners or other third parties. These partners and third parties may collect data from you independently of Opera. This data may include third party cookies, device IDs, and session statistics. If you wish to opt out of such data collection, you can block third-party cookies through your browser’s Cookie Settings. You may also choose not to receive Speed Dial suggestions, or to adjust your Speed Dials by deleting preset options based on your own preference.</p><p data-block-key="9cj51"></p><h3 data-block-key="90p2b">Promotion & Marketing</h3><p data-block-key="clt5t">We process some data in order to promote and market our products and services. Some of this data comes directly from you when you submit it to us for some specific purpose. For example, if you decide to provide feedback to Opera, or participate in a promotional campaign, contest, or survey, organized by Opera or our partners on behalf of Opera, we may ask for information such as your name, age, phone number, email, or postal address. Depending on the nature of the campaign or contest, it may be necessary to share your data with third parties. When that applies, we will make it clear in the terms applicable to the campaign.</p><p data-block-key="e20v7">If you agree to receive marketing information from Opera via email, SMS, or push notifications, we may use third party technology providers to deliver such messages to you. You can opt out from marketing communications at any time in your Opera account profile settings or directly from a marketing email you received.</p><p data-block-key="cuthh">If you submit your phone number or email address on an application download page, we may send you a download link via SMS or email for your convenience.</p><p data-block-key="516kc">In Opera for Windows computers, we may use the Browser Assistant component to promote the browser and its features to you. Browser Assistant comes as part of the Opera Browser for Windows, and may be manually removed from the system’s startup list, or via the browser settings. To learn more about Browser Assistant, please read our dedicated section on it in this statement.</p><p data-block-key="cgvga">In general when we process data in the context of a promotional campaign, contest, or survey, we process your personal data on the basis that doing so is necessary to enable you to participate in the campaign. In some cases we process data for marketing purposes based on your consent. In any case we will not retain your data for longer than necessary to fulfill the specific purpose for which it was initially collected. You can always control your preferences via the settings menu or through your account, and if you have other concerns you can reach out to us <a href="https://security.opera.com/privacy-inquiry">through this form</a>.</p><p data-block-key="cg9fl"><b>Purpose:</b> To promote our products and services.</p><p data-block-key="2m621"><b>Legal Basis:</b> Varies by context as explained above - includes contractual grounds, or consent (in some cases).</p><p data-block-key="46ln3"></p><h3 data-block-key="45ivg">Third Party Technologies</h3><p data-block-key="9bo0v">Our applications and services include third-party technology or code, some of which may use your data in different ways. When such third-party technologies use previously collected data, they typically act as data processors for us. When they collect data on their own, they typically act as independent data controllers. For convenience, we have included links to their privacy policies below. Data controllers are marked with an asterisk.</p><ul><li data-block-key="bse6u"><b>All mobile applications</b><ul><li data-block-key="86jmn"><a href="https://www.google.com/policies/privacy">Google Geolocation API</a>*</li></ul></li><li data-block-key="6bo4i"><b>Opera for Android</b><ul><li data-block-key="3cds9"><a href="https://www.appsflyer.com/privacy-policy/">AppsFlyer</a></li><li data-block-key="21is4"><a href="https://www.facebook.com/about/privacy/">Facebook SDK</a>*</li><li data-block-key="alu3o"><a href="https://policies.google.com/privacy">Firebase Analytics</a></li><li data-block-key="ehjjj"><a href="https://firebase.google.com/terms/">Firebase Cloud Messaging</a></li><li data-block-key="dplom"><a href="https://policies.google.com/technologies/partner-sites">Google AdMob</a>*</li><li data-block-key="drnps"><a href="https://infura.io/privacy">Infura</a></li><li data-block-key="ei0ua"><a href="https://www.outbrain.com/legal/privacy">Outbrain</a>*</li><li data-block-key="obq6"><a href="https://www.amazon.com/aa/privacy">Amazon Assistant</a></li><li data-block-key="2mpgh"><a href="https://gateway.fm/privacy-policy/">Gateway</a></li><li data-block-key="dkc4j"><a href="https://polygonscan.com/privacyPolicy">Polygon</a></li><li data-block-key="9s1ve"><a href="https://wallet.roninchain.com/">Ronin</a></li><li data-block-key="e8ur7"><a href="https://solana.com/privacy-policy">Solana</a></li><li data-block-key="57uki"><a href="https://near.org/privacy/">Near</a></li></ul></li><li data-block-key="4v6ij"><b>Opera for iOS</b><ul><li data-block-key="l7nu"><a href="https://www.appsflyer.com/privacy-policy/">AppsFlyer</a></li><li data-block-key="3ejla"><a href="https://policies.google.com/privacy">Firebase Analytics</a></li><li data-block-key="e2meb"><a href="https://firebase.google.com/terms/">Firebase Cloud Messaging</a></li><li data-block-key="kpt3"><a href="https://firebase.google.com/terms/">Firebase Crashlytics</a></li><li data-block-key="2b2cb"><a href="https://policies.google.com/technologies/partner-sites">Google AdMob</a>*</li></ul></li><li data-block-key="be0qj"><b>Opera Mini for Android</b><ul><li data-block-key="cit7g"><a href="https://www.appsflyer.com/privacy-policy/">AppsFlyer</a></li><li data-block-key="3amlc"><a href="https://www.facebook.com/about/privacy/">Facebook SDK</a>*</li><li data-block-key="8uc88"><a href="https://policies.google.com/privacy">Firebase Analytics</a></li><li data-block-key="e33l8"><a href="https://firebase.google.com/terms/">Firebase Cloud Messaging</a></li><li data-block-key="4toqg"><a href="https://policies.google.com/technologies/partner-sites">Google AdMob</a>*</li><li data-block-key="d9pai"><a href="https://www.outbrain.com/legal/privacy">Outbrain</a>*</li><li data-block-key="d4ov"><a href="https://www.pangleglobal.com/zh/privacy/enduser-en">Pangle Ad SDK</a></li><li data-block-key="2kr21"><a href="https://home.mobpowertech.com/index/privacy_policy.html">Mobpower Ad SDK</a></li><li data-block-key="7avsq"><a href="https://www.mobvista.com/en/privacy">MobVista SDK</a></li></ul></li><li data-block-key="c88c5"><b>Opera Mini for iOS</b><ul><li data-block-key="f282i"><a href="https://www.appsflyer.com/privacy-policy/">AppsFlyer</a></li><li data-block-key="e7vb1"><a href="https://www.facebook.com/about/privacy/">Facebook SDK</a>*</li><li data-block-key="86qlr"><a href="https://policies.google.com/privacy">Firebase Analytics</a></li><li data-block-key="cer9h"><a href="https://policies.google.com/technologies/partner-sites">Google AdMob</a>*</li></ul></li><li data-block-key="5c52s"><b>Opera GX for Android</b><ul><li data-block-key="ecmc2"><a href="https://www.facebook.com/about/privacy/">Facebook SDK</a>*</li><li data-block-key="9lp45"><a href="https://policies.google.com/privacy">Firebase Analytics</a></li><li data-block-key="dt3ia"><a href="https://firebase.google.com/terms/">Firebase Cloud Messaging</a></li><li data-block-key="b6t7d"><a href="https://policies.google.com/technologies/partner-sites">Google AdMob</a>*</li><li data-block-key="861hv"><a href="https://infura.io/privacy">Infura</a></li><li data-block-key="1gqte"><a href="https://www.outbrain.com/legal/privacy">Outbrain</a>*</li></ul></li><li data-block-key="ebnrc"><b>Opera GX for iOS</b><ul><li data-block-key="fmbmm"><a href="https://policies.google.com/privacy">Firebase Analytics</a></li><li data-block-key="qmht"><a href="https://firebase.google.com/terms/">Firebase Cloud Messaging</a></li><li data-block-key="2p4co"><a href="https://firebase.google.com/terms/">Firebase Crashlytics</a></li></ul></li><li data-block-key="fd5gn"><b>Opera Touch</b><ul><li data-block-key="41rik"><a href="https://www.appsflyer.com/privacy-policy/">AppsFlyer</a></li><li data-block-key="c3mll"><a href="https://policies.google.com/privacy">Firebase Analytics</a></li><li data-block-key="f353c"><a href="https://firebase.google.com/terms/">Firebase Cloud Messaging</a></li><li data-block-key="104l1"><a href="https://firebase.google.com/terms/">Firebase Crashlytics</a></li></ul></li><li data-block-key="9cc8u"><b>Payment service providers</b><ul><li data-block-key="7gagr"><a href="https://www.paypal.com/webapps/mpp/ua/privacy-full">Paypal</a>*</li><li data-block-key="gbdl"><a href="https://corporate.payu.com/global-privacy-statement/">PayU</a>*</li><li data-block-key="5epgc"><a href="https://policies.google.com/privacy">Google Billing Services</a></li><li data-block-key="p4i6"><a href="https://cypix.io/">Cypix</a></li><li data-block-key="c0t31"><a href="https://www.rapyd.net/privacypolicy/">Rapyd</a></li><li data-block-key="1tbnf"><a href="https://xsolla.com/privacypolicy">Xsolla</a></li></ul></li><li data-block-key="dii3a"><b>Technology providers</b><ul><li data-block-key="44iml"><a href="https://www.sendinblue.com/legal/privacypolicy/">Sendinblue</a></li><li data-block-key="7kv7l"><a href="https://www.freshworks.com/privacy/">Freshdesk</a></li><li data-block-key="9vvn5"><a href="https://openai.com/policies/privacy-policy">OpenAI</a></li></ul></li></ul><p data-block-key="9l8vq">Please note that this list of third party entities applies only to the currently supported versions of our applications and services.</p>
</div>
</div>
</div>
</div>
</section>
</div>
<div class="legal-page--other-content mt5">
<section class="container-fluid wrapper accordion section-component " >
<div>
<div class="accordion__block">
<h3 class="text-20 text-md-24 accordion__button ">
Websites
</h3>
<div class="accordion__panel">
<div class="text-16 mt5 dark-text-opacity">
<p data-block-key="kt6jo">The following sections describe how we process data (including, but not limited to personal data) when you visit or use our websites - including opera.com, and more.</p><p data-block-key="dth7b"></p><h3 data-block-key="3bo2">Promotion & Marketing</h3><p data-block-key="dqngh">We process some data in order to promote and market our products and services. Some of this data comes directly from you when you submit it to us for some specific purpose. For example, if you decide to provide feedback to Opera, or participate in a promotional campaign, contest, or survey, organized by Opera or our partners on behalf of Opera, we may ask for information such as your name, age, phone number, email, or postal address. Depending on the nature of the campaign or contest, it may be necessary to share your data with third parties. When that applies, we will make it clear in the terms applicable to the campaign.</p><p data-block-key="7gqtf">If you agree to receive marketing information from Opera via email, SMS, or push notifications, we may use third party technology providers to deliver such messages to you. You can opt out from marketing communications at any time in your Opera account profile settings or directly from a marketing email you received.</p><p data-block-key="8sco9">If you submit your phone number or email address on an application download page, we may send you a download link via SMS or email for your convenience.</p><p data-block-key="fccae">In Opera for Windows computers, we may use the Browser Assistant component to promote the browser and its features to you. Browser Assistant comes as part of the Opera Browser for Windows, and may be manually removed from the system’s startup list, or via the browser settings. To learn more about Browser Assistant, please read our dedicated section on it in this statement.</p><p data-block-key="dpnmn">In general when we process data in the context of a promotional campaign, contest, or survey, we process your personal data on the basis that doing so is necessary to enable you to participate in the campaign. In some cases we process data for marketing purposes based on your consent. In any case we will not retain your data for longer than necessary to fulfill the specific purpose for which it was initially collected. You can always control your preferences via the settings menu or through your account, and if you have other concerns you can reach out to us <a href="https://security.opera.com/privacy-inquiry">through this form</a>.</p><p data-block-key="b3usd"><b>Purpose:</b> To promote our products and services.</p><p data-block-key="89s0k"><b>Legal basis:</b> Varies by context as explained above - may include contractual grounds, legitimate interest, or consent (in some cases).</p><p data-block-key="5205l"></p><h3 data-block-key="3vu3d">Cashback</h3><p data-block-key="cl2tc">Cashback is an incentive program where you can earn rewards when purchasing goods or services from participating online merchants. If you choose to use the Cashback program and visit supported websites, we will collect merchant URLs, a list of your purchased items, transaction amounts, and IP address. This data is required for the Cashback service to function, and we also use it to provide more relevant partner deals, and to detect fraud and misuse of the service. To enable payouts, your <a href="https://auth.opera.com/">Opera account</a> will be linked with a payment service provider, which will receive your customer ID, and relevant payment related data with Opera. Your payment data may be stored for up to five years due to regulatory requirements. You can modify your Opera account, delete it, or request a copy of your data using your <a href="https://auth.opera.com/account/edit-profile">profile page</a>. Your Cashback data will be automatically deleted after two years of inactivity. You may choose to delete your Cashback account, which will erase your personal data from the system, through the Account Setting menus in Cashback account.</p><p data-block-key="fd4pq"><b>Purpose:</b> To provide and improve the service.</p><p data-block-key="fj173"><b>Legal basis:</b> Contractual grounds, legal compliance.</p><p data-block-key="2o4j6"></p><h3 data-block-key="5cd3j">Opera Account</h3><p data-block-key="ajqsj">Our browsers do not require you to sign in to start using them for regular browsing activities, such as browsing the web. However, you have the option to create an<a href="https://auth.opera.com/"> Opera account</a> to use certain services (like commenting on our Forum or blogs, subscribing to VPN Pro, accessing Cashback, etc.). Note that even if you create an Opera account, your account and its associated data is not associated with the random ID of your browser installation, which remains separate.</p><p data-block-key="cavta">If you choose to create an <a href="https://auth.opera.com/">Opera account</a>, we ask for a preferred username and an email address. The email address will be used to identify you as a user and for password recovery. Alternatively, you can use your Google, Facebook, Twitter, or VK account to sign in to an Opera account and access our services with the same profile. If you use these social networks to sign in, we may collect information such as your name, profile picture, and email address from them. If you use your Opera account in conjunction with a service like VPN Pro or Cashback, the data we process in connection with those services will be associated with your Opera account.</p><p data-block-key="cqp18">You can modify your Opera account, delete it, or request a copy of your data using your <a href="https://auth.opera.com/account/edit-profile">profile page</a>. We retain your data for seven days after you’ve decided to discontinue your Opera account in case you choose to change your mind. After this seven-day period, your account and data are permanently deleted. Your Opera account with a verified email address will be deleted automatically if you don’t sign in for two years. Accounts with unverified email addresses will be deleted after six months of inactivity.</p><p data-block-key="9bilr">Note also that Opera allows you to sync your browser data, such as Speed Dial entries and bookmarks, between devices that have another Opera browser installed on them. The synced data is retained until your Opera account is deleted, and it is never associated with your browser installation’s randomly generated ID.</p><p data-block-key="5n97i"><b>Purpose:</b> to allow you to access certain services.</p><p data-block-key="7u4oj"><b>Legal basis:</b> Contractual grounds.</p><p data-block-key="do8hh"></p><h3 data-block-key="1epmi">GX Cloud</h3><p data-block-key="46rc9">GX Cloud is a set of online services, and a community for gamers, consisting of the following websites: GX Games, GX Store,, GX Dev and GX Me.These give you access to games, and other content as well as the option to play, compete in, and create video games, mods, and so on. Certain content available on the GX Cloud feature needs to be purchased (“Paid Content”). You may also use GX Cloud as a publisher to publish and distribute content and Paid Content.</p><p data-block-key="2a8t9">You do not need an account to play most games; however, to get access to certain content (including Paid Content), participate in OPyramid rewards program and other challenges, publish, distribute or create content, you need an<a href="https://auth.opera.com/"> Opera account</a>. Opera Account dedicated to GX Cloud feature is further referred to as “GX Me Account“. After signing up for the first time, you will be prompted to provide your date of birth and an optional avatar. We use your date of birth to ensure you are eligible to use the service. You can modify your GX Me Account, delete it, or request a copy of your data using your<a href="https://auth.opera.com/account/edit-profile"> profile page</a>. For more information on how we use and retain GX Me Account data, see the section on Opera Account above.</p><p data-block-key="25vgm">You need to have an active payment account established with a payment service provider, bank, and/or other partner who cooperates with Opera for purposes of purchasing or distributing Paid Content. The payment service provider may process additional data, including your name, email address, full address, phone number and card ID. The payment service provider will share your customer ID, email address, and relevant payment-related data with Opera. Your payment data may be stored for up to five years due to regulatory requirements.</p><p data-block-key="3f1q4">Within the OPyramid rewards program we give you an option to participate in certain qualifying activities and earn rewards. Such activities might be organized and offered by Opera or third parties. For the purposes of OPyramid organization we may process your GX Me Account data (to contact you if needed e.g. for the purpose of redeeming reward). In some cases OPyramid quest may require linking your GX Me Account with your account that you registered with a third party - then we will share and receive some of your data (like your user ID and data related to quest progress). If some additional data would be required we will inform you about it in OPyramid specific terms.</p><p data-block-key="73hju"><b>Purpose:</b> To provide the service.</p><p data-block-key="evh3d"><b>Legal basis:</b> Contractual grounds.</p><p data-block-key="5v067"></p><h3 data-block-key="ac73e">GameMaker</h3><p data-block-key="72k6p">Depending on where you live, it may be possible to purchase a license to the proprietary computer software program known as ‘GameMaker’, as well as to access platforms and websites that we operate, where you may use our content, or publish your content.</p><p data-block-key="2o5r6">To access and use GameMaker, you will need to sign into your Opera account. We do not share your Opera account data with anyone. For more information on how we use and retain Opera account data, see the section on Opera account above. We may process your Opera account data (including email, user ID, location, device ID), as well as your other personal data such as first name and last name, only to identify you as a valid subscriber to GameMaker. If you use a legacy GameMaker account (meaning an account created before September 21st, 2022) we process additional data, such as: your home address, phone number, security questions answers, VAT number.</p><p data-block-key="e9rq8">To enable payments (both making and receiving), your Opera account will be linked with a payment service provider. The payment service provider may process additional data, including your full address and card ID. The payment service provider will share your customer ID, and relevant payment-related data with Opera. Your payment data may be stored for up to five years due to regulatory requirements.</p><p data-block-key="eln1o">If you use GameMaker Forum, we will additionally collect and process your date of birth. This is to ensure that you are over the required age limit.</p><p data-block-key="4uer2">Various educational subscriptions for GameMaker are available to schools and other institutions of learning, licensed under applicable law to teach (‘Educational Institutions’). We do not collect and/or process any personal data or any personally identifiable data from Educational Institutions’ students, pursuant to or in connection with educational subscriptions, and thus students remain entirely anonymous to us. We do collect and process personal data from Authorised Representatives of Education Institutions (e.g. teachers) in the course of opening an account. For more information, please see our <a href="https://legal.opera.com/terms/">GameMaker Feature Terms of Service</a>.</p><p data-block-key="3tukf">Please note that with reference to your data processed in scope of GameMaker service, you may make inquiries or requests (including a request to access or delete any of your personal data that we might possess) by sending an email to <a href="mailto:datacontroller@yoyogames.com">datacontroller@yoyogames.com</a>.</p><p data-block-key="7kb5d"><b>Purpose:</b> To provide the service.</p><p data-block-key="dd85p"><b>Legal basis:</b> Contractual grounds.</p><p data-block-key="d8rrm"></p><h3 data-block-key="bpfpn">GX.gear</h3><p data-block-key="3o9j9">Depending on where you live, the GX.gear online shop may allow you to purchase goods offered by entities within the Opera Group. Our shop is hosted by Shopify Inc. who provide the online e-commerce platform we use to sell our products to you. Therefore we will share some data with them to facilitate your use of the service, such as if you choose to make a purchase or an account. To use GX.gear you do not need to create or sign in to a customer account. However, if you decide to do so, you will be asked for your email address and to set up a password.</p><p data-block-key="3bbjs">When submitting your order, you will have to provide us with information necessary for delivery and potential complaints purposes, including data such as: your name, surname, postal address and phone number (optional). We will only share this information with our third-party fulfilment service provider (who may further share it with subcontractors e.g. couriers to deliver your order to you). If you reside in the United States, this information will be collected by our Merchant of Record - OpenBorder, Inc., (who may further share it with subcontractors e.g. payment providers and couriers to deliver your order to you).</p><p data-block-key="e084b">Your payment for the order will be processed by a payment service provider, who may collect and process additional data, including: card number, card expiration date and security code. The payment service provider will share your customer ID and relevant payment-related data with us or OpenBorder in the US. Your payment data may be stored for at least five years due to regulatory requirements. We will retain your data for as long as necessary for the purposes named herein, unless you request their deletion or close your customer account – then we will only keep the data that is necessary to fulfil our legal obligations.</p><p data-block-key="2sskn">If you decide to sign up to our newsletter, we will ask you for a separate consent and process your data in accordance with the ‘Promotion & Marketing’ section.</p><p data-block-key="e6cm3"><b>Purpose:</b> To provide the service. To comply with legal obligations.</p><p data-block-key="fc1jd"><b>Legal basis:</b> Contractual grounds, Consent (newsletter)</p><p data-block-key="3lvk0"></p><h3 data-block-key="4c4uc">Use of Cookies</h3><p data-block-key="6h5l9">We use cookies on our websites for session management and retaining your settings or preferences. We may also use third-party cookies to collect visitor statistics and measure our marketing campaigns. If you would like to reject third-party cookies, please configure your browser’s settings accordingly. Please refer to our <a href="/legal/cookie-policy">Cookie Policy</a> for more information.</p><p data-block-key="6nf9m"></p><h3 data-block-key="a90q">Third Party Technologies</h3><p data-block-key="7fr7a">Our web services include third-party technology or code, some of which may use your data in different ways. When such third-party technologies use previously collected data, they typically act as data processors for us. When they collect data on their own, they typically act as independent data controllers. For convenience, we have included links to their privacy policies below. Data controllers are marked with an asterisk.</p><ul><li data-block-key="1rk3g"><b>GX Games, GameBites</b><ul><li data-block-key="1404k"><a href="https://policies.google.com/privacy">Google Analytics</a></li></ul></li><li data-block-key="bhvk3"><b>Technology Providers</b><ul><li data-block-key="cguhq"><a href="https://www.brevo.com/legal/privacypolicy/">Brevo</a></li><li data-block-key="6s18"><a href="https://openai.com/policies/privacy-policy">OpenAI</a></li><li data-block-key="eqk2a"><a href="https://policies.google.com/privacy?hl=en-US">Google</a></li><li data-block-key="e2fb8"><a href="https://www.zendesk.com/company/agreements-and-terms/privacy-notice/">Zendesk</a></li><li data-block-key="1672u"><a href="https://mixpanel.com/legal/privacy-policy/">Mixpanel</a></li><li data-block-key="e5hqe"><a href="https://xenforo.com/privacy-policy/">Xenforo</a></li><li data-block-key="f5bi2"><a href="https://fulfilio.com/en/privacy-policy/">Fulfilio Sp.z o.o.</a></li></ul></li><li data-block-key="8gm68"><b>Payment Service Providers</b><ul><li data-block-key="4p514"><a href="https://www.paypal.com/webapps/mpp/ua/privacy-full">Paypal</a>*</li><li data-block-key="4sqqf"><a href="https://corporate.payu.com/global-privacy-statement/">PayU</a>*</li><li data-block-key="53qso"><a href="https://policies.google.com/privacy">Google Billing Services</a></li><li data-block-key="esve1"><a href="https://cypix.io/">Cypix</a></li><li data-block-key="di6vo"><a href="https://www.rapyd.net/privacypolicy/">Rapyd</a></li><li data-block-key="6djqg"><a href="https://xsolla.com/privacypolicy">Xsolla</a></li><li data-block-key="f6mbm"><a href="https://stripe.com/en-pl/privacy">Stripe</a></li></ul></li></ul>
</div>
</div>
</div>
</div>
</section>
</div>
<div class="legal-page--other-content mt5">
<section class="simple-block container-fluid wrapper">
<h2 data-block-key="87msk">General Topics</h2><h3 data-block-key="acge0">Data Controller & Internal Processing</h3><p data-block-key="bvc2q">Opera browsers are developed and published by Opera Norway AS, a company registered under the laws of Norway. Therefore Opera Norway AS acts as the primary data controller for Opera browsers and services.</p><p data-block-key="4g24b">The Opera Group companies work together to develop our apps, and to market, distribute, and monetize them around the world. In general, the other companies of the Opera Group that may have access to personal data act as data processors for Opera Norway AS. As a matter of company policy, we apply the GDPR to our internal processing in general, even in contexts where it might not apply directly to our affiliated companies outside of Europe.</p><p data-block-key="50rfn"></p><h3 data-block-key="6ehfn">Use of Cookies</h3><p data-block-key="bqr9r">We use cookies on our websites for session management and retaining your settings or preferences. We may also use third-party cookies to collect visitor statistics and measure our marketing campaigns. If you would like to reject third-party cookies, please configure your browser’s settings accordingly. Please refer to our <a href="/legal/cookie-policy">Cookie Policy</a> for more information.</p><p data-block-key="46riu"></p><h3 data-block-key="2r4kn">Children’s Privacy</h3><p data-block-key="8pttq">There are no guarantees that children cannot enter our websites or use our applications without parental consent or notification. Therefore, and as provided in our End User License Agreements for <a href="/legal/eula-computers">computers</a> and <a href="/legal/eula-mobile">mobiles</a>, we require children to include their parents in the download process, and we encourage parents to read this privacy statement before allowing their children to use our applications and services.</p><p data-block-key="6utns"></p><h3 data-block-key="6fivj">International Data Transfers</h3><p data-block-key="a3iqu">As noted above, in different contexts we may share or make data available (including personal data) to other members of the Opera Group, and in some cases, with third-parties such as our marketing and monetization partners. Where applicable, we insist that a valid legal mechanism is used to protect such transfer, including for example the European Union’s model contracts for the transfer of personal data to third countries (also known as the “standard contractual clauses”) to ensure adequate protection of your personal data.</p><p data-block-key="ahu1p"></p><h3 data-block-key="1bda5">Your Rights And Statement Updates</h3><p data-block-key="emba2">You have the right to make a request to access or delete any of your personal data that we might possess. You can make a request via <a href="https://security.opera.com/privacy-inquiry">this online request form</a> or by contacting our Data Protection Officer at the address below. You may be required to provide additional information to authenticate your request. You also have the right to lodge a complaint with Datatilsynet, the Norwegian Data Protection Authority, which can be contacted through <a href="https://www.datatilsynet.no/">their webpage</a>.</p><p data-block-key="1tnag">When we post changes to this privacy statement, we will include the date when the statement was last updated. If we significantly change this statement, we will notify you about the upcoming change via our website or using in-app notifications. We encourage you to review this statement periodically.</p><p data-block-key="7q3ai"></p><h3 data-block-key="bf06u">Contacts</h3><p data-block-key="ckvm8">If you have any questions about this statement or any privacy issues in our applications or services, feel free to contact our Data Protection Officer via <a href="https://security.opera.com/privacy-inquiry">this online request form</a> or by post:</p><p data-block-key="5k0dm"><b>Opera Norway AS<br/></b> P.O. Box 4214,<br/> Nydalen 0401,<br/> Oslo,<br/> Norway</p>
</section>
</div>
</main>
<footer class="hf hf__footer">
<div class="wrapper container-fluid">
<div class="breadcrumbs">
<div class="breadcrumbs__container">
<div class="breadcrumbs__crumb breadcrumbs__logo breadcrumbs__sep">
<a href="/" aria-label="Back to Main Page">
<i class="icon-component "
data-icon-name="Opera monocolor"
data-icon-type="Logo"
data-icon-alt="Opera monocolor"
data-icon-width=""></i>
</a>
</div>
<ol itemscope itemtype="https://schema.org/BreadcrumbList">
<li itemprop="itemListElement" itemscope
itemtype="https://schema.org/ListItem" class="breadcrumbs__sep">
<div class="breadcrumbs__crumb">
<a itemprop="item" href="/legal">
<span itemprop="name">Opera Legal Documents</span>
</a>
<meta itemprop="position" content="1"/>
</div>
</li>
<li itemprop="itemListElement" itemscope
itemtype="https://schema.org/ListItem" class="breadcrumbs__sep">
<div class="breadcrumbs__crumb">
<span itemprop="name">Opera Privacy Statement</span>
<meta itemprop="position" content="2"/>
</div>
</li>
</ol>
</div>
</div>
<div class="footer__content">
<div class="row">
<div class="col-xs-12 col-xl-2">
<input id="hf-features-switcher"
class="hf__dd-switcher hf-hide"
type="checkbox">
<h3 class="hf__heading">
<label class="hf__label footer__label hf__label--no-spacing"
for="hf-features-switcher">Features<span></span></label>
</h3>
<div class="hf__dd-content">
<ul class="hf__links list-style--none">
<li>
<a class="hf__link"
href="/features/ad-blocker">
<span>Ad Blocker</span>
</a>
</li>
<li>
<a class="hf__link"
href="/features/free-vpn">
<span>Free VPN</span>
</a>
</li>
<li>
<a class="hf__link"
href="/features/vpn-pro">
<span>VPN Pro</span>
</a>
</li>
<li>
<a class="hf__link"
href="/features/opera-ai">
<span>Opera AI</span>
</a>
</li>
<li>
<a class="hf__link"
href="/features/integrated-messengers">
<span>Built-in Messengers</span>
</a>
</li>
<li>
<a class="hf__link"
href="/features/integrated-social-media">
<span>Built-in Social Media</span>
</a>
</li>
<li class="hf__links__features">
<a class="hf__link hf__link--features"
href="/features">
<span>More features</span>
</a>
</li>
</ul>
</div>
</div>
<div class="col-xs-12 col-xl-2">
<input id="hf-services-switcher"
class="hf__dd-switcher hf-hide"
type="checkbox">
<h3 class="hf__heading">
<label class="hf__label footer__label"
for="hf-services-switcher">Services<span></span></label>
</h3>
<div class="hf__dd-content">
<ul class="hf__links list-style--none">
<li>
<a class="hf__link"
href="/products">
<span>Products</span>
</a>
</li>
<li>
<a class="hf__link"
href="/gaming">
<span>Gaming</span>
</a>
</li>
<li>
<a class="hf__link"
href="https://addons.opera.com"
target="_blank">
<span>Addons</span>
</a>
</li>
<li>
<a class="hf__link"
href="https://auth.opera.com"
target="_blank"
rel="nofollow noopener">
<span>Opera Account</span>
</a>
</li>
<li>
<a class="hf__link"
href="https://addons.opera.com/wallpapers"
target="_blank">
<span>Wallpapers</span>
</a>
</li>
<li>
<a class="hf__link"
href="/ads"
target="_blank">
<span>Opera Ads</span>
</a>
</li>
<li>
<a class="hf__link"
href="/features/browser-ai">
<span>Browser AI</span>
</a>
</li>
<li>
<a class="hf__link"
href="https://www.devicetest.ai/"
target="_blank">
<span>AI Benchmark</span>
</a>
</li>
<li>
<a class="hf__link"
href="/ai/articles">
<span>AI Articles</span>
</a>
</li>
</ul>
</div>
</div>
<div class="col-xs-12 col-xl-2">
<input id="hf-help-switcher"
class="hf__dd-switcher hf-hide"
type="checkbox">
<h3 class="hf__heading">
<label class="hf__label footer__label"
for="hf-help-switcher">Help<span></span></label>
</h3>
<div class="hf__dd-content">
<ul class="hf__links list-style--none">
<li>
<a class="hf__link"
href="/switch-to-opera">
<span>Switch to Opera</span>
</a>
</li>
<li>
<a class="hf__link"
href="/help">
<span>Help & Support</span>
</a>
</li>
<li>
<a class="hf__link"
href="https://blogs.opera.com"
target="_blank">
<span>Opera Blog</span>
</a>
</li>
<li>
<a class="hf__link"
href="https://forums.opera.com"
target="_blank">
<span>Opera Forums</span>
</a>
</li>
<li>
<a class="hf__link"
href="https://help.opera.com/en/faq/"
target="_blank">
<span>FAQ</span>
</a>
</li>
</ul>
</div>
</div>
<div class="col-xs-12 col-xl-2">
<input id="hf-legal-switcher"
class="hf__dd-switcher hf-hide"
type="checkbox">
<h3 class="hf__heading">
<label class="hf__label footer__label"
for="hf-legal-switcher">Legal<span></span></label>
</h3>
<div class="hf__dd-content">
<ul class="hf__links list-style--none">
<li>
<a class="hf__link"
href="/impressum"
rel="nofollow">
<span>Impressum</span>
</a>
</li>
<li>
<a class="hf__link"
href="https://security.opera.com"
target="_blank"
rel="nofollow">
<span>Security</span>
</a>
</li>
<li>
<a class="hf__link"
href="https://www.opera.com/legal/privacy"
target="_blank"
rel="nofollow">
<span>Privacy</span>
</a>
</li>
<li>
<a class="hf__link"
href="https://www.opera.com/legal/cookie-policy"
target="_blank"
rel="nofollow">
<span>Cookie Policy</span>
</a>
</li>
<li>
<span class="hf__link cookie_withdraw block--clickable">
<span>Cookie Consent</span>
</span>
</li>
<li>
<a class="hf__link"
href="https://www.opera.com/legal/eula-computers"
target="_blank"
rel="nofollow">
<span>EULA</span>
</a>
</li>
<li>
<a class="hf__link"
href="https://www.opera.com/legal/terms"
target="_blank"
rel="nofollow">
<span>Terms of Service</span>
</a>
</li>
<li>
<a class="hf__link"
href="https://www.opera.com/legal/environmental-social-and-governance-esg"
target="_blank"
rel="nofollow">
<span>ESG</span>
</a>
</li>
</ul>
</div>
</div>
<div class="col-xs-12 col-xl-2 mb4">
<input id="hf-company-switcher"
class="hf__dd-switcher hf-hide"
type="checkbox">
<h3 class="hf__heading">
<label class="hf__label footer__label"
for="hf-company-switcher">Company<span></span></label>
</h3>
<div class="hf__dd-content">
<ul class="hf__links list-style--none">
<li>
<a class="hf__link"
href="/about">
<span>About Opera</span>
</a>
</li>
<li>
<a class="hf__link"
href="/newsroom">
<span>Press Info</span>
</a>
</li>
<li>
<a class="hf__link"
href="https://jobs.opera.com"
target="_blank">
<span>Jobs</span>
</a>
</li>
<li>
<a class="hf__link"
href="https://investor.opera.com/"
target="_blank">
<span>Investors</span>
</a>
</li>
<li>
<a class="hf__link"
href="/opera/affiliate">
<span>Opera Affiliate</span>
</a>
</li>
<li>
<a class="hf__link"
href="/gx/affiliate">
<span>Opera GX Affiliate</span>
</a>
</li>
<li>
<a class="hf__link"
href="/b2b">
<span>Become a Partner</span>
</a>
</li>
<li>
<a class="hf__link"
href="/contact">
<span>Contact Us</span>
</a>
</li>
</ul>
</div>
</div>
<div class="col-xs-12 col-xl-2">
<a class="hf--brand"
href="/">
<img data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/logo/logo-flat-horizontal.3a48a9c34651.svg"
class="hidden-in-darkmode"
alt="Opera"
style="width: 10.6rem" loading="lazy">
<img data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/logo/logo-flat-white-horizontal.35e1a8f1fc3b.svg"
class="hidden-in-lightmode"
alt="Opera"
style="width: 10.6rem" loading="lazy">
</a>
<p class="text-level-5 my-32 my-xl-24">
Innovate and inspire, uncover the unexpected, support open standards.
</p>
<p class="footer__follow-label">Follow us</p>
<div class="footer__social-icons">
<div class="footer__social-box">
<ul class="footer__social-icons ">
<li>
<a class="facebook"
href='https://www.facebook.com/Opera/'
rel="noopener nofollow"
target="_blank"
title="Opera - Facebook">
<svg width="16"
height="16"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<path d="M16 8.04889C16 3.60361 12.4183 0 8 0C3.58172 0 0 3.60361 0 8.04889C0 12.0663 2.92547 15.3962 6.75 16V10.3755H4.71875V8.04889H6.75V6.27562C6.75 4.25837 7.94438 3.1441 9.77172 3.1441C10.6467 3.1441 11.5625 3.3013 11.5625 3.3013V5.28208H10.5538C9.56 5.28208 9.25 5.90257 9.25 6.53972V8.04889H11.4688L11.1141 10.3755H9.25V16C13.0745 15.3962 16 12.0663 16 8.04889Z"
fill="#3C4055"/>
</svg>
</a>
</li>
<li>
<a class="tiktok"
href="https://www.tiktok.com/@opera.browser"
rel="noopener nofollow"
target="_blank"
title="Opera - Tiktok">
<svg xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
viewBox="0 0 16 16"
fill="none">
<path fill-rule="evenodd"
clip-rule="evenodd"
d="M8 16C12.4183 16 16 12.4183 16 8C16 3.58172 12.4183 0 8 0C3.58172 0 0 3.58172 0 8C0 12.4183 3.58172 16 8 16ZM9.93885 10.108C9.93885 11.7554 8.6094 13.0909 6.96943 13.0909C5.32946 13.0909 4 11.7554 4 10.108C4 8.46051 5.32946 7.125 6.96943 7.125C7.01669 7.125 7.06315 7.12825 7.10957 7.1315C7.12402 7.13252 7.13848 7.13353 7.15295 7.13444V8.60441C7.13732 8.60252 7.12177 8.60039 7.10621 8.59825C7.06111 8.59206 7.01604 8.58587 6.96943 8.58587C6.13242 8.58587 5.45389 9.26748 5.45389 10.1083C5.45389 10.9491 6.13242 11.6307 6.96943 11.6307C7.80659 11.6307 8.5459 10.9682 8.5459 10.1272L8.56053 3.27273H9.96044C10.0925 4.53382 11.1047 5.51885 12.3636 5.61131V7.24499H12.3622C12.2824 7.25278 12.2022 7.25687 12.122 7.25723C11.2418 7.25735 10.421 6.81171 9.93885 6.07202V10.108Z"
fill="#3C4055"/>
</svg>
</a>
</li>
<li>
<a class="twitter"
href="https://twitter.com/opera"
rel="noopener nofollow"
target="_blank"
title="Opera - Twitter">
<svg width="16"
height="16"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_170_8027)">
<path fill-rule="evenodd"
clip-rule="evenodd"
d="M8 16C12.4183 16 16 12.4183 16 8C16 3.58172 12.4183 0 8 0C3.58172 0 0 3.58172 0 8C0 12.4183 3.58172 16 8 16ZM11.7405 4L8.76187 7.38784L12 12H9.6176L7.43627 8.89352L4.7056 12H4L7.12347 8.44776L4 4H6.3824L8.44747 6.94102L11.0349 4H11.7405ZM6.04427 4.52063H4.96027L9.95013 11.5049H11.0344L6.04427 4.52063Z"
fill="#3C4055"/>
</g>
<defs>
<clipPath id="clip0_170_8027">
<rect width="16"
height="16"
fill="white"/>
</clipPath>
</defs>
</svg>
</a>
</li>
<li>
<a class="youtube"
href="https://www.youtube.com/opera"
rel="noopener nofollow"
target="_blank"
title="Opera - Youtube">
<svg width="16"
height="16"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
clip-rule="evenodd"
d="M14.2602 3.30587C14.9455 3.47062 15.4859 3.9529 15.6704 4.56475C16.0131 5.6823 16 8.01177 16 8.01177C16 8.01177 16 10.3294 15.6705 11.447C15.4859 12.0588 14.9456 12.5411 14.2602 12.7058C13.0081 13 7.99998 13 7.99998 13C7.99998 13 3.00487 13 1.73974 12.6941C1.05432 12.5294 0.514036 12.047 0.329467 11.4353C0 10.3294 0 8 0 8C0 8 0 5.6823 0.329467 4.56475C0.513914 3.95301 1.0675 3.45885 1.73962 3.29421C2.99169 3 7.99985 3 7.99985 3C7.99985 3 13.0081 3 14.2602 3.30587ZM10.5701 7.99999L6.4054 10.1412V5.85881L10.5701 7.99999Z"
fill="#3C4055"/>
</svg>
</a>
</li>
<li>
<a class="linkedin"
href="https://www.linkedin.com/company/opera-software"
rel="noopener nofollow"
target="_blank"
title="Opera - LinkedIn">
<svg width="16"
height="16"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_170_8026)">
<path fill-rule="evenodd"
clip-rule="evenodd"
d="M0.666667 0C0.298477 0 0 0.298478 0 0.666668V15.3334C0 15.7015 0.298478 16 0.666668 16H15.3334C15.7015 16 16 15.7015 16 15.3334V0.666667C16 0.298477 15.7015 0 15.3334 0H0.666667ZM2.56759 2.90355C2.31048 3.1423 2.18192 3.44533 2.18192 3.81264C2.18192 4.17995 2.3068 4.48482 2.55658 4.72725C2.80635 4.96967 3.13325 5.09088 3.53729 5.09088H3.54831C3.96705 5.09088 4.30497 4.96967 4.56209 4.72725C4.81186 4.49216 4.93674 4.19832 4.93674 3.8457C4.93674 3.45635 4.80818 3.14047 4.55107 2.89804C4.30129 2.66296 3.9744 2.54543 3.57035 2.54543C3.15897 2.54543 2.82471 2.6648 2.56759 2.90355ZM2.32517 6.09364V13.4545H4.77145V6.09364H2.32517ZM8.57311 13.4545H6.12683C6.14152 11.236 6.14887 9.51329 6.14887 8.28648C6.14887 7.05966 6.14152 6.32871 6.12683 6.09364H8.57311V7.14047L8.56209 7.16251H8.57311V7.14047C9.10204 6.32504 9.84033 5.91733 10.788 5.91733C11.6328 5.91733 12.3123 6.19832 12.8266 6.76031C13.3408 7.32229 13.5979 8.1469 13.5979 9.23414V13.4545H11.1516V9.52064C11.1516 8.41136 10.7402 7.85673 9.91747 7.85673C9.60158 7.85673 9.33895 7.94304 9.12959 8.11568C8.92022 8.28831 8.76411 8.49952 8.66127 8.74929C8.6025 8.88886 8.57311 9.08721 8.57311 9.34433V13.4545Z"
fill="#3C4055"/>
</g>
<defs>
<clipPath id="clip0_170_8026">
<rect width="16"
height="16"
fill="white"/>
</clipPath>
</defs>
</svg>
</a>
</li>
<li>
<a class="instagram"
href="https://www.instagram.com/opera/"
rel="noopener nofollow"
target="_blank"
title="Opera - Instagram">
<svg width="16"
height="16"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
clip-rule="evenodd"
d="M2.76005 0.420048C3.26863 0.222309 3.85024 0.0872527 4.70197 0.0484805C5.55564 0.00906211 5.8277 1.52588e-05 8.00097 1.52588e-05C10.1736 1.52588e-05 10.4463 0.00970831 11.2993 0.0484805C12.1504 0.0866065 12.732 0.222309 13.2412 0.420048C13.7666 0.624248 14.2132 0.898238 14.6578 1.34283C15.1024 1.78806 15.3757 2.23394 15.5806 2.75995C15.7783 3.26851 15.9134 3.8501 15.9522 4.70179C15.991 5.55478 16 5.82748 16 8.00002C16 10.1726 15.991 10.4446 15.9522 11.2982C15.9141 12.1499 15.7783 12.7315 15.5806 13.2401C15.3757 13.7661 15.1024 14.2126 14.6578 14.6572C14.2125 15.1018 13.7666 15.3751 13.2406 15.58C12.732 15.7777 12.1504 15.9128 11.2987 15.9516C10.4457 15.991 10.1736 16 8.00032 16C5.8277 16 5.55564 15.9903 4.70197 15.9516C3.85024 15.9128 3.26928 15.7777 2.76005 15.58C2.23337 15.3751 1.78747 15.1018 1.34287 14.6572C0.897613 14.2126 0.624258 13.7661 0.420049 13.2401C0.222303 12.7315 0.087241 12.1499 0.0484672 11.2982C0.00904722 10.4452 0 10.1726 0 8.00002C0 5.82748 0.00904722 5.55478 0.0484672 4.70179C0.087241 3.8501 0.222303 3.26851 0.420049 2.75995C0.624258 2.23329 0.898259 1.78741 1.34287 1.34283C1.78812 0.898238 2.23402 0.624248 2.76005 0.420048ZM4.76813 14.5118C3.98813 14.4762 3.5642 14.3464 3.28244 14.2365C2.90892 14.0911 2.64268 13.9179 2.36221 13.6381C2.08239 13.3583 1.90856 13.0921 1.7638 12.7186C1.65394 12.4368 1.52405 12.0129 1.48851 11.2329C1.44974 10.3896 1.44198 10.1363 1.44198 7.99999C1.44198 5.86364 1.45038 5.61097 1.48851 4.76703C1.52405 3.98706 1.65459 3.5638 1.7638 3.28141C1.9092 2.9079 2.08239 2.64167 2.36221 2.36121C2.64203 2.08141 2.90828 1.90758 3.28244 1.76283C3.5642 1.65297 3.98813 1.52309 4.76813 1.48755C5.61145 1.44877 5.86478 1.44102 8.00057 1.44102C10.137 1.44102 10.3897 1.44942 11.2337 1.48755C12.0137 1.52309 12.4369 1.65362 12.7193 1.76283C13.0929 1.90758 13.3591 2.08141 13.6396 2.36121C13.9194 2.64102 14.0926 2.9079 14.238 3.28141C14.3478 3.56315 14.4777 3.98706 14.5133 4.76703C14.552 5.61097 14.5598 5.86364 14.5598 7.99999C14.5598 10.1357 14.552 10.389 14.5133 11.2329C14.4777 12.0129 14.3472 12.4368 14.238 12.7186C14.0926 13.0921 13.9194 13.3583 13.6396 13.6381C13.3597 13.9179 13.0929 14.0911 12.7193 14.2365C12.4376 14.3464 12.0137 14.4762 11.2337 14.5118C10.3903 14.5506 10.137 14.5583 8.00057 14.5583C5.86478 14.5583 5.61145 14.5506 4.76813 14.5118ZM12.2714 4.68945C11.7408 4.68945 11.3111 4.25907 11.3111 3.72919C11.3111 3.1993 11.7408 2.76958 12.2714 2.76958C12.8019 2.76958 13.2317 3.1993 13.2317 3.72919C13.2317 4.25907 12.8013 4.68945 12.2714 4.68945ZM3.892 7.99999C3.892 10.2688 5.73117 12.1079 8.00009 12.1079C10.269 12.1079 12.1082 10.2688 12.1082 7.99999C12.1082 5.73117 10.269 3.89208 8.00009 3.89208C5.73117 3.89208 3.892 5.73117 3.892 7.99999ZM5.33393 7.99999C5.33393 6.52729 6.52751 5.33311 8.00027 5.33311C9.47303 5.33311 10.6673 6.52729 10.6673 7.99999C10.6673 9.47269 9.47303 10.6669 8.00027 10.6669C6.52751 10.6669 5.33393 9.47269 5.33393 7.99999Z"
fill="#3C4055"/>
</svg>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="footer__bottom">
<div class="footer__company-box center-xs start-xl">
<p class="footer__company-box-p">© 1995-2026 Opera Norway </p>
<p class="footer__company-box-p">All rights reserved</p>
</div>
<div class="footer__lang-box">
<p class="footer__lang-box-label">Language:</p>
<form action="/i18n/setlang/"
method="post">
<input id="footer__lang-input-next"
name="next"
type="hidden"
value="https://www.opera.com/legal/privacy"/>
<select id="footer__lang-selector"
class="footer__lang-selector"
name="language"
aria-label="Language"
onchange="this.form.submit()">
<option value="en"
selected="selected">
English
</option>
<option value="de">
Deutsch
</option>
<option value="es">
Español
</option>
<option value="es-419">
Español Latinoamérica
</option>
<option value="fr">
Français
</option>
<option value="id">
Bahasa Indonesia
</option>
<option value="it">
Italiano
</option>
<option value="ja">
日本語
</option>
<option value="ko">
한국어
</option>
<option value="nb">
Norsk (bokmål)
</option>
<option value="pl">
Polski
</option>
<option value="pt">
Português
</option>
<option value="pt-br">
Português Brasileiro
</option>
<option value="ru">
Русский
</option>
<option value="tr">
Türkçe
</option>
<option value="uk">
Українська
</option>
<option value="vi">
Tiếng Việt
</option>
<option value="zh-cn">
简体中文
</option>
</select>
</form>
</div>
</div>
</div>
</footer>
<div id="cookie-consent" class="cookie-consent__wrapper flex flex-direction--column justify-content--center">
<div class="cookie-consent__advanced cookie-consent__inner text-align--left">
<div class="popup">
<p class="cookie-consent__head">
<span class="text-18 font-weight--900">Cookies</span>
</p>
<div class="cookie-consent__body">
<div class="row middle-xs ">
<div class="col-xs-9">
<p class="heading text-14 my0 font-weight--700">Necessary cookies</p>
</div>
<div class="col-xs-3 end-xs">
<div class="cookie-consent__switch active always_on"></div>
</div>
</div>
<p class="mt3 mb0">
Necessary cookies are required for site functionality. The optional Marketing and Analytics cookies help us measure campaigns, and allow our partners, including Google, to provide relevant <a href="https://business.safety.google/privacy/" target="_blank" rel="nofollow noopener">advertising and personalization</a>.
</p>
<hr class="my3"/>
<div class="row middle-xs ">
<div class="col-xs-9">
<p class="heading text-14 my0 font-weight--700">Marketing cookies</p>
</div>
<div class="col-xs-3 end-xs">
<div class="cookie-consent__switch marketing_option_switch"></div>
</div>
</div>
<div class="row middle-xs mt2">
<div class="col-xs-9">
<p class="heading text-14 my0 font-weight--700">Analytics cookies</p>
</div>
<div class="col-xs-3 end-xs">
<div class="cookie-consent__switch analytics_option_switch"></div>
</div>
</div>
<p class="mt3 mb0">
By accepting, you consent to the use of cookies for the purposes specified. You can withdraw your consent and stop sharing this data anytime by clicking “Cookie Consent” at the bottom of Opera’s webpage.
</p>
<p class="mt3 mb0">
Further information can be found in our <a rel="nofollow" target="_blank" href="https://www.opera.com/legal/privacy">Privacy Statement</a> and <a rel="nofollow" target="_blank" href="https://www.opera.com/legal/cookie-policy">Cookie Policy</a>.
</p>
</div>
<div class="cookie-consent__footer text-level-5 text-align--center">
<div class="button-component cookie-selection__btn mobile button-component__v-basic-light"
role="button">
<span class="text center-xs ">Accept selection</span>
</div>
<div class="button-component cookie-all__btn mobile mt-16 button-component__v-basic"
role="button">
<span class="text center-xs ">Accept all</span>
</div>
</div>
</div>
</div>
</div>
<script>
isOfaPromise.then(() => {if (isOfa) document.getElementById('cookie-consent').remove()});
</script>
<script defer=true src="https://cdn-production-opera-website.operacdn.com/staticfiles/traffic.fa1e9a35091f.js"></script>
<script defer=true src="https://cdn-production-opera-website.operacdn.com/staticfiles/runtime-opera.859fb6b88ebd.js"></script>
<script defer=true src="https://cdn-production-opera-website.operacdn.com/staticfiles/vendors-opera.50c621ac0d9e.js"></script>
<script defer=true src="https://cdn-production-opera-website.operacdn.com/staticfiles/common-opera.d442dc1f8667.js"></script>
<script defer=true src="https://cdn-production-opera-website.operacdn.com/staticfiles/main.35e846c97cdc.js"></script>
<!-- Google Tag Manager (noscript) -->
<noscript>
<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-PRBZ42F"
height="0"
width="0"
style="display:none;visibility:hidden"></iframe>
</noscript>
<!-- End Google Tag Manager (noscript) -->
</body>
</html>
|