summarylogtreecommitdiffstats
path: root/terms.html
blob: f02064f7ba3e6be89f73a348f964349cde1e5b72 (plain)
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
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640

    







<!DOCTYPE html>
<html lang="en" class="large-screen-ready">
<head>
    
        
        
            

<!-- Google Tag Manager dataLayer init -->
<script>
    dataLayer = [];
</script>

<!-- Google Tag Manager -->
<script>(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>
<!-- End Google Tag Manager -->

        
        
        
        
        

        <meta charset="UTF-8">
        <meta name="viewport"
              content="initial-scale=1, width=device-width">
        <title>
    
        Terms of Service | Opera
    
</title>
        <meta name="description"
              content="
    
        Terms of Service
    
">
        <link rel="dns-prefetch"
              href="//www-static.operacdn.com">
        
            

<link rel="apple-touch-icon" sizes="180x180" href="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/favicon/apple-touch-icon.f41fd1c7b8eb.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/favicon/favicon-32x32.d80e4bdc6a9f.png">
<link rel="icon" type="image/png" sizes="16x16" href="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/favicon/favicon-16x16.a0ae29f84c8a.png">
<link rel="manifest" href="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/favicon/site.3f73f08fba75.webmanifest">
<link rel="mask-icon" href="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/favicon/safari-pinned-tab.c03376804cdc.svg" color="#ff0a21">
<link rel="shortcut icon" href="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/favicon/favicon.12c955371a4b.ico">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-config" content="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/favicon/browserconfig.f5848516ccd3.xml">
<meta name="theme-color" content="#ffffff">

        
        
        
    <meta name="robots"
          content="noindex, follow">

        
            <meta property="og:title"
                  content="
        Terms of Service | Opera
    ">
            <meta property="og:image"
                  content="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/og/og-img--opera-software.6d93bb11dfdc.png">
            <meta property="og:description"
                  content="
        Terms of Service
    ">
            <meta property="og:type"
                  content="website">
            <meta property="og:url"
                  content="https://www.opera.com/terms">
            <meta name="twitter:card" content="summary_large_image" />
            <meta name="twitter:site" content="@opera">
            <meta name="twitter:title"
                  content="Opera Browser">
            <meta name="twitter:description"
                  content="Opera is a secure, innovative browser used by millions around the world with a built-in ad blocker, free VPN, units converter, social messengers, battery saver and much more - all for your best browsing experience. Download Opera browser now and enjoy the Internet once again. Want to know more? Visit opera.com and discover yourself.">
            <meta name="twitter:image"
                  content="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/og/og-img--opera-software.6d93bb11dfdc.png">
            <meta property="vk:image"
                  content="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/logo/opera-150.99ee9b32e36e.png">
        

        
        

            
                


<link rel="stylesheet" href="https://cdn-production-opera-website.operacdn.com/staticfiles/CACHE/css/output.3dfc06381d5a.css" type="text/css" media="all" />

<link rel="stylesheet" href="https://cdn-production-opera-website.operacdn.com/staticfiles/CACHE/css/output.78333c91a17f.css" type="text/css" media="all" />

<link rel="stylesheet" href="https://cdn-production-opera-website.operacdn.com/staticfiles/CACHE/css/output.43102b8e3376.css" type="text/css" media="screen and (min-width: 320px)" />

<link rel="stylesheet" href="https://cdn-production-opera-website.operacdn.com/staticfiles/CACHE/css/output.8b20ef2c8323.css" type="text/css" media="screen and (min-width: 640px)" />

<link rel="stylesheet" href="https://cdn-production-opera-website.operacdn.com/staticfiles/CACHE/css/output.76fdcf180ed8.css" type="text/css" media="screen and (min-width: 768px)" />

<link rel="stylesheet" href="https://cdn-production-opera-website.operacdn.com/staticfiles/CACHE/css/output.b5dd6675ab10.css" type="text/css" media="screen and (min-width: 1024px)" />

<link rel="stylesheet" href="https://cdn-production-opera-website.operacdn.com/staticfiles/CACHE/css/output.09795d51a5f3.css" type="text/css" media="screen and (min-width: 1224px)" />

<link rel="stylesheet" href="https://cdn-production-opera-website.operacdn.com/staticfiles/CACHE/css/output.469f5e278e27.css" type="text/css" media="screen and (min-width: 1824px)" />

<link rel="stylesheet" href="https://cdn-production-opera-website.operacdn.com/staticfiles/CACHE/css/output.4f00aa545acd.css" type="text/css" media="screen and (min-width: 1924px)" />

                
            
        
<link rel="stylesheet"
      type="text/css"
      media="all"
      href="https://cdn-production-opera-website.operacdn.com/staticfiles/legalDoc.064a8418a700.css"/>

    
</head>
<body class="legal-doc">






    <header id="header"
            class="hf hf__header">
        
          
        
        
            



    <input id="header__switcher"
           class="hidden--clip header__switcher"
           type="checkbox">

    <div class="header"
         role="navigation">
        <div class="header__wrapper container-fluid wrapper">
            <a class="header__brand"
               href="/">
                
                    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/logo/logo-o.a06775d40b97.svg" alt="Opera">
                
            </a>
            <div class="header__menu">
                
                    
                    <ul class="header__main-nav-items"
                    role="menu">
                        <li class="header__main-nav-item">
                            <a href="/browsers" class="header__main-nav-anchor hover-line"
                                  data-menu="Browsers">
                                  <span class="hover-line__element">
                                    Browsers
                                  </span>
                            </a>
                        </li>
                        <li class="header__main-nav-item">
                            <a href="/products" class="header__main-nav-anchor hover-line"
                                  data-menu="Products">
                                  <span class="hover-line__element">
                                    Products
                                  </span>
                            </a>
                        </li>
                        <li class="header__main-nav-item">
                            <a href="/gaming" class="header__main-nav-anchor hover-line"
                               data-menu="Gaming">
                                  <span class="hover-line__element">
                                    Gaming
                                  </span>
                            </a>
                        </li>
                        <li class="header__main-nav-item">
                            <a href="/download" class="header__main-nav-anchor hover-line"
                                  data-menu="Downloads">
                                   <span class="hover-line__element">
                                    Downloads
                                   </span>
                            </a>
                        </li>
                        <li class="header__main-nav-item header__main-nav-separator">
                            <span class="header__main-nav-anchor hover-line"
                                  data-menu="About">
                               <span class="hover-line__element">
                                About
                               </span>
                            </span>
                        </li>
                        <li class="header__main-nav-item">
                            <span class="header__main-nav-anchor hover-line"
                                  data-menu="Help">
                                   <span class="hover-line__element">
                                    Help
                                   </span>
                            </span>
                        </li>
                    </ul>
                    
                
                <div class="header__download">
                    
                        
                            
                                



<span class="download-button--wrapper download-button--desktop
        download-button--full ">

    <a href="/computer/thanks?ni=stable&amp;os=windows"
       class="button os-windows"
       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>
            <label class="header__menu-switcher"
                   for="header__switcher">
            </label>
        </div>
    </div>

    <nav class="header__menu-nav container-fluid">
        <div class="header__nav-wrapper">
            
            <div>
                <input id="hf-browsers-switcher"
                       class="hf__dd-switcher hf-hide"
                       type="checkbox">
                <h4 class="hf__heading">
                    <label class="hf__label"
                           for="hf-browsers-switcher">Browsers</label>
                </h4>
                <div class="hf__dd-content header__dd-content">
                    <p class="hf__subtitle">For computers</p>
                    <ul class="hf__links list-style--none">
                        <li>
                            <a class="hf__link hover-line"
                               href="/browsers/opera">
                                <span class="hover-line__element">Opera</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="/gx">
                                <span class="hover-line__element">Opera GX</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="/browsers/opera-for-chromebook">
                                <span class="hover-line__element">Opera for Chromebook</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__sublink hover-line"
                               href="/browsers">
                                <span class="hover-line__element">See all browsers</span>
                            </a>
                        </li>
                    </ul>
                    <p class="hf__subtitle">For mobile</p>
                    <ul class="hf__links list-style--none">
                        <li>
                            <a class="hf__link hover-line"
                               href="/browsers/opera#mobile">
                                <span class="hover-line__element">Opera</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="/gx">
                                <span class="hover-line__element">Opera GX</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="/mobile/touch">
                                <span class="hover-line__element">Opera Touch</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="/browsers/opera-mini">
                                <span class="hover-line__element">Opera Mini</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__sublink hover-line"
                               href="/browsers">
                                <span class="hover-line__element">See all browsers</span>
                            </a>
                        </li>
                    </ul>
                    <p class="hf__subtitle">Features</p>
                    <ul class="hf__links list-style--none">
                        <li>
                            <a class="hf__link hover-line"
                               href="/features/ad-blocker">
                                <span class="hover-line__element">Ad blocker</span>
                            </a>
                        </li>

                        
                        <li>
                            <a class="hf__link hover-line"
                               href="/features/free-vpn">
                                <span class="hover-line__element">Free VPN</span>
                            </a>
                        </li>
                        

                        <li>
                            <a class="hf__link hover-line"
                               href="/features/flow">
                                <span class="hover-line__element">Flow</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="/features/sync">
                                <span class="hover-line__element">Sync data</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__sublink hover-line"
                               href="/features">
                                <span class="hover-line__element">Show all…</span>
                            </a>
                        </li>
                    </ul>
                </div>
            </div>
            
            <div>
                <input id="hf-products-switcher"
                       class="hf__dd-switcher hf-hide"
                       type="checkbox">
                <h4 class="hf__heading">
                    <label class="hf__label"
                           for="hf-products-switcher">Products</label>
                </h4>
                <div class="hf__dd-content header__dd-content">
                    <ul class="hf__links list-style--none">
                        <li>
                            <a class="hf__link hover-line"
                               href="https://www.yoyogames.com/gamemaker"
                               target="_blank">
                                <span class="hover-line__element">GameMaker Studio</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="https://getdify.com"
                               target="_blank">
                                <span class="hover-line__element">Dify</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="/products/hype">
                                <span class="hover-line__element">Hype</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="/download#news">
                                <span class="hover-line__element">Opera News</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="/download#news-lite">
                                <span class="hover-line__element">Opera News Lite</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="/products/apex-football">
                                <span class="hover-line__element">Apex Football</span>
                            </a>
                        </li>
                        
                        <li>
                            <a class="hf__sublink hover-line"
                               href="/products">
                                <span class="hover-line__element">See all products</span>
                            </a>
                        </li>
                    </ul>
                </div>
            </div>
            
            <div>
                <input id="hf-gaming-switcher"
                       class="hf__dd-switcher hf-hide"
                       type="checkbox">
                <h4 class="hf__heading">
                    <label class="hf__label"
                           for="hf-gaming-switcher">Gaming</label>
                </h4>
                <div class="hf__dd-content header__dd-content">
                    <ul class="hf__links list-style--none">
                        <li>
                            <a class="hf__link hover-line"
                               href="/gx">
                                <span class="hover-line__element">Opera GX</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="https://www.yoyogames.com/gamemaker"
                               target="_blank">
                                <span class="hover-line__element">GameMaker Studio</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="https://gxc.gg"
                               target="_blank">
                                <span class="hover-line__element">GXC</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__sublink hover-line"
                               href="/gaming">
                                <span class="hover-line__element">See all</span>
                            </a>
                        </li>
                    </ul>
                </div>
            </div>
            
            <div>
                <input id="hf-downloads-switcher"
                       class="hf__dd-switcher hf-hide"
                       type="checkbox">
                <h4 class="hf__heading">
                    <label class="hf__label"
                           for="hf-downloads-switcher">Downloads</label>
                </h4>
                <div class="hf__dd-content header__dd-content">
                    <p class="hf__subtitle">Mobile browsers</p>
                    <ul class="hf__links list-style--none">
                        <li>
                            <a class="hf__link hover-line"
                               href="/download#opera">
                                <span class="hover-line__element">Opera for Android</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="/download#opera">
                                <span class="hover-line__element">Opera for iOS</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="/download#opera-gx-mobile">
                                <span class="hover-line__element">Opera GX</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="/download#touch">
                                <span class="hover-line__element">Opera Touch</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="/download#mini">
                                <span class="hover-line__element">Opera Mini</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__sublink hover-line"
                               href="/download">
                                <span class="hover-line__element">Show all…</span>
                            </a>
                        </li>
                    </ul>
                </div>
            </div>
            
            <div>
                <input id="hf-opera-switcher"
                       class="hf__dd-switcher hf-hide"
                       type="checkbox">
                <h4 class="hf__heading">
                    <label class="hf__label"
                           for="hf-opera-switcher">About</label>
                </h4>
                <div class="hf__dd-content header__dd-content">
                    <ul class="hf__links list-style--none">
                        <li>
                            <a class="hf__link hover-line"
                               href="/about">
                                <span class="hover-line__element">Why Opera?</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="/secure-private-browser">
                                <span class="hover-line__element">Secure browsing</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="https://blogs.opera.com/news/" target="_blank">
                                <span class="hover-line__element">Blog</span>
                            </a>
                        </li>

                        <li>
                            <a class="hf__link hover-line"
                               href="https://jobs.opera.com" target="_blank">
                                <span class="hover-line__element">Jobs</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="https://blogs.opera.com/desktop" target="_blank">
                                <span class="hover-line__element">Desktop blog</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="https://blogs.opera.com/mobile">
                                <span class="hover-line__element">Mobile blog</span>
                            </a>
                        </li>
                    </ul>
                </div>
            </div>
            
            <div>
                <input id="hf-help-header-switcher"
                       class="hf__dd-switcher hf-hide"
                       type="checkbox">
                <h4 class="hf__heading">
                    <label class="hf__label"
                           for="hf-help-header-switcher">Help</label>
                </h4>
                <div class="hf__dd-content header__dd-content">
                    <ul class="hf__links list-style--none">
                        <li>
                            <a class="hf__link hover-line"
                               href="https://help.opera.com/latest" target="_blank">
                                <span class="hover-line__element">Opera for computers</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="https://help.opera.com/en/mobile/android/" target="_blank">
                                <span class="hover-line__element">Opera for mobile</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="/switch-to-opera">
                                <span class="hover-line__element">How to switch</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="https://auth.opera.com/account/signup" target="_blank" rel="nofollow">
                                <span class="hover-line__element">Create account</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="https://security.opera.com/" target="_blank">
                                <span class="hover-line__element">Security</span>
                            </a>
                        </li>
                        <li>
                            <a class="hf__link hover-line"
                               href="https://forums.opera.com/" target="_blank">
                                <span class="hover-line__element">Forums</span>
                            </a>
                        </li>
                    </ul>
                </div>
            </div>
        </div>
    </nav>

    
        
        
            


<nav class="sub-header">
    <div class="container-fluid wrapper">
        <div class="sub-header__main">
            
            <div class="sub-header__content" data-menu="Browsers">
                <ul class="sub-header__filter list-style--none">
                    <li data-category="all-browsers" class="hover-line keep-active">
                        <span class="hover-line__element">
                            All browsers</span></li>
                    <li data-category="computer" class="hover-line">
                        <span class="hover-line__element">
                            For computers</span></li>
                    <li data-category="mobile" class="hover-line">
                        <span class="hover-line__element">
                            For mobile</span></li>
                    <li data-category="features" class="hover-line">
                        <span class="hover-line__element">
                            Features</span></li>
                </ul>
                <div class="sub-header__tiles list-style--none">
                    <div class="row">
                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-browsers computer ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-browser--desktop.74fd6261b7b6.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-browser--desktop@2x.2bb1ba00a9d4.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/browsers/opera"
       >
        <span class="sub-header__name hover-line__element">Opera</span>
    </a>
    <div class="sub-header__desc">
        Your personal browser
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-browsers mobile ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-browser--mobile.bf95537d52db.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-browser--mobile@2x.45b4f843493b.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/browsers/opera#mobile"
       >
        <span class="sub-header__name hover-line__element">Opera</span>
    </a>
    <div class="sub-header__desc">
        Your personal mobile browser
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-browsers computer ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-gx.c5c315ce2f7a.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-gx@2x.37b65404804a.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/gx"
       >
        <span class="sub-header__name hover-line__element">Opera GX</span>
    </a>
    <div class="sub-header__desc">
        The browser for gamers
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-browsers mobile ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-gx-mobile.af36ec0fdfbf.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-gx-mobile@2x.b1fc31bf011f.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/gx#mobile"
       >
        <span class="sub-header__name hover-line__element">Opera GX</span>
    </a>
    <div class="sub-header__desc">
        The browser for gamers
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-browsers computer ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-for-chromebook.57a87efed281.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-for-chromebook@2x.1d9fb5a0f8a0.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/browsers/opera-for-chromebook"
       >
        <span class="sub-header__name hover-line__element">Opera for Chromebook</span>
    </a>
    <div class="sub-header__desc">
        The perfect browser for your Chromebook
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-browsers mobile ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-mini.2d19e58f4dc5.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-mini@2x.32e5bb30b693.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/browsers/opera-mini"
       >
        <span class="sub-header__name hover-line__element">Opera Mini</span>
    </a>
    <div class="sub-header__desc">
        A light data-saving browser
    </div>
</div>


                        
<a href="/browsers"
   class="sub-header__tile sub-header__tile--see-more sub-header__other-a all-browsers item-off">
    <span class="btn--arrowed">
        See all browsers
    </span></a>
                        
<a href="/browsers"
   class="sub-header__tile sub-header__tile--see-more sub-header__other-a computer item-off">
    <span class="btn--arrowed">
        See all browsers
    </span></a>
                        
<a href="/mobile"
   class="sub-header__tile sub-header__tile--see-more sub-header__other-a mobile item-off">
    <span class="btn--arrowed">
        See all browsers
    </span></a>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 features item-off">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__features--messengers.6db8285bcfa7.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__features--messengers@2x.54d65b4466a1.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/features/messenger"
       >
        <span class="sub-header__name hover-line__element">Integrated messengers</span>
    </a>
    <div class="sub-header__desc">
        Chat with friends right in your browser without switching apps.
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 features item-off">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__features--ad-blocker.0d7836907379.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__features--ad-blocker@2x.09e7ef598905.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/features/ad-blocker"
       >
        <span class="sub-header__name hover-line__element">Ad blocker</span>
    </a>
    <div class="sub-header__desc">
        Browse with less distractions and load websites faster.
    </div>
</div>

                        
                            


<div class="sub-header__tile col-xs-12 col-lg-3 features item-off">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__features--vpn.dfa751e5579f.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__features--vpn@2x.c177babb4676.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/features/free-vpn"
       >
        <span class="sub-header__name hover-line__element">Free VPN</span>
    </a>
    <div class="sub-header__desc">
        Browse comfortably with enhanced privacy and security, for free.
    </div>
</div>

                        
                        


<div class="sub-header__tile col-xs-12 col-lg-3 features item-off">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__features--player.98fcb099d363.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__features--player@2x.a64fb6945496.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/features/player-in-sidebar"
       >
        <span class="sub-header__name hover-line__element">Player in sidebar</span>
    </a>
    <div class="sub-header__desc">
        A world of music and podcasts at your fingertips
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 features item-off">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__features--pinboards.db193d2c269d.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__features--pinboards@2x.b173367790f7.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/features/pinboards"
       >
        <span class="sub-header__name hover-line__element">Pinboards</span>
    </a>
    <div class="sub-header__desc">
        Save web content easily, share it visually.
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 features item-off">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__features--workspaces.1bcb2d140322.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__features--workspaces@2x.7aa99bf3cc36.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/features/workspaces"
       >
        <span class="sub-header__name hover-line__element">Workspaces</span>
    </a>
    <div class="sub-header__desc">
        Organize tab groups in separate customizable workspaces
    </div>
</div>

                        
<div class="sub-header__tile col-xs-12 col-lg-3 features item-off">
    <p class="text-level-4"><a class="sub-header__other-a" href="/features/battery-saver">
        <span class="btn--arrowed">
            Battery saver</span></a></p>
    <p class="text-level-4"><a class="sub-header__other-a" href="/features/video-pop-out">
        <span class="btn--arrowed">
            Video pop-out</span></a></p>
    <p class="text-level-4"><a class="sub-header__other-a" href="/features/flow">
        <span class="btn--arrowed">
            Flow</span></a></p>
    <p class="text-level-4"><a class="sub-header__other-a" href="/features/snapshot">
        <span class="btn--arrowed">
            Snapshot tool</span></a></p>
</div>
                        
<a href="/features"
   class="sub-header__tile sub-header__tile--see-more sub-header__other-a features item-off">
    <span class="btn--arrowed">
        See more features
    </span></a>
                    </div>
                </div>
            </div>

            
            <div class="sub-header__content" data-menu="Products">
                <ul class="sub-header__filter list-style--none">
                    <li data-category="all-products" class="hover-line keep-active">
                        <span class="hover-line__element">
                            All</span></li>
                </ul>
                <div class="sub-header__tiles list-style--none">
                    <div class="row">
                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-products ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__gamemaker.c7903d06881b.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__gamemaker@2x.dc2216c4682a.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="https://www.yoyogames.com/gamemaker"
       target="_blank">
        <span class="sub-header__name hover-line__element">GameMaker Studio</span>
    </a>
    <div class="sub-header__desc">
        Complete game creation software
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-products ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__cashback.53cb2b52a98f.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__cashback@2x.d3df4e0beb83.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/features/cashback"
       >
        <span class="sub-header__name hover-line__element">Dify Cashback</span>
    </a>
    <div class="sub-header__desc">
        Get money back for shopping
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-products ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__hype.74872bf61f58.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__hype@2x.b1bf3c2edf62.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/products/hype"
       >
        <span class="sub-header__name hover-line__element">Hype</span>
    </a>
    <div class="sub-header__desc">
        Chat for free in Opera Mini
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-products ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-news.d5e6192701b9.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-news@2x.28fd44ad73e5.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/products#news"
       >
        <span class="sub-header__name hover-line__element">Opera News</span>
    </a>
    <div class="sub-header__desc">
        Personalized news app
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-products ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-news--lite.0a29f536630d.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-news--lite@2x.a037f2d91172.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/products#news-lite"
       >
        <span class="sub-header__name hover-line__element">Opera News Lite</span>
    </a>
    <div class="sub-header__desc">
        News that’s easy on your data
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-products ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__appex-football.f586e4d5f9ad.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__appex-football@2x.0df19f6df5c2.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/products/apex-football"
       >
        <span class="sub-header__name hover-line__element">Apex Football</span>
    </a>
    <div class="sub-header__desc">
        The best way to get live scores & commentary
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-products ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__loomi.6a530c47e227.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__loomi@2x.29ecc34dbe21.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="https://loomi.tv/"
       target="_blank">
        <span class="sub-header__name hover-line__element">Loomi by Opera</span>
    </a>
    <div class="sub-header__desc">
        VoD for movie buffs
    </div>
</div>

                        
<a href="/products"
   class="sub-header__tile sub-header__tile--see-more sub-header__other-a all-products item-off">
    <span class="btn--arrowed">
        See all products
    </span></a>
                    </div>
                </div>
            </div>

            
            <div class="sub-header__content" data-menu="Gaming">
                <ul class="sub-header__filter list-style--none">
                    <li data-category="all-gaming" class="hover-line keep-active">
                        <span class="hover-line__element">
                            All</span></li>
                </ul>
                <div class="sub-header__tiles list-style--none">
                    <div class="row">
                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-gaming ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-gx.c5c315ce2f7a.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-gx@2x.37b65404804a.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/gx"
       >
        <span class="sub-header__name hover-line__element">Opera GX</span>
    </a>
    <div class="sub-header__desc">
        The browser for gamers
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-gaming ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-gx-mobile.af36ec0fdfbf.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-gx-mobile@2x.b1fc31bf011f.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/gx#mobile"
       >
        <span class="sub-header__name hover-line__element">Opera GX</span>
    </a>
    <div class="sub-header__desc">
        The browser for gamers
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-gaming ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__gamemaker.c7903d06881b.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__gamemaker@2x.dc2216c4682a.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="https://www.yoyogames.com/gamemaker"
       target="_blank">
        <span class="sub-header__name hover-line__element">GameMaker Studio</span>
    </a>
    <div class="sub-header__desc">
        Complete game creation software
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-gaming ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__gxc.f3d672ef005b.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__gxc@2x.ec984b2b7515.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="https://gxc.gg"
       target="_blank">
        <span class="sub-header__name hover-line__element">GXC</span>
    </a>
    <div class="sub-header__desc">
        Play games, challenge and win
    </div>
</div>

                        
<a href="/gaming"
   class="sub-header__tile sub-header__tile--see-more sub-header__other-a all-gaming item-off">
    <span class="btn--arrowed">
        See all
    </span></a>
                    </div>
                </div>
            </div>

            
            <div class="sub-header__content" data-menu="Downloads">
                <ul class="sub-header__filter list-style--none">
                    <li data-category="all-downloads" class="hover-line keep-active">
                        <span class="hover-line__element">
                            All</span></li>
                    <li data-category="computer" class="hover-line">
                        <span class="hover-line__element">
                            For computers</span></li>
                    <li data-category="mobile" class="hover-line">
                        <span class="hover-line__element">
                            For mobile</span></li>
                </ul>
                <div class="sub-header__tiles list-style--none">
                    <div class="row">
                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-downloads computer ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-browser--desktop.74fd6261b7b6.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-browser--desktop@2x.2bb1ba00a9d4.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/download#opera-browser"
       >
        <span class="sub-header__name hover-line__element">Opera</span>
    </a>
    <div class="sub-header__desc">
        Your personal browser
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-downloads mobile ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-browser--mobile.bf95537d52db.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-browser--mobile@2x.45b4f843493b.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/download#opera-browser"
       >
        <span class="sub-header__name hover-line__element">Opera</span>
    </a>
    <div class="sub-header__desc">
        Your personal mobile browser
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-downloads computer ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-gx.c5c315ce2f7a.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-gx@2x.37b65404804a.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/download#opera-gx"
       >
        <span class="sub-header__name hover-line__element">Opera GX</span>
    </a>
    <div class="sub-header__desc">
        The browser for gamers
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-downloads mobile ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-gx-mobile.af36ec0fdfbf.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-gx-mobile@2x.b1fc31bf011f.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/download#opera-gx"
       >
        <span class="sub-header__name hover-line__element">Opera GX</span>
    </a>
    <div class="sub-header__desc">
        The browser for gamers
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-downloads computer ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-for-chromebook.57a87efed281.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-for-chromebook@2x.1d9fb5a0f8a0.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/download#opera-browser"
       >
        <span class="sub-header__name hover-line__element">Opera for Chromebook</span>
    </a>
    <div class="sub-header__desc">
        The perfect browser for your Chromebook
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-downloads mobile ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-mini.2d19e58f4dc5.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-mini@2x.32e5bb30b693.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/download#mini"
       >
        <span class="sub-header__name hover-line__element">Opera Mini</span>
    </a>
    <div class="sub-header__desc">
        A light data-saving browser
    </div>
</div>

                        
<a href="/download"
   class="sub-header__tile sub-header__tile--see-more sub-header__other-a all-downloads item-off">
    <span class="btn--arrowed">
        See all
    </span></a>
                    </div>
                </div>
            </div>

            
            <div class="sub-header__content" data-menu="About">
                <ul class="sub-header__filter list-style--none">
                    <li data-category="all-about" class="hover-line keep-active">
                        <span class="hover-line__element">
                            All</span></li>
                </ul>
                <div class="sub-header__tiles list-style--none">
                    <div class="row">
                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-about ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__why-opera.644bcd2a1f1a.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__why-opera@2x.68086109117b.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/about"
       >
        <span class="sub-header__name hover-line__element">Why Opera?</span>
    </a>
    <div class="sub-header__desc">
        Who and what we are
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-about ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__secure-browsing.33cdbdfb7935.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__secure-browsing@2x.556741cacd34.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/secure-private-browser"
       >
        <span class="sub-header__name hover-line__element">Secure browsing</span>
    </a>
    <div class="sub-header__desc">
        How Opera protects you
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-about ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__blog.39e34d3bcac4.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__blog@2x.ddcd01cd04fb.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="https://blogs.opera.com/news/"
       target="_blank">
        <span class="sub-header__name hover-line__element">Blog</span>
    </a>
    <div class="sub-header__desc">
        Latest news from Opera
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-about ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__jobs.13fa7c347e07.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__jobs@2x.881c2a26ae09.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="https://jobs.opera.com"
       target="_blank">
        <span class="sub-header__name hover-line__element">Jobs</span>
    </a>
    <div class="sub-header__desc">
        Opportunities at Opera
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-about ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__blog-desktop.229cc46896ae.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__blog-desktop@2x.f7810a603e88.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="https://blogs.opera.com/desktop/"
       target="_blank">
        <span class="sub-header__name hover-line__element">Desktop blog</span>
    </a>
    <div class="sub-header__desc">
        Latest desktop news
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-about ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__blog-mobile.e7f9924c9bde.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__blog-mobile@2x.9f87043780a3.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="https://blogs.opera.com/mobile/"
       target="_blank">
        <span class="sub-header__name hover-line__element">Mobile blog</span>
    </a>
    <div class="sub-header__desc">
        Latest mobile news
    </div>
</div>

                        
<a href="/about"
   class="sub-header__tile sub-header__tile--see-more sub-header__other-a all-about item-off">
    <span class="btn--arrowed">
        Get to know us
    </span></a>
                    </div>
                </div>
            </div>

            
            <div class="sub-header__content" data-menu="Help">
                <ul class="sub-header__filter list-style--none">
                    <li data-category="all-help" class="hover-line keep-active">
                        <span class="hover-line__element">
                            All</span></li>
                    <li data-category="for-computers" class="hover-line">
                        <span class="hover-line__element">
                            For computers</span></li>
                    <li data-category="for-mobile" class="hover-line">
                        <span class="hover-line__element">
                            For mobile</span></li>
                </ul>
                <div class="sub-header__tiles list-style--none">
                    <div class="row">
                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-help ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-account.3b115749c976.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-account@2x.57d6a0885c5a.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="https://auth.opera.com/account/signup"
       target="_blank">
        <span class="sub-header__name hover-line__element">Opera account</span>
    </a>
    <div class="sub-header__desc">
        Create a free account
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-help ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-forums.b9cbb7724dc6.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__opera-forums@2x.e2f4f4d089e6.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="https://forums.opera.com/"
       target="_blank">
        <span class="sub-header__name hover-line__element">Forums</span>
    </a>
    <div class="sub-header__desc">
        Join the discussions
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-help ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__secure-browsing.33cdbdfb7935.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__secure-browsing@2x.556741cacd34.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="https://security.opera.com/"
       target="_blank">
        <span class="sub-header__name hover-line__element">Security</span>
    </a>
    <div class="sub-header__desc">
        Safety and security information
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-help for-computers ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__switch-to-opera.09e5b47295e3.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__switch-to-opera@2x.63e10cb493ee.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="/switch-to-opera"
       >
        <span class="sub-header__name hover-line__element">How to switch</span>
    </a>
    <div class="sub-header__desc">
        See the easy step-by-step
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-help for-computers ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__help-desktop.ab21db86cbdc.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__help-desktop@2x.6c1ec591ec5e.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="https://help.opera.com/latest"
       target="_blank">
        <span class="sub-header__name hover-line__element">Opera Browser for computers</span>
    </a>
    <div class="sub-header__desc">
        Get help with Opera for computers
    </div>
</div>

                        


<div class="sub-header__tile col-xs-12 col-lg-3 all-help for-mobile ">
    <img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/1x1px.91e42db1c66c.png"
         data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__help-mobile.0c1460953ad9.png"
         data-srcset="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/hf-images/sub-header/sub-header__help-mobile@2x.fa7b76925b53.png 2x"
         class="sub-header__img"
         alt="Opera"/>
    <a class="sub-header__tile-a hover-line"
       href="https://help.opera.com/en/mobile/android/"
       target="_blank">
        <span class="sub-header__name hover-line__element">Opera Browser for Android</span>
    </a>
    <div class="sub-header__desc">
        Get help with Opera Browser for Android
    </div>
</div>

                        
<div class="sub-header__tile col-xs-12 col-lg-3 all-help for-mobile item-off">
    <p class="text-level-4"><a class="sub-header__other-a" href="https://help.opera.com/mobileios">
        <span class="btn--arrowed">
            Opera Browser for iOS</span></a></p>
    <p class="text-level-4"><a class="sub-header__other-a" href="https://help.opera.com/mini/android">
        <span class="btn--arrowed">
            Opera Mini</span></a></p>
    <p class="text-level-4"><a class="sub-header__other-a" href="https://help.opera.com/touch">
        <span class="btn--arrowed">
            Opera Touch</span></a></p>
</div>
                        
<a href="/help"
   class="sub-header__tile sub-header__tile--see-more sub-header__other-a all-help for-mobile for-computers item-off">
    <span class="btn--arrowed">
        See all
    </span></a>
                    </div>
                </div>
            </div>
        </div>
    </div>
    <div class="sub-header__overlay"></div>
</nav>


        
    



        
    </header>

    

    <main class="privacy-page">
        <section class="section-main my5">
            <div class="wrapper container-fluid">
                

    <p class="my5"><i>If you don't live in the&nbsp;European Economic Area, please read this&nbsp;
        <a href="/terms/row"
           rel="nofollow"
           target="_self"> Terms of Service
        </a>
        . </i>
    </p>
<h1>Terms of Service</h1>

<p><em>Last updated: February 16, 2021</em></p>

<p>Opera Norway AS and its affiliates offer a number of different services through their respective websites and software. The terms of this document govern your use of those services. Please read this document carefully.</p>

<ol>
    <li>
        <p><strong>This is a contract.</strong></p>

        <p>a. These Terms of Service (“Terms”), along with Opera’s Privacy Statement, form a legally-binding contract between you and Opera Norway AS (P.O. Box 4214, Nydalen, 0401, Oslo, Norway), as well as its affiliates (“Opera” and “we,” “us” and “our”). By using the Services (as defined below), you are agreeing to be legally bound by these Terms. If you don’t agree with these Terms, you must discontinue using the Services.</p>

        <p>b. As used in these Terms, the word “Services” applies to online services provided to you by Opera through its software applications, websites and APIs.</p>
    </li>
    <li>
        <p><strong>We expect you to be a responsible user.</strong></p>

        <p>a. You agree that you will not use the Services for any purpose that is unlawful or prohibited by these Terms. You agree to follow all applicable local, state, national, and international laws and regulations. You are solely responsible for all acts or omissions that occur while using any Services, including the content of any transmissions you send through the Services and any content you upload or publish using the Services.</p>

        <p>b. We expect you to respect the rights of others. By using the Services, you agree that you will not upload, transfer, or otherwise make available files, images, code, materials, or other information or content (“Content”) that violates the rights of any third party, including their intellectual property rights, however defined.</p>

        <p>c. You also agree not to upload, transfer, or otherwise make available any Content that is obscene, vulgar, sexually-oriented, hateful, or threatening. Opera strictly forbids unsolicited messaging and unauthorized advertisements while using the Services.</p>

        <p>d. Opera has a zero-tolerance policy against child sexual abuse content and will terminate the access of any user who publishes or distributes child sexual abuse content. Furthermore, we will report such users to the appropriate authorities.</p>

        <p>e. You are responsible for the security of your user account. Certain Services (including use of Opera’s forums) allow you to create a user account to access certain Services. You are entirely responsible for maintaining the confidentiality of your user account and password. Additionally, you are also responsible for any and all activities that occur under your user account.</p>

        <p>f. You acknowledge that information of any kind presented to you via the Services may be protected by copyright, trademark, patent and/or other proprietary rights and laws. You agree not to violate these laws or infringe these rights in any way.</p>

        <p>g. Certain features of the Services may allow you to publish or send content that can be viewed by others (“User Generated Content”). You agree that Opera is not liable for User Generated Content that is provided by others. Opera has no duty to pre-screen User Generated Content, but Opera has the right to refuse to post, edit, or deliver User Generated Content. Opera reserves the right to remove User Generated Content for any reason, but Opera is not responsible for any failure or delay in removing such material. Opera reserves the right to block any user’s access to any content, website or web page at our sole discretion.</p>

        <p>h. Opera does not claim ownership of any User Generated Content. However, by submitting User Generated Content on any Service, including any ideas, concepts, know-how, or techniques described therein, you consent to Opera’s unrestricted use of those items.</p>

        <p>i. If you upload any Content or User Generated Content to Opera’s sites, you warrant that you have the necessary rights and authority to do so, including the necessary consent to upload and distribute any personal information about third persons. You agree that you will not upload viruses or other forms of malware.</p>
    </li>
    <li>
        <p><strong>Details.</strong> For clarity, and consistent with the rest of these Terms, here are further details on specific Services that may be available through the Opera websites or software applications.</p>

        <p>a. Extension catalog: Opera may offer a portfolio of third party browser extensions and themes (“Add-Ons”). Opera exercises no editorial control over the Add-Ons that you access through this Service.</p>

        <p>b. Compression: Opera’s software applications include compression functionality to enable users to boost the download of web content such as web pages and/or videos. This functionality requests web content through Opera’s proxy or compression servers. Your browsing experience may change due to increased loading speeds. Certain web pages may not be available through proxy servers.</p>

        <p>c. News recommendations: Opera’s software applications may include a current news feed feature to help you discover and access news content made available by third parties on the internet. Opera exercises no editorial control over any content that you access through this Service.</p>

        <p>d. Synchronization: Opera allows you to enable synchronization of browser data such as your speed dials between Opera browsers on the devices you are using. This Service requires that you login to a social network service or create an Opera account.</p>

        <p>e. Contextual hints: Opera’s browser for computers may include “Browser Assistant”, a component that provides contextual hints about certain Opera browser features and other useful information which you might be interested in. Browser Assistant is an optional component of the software.</p>

        <p>f. Virtual Private Network: Through Opera’s browser you may have access to a virtual private network (“VPN”). Consistent with other provisions of these Terms, you agree not to use the VPN service in a manner that violates applicable law or otherwise infringes any third party’s rights. Opera does not guarantee that VPN service will always be available. The VPN feature is not an end-to-end service and it does not guarantee that any transmissions of information made while using VPN will be secure. Note that certain websites may not be accessible while using VPN.</p>

        <p>g. Snapshot: Opera’s browser for computers may include functions that enable you to easily take screenshots of content viewed through the browser. This feature is for your personal, non-commercial use only. You agree never to use the feature in any way that violates applicable law, or the rights of any third party, including copyrights.</p>
    </li>
    <li>
        <p><strong>The Services are provided without any warranties or guarantees.</strong> Opera does not guarantee that your use of the Services will be problem free. Although we work hard to provide the highest quality software and services, we cannot and do not guarantee that they will work perfectly every time or in every respect.</p>

        <p>a. The Services are provided “as is” without warranties of any kind. Opera and/or its respective suppliers hereby disclaim all warranties and conditions with regard to the Services, including all implied warranties and conditions of merchantability, fitness for a particular purpose, title, and non-infringement.</p>

        <p>b. Opera does not represent or warrant that the Services will be uninterrupted or error free, that defects will be corrected, or that the Services or the server that makes them available are free of viruses or other harmful components.</p>

        <p>c. In compliance with local law, certain Services and websites may not be available in some countries.</p>
    </li>
    <li>
        <p><strong>Certain Services are provided by third parties.</strong> Some Services accessible through the Opera software applications are provided by other companies (“Third Party Services”). Third Party Services may be subject to separate terms and conditions. These Third Party Services may include the following:</p>

        <p>a. Geolocation API: A geolocation service provided by Google LLC. By using the service you accept Google’s Terms of Service available at <a href="https://policies.google.com/terms">https://policies.google.com/terms</a>; and</p>

        <p>b. WhatsApp: A messaging service provided by WhatsApp, Inc., whose terms of use are available at <a href="https://www.whatsapp.com/legal">https://www.whatsapp.com/legal</a>; and</p>

        <p>c. Facebook Messenger: A messaging service provided by Facebook, Inc., whose terms of use are available at <a href="https://www.facebook.com/legal/terms">https://www.facebook.com/legal/terms</a>; and</p>

        <p>d. Yandex.Zen: A content aggregation/recommendation service offered by Yandex Services AG and its affiliates. By using the Yandex.Zen service, you accept the Yandex.Zen Terms of Use published at <a href="https://yandex.com/legal/zen_termsofuse">https://yandex.com/legal/zen_termsofuse</a>.</p>
    </li>
    <li>
        <p><strong>Your access to the Services is subject to change.</strong> Opera reserves the right at any time to modify or discontinue the Services in whole or in part, and to terminate your access to the Services at any time, with or without notice. You agree that Opera shall not be liable to you or to any third party for any modification, suspension or discontinuance of the Services. Opera may also terminate or suspend your user account for inactivity, which is defined as failing to sign-in to the Services for an extended period of time, as determined by Opera. Opera reserves the right to assign its rights and responsibilities under these Terms to any third party.</p>
    </li>
    <li>
        <p><strong>Links to the Third Party Sites are available through the Services.</strong> The Services may contain links to other websites (“Third Party Sites”), as well as articles, photographs, text, graphics, pictures, designs, music, sound, video, information, applications, software, and other content or items belonging to or originating from third parties (“Third Party Content”). Opera has no control over and no responsibility for Third Party Sites or Third Party Content. Inclusion of, linking to, or permitting the use or installation of any Third Party Site or any Third Party Content does not imply approval or endorsement thereof by Opera.</p>
    </li>
    <li>
        <p><strong>Our Services are ad-supported.</strong> All our Services are generally provided free of charge. Opera incurs substantial development, collocation and bandwidth expenses in doing this. To support our business and continue providing you with the Services for free, we will display the advertisements of select partners to you. By using our Services, you consent to the placement of such advertisements within the Services.</p>
    </li>
    <li>
        <p><strong>Opera is not responsible for any damages you may incur as a result of your use of the Services.</strong></p>

        <p>a. You agree that Opera shall not be responsible for unauthorized access to or alteration of your transmissions or data, any material or data sent or received or not sent or received, or any transactions entered into through the Services.</p>

        <p>b. You agree that Opera is not responsible or liable for any threatening, defamatory, obscene, offensive, or illegal content or conduct of any other party or any infringement of another’s rights, including intellectual property rights. You specifically agree that Opera is not responsible for any content sent using and/or included in the Services by any third party.</p>

        <p>c. In no event shall Opera and/or its suppliers be liable for any direct, indirect, punitive, incidental, special, consequential damages, or any damages whatsoever including, without limitation, damages for loss of use, data, or profits, arising out of or in any way connected with the use or performance of the Services, with the delay or inability to use the Services, the provision of or failure to provide any Services, or for any information, software, products, services, and related graphics obtained through the Services, or otherwise arising out of the use of the Services, whether based on contract, tort, negligence, strict liability, or otherwise, even if opera or any of its suppliers has been advised of the possibility of damages. Because some states/jurisdictions do not allow the exclusion or limitation of liability for consequential or incidental damages, the above limitation may not apply in every instance. If you are dissatisfied with any portion of the Services, or with any of these terms, your sole and exclusive remedy is to discontinue using the Services and related websites.</p>

        <p>d. You agree to indemnify and hold Opera, its parents, subsidiaries, affiliates, officers, and employees, harmless from any claim, demand, or damage, including reasonable attorneys’ fees, asserted by any third party due to or arising out of your use of or conduct on the Services.</p>
    </li>
    <li>
        <p><strong>We need you to respect our trademarks.</strong> The Opera word mark and the Opera, Opera News, and “O” logos are trademarks of Opera Norway AS in Norway, the European Union and other countries. You agree that all such trademarks, trade names, service marks and other Opera logos and brand features, and product and service names are trademarks and the property of Opera (the “Opera Marks”). Without prior written permission, you agree not to display or use the Opera Marks in any manner.</p>
    </li>
    <li>
        <p><strong>These Terms are based on Norwegian law.</strong> These Terms are governed by the laws of Norway without giving effect to any conflicts of law principles that may require the application of the laws of a different country. The United Nations Convention on Contracts for the International Sale of Goods does not apply to these Terms. All actions or proceedings arising under or related to these Terms must be brought in the Oslo City Court, and each party hereby agree to irrevocably submit to the jurisdiction and venue of any such court in all such actions or proceedings. If any provision of these Terms is determined by a court of competent jurisdiction to be invalid, illegal, or unenforceable, the remaining provisions of these Terms shall not be affected or impaired thereby.</p>
    </li>
    <li>
        <p><strong>Opera may modify these Terms.</strong> Opera may update these Terms or the Privacy Statement from time to time. The current version of these Terms are posted at <a href="https://www.opera.com/terms">https://www.opera.com/terms</a>. The Privacy Statement is posted at <a href="https://www.opera.com/privacy">https://www.opera.com/privacy</a>. It is your responsibility to remain informed of any changes, because you are legally obligated to abide by the latest versions of these Terms and the Privacy Statement. You may not assign or transfer your rights under these Terms without obtaining Opera’s prior written consent, and any purported assignment or transfer in violation of this section will be null and void.</p>
    </li>
    <li>
        <p><strong>Notice to rights holders.</strong> If you believe that any content accessible via the Services infringes your rights, you may submit a notification to Opera in which you provide the following information: (a) identification of the rights/works that are being infringed upon; (b) identification of the content that is infringing your rights (including URL(s) for the content); (c) your name, address, telephone number, and electronic mail address; (d) a statement that you have a good faith belief that use of the content in the manner complained of is not authorized by the rights holder, its agent, or the law; (e) a statement that the information in the notification is accurate and, under penalty of perjury, that you are authorized to act on behalf of the owner of an exclusive right that is allegedly infringed; and (f) your physical or electronic signature, or that of a person authorized to act on your behalf, of the owner of an exclusive right that is allegedly infringed. Notices may be sent to <a href="mailto:copyright@opera.com">copyright@opera.com</a>.</p>
    </li>
</ol>

<h1>Service Specific Terms</h1>

<h2 id="newsapp">Opera News</h2>

<p><em>Last updated: February 16, 2021</em></p>

<ol>
    <li>
        <p><strong>Use of Content by news aggregators.</strong> Use of our Content by news aggregators shall only be allowed if such news aggregators: a) only provide the thumb nail and headline as it appears on our software applications or Services; b) provides a correct and working hyperlink to the source of the Content or article on our software application; and c) acknowledges us as the source of the Content and acknowledges writers, journalists, photographers and third party agencies as they are acknowledged on our software application.</p>
    </li>
    <li>
        <p><strong>Third Party Contributors.</strong> By using the Services, you acknowledge and accept that Opera may display Content from independent third party contributors on the Opera News software application and which Content is identified as being submitted by a “News Hub Creator”. You furthermore acknowledge that the views and opinions expressed in News Hub Creator Content are solely those of the News Hub Creator and do not represent, reflect or express the views of Opera. Any/all written content and images displayed are provided by the News Hub Creator, appear as submitted by the News Hub Creator and are unedited by Opera. Opera does not consent to nor does it condone the posting of any content that violates the rights (including the copyrights) of any third party, nor content that may malign, inter alia, any religion, ethnic group, organization, gender, company, or individual. Opera furthermore does not condone the use of our software applications for the purposes encouraging/endorsing hate speech, violation of human rights and/or utterances of a defamatory nature.</p>
    </li>
    <li>
        <p><strong>Reporting.</strong> If the Content displayed violates any of your rights, including those of copyright, and/or violates any of the above mentioned factors, you are requested to immediately notify Opera via <a href="https://opera.news/copyright">online form</a> and/or report the Content using the available reporting functionality built into our software application.</p>
    </li>
