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
|
<!DOCTYPE html>
<html lang="en" class="large-screen-ready v2023 " data-source="cms">
<head>
<link rel="dns-prefetch" href="//www.googletagmanager.com">
<link rel="dns-prefetch" href="//cdn-production-opera-website.operacdn.com">
<link rel="dns-prefetch" href="//connect.facebook.net">
<link rel="dns-prefetch" href="//www.clarity.ms">
<link rel="dns-prefetch" href="//bat.bing.com">
<link rel="preconnect" href="//www.googletagmanager.com" crossorigin>
<link rel="preconnect" href="//cdn-production-opera-website.operacdn.com" crossorigin>
<link rel="preconnect" href="//connect.facebook.net" crossorigin>
<link rel="preconnect" href="//www.clarity.ms" crossorigin>
<link rel="preconnect" href="//bat.bing.com" crossorigin>
<link rel="preload" href="https://cdn-production-opera-website.operacdn.com/staticfiles/b21a8376d942833de6fc.91f7ad7162e8.woff2" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="https://cdn-production-opera-website.operacdn.com/staticfiles/067e5dad13c9184c2ba1.c0d25ced7cb5.woff2" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="https://cdn-production-opera-website.operacdn.com/staticfiles/runtime-opera.859fb6b88ebd.js" as="script">
<link rel="preload" href="https://cdn-production-opera-website.operacdn.com/staticfiles/vendors-opera.50c621ac0d9e.js" as="script">
<link rel="preload" href="https://cdn-production-opera-website.operacdn.com/staticfiles/main.35e846c97cdc.js" as="script">
<!-- Google Tag Manager dataLayer init, Default consent states -->
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('consent', 'default', {
'ad_storage': '',
'ad_user_data': '',
'ad_personalization': '',
'analytics_storage': ''
});
</script>
<!-- Default MS UET consent state -->
<script>
window.uetq = window.uetq || [];
window.uetq.push('consent', 'default', {
'ad_storage': ''
});
</script>
<script>
let isOfa;
let isOfaPromise = navigator.userAgentData.getHighEntropyValues([
"brands",
"platform",
]);
isOfaPromise.then(ua => {
isOfa = JSON.stringify(ua.brands).includes('OperaMobile') && ua.platform.includes('Android');
if (!isOfa) {
(function (w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({
'gtm.start':
new Date().getTime(), event: 'gtm.js'
});
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : '';
j.async = true;
j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-PRBZ42F');
}
})
</script>
<meta charset="UTF-8">
<meta name="viewport"
content="initial-scale=1, width=device-width">
<title>Terms Of Service</title>
<meta name="description" content="Terms Of Service">
<meta name="theme-color" content="#FF1B2D">
<link rel="apple-touch-icon" href="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/favicon/opera/apple-touch-icon.00d9278d6de6.png">
<link rel="apple-touch-icon" sizes="180x180" href="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/favicon/opera/apple-touch-icon-180x180.00d9278d6de6.png">
<link rel="apple-touch-icon" sizes="167x167" href="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/favicon/opera/apple-touch-icon-167x167.51b4e69b6ca8.png">
<link rel="apple-touch-icon" sizes="152x152" href="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/favicon/opera/apple-touch-icon-152x152.9015ccf59125.png">
<link rel="apple-touch-icon" sizes="120x120" href="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/favicon/opera/apple-touch-icon-120x120.83ce850a6a9a.png">
<link rel="apple-touch-icon" sizes="76x76" href="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/favicon/opera/apple-touch-icon-76x76.006d0edce766.png">
<link rel="apple-touch-icon" sizes="57x57" href="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/favicon/opera/apple-touch-icon-57x57.fb71e1144d70.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/favicon/opera/favicon-32x32.a769c19798b2.png">
<link rel="icon" type="image/png" sizes="16x16" href="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/favicon/opera/favicon-16x16.981be286c249.png">
<link rel="manifest" href="/webmanifest">
<link rel="mask-icon" href="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/favicon/opera/safari-pinned-tab.2ff3aa479bec.svg" color="#ff0a21">
<link rel="shortcut icon" href="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/favicon/opera/favicon.90b13d0c7b36.ico">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-config" content="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/favicon/opera/browserconfig.f5848516ccd3.xml">
<meta name="theme-color" content="#ffffff">
<meta name="robots" content="noindex,nofollow" />
<meta property="og:title" content="Terms Of Service">
<meta property="og:image" content="">
<meta property="og:description" content="Terms Of Service">
<meta property="og:type" content="website">
<meta property="og:url" content="https://www.opera.com/legal/terms">
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@opera">
<meta name="twitter:title" content="Terms Of Service">
<meta name="twitter:description" content="Terms Of Service">
<meta name="twitter:image" content="">
<meta property="vk:image" content="">
<style>.wrapper{box-sizing:border-box;margin:0 auto;max-width:136.7rem}.container-fluid{margin-left:auto;margin-right:auto;padding-left:2rem;padding-right:2rem}@media only screen and (min-width:1224px){.container-fluid{padding-left:9.3rem;padding-right:9.3rem}}.row{box-sizing:border-box;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;margin-left:-1rem;margin-right:-1rem;-webkit-box-flex:0,1,auto;-moz-box-flex:0,1,auto;-webkit-flex:0,1,auto;-ms-flex:0,1,auto;flex:0,1,auto;-webkit-flex-direction:row;-moz-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;-moz-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.row.reverse{-webkit-flex-direction:row-reverse;-moz-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.col.reverse{-webkit-flex-direction:column-reverse;-moz-flex-direction:column-reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.col-xs{-webkit-flex-basis:auto;-moz-flex-basis:auto;-ms-flex-basis:auto;flex-basis:auto}.col-xs,.col-xs-1{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-1{-webkit-flex-basis:8.3333333333%;-moz-flex-basis:8.3333333333%;-ms-flex-basis:8.3333333333%;flex-basis:8.3333333333%;max-width:8.3333333333%}.col-xs-2{-webkit-flex-basis:16.6666666667%;-moz-flex-basis:16.6666666667%;-ms-flex-basis:16.6666666667%;flex-basis:16.6666666667%;max-width:16.6666666667%}.col-xs-2,.col-xs-3{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-3{-webkit-flex-basis:25%;-moz-flex-basis:25%;-ms-flex-basis:25%;flex-basis:25%;max-width:25%}.col-xs-4{-webkit-flex-basis:33.3333333333%;-moz-flex-basis:33.3333333333%;-ms-flex-basis:33.3333333333%;flex-basis:33.3333333333%;max-width:33.3333333333%}.col-xs-4,.col-xs-5{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-5{-webkit-flex-basis:41.6666666667%;-moz-flex-basis:41.6666666667%;-ms-flex-basis:41.6666666667%;flex-basis:41.6666666667%;max-width:41.6666666667%}.col-xs-6{-webkit-flex-basis:50%;-moz-flex-basis:50%;-ms-flex-basis:50%;flex-basis:50%;max-width:50%}.col-xs-6,.col-xs-7{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-7{-webkit-flex-basis:58.3333333333%;-moz-flex-basis:58.3333333333%;-ms-flex-basis:58.3333333333%;flex-basis:58.3333333333%;max-width:58.3333333333%}.col-xs-8{-webkit-flex-basis:66.6666666667%;-moz-flex-basis:66.6666666667%;-ms-flex-basis:66.6666666667%;flex-basis:66.6666666667%;max-width:66.6666666667%}.col-xs-8,.col-xs-9{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-9{-webkit-flex-basis:75%;-moz-flex-basis:75%;-ms-flex-basis:75%;flex-basis:75%;max-width:75%}.col-xs-10{-webkit-flex-basis:83.3333333333%;-moz-flex-basis:83.3333333333%;-ms-flex-basis:83.3333333333%;flex-basis:83.3333333333%;max-width:83.3333333333%}.col-xs-10,.col-xs-11{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-11{-webkit-flex-basis:91.6666666667%;-moz-flex-basis:91.6666666667%;-ms-flex-basis:91.6666666667%;flex-basis:91.6666666667%;max-width:91.6666666667%}.col-xs-12{-webkit-flex-basis:100%;-moz-flex-basis:100%;-ms-flex-basis:100%;flex-basis:100%;max-width:100%}.col-xs-12,.col-xs-offset-0{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-offset-0{margin-left:0}.col-xs-offset-1{margin-left:8.3333333333%}.col-xs-offset-1,.col-xs-offset-2{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-offset-2{margin-left:16.6666666667%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-3,.col-xs-offset-4{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-offset-4{margin-left:33.3333333333%}.col-xs-offset-5{margin-left:41.6666666667%}.col-xs-offset-5,.col-xs-offset-6{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-offset-6{margin-left:50%}.col-xs-offset-7{margin-left:58.3333333333%}.col-xs-offset-7,.col-xs-offset-8{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-offset-8{margin-left:66.6666666667%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-9,.col-xs-offset-10{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-offset-10{margin-left:83.3333333333%}.col-xs-offset-11{margin-left:91.6666666667%}.col-xs-offset-11,.col-xs-offset-12{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-offset-12{margin-left:100%}.col-xs{-webkit-flex-basis:0;-moz-flex-basis:0;-ms-flex-basis:0;flex-basis:0;-webkit-flex-grow:1;-moz-flex-grow:1;-ms-flex-grow:1;flex-grow:1;max-width:100%}.start-xs{-webkit-justify-content:flex-start;-moz-justify-content:flex-start;-ms-justify-content:flex-start;justify-content:flex-start;text-align:left;-ms-flex-pack:flex-start}.center-xs{-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;text-align:center;-ms-flex-pack:center}.end-xs{-webkit-justify-content:flex-end;-moz-justify-content:flex-end;-ms-justify-content:flex-end;justify-content:flex-end;text-align:right;-ms-flex-pack:flex-end}.top-xs{-webkit-align-items:flex-start;-moz-align-items:flex-start;-ms-align-items:flex-start;align-items:flex-start}.middle-xs{-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;align-items:center}.bottom-xs{-webkit-align-items:flex-end;-moz-align-items:flex-end;-ms-align-items:flex-end;align-items:flex-end}.around-xs{-webkit-justify-content:space-around;-moz-justify-content:space-around;-ms-justify-content:space-around;justify-content:space-around;-ms-flex-pack:space-around}.between-xs{-webkit-justify-content:space-between;-moz-justify-content:space-between;-ms-justify-content:space-between;justify-content:space-between;-ms-flex-pack:space-between}.first-xs{order:-1}.last-xs{order:1}@media only screen and (min-width:320px){.container{width:32rem}.col-xs{-webkit-flex-basis:auto;-moz-flex-basis:auto;-ms-flex-basis:auto;flex-basis:auto}.col-xs,.col-xs-1{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-1{-webkit-flex-basis:8.3333333333%;-moz-flex-basis:8.3333333333%;-ms-flex-basis:8.3333333333%;flex-basis:8.3333333333%;max-width:8.3333333333%}.col-xs-2{-webkit-flex-basis:16.6666666667%;-moz-flex-basis:16.6666666667%;-ms-flex-basis:16.6666666667%;flex-basis:16.6666666667%;max-width:16.6666666667%}.col-xs-2,.col-xs-3{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-3{-webkit-flex-basis:25%;-moz-flex-basis:25%;-ms-flex-basis:25%;flex-basis:25%;max-width:25%}.col-xs-4{-webkit-flex-basis:33.3333333333%;-moz-flex-basis:33.3333333333%;-ms-flex-basis:33.3333333333%;flex-basis:33.3333333333%;max-width:33.3333333333%}.col-xs-4,.col-xs-5{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-5{-webkit-flex-basis:41.6666666667%;-moz-flex-basis:41.6666666667%;-ms-flex-basis:41.6666666667%;flex-basis:41.6666666667%;max-width:41.6666666667%}.col-xs-6{-webkit-flex-basis:50%;-moz-flex-basis:50%;-ms-flex-basis:50%;flex-basis:50%;max-width:50%}.col-xs-6,.col-xs-7{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-7{-webkit-flex-basis:58.3333333333%;-moz-flex-basis:58.3333333333%;-ms-flex-basis:58.3333333333%;flex-basis:58.3333333333%;max-width:58.3333333333%}.col-xs-8{-webkit-flex-basis:66.6666666667%;-moz-flex-basis:66.6666666667%;-ms-flex-basis:66.6666666667%;flex-basis:66.6666666667%;max-width:66.6666666667%}.col-xs-8,.col-xs-9{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-9{-webkit-flex-basis:75%;-moz-flex-basis:75%;-ms-flex-basis:75%;flex-basis:75%;max-width:75%}.col-xs-10{-webkit-flex-basis:83.3333333333%;-moz-flex-basis:83.3333333333%;-ms-flex-basis:83.3333333333%;flex-basis:83.3333333333%;max-width:83.3333333333%}.col-xs-10,.col-xs-11{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-11{-webkit-flex-basis:91.6666666667%;-moz-flex-basis:91.6666666667%;-ms-flex-basis:91.6666666667%;flex-basis:91.6666666667%;max-width:91.6666666667%}.col-xs-12{-webkit-flex-basis:100%;-moz-flex-basis:100%;-ms-flex-basis:100%;flex-basis:100%;max-width:100%}.col-xs-12,.col-xs-offset-0{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-offset-0{margin-left:0}.col-xs-offset-1{margin-left:8.3333333333%}.col-xs-offset-1,.col-xs-offset-2{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-offset-2{margin-left:16.6666666667%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-3,.col-xs-offset-4{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-offset-4{margin-left:33.3333333333%}.col-xs-offset-5{margin-left:41.6666666667%}.col-xs-offset-5,.col-xs-offset-6{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-offset-6{margin-left:50%}.col-xs-offset-7{margin-left:58.3333333333%}.col-xs-offset-7,.col-xs-offset-8{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-offset-8{margin-left:66.6666666667%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-9,.col-xs-offset-10{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-offset-10{margin-left:83.3333333333%}.col-xs-offset-11{margin-left:91.6666666667%}.col-xs-offset-11,.col-xs-offset-12{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xs-offset-12{margin-left:100%}.col-xs{-webkit-flex-basis:0;-moz-flex-basis:0;-ms-flex-basis:0;flex-basis:0;-webkit-flex-grow:1;-moz-flex-grow:1;-ms-flex-grow:1;flex-grow:1;max-width:100%}.start-xs{-webkit-justify-content:flex-start;-moz-justify-content:flex-start;-ms-justify-content:flex-start;justify-content:flex-start;text-align:left;-ms-flex-pack:flex-start}.center-xs{-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;text-align:center;-ms-flex-pack:center}.end-xs{-webkit-justify-content:flex-end;-moz-justify-content:flex-end;-ms-justify-content:flex-end;justify-content:flex-end;text-align:right;-ms-flex-pack:flex-end}.top-xs{-webkit-align-items:flex-start;-moz-align-items:flex-start;-ms-align-items:flex-start;align-items:flex-start}.middle-xs{-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;align-items:center}.bottom-xs{-webkit-align-items:flex-end;-moz-align-items:flex-end;-ms-align-items:flex-end;align-items:flex-end}.around-xs{-webkit-justify-content:space-around;-moz-justify-content:space-around;-ms-justify-content:space-around;justify-content:space-around;-ms-flex-pack:space-around}.between-xs{-webkit-justify-content:space-between;-moz-justify-content:space-between;-ms-justify-content:space-between;justify-content:space-between;-ms-flex-pack:space-between}.first-xs{order:-1}.last-xs{order:1}}@media only screen and (min-width:640px){.container{width:57rem}.col-sm{-webkit-flex-basis:auto;-moz-flex-basis:auto;-ms-flex-basis:auto;flex-basis:auto}.col-sm,.col-sm-1{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-sm-1{-webkit-flex-basis:8.3333333333%;-moz-flex-basis:8.3333333333%;-ms-flex-basis:8.3333333333%;flex-basis:8.3333333333%;max-width:8.3333333333%}.col-sm-2{-webkit-flex-basis:16.6666666667%;-moz-flex-basis:16.6666666667%;-ms-flex-basis:16.6666666667%;flex-basis:16.6666666667%;max-width:16.6666666667%}.col-sm-2,.col-sm-3{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-sm-3{-webkit-flex-basis:25%;-moz-flex-basis:25%;-ms-flex-basis:25%;flex-basis:25%;max-width:25%}.col-sm-4{-webkit-flex-basis:33.3333333333%;-moz-flex-basis:33.3333333333%;-ms-flex-basis:33.3333333333%;flex-basis:33.3333333333%;max-width:33.3333333333%}.col-sm-4,.col-sm-5{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-sm-5{-webkit-flex-basis:41.6666666667%;-moz-flex-basis:41.6666666667%;-ms-flex-basis:41.6666666667%;flex-basis:41.6666666667%;max-width:41.6666666667%}.col-sm-6{-webkit-flex-basis:50%;-moz-flex-basis:50%;-ms-flex-basis:50%;flex-basis:50%;max-width:50%}.col-sm-6,.col-sm-7{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-sm-7{-webkit-flex-basis:58.3333333333%;-moz-flex-basis:58.3333333333%;-ms-flex-basis:58.3333333333%;flex-basis:58.3333333333%;max-width:58.3333333333%}.col-sm-8{-webkit-flex-basis:66.6666666667%;-moz-flex-basis:66.6666666667%;-ms-flex-basis:66.6666666667%;flex-basis:66.6666666667%;max-width:66.6666666667%}.col-sm-8,.col-sm-9{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-sm-9{-webkit-flex-basis:75%;-moz-flex-basis:75%;-ms-flex-basis:75%;flex-basis:75%;max-width:75%}.col-sm-10{-webkit-flex-basis:83.3333333333%;-moz-flex-basis:83.3333333333%;-ms-flex-basis:83.3333333333%;flex-basis:83.3333333333%;max-width:83.3333333333%}.col-sm-10,.col-sm-11{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-sm-11{-webkit-flex-basis:91.6666666667%;-moz-flex-basis:91.6666666667%;-ms-flex-basis:91.6666666667%;flex-basis:91.6666666667%;max-width:91.6666666667%}.col-sm-12{-webkit-flex-basis:100%;-moz-flex-basis:100%;-ms-flex-basis:100%;flex-basis:100%;max-width:100%}.col-sm-12,.col-sm-offset-0{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-sm-offset-0{margin-left:0}.col-sm-offset-1{margin-left:8.3333333333%}.col-sm-offset-1,.col-sm-offset-2{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-sm-offset-2{margin-left:16.6666666667%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-3,.col-sm-offset-4{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-sm-offset-4{margin-left:33.3333333333%}.col-sm-offset-5{margin-left:41.6666666667%}.col-sm-offset-5,.col-sm-offset-6{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-sm-offset-6{margin-left:50%}.col-sm-offset-7{margin-left:58.3333333333%}.col-sm-offset-7,.col-sm-offset-8{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-sm-offset-8{margin-left:66.6666666667%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-9,.col-sm-offset-10{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-sm-offset-10{margin-left:83.3333333333%}.col-sm-offset-11{margin-left:91.6666666667%}.col-sm-offset-11,.col-sm-offset-12{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-sm-offset-12{margin-left:100%}.col-sm{-webkit-flex-basis:0;-moz-flex-basis:0;-ms-flex-basis:0;flex-basis:0;-webkit-flex-grow:1;-moz-flex-grow:1;-ms-flex-grow:1;flex-grow:1;max-width:100%}.start-sm{-webkit-justify-content:flex-start;-moz-justify-content:flex-start;-ms-justify-content:flex-start;justify-content:flex-start;text-align:left;-ms-flex-pack:flex-start}.center-sm{-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;text-align:center;-ms-flex-pack:center}.end-sm{-webkit-justify-content:flex-end;-moz-justify-content:flex-end;-ms-justify-content:flex-end;justify-content:flex-end;text-align:right;-ms-flex-pack:flex-end}.top-sm{-webkit-align-items:flex-start;-moz-align-items:flex-start;-ms-align-items:flex-start;align-items:flex-start}.middle-sm{-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;align-items:center}.bottom-sm{-webkit-align-items:flex-end;-moz-align-items:flex-end;-ms-align-items:flex-end;align-items:flex-end}.around-sm{-webkit-justify-content:space-around;-moz-justify-content:space-around;-ms-justify-content:space-around;justify-content:space-around;-ms-flex-pack:space-around}.between-sm{-webkit-justify-content:space-between;-moz-justify-content:space-between;-ms-justify-content:space-between;justify-content:space-between;-ms-flex-pack:space-between}.first-sm{order:-1}.last-sm{order:1}}@media only screen and (min-width:768px){.container{width:64rem}.col-md{-webkit-flex-basis:auto;-moz-flex-basis:auto;-ms-flex-basis:auto;flex-basis:auto}.col-md,.col-md-1{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-md-1{-webkit-flex-basis:8.3333333333%;-moz-flex-basis:8.3333333333%;-ms-flex-basis:8.3333333333%;flex-basis:8.3333333333%;max-width:8.3333333333%}.col-md-2{-webkit-flex-basis:16.6666666667%;-moz-flex-basis:16.6666666667%;-ms-flex-basis:16.6666666667%;flex-basis:16.6666666667%;max-width:16.6666666667%}.col-md-2,.col-md-3{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-md-3{-webkit-flex-basis:25%;-moz-flex-basis:25%;-ms-flex-basis:25%;flex-basis:25%;max-width:25%}.col-md-4{-webkit-flex-basis:33.3333333333%;-moz-flex-basis:33.3333333333%;-ms-flex-basis:33.3333333333%;flex-basis:33.3333333333%;max-width:33.3333333333%}.col-md-4,.col-md-5{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-md-5{-webkit-flex-basis:41.6666666667%;-moz-flex-basis:41.6666666667%;-ms-flex-basis:41.6666666667%;flex-basis:41.6666666667%;max-width:41.6666666667%}.col-md-6{-webkit-flex-basis:50%;-moz-flex-basis:50%;-ms-flex-basis:50%;flex-basis:50%;max-width:50%}.col-md-6,.col-md-7{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-md-7{-webkit-flex-basis:58.3333333333%;-moz-flex-basis:58.3333333333%;-ms-flex-basis:58.3333333333%;flex-basis:58.3333333333%;max-width:58.3333333333%}.col-md-8{-webkit-flex-basis:66.6666666667%;-moz-flex-basis:66.6666666667%;-ms-flex-basis:66.6666666667%;flex-basis:66.6666666667%;max-width:66.6666666667%}.col-md-8,.col-md-9{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-md-9{-webkit-flex-basis:75%;-moz-flex-basis:75%;-ms-flex-basis:75%;flex-basis:75%;max-width:75%}.col-md-10{-webkit-flex-basis:83.3333333333%;-moz-flex-basis:83.3333333333%;-ms-flex-basis:83.3333333333%;flex-basis:83.3333333333%;max-width:83.3333333333%}.col-md-10,.col-md-11{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-md-11{-webkit-flex-basis:91.6666666667%;-moz-flex-basis:91.6666666667%;-ms-flex-basis:91.6666666667%;flex-basis:91.6666666667%;max-width:91.6666666667%}.col-md-12{-webkit-flex-basis:100%;-moz-flex-basis:100%;-ms-flex-basis:100%;flex-basis:100%;max-width:100%}.col-md-12,.col-md-offset-0{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-md-offset-0{margin-left:0}.col-md-offset-1{margin-left:8.3333333333%}.col-md-offset-1,.col-md-offset-2{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-md-offset-2{margin-left:16.6666666667%}.col-md-offset-3{margin-left:25%}.col-md-offset-3,.col-md-offset-4{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-md-offset-4{margin-left:33.3333333333%}.col-md-offset-5{margin-left:41.6666666667%}.col-md-offset-5,.col-md-offset-6{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-md-offset-6{margin-left:50%}.col-md-offset-7{margin-left:58.3333333333%}.col-md-offset-7,.col-md-offset-8{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-md-offset-8{margin-left:66.6666666667%}.col-md-offset-9{margin-left:75%}.col-md-offset-9,.col-md-offset-10{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-md-offset-10{margin-left:83.3333333333%}.col-md-offset-11{margin-left:91.6666666667%}.col-md-offset-11,.col-md-offset-12{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-md-offset-12{margin-left:100%}.col-md{-webkit-flex-basis:0;-moz-flex-basis:0;-ms-flex-basis:0;flex-basis:0;-webkit-flex-grow:1;-moz-flex-grow:1;-ms-flex-grow:1;flex-grow:1;max-width:100%}.start-md{-webkit-justify-content:flex-start;-moz-justify-content:flex-start;-ms-justify-content:flex-start;justify-content:flex-start;text-align:left;-ms-flex-pack:flex-start}.center-md{-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;text-align:center;-ms-flex-pack:center}.end-md{-webkit-justify-content:flex-end;-moz-justify-content:flex-end;-ms-justify-content:flex-end;justify-content:flex-end;text-align:right;-ms-flex-pack:flex-end}.top-md{-webkit-align-items:flex-start;-moz-align-items:flex-start;-ms-align-items:flex-start;align-items:flex-start}.middle-md{-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;align-items:center}.bottom-md{-webkit-align-items:flex-end;-moz-align-items:flex-end;-ms-align-items:flex-end;align-items:flex-end}.around-md{-webkit-justify-content:space-around;-moz-justify-content:space-around;-ms-justify-content:space-around;justify-content:space-around;-ms-flex-pack:space-around}.between-md{-webkit-justify-content:space-between;-moz-justify-content:space-between;-ms-justify-content:space-between;justify-content:space-between;-ms-flex-pack:space-between}.first-md{order:-1}.last-md{order:1}}@media only screen and (min-width:1024px){.container{width:80rem}.col-lg{-webkit-flex-basis:auto;-moz-flex-basis:auto;-ms-flex-basis:auto;flex-basis:auto}.col-lg,.col-lg-1{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-lg-1{-webkit-flex-basis:8.3333333333%;-moz-flex-basis:8.3333333333%;-ms-flex-basis:8.3333333333%;flex-basis:8.3333333333%;max-width:8.3333333333%}.col-lg-2{-webkit-flex-basis:16.6666666667%;-moz-flex-basis:16.6666666667%;-ms-flex-basis:16.6666666667%;flex-basis:16.6666666667%;max-width:16.6666666667%}.col-lg-2,.col-lg-3{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-lg-3{-webkit-flex-basis:25%;-moz-flex-basis:25%;-ms-flex-basis:25%;flex-basis:25%;max-width:25%}.col-lg-4{-webkit-flex-basis:33.3333333333%;-moz-flex-basis:33.3333333333%;-ms-flex-basis:33.3333333333%;flex-basis:33.3333333333%;max-width:33.3333333333%}.col-lg-4,.col-lg-5{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-lg-5{-webkit-flex-basis:41.6666666667%;-moz-flex-basis:41.6666666667%;-ms-flex-basis:41.6666666667%;flex-basis:41.6666666667%;max-width:41.6666666667%}.col-lg-6{-webkit-flex-basis:50%;-moz-flex-basis:50%;-ms-flex-basis:50%;flex-basis:50%;max-width:50%}.col-lg-6,.col-lg-7{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-lg-7{-webkit-flex-basis:58.3333333333%;-moz-flex-basis:58.3333333333%;-ms-flex-basis:58.3333333333%;flex-basis:58.3333333333%;max-width:58.3333333333%}.col-lg-8{-webkit-flex-basis:66.6666666667%;-moz-flex-basis:66.6666666667%;-ms-flex-basis:66.6666666667%;flex-basis:66.6666666667%;max-width:66.6666666667%}.col-lg-8,.col-lg-9{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-lg-9{-webkit-flex-basis:75%;-moz-flex-basis:75%;-ms-flex-basis:75%;flex-basis:75%;max-width:75%}.col-lg-10{-webkit-flex-basis:83.3333333333%;-moz-flex-basis:83.3333333333%;-ms-flex-basis:83.3333333333%;flex-basis:83.3333333333%;max-width:83.3333333333%}.col-lg-10,.col-lg-11{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-lg-11{-webkit-flex-basis:91.6666666667%;-moz-flex-basis:91.6666666667%;-ms-flex-basis:91.6666666667%;flex-basis:91.6666666667%;max-width:91.6666666667%}.col-lg-12{-webkit-flex-basis:100%;-moz-flex-basis:100%;-ms-flex-basis:100%;flex-basis:100%;max-width:100%}.col-lg-12,.col-lg-offset-0{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-lg-offset-0{margin-left:0}.col-lg-offset-1{margin-left:8.3333333333%}.col-lg-offset-1,.col-lg-offset-2{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-lg-offset-2{margin-left:16.6666666667%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-3,.col-lg-offset-4{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-lg-offset-4{margin-left:33.3333333333%}.col-lg-offset-5{margin-left:41.6666666667%}.col-lg-offset-5,.col-lg-offset-6{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-lg-offset-6{margin-left:50%}.col-lg-offset-7{margin-left:58.3333333333%}.col-lg-offset-7,.col-lg-offset-8{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-lg-offset-8{margin-left:66.6666666667%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-9,.col-lg-offset-10{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-lg-offset-10{margin-left:83.3333333333%}.col-lg-offset-11{margin-left:91.6666666667%}.col-lg-offset-11,.col-lg-offset-12{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-lg-offset-12{margin-left:100%}.col-lg{-webkit-flex-basis:0;-moz-flex-basis:0;-ms-flex-basis:0;flex-basis:0;-webkit-flex-grow:1;-moz-flex-grow:1;-ms-flex-grow:1;flex-grow:1;max-width:100%}.start-lg{-webkit-justify-content:flex-start;-moz-justify-content:flex-start;-ms-justify-content:flex-start;justify-content:flex-start;text-align:left;-ms-flex-pack:flex-start}.center-lg{-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;text-align:center;-ms-flex-pack:center}.end-lg{-webkit-justify-content:flex-end;-moz-justify-content:flex-end;-ms-justify-content:flex-end;justify-content:flex-end;text-align:right;-ms-flex-pack:flex-end}.top-lg{-webkit-align-items:flex-start;-moz-align-items:flex-start;-ms-align-items:flex-start;align-items:flex-start}.middle-lg{-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;align-items:center}.bottom-lg{-webkit-align-items:flex-end;-moz-align-items:flex-end;-ms-align-items:flex-end;align-items:flex-end}.around-lg{-webkit-justify-content:space-around;-moz-justify-content:space-around;-ms-justify-content:space-around;justify-content:space-around;-ms-flex-pack:space-around}.between-lg{-webkit-justify-content:space-between;-moz-justify-content:space-between;-ms-justify-content:space-between;justify-content:space-between;-ms-flex-pack:space-between}.first-lg{order:-1}.last-lg{order:1}}@media only screen and (min-width:1224px){.container{width:106.4rem}.col-xl{-webkit-flex-basis:auto;-moz-flex-basis:auto;-ms-flex-basis:auto;flex-basis:auto}.col-xl,.col-xl-1{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xl-1{-webkit-flex-basis:8.3333333333%;-moz-flex-basis:8.3333333333%;-ms-flex-basis:8.3333333333%;flex-basis:8.3333333333%;max-width:8.3333333333%}.col-xl-2{-webkit-flex-basis:16.6666666667%;-moz-flex-basis:16.6666666667%;-ms-flex-basis:16.6666666667%;flex-basis:16.6666666667%;max-width:16.6666666667%}.col-xl-2,.col-xl-3{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xl-3{-webkit-flex-basis:25%;-moz-flex-basis:25%;-ms-flex-basis:25%;flex-basis:25%;max-width:25%}.col-xl-4{-webkit-flex-basis:33.3333333333%;-moz-flex-basis:33.3333333333%;-ms-flex-basis:33.3333333333%;flex-basis:33.3333333333%;max-width:33.3333333333%}.col-xl-4,.col-xl-5{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xl-5{-webkit-flex-basis:41.6666666667%;-moz-flex-basis:41.6666666667%;-ms-flex-basis:41.6666666667%;flex-basis:41.6666666667%;max-width:41.6666666667%}.col-xl-6{-webkit-flex-basis:50%;-moz-flex-basis:50%;-ms-flex-basis:50%;flex-basis:50%;max-width:50%}.col-xl-6,.col-xl-7{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xl-7{-webkit-flex-basis:58.3333333333%;-moz-flex-basis:58.3333333333%;-ms-flex-basis:58.3333333333%;flex-basis:58.3333333333%;max-width:58.3333333333%}.col-xl-8{-webkit-flex-basis:66.6666666667%;-moz-flex-basis:66.6666666667%;-ms-flex-basis:66.6666666667%;flex-basis:66.6666666667%;max-width:66.6666666667%}.col-xl-8,.col-xl-9{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xl-9{-webkit-flex-basis:75%;-moz-flex-basis:75%;-ms-flex-basis:75%;flex-basis:75%;max-width:75%}.col-xl-10{-webkit-flex-basis:83.3333333333%;-moz-flex-basis:83.3333333333%;-ms-flex-basis:83.3333333333%;flex-basis:83.3333333333%;max-width:83.3333333333%}.col-xl-10,.col-xl-11{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xl-11{-webkit-flex-basis:91.6666666667%;-moz-flex-basis:91.6666666667%;-ms-flex-basis:91.6666666667%;flex-basis:91.6666666667%;max-width:91.6666666667%}.col-xl-12{-webkit-flex-basis:100%;-moz-flex-basis:100%;-ms-flex-basis:100%;flex-basis:100%;max-width:100%}.col-xl-12,.col-xl-offset-0{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xl-offset-0{margin-left:0}.col-xl-offset-1{margin-left:8.3333333333%}.col-xl-offset-1,.col-xl-offset-2{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xl-offset-2{margin-left:16.6666666667%}.col-xl-offset-3{margin-left:25%}.col-xl-offset-3,.col-xl-offset-4{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xl-offset-4{margin-left:33.3333333333%}.col-xl-offset-5{margin-left:41.6666666667%}.col-xl-offset-5,.col-xl-offset-6{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xl-offset-6{margin-left:50%}.col-xl-offset-7{margin-left:58.3333333333%}.col-xl-offset-7,.col-xl-offset-8{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xl-offset-8{margin-left:66.6666666667%}.col-xl-offset-9{margin-left:75%}.col-xl-offset-9,.col-xl-offset-10{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xl-offset-10{margin-left:83.3333333333%}.col-xl-offset-11{margin-left:91.6666666667%}.col-xl-offset-11,.col-xl-offset-12{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xl-offset-12{margin-left:100%}.col-xl{-webkit-flex-basis:0;-moz-flex-basis:0;-ms-flex-basis:0;flex-basis:0;-webkit-flex-grow:1;-moz-flex-grow:1;-ms-flex-grow:1;flex-grow:1;max-width:100%}.start-xl{-webkit-justify-content:flex-start;-moz-justify-content:flex-start;-ms-justify-content:flex-start;justify-content:flex-start;text-align:left;-ms-flex-pack:flex-start}.center-xl{-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;text-align:center;-ms-flex-pack:center}.end-xl{-webkit-justify-content:flex-end;-moz-justify-content:flex-end;-ms-justify-content:flex-end;justify-content:flex-end;text-align:right;-ms-flex-pack:flex-end}.top-xl{-webkit-align-items:flex-start;-moz-align-items:flex-start;-ms-align-items:flex-start;align-items:flex-start}.middle-xl{-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;align-items:center}.bottom-xl{-webkit-align-items:flex-end;-moz-align-items:flex-end;-ms-align-items:flex-end;align-items:flex-end}.around-xl{-webkit-justify-content:space-around;-moz-justify-content:space-around;-ms-justify-content:space-around;justify-content:space-around;-ms-flex-pack:space-around}.between-xl{-webkit-justify-content:space-between;-moz-justify-content:space-between;-ms-justify-content:space-between;justify-content:space-between;-ms-flex-pack:space-between}.first-xl{order:-1}.last-xl{order:1}}@media only screen and (min-width:1824px){.container{width:106.4rem}.col-xxl{-webkit-flex-basis:auto;-moz-flex-basis:auto;-ms-flex-basis:auto;flex-basis:auto}.col-xxl,.col-xxl-1{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xxl-1{-webkit-flex-basis:8.3333333333%;-moz-flex-basis:8.3333333333%;-ms-flex-basis:8.3333333333%;flex-basis:8.3333333333%;max-width:8.3333333333%}.col-xxl-2{-webkit-flex-basis:16.6666666667%;-moz-flex-basis:16.6666666667%;-ms-flex-basis:16.6666666667%;flex-basis:16.6666666667%;max-width:16.6666666667%}.col-xxl-2,.col-xxl-3{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xxl-3{-webkit-flex-basis:25%;-moz-flex-basis:25%;-ms-flex-basis:25%;flex-basis:25%;max-width:25%}.col-xxl-4{-webkit-flex-basis:33.3333333333%;-moz-flex-basis:33.3333333333%;-ms-flex-basis:33.3333333333%;flex-basis:33.3333333333%;max-width:33.3333333333%}.col-xxl-4,.col-xxl-5{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xxl-5{-webkit-flex-basis:41.6666666667%;-moz-flex-basis:41.6666666667%;-ms-flex-basis:41.6666666667%;flex-basis:41.6666666667%;max-width:41.6666666667%}.col-xxl-6{-webkit-flex-basis:50%;-moz-flex-basis:50%;-ms-flex-basis:50%;flex-basis:50%;max-width:50%}.col-xxl-6,.col-xxl-7{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xxl-7{-webkit-flex-basis:58.3333333333%;-moz-flex-basis:58.3333333333%;-ms-flex-basis:58.3333333333%;flex-basis:58.3333333333%;max-width:58.3333333333%}.col-xxl-8{-webkit-flex-basis:66.6666666667%;-moz-flex-basis:66.6666666667%;-ms-flex-basis:66.6666666667%;flex-basis:66.6666666667%;max-width:66.6666666667%}.col-xxl-8,.col-xxl-9{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xxl-9{-webkit-flex-basis:75%;-moz-flex-basis:75%;-ms-flex-basis:75%;flex-basis:75%;max-width:75%}.col-xxl-10{-webkit-flex-basis:83.3333333333%;-moz-flex-basis:83.3333333333%;-ms-flex-basis:83.3333333333%;flex-basis:83.3333333333%;max-width:83.3333333333%}.col-xxl-10,.col-xxl-11{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xxl-11{-webkit-flex-basis:91.6666666667%;-moz-flex-basis:91.6666666667%;-ms-flex-basis:91.6666666667%;flex-basis:91.6666666667%;max-width:91.6666666667%}.col-xxl-12{-webkit-flex-basis:100%;-moz-flex-basis:100%;-ms-flex-basis:100%;flex-basis:100%;max-width:100%}.col-xxl-12,.col-xxl-offset-0{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xxl-offset-0{margin-left:0}.col-xxl-offset-1{margin-left:8.3333333333%}.col-xxl-offset-1,.col-xxl-offset-2{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xxl-offset-2{margin-left:16.6666666667%}.col-xxl-offset-3{margin-left:25%}.col-xxl-offset-3,.col-xxl-offset-4{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xxl-offset-4{margin-left:33.3333333333%}.col-xxl-offset-5{margin-left:41.6666666667%}.col-xxl-offset-5,.col-xxl-offset-6{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xxl-offset-6{margin-left:50%}.col-xxl-offset-7{margin-left:58.3333333333%}.col-xxl-offset-7,.col-xxl-offset-8{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xxl-offset-8{margin-left:66.6666666667%}.col-xxl-offset-9{margin-left:75%}.col-xxl-offset-9,.col-xxl-offset-10{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xxl-offset-10{margin-left:83.3333333333%}.col-xxl-offset-11{margin-left:91.6666666667%}.col-xxl-offset-11,.col-xxl-offset-12{box-sizing:border-box;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;padding-left:1rem;padding-right:1rem}.col-xxl-offset-12{margin-left:100%}.col-xxl{-webkit-flex-basis:0;-moz-flex-basis:0;-ms-flex-basis:0;flex-basis:0;-webkit-flex-grow:1;-moz-flex-grow:1;-ms-flex-grow:1;flex-grow:1;max-width:100%}.start-xxl{-webkit-justify-content:flex-start;-moz-justify-content:flex-start;-ms-justify-content:flex-start;justify-content:flex-start;text-align:left;-ms-flex-pack:flex-start}.center-xxl{-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;text-align:center;-ms-flex-pack:center}.end-xxl{-webkit-justify-content:flex-end;-moz-justify-content:flex-end;-ms-justify-content:flex-end;justify-content:flex-end;text-align:right;-ms-flex-pack:flex-end}.top-xxl{-webkit-align-items:flex-start;-moz-align-items:flex-start;-ms-align-items:flex-start;align-items:flex-start}.middle-xxl{-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;align-items:center}.bottom-xxl{-webkit-align-items:flex-end;-moz-align-items:flex-end;-ms-align-items:flex-end;align-items:flex-end}.around-xxl{-webkit-justify-content:space-around;-moz-justify-content:space-around;-ms-justify-content:space-around;justify-content:space-around;-ms-flex-pack:space-around}.between-xxl{-webkit-justify-content:space-between;-moz-justify-content:space-between;-ms-justify-content:space-between;justify-content:space-between;-ms-flex-pack:space-between}.first-xxl{order:-1}.last-xxl{order:1}}:host,:root{--bg-primary:#fff;--bg-primary-50:hsla(0,0%,100%,0.5);--bg-bw-100:#fff;--bg-bw-100-reversed:#000;--border-primary:#d0dbe3;--border-radius-default:3.2rem;--border-radius-download:1.6rem;--border-radius-button:1.2rem;--button-download-default:#5021ff;--button-download-hover:#4500cc;--button-download-text:#fff;--button-download-bg-img:none;--button-download-bg-img-hover:none;--font-family:"Be Vietnam Pro","Be Vietnam Pro Fallback",roboto,"Roboto Fallback",sans-serif;--font-family-accent:"Be Vietnam Pro","Be Vietnam Pro Fallback",roboto,"Roboto Fallback",sans-serif;--font-family-accent-transform:none;--icon:#3c4055;--surface-white:#fff;--surface-primary:#f2f5f8;--surface-brand:#5021ff;--text-primary:#000;--text-secondary:#252836;--text-brand:#5021ff;--text-bw-100:#000;--text-bw-100-reversed:#fff;--text-heading-weight:900;--hero-background:#f2f5f8}@font-face{ascent-override:92%;descent-override:23%;font-family:Be Vietnam Pro Fallback;line-gap-override:0;size-adjust:103.8%;src:local("Arial")}@font-face{ascent-override:92%;descent-override:23%;font-family:Be Vietnam Pro Fallback;font-weight:700;line-gap-override:0;size-adjust:103.8%;src:local("Arial Bold")}@font-face{ascent-override:92%;descent-override:23%;font-family:Be Vietnam Pro Fallback;font-weight:900;line-gap-override:0;size-adjust:103.8%;src:local("Arial Black")}@font-face{ascent-override:92.7%;descent-override:24.4%;font-family:Roboto Fallback;line-gap-override:0;size-adjust:100%;src:local("Arial")}@font-face{ascent-override:92.7%;descent-override:24.4%;font-family:Roboto Fallback;font-weight:700;line-gap-override:0;size-adjust:100%;src:local("Arial Bold")}@font-face{ascent-override:85%;descent-override:15%;font-family:Space Mono Fallback;line-gap-override:0;size-adjust:95%;src:local("Courier New")}@font-face{ascent-override:85%;descent-override:15%;font-family:Space Mono Fallback;font-weight:700;line-gap-override:0;size-adjust:95%;src:local("Courier New Bold")}html{font-size:62.5%;margin:0;padding:0;scroll-behavior:smooth;scroll-padding-top:7.5rem}@media(width >= 1366px){html{font-size:.732vw}}@media(min-width:1924px){html{font-size:88.3%}}body{background-color:#fff;color:#000;display:flex;flex-direction:column;font-variant-numeric:lining-nums proportional-nums;font-weight:400;margin:0;min-height:100%;padding:0;-webkit-font-smoothing:antialiased}body,main{font-family:var(--font-family)}main{box-sizing:border-box;flex:1 0 auto;letter-spacing:.02em;line-height:1.5;width:100%}img{height:auto;max-width:100%}.hf{flex:none;font-size:1.2rem;letter-spacing:.03rem;line-height:1.5;-webkit-font-smoothing:antialiased;font-family:var(--font-family)}header.hf__header{left:0;min-height:10.4rem;position:fixed;top:0;width:100vw;z-index:9999}@media(min-width:1924px){header.hf__header{min-height:12rem}}.header{background-color:transparent;box-sizing:border-box;flex:1;flex-direction:row;font-size:0;height:10.4rem;padding:2.4rem 0;position:relative;z-index:2}.header,.header__wrapper{align-items:center;display:flex}.header__wrapper{flex:0 1 auto;flex-direction:row;flex-wrap:wrap;width:100%}.header__brand{display:block;flex-shrink:0;margin-right:3.4rem;position:relative;width:10.5rem}.header__brand img{display:block;height:3rem;width:auto}.header__main-nav-items{align-items:center;display:flex;flex-direction:row;flex-grow:1;list-style:none;margin:0;overflow:visible;padding:0;position:static}.header__main-nav-item{align-items:center;display:flex;margin-right:2.4rem;position:relative}.header__main-nav-anchor{align-items:center;color:var(--text-primary);display:flex;font-size:1.4rem;font-weight:600;padding:.8rem 0;text-decoration:none}.header__menu{flex-grow:1}.header__mobile{display:none}.header__main-nav-item--dropdown__panel{max-height:0;overflow:hidden}@media(max-width:1223px){.header{height:7.2rem}.header__mobile{align-items:center;backdrop-filter:blur(15px);-webkit-backdrop-filter:blur(15px);box-sizing:border-box;display:flex;flex:1;font-size:0;height:7.2rem;justify-content:flex-end;left:0;padding:1.6rem 2rem;position:absolute;top:0;transition:height .4s ease;width:4rem;width:100vw;z-index:2}.header__mobile__brand{display:block;left:1.8rem;margin-right:2rem;position:absolute;z-index:10000}.header__mobile__brand img{height:3rem;width:auto}.header__brand{display:none}.header__main-nav-items{display:none;position:absolute}.header__menu-switcher{display:block;height:2.4rem;position:absolute;right:1.8rem;top:50%;transform:translateY(-50%);width:2.4rem}}@media(min-width:1224px)and (hover:hover){header.hf__header.active .header,header.hf__header.keep-active .header{backdrop-filter:blur(15px);-webkit-backdrop-filter:blur(15px)}}html.dark-theme .hidden-in-darkmode,html:not(.dark-theme) .hidden-in-lightmode{display:none}.hero{background-color:var(--hero-background);color:var(--text-primary);margin-bottom:11rem;padding-bottom:9.6rem;padding-top:12.2rem;position:relative}@media only screen and (min-width:1024px){.hero{padding-top:12.2rem}}@media only screen and (min-width:1224px){.hero{padding-top:15.4rem}}@media only screen and (min-width:1924px){.hero{padding-top:17rem}}.hero.hero--banner{padding-top:7rem}@media only screen and (min-width:768px){.hero.hero--banner{padding-top:23.2rem}}@media only screen and (min-width:1224px){.hero.hero--banner{padding-top:26.4rem}}@media only screen and (min-width:1924px){.hero.hero--banner{padding-top:28rem}}.hero__image{bottom:-9rem;margin-top:-9rem}.hero__image .floating-image-wrapper{bottom:-6rem;display:block;position:absolute;right:0;top:0;z-index:1}.hero__title{line-height:normal;margin:0 auto;width:67%}.hero .cta__container{margin-bottom:3.2rem;margin-top:3.2rem}.icon-component{align-items:center;display:inline-flex;height:2.4rem;justify-content:center;min-width:2.4rem;vertical-align:middle;width:2.4rem}.icon-component svg{height:auto;width:100%}.text-align--center{text-align:center}.text-align--left{text-align:left}.text-align--right{text-align:right}.text-align--justify{text-align:justify}.flex{display:flex}.flex-direction--column{flex-direction:column}.flex-direction--row{flex-direction:row}.justify-content--center{justify-content:center}.justify-content--between{justify-content:space-between}.align-items--center{align-items:center}.align-items--start{align-items:start}.block--relative{position:relative}.block--inline-block{display:inline-block}.font-weight--heading{font-weight:var(--text-heading-weight)}.font-weight--700,.font-weight--black{font-weight:700}.h-level-1,h1{font-size:4rem;line-height:1}.text-level-1{font-size:1.8rem}@media only screen and (min-width:768px){.text-level-1{font-size:2.4rem}}.text-40{font-size:4rem}@media only screen and (min-width:768px){.text-md-56{font-size:5.6rem}}.hero__content{position:relative}.hero h1{font-family:var(--font-family-accent);margin:0 0 1rem}.hidden--clip{border:none;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}@media(max-width:768px){.hidden--to-md{display:none!important}}@media(min-width:769px){.hidden--from-md{display:none!important}}@media(max-width:1224px){.hidden--to-xl{display:none!important}}@media(min-width:1225px){.hidden--from-xl{display:none!important}}.air-banner{contain:layout style paint;left:0;min-height:10.4rem;position:absolute;right:0;top:10rem;z-index:2}.air-banner>a{color:var(--text-primary);display:flex;flex-direction:column;height:10.4rem;justify-content:center;text-decoration:none}.air-banner__content{align-items:center;display:flex;flex-direction:row;justify-content:space-between;min-height:8.6rem}.air-banner__content h2{margin:0;vertical-align:middle}.air-banner__content i{align-items:center;display:inline-flex;justify-content:center;vertical-align:middle}.air-banner__content i:after{background-color:rgba(40,85,70,.302);content:"";display:inline-block;height:2.04rem;margin-left:1.6rem;width:.2rem}.mobile-banner{margin-top:7.3rem;min-height:18rem;position:static;z-index:2}.mobile-banner>a{display:flex;flex-direction:column;justify-content:center;min-height:18rem;text-decoration:none}.mobile-banner__content{align-items:center;display:flex;flex-direction:row;justify-content:space-between}.mini-banner{left:0;position:absolute;right:0;top:7rem;z-index:2}.mini-banner>a{display:flex;flex-direction:column;justify-content:center;text-decoration:none}.mini-banner__content{align-items:center;display:flex;flex-direction:row}.rewind-banner{background-color:#000;contain:layout style paint;left:0;min-height:18rem;overflow:hidden;position:absolute;right:0;top:7.3rem;z-index:2}@media(width <= 767px){.rewind-banner{display:none!important}}@media only screen and (min-width:768px){.rewind-banner{min-height:10.4rem;top:6rem}}@media only screen and (min-width:1224px){.rewind-banner{top:10rem}}.rewind-banner>a{color:#fff;display:flex;flex-direction:column;height:18rem;justify-content:center;text-decoration:none}@media only screen and (min-width:768px){.rewind-banner>a{height:10.4rem}}.rewind-banner__content{align-items:center;justify-content:space-between}@media(min-width:768px){.rewind-banner__content{min-height:8.6rem}}.rewind-banner__text-wrapper{align-items:center;display:flex;flex-wrap:nowrap;gap:1.5rem}@media(min-width:768px)and (max-width:1223px){.air-banner{contain:layout style paint;min-height:10.4rem;position:absolute}.air-banner>a{height:10.4rem}.air-banner__content h2{font-size:1.8rem;line-height:1.4}}</style>
<link rel="preload"
as="style"
media="screen"
href="https://cdn-production-opera-website.operacdn.com/staticfiles/latinext.a83b049961e4.css"/>
<link rel="stylesheet"
type="text/css"
media="screen"
href="https://cdn-production-opera-website.operacdn.com/staticfiles/latinext.a83b049961e4.css"/>
<link rel="preload" href="https://cdn-production-opera-website.operacdn.com/staticfiles/main.fda26858709e.css" as="style">
<link rel="stylesheet"
href="https://cdn-production-opera-website.operacdn.com/staticfiles/main.fda26858709e.css"
media="print"
onload="this.media='all'; this.onload=null;">
<noscript>
<link rel="stylesheet" href="https://cdn-production-opera-website.operacdn.com/staticfiles/main.fda26858709e.css">
</noscript>
<link rel="preload"
href="https://cdn-production-opera-website.operacdn.com/staticfiles/main-320.7f746f3896e8.css"
as="style"
media="(max-width: 767px)">
<link rel="stylesheet"
href="https://cdn-production-opera-website.operacdn.com/staticfiles/main-320.7f746f3896e8.css"
media="print"
onload="this.media='(max-width: 767px)'; this.onload=null;">
<link rel="preload"
href="https://cdn-production-opera-website.operacdn.com/staticfiles/main-640.eb207c945869.css"
as="style"
media="(min-width: 640px) and (max-width: 767px)">
<link rel="stylesheet"
href="https://cdn-production-opera-website.operacdn.com/staticfiles/main-640.eb207c945869.css"
media="print"
onload="this.media='(min-width: 640px) and (max-width: 767px)'; this.onload=null;">
<link rel="preload"
href="https://cdn-production-opera-website.operacdn.com/staticfiles/main-768.c095843b336b.css"
as="style"
media="(min-width: 768px)">
<link rel="stylesheet"
href="https://cdn-production-opera-website.operacdn.com/staticfiles/main-768.c095843b336b.css"
media="print"
onload="this.media='(min-width: 768px)'; this.onload=null;">
<link rel="preload"
href="https://cdn-production-opera-website.operacdn.com/staticfiles/main-1024.aad96fd23526.css"
as="style"
media="(min-width: 1024px)">
<link rel="stylesheet"
href="https://cdn-production-opera-website.operacdn.com/staticfiles/main-1024.aad96fd23526.css"
media="print"
onload="this.media='(min-width: 1024px)'; this.onload=null;">
<link rel="preload"
href="https://cdn-production-opera-website.operacdn.com/staticfiles/main-1224.cd20c7ec9f47.css"
as="style"
media="(min-width: 1224px)">
<link rel="stylesheet"
href="https://cdn-production-opera-website.operacdn.com/staticfiles/main-1224.cd20c7ec9f47.css"
media="print"
onload="this.media='(min-width: 1224px)'; this.onload=null;">
<link rel="preload"
href="https://cdn-production-opera-website.operacdn.com/staticfiles/main-1824.b6240ca8263f.css"
as="style"
media="(min-width: 1824px)">
<link rel="stylesheet"
href="https://cdn-production-opera-website.operacdn.com/staticfiles/main-1824.b6240ca8263f.css"
media="print"
onload="this.media='(min-width: 1824px)'; this.onload=null;">
<link rel="preload"
href="https://cdn-production-opera-website.operacdn.com/staticfiles/main-1924.0713dcc8a47e.css"
as="style"
media="(min-width: 1924px)">
<link rel="stylesheet"
href="https://cdn-production-opera-website.operacdn.com/staticfiles/main-1924.0713dcc8a47e.css"
media="print"
onload="this.media='(min-width: 1924px)'; this.onload=null;">
</head>
<body class="">
<header id="header"
class="hf hf__header">
<input id="header__switcher"
aria-label="Open mobile menu"
class="hidden--clip header__switcher"
type="checkbox">
<div class="header "
role="navigation">
<div class="header__wrapper container-fluid wrapper">
<a class="header__brand"
aria-label="Back to Main Page"
href="/">
<i class="icon-component "
data-icon-name="Opera (text)"
data-icon-type="Logo"
data-icon-alt="Opera (text)"
data-icon-width="104"></i>
</a>
<div class="header__menu">
<ul class="header__main-nav-items"
role="menu">
<li class="header__main-nav-item header__main-nav-item--dropdown active" role="menuitem">
<a href="/browsers" class="header__main-nav-anchor"
data-code="header-nav--browsers"
data-menu="Browsers">
<i class="icon-component hover-color"
data-icon-name="Browsers"
data-icon-type="Header"
data-icon-alt="Browsers"
data-icon-width="24"></i>
<span class="header__main-nav-anchor__title">
Browsers
</span>
</a>
<div class="header__main-nav-item--dropdown__panel">
<a href="/opera"
data-code="header-nav--opera-browser"
class="header__main-nav-item--dropdown__bar text-12 font-weight--700">
Opera Browser
<span class="header__main-nav-item--dropdown__badge header__main-nav-item--dropdown__badge--updated">Updated</span>
</a>
<a href="/air"
data-code="header-nav--opera-air"
class="header__main-nav-item--dropdown__bar text-12 font-weight--700">
Opera Air
</a>
<a href="/gx"
data-code="header-nav--opera-gx"
class="header__main-nav-item--dropdown__bar text-12 font-weight--700">
Opera GX
</a>
<a href="https://www.operaneon.com" target="_blank"
data-code="header-nav--opera-neon"
class="header__main-nav-item--dropdown__bar text-12 font-weight--700">
Opera Neon
<span class="header__main-nav-item--dropdown__badge header__main-nav-item--dropdown__badge--new">New</span>
</a>
<a href="/mini"
data-code="header-nav--opera-mini"
class="header__main-nav-item--dropdown__bar text-12 font-weight--700">
Opera Mini
</a>
<a href="/download"
data-code="header-nav--download"
class="header__main-nav-item--dropdown__bar text-12 font-weight--700">
Downloads
</a>
<a href="/features"
data-code="header-nav--features"
class="header__main-nav-item--dropdown__bar text-12 font-weight--700">
Features
</a>
<a href="/opera/compare"
data-code="header-nav--compare"
class="header__main-nav-item--dropdown__bar text-12 font-weight--700">
Compare Browsers
</a>
</div>
</li>
<li class="header__main-nav-item" role="menuitem">
<a href="/secure-private-browser" class="header__main-nav-anchor"
data-menu="Privacy & Security">
<i class="icon-component hover-color"
data-icon-name="Security"
data-icon-type="Header"
data-icon-alt="Security"
data-icon-width="24"></i>
<span class="header__main-nav-anchor__title">
Privacy & Security
</span>
</a>
</li>
<li class="header__main-nav-item header__main-nav-item--dropdown" role="menuitem">
<a href="/about" class="header__main-nav-anchor"
data-menu="About">
<i class="icon-component hover-color"
data-icon-name="About us"
data-icon-type="Header"
data-icon-alt="About us"
data-icon-width="24"></i>
<span class="header__main-nav-anchor__title">
About
</span>
</a>
<div class="header__main-nav-item--dropdown__panel">
<a href="/about"
class="header__main-nav-item--dropdown__bar text-12 font-weight--700">
About Opera
</a>
<a href="https://blogs.opera.com/"
target="_blank"
aria-label="Opera Blog"
class="header__main-nav-item--dropdown__bar text-12 font-weight--700">
Opera Blog
</a>
</div>
</li>
<li class="header__main-nav-item" role="menuitem">
<a href="/help" class="header__main-nav-anchor"
data-menu="Help">
<i class="icon-component hover-color"
data-icon-name="Help"
data-icon-type="Header"
data-icon-alt="Help"
data-icon-width="24"></i>
<span class="header__main-nav-anchor__title">
Help
</span>
</a>
</li>
</ul>
<div class="header__download">
<span class="download-button--wrapper download-button--desktop
download-button--full download-button--small "
role="button">
<a href="https://download.opera.com/download/get/?partner=www&opsys=Linux"
data-code='download-button'
class="button os-linux"
data-platform="auto"
data-event-action="download_opera"
data-event-category="new_floating_header"
rel="nofollow noopener"
data-alternative="None">
<span class="cta">Download now</span>
</a>
</span>
</div>
</div>
<div class="header__mobile container-fluid">
<a class="header__mobile__brand"
aria-label="Back to Main Page"
href="/">
<img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/logo/logo-flat-horizontal.3a48a9c34651.svg"
alt="Opera"
width="274"
height="100"
class="hidden-in-darkmode"
style="height: 3rem; width: auto; aspect-ratio: 274/100;"
fetchpriority="high">
<img src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/logo/logo-flat-white-horizontal.35e1a8f1fc3b.svg"
alt="Opera"
width="274"
height="100"
class="hidden-in-lightmode"
style="height: 3rem; width: auto; aspect-ratio: 274/100;"
fetchpriority="high">
</a>
<label class="header__menu-switcher"
for="header__switcher">
language:
</label>
</div>
</div>
</div>
</header>
<main class="legal-page">
<section class="container-fluid legal-page--content wrapper">
<div class="text-content">
<h2 data-block-key="g76s9"><b>Terms</b> Of Service</h2><p data-block-key="csi89"><i>Last updated: February 23, 2026<br/></i></p><p data-block-key="6ge1m">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 data-block-key="4m2ht"><b>This is a contract.</b><ol><li data-block-key="auqdr">These Terms of Service (“General 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 General Terms. If you don’t agree with these General Terms, you must discontinue using the Services.<br/></li><li data-block-key="e58e6">As used in these General Terms, the word “Services” applies to online services provided to you by Opera through its software applications, websites and APIs<br/></li></ol></li><li data-block-key="2kv1v"><b>We expect you to be a responsible user.</b><ol><li data-block-key="dtpdo">You agree that you will not use the Services for any purpose that is unlawful or prohibited by these General 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.<br/></li><li data-block-key="fnaoc">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.<br/></li><li data-block-key="nj6g">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.<br/></li><li data-block-key="b925s">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.<br/></li><li data-block-key="ado3q">You are entirely responsible for the security of your Opera Account and Service Specific Accounts. You are also responsible for any and all activities that occur under your Opera Account and Service Specific Accounts.<br/></li><li data-block-key="cj4de">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.<br/></li><li data-block-key="9gndg">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.<br/></li><li data-block-key="b836l">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.<br/></li><li data-block-key="7p9ha">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.<br/></li></ol></li><li data-block-key="d0r7n"><b>Details.</b> 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.<br/><ol><li data-block-key="c952c">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.<br/></li><li data-block-key="19pbh">Compression: Some of 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. In accordance with §6 of these Terms, Opera reserves the right to modify or discontinue the compression Service in whole or in part, or to terminate your access or the access of third parties to the compression Service at any time, with or without notice, for any reason.<br/></li><li data-block-key="1lc5a">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.<br/></li><li data-block-key="fbn0k">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.<br/></li><li data-block-key="4dqp7">Virtual Private Network: Through Opera’s browser you may have access to a virtual private network (“VPN”). Consistent with other provisions of these General 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.<br/></li><li data-block-key="e9l2v">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.<br/></li></ol></li><li data-block-key="dfmk9"><b>The Services are provided without any warranties or guarantees.</b> 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.<br/><ol><li data-block-key="2ggrt">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.<br/></li><li data-block-key="frpkb">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.<br/></li><li data-block-key="b8rnd">In compliance with local law, certain Services and websites may not be available in some countries.<br/></li></ol></li><li data-block-key="bujss"><b>Certain Services are provided by third parties.</b> 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:<br/><ol><li data-block-key="d2a4u">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</li><li data-block-key="62q06">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<br/></li><li data-block-key="5pg51">Facebook Messenger: A messaging service provided by Facebook, Inc., Meta Platforms Ireland Ltd. or related companies, depending on where you are accessing their services. Terms of use are available at <a href="https://www.facebook.com/legal/terms">https://www.facebook.com/legal/terms</a>; and<br/></li><li data-block-key="9n6fo">Instagram: Also provided by Facebook Inc., Meta Platforms Ireland Ltd., or related companies, depending on where you are accessing their services. Terms available at <a href="https://help.instagram.com/581066165581870">https://help.instagram.com/581066165581870</a>; and<br/></li><li data-block-key="7s0dl">Twitter: Microblogging services provided in Europe by Twitter International Unlimited Company, and elsewhere by Twitter Inc. Terms available at <a href="https://twitter.com/en/tos">https://twitter.com/en/tos</a>; and<br/></li><li data-block-key="f4e57">Telegram: Messaging service provided by Telegram Messenger Inc. Terms available at <a href="https://telegram.org/tos/">https://telegram.org/tos/</a><br/></li></ol></li><li data-block-key="3ajhu"><b>Your access to the Services is subject to change.</b> 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 Opera Account and/or Service Specific 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 General Terms to any third party.<br/></li><li data-block-key="4i8np"><b>Third Party Sites are available through the Services.</b> 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”). In particular, the Services include a content feed feature to help you discover and access content relating to current events, entertainment, sports or the like. Opera exercises no editorial control over any such Third Party Content that you access through the Services. 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. By using Services, you acknowledge and accept that the Content is published by independent third parties and the views and opinions expressed are solely those of such third parties.<br/></li><li data-block-key="28h34"><b>Our Services are ad-supported.</b> 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.<br/></li><li data-block-key="9m7ic"><b>Opera is not responsible for any damages you may incur as a result of your use of the Services.</b><ol><li data-block-key="fv5ff">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.<br/></li><li data-block-key="6h44r">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.<br/></li><li data-block-key="74s6s">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.<br/></li><li data-block-key="5ur9c">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.<br/></li></ol></li><li data-block-key="93v4a"><b>We need you to respect our trademarks.</b> The OPERA, OPERA MINI, YOYO GAMES, LOOMI, OPERA CASHBACK word marks, the Opera logo, and the stylized “YY”, “d”, , “Gamemaker”, and “O” logos are trademarks of Opera Norway AS or its affiliates in Norway, the United States, the European Union and/or 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.<br/></li><li data-block-key="11ljk"><b>These General Terms are based on Norwegian law.</b> These General 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 General Terms. All actions or proceedings arising under or related to these General 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 General Terms is determined by a court of competent jurisdiction to be invalid, illegal, or unenforceable, the remaining provisions of these General Terms shall not be affected or impaired thereby. For the avoidance of doubt, nothing in these General Terms is intended to be construed as limiting your rights under applicable law, including the Digital Services Act.<br/></li><li data-block-key="1di9p"><b>Data processing.</b> Please see our <a href="/legal/privacy">Privacy Statement</a> and <a href="/legal/cookie-policy">Cookie Policy</a>. We encourage you to read the Privacy Statement and Cookie Policy to better understand how you can manage your data and cookie preferences.<br/></li><li data-block-key="fmu3k"><b>Opera may modify these General Terms.</b> Opera may update these General Terms or the Privacy Statement from time to time. The current version of these General Terms are posted at <a href="https://www.opera.com/legal/terms">https://www.opera.com/legal/terms</a>. The Privacy Statement is posted at <a href="https://www.opera.com/legal/privacy">https://www.opera.com/legal/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 General Terms and the Privacy Statement. You may not assign or transfer your rights under these General Terms without obtaining Opera’s prior written consent, and any purported assignment or transfer in violation of this section will be null and void.<br/></li><li data-block-key="2hfnj"><b>Notice to rights holders.</b> 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:<ol><li data-block-key="d5l6t">identification of the rights/ works that are being infringed upon;<br/></li><li data-block-key="e3lt2">identification of the content that is infringing your rights (including URL(s) for the content);<br/></li><li data-block-key="ergg8">your name, address, telephone number, and electronic mail address;<br/></li><li data-block-key="a0c6o">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;<br/></li><li data-block-key="e2c82">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<br/></li><li data-block-key="furq4">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>.</li></ol></li></ol>
</div>
</section>
<div class="legal-page--other-content mt5">
<section class="simple-block container-fluid wrapper">
<h3 data-block-key="g5ygr">Service Specific Terms</h3><p data-block-key="8o45g"><i>Last updated: April 29, 2024</i></p><ol><li data-block-key="761a"><b>Opera may provide you with additional Services</b> that are the subject of both the General Terms as well as the Service Specific Terms (collectively the “Terms”) that govern your use of the Services.<br/></li><li data-block-key="6hucd"><b>Acceptance.</b> By enabling each Service you accept the relevant Service Specific Terms. Please read them carefully.<br/></li><li data-block-key="a8lms"><b>Eligibility.</b> To use Services, you must be at least 18 years old and/or have full legal capacity. If you are not 18 years old and/or you don’t have a full legal capacity you must have your parent or legal guardian’s permission to use Services. Please have your parent or legal guardian read these terms with you. If you are a parent or legal guardian, and you allow your charge to use the Services then these terms apply to you and you are responsible for use of the Service by your charge. Some Services or features may have different age requirements specified in the Terms. In such a case the relevant Terms apply.<br/></li><li data-block-key="8bkds"><b>Suspension.</b> Opera may temporarily suspend your access to the Service and/or any features for technical reasons or to perform routine maintenance.<br/></li><li data-block-key="ck3bb"><b>Scope of Terms.</b> In the scope not regulated in the Service Specific Terms, the provisions of General Terms shall apply.<br/></li><li data-block-key="c1q3b"><b>Construction.</b> In the event of differences between General Terms and Service Specific Terms the Service Specific Terms shall apply.</li></ol>
</section>
</div>
<div class="legal-page--other-content mt5">
<section class="simple-block container-fluid wrapper">
<h2 data-block-key="g5ygr">Opera Account Service</h2><p data-block-key="dgefs"><i>Last updated: March 8, 2023</i></p><p data-block-key="dj6jd">Opera Account is the Service that gives you the additional option to manage your use of Opera browser, your data, and allows you to enable and manage your use of additional features that are available only for Opera Account holders.</p><ol><li data-block-key="b968j">Opera Account features may be a subject of additional conditions. Please read them carefully before enabling.</li><li data-block-key="9abrr">Opera Account credentials give you access to the Opera features that may be accessed separately.</li><li data-block-key="cdiut">You must provide us with your email address and set up a password to create your Opera Account. You may delete your Opera Account at any time. Please note that in such a case you will lose your access to features that require an Opera Account.</li></ol>
</section>
</div>
<div class="legal-page--other-content mt5">
<section class="container-fluid wrapper accordion section-component " >
<div>
<div class="accordion__block">
<h3 class="text-20 text-md-24 accordion__button ">
AI Chat Feature
</h3>
<div class="accordion__panel">
<div class="text-16 mt5 dark-text-opacity">
<p data-block-key="6l7ph"><i>Last updated: November 21, 2025</i></p><p data-block-key="8qjgc">The AI Chat feature (“AI Chat”) is an AI-powered chat assistant that allows you to provide input (‘Input’) and receive output generated by AI (‘Output’). AI Chat is made available in qualifying countries. By enabling and using AI Chat you agree to be bound by these Terms that govern your use of AI Chat. Please read the Terms carefully.</p><ol><li data-block-key="ce1uc"><b>Opera Account gives you access to additional/extended features of AI Chat.</b> You do not need Opera Account to access and use AI Chat. However, you will need to create or log into Opera Account to gain access to additional or extended features of AI Chat.<br/></li><li data-block-key="3p8m"><b>Input and Output.</b> You are the owner and creator of Input. Opera may not grant you any rights to the Output, which in some cases may also be subject to intellectual property rights. Please note that all provisions of Terms referring to ‘Content’ and ‘Third Party Content’ are applicable to Input and Output.<br/></li><li data-block-key="cl50q"><b>We expect you to be a responsible user.</b> Please act carefully and don’t provide AI Chat, either by typing into or attaching to AI Chat chatbox and/or by otherwise using AI Chat, with information like your name, address, or credit card details. Do not use it for any harmful purposes (to third parties or yourself). We strongly discourage asking AI Chat for medical, legal, or financial advice. Carefully review any Output generated by AI Chat and consider it before relying on it or sharing it with others.<br/></li><li data-block-key="em78s"><b>Restricted Content and use</b> You may not (i) use AI Chat for any illegal purpose, to violate or facilitate the violation of any person’s rights or any law or regulation, or in any manner inconsistent with the Terms; (ii) generate obscene, vulgar, sexually-oriented, hateful, or threatening Output, generating malware (iii) use AI Chat feature for unauthorized services requiring professional knowledge and/or qualifications (like: providing legal, tax, financial, medical advices) (iv) reverse engineer, de-encrypt, or otherwise derive the design, internal logic, structure or inner workings (including algorithms and source code of AI Chat) (v) use output from the AI Chat to develop models that compete with AI Chat and/or OpenAI and/or Google; (vi) provide AI Chat with information regarding minors under 13 or applicable age for digital consent. You agree to use AI Chat solely for your own personal, noncommercial use and benefit. You may read more in our <a href="https://help.opera.com/en/browser-ai-faq/">FAQ</a> section.<br/></li><li data-block-key="614sa"><b>AI Chat is provided without any warranties or guaranties.</b> Opera does not represent or warrant that AI Chat will fully and/or correctly execute the task from your Input, nor that the Output will be actually provided and/or will be accurate, mistake-free and adequate to the prompt. Like other AI-powered tools, AI Chat may make mistakes, or fail, or misinterpret your Input. It might provide you with inaccurate or misleading information (commonly referred to as ‘hallucinations’), or take actions that are unexpected. Do not use AI Chat if you are not willing to accept the risks associated with the usage and performance of AI - powered capabilities.<br/></li><li data-block-key="b7t4c"><b>You or Opera may terminate this agreement.</b> You may terminate this Agreement at any moment by deleting your Opera Account. Except as otherwise specified herein, Opera may terminate these Terms at any time on prior notice. Should you violate these Terms or the rights of any third-party intellectual property owner or threaten the operation of AI Chat, Opera may delete your Opera Account and terminate the Terms with you unilaterally, through a notification to your email address.<br/></li><li data-block-key="begt6"><b>Effect of Termination.</b> 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 AI Chat.<br/></li><li data-block-key="b8c3p"><b>Ceasing to provide the AI Chat.</b> If we decide to cease to provide the AI Chat, then you will be notified as soon as reasonably possible.<br/></li><li data-block-key="3kbe6"><b>Customer Service.</b> If you have a question about AI Chat, you may contact customer support <a href="https://opera.atlassian.net/servicedesk/customer/portal/52">here</a>. If you believe that any content accessible via AI Chat infringes your rights, you may submit a notification to customer support.<br/></li><li data-block-key="b3671"><b>FAQ.</b> To learn more about artificial intelligence and to get practical guidelines on how to use AI Chat, please check our <a href="https://help.opera.com/en/browser-ai-faq/">FAQ</a> section.</li></ol>
</div>
</div>
</div>
<div class="accordion__block">
<h3 class="text-20 text-md-24 accordion__button ">
Cashback
</h3>
<div class="accordion__panel">
<div class="text-16 mt5 dark-text-opacity">
<p data-block-key="say3t"><a href="/legal/terms/cashback">Opera Cashback Terms</a></p>
</div>
</div>
</div>
<div class="accordion__block">
<h3 class="text-20 text-md-24 accordion__button ">
GX Cloud Feature
</h3>
<div class="accordion__panel">
<div class="text-16 mt5 dark-text-opacity">
<p data-block-key="say3t"><i>Last updated: March 5, 2026</i></p><p data-block-key="fa0v0">The GX Cloud feature (“GX Cloud”) consists of following websites and services:</p><ol><li data-block-key="4f2j3">GX Games</li><li data-block-key="frpvs">GX Store</li><li data-block-key="2cjd6">GX Dev</li><li data-block-key="9m1t4">GX Me</li><li data-block-key="9mche">OPyramid</li></ol><p data-block-key="b24ae">which give you access to games and other content (“Content”). GX Cloud is made available in qualifying countries. By enabling and by using GX Cloud, you agree to be bound by the Terms. Please read the Terms carefully.</p><ol><li data-block-key="abj74"><b>You will need an Opera Account to access certain Content.</b> If you do not already have one, you will need to create an Opera Account to gain access to certain Content. Opera Account dedicated to GX Cloud feature is further referred to as “GX Me Account” and Opera Account Service Terms apply to it accordingly.<br/></li><li data-block-key="esi9i"><b>Users.</b> If you enable GX Me Account to participate in events from<a href="https://gx.games/"> GX Cloud</a>, you agree to be bound to these Terms as a user (“User”). Users affirm that they are over the age of 13 or an adult in their home territory, as GX Cloud is not intended for children under 13.<br/><ol><li data-block-key="7mp4s"><b>User Generated Content.</b> GX Cloud provides interfaces and tools for Users to generate content and make it available to other users, including ratings, comments, 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.<br/></li><li data-block-key="63b9q"><b>Limited rights to the Content.</b> After your purchase is finalized with GX Cloud Payment Services Provider (Paid Content) or if you start using Content (free Content), you are granted access to the aforesaid Content. The GX Cloud Content is available on a limited basis (in compliance with these Terms or specific terms indicated on the website) and is strictly for personal use. Terms of Opera’s<a href="https://www.opera.com/legal/eula-computers"> EULA for computers</a> and<a href="https://www.opera.com/legal/eula-mobile"> EULA for mobiles</a> apply accordingly to the software application type of Content. Certain Content may be attributed and accessible via your GX Me Account. Please note that your use of certain Content may be subjected to additional terms provided by the Publisher or Content owner.<br/></li><li data-block-key="1uiku"><b>Payment methods and terms.</b> Certain Content available on GX Cloud feature needs to be purchased (“Paid Content”).You need to have an active payment account established with a payment service provider, bank, and/or other partner who cooperates with Opera for purposes of purchasing Content (“GX Cloud Payment Services Provider’’). Your payments for GX Cloud features are processed by GX Cloud Payment Services Provider under their terms and conditions. If a purchase has been declined, we may not grant you access to the Paid Content;<br/></li><li data-block-key="9rqch"><b>Withdrawal and complaints.</b><ol><li data-block-key="2t5a2">You have the right to withdraw from a purchase of Paid Content within 14 days without giving any reason. The withdrawal period will expire after 14 days from the day of your purchase. To exercise the right of withdrawal, you must inform us of your decision via <a href="https://opera.atlassian.net/servicedesk/customer/portal/44">our form</a>. If you withdraw from this contract, we shall reimburse all payments received from you, including the costs of delivery, without undue delay and in any event not later than 14 days from the day on which you inform us of your decision to withdraw. We will carry out such reimbursement using the same means of payment as you used for the initial transaction, unless you have expressly agreed otherwise; in any event, you will not incur any fees as a result of such reimbursement.<br/></li><li data-block-key="9ql3o">You might submit a complaint if the Paid Content cannot run, some other issues prevent accessing the Paid Content, the product does not accurately represent what was advertised, the purchase was mistaken or duplicated. Such complaints should be submitted <a href="https://opera.atlassian.net/servicedesk/customer/portal/44">via our form</a>.<br/><br/>To learn more on how we process withdrawals and complaints, please check our Complaints policy.<br/></li></ol></li></ol></li><li data-block-key="978cu"><b>Publisher.</b> If you enable GX Me Account to distribute, or publish games, mods, or other content on GX Cloud, you agree to be bound to these Terms 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.<br/><ol><li data-block-key="54f3d"><b>Publishers content.</b> Publishers are solely responsible for the content they upload and distribute on the GX Cloud. 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. 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 GX Cloud may occur without prior notice. Publishers retain all ownership rights to the submitted content, and by submitting content to the GX Cloud, Publishers hereby grant the following:<br/><ol><li data-block-key="2hnlb">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, including without limitation for promoting, redistributing in any and all media formats. If you choose to remove your content from the GX Cloud, this license shall terminate within a commercially reasonable time after you remove your content from the GX Cloud;<br/></li><li data-block-key="10q94">To Users, a non-exclusive, perpetual license to access the Content and to non-commercially: use, reproduce, display, and perform such content as permitted through the functionality of the GX Cloud. Users shall retain a license to this content even after the content is removed from the GX Cloud.<br/></li></ol></li><li data-block-key="2fv90"><b>Financial Terms.</b> You may publish your Publisher Content for free or charge a fee for it. If you decide to charge a fee, the following terms apply:<br/><ol><li data-block-key="c5vst">Fees should be in US Dollars (USD). We are not responsible for any currency or conversion cost or issues;<br/></li><li data-block-key="edq4k">Gross revenue is split 90% to you and 10% to us. We will calculate your revenue share and further deduct:<ol><li data-block-key="etsgn">any applicable VAT or other consumption or sales taxes due in the User’s country;</li><li data-block-key="a33c9">GX.dev fee;</li><li data-block-key="8ssen">User returns, refunds or charge backs; and</li><li data-block-key="8kqrj">bank transfer and/or conversion fees (if applicable). After aforesaid deductions, the resultant revenue is sent to you;<br/></li></ol></li><li data-block-key="bq2l7">You need to have an active Stripe account (available for users who are 18 years old and/or have full legal capacity) in order to receive payment. On request, we may offer alternate payment methods with a payment service provider, bank, and/or other partner who cooperates with Opera;<br/></li><li data-block-key="d2slh">We will use reasonable efforts to make any revenue payments due to you on quarterly basis (90 days) on the first quarter in which you have earned revenue of at least $100;<br/></li><li data-block-key="eti4i">If in any monthly period your balance is less than $100, we will hold it until a month when it exceeds that amount;<br/></li><li data-block-key="cidrd">You are ultimately responsible for the payment of any VAT or other taxes;<br/></li><li data-block-key="3lfk4">We may be required to hold onto, or pay to a tax authority, withholding sums from revenue otherwise due to you. If so, we will notify you.<br/></li></ol></li></ol></li><li data-block-key="3b6nv"><b>OPyramid.</b> After enabling GX Me Account, either as a User or Publisher, you can start participating in certain qualifying activities under specified terms and conditions as may be made available at your GX Me Account and earn rewards (OPyramid rewards program further referred to as “OPyramid”). Some activities within OPyramid may be organized by Opera and some by third parties.The specific terms of each OPyramid season as well as third party activities supplement these Terms. The rewards may vary, depending on an activity. In some cases rewards may take the form of points called “Bricks”.<br/><ol><li data-block-key="fq9pa"><b>Redeeming Bricks</b>. Bricks you have earned must be redeemed as described below.<ol><li data-block-key="bmjr6">Bricks are redeemable only within GX Cloud. Bricks may not be redeemed and will not be accepted by any third party;</li><li data-block-key="7j3o1">Once redeemed, Bricks are not refundable;</li><li data-block-key="cptfs">In order to redeem Bricks you will need GX Me Account, where you will be able to see your achievements, earned Bricks and available options to redeem your Bricks;</li><li data-block-key="d05m8">Bricks you collected expire at the end of each OPyramid season, they cannot be transferred to the next season and you will lose them permanently. The same will happen if your GX Me Account is deleted as per Section 8 of these Terms;</li><li data-block-key="4ffki">Bricks are not redeemable if Opera determines in its sole discretion that: (i) you have abused IT systems to perform activities, or affect the integrity, confidentiality, or availability of GX Cloud or OPyramid data in any way; (ii) you attempted to circumvent any of the security mechanisms of the GX Cloud or OPyramid.<br/></li></ol></li></ol></li><li data-block-key="fosgl"><b>Restricted Content and use.</b> You are not allowed to generate and/or publish any Content (including User Generated Content), which is or may be considered threatening, abusive, obscene, racist, xenophobic, sexist, defamatory, pornographic, sexually explicit, or otherwise offensive or illegal. This includes masked words (—), acronyms and abbreviations. By accepting these Terms, you also agree to be bound by the Acceptable Use of GX Cloud feature.<br/></li><li data-block-key="1064l"><b>You or Opera may terminate this agreement.</b> You may terminate this Agreement at any moment by deleting your GX Me Account. Except as otherwise specified herein, Opera may terminate these Terms at any time on prior notice. Should you violate these Terms or the rights of any third-party intellectual property owner or threaten the operation of the Feature, Opera may delete your GX Me Account and terminate the Terms with you unilaterally, through a notification to your email address.<br/></li><li data-block-key="6bgp6"><b>Effect of Termination.</b> 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 your GX Me Account, including Paid Content. Upon termination, Publishers will be entitled to receive any outstanding payments in accordance with section 3.2 of these Terms.<br/></li><li data-block-key="4hbki"><b>Deleting the GX MeAccount.</b> Your GX Me Account can be deleted by yourself or automatically after sustained periods of inactivity. Please note that after deleting your GX Me Account:<br/><ol><li data-block-key="c4kg">Opera will erase your GX Cloud personal data to the extent permitted by applicable law;<br/></li><li data-block-key="392n6">you will lose access to any content attributed to your GX Me Account, including Paid Content;<br/></li><li data-block-key="anna9">You will lose your collected Bricks (if any) and your right to redeem Bricks will expire; and<br/></li><li data-block-key="af3v4">you will no longer receive any notifications related to the GX Cloud.<br/></li></ol></li><li data-block-key="2fhn2"><b>Ceasing to provide the GX Cloud, Paid Content, or the Content.</b> If we decide to cease to provide the GX Cloud or Paid Content, then you will be notified as soon as reasonably possible. If for any reason the Content that you have validly licensed is taken down from GX Cloud, we encourage Publishers to notify you and ensure that the relevant Content 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 Content will no longer be available unless we notify you otherwise.<br/></li><li data-block-key="7su9k"><b>Contacting Opera support.</b> 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>.<br/></li><li data-block-key="5ue0i"><b>Notice and Takedown.</b> If you are a rightsholder who believes that your content is improperly appearing in the GameMaker Feature, please use our form to <a href="https://opera.atlassian.net/servicedesk/customer/portal/19/group/33/create/71">Report copyright infringement</a>. We will use this information to investigate your claim and take appropriate action.</li></ol>
</div>
</div>
</div>
<div class="accordion__block">
<h3 class="text-20 text-md-24 accordion__button ">
VPN Pro
</h3>
<div class="accordion__panel">
<div class="text-16 mt5 dark-text-opacity">
<p data-block-key="say3t"><i>Last updated: January 14, 2024</i></p><p data-block-key="7p747">The VPN Pro (“VPN Pro” ) is a premium, paid virtual private network feature. By enabling and using VPN Pro you agree to be bound by these Terms that govern your use of VPN Pro. Please read them carefully.</p><ol><li data-block-key="couvk"><b>You will need an Opera Account to access VPN Pro.</b> If you do not already have one, you will need to create an Opera Account.<br/></li><li data-block-key="2hh2f"><b>Availability.</b> Depending on where you live and which products you use, you may be able to access VPN Pro. When activated, VPN Pro routes your traffic through thousands of servers around the world.<br/></li><li data-block-key="474mj">VPN Pro uses dedicated infrastructure provided and managed on Opera’s behalf by a third party. VPN Pro uses different servers than those used for our free in-app VPN service.<br/></li><li data-block-key="5rvjl"><b>To use VPN Pro you will need to subscribe through Google Play or via your Opera account.</b> You will also need to create an Opera account to sign in and use VPN Pro. Through your Opera account you can also activate VPN Pro on other devices, and recover access to the VPN Pro if you lose your device.<br/></li><li data-block-key="3hq98"><b>VPN Pro may not be legal in all countries and territories.</b> You should be aware that some governments may decide that VPN services are not legal with little or no warning. You are responsible for ensuring that your use of VPN Pro is legal under local law.<br/></li><li data-block-key="cdct1"><b>Subscriptions.<br/></b><ol><li data-block-key="9vl8n">You must subscribe to VPN Pro through the application. We offer subscriptions for various periods of time, such as one month, three months, or more at a time (each a “Subscription Period”).<br/></li><li data-block-key="62ss3">Your subscription allows you to use VPN Pro on up to six devices running under supported operating system.<br/></li><li data-block-key="b6tnp">You can cancel your subscription at any point up to the end of your Subscription Period. At the end of the then-current Subscription Period your subscription will be canceled and your access to the VPN Pro will end.<br/></li><li data-block-key="arrq0">If you do not cancel your subscription before the end of the Subscription Period, your subscription will renew automatically for an additional Subscription Period of equal length.<br/></li><li data-block-key="6rup4">You can always manage or cancel your subscription through your Google Play or via your Opera account.<br/></li></ol></li><li data-block-key="9ccb0"><b>Free Trials.</b> We may offer free trial subscriptions for a period of seven days. Unless you cancel before the end of the trial period, your payment method will be charged for the Subscription Period you have selected. You can cancel a free trial through Google Play or via your Opera account.<br/></li><li data-block-key="8l9h1"><b>30-day money back guarantee / cancellation right.<br/></b><ol><li data-block-key="6kfag">For purchases done via Google Play, you may cancel your subscription at any point during the first thirty days after your payment method is charged for a full refund.<br/></li><li data-block-key="f9sbn">For purchases done via Opera account, you may cancel your subscription at any point during the first thirty days after your payment card is charged for a full refund. You may also get a refund for your first subscription renewal within 48 hours from a payment card charge (“forgotten to deactivate subscription”). You can cancel via your Opera account while for refund you need to contact payment provider support.<br/></li><li data-block-key="fp30c">Some restrictions may apply, for example, if you have previously canceled three or more VPN Pro subscriptions. This cancellation right covers any statutory cancellation right that may apply to your subscription to VPN Pro.<br/></li></ol></li><li data-block-key="3uhcm"><b>Payment Method and Terms.</b> Your payments for VPN Pro are processed by a designated payment processor under their terms. If a purchase has been declined Opera may not set up, or may suspend or cancel your subscription.<br/></li><li data-block-key="6h28d"><b>Use of VPN Pro.</b> In keeping with the Terms, we expect you to use VPN Pro in a legal and responsible way.<br/><ol><li data-block-key="el3h6">Accordingly, you may not use, assist, or enable others to use the VPN Pro for any unlawful, illicit, illegal, criminal or fraudulent purpose whatsoever.<br/></li><li data-block-key="e8ajm">You may not use the VPN Pro to assault, interfere, gain unauthorized access, deny service in any way or form to any other network or device through the VPN Pro.<br/></li><li data-block-key="fq9f7">You may not use the VPN Pro to exploit children in any way.<br/></li><li data-block-key="3tp3e">You may not use the VPN Pro to violate, infringe, or misappropriate other people’s intellectual property, privacy or other legal rights.<br/></li><li data-block-key="665jn">You may not use the VPN Pro to distribute spam, malware, or viruses of any kind.<br/></li></ol></li><li data-block-key="56dr8"><b>Customer Service.</b> If you have a question about VPN Pro, contact customer support at <a href="mailto:vpn-pro@support.opera.com">vpn-pro@support.opera.com</a>.<br/></li><li data-block-key="c5ivj"><b>Privacy & Security<br/></b><ol><li data-block-key="3k9be">VPN Pro is provided by a third-party service provider which owns, operates, and maintains the infrastructure which provides the VPN Pro. Data communicated through VPN Pro will be encrypted and routed through one of thousands of servers around the world. However we do not promise that the service is absolutely secure. Despite our best efforts and the best efforts of our provider, criminals or other bad actors may still be able to access your data.<br/></li><li data-block-key="g56o">VPN Pro is a no log service. We do not collect or store records of web pages you visit or links you click on in the servers dedicated for this VPN Pro.<br/></li><li data-block-key="3c9bn">Further information may be available through our <a href="/legal/privacy">Privacy Statement</a>.<br/></li></ol></li><li data-block-key="4rapj"><b>Withdrawal<br/></b><ol><li data-block-key="4pa8h">You have the right to withdraw from VPN Pro within 14 days without giving any reason. The withdrawal period will expire after 14 days from the day you order the service.<br/></li><li data-block-key="4lqlc">To exercise the right of withdrawal, you must inform us of your decision to withdraw from this contract by email to <a href="https://legal.opera.com/terms/vpn-pro@support.opera.com">vpn-pro@support.opera.com</a> before the end of withdrawal period.<br/></li><li data-block-key="318i4">If you withdraw from this contract, we shall reimburse all payments received from you, including the costs of delivery, without undue delay and in any event not later than 14 days from the day on which you inform us of your decision to withdraw from VPN Pro. We will carry out such reimbursement using the same means of payment as you used for the initial transaction, unless you have expressly agreed otherwise; in any event, you will not incur any fees as a result of such reimbursement.<br/></li><li data-block-key="fn9rv">If you requested to begin the performance of services during the withdrawal period, you shall pay us an amount which is in proportion to what was provided before your withdrawal from this contract, in comparison with the full coverage of the contract.</li></ol></li></ol>
</div>
</div>
</div>
<div class="accordion__block">
<h3 class="text-20 text-md-24 accordion__button ">
GameMaker Feature
</h3>
<div class="accordion__panel">
<div class="text-16 mt5 dark-text-opacity">
<p data-block-key="say3t"><i>Last updated: February 11, 2026</i></p><p data-block-key="9o58r">The GameMaker Feature consists of:</p><p data-block-key="84g2q">a. GameMaker: the proprietary computer software program known as 'GameMaker', including: (i) any and all constituent elements of the same (including its code, tools, data, scripts, technologies, software libraries etc); and (ii) any upgrades, patches, fixes, improvements or additional content.<br/><br/>b. A website: <a href="https://gamemaker.io/en">https://gamemaker.io/en</a>, where you may obtain a license for GameMaker.<br/><br/>c. GameMaker Marketplace, where you may buy or sell “Publisher Content”.<br/><br/>d. GameMaker Help Centre, where you can receive support for any issues that you may have with GameMaker.<br/><br/>e. Other platforms and websites that we operate, where you may use our content (“GameMaker Content”) or publish your content (“Publisher Content”).<br/></p><p data-block-key="13rpm">The GameMaker Feature is made available in qualifying countries. By enabling and by using the GameMaker Feature, you agree to be bound by the Terms. Please read the Terms carefully.</p><ol><li data-block-key="a8gki"><b>You will need an Opera Account to access certain content.</b> If you do not already have one, you will need to create an Opera Account to gain access to certain content of the GameMaker Feature. Legacy GameMaker accounts also give you such access. If you have a legacy GameMaker account you may either keep it, or transfer to an Opera Account. Both accounts are further referred to as “GameMaker Account”.<br/></li><li data-block-key="ber60"><b>GameMaker Runtime License.</b> You may license various subscriptions for GameMaker, as further detailed at <a href="https://gamemaker.io/en/get">https://gamemaker.io/en/get</a>. Opera grants to you a non-exclusive, non-transferable, revocable, limited, worldwide license for the license duration specified at the time of purchase to the specific GameMaker Runtime License you have chosen subject in each case to your full compliance with these Terms and payment of all applicable fees.<ol><li data-block-key="b06d1">In no circumstances are you permitted to use a third party’s GameMaker Account.</li><li data-block-key="4bu9d">GameMaker payment methods and terms:<ol><li data-block-key="fe45m">You need to have an active payment account established with a payment service provider, bank, and/or other partner who cooperates with Opera for purposes of purchasing GameMaker (“GameMaker Payment Services Provider’’). Your payments for GameMaker are processed by GameMaker Payment Services Provider under their terms and conditions. If a purchase has been declined we may not grant you access to GameMaker;</li><li data-block-key="2d5eg">You might request a refund if GameMaker cannot run, if some other issues prevent you accessing it, the product does not do what was advertised, or if your purchase was mistaken or duplicated. Such requests should be provided to us at: <a href="http://help.gamemaker.io">http://help.gamemaker.io</a>.</li><li data-block-key="2v16j">If you are resident in the European Union, you have the right to withdraw from a purchase of GameMaker within 14 days of your purchase, without giving a reason. You hereby expressly acknowledge that you lose your right of withdrawal once the performance of our service has begun and your account is provided with access to GameMaker.<br/></li></ol></li></ol></li><li data-block-key="6fntu"><b>Users.</b> If you access and/or use the GameMaker Feature platforms and websites, you agree to be bound to these Terms as a user (“User”). Users affirm that they are over the age of 13 or are an adult in their home territory.<br/><ol><li data-block-key="egiqr">User Generated Content. GameMaker Feature provides interfaces and tools for Users to generate content (“User Generated Content” or “UGC”), including ratings, text, images, and other content and make it available to other users. By uploading or creating such UGC, you grant Opera the worldwide, non-exclusive, perpetual, royalty free license for the UGC to use, reproduce, create derivative works, display, perform and distribute.<br/></li><li data-block-key="77ttp">Limited rights to the content. Some GameMaker Content may be made available to you for free while other may be licensed for money, where we grant to you a non-exclusive, non-transferable, revocable, limited, worldwide license to use such GameMaker Content for its intended purpose only, subject to your full compliance with these Terms and payment of all applicable fees. Point 2.b of these Terms apply to paid GameMaker Content accordingly. When you purchase Publisher Content, the Publisher grants to you a license as described in point 4.a.i of these Terms.<br/></li></ol></li><li data-block-key="34hah"><b>Publishers.</b> If you use your GameMaker Account to distribute or publish games or other Publisher Content on GameMaker Marketplace, you agree to be bound to these Terms as a platform publisher (“Publisher”). Publishers affirm that they are over the age of 13 or an adult in their home territory and are fully able and competent to enter into the terms, conditions, obligations, affirmations, representations and warranties set forth in this Agreement.<br/><ol><li data-block-key="5qqem">Publisher Content. Publishers are solely responsible for the Publisher Content they upload and distribute on the GameMaker Feature. 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. Opera does not endorse copyright infringing activities or other intellectual property infringing activities and violations of the law may result in the removal of Publisher Content if Opera is notified of such violations. Removal and termination of GameMaker Feature may occur without prior notice. Publishers retain all ownership rights to the submitted Publisher Content, and by submitting content to the GameMaker Feature, Publishers hereby grant the following:<br/><ol><li data-block-key="75j1">To Opera, a worldwide, non-exclusive, royalty-free, sublicensable and transferable license to use, reproduce, distribute, prepare derivative works of, display, and perform the Publisher Content including without limitation for promoting, redistributing in any and all media formats. If you choose to remove your Publisher Content from the GameMaker Feature, this license shall terminate within a commercially reasonable time after such removal;<br/></li><li data-block-key="cstu9">To Users, a non-exclusive, perpetual license to access the content and to use it via authorized means for its intended and authorized purposes. Users shall retain a license to your Publisher Content even after such content is removed from the GameMaker Feature. You may provide your own terms of license for your Publisher Content, however at a minimum they must allow Users to include your Publisher Content as embedded components of digital games and associated marketing.<br/></li></ol></li><li data-block-key="9beie">Financial Terms. You may publish your Publisher Content for free.<br/></li></ol></li><li data-block-key="2hu3m"><b>Educational Institutions.</b> Various educational subscriptions for GameMaker are available to schools or other institutions of learning, licensed under applicable law to teach (‘Educational Institutions’), as further detailed at <a href="https://gamemaker.io/en/education">https://gamemaker.io/en/education</a>.<br/><ol><li data-block-key="f82d5">In the process of opening a GameMaker Account, an authorized representative of the Educational Institution (e.g. a. teacher) (the “Authorized Representative”), shall be required to complete the educational application form on behalf of the Educational Institution and in doing so that Authorized Representative represents and warrants that they have authority and have obtained all approvals and authorizations necessary to bind the Educational Institution to this User Agreement. The Educational Institution shall remain solely responsible for its students’, and its Authorized Representative’s use of GameMaker (including for any content created using GameMaker).<br/></li><li data-block-key="eer8a">Where an approved Educational Institution purchases a GameMaker subscription, Opera grants to that Educational Institution a non-exclusive, non-transferable, revocable, limited, worldwide and royalty-free license for the license duration specified at the time of purchase to use GameMaker for the sole purpose of:<br/><ol><li data-block-key="ft0h9">allowing that Educational Institution’s students to develop and publish Publisher Content (e.g. assets and games); and<br/></li><li data-block-key="fcq0u">distributing the runtime portion of GameMaker in object code format only as an integrated and inseparable part of such Publisher Content to third parties to whom such Publisher Content is licensed, subject in each case to your full compliance with this Terms and payment of all applicable fees.<br/></li></ol></li></ol></li><li data-block-key="vr0a"><b>Vouchers.</b> From time to time we may make vouchers available to our Users. If you receive a voucher, you must use a Game Maker Account in order to redeem it. You may only redeem a Voucher once and within the time period specified therein. Vouchers cannot be exchanged, resold, substituted, transferred onwards (for value or otherwise) or redeemed for cash or credit. We grant you the personal, limited, revocable, non-exclusive ability to use received Vouchers solely as described in these Terms. You have no property interest, right or title in any Vouchers, which remain our property. We reserve the right to manage, regulate, control, modify, remove and/or revoke Vouchers in our sole discretion if we consider any of this necessary for the ongoing operation of our services or for other legitimate reasons, in which case we will have no liability to you or anyone for the exercise of such rights.<br/></li><li data-block-key="be5hb"><b>Restricted Content and use.</b> You are not allowed to publish any content (including User Generated Content), to GameMaker Feature, which is or may be considered threatening, abusive, obscene, racist, xenophobic, sexist, defamatory, pornographic, sexually explicit or otherwise offensive or illegal (‘Restricted Content’) This includes masked words (—), acronyms and abbreviations. Opera reserves a right to remove Restricted Content. By accepting these Terms, you also agree to be bound by the Acceptable Use Policy of GameMaker feature.<br/></li><li data-block-key="f0bma"><b>Notice and Takedown.</b> If you are a rights holder who believes that your content is improperly appearing in the GameMaker Feature, please use our form to Report copyright infringement, We will use this information to investigate your claim and take appropriate action. Report copyright infringement.<br/></li><li data-block-key="e1tc"><b>You or Opera may terminate this agreement.</b> You may terminate this Agreement at any moment by deleting your GameMaker Account. Except as otherwise specified herein, Opera may terminate these Terms at any time on prior notice. Should you violate these Terms or the rights of any third party intellectual property owner or threaten the operation of the GameMaker Feature, Opera may delete your GameMaker Account and terminate the Terms with you unilaterally, through a notification to your email address.<br/></li><li data-block-key="c6lqg"><b>Deleting the GameMaker Account.</b> Your GameMaker Account can be deleted by yourself or automatically after sustained periods of inactivity. Please note that after deleting your GameMaker Account:<br/><ol><li data-block-key="1bubs">Opera will erase your GameMaker Feature personal data to the extent permitted by applicable law;<br/></li><li data-block-key="agpam">you will lose access to any content attributed to your Opera Account, including GameMaker; and<br/></li><li data-block-key="2uc8g">you will no longer receive any notifications related to the GameMaker Feature.<br/></li></ol></li><li data-block-key="e85b"><b>Ceasing to provide the GameMaker Feature or Publisher Content.</b> If we decide to cease providing the GameMaker Feature or Publisher Content, then you will be notified as soon as reasonably possible. If for any reason the Content that you have validly licensed is taken down from GameMaker Feature, we encourage Publishers to notify you and ensure that the relevant Publisher Content 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, Publisher Content will no longer be available unless we notify you otherwise.<br/></li><li data-block-key="5gne1"><b>Contacting Opera Support.</b> You may address support requests, or any other incident or complaint to our customer service team by filling out the form on <a href="https://gamemaker.io/en/contact-us">this link</a>.</li></ol>
</div>
</div>
</div>
</div>
</section>
</div>
<div class="legal-page--other-content mt5">
<section class="simple-block container-fluid wrapper">
<h3 data-block-key="g5ygr">Other Services</h3>
</section>
</div>
<div class="legal-page--other-content mt5">
<section class="container-fluid wrapper accordion section-component " >
<div>
<div class="accordion__block">
<h3 class="text-20 text-md-24 accordion__button ">
GX.gear
</h3>
<div class="accordion__panel">
<div class="text-16 mt5 dark-text-opacity">
<p data-block-key="4obwt">GX.gear is an online store available in selected locations, provided by our affiliates, which aresolely responsible for its operation:</p><ol><li data-block-key="8be6n">If your residence is in the European Union, GX.gear is provided by Opera Software Poland Sp. z o.o. under these <a href="/legal/terms/gxgear">Terms of Service</a>;<br/></li><li data-block-key="5gcvd">If your residence is in the United States, GX.gear is provided by Opera Software Americas LLC under these <a href="https://www.opera.com/legal/terms/gxgear-terms-of-service-us">Terms of Service</a>.</li></ol>
</div>
</div>
</div>
<div class="accordion__block">
<h3 class="text-20 text-md-24 accordion__button ">
Opera Rewards Points
</h3>
<div class="accordion__panel">
<div class="text-16 mt5 dark-text-opacity">
<p data-block-key="hu06f"><i>Last updated: October 9, 2025</i></p><p data-block-key="8qho1">The Opera Rewards Points is a rewards program made available only to Opera Mini users in qualifying countries who downloaded Opera Mini on October 10, 2025 or later. The Opera Reward Points is enabled by default, you may always opt out in the settings section. With Opera Rewards Points you may participate in multiple activities and earn Opera Points exchangeable to different prizes. By using Opera Points feature you agree to be bound by these Terms that govern your use of Opera Points feature. Please read the Terms carefully.</p><ol><li data-block-key="95sap"><b>Earning Opera Points.</b> You can earn Opera Points when participating in certain qualifying activities under specified terms and conditions as may be made available in Opera Mini.</li><li data-block-key="6gpsi"><b>Redeeming Opera Points.</b> Opera Points you have earned must be redeemed as described below.<ol><li data-block-key="1dmdr">Opera Points are redeemable only within Opera Mini Opera Points may not be redeemed and will not be accepted by any third party;</li><li data-block-key="eumnl">Once redeemed, the Opera Points are not refundable;</li><li data-block-key="ftc82">In order to redeem Opera Points you need to perform qualifying tasks in Opera Mini. Then Opera Points may be redeemed according to applicable prizes;</li><li data-block-key="fk9jl">Opera Points you collected will expire 24 months after the moment you earned them;</li><li data-block-key="j0ta">Opera Points are not redeemable if Opera determines in its sole discretion that: (i) you have abused IT systems to perform activities, or affect the integrity, confidentiality, or availability of the Opera Points feature data in any way; (ii) you attempted to circumvent any of the security mechanisms of the Opera Points feature.</li></ol></li><li data-block-key="3vrg1"><b>You or Opera may terminate this Agreement.</b> You may terminate this Agreement at any moment by opting out from Opera Rewards Points . Except as otherwise specified herein, Opera may terminate these Terms at any time on prior notice. Should you violate these Terms or threaten the operation of the Opera Rewards Points, Opera may delete your Opera Rewards Points account and terminate these Terms with you unilaterally, through a nin-app notification. Your right to redeem Opera Points will expire upon termination. Termination of these Terms does not affect your use of other Services provided by Opera and the general Terms of Service will still apply to your use of such other Services.</li><li data-block-key="1gdh6"><b>Deleting the Opera Points feature account.</b> Your Opera Points feature account can be deleted by yourself anytime or automatically after 2 years of inactivity. Please note that after deleting your Opera Rewards Points account: (i) Opera will erase your Opera Rewards Points personal data to the extent permitted by applicable law; (ii) you will lose access to information about your Opera Points; (iii) you may no longer collect and will lose your Opera Points that were not redeemed (even if they were redeemable); and (iv) you will no longer receive any notifications related to the Opera Rewards Points.</li><li data-block-key="25a8a"><b>Contacting Opera support.</b> You may address support requests, or any other incident or complaint to our customer service team by sending an email to <a href="mailto:sw-help@opera.com">sw-help@opera.com</a></li></ol>
</div>
</div>
</div>
</div>
</section>
</div>
</main>
<footer class="hf hf__footer">
<div class="wrapper container-fluid">
<div class="breadcrumbs">
<div class="breadcrumbs__container">
<div class="breadcrumbs__crumb breadcrumbs__logo breadcrumbs__sep">
<a href="/" aria-label="Back to Main Page">
<i class="icon-component "
data-icon-name="Opera monocolor"
data-icon-type="Logo"
data-icon-alt="Opera monocolor"
data-icon-width=""></i>
</a>
</div>
<ol itemscope itemtype="https://schema.org/BreadcrumbList">
<li itemprop="itemListElement" itemscope
itemtype="https://schema.org/ListItem" class="breadcrumbs__sep">
<div class="breadcrumbs__crumb">
<a itemprop="item" href="/legal">
<span itemprop="name">Opera Legal Documents</span>
</a>
<meta itemprop="position" content="1"/>
</div>
</li>
<li itemprop="itemListElement" itemscope
itemtype="https://schema.org/ListItem" class="breadcrumbs__sep">
<div class="breadcrumbs__crumb">
<span itemprop="name">Terms Of Service</span>
<meta itemprop="position" content="2"/>
</div>
</li>
</ol>
</div>
</div>
<div class="footer__content">
<div class="row">
<div class="col-xs-12 col-xl-2">
<input id="hf-features-switcher"
class="hf__dd-switcher hf-hide"
type="checkbox">
<h3 class="hf__heading">
<label class="hf__label footer__label hf__label--no-spacing"
for="hf-features-switcher">Features<span></span></label>
</h3>
<div class="hf__dd-content">
<ul class="hf__links list-style--none">
<li>
<a class="hf__link"
href="/features/ad-blocker">
<span>Ad Blocker</span>
</a>
</li>
<li>
<a class="hf__link"
href="/features/free-vpn">
<span>Free VPN</span>
</a>
</li>
<li>
<a class="hf__link"
href="/features/vpn-pro">
<span>VPN Pro</span>
</a>
</li>
<li>
<a class="hf__link"
href="/features/opera-ai">
<span>Opera AI</span>
</a>
</li>
<li>
<a class="hf__link"
href="/features/integrated-messengers">
<span>Built-in Messengers</span>
</a>
</li>
<li>
<a class="hf__link"
href="/features/integrated-social-media">
<span>Built-in Social Media</span>
</a>
</li>
<li class="hf__links__features">
<a class="hf__link hf__link--features"
href="/features">
<span>More features</span>
</a>
</li>
</ul>
</div>
</div>
<div class="col-xs-12 col-xl-2">
<input id="hf-services-switcher"
class="hf__dd-switcher hf-hide"
type="checkbox">
<h3 class="hf__heading">
<label class="hf__label footer__label"
for="hf-services-switcher">Services<span></span></label>
</h3>
<div class="hf__dd-content">
<ul class="hf__links list-style--none">
<li>
<a class="hf__link"
href="/products">
<span>Products</span>
</a>
</li>
<li>
<a class="hf__link"
href="/gaming">
<span>Gaming</span>
</a>
</li>
<li>
<a class="hf__link"
href="https://addons.opera.com"
target="_blank">
<span>Addons</span>
</a>
</li>
<li>
<a class="hf__link"
href="https://auth.opera.com"
target="_blank"
rel="nofollow noopener">
<span>Opera Account</span>
</a>
</li>
<li>
<a class="hf__link"
href="https://addons.opera.com/wallpapers"
target="_blank">
<span>Wallpapers</span>
</a>
</li>
<li>
<a class="hf__link"
href="/ads"
target="_blank">
<span>Opera Ads</span>
</a>
</li>
<li>
<a class="hf__link"
href="/features/browser-ai">
<span>Browser AI</span>
</a>
</li>
<li>
<a class="hf__link"
href="https://www.devicetest.ai/"
target="_blank">
<span>AI Benchmark</span>
</a>
</li>
<li>
<a class="hf__link"
href="/ai/articles">
<span>AI Articles</span>
</a>
</li>
</ul>
</div>
</div>
<div class="col-xs-12 col-xl-2">
<input id="hf-help-switcher"
class="hf__dd-switcher hf-hide"
type="checkbox">
<h3 class="hf__heading">
<label class="hf__label footer__label"
for="hf-help-switcher">Help<span></span></label>
</h3>
<div class="hf__dd-content">
<ul class="hf__links list-style--none">
<li>
<a class="hf__link"
href="/switch-to-opera">
<span>Switch to Opera</span>
</a>
</li>
<li>
<a class="hf__link"
href="/help">
<span>Help & Support</span>
</a>
</li>
<li>
<a class="hf__link"
href="https://blogs.opera.com"
target="_blank">
<span>Opera Blog</span>
</a>
</li>
<li>
<a class="hf__link"
href="https://forums.opera.com"
target="_blank">
<span>Opera Forums</span>
</a>
</li>
<li>
<a class="hf__link"
href="https://help.opera.com/en/faq/"
target="_blank">
<span>FAQ</span>
</a>
</li>
</ul>
</div>
</div>
<div class="col-xs-12 col-xl-2">
<input id="hf-legal-switcher"
class="hf__dd-switcher hf-hide"
type="checkbox">
<h3 class="hf__heading">
<label class="hf__label footer__label"
for="hf-legal-switcher">Legal<span></span></label>
</h3>
<div class="hf__dd-content">
<ul class="hf__links list-style--none">
<li>
<a class="hf__link"
href="/impressum"
rel="nofollow">
<span>Impressum</span>
</a>
</li>
<li>
<a class="hf__link"
href="https://security.opera.com"
target="_blank"
rel="nofollow">
<span>Security</span>
</a>
</li>
<li>
<a class="hf__link"
href="https://www.opera.com/legal/privacy"
target="_blank"
rel="nofollow">
<span>Privacy</span>
</a>
</li>
<li>
<a class="hf__link"
href="https://www.opera.com/legal/cookie-policy"
target="_blank"
rel="nofollow">
<span>Cookie Policy</span>
</a>
</li>
<li>
<span class="hf__link cookie_withdraw block--clickable">
<span>Cookie Consent</span>
</span>
</li>
<li>
<a class="hf__link"
href="https://www.opera.com/legal/eula-computers"
target="_blank"
rel="nofollow">
<span>EULA</span>
</a>
</li>
<li>
<a class="hf__link"
href="https://www.opera.com/legal/terms"
target="_blank"
rel="nofollow">
<span>Terms of Service</span>
</a>
</li>
<li>
<a class="hf__link"
href="https://www.opera.com/legal/environmental-social-and-governance-esg"
target="_blank"
rel="nofollow">
<span>ESG</span>
</a>
</li>
</ul>
</div>
</div>
<div class="col-xs-12 col-xl-2 mb4">
<input id="hf-company-switcher"
class="hf__dd-switcher hf-hide"
type="checkbox">
<h3 class="hf__heading">
<label class="hf__label footer__label"
for="hf-company-switcher">Company<span></span></label>
</h3>
<div class="hf__dd-content">
<ul class="hf__links list-style--none">
<li>
<a class="hf__link"
href="/about">
<span>About Opera</span>
</a>
</li>
<li>
<a class="hf__link"
href="/newsroom">
<span>Press Info</span>
</a>
</li>
<li>
<a class="hf__link"
href="https://jobs.opera.com"
target="_blank">
<span>Jobs</span>
</a>
</li>
<li>
<a class="hf__link"
href="https://investor.opera.com/"
target="_blank">
<span>Investors</span>
</a>
</li>
<li>
<a class="hf__link"
href="/opera/affiliate">
<span>Opera Affiliate</span>
</a>
</li>
<li>
<a class="hf__link"
href="/gx/affiliate">
<span>Opera GX Affiliate</span>
</a>
</li>
<li>
<a class="hf__link"
href="/b2b">
<span>Become a Partner</span>
</a>
</li>
<li>
<a class="hf__link"
href="/contact">
<span>Contact Us</span>
</a>
</li>
</ul>
</div>
</div>
<div class="col-xs-12 col-xl-2">
<a class="hf--brand"
href="/">
<img data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/logo/logo-flat-horizontal.3a48a9c34651.svg"
class="hidden-in-darkmode"
alt="Opera"
style="width: 10.6rem" loading="lazy">
<img data-src="https://cdn-production-opera-website.operacdn.com/staticfiles/assets/images/logo/logo-flat-white-horizontal.35e1a8f1fc3b.svg"
class="hidden-in-lightmode"
alt="Opera"
style="width: 10.6rem" loading="lazy">
</a>
<p class="text-level-5 my-32 my-xl-24">
Innovate and inspire, uncover the unexpected, support open standards.
</p>
<p class="footer__follow-label">Follow us</p>
<div class="footer__social-icons">
<div class="footer__social-box">
<ul class="footer__social-icons ">
<li>
<a class="facebook"
href='https://www.facebook.com/Opera/'
rel="noopener nofollow"
target="_blank"
title="Opera - Facebook">
<svg width="16"
height="16"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<path d="M16 8.04889C16 3.60361 12.4183 0 8 0C3.58172 0 0 3.60361 0 8.04889C0 12.0663 2.92547 15.3962 6.75 16V10.3755H4.71875V8.04889H6.75V6.27562C6.75 4.25837 7.94438 3.1441 9.77172 3.1441C10.6467 3.1441 11.5625 3.3013 11.5625 3.3013V5.28208H10.5538C9.56 5.28208 9.25 5.90257 9.25 6.53972V8.04889H11.4688L11.1141 10.3755H9.25V16C13.0745 15.3962 16 12.0663 16 8.04889Z"
fill="#3C4055"/>
</svg>
</a>
</li>
<li>
<a class="tiktok"
href="https://www.tiktok.com/@opera.browser"
rel="noopener nofollow"
target="_blank"
title="Opera - Tiktok">
<svg xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
viewBox="0 0 16 16"
fill="none">
<path fill-rule="evenodd"
clip-rule="evenodd"
d="M8 16C12.4183 16 16 12.4183 16 8C16 3.58172 12.4183 0 8 0C3.58172 0 0 3.58172 0 8C0 12.4183 3.58172 16 8 16ZM9.93885 10.108C9.93885 11.7554 8.6094 13.0909 6.96943 13.0909C5.32946 13.0909 4 11.7554 4 10.108C4 8.46051 5.32946 7.125 6.96943 7.125C7.01669 7.125 7.06315 7.12825 7.10957 7.1315C7.12402 7.13252 7.13848 7.13353 7.15295 7.13444V8.60441C7.13732 8.60252 7.12177 8.60039 7.10621 8.59825C7.06111 8.59206 7.01604 8.58587 6.96943 8.58587C6.13242 8.58587 5.45389 9.26748 5.45389 10.1083C5.45389 10.9491 6.13242 11.6307 6.96943 11.6307C7.80659 11.6307 8.5459 10.9682 8.5459 10.1272L8.56053 3.27273H9.96044C10.0925 4.53382 11.1047 5.51885 12.3636 5.61131V7.24499H12.3622C12.2824 7.25278 12.2022 7.25687 12.122 7.25723C11.2418 7.25735 10.421 6.81171 9.93885 6.07202V10.108Z"
fill="#3C4055"/>
</svg>
</a>
</li>
<li>
<a class="twitter"
href="https://twitter.com/opera"
rel="noopener nofollow"
target="_blank"
title="Opera - Twitter">
<svg width="16"
height="16"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_170_8027)">
<path fill-rule="evenodd"
clip-rule="evenodd"
d="M8 16C12.4183 16 16 12.4183 16 8C16 3.58172 12.4183 0 8 0C3.58172 0 0 3.58172 0 8C0 12.4183 3.58172 16 8 16ZM11.7405 4L8.76187 7.38784L12 12H9.6176L7.43627 8.89352L4.7056 12H4L7.12347 8.44776L4 4H6.3824L8.44747 6.94102L11.0349 4H11.7405ZM6.04427 4.52063H4.96027L9.95013 11.5049H11.0344L6.04427 4.52063Z"
fill="#3C4055"/>
</g>
<defs>
<clipPath id="clip0_170_8027">
<rect width="16"
height="16"
fill="white"/>
</clipPath>
</defs>
</svg>
</a>
</li>
<li>
<a class="youtube"
href="https://www.youtube.com/opera"
rel="noopener nofollow"
target="_blank"
title="Opera - Youtube">
<svg width="16"
height="16"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
clip-rule="evenodd"
d="M14.2602 3.30587C14.9455 3.47062 15.4859 3.9529 15.6704 4.56475C16.0131 5.6823 16 8.01177 16 8.01177C16 8.01177 16 10.3294 15.6705 11.447C15.4859 12.0588 14.9456 12.5411 14.2602 12.7058C13.0081 13 7.99998 13 7.99998 13C7.99998 13 3.00487 13 1.73974 12.6941C1.05432 12.5294 0.514036 12.047 0.329467 11.4353C0 10.3294 0 8 0 8C0 8 0 5.6823 0.329467 4.56475C0.513914 3.95301 1.0675 3.45885 1.73962 3.29421C2.99169 3 7.99985 3 7.99985 3C7.99985 3 13.0081 3 14.2602 3.30587ZM10.5701 7.99999L6.4054 10.1412V5.85881L10.5701 7.99999Z"
fill="#3C4055"/>
</svg>
</a>
</li>
<li>
<a class="linkedin"
href="https://www.linkedin.com/company/opera-software"
rel="noopener nofollow"
target="_blank"
title="Opera - LinkedIn">
<svg width="16"
height="16"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_170_8026)">
<path fill-rule="evenodd"
clip-rule="evenodd"
d="M0.666667 0C0.298477 0 0 0.298478 0 0.666668V15.3334C0 15.7015 0.298478 16 0.666668 16H15.3334C15.7015 16 16 15.7015 16 15.3334V0.666667C16 0.298477 15.7015 0 15.3334 0H0.666667ZM2.56759 2.90355C2.31048 3.1423 2.18192 3.44533 2.18192 3.81264C2.18192 4.17995 2.3068 4.48482 2.55658 4.72725C2.80635 4.96967 3.13325 5.09088 3.53729 5.09088H3.54831C3.96705 5.09088 4.30497 4.96967 4.56209 4.72725C4.81186 4.49216 4.93674 4.19832 4.93674 3.8457C4.93674 3.45635 4.80818 3.14047 4.55107 2.89804C4.30129 2.66296 3.9744 2.54543 3.57035 2.54543C3.15897 2.54543 2.82471 2.6648 2.56759 2.90355ZM2.32517 6.09364V13.4545H4.77145V6.09364H2.32517ZM8.57311 13.4545H6.12683C6.14152 11.236 6.14887 9.51329 6.14887 8.28648C6.14887 7.05966 6.14152 6.32871 6.12683 6.09364H8.57311V7.14047L8.56209 7.16251H8.57311V7.14047C9.10204 6.32504 9.84033 5.91733 10.788 5.91733C11.6328 5.91733 12.3123 6.19832 12.8266 6.76031C13.3408 7.32229 13.5979 8.1469 13.5979 9.23414V13.4545H11.1516V9.52064C11.1516 8.41136 10.7402 7.85673 9.91747 7.85673C9.60158 7.85673 9.33895 7.94304 9.12959 8.11568C8.92022 8.28831 8.76411 8.49952 8.66127 8.74929C8.6025 8.88886 8.57311 9.08721 8.57311 9.34433V13.4545Z"
fill="#3C4055"/>
</g>
<defs>
<clipPath id="clip0_170_8026">
<rect width="16"
height="16"
fill="white"/>
</clipPath>
</defs>
</svg>
</a>
</li>
<li>
<a class="instagram"
href="https://www.instagram.com/opera/"
rel="noopener nofollow"
target="_blank"
title="Opera - Instagram">
<svg width="16"
height="16"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
clip-rule="evenodd"
d="M2.76005 0.420048C3.26863 0.222309 3.85024 0.0872527 4.70197 0.0484805C5.55564 0.00906211 5.8277 1.52588e-05 8.00097 1.52588e-05C10.1736 1.52588e-05 10.4463 0.00970831 11.2993 0.0484805C12.1504 0.0866065 12.732 0.222309 13.2412 0.420048C13.7666 0.624248 14.2132 0.898238 14.6578 1.34283C15.1024 1.78806 15.3757 2.23394 15.5806 2.75995C15.7783 3.26851 15.9134 3.8501 15.9522 4.70179C15.991 5.55478 16 5.82748 16 8.00002C16 10.1726 15.991 10.4446 15.9522 11.2982C15.9141 12.1499 15.7783 12.7315 15.5806 13.2401C15.3757 13.7661 15.1024 14.2126 14.6578 14.6572C14.2125 15.1018 13.7666 15.3751 13.2406 15.58C12.732 15.7777 12.1504 15.9128 11.2987 15.9516C10.4457 15.991 10.1736 16 8.00032 16C5.8277 16 5.55564 15.9903 4.70197 15.9516C3.85024 15.9128 3.26928 15.7777 2.76005 15.58C2.23337 15.3751 1.78747 15.1018 1.34287 14.6572C0.897613 14.2126 0.624258 13.7661 0.420049 13.2401C0.222303 12.7315 0.087241 12.1499 0.0484672 11.2982C0.00904722 10.4452 0 10.1726 0 8.00002C0 5.82748 0.00904722 5.55478 0.0484672 4.70179C0.087241 3.8501 0.222303 3.26851 0.420049 2.75995C0.624258 2.23329 0.898259 1.78741 1.34287 1.34283C1.78812 0.898238 2.23402 0.624248 2.76005 0.420048ZM4.76813 14.5118C3.98813 14.4762 3.5642 14.3464 3.28244 14.2365C2.90892 14.0911 2.64268 13.9179 2.36221 13.6381C2.08239 13.3583 1.90856 13.0921 1.7638 12.7186C1.65394 12.4368 1.52405 12.0129 1.48851 11.2329C1.44974 10.3896 1.44198 10.1363 1.44198 7.99999C1.44198 5.86364 1.45038 5.61097 1.48851 4.76703C1.52405 3.98706 1.65459 3.5638 1.7638 3.28141C1.9092 2.9079 2.08239 2.64167 2.36221 2.36121C2.64203 2.08141 2.90828 1.90758 3.28244 1.76283C3.5642 1.65297 3.98813 1.52309 4.76813 1.48755C5.61145 1.44877 5.86478 1.44102 8.00057 1.44102C10.137 1.44102 10.3897 1.44942 11.2337 1.48755C12.0137 1.52309 12.4369 1.65362 12.7193 1.76283C13.0929 1.90758 13.3591 2.08141 13.6396 2.36121C13.9194 2.64102 14.0926 2.9079 14.238 3.28141C14.3478 3.56315 14.4777 3.98706 14.5133 4.76703C14.552 5.61097 14.5598 5.86364 14.5598 7.99999C14.5598 10.1357 14.552 10.389 14.5133 11.2329C14.4777 12.0129 14.3472 12.4368 14.238 12.7186C14.0926 13.0921 13.9194 13.3583 13.6396 13.6381C13.3597 13.9179 13.0929 14.0911 12.7193 14.2365C12.4376 14.3464 12.0137 14.4762 11.2337 14.5118C10.3903 14.5506 10.137 14.5583 8.00057 14.5583C5.86478 14.5583 5.61145 14.5506 4.76813 14.5118ZM12.2714 4.68945C11.7408 4.68945 11.3111 4.25907 11.3111 3.72919C11.3111 3.1993 11.7408 2.76958 12.2714 2.76958C12.8019 2.76958 13.2317 3.1993 13.2317 3.72919C13.2317 4.25907 12.8013 4.68945 12.2714 4.68945ZM3.892 7.99999C3.892 10.2688 5.73117 12.1079 8.00009 12.1079C10.269 12.1079 12.1082 10.2688 12.1082 7.99999C12.1082 5.73117 10.269 3.89208 8.00009 3.89208C5.73117 3.89208 3.892 5.73117 3.892 7.99999ZM5.33393 7.99999C5.33393 6.52729 6.52751 5.33311 8.00027 5.33311C9.47303 5.33311 10.6673 6.52729 10.6673 7.99999C10.6673 9.47269 9.47303 10.6669 8.00027 10.6669C6.52751 10.6669 5.33393 9.47269 5.33393 7.99999Z"
fill="#3C4055"/>
</svg>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="footer__bottom">
<div class="footer__company-box center-xs start-xl">
<p class="footer__company-box-p">© 1995-2026 Opera Norway </p>
<p class="footer__company-box-p">All rights reserved</p>
</div>
<div class="footer__lang-box">
<p class="footer__lang-box-label">Language:</p>
<form action="/i18n/setlang/"
method="post">
<input id="footer__lang-input-next"
name="next"
type="hidden"
value="https://www.opera.com/legal/terms"/>
<select id="footer__lang-selector"
class="footer__lang-selector"
name="language"
aria-label="Language"
onchange="this.form.submit()">
<option value="en"
selected="selected">
English
</option>
<option value="de">
Deutsch
</option>
<option value="es">
Español
</option>
<option value="es-419">
Español Latinoamérica
</option>
<option value="fr">
Français
</option>
<option value="id">
Bahasa Indonesia
</option>
<option value="it">
Italiano
</option>
<option value="ja">
日本語
</option>
<option value="ko">
한국어
</option>
<option value="nb">
Norsk (bokmål)
</option>
<option value="pl">
Polski
</option>
<option value="pt">
Português
</option>
<option value="pt-br">
Português Brasileiro
</option>
<option value="ru">
Русский
</option>
<option value="tr">
Türkçe
</option>
<option value="uk">
Українська
</option>
<option value="vi">
Tiếng Việt
</option>
<option value="zh-cn">
简体中文
</option>
</select>
</form>
</div>
</div>
</div>
</footer>
<div id="cookie-consent" class="cookie-consent__wrapper flex flex-direction--column justify-content--center">
<div class="cookie-consent__advanced cookie-consent__inner text-align--left">
<div class="popup">
<p class="cookie-consent__head">
<span class="text-18 font-weight--900">Cookies</span>
</p>
<div class="cookie-consent__body">
<div class="row middle-xs ">
<div class="col-xs-9">
<p class="heading text-14 my0 font-weight--700">Necessary cookies</p>
</div>
<div class="col-xs-3 end-xs">
<div class="cookie-consent__switch active always_on"></div>
</div>
</div>
<p class="mt3 mb0">
Necessary cookies are required for site functionality. The optional Marketing and Analytics cookies help us measure campaigns, and allow our partners, including Google, to provide relevant <a href="https://business.safety.google/privacy/" target="_blank" rel="nofollow noopener">advertising and personalization</a>.
</p>
<hr class="my3"/>
<div class="row middle-xs ">
<div class="col-xs-9">
<p class="heading text-14 my0 font-weight--700">Marketing cookies</p>
</div>
<div class="col-xs-3 end-xs">
<div class="cookie-consent__switch marketing_option_switch"></div>
</div>
</div>
<div class="row middle-xs mt2">
<div class="col-xs-9">
<p class="heading text-14 my0 font-weight--700">Analytics cookies</p>
</div>
<div class="col-xs-3 end-xs">
<div class="cookie-consent__switch analytics_option_switch"></div>
</div>
</div>
<p class="mt3 mb0">
By accepting, you consent to the use of cookies for the purposes specified. You can withdraw your consent and stop sharing this data anytime by clicking “Cookie Consent” at the bottom of Opera’s webpage.
</p>
<p class="mt3 mb0">
Further information can be found in our <a rel="nofollow" target="_blank" href="https://www.opera.com/legal/privacy">Privacy Statement</a> and <a rel="nofollow" target="_blank" href="https://www.opera.com/legal/cookie-policy">Cookie Policy</a>.
</p>
</div>
<div class="cookie-consent__footer text-level-5 text-align--center">
<div class="button-component cookie-selection__btn mobile button-component__v-basic-light"
role="button">
<span class="text center-xs ">Accept selection</span>
</div>
<div class="button-component cookie-all__btn mobile mt-16 button-component__v-basic"
role="button">
<span class="text center-xs ">Accept all</span>
</div>
</div>
</div>
</div>
</div>
<script>
isOfaPromise.then(() => {if (isOfa) document.getElementById('cookie-consent').remove()});
</script>
<script defer=true src="https://cdn-production-opera-website.operacdn.com/staticfiles/traffic.fa1e9a35091f.js"></script>
<script defer=true src="https://cdn-production-opera-website.operacdn.com/staticfiles/runtime-opera.859fb6b88ebd.js"></script>
<script defer=true src="https://cdn-production-opera-website.operacdn.com/staticfiles/vendors-opera.50c621ac0d9e.js"></script>
<script defer=true src="https://cdn-production-opera-website.operacdn.com/staticfiles/common-opera.d442dc1f8667.js"></script>
<script defer=true src="https://cdn-production-opera-website.operacdn.com/staticfiles/main.35e846c97cdc.js"></script>
<!-- Google Tag Manager (noscript) -->
<noscript>
<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-PRBZ42F"
height="0"
width="0"
style="display:none;visibility:hidden"></iframe>
</noscript>
<!-- End Google Tag Manager (noscript) -->
</body>
</html>
|