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
|
<!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>Opera EULA for Computers</title>
<meta name="description" content="Opera EULA for Computers">
<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="Opera EULA for Computers">
<meta property="og:image" content="">
<meta property="og:description" content="Opera EULA for Computers">
<meta property="og:type" content="website">
<meta property="og:url" content="https://www.opera.com/legal/eula-computers">
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@opera">
<meta name="twitter:title" content="Opera EULA for Computers">
<meta name="twitter:description" content="Opera EULA for Computers">
<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="h8qjb">EULA: Opera for Computers</h2><p data-block-key="5lg8v"><i>Last updated: October 16, 2020</i></p><p data-block-key="7na03">This end user license agreement (“EULA”) governs your download and/or use of the executable code for the Opera for Computers desktop software application, including any update or upgrade thereto (“Software”). This EULA forms a binding contract between you and Opera Norway AS, a Norwegian company with an address at P.O. Box 4214 Nydalen, NO-0401 Oslo, Norway (“Opera”).</p><ol><li data-block-key="25mg9"><b>This is a contract.</b> This EULA constitutes a contract between you and Opera. You may not use the Software if you do not accept the terms in this EULA. By downloading and/or using the Software, you agree to be bound by all the terms and conditions set forth in this EULA. If you are under thirteen (13) years of age, or at least thirteen (13) years of age but a minor where you live, you must have your parent or legal guardian accept this EULA on your behalf and approve your use of the Software.<br/></li><li data-block-key="ajp0f"><b>You are only granted a limited license to use the Software.</b> Subject to the terms and conditions of this EULA, Opera hereby grants you a personal, limited, non-exclusive, non-transferable, non-sublicensable license to:<ol><li data-block-key="b62j1">use the executable code version of the Software solely as installed on your personal computer; and</li><li data-block-key="c3q2g">reproduce and distribute the Software solely as included in an application repository for a desktop open source operating system distribution PROVIDED THAT in all cases the Software is distributed:<ol><li data-block-key="54jpe">without modification;</li><li data-block-key="oo36">free of charge to end-users; and</li><li data-block-key="b7jt0">with a copy of this EULA. Distribution for embedded open source operating systems is not permitted. For the avoidance of doubt, the Software must be distributed without modification (including as to the default search engine(s) in the Software settings), both at the time of distribution as well as after the Software is installed.<br/><br/> You may only use the Software as expressly authorized in this Section 2.<br/></li></ol></li></ol></li><li data-block-key="3oga1"><b>You must respect our rights in the Software.</b> Unless expressly permitted by law, you may not copy, decompile, reverse engineer, disassemble, attempt to derive the source code of, modify, or create derivative works of the Software. You may not remove, obscure, or alter any copyright notice or other proprietary rights notices affixed to or contained within the Software. You may not separate the component programs of the Software for use on different computers or sublicense, lease, rent, loan, or distribute the Software to any third party. You may not permit, direct or authorize any third party to take any action with respect to the Software which is inconsistent with the terms set forth in this EULA.<br/></li><li data-block-key="59cnl"><b>The Software contains our valuable intellectual property.</b> You acknowledge and agree that the Software, including its sequence, structure, organization, source code and applicable documentation, contains valuable trade secrets and other intellectual property of Opera and its suppliers. The Software is licensed and not sold to you, and no title or ownership to such Software or the intellectual property rights embodied therein is granted to you. The Software is the exclusive property of Opera and its suppliers, and all rights in and to the Software not expressly granted to you in this Agreement are reserved. Nothing in this EULA will be deemed to grant, by implication, estoppel or otherwise, a license under any existing or future patents of Opera, except to the extent necessary for you to use the Software as expressly permitted under this EULA. You acknowledge and agree that any actual or threatened breach of this EULA will constitute immediate, irreparable harm to Opera for which monetary damages would be an inadequate remedy, and that injunctive relief is an appropriate remedy for any such breach or violation.<br/></li><li data-block-key="53k2i"><b>Components from third parties may be delivered along with the Software.</b> The Software is delivered along with certain software components provided by third parties (“Third Party Software”). Opera shall not be responsible for any such Third-Party Software. Third-Party Software, particularly open source software, may be subject to separate license terms included with, or contained in the setup installation segments of such Third-Party Software. The terms set forth in this EULA do not apply to Third-Party Software to the extent they are inconsistent with such Third-Party Software licenses. This EULA governs your use of the Software in executable form. Source code for any open source Third-Party Software delivered along with the Software can be obtained at <a href="https://sourcecode.opera.com/">https://sourcecode.opera.com</a> or by sending an email message to <a href="mailto:opensource@opera.com">opensource@opera.com</a>.<br/></li><li data-block-key="71kak"><b>The Software may provide for access to additional services.</b> Various services may be offered where available via or as integrated into the Software (“Services”). By using any such Services, you agreed to the terms of service at <a href="https://www.opera.com/legal/terms">https://www.opera.com/legal/terms</a> (“Terms of Service”). The Terms of Service are incorporated into this EULA by this reference. As is more fully explained in the Terms of Service, some Services are offered by Opera, others by third parties (which may be subject to separate terms – please refer to the Terms of Service for more information). Opera reserves the right at any time and from time to time to modify or discontinue, temporarily or permanently, the Services (or any part thereof) 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.<br/></li><li data-block-key="1m0gu"><b>Our Software and Services are ad-supported.</b> The Software is free to download and 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 Software and Services for free, we will display the advertisements of select partners to you. By using our Software and Services, you consent to the placement of such advertisements within the Software and Services.<br/></li><li data-block-key="e2fup"><b>Your privacy is important to us.</b> Opera takes the protection and security of its users’ information very seriously and will treat any and all such information in accordance with our privacy statement, which is currently posted at <a href="https://www.opera.com/legal/privacy">https://www.opera.com/legal/privacy</a> (“Privacy Statement”). The Privacy Statement is incorporated into this EULA by this reference. You agree to the use of your data in accordance with the Privacy Statement.<br/></li><li data-block-key="amm5u"><b>Your license to use the Software terminates if you breach this EULA.</b> This EULA will commence upon your download of the Software and continue in perpetuity unless terminated earlier as provided herein. This EULA will immediately terminate upon your breach of any of the terms or conditions set forth herein. Upon the termination of the EULA, you will discontinue all use of the Software, promptly destroy or have destroyed the Software and any copies thereof, and, upon request by Opera, certify in writing that such destruction has taken place. These remedies are cumulative and in addition to any other remedies which may be available. Section 1, as well as Sections 3 through 14 of this EULA shall survive termination.<br/></li><li data-block-key="7nnis"><b>The Software is provided without any warranties or guarantees.</b> THE SOFTWARE IS PROVIDED “AS IS”, AND OPERA DISCLAIMS ALL WARRANTIES WITH REGARD TO THE SOFTWARE WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR USE, SATISFACTORY QUALITY, OR QUIET ENJOYMENT. OPERA DOES NOT WARRANT THAT THE USE OF THE SOFTWARE WILL BE UNINTERRUPTED OR ERROR FREE OR THAT THE SOFTWARE DOES NOT CONTAIN ANY VIRUSES. THIS WARRANTY DISCLAIMER IS A FUNDAMENTAL ELEMENT OF THE BASIS OF THE BARGAIN BETWEEN YOU AND OPERA. OPERA WOULD NOT PROVIDE THE SOFTWARE ABSENT SUCH DISCLAIMER. NO REPRESENTATIONS OR WARRANTIES ARE MADE BY ANY OF OPERA’S CUSTOMERS OR SUPPLIERS UNDER OR BY VIRTUE OF THIS AGREEMENT. IF YOU ARE DISSATISFIED WITH ANY PORTION OF THE SOFTWARE, OR WITH ANY OF THESE TERMS, YOUR SOLE AND EXCLUSIVE REMEDY IS TO DISCONTINUE USING THE SOFTWARE.<br/></li><li data-block-key="cr8ds"><b>Opera is not liable for any damages you may incur.</b> IN NO EVENT SHALL OPERA, ITS AFFILIATES, OR THEIR RESPECTIVE SUPPLIERS OR CUSTOMERS BE LIABLE FOR ANY INCIDENTAL, SPECIAL, CONSEQUENTIAL, OR INDIRECT DAMAGES OF ANY KIND (INCLUDING WITHOUT LIMITATION DAMAGES FOR INTERRUPTION OF BUSINESS, LOST DATA, LOST PROFITS, OR THE LIKE) REGARDLESS OF THE FORM OF ACTION, WHETHER IN CONTRACT, TORT (INCLUDING WITHOUT LIMITATION NEGLIGENCE), PRODUCT LIABILITY, OR OTHER THEORY, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. IN NO EVENT WILL THE CUMULATIVE LIABILITY OF OPERA ARISING OUT OF OR RELATED TO THIS AGREEMENT EXCEED THE AMOUNT PAID TO OPERA IN RESPECT OF THE SOFTWARE GIVING RISE TO THE CLAIM OR, IF NO FEES WERE PAID, THEN FIVE HUNDRED EUROS. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THE FOREGOING EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. THIS LIMITATION OF LIABILITY WILL APPLY NOTWITHSTANDING THE FAILURE OF ESSENTIAL PURPOSE OF ANY LIMITED REMEDY SET FORTH HEREIN. THIS LIMITATION OF LIABILITY IS A FUNDAMENTAL ELEMENT OF THE BASIS OF THE BARGAIN BETWEEN YOU AND OPERA. OPERA WOULD NOT PROVIDE THE SOFTWARE TO YOU ABSENT SUCH LIMITATION.<br/></li><li data-block-key="5n13h"><b>This contract is based on Norwegian law.</b> This EULA will be 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 this Agreement. All actions or proceedings arising under or related to this Agreement must be brought in the Oslo City Court, and you hereby agree to irrevocably submit to the exclusive jurisdiction and venue of any such court in all such actions or proceedings. Notwithstanding this, you agree that Opera shall still be allowed to apply for injunctive remedies (or an equivalent type of urgent legal relief) in any jurisdiction. If any provision of this EULA is determined by a court of competent jurisdiction to be invalid, illegal, or unenforceable, the remaining provisions of this EULA shall not be affected or impaired thereby.<br/></li><li data-block-key="5se4d"><b>Opera may modify these Terms.</b> Opera may update the terms of this EULA, the Privacy Statement or the Terms of Service. The current version of this EULA is posted at <a href="https://www.opera.com/legal/eula-computers">https://www.opera.com/legal/eula-computers</a>, the latest version of the Privacy Statement is posted at <a href="https://www.opera.com/legal/privacy">https://www.opera.com/legal/privacy</a>, and the Terms of Service are posted at <a href="https://www.opera.com/legal/terms">https://www.opera.com/legal/terms</a>. It is your responsibility to remain informed of any changes as you are bound by the latest version of the EULA, Privacy Statement and Terms of Service.<br/></li><li data-block-key="2fkme"><b>General.</b> You acknowledge and agree that the Software may contain cryptographic functionality the export of which may be restricted under applicable export control law. You will comply with all applicable laws and regulations in your activities with regard to the Software. You will not export or re-export the Software in violation of such laws or regulations or without all required licenses and authorizations. You may not assign or transfer this contract without obtaining Opera’s prior written consent, and any purported assignment or transfer in violation of this restriction will be null and void.</li></ol>
</div>
</section>
</main>
<footer class="hf hf__footer">
<div class="wrapper container-fluid">
<div class="breadcrumbs">
<div class="breadcrumbs__container">
<div class="breadcrumbs__crumb breadcrumbs__logo breadcrumbs__sep">
<a href="/" 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">End User License Agreement</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/eula-computers"/>
<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>
|