</ol>

<h2 id="newshub">Opera News Hub</h2>

<p><em>Last updated: May 10, 2021</em></p>

<ol>
    <li>
        <p><strong>Restrictions on use.</strong> Unless our prior written consent is provided, you may not: a) reproduce, publish, broadcast, adapt, sell or otherwise transfer or use for commercial purposes any Content; b) decompile or reverse engineer the Content, or reduce the Content to any format other than the format in which we make such Content available to you; c) incorporate the Content into any other content for whatever purpose; d) remove any legal notices (copyright, trademark or other proprietary rights notices) in or on the Content; or e) frame any portion of a web page that forms part of our Services.</p>
    </li>
    <li>
        <p><strong>Accuracy of Content submitted to Opera.</strong> You agree to be solely responsible for ensuring that the Content and the posting thereof is fully compliant with all applicable laws (including but not limited to all applicable laws relating to intellectual property and/or false/deceptive advertising) as well as all terms, conditions, and guidelines established by Opera. Any losses incurred by Opera which are caused by you violating these Terms shall be borne exclusively by you. For the avoidance of doubt, “losses” includes but is not limited to loss of profits, fines, damages and all legal costs incurred by Opera whether direct or indirect in nature. Such losses shall be payable by you on demand.</p>
    </li>
    <li>
        <p><strong>Third Party Content.</strong> You hereby irrevocably agree that the Content that you upload, will be your original work and will not violate any third parties rights, be they copyright, proprietary rights, personal rights or otherwise. You furthermore agree that your Content will not violate any legislation within the jurisdiction that your Content will be displayed in. You hereby irrevocably agree to that Opera is not responsible for any Content uploaded by you and you hereby indemnify Opera, its affiliates, employees, directors, shareholders or otherwise without limitation, against any/all claims, be they civil or criminal in nature, that you or Opera may suffer as a result of your Content.</p>
    </li>
    <li>
        <p><strong>You are legally liable for your Content.</strong></p>

        <p>4.1. For the purposes of this clause 4, “Abusive Content” means Content which we consider to be remarks intended to be demeaning, humiliating, mocking, insulting, or belittling that may or may not be based on the actual or perceived race, color, religion, sex, national origin, sexual orientation, or gender identity of an individual.</p>

        <p>4.2. You agree that you will not: a) do anything which to breach these Terms; b) violate any laws; c) upload Abusive Content; d) violate or infringe any other person/entity’s intellectual property rights and/or rights to privacy; e) replicate, copy, modify, create derivative works of our Content or Services or data contained in any of our software application; f) upload Content that you do not own or do not have the right to publish or distribute; g) knowingly publish untruthful content.</p>
    </li>
    <li>
        <p><strong>Exclusive Mandate.</strong> You hereby irrevocably agree that any Content uploaded to our Software application shall not be published by you, either directly or indirectly, on any other software application without our prior written approval.</p>
    </li>
    <li>
        <p><strong>Status.</strong> You warrant that you are not, have not and shall not represent or hold out that you are our employee of Opera and hereby warrant that you are a wholly independent contractor. You hereby indemnify and hold Opera harmless against any and all claims that are employment related.</p>
    </li>
    <li>
        <p><strong>Minimum Commitment.</strong> You hereby agree that you shall, at a minimum, ensure at least 10 days of activity per month on the Opera News software application (including but not limited to content production, content consumption and interaction) failing which we reserve the right to terminate your use of the Services.</p>
    </li>
    <li>
        <p><strong>Remuneration.</strong> In the event that you qualify for remuneration pursuant to your use of the Service such remuneration shall be strictly in accordance with the remuneration policy displayed on our website. Such remuneration policy may be amended by Opera from time to time without prior written notice. Notwithstanding anything to the contrary contained herein, payment of remuneration to you by Opera shall be at our sole and exclusive discretion. You irrevocably agree that you shall have no right to demand payment from Opera pursuant to your use of the Services and indemnify Opera in such regard.</p>
    </li>
    <li>
        <p><strong>Right to refuse payment.</strong> We reserve the right to deny payment to you if you submit article/s with the potential of causing reputational and/or litigable damage to Opera. You agree and acknowledge that if your account with Opera has been terminated for failure to comply with these Terms you will not be entitled to receive payment from Opera regardless of whether any amounts are due to you as at the date of termination.</p>
    </li>
    <li>
        <p><strong>Payment of statutory fees.</strong> You acknowledge that you are solely responsible for filing all tax returns and submitting all payments as required by any applicable tax authority arising from the payment of fees to you under these Terms, and agree to do so in a timely manner. You furthermore agree to comply with all applicable laws governing self-employed individuals, including laws requiring the payment of taxes, such as income and employment taxes, and social security, disability, and other contributions.</p>
    </li>
</ol>

<h2 id="football">Opera Football</h2>

<p><em>Last updated: November 5, 2021</em></p>

<ol>
    <li>
        <p><strong>Use of Content by sports news aggregators.</strong> Use of our Content by sports news aggregators shall only be allowed if such sports news aggregators:</p>

        <p>a. only provide the thumb nail and headline as it appears on our software applications or Services;</p>

        <p>b. provides a correct and working hyperlink to the source of the Content or article on our software application; and</p>

        <p>c. acknowledges us as the source of the Content and acknowledges writers, journalists, photographers and third party agencies as they are acknowledged on our software application.</p>
    </li>
    <li>
        <p><strong>Third Party Contributors.</strong> By using the Services, you acknowledge and accept that Opera may display Content from independent third party contributors on the Opera Football software application and which Content is identified as being submitted by “studio.opera.com”. You furthermore acknowledge that the views and opinions expressed in such Content is solely those of the submitting party and do not represent, reflect or express the views of Opera. Any/all written content and images displayed are provided by the contributing author, appear as submitted by the contributing author and are unedited by Opera. Opera does not consent to nor does it condone the posting of any content that violates the rights (including the copyrights) of any third party, nor content that may malign, inter alia, any religion, ethnic group, organization, gender, company, or individual. Opera furthermore does not condone the use of our software applications for the purposes encouraging/endorsing hate speech, violation of human rights and/or utterances of a defamatory nature.</p>
    </li>
    <li>
        <p><strong>Reporting.</strong> If the Content displayed violates any of your rights, including those of copyright, and/or violates any of the above mentioned factors, you are requested to immediately notify Opera via <a href="https://opera.news/copyright">online form</a> and/or report the Content using the available reporting functionality built into our software application.</p>
    </li>
</ol>

<h2 id="cryptowallet">Crypto Wallet Service</h2>

<p><em>Last updated: December 15, 2021</em></p>

<ol>
    <li>
        <p>Some of Opera’s software applications include a non-custodial wallet which providing a self-hosted, user controlled solution (“Service”)  for Ethereum-based blockchains and cryptographically secured digital assets. The in-app wallet service is provided by our affiliate, Blueboard International AG, which is solely responsible for its operation. Use of the wallet service is subject to Blueboard’s <a href="https://traden.pro/terms">terms of service</a> and <a href="https://traden.pro/privacy">privacy statement</a>.</p>
    </li>
    <li>
        <p>As explained in Blueboard’s terms of service, you can only use the wallet Service if permitted under the laws of your jurisdiction. Please make sure that your use of the wallet Service is in compliance with all laws, rules, and regulations that apply to you. It is your responsibility to determine what, if any, taxes apply to your Cryptocurrency transactions, and it is your responsibility to report and remit the correct tax to the appropriate tax authority where applicable. Neither Opera nor Blueboard is not responsible for determining whether taxes apply to your transactions or for collecting, reporting, withholding, or remitting any taxes arising from any of your transactions.</p>
    </li>
</ol>

<h2 id="hype">Hype Messaging Service</h2>

<p><em>Last updated: February 16, 2021</em></p>

<p>Depending on where you live, you may be able to access Opera’s Hype messaging service (“Hype”) via some of our mobile apps. Hype enables you to communicate with other Hype users by sending messages, images, and videos.  The following additional terms apply to your use of the Hype service.</p>

<ol>
    <li>
        <p><strong>Creating your account.</strong> To use Hype you must create an account using your current mobile phone number. By providing us with your mobile phone number, you agree to receive text messages and/or phone calls (from us or third-party providers) with codes to register for our Service. Your data will be handled in accordance with the <a href="https://www.opera.com/privacy">Opera privacy statement</a>.</p>
    </li>
    <li>
        <p><strong>Use Hype appropriately.</strong> You must use Hype in accordance with our Terms, and applicable law. We reserve the right to suspend your account for any reason, including for violating our Terms.</p>
    </li>
    <li>
        <p><strong>End-to-end encryption.</strong> Direct messages sent via Hype are end-to-end encrypted, and are not stored by or viewable to Opera in any way. Group messages however are not end-to-end encrypted and may be stored on our servers for up to six months.</p>
    </li>
</ol>

<h2 id="cashback">Dify Cashback Service</h2>

<p><em>Last updated: February 16, 2021</em></p>

<p>The Dify Cashback service (“Service”) is a rewards program offered by Opera Norway AS (“Opera”). The Service is made available to users of the Opera browser in qualifying countries. Opera will not charge you any fees for your use of the Service. By opening an account and using the Service to shop with the Opera browser for goods and services offered by our participating online merchants, you can earn rewards redeemable for cash (“Rewards”). These Service Specific Terms, together with the general Terms of Service (collectively, the “Terms”), govern your use of the Service. Please read the Terms carefully.</p>

<ol>
    <li>
        <p><strong>You will need an Account.</strong> To use the Service, you must be at least 18 years old and have full legal capacity, and create a virtual account in the Opera browser (“Account”). To open an Account, you must provide your email address, give appropriate consent to data processing, and accept the Terms. You may have only one Account.</p>

        <p>a. You agree: (i) not to share with anyone, and keep secret, all logins, passwords, or other methods or information used to log into the Account; and (ii) to provide your current data, including contact details, and keep such information updated.</p>

        <p>b. If you suspect that anyone other than yourself has access to your Account, you should immediately inform Opera and change all logins, passwords, or other information used to log into your Account.</p>
    </li>
    <li>
        <p><strong>Shop to earn Rewards.</strong> You can earn rewards when purchasing goods or services from participating online merchants (“Participating Merchants”) as may be made available via the Opera browser at <a href="https://cashback.getdify.com">https://cashback.getdify.com</a> (“Website”). Opera provides you only with the Service described herein and does not sell any goods or services.</p>

        <p>a. The Reward that can be earned will vary depending on the Participating Merchant and the good or service purchased. The current Reward, or “Cashback” rate, is available on the Website. The Reward may be changed, suspended or terminated by Opera and/or by the Participating Merchants at any time before your purchase.</p>

        <p>b. Your right to a Reward will be accrued only for confirmed transactions. The transaction is “confirmed” only if and when: (i) the purchase is made from your active Account, is completed, and the payment is done; (ii) you did not withdraw from or revoke the purchase within the period specified by the Participating Merchant; (iii) the Participating Merchant confirms the transaction and Opera is able to attribute the transaction to your Account; and (iv) the Participating Merchant has paid Opera the provision.</p>

        <p>c. In your Account you will be able to, among other things, check your purchase history and transaction status to know if you have a right to redeem Rewards.</p>
    </li>
    <li>
        <p><strong>Rewards must be redeemed.</strong> You will not collect any money on your Account. Rather, the Rewards you have earned must be redeemed as described below.</p>

        <p>a. You need to have an active payment account established with a payment service provider who cooperates with Opera for purposes of redeeming your Rewards (“Payment Services Provider’’). The current list of participating Payment Services Providers is available on the Website. In order to redeem Rewards, you must link your account with the Payment Services Provider with your Opera Account via the QR code or other method available in the Opera browser and the Payment Services Provider’s software application.</p>

        <p>b. Provided that you have paired your account with a Payment Services Provider as described above, Opera will redeem your Rewards to your account with the Payment Services Provider automatically. Rewards will be redeemed up to 14 days after your Rewards from confirmed transactions.</p>

        <p>c. The settlement currency is EUR or if the Service is offered in a country which currency is different than EUR the country currency. If You purchase goods or services, or Participating Merchants settle their payments in a different currency applicable exchange rates and fees may apply. Opera does not charge any fees for currency conversion.</p>

        <p>d. Your Reward from a transaction will expire after 12 months after the date such transaction is confirmed.</p>

        <p>e. The Rewards you can earn in any calendar year may not exceed a maximum amount which will depend on your country of residence (“Rewards Cap”). You may find the current Rewards Cap and tax information on the Website. You are responsible for reporting income in accordance with the applicable rules in your country of tax residence.</p>

        <p>f. Rewards are not redeemable, in the event that Opera determines in its sole discretion that: (i) you have abused IT systems to create fictitious transactions, take ownership of someone else’s transactions, or affect the integrity, confidentiality, or availability of the Service’s data in any way; (ii) you attempted to circumvent any of the security mechanisms of the Service (iii) you used third-party software, Ad-blocker or changed the affiliation of transactions done via the Opera browser, (iv) you did not conclude the transaction via the Website and Opera browser.</p>
    </li>
    <li>
        <p><strong>Data processing.</strong> Please see our <a href="https://www.opera.com/privacy">Privacy Statement</a>. We encourage you to read the Privacy Statement to better understand how you can manage your data and cookie preferences.</p>
    </li>
    <li>
        <p><strong>You must accept these Terms.</strong> To use the Service you must accept the Terms, including both the Service Specific Terms and the general Terms of Service. Where these Service Specific Terms differ or conflict with the general Terms of Service, the Service Specific Terms apply.</p>

        <p>By accepting the Terms, you enter into an agreement for an indefinite duration. You must follow these Terms which stipulate all rights and obligations between you and Opera in connection with the Service.</p>
    </li>
    <li>
        <p><strong>Your access to the Service is subject to change.</strong> Opera reserves the right to modify these Service Specific Terms upon notice to you. In the event of material changes we will provide reasonable advance notice via email. If you do not accept the modifications, then you may, prior to the entry into force of the modification, unilaterally terminate the Service Specific Terms by deleting your Account. In such a case the Terms of Service will still apply.</p>
    </li>
    <li>
        <p><strong>Opera is not responsible for any damages you may incur as a result of your use of the Service.</strong> Should you violate these Service Specific Terms or the rights of any Participating Merchants or threaten the operation of Servicek, Opera may delete your Account and terminate the Service Specific Terms with you unilaterally, through a notification to your email address. The Account itself can be deleted by yourself or automatically after 2 years of inactivity.</p>

        <p>a. You agree that Opera shall not be responsible or liable for the performance or non-performance of the Service, or quality of any goods or services sold and provided by Participating Merchants and the functioning of the services offered by Participating Merchants. All claims related to goods or services sold and provided by Participating Merchants shall be direct to the relevant Participating Merchant.</p>

        <p>b. Opera’s liability is limited to the amount of actual damage you incur as a result of Opera’s s deliberate actions.</p>
    </li>
    <li>
        <p><strong>You and Opera may terminate this agreement.</strong> You may terminate the Service Specific Terms at any moment by deleting your Account. In such a case the Terms of Service will still apply.</p>

        <p>a. Except as otherwise specified herein, Opera may terminate this Service Specific Terms at any moment upon 2 months notification.</p>

        <p>b. Your right to redeem Rewards will expire after the termination period.</p>
    </li>
    <li>
        <p><strong>Opera may suspend the Service.</strong> Opera may temporarily suspend the Service for technical reasons or to perform routine maintenance.</p>
    </li>
    <li>
        <p><strong>Contacting Opera support.</strong> You may address support requests, or any other incident or complaint to our customer service team by sending an electronic email to <a href="mailto:support@difyteam.com">support@difyteam.com</a>.</p>
    </li>
</ol>

<h2 id="gamebox">Gamebox</h2>

<p><em>Last updated: May 10, 2021</em></p>

<ol>
    <li>
        <p><strong>Acceptance of Terms.</strong> These service specific terms (“Terms”) form a legally binding contract between you and Opera Norway AS (“Opera”) regarding your use of Gamebox services (“Service”) and content (“Property”). Please review it carefully. You are welcome to contact us if you have any questions or comments about these Terms, but in any event your continuing usage of any of the above will demonstrate your approval of these Terms.</p>
    </li>
    <li>
        <p><strong>Users.</strong> If you register an account to purchase, download, or play games or other content from Gamebox, you agree to be bound to these Terms as a platform user (“User”). Users affirm that they are over the age of 13, as the Service is not intended for children under 13.</p>
    </li>
    <li>
        <p><strong>Publishers.</strong> If you register an account to sell, distribute, or publish games or other content on gamebox, you agree to be bound by these Terms as a platform publisher (“Publisher”). Publishers affirm that they are either more than 18 years of age, or possess legal parental or guardian consent, and are fully able and competent to enter into the terms, conditions, obligations, affirmations, representations and warranties set forth in these Terms.</p>
    </li>
    <li>
        <p><strong>User Generated Content.</strong> Gamebox provides interfaces and tools for Users to generate content and make it available to other users, including ratings, reviews, profile images, banners, and others (“User Generated Content” or “UGC”). By uploading or creating such UGC, you grant Opera the worldwide, non-exclusive, perpetual, royalty free license to use, reproduce, create derivative works, display, perform and distribute for the UGC.</p>
    </li>
    <li>
        <p><strong>Publisher content.</strong> Publishers are solely responsible for the content they upload and distribute on Gamebox. Publishers affirm, represent, and warrant that they own or have the rights, licenses, permissions and consents necessary to publish, duplicate, and distribute the submitted content. By submitting content to the Service for distribution, Publishers also grant a license to Opera for all patent, trademark, trade secret, copyright or other proprietary rights in and to the Content for publication on the Service, pursuant to these Terms. Opera does not endorse copyright infringing activities or other intellectual property infringing activities and violations of the law may result in the removal of content if Opera is notified of such violations. Removal and termination of accounts may occur without prior notice.</p>

        <p>Publishers retain all ownership rights to the submitted content, and by submitting content to the Service, Publishers hereby grant the following:</p>

        <p>a. To Opera, a worldwide, non-exclusive, royalty-free, sublicensable and transferable license to use, reproduce, distribute, prepare derivative works of, display, and perform the content in connection with the Service, including without limitation for promoting, redistributing in any and all media formats. If you choose to remove your content from the Service, this license shall terminate within a commercially reasonable time after you remove your content from the Service.</p>

        <p>b. To Users, a non-exclusive, perpetual license to access the content and to use, reproduce, distribute, display and perform such content as permitted through the functionality of the Service. Users shall retain a license to this content even after the content is removed from the Service.</p>
    </li>
    <li><strong>Payment forms.</strong> Publishers who distribute content on the Service for a fee may be subject to the acceptable use policies of our payment providers. You can review the acceptable use policies for our payment providers:
        <ul>
            <li><a href="https://www.paypal.com/webapps/mpp/ua/legalhub-full">PayPal</a></li>
            <li><a href="https://stripe.com/legal">Stripe</a></li>
        </ul>

        <p>When you provide payment information to Opera or one of its payment providers, you represent that you are the authorized user of the card, PIN, key or account associated with that payment, and you authorize Opera to charge your credit card or process your payment with the chosen payment provider.</p>
    </li>
    <li>
        <p><strong>Transactions and Fees.</strong> Publishers may set the prices, at their own discretion, for their content and products to be sold through the Service (each sale, a “Transaction”). Opera shall be entitled to a share of the revenue Publishers receive from Transactions which shall be calculated on the gross revenue from the Transactions, not including any Transactions for which Publisher or Opera provides a refund in accordance with the transaction configuration on Publisher’s account (the “Revenue Share”). For Transactions, Opera will collect the purchase price and any applicable fees and taxes through its payment providers, and will pay to Publisher the proceeds net of the applicable Revenue Share, payment provider fees, and applicable taxes, VAT, duties, charges or levies. Opera may withhold any taxes, duties, charges or levies on payments by Opera to Publisher pursuant to these Terms, as may be required by applicable law, rule or regulation, and submit such withheld taxes, duties, charges or levies to the appropriate tax authority. Use of IP proxies or other methods to disguise your place of residence, whether to circumvent geographic restrictions on content, to purchase at a price not applicable to your geography, or for any other purpose, is a violation of these Terms.</p>
    </li>
    <li>
        <p><strong>Refunds.</strong> Users may request, and Opera may process, refund requests if the purchased content cannot run, some other issue prevents access to the content, or the product does not accurately represent what was advertised. For technical issues, Opera will direct users to the Publisher to first try to resolve such issues. To request a refund, please contact support with your purchase information. For content selling third party external keys (e.g. Steam keys), Opera may require the Publisher to confirm cancellation of the key before a refund can be processed due to Opera’s inability to disable access. Some Publishers utilizing older payment methods are responsible for handling refunds themselves. If you are uncertain about refund eligibility, please contact support.</p>
    </li>
    <li>
        <p><strong>Start of the Terms.</strong> These Terms start when you confirm your agreement to it or start using any of the Gamebox Property and will end once either you or we terminate it, as we explain below.</p>
    </li>
    <li>
        <p><strong>Your Termination Rights.</strong> You may terminate the contract offered by these Terms at any time by ceasing all use of the Gamebox Property at any time.</p>
    </li>
    <li>
        <p><strong>Our Termination Rights.</strong> We may restrict, suspend or terminate the contract offered by these Terms and your access to all or any part of the Gamebox Property and/or Publisher Property at any time without prior notice or liability if:</p>

        <p>a. you commit a breach of your obligations or any other term under these Terms or violate the rights of any third party intellectual property owner;</p>

        <p>b. if you are an individual, you become bankrupt;</p>

        <p>c. if you are another legal entity, you become insolvent (including being unable to pay your debts as they fall due and/or the value of your assets is less than the amount of your liabilities, taking into account contingent and prospective liabilities), propose an individual, company or partnership voluntary arrangement, have a receiver, administrator or manager or trustee in bankruptcy appointed over the whole or any part of your business or assets; if any petition shall be presented in good faith, order shall be made or resolution passed for your winding up (except for the purpose of amalgamation or reconstruction), bankruptcy or dissolution (including the appointment of provisional liquidators/interim receivers or special managers); if you shall otherwise propose or enter into any composition or arrangement with your creditors or any class of them or you cease or threaten to cease to carry on business;</p>

        <p>d. we decide not to provide the Gamebox Property anymore (see below);</p>

        <p>e. you act in any way that may be considered threatening, abusive, obscene, racist, xenophobic, sexist, defamatory, or otherwise offensive or illegal towards any member of Opera staff;</p>

        <p>f. we delete your Gamebox account in response to a data deletion request from you;</p>

        <p>g. we delete your Gamebox account due to sustained periods of inactivity, provided that we will use reasonable efforts to contact you via the contact details you have provided to us prior to terminating your Gamebox account under this ground.</p>
    </li>
    <li>
        <p><strong>Effect of Termination.</strong> If your contract with us offered by these Terms discontinues for any reason then it will cease immediately to have effect (apart from any sections that are necessary for our enforcement of any legal rights and remedies against you). This means that you will no longer have access to the Gamebox Property and Publisher Property.</p>
    </li>
    <li>
        <p><strong>Force Majeure.</strong> Neither party shall be liable for any failure to fulfil its obligations under these Terms as a result of force majeure and in such circumstances the time for performance shall be extended by a period equivalent to the period during which performance of the obligation has been delayed or failed to be performed. If either party is prevented or delayed in the performance of its obligations under these Terms by reason of force majeure, that party shall, as soon as reasonably possible, serve notice in writing on the other party specifying the nature and extent of the circumstances giving rise to force majeure. In this section 12 (Force Majeure), “Force Majeure” means any cause preventing a party from performing any or all of its obligations that arises from or is attributable to acts, events, omissions or accidents beyond the reasonable control of the party so prevented including strikes, lock-outs or other industrial disputes (other than any such dispute involving the workforce of the party so prevented), nuclear accident or acts of God, war or terrorist activity, riot, civil commotion, malicious damage (excluding malicious damage involving the employees of the affected party or its subcontractors), industrial action by employees of any providers of electrical power, failure of technical facilities, fire, flood, or storm or default of suppliers or subcontractors.</p>
    </li>
    <li><strong>Ceasing to provide the Gamebox Property or Publisher Property.</strong> If we decide to cease to provide the Gamebox Property, then you will be notified as soon as reasonably possible. If for any reason Publisher Property that you have validly licensed is taken down from the Gamebox Platforms, we encourage Publishers to notify you and ensure that the relevant Publisher Property will remain available to valid existing Users for a period of 30 days (but subject to our ultimate discretion and legal obligations as to whether they can be made available in this way or not). Following that period, the Publisher Property (and/or if appropriate the relevant Gamebox Property) will no longer be available unless we notify you otherwise.</li>
</ol>

<h2 id="gxc">GXC Service</h2>

<p><em>Last updated: October 1, 2021</em></p>

<p>These service specific terms (“Terms”) form a legally binding contract between you and Opera Norway AS (“Opera”) regarding your use of GXC services (“Service”) and content (“Property”). The Service is made available in qualifying countries. By registering an account and using the Service, you agree to be bound by the terms of this Agreement and the terms set out in the <a href="https://gxc.gg/eula">GXC EULA and Publishing Agreement</a>. Please read the Terms carefully.</p>

<ol>
    <li>
        <p><strong>Users.</strong> If you register an account to participate and play challenges from <a href="https://gxc.gg">GXC</a>, you agree to be bound to the terms of this Agreement as a platform user (“User”). Users affirm that they are over the age of 13 or an adult in their home territory, as the Service is not intended for children under 13.</p>
    </li>
    <li>
        <p><strong>Publisher.</strong> If you register an account to distribute, or publish games or other content on GXC website, you agree to be bound to the terms of this Agreement as a platform publisher (“Publisher”). Publishers affirm that they are either more than 13 years of age, or possess legal parental or guardian consent, and are fully able and competent to enter into the terms, conditions, obligations, affirmations, representations and warranties set forth in this Agreement.</p>
    </li>
    <li>
        <p><strong>User Generated Content.</strong> The service provides interfaces and tools for Users to generate content and make it available to other users, including ratings, profile images, highscores, and others (“User Generated Content” or “UGC”). By uploading or creating such UGC, you grant Opera the worldwide, non-exclusive, perpetual, royalty free license to use, reproduce, create derivative works, display, perform and distribute for the UGC.</p>
    </li>
    <li>
        <p><strong>Publishers content.</strong> Publishers are solely responsible for the content they upload and distribute on the Service. s affirm, represent, and warrant that they own or have the rights, licenses, permissions and consents necessary to publish, duplicate, and distribute the submitted content. By submitting content to the Service for distribution, Publishers also grant a license to Opera for all patent, trademark, trade secret, copyright or other proprietary rights in and to the Content for publication on the Service, pursuant to these Terms. Opera does not endorse copyright infringing activities or other intellectual property infringing activities and violations of the law may result in the removal of content if Opera is notified of such violations. Removal and termination of accounts may occur without prior notice. Publishers retain all ownership rights to the submitted content, and by submitting content to the Service, Publishers hereby grant the following:</p>

        <p>a. To Opera, a worldwide, non-exclusive, royalty-free, sublicensable and transferable license to use, reproduce, distribute, prepare derivative works of, display, and perform the content in connection with the Service, including without limitation for promoting, redistributing in any and all media formats. If you choose to remove your content from the Service, this license shall terminate within a commercially reasonable time after you remove your content from the Service.</p>

        <p>b. To Users, a non-exclusive, perpetual license to access the content and to use, reproduce, distribute, display and perform such content as permitted through the functionality of the Service. Users shall retain a license to this content even after the content is removed from the Service.</p>
    </li>
    <li>
        <p><strong>Data processing.</strong> Please see our <a href="https://www.opera.com/privacy">Privacy Statement</a>. We encourage you to read the Privacy Statement to better understand how you can manage your data and cookie preferences.</p>
    </li>
    <li>
        <p><strong>You must accept these Terms.</strong> To use the Service you must accept the Terms, including both the Service Specific Terms and the General Terms of Service. Where the Service Specific Terms differ or conflict with the general Terms of Service, the Service Specific Terms apply. By accepting the Terms, you enter into an agreement for an indefinite duration. You must follow these Terms which stipulate all rights and obligations between you and Opera in connection with the Service.</p>
    </li>
    <li>
        <p><strong>Your access to the Service is subject to change.</strong> Opera reserves the right to modify these Service Specific Terms upon notice to you. In the event of material changes we will provide reasonable advance notice via email. If you do not accept the modifications, then you may, prior to the entry into force of the modification, unilaterally terminate the Service Specific Terms by deleting your Account. By continuing to use this service, you  are deemed to have accepted any changes made to the Service Specific Terms. In such a case the general Terms of Service will still apply.</p>
    </li>
    <li>
        <p><strong>Our Termination Rights.</strong> We may restrict, suspend or terminate the contract offered by these Terms and your access to all or any part of the Service Property and/or Publisher Property at any time without prior notice or liability if:</p>

        <p>a. you commit a breach of your obligations or any other term under these Terms or violate the rights of any third party intellectual property owner;</p>

        <p>b. if you are an individual, you become bankrupt;</p>

        <p>c. if you are another legal entity, you become insolvent (including being unable to pay your debts as they fall due and/or the value of your assets is less than the amount of your liabilities, taking into account contingent and prospective liabilities), propose an individual, company or partnership voluntary arrangement, have a receiver, administrator or manager or trustee in bankruptcy appointed over the whole or any part of your business or assets; if any petition shall be presented in good faith, order shall be made or resolution passed for your winding up (except for the purpose of amalgamation or reconstruction), bankruptcy or dissolution (including the appointment of provisional liquidators/interim receivers or special managers); if you shall otherwise propose or enter into any composition or arrangement with your creditors or any class of them or you cease or threaten to cease to carry on business;</p>

        <p>d. we decide not to provide the Service anymore (see below);</p>

        <p>e. you act in any way that may be considered threatening, abusive, obscene, racist, xenophobic, sexist, defamatory, or otherwise offensive or illegal towards any member of Opera staff;</p>

        <p>f. we delete your Service account in response to a data deletion request from you;</p>

        <p>g. we delete your Service account due to sustained periods of inactivity, provided that we will use reasonable efforts to contact you via the contact details you have provided to us prior to terminating your Service account under this ground.</p>
    </li>
    <li>
        <p><strong>Effect of Termination.</strong> If your contract with us offered by these Terms discontinues for any reason then it will cease immediately to have effect (apart from any sections that are necessary for our enforcement of any legal rights and remedies against you). This means that you will no longer have access to the Service Property and Publisher Property.</p>
    </li>
    <li>
        <p><strong>Force Majeure.</strong> Neither party shall be liable for any failure to fulfil its obligations under these Terms as a result of force majeure and in such circumstances the time for performance shall be extended by a period equivalent to the period during which performance of the obligation has been delayed or failed to be performed. If either party is prevented or delayed in the performance of its obligations under these Terms by reason of force majeure, that party shall, as soon as reasonably possible, serve notice in writing on the other party specifying the nature and extent of the circumstances giving rise to force majeure. In this section 10 (Force Majeure), “Force Majeure” means any cause preventing a party from performing any or all of its obligations that arises from or is attributable to acts, events, omissions or accidents beyond the reasonable control of the party so prevented including strikes, lock-outs or other industrial disputes (other than any such dispute involving the workforce of the party so prevented), nuclear accident or acts of God, war or terrorist activity, riot, civil commotion, malicious damage (excluding malicious damage involving the employees of the affected party or its subcontractors), industrial action by employees of any providers of electrical power, failure of technical facilities, fire, flood, or storm or default of suppliers or subcontractors.</p>
    </li>
    <li>
        <p><strong>Ceasing to provide the Service Property or Publisher Property.</strong> If we decide to cease to provide the Service Property, then you will be notified as soon as reasonably possible. If for any reason Publisher Property that you have validly licensed is taken down from the Service Platforms, we encourage Publishers to notify you and ensure that the relevant Publisher Property will remain available to valid existing Users for a period of 30 days (but subject to our ultimate discretion and legal obligations as to whether they can be made available in this way or not). Following that period, the Publisher Property (and/or if appropriate the relevant Service Property) will no longer be available unless we notify you otherwise.</p>
    </li>
    <li>
        <p><strong>Opera may suspend the Service.</strong> Opera may temporarily suspend the Service for technical reasons or to perform routine maintenance.</p>
    </li>
    <li>
        <p><strong>Contacting Opera support.</strong> You may address support requests, or any other incident or complaint to our customer service team by sending an electronic email to <a href="mailto:gxc-support-external@opera.com">gxc-support-external@opera.com</a>.</p>
    </li>
</ol>

<h2 id="loomi">Loomi by Opera</h2>

<p><em>Last updated: October 13, 2021</em></p>

<p>The Loomi by Opera service (“Service”) is a video on demand Service offered by Opera Norway AS (“Opera”). These Service Specific Terms, together with the general Terms of Service (collectively, the “Terms”), govern your use of the Service. Please read the Terms carefully.</p>

<ol>
    <li>
        <p>Depending on where you live, you may be able to access the Loomi by Opera Service to view movies, TV, videos, and other media (“Programs”) via an in-app service or through the <a href="https://loomi.tv">Loomi website</a>. The following terms apply to your use of the Loomi Service and the Loomi Programs.</p>

        <p>a. Through Loomi you may stream Programs that are available for free. Free Programs are supported by third party advertising. Opera is not responsible for the advertising content of third parties which you may see via the Service.</p>

        <p>b. Some Programs are available for rent, meaning that in exchange for a fee (the “Rental Fee”) you will be granted access to stream your selected Programs through Loomi for a limited time as described below.</p>

        <p>c. Loomi is not available in all territories, and the selection of Programs available via Loomi may vary from place to place. You are allowed to view only those items of Programs which have been specifically licensed for the country where you are registered (the “Territory”). Loomi is only for users 18 years of age or older.</p>
    </li>
    <li>
        <p><strong>Rentals</strong></p>

        <p>a. When you rent a Program,you have 30 days from the date of payment to view the Program. If you choose not to start viewing the Program within 30 days, your ability to access it will expire unless you pay another Rental Fee.</p>

        <p>b. You are granted access to a Program for a period of 48 hours, starting from when you first access the Program. After 48 hours have passed, you will not be permitted access to the Program unless you pay another Rental Fee.</p>

        <p>c. You can view rented Programs on up to three devices per account, and you may stream a maximum of two Programs simultaneously.</p>

        <p>d. Payments for Rentals are handled by third-party payment service providers, including PayU. Your payments are subject to PayU’s terms and conditions. You may not access a rental Program until your payment has been validated.</p>
    </li>
    <li>
        <p><strong>Responsibility for Programs</strong></p>

        <p>a. Opera licenses all Programs from third parties, including movie studios, creators, influencers, bloggers, and other rightsholders. All Programs, including all intellectual property rights and other interest embodied therein, are the exclusive property of the respective rightsholders. In other words Opera does not own and is not responsible for Programs you can view on Loomi.</p>

        <p>b. All Programs on the Loomi Service are available on a limited basis and are strictly for personal use. You are allowed only to view Programs in the Territory and solely in compliance with these Terms. You may not download, copy, broadcast, or use Programs in any way except as expressly provided in these Terms. You may not exhibit or display Programs in public spaces of any kind or charge admission to view them. Additional or different restrictions may apply on a case-by-case basis.</p>

        <p>c. Your ability to access Programs may be restricted by Territory. You may not use VPN or any other means to improperly access Programs from outside the applicable Territory. Any attempt to circumvent technical measures to ensure compliance with these Terms is a violation of these Terms and may result in your ability to access Loomi or the Programs being terminated without penalty.</p>

        <p>d. If you are a rightsholder who believes that your Programs are improperly appearing in the Loomi Service, contact <a href="mailto:support@loomi.tv">support@loomi.tv</a>, stating the specific title of the work at issue, the context in which it appeared (including a link), and your complete legal name and contact information (or that of the author). We will use this information to investigate your claim and take appropriate action.</p>
    </li>
    <li>
        <p><strong>General</strong></p>

        <p>a. As further detailed in the main body of these Terms, the Loomi Service is provided on an as-is basis. We make no representations or warranties as to the quality or availability of the Service. Quality may vary from device to device, and be impacted by factors outside of our control, such as the quality of your internet connection.</p>

        <p>b. We may modify, suspend, cancel, or make changes to the Loomi Service or these Terms at any time.</p>
    </li>
</ol>







            </div>
        </section>
    </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="/">
                        <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
                          <path fill="#B3B3B3" fill-rule="evenodd" d="M8.03 0a7.97 7.97 0 0 1 5.302 2.036 5.773 5.773 0 0 0-3.206-.98c-1.905 0-3.612.945-4.76 2.436-.884 1.044-1.457 2.587-1.496 4.32v.377c.04 1.732.612 3.275 1.497 4.32 1.147 1.49 2.854 2.435 4.759 2.435 1.17 0 2.265-.357 3.203-.978-2.049.997-3.962.297-4.594-.14 2.015-.441 3.538-2.878 3.538-5.826 0-2.948-1.523-5.385-3.538-5.827.632-.436 2.545-1.136 4.597-.136a7.979 7.979 0 0 1 2.662 5.655L16 8c0 2.37-1.03 4.499-2.668 5.963l-.002.001-.226.196a7.967 7.967 0 0 1-5.485 1.83A8 8 0 0 1 8 0h.03z"/>
                        </svg>
                    </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">
                            
                            <span itemprop="name" class="hover-line__element">Terms</span>
                            
                            <meta itemprop="position" content="1" />
                        </div>
                    </li>
                
                </ol>
            </div>
        </div>
        
        
        
            



<div class="footer__content">
  <div class="row">
    <div class="col-xs-12 col-xl-2">
        <input id="hf-services-switcher"
               class="hf__dd-switcher hf-hide"
               type="checkbox">
        <h4 class="hf__heading">
          <label class="hf__label footer__label"
                 for="hf-services-switcher">Services</label>
        </h4>
        <div class="hf__dd-content">
          <ul class="hf__links list-style--none">
            <li>
              <a class="hf__link hover-line"
                 href="https://addons.opera.com"
                 target="_blank">
                <span class="hover-line__element">Addons</span>
              </a>
            </li>
            <li>
              <a class="hf__link hover-line"
                 href="https://auth.opera.com"
                 target="_blank"
                 rel="nofollow noopener">
                <span class="hover-line__element">Opera account</span>
              </a>
            </li>
            <li>
              <a class="hf__link hover-line"
                 href="https://addons.opera.com/wallpapers"
                 target="_blank">
                <span class="hover-line__element">Wallpapers</span>
              </a>
            </li>
            <li>
              <a class="hf__link hover-line"
                 href="/ads"
                 target="_blank">
                <span class="hover-line__element">Opera Ads</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">
      <h4 class="hf__heading">
        <label class="hf__label footer__label"
               for="hf-help-switcher">Help</label>
      </h4>
      <div class="hf__dd-content">
        <ul class="hf__links list-style--none">
          <li>
            <a class="hf__link hover-line"
               href="/help">
              <span class="hover-line__element">Help &amp; support</span>
            </a>
          </li>
          <li>
            <a class="hf__link hover-line"
               href="https://blogs.opera.com"
               target="_blank">
              <span class="hover-line__element">Opera blogs</span>
            </a>
          </li>
          <li>
            <a class="hf__link hover-line"
               href="https://forums.opera.com"
               target="_blank">
              <span class="hover-line__element">Opera forums</span>
            </a>
          </li>
          <li>
            <a class="hf__link hover-line"
               href="https://dev.opera.com/"
               target="_blank">
              <span class="hover-line__element">Dev.Opera</span>
            </a>
          </li>
          <li>
            <a class="hf__link hover-line"
               href="https://help.opera.com/en/faq/"
               target="_blank">
              <span class="hover-line__element">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">
      <h4 class="hf__heading">
        <label class="hf__label footer__label"
               for="hf-legal-switcher">Legal</label>
      </h4>
      <div class="hf__dd-content">
        <ul class="hf__links list-style--none">
          <li>
            <a class="hf__link hover-line"
               href="https://security.opera.com"
               target="_blank"
               rel="nofollow">
              <span class="hover-line__element">Security</span>
            </a>
          </li>
          <li>
            <a class="hf__link hover-line"
               href="/privacy"
               rel="nofollow">
              <span class="hover-line__element">Privacy</span>
            </a>
          </li>
          <li>
            <a class="hf__link hover-line"
               href="/privacy/cookies"
               rel="nofollow">
              <span class="hover-line__element">Cookies policy</span>
            </a>
          </li>
          <li>
            <a class="hf__link hover-line"
               href="/eula"
               rel="nofollow">
              <span class="hover-line__element">EULA</span>
            </a>
          </li>
          <li>
            <a class="hf__link hover-line"
               href="/terms"
               rel="nofollow">
              <span class="hover-line__element">Terms of Service</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">
      <h4 class="hf__heading">
        <label class="hf__label footer__label"
               for="hf-company-switcher">Company</label>
      </h4>
      <div class="hf__dd-content">
        <ul class="hf__links list-style--none">
          <li>
            <a class="hf__link hover-line"
               href="/about">
              <span class="hover-line__element">About Opera</span>
            </a>
          </li>
          <li>
            <a class="hf__link hover-line"
               href="/newsroom">
              <span class="hover-line__element">Press info</span>
            </a>
          </li>
          <li>
            <a class="hf__link hover-line"
               href="https://jobs.opera.com/"
               target="_blank">
              <span class="hover-line__element">Jobs</span>
            </a>
          </li>
          <li>
            <a class="hf__link hover-line"
               href="https://investor.opera.com/"
               target="_blank">
              <span class="hover-line__element">Investors</span>
            </a>
          </li>
          <li>
            <a class="hf__link hover-line"
               href="/b2b">
              <span class="hover-line__element">Become a partner</span>
            </a>
          </li>
          <li>
            <a class="hf__link hover-line"
               href="/contact">
              <span class="hover-line__element">Contact us</span>
            </a>
          </li>
        </ul>
      </div>
    </div>
    <div class="col-xs-12 col-xl-3 col-xl-offset-1">
      <a class="hf--brand"
         href="/">
        
        <img data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/logo/logo-and-name.e807fcd39b53.png"
        alt="Opera" style="width: 13.2rem">
        
      </a>
      <p class="color--black-30 text-level-5 mt4">
        Innovate and inspire, uncover the unexpected, support open standards.
      </p>

      

      <p class="footer__follow-label">Follow Opera</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="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
                        <path d="M20 12C20 7.58172 16.4183 4 12 4C7.58172 4 4 7.58172 4 12C4 15.993 6.92547 19.3027 10.75 19.9028V14.3125H8.71875V12H10.75V10.2375C10.75 8.2325 11.9444 7.125 13.7717 7.125C14.6467 7.125 15.5625 7.28125 15.5625 7.28125V9.25H14.5538C13.56 9.25 13.25 9.86672 13.25 10.5V12H15.4688L15.1141 14.3125H13.25V19.9028C17.0745 19.3027 20 15.993 20 12Z" fill="black"/>
                    </svg>
                </a>
            </li>
            
                <li>
                    <a class="twitter"
                       href="https://twitter.com/opera"
                       rel="noopener nofollow"
                       target="_blank"
                       title="Opera - Twitter">
                        <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
                            <path d="M21 6.59819C20.3379 6.86913 19.6257 7.05239 18.8788 7.13423C19.6414 6.71257 20.2267 6.04538 20.5029 5.24908C19.7893 5.63973 18.9986 5.92313 18.1578 6.07588C17.4842 5.41378 16.5244 5 15.4616 5C13.4225 5 11.7687 6.52626 11.7687 8.40811C11.7687 8.67523 11.8014 8.93524 11.8648 9.18483C8.79565 9.04276 6.07436 7.68602 4.25282 5.62347C3.935 6.12672 3.75269 6.71257 3.75269 7.33705C3.75269 8.51918 4.40512 9.56278 5.39548 10.1738C4.79042 10.1563 4.2206 10.003 3.72294 9.74705C3.72267 9.76154 3.72267 9.77602 3.72267 9.79026C3.72267 11.4416 4.99614 12.8189 6.68521 13.1318C6.37565 13.2101 6.04875 13.2515 5.71248 13.2515C5.47397 13.2515 5.24291 13.2304 5.01763 13.1907C5.48747 14.5444 6.85101 15.5298 8.46736 15.5575C7.20325 16.4718 5.61113 17.0164 3.88047 17.0164C3.58303 17.0164 3.28835 17.0004 3 16.9687C4.63343 17.936 6.57505 18.5 8.66042 18.5C15.453 18.5 19.1677 13.3069 19.1677 8.80282C19.1677 8.65515 19.1641 8.50799 19.157 8.3621C19.8791 7.88173 20.5051 7.28164 21 6.59819Z" fill="black"/>
                        </svg>
                    </a>
                </li>
                <li>
                    <a class="youtube"
                       href="https://www.youtube.com/opera"
                       rel="noopener nofollow"
                       target="_blank"
                       title="Opera - Youtube">
                        <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
                            <path fill-rule="evenodd" clip-rule="evenodd" d="M18.2602 6.33881C18.9455 6.52131 19.4859 7.05553 19.6703 7.73326C20.0131 8.97116 19.9999 11.5515 19.9999 11.5515C19.9999 11.5515 19.9999 14.1187 19.6705 15.3567C19.4859 16.0343 18.9456 16.5687 18.2602 16.751C17.0081 17.0769 12 17.0769 12 17.0769C12 17.0769 7.00487 17.0769 5.73974 16.7381C5.05432 16.5556 4.51404 16.0213 4.32947 15.3437C4 14.1187 4 11.5385 4 11.5385C4 11.5385 4 8.97116 4.32947 7.73326C4.51391 7.05565 5.0675 6.50827 5.73962 6.32589C6.99169 6 11.9998 6 11.9998 6C11.9998 6 17.0081 6 18.2602 6.33881ZM14.57 11.5384L10.4053 13.9102V9.16668L14.57 11.5384Z" fill="black"/>
                        </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="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
                            <path fill-rule="evenodd" clip-rule="evenodd" d="M5 4C4.44772 4 4 4.44772 4 5V19C4 19.5523 4.44772 20 5 20H19C19.5523 20 20 19.5523 20 19V5C20 4.44772 19.5523 4 19 4H5ZM6.56756 6.90358C6.31045 7.14232 6.18188 7.44535 6.18188 7.81267C6.18188 8.17997 6.30677 8.48485 6.55654 8.72727C6.80631 8.96969 7.13321 9.09091 7.53726 9.09091H7.54828C7.96701 9.09091 8.30494 8.96969 8.56205 8.72727C8.81182 8.49218 8.93671 8.19834 8.93671 7.84573C8.93671 7.45637 8.80814 7.14049 8.55103 6.89807C8.30126 6.66298 7.97436 6.54545 7.57031 6.54545C7.15893 6.54545 6.82467 6.66482 6.56756 6.90358ZM6.32514 10.0937V17.4545H8.77142V10.0937H6.32514ZM12.5731 17.4545H10.1268C10.1415 15.236 10.1488 13.5133 10.1488 12.2865C10.1488 11.0597 10.1415 10.3287 10.1268 10.0937H12.5731V11.1405L12.562 11.1625H12.5731V11.1405C13.102 10.3251 13.8403 9.91735 14.7879 9.91735C15.6328 9.91735 16.3123 10.1983 16.8265 10.7603C17.3407 11.3223 17.5979 12.1469 17.5979 13.2342V17.4545H15.1516V13.5207C15.1516 12.4114 14.7402 11.8567 13.9174 11.8567C13.6015 11.8567 13.3389 11.9431 13.1295 12.1157C12.9202 12.2883 12.7641 12.4995 12.6612 12.7493C12.6025 12.8889 12.5731 13.0872 12.5731 13.3443V17.4545Z" fill="black"/>
                        </svg>
                    </a>
                </li>
            
            <li>
                <a class="instagram"
                   href="https://www.instagram.com/opera/"
                   rel="noopener nofollow"
                   target="_blank"
                   title="Opera - Instagram">
                    <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
                        <path fill-rule="evenodd" clip-rule="evenodd" d="M6.76005 4.42003C7.26863 4.22229 7.85024 4.08724 8.70197 4.04847C9.55564 4.00905 9.8277 4 12.001 4C14.1736 4 14.4463 4.00969 15.2993 4.04847C16.1504 4.08659 16.732 4.22229 17.2412 4.42003C17.7666 4.62423 18.2132 4.89822 18.6578 5.34281C19.1024 5.78805 19.3757 6.23393 19.5806 6.75994C19.7783 7.2685 19.9134 7.85008 19.9522 8.70178C19.991 9.55477 20 9.82746 20 12C20 14.1725 19.991 14.4446 19.9522 15.2982C19.9141 16.1499 19.7783 16.7315 19.5806 17.2401C19.3757 17.7661 19.1024 18.2126 18.6578 18.6572C18.2125 19.1018 17.7666 19.3751 17.2406 19.58C16.732 19.7777 16.1504 19.9128 15.2987 19.9515C14.4457 19.991 14.1736 20 12.0003 20C9.8277 20 9.55564 19.9903 8.70197 19.9515C7.85024 19.9128 7.26928 19.7777 6.76005 19.58C6.23337 19.3751 5.78747 19.1018 5.34287 18.6572C4.89761 18.2126 4.62426 17.7661 4.42005 17.2401C4.2223 16.7315 4.08724 16.1499 4.04847 15.2982C4.00905 14.4452 4 14.1725 4 12C4 9.82746 4.00905 9.55477 4.04847 8.70178C4.08724 7.85008 4.2223 7.2685 4.42005 6.75994C4.62426 6.23328 4.89826 5.7874 5.34287 5.34281C5.78812 4.89822 6.23402 4.62423 6.76005 4.42003ZM8.76812 18.5118C7.98812 18.4763 7.56419 18.3464 7.28244 18.2365C6.90892 18.0911 6.64267 17.9179 6.36221 17.6381C6.08239 17.3583 5.90855 17.0921 5.7638 16.7186C5.65394 16.4368 5.52405 16.0129 5.4885 15.233C5.44973 14.3897 5.44198 14.1364 5.44198 12C5.44198 9.86366 5.45038 9.61099 5.4885 8.76705C5.52405 7.98708 5.65459 7.56382 5.7638 7.28143C5.9092 6.90792 6.08239 6.64169 6.36221 6.36123C6.64202 6.08143 6.90827 5.9076 7.28244 5.76285C7.56419 5.65299 7.98812 5.52311 8.76812 5.48757C9.61145 5.44879 9.86477 5.44104 12.0006 5.44104C14.137 5.44104 14.3897 5.44944 15.2336 5.48757C16.0136 5.52311 16.4369 5.65364 16.7193 5.76285C17.0929 5.9076 17.3591 6.08143 17.6396 6.36123C17.9194 6.64104 18.0926 6.90792 18.238 7.28143C18.3478 7.56317 18.4777 7.98708 18.5133 8.76705C18.552 9.61099 18.5598 9.86366 18.5598 12C18.5598 14.1357 18.552 14.389 18.5133 15.233C18.4777 16.0129 18.3472 16.4368 18.238 16.7186C18.0926 17.0921 17.9194 17.3583 17.6396 17.6381C17.3597 17.9179 17.0929 18.0911 16.7193 18.2365C16.4376 18.3464 16.0136 18.4763 15.2336 18.5118C14.3903 18.5506 14.137 18.5583 12.0006 18.5583C9.86477 18.5583 9.61145 18.5506 8.76812 18.5118ZM16.2714 8.68948C15.7409 8.68948 15.3111 8.25911 15.3111 7.72922C15.3111 7.19934 15.7409 6.76961 16.2714 6.76961C16.802 6.76961 17.2317 7.19934 17.2317 7.72922C17.2317 8.25911 16.8013 8.68948 16.2714 8.68948ZM7.89201 12C7.89201 14.2688 9.73118 16.1079 12.0001 16.1079C14.269 16.1079 16.1082 14.2688 16.1082 12C16.1082 9.73119 14.269 7.89209 12.0001 7.89209C9.73118 7.89209 7.89201 9.73119 7.89201 12ZM9.33398 12C9.33398 10.5273 10.5276 9.33313 12.0003 9.33313C13.4731 9.33313 14.6673 10.5273 14.6673 12C14.6673 13.4727 13.4731 14.6669 12.0003 14.6669C10.5276 14.6669 9.33398 13.4727 9.33398 12Z" fill="black"/>
                    </svg>
                </a>
            </li>
        
    </ul>
</div>

      </div>
    </div>
  </div>
</div>


<div class="footer__bottom">
    <div class="footer__company-box center-xs start-md color--black-30">
        <p class="footer__company-box-p">&copy; 1995-2022 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 type="hidden" name="csrfmiddlewaretoken" value="k4hxXh6GinPgwetqS9ossYcvJfTZvxYPMnuU9EMNJuHVXi9U2JgNfXL2gfG2QHWi">
        <input name="next"
               type="hidden"
               value="https://www.opera.com/terms"/>
        <select id="footer__lang-selector"
                class="footer__lang-selector"
                name="language"
                onchange="this.form.submit()">
            
            
                <option value="en"
                        selected="selected">
                    English
                </option>
            
                <option value="ar">
                    العربيّة
                </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="no">
                    Norsk
                </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__basic cookie-consent__inner">
                <p class="cookie-consent__head">
                    <span class="text-level-3"><b>Cookies</b></span>
                </p>
                <div class="cookie-consent__body">
                    <p>
                        
                        
                        We use cookies to improve your experience on our website. By clicking Accept cookies, you agree to the use of cookies for marketing and analytics purposes. Further information can be found in our <a rel="nofollow" href="/privacy">Privacy Statement </a> and <a rel="nofollow" href="/privacy/cookies">Cookies Policy</a>.
                    </p>
                    <div class="text-level-5">
                        <span class="btn width-100 btn--primary cookie-consent__btn cookie-basic-consent__btn">
                            Accept cookies
                        </span>
                        <span class="btn btn--light width-100 cookie-consent__btn manage-cookies__btn">
                            Manage cookies
                        </span>
                    </div>
                </div>
            </div>

            <div class="cookie-consent__advanced cookie-consent__inner text-align--left">

                    <div class="popup">
                        <div class="cookie-consent__head">
                            <div class="row middle-xs">
                            <span class="col-xs-8">
                                <span class="text-level-3"><b>Our use of cookies</b></span>
                            </span>
                                <span class="col-xs-4 end-xs block--relative">
                                <span class="close cookie-consent__advanced-close"></span>
                            </span>
                            </div>
                        </div>
                        <div class="cookie-consent__body">
                            <h4>Necessary cookies</h4>
                            <p>
                                These cookies are used for website functionality, such as storing your settings and preferences. You can disable these in your browser settings, but it may affect website functionality.
                            </p>

                            <div class="row middle-xs">
                                <div class="col-xs-8">
                                    <h4>Marketing & Analytics cookies</h4>
                                </div>
                                <div class="col-xs-4 end-xs">
                                    <div class="cookie-consent__switch active marketing_option_switch"></div>
                                </div>
                            </div>
                            <p>
                                We recommend accepting these cookies, which include third-party cookies, for the improvement of our products and everyone’s experience. These cookies contribute to statistics and the measurement of marketing campaigns.
                            </p>
                        </div>
                        <div class="cookie-consent__footer text-level-5 text-align--center">
                        <span class="btn btn--black cookie-consent__btn cookie-selection__btn">
                            Accept selection
                        </span>
                        </div>
                    </div>
            </div>
</div>


    
    
        
        <script type="text/javascript" src="https://cdn-production-opera-website.operacdn.com/staticfiles/CACHE/js/output.b1decaef34db.js" defer></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>