This repository was archived by the owner on Dec 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.html
1446 lines (1446 loc) · 112 KB
/
example.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<html>
<head>
<title>
Twitch Prime
</title>
<meta content="width=device-width,initial-scale=1,shrink-to-fit=no" name="viewport"/>
<meta content="#000000" name="theme-color"/>
<link href="https://d2u4zldaqlyj2w.cloudfront.net/46a54cf8-e752-49bb-8930-afacf493618b/favicon.ico" rel="shortcut icon"/>
<link href="https://d2u4zldaqlyj2w.cloudfront.net/46a54cf8-e752-49bb-8930-afacf493618b/css/main.css" rel="stylesheet"/>
<meta content="" name="description"/>
<meta content="text/html; charset=utf-8" http-equiv="content-type"/>
<meta content="IE=Edge" http-equiv="X-UA-Compatible"/>
<meta content="Twitch Prime" property="og:title"/>
<meta content="https://m.media-amazon.com/images/G/01/sm/shared/social_image._CB515596769_.jpg" property="og:image"/>
<meta content="Twitch Prime" property="og:image:alt"/>
<script charset="utf-8" src="https://d2u4zldaqlyj2w.cloudfront.net/46a54cf8-e752-49bb-8930-afacf493618b/js/core.locales.en-US.js">
</script>
<link href="https://d2u4zldaqlyj2w.cloudfront.net/46a54cf8-e752-49bb-8930-afacf493618b/css/pages.prime-root.css" rel="stylesheet" type="text/css"/>
<script charset="utf-8" src="https://d2u4zldaqlyj2w.cloudfront.net/46a54cf8-e752-49bb-8930-afacf493618b/js/pages.prime-root.js">
</script>
<script charset="utf-8" src="https://d2u4zldaqlyj2w.cloudfront.net/46a54cf8-e752-49bb-8930-afacf493618b/js/vendor.js">
</script>
<link href="https://d2u4zldaqlyj2w.cloudfront.net/46a54cf8-e752-49bb-8930-afacf493618b/css/pages.prime-base-page.css" rel="stylesheet" type="text/css"/>
<script charset="utf-8" src="https://d2u4zldaqlyj2w.cloudfront.net/46a54cf8-e752-49bb-8930-afacf493618b/js/pages.prime-base-page.js">
</script>
<link href="https://d2u4zldaqlyj2w.cloudfront.net/46a54cf8-e752-49bb-8930-afacf493618b/css/components.prime-upsell-list.css" rel="stylesheet" type="text/css"/>
<script charset="utf-8" src="https://d2u4zldaqlyj2w.cloudfront.net/46a54cf8-e752-49bb-8930-afacf493618b/js/components.prime-upsell-list.js">
</script>
</head>
<body>
<input name="csrf-key" type="hidden" value="gkFRjOa5/0CCBL12OZakyEdP9iFQTwbyYJT7qCUAAAACAAAAAF1vRchyYXcAAAAA+8jokd9rqj+wHxPcX6iU"/>
<div id="root">
<div class="prime-root tw-flex tw-flex-column tw-full-height tw-relative tw-root--hover tw-root--theme-dark" data-test-selector="prime-root">
<main class="tw-flex-grow-1 tw-full-height tw-full-width tw-relative">
<div class="prime-main tw-full-height" data-test-selector="prime-main">
<div class="tw-flex tw-flex-column tw-justify-content-between tw-relative twitch-prime-base">
<div class="tw-absolute tw-flex tw-md-hide tw-z-above" data-test-selector="hamburger-menu">
<div class="tw-c-text-overlay tw-flex tw-pd-2">
<button class="tw-interactive tw-button tw-button--overlay tw-button--text">
<span class="tw-button__icon">
<figure class="tw-svg">
<svg class="tw-svg__asset tw-svg__asset--hamburgermenu tw-svg__asset--inherit" height="20px" version="1.1" viewbox="0 0 21 12" width="20px" x="0px" y="0px">
<g>
<rect height="2" width="21" x="0" y="0">
</rect>
<rect height="2" width="21" x="0" y="5">
</rect>
<rect height="2" width="21" x="0" y="10">
</rect>
</g>
</svg>
</figure>
</span>
</button>
</div>
<div class="tw-block tw-pd-t-2" data-test-selector="prime-logo-block">
<div class="prime-logo-block tw-align-items-center tw-c-text-overlay tw-flex">
<div class="prime-logo-block__twitch-prime-logo tw-pd-r-2">
<figure class="tw-svg" data-test-target="twitch-prime-logo">
<svg class="tw-svg__asset tw-svg__asset--logotwitchprime tw-svg__asset--inherit" height="30px" version="1.1" viewbox="0 0 304 147" width="62px" x="0px" y="0px">
<g>
<path d="M289.2 110.3c.8-.5 1.2-1.5 1.2-2.4 0-2.1-1.3-3.2-3.8-3.2-3.3 0-5.2 2-5.7 6 1.5.3 3 .4 4.5.4 1.3.1 2.6-.2 3.8-.8z">
</path>
<path d="M287.9 15H269V0h-33.1l-15.6 15H203l-8 9.3V15h-16V0h-59v15H48.5L32.9 0H0v69.4L15.6 85l26 15h22.5v-2.9l8.7 2.9h42l7.4-8.1 1 8.1h27.5l.6-8.1 6.7 5.4v48c-.1.9.6 1.7 1.5 1.7h15.2c.9-.1 1.7-.8 1.8-1.8l1.6-8.2h1.6c3.8 0 7.4-1.9 9.6-5 0 0-.8 2.699976-1.1 3.599976-.2.5 0 .700024.5.900024.133333.333333 5.266667.5 15.4.5 1 .2 1.9-.500024 2.1-1.400024L207.5 132s.7 2.699976.9 3.599976c.1.9.9 1.500024 1.8 1.400024H266c2.5 0 2.7-.799976 3.5-1.599976 2.7.8 5.2 1.399976 7.8 1.599976 16.9.9 23.7-6.6 24-9.9.1-.8 2.2-13.2.8-21.1-1-5.8-6.6-11.4-15.9-11.4L304 83.2v-52L287.9 15zM26 41v18h16v19H19.1L6.9 65.9v-59H26V22h16v19H26zm81.5 37H49V22h19v37h7V22h19v37h7V22h19v44l-12.5 12zm19.5 0V22h19v56h-19zm19-62h-19V6.9h19V16zm7 49.9v-59h19V22h16v19h-16v18h16v19h-23.2L153 65.9zm32.1 59.4c-1.6 1.1-3.6 1.7-5.6 1.7-1.4 0-2.7-.2-4-.7-1.2-.4-2.3-1-3.2-1.8v11.2c.1.6-.2 1.1-.8 1.3h-5.4c-.4 0-.7-.1-1-.3-.2-.3-.3-.6-.3-1v-34.1c0-.4.1-.7.3-1 .3-.2.6-.3 1-.3h3.7c.7-.1 1.3.4 1.4 1.1l.4 1.3c1.1-1 2.3-1.8 3.7-2.4 1.4-.6 2.9-.9 4.4-.9 3-.1 6 1.2 7.8 3.6 1.9 2.4 2.9 5.7 2.9 9.8 0 2.7-.4 5.2-1.4 7.6-.8 1.9-2.2 3.6-3.9 4.9zM206.3 22H236v19h-22v18h22v19h-29.7L195 65.9V34.7L206.3 22zm5.6 84.6c-.3.2-.6.4-1 .3h-2.3c-1 0-1.9.1-2.9.3-1 .2-1.9.5-2.9.8v17.1c0 .4-.1.7-.3 1-.3.2-.6.3-1 .3h-4.9c-.6.1-1.2-.3-1.3-.9v-24c0-.4.1-.7.3-1 .3-.2.6-.3 1-.3h3.7c.7-.1 1.3.4 1.4 1.1l.7 2.8c1.1-1.3 2.4-2.4 3.8-3.2 1.2-.6 2.5-.9 3.8-.9h.7c.4 0 .7.1 1 .3.2.3.4.6.3 1l.2 4.3c0 .4-.1.7-.3 1zm11 19.5c-.3.2-.6.4-1 .3H217c-.6.1-1.2-.3-1.3-.9v-24c0-.4.1-.7.3-1 .3-.2.6-.3 1-.3h4.9c.6-.1 1.1.2 1.3.8v24.1c0 .4-.1.7-.3 1zm-6.5-30.9c-1.6-1.6-1.6-4.2 0-5.8 1.8-1.4 4.4-1.4 6.2 0 1.6 1.6 1.6 4.1 0 5.8-1.8 1.4-4.4 1.4-6.2 0zm52.9 29.9c0 .4-.1.7-.3 1-.3.2-.6.3-1 .3h-4.9c-.6.1-1.2-.3-1.3-.9V108.7c0-2.3-1-3.5-3.1-3.5-1.9 0-3.8.5-5.6 1.3V125c0 .4-.1.7-.3 1-.3.2-.6.4-1 .3H247c-.6.1-1.2-.3-1.3-.9V108.6c0-2.3-1-3.5-3.1-3.5-2 0-3.9.5-5.6 1.4V125c0 .4-.1.7-.3 1-.3.2-.6.3-1 .3h-4.9c-.6.1-1.2-.3-1.3-.9v-24c0-.4.1-.7.3-1 .3-.2.6-.3 1-.3h3.7c.7-.1 1.3.4 1.4 1.1l.4 1.4c1.5-1 3.2-1.9 4.9-2.5 1.4-.5 2.9-.7 4.5-.7 3.1 0 5.2 1.1 6.5 3.3 1.5-1 3.2-1.9 4.9-2.5 1.5-.5 3.1-.8 4.8-.8 2-.1 4 .6 5.5 2 1.4 1.5 2.1 3.5 2 5.6v18l-.1.1zm17.8-25.6c3.2 0 5.6.8 7.4 2.3 1.8 1.5 2.8 3.8 2.7 6.1.1 2.3-1 4.5-2.9 5.8-1.9 1.3-4.8 2-8.5 2-1.7 0-3.4-.2-5.1-.6.2 2.3.9 3.9 2.1 4.9 1.6 1.1 3.4 1.6 5.3 1.5.9 0 1.9-.1 2.8-.2 1.3-.2 2.5-.5 3.8-.8l.3-.1h.3c.6 0 .9.4.9 1.2v2.4c0 .4 0 .8-.2 1.1-.2.3-.5.5-.9.6-2.5 1-5.2 1.4-7.9 1.4-4.2 0-7.5-1.2-9.7-3.5-2.3-2.3-3.4-5.6-3.4-10s1.2-7.9 3.5-10.4c2.2-2.4 5.4-3.7 9.5-3.7zM278 78V41h-16v37h-19V6.9h19V22h22.3L297 34.7V78h-19z">
</path>
<path d="M177.3 105.1c-1.8 0-3.5.5-5 1.4v13.4c1.5.9 3.2 1.4 5 1.4 1.6.1 3.2-.6 4.2-1.9.9-1.3 1.3-3.3 1.3-6.1s-.4-4.9-1.3-6.2c-.9-1.4-2.5-2.1-4.2-2z">
</path>
</g>
</svg>
</figure>
</div>
</div>
</div>
</div>
<div class="tw-flex tw-full-height">
<div class="tw-fixed tw-full-height tw-hide tw-md-block tw-z-above twitch-prime-base__side-nav" data-test-selector="side-nav">
<div class="side-nav tw-c-background-nav tw-c-text-overlay tw-flex tw-flex-column tw-full-height" data-a-target="side-nav">
<div class="tw-pd-b-2 tw-pd-l-3 tw-pd-r-3 tw-pd-t-3">
<div class="prime-logo-block tw-align-items-center tw-c-text-overlay tw-flex">
<div class="prime-logo-block__twitch-prime-logo tw-pd-r-2">
<figure class="tw-svg" data-test-target="twitch-prime-logo">
<svg class="tw-svg__asset tw-svg__asset--logotwitchprime tw-svg__asset--inherit" height="40px" version="1.1" viewbox="0 0 304 147" width="83px" x="0px" y="0px">
<g>
<path d="M289.2 110.3c.8-.5 1.2-1.5 1.2-2.4 0-2.1-1.3-3.2-3.8-3.2-3.3 0-5.2 2-5.7 6 1.5.3 3 .4 4.5.4 1.3.1 2.6-.2 3.8-.8z">
</path>
<path d="M287.9 15H269V0h-33.1l-15.6 15H203l-8 9.3V15h-16V0h-59v15H48.5L32.9 0H0v69.4L15.6 85l26 15h22.5v-2.9l8.7 2.9h42l7.4-8.1 1 8.1h27.5l.6-8.1 6.7 5.4v48c-.1.9.6 1.7 1.5 1.7h15.2c.9-.1 1.7-.8 1.8-1.8l1.6-8.2h1.6c3.8 0 7.4-1.9 9.6-5 0 0-.8 2.699976-1.1 3.599976-.2.5 0 .700024.5.900024.133333.333333 5.266667.5 15.4.5 1 .2 1.9-.500024 2.1-1.400024L207.5 132s.7 2.699976.9 3.599976c.1.9.9 1.500024 1.8 1.400024H266c2.5 0 2.7-.799976 3.5-1.599976 2.7.8 5.2 1.399976 7.8 1.599976 16.9.9 23.7-6.6 24-9.9.1-.8 2.2-13.2.8-21.1-1-5.8-6.6-11.4-15.9-11.4L304 83.2v-52L287.9 15zM26 41v18h16v19H19.1L6.9 65.9v-59H26V22h16v19H26zm81.5 37H49V22h19v37h7V22h19v37h7V22h19v44l-12.5 12zm19.5 0V22h19v56h-19zm19-62h-19V6.9h19V16zm7 49.9v-59h19V22h16v19h-16v18h16v19h-23.2L153 65.9zm32.1 59.4c-1.6 1.1-3.6 1.7-5.6 1.7-1.4 0-2.7-.2-4-.7-1.2-.4-2.3-1-3.2-1.8v11.2c.1.6-.2 1.1-.8 1.3h-5.4c-.4 0-.7-.1-1-.3-.2-.3-.3-.6-.3-1v-34.1c0-.4.1-.7.3-1 .3-.2.6-.3 1-.3h3.7c.7-.1 1.3.4 1.4 1.1l.4 1.3c1.1-1 2.3-1.8 3.7-2.4 1.4-.6 2.9-.9 4.4-.9 3-.1 6 1.2 7.8 3.6 1.9 2.4 2.9 5.7 2.9 9.8 0 2.7-.4 5.2-1.4 7.6-.8 1.9-2.2 3.6-3.9 4.9zM206.3 22H236v19h-22v18h22v19h-29.7L195 65.9V34.7L206.3 22zm5.6 84.6c-.3.2-.6.4-1 .3h-2.3c-1 0-1.9.1-2.9.3-1 .2-1.9.5-2.9.8v17.1c0 .4-.1.7-.3 1-.3.2-.6.3-1 .3h-4.9c-.6.1-1.2-.3-1.3-.9v-24c0-.4.1-.7.3-1 .3-.2.6-.3 1-.3h3.7c.7-.1 1.3.4 1.4 1.1l.7 2.8c1.1-1.3 2.4-2.4 3.8-3.2 1.2-.6 2.5-.9 3.8-.9h.7c.4 0 .7.1 1 .3.2.3.4.6.3 1l.2 4.3c0 .4-.1.7-.3 1zm11 19.5c-.3.2-.6.4-1 .3H217c-.6.1-1.2-.3-1.3-.9v-24c0-.4.1-.7.3-1 .3-.2.6-.3 1-.3h4.9c.6-.1 1.1.2 1.3.8v24.1c0 .4-.1.7-.3 1zm-6.5-30.9c-1.6-1.6-1.6-4.2 0-5.8 1.8-1.4 4.4-1.4 6.2 0 1.6 1.6 1.6 4.1 0 5.8-1.8 1.4-4.4 1.4-6.2 0zm52.9 29.9c0 .4-.1.7-.3 1-.3.2-.6.3-1 .3h-4.9c-.6.1-1.2-.3-1.3-.9V108.7c0-2.3-1-3.5-3.1-3.5-1.9 0-3.8.5-5.6 1.3V125c0 .4-.1.7-.3 1-.3.2-.6.4-1 .3H247c-.6.1-1.2-.3-1.3-.9V108.6c0-2.3-1-3.5-3.1-3.5-2 0-3.9.5-5.6 1.4V125c0 .4-.1.7-.3 1-.3.2-.6.3-1 .3h-4.9c-.6.1-1.2-.3-1.3-.9v-24c0-.4.1-.7.3-1 .3-.2.6-.3 1-.3h3.7c.7-.1 1.3.4 1.4 1.1l.4 1.4c1.5-1 3.2-1.9 4.9-2.5 1.4-.5 2.9-.7 4.5-.7 3.1 0 5.2 1.1 6.5 3.3 1.5-1 3.2-1.9 4.9-2.5 1.5-.5 3.1-.8 4.8-.8 2-.1 4 .6 5.5 2 1.4 1.5 2.1 3.5 2 5.6v18l-.1.1zm17.8-25.6c3.2 0 5.6.8 7.4 2.3 1.8 1.5 2.8 3.8 2.7 6.1.1 2.3-1 4.5-2.9 5.8-1.9 1.3-4.8 2-8.5 2-1.7 0-3.4-.2-5.1-.6.2 2.3.9 3.9 2.1 4.9 1.6 1.1 3.4 1.6 5.3 1.5.9 0 1.9-.1 2.8-.2 1.3-.2 2.5-.5 3.8-.8l.3-.1h.3c.6 0 .9.4.9 1.2v2.4c0 .4 0 .8-.2 1.1-.2.3-.5.5-.9.6-2.5 1-5.2 1.4-7.9 1.4-4.2 0-7.5-1.2-9.7-3.5-2.3-2.3-3.4-5.6-3.4-10s1.2-7.9 3.5-10.4c2.2-2.4 5.4-3.7 9.5-3.7zM278 78V41h-16v37h-19V6.9h19V22h22.3L297 34.7V78h-19z">
</path>
<path d="M177.3 105.1c-1.8 0-3.5.5-5 1.4v13.4c1.5.9 3.2 1.4 5 1.4 1.6.1 3.2-.6 4.2-1.9.9-1.3 1.3-3.3 1.3-6.1s-.4-4.9-1.3-6.2c-.9-1.4-2.5-2.1-4.2-2z">
</path>
</g>
</svg>
</figure>
</div>
</div>
</div>
<div class="tw-full-height tw-relative">
<span>
</span>
<div class="menu-item menu-item--selected-page menu-item__0 tw-flex">
<a class="tw-interactive tw-block tw-full-width tw-interactable tw-interactable--inverted" href="/tp/loot">
<div class="menu-item__link menu-item__link--selected-page tw-flex tw-full-height tw-full-width" data-a-target="loot-page-menu">
<div class="tw-flex tw-pd-l-2 tw-pd-r-3 tw-pd-y-3">
<figure class="tw-svg">
<svg class="tw-svg__asset tw-svg__asset--menuitem tw-svg__asset--inherit" height="16px" version="1.1" viewbox="0 0 20 20" width="18px" x="0px" y="0px">
<path d="M0.7,0.7 L6.3,0.7 C6.68659932,0.7 7,1.01340068 7,1.4 L7,7 C7,7.38659932 6.68659932,7.7 6.3,7.7 L0.7,7.7 C0.313400675,7.7 3.6500856e-13,7.38659932 3.63931107e-13,7 L3.64153152e-13,1.4 C3.64105807e-13,1.01340068 0.313400675,0.7 0.7,0.7 Z M11.9,0.7 L17.5,0.7 C17.8865993,0.7 18.2,1.01340068 18.2,1.4 L18.2,7 C18.2,7.38659932 17.8865993,7.7 17.5,7.7 L11.9,7.7 C11.5134007,7.7 11.2,7.38659932 11.2,7 L11.2,1.4 C11.2,1.01340068 11.5134007,0.7 11.9,0.7 Z M0.7,11.9 L6.3,11.9 C6.68659932,11.9 7,12.2134007 7,12.6 L7,18.2 C7,18.5865993 6.68659932,18.9 6.3,18.9 L0.7,18.9 C0.313400675,18.9 3.6500856e-13,18.5865993 3.63931107e-13,18.2 L3.64153152e-13,12.6 C3.64105807e-13,12.2134007 0.313400675,11.9 0.7,11.9 Z M11.9,11.9 L17.5,11.9 C17.8865993,11.9 18.2,12.2134007 18.2,12.6 L18.2,18.2 C18.2,18.5865993 17.8865993,18.9 17.5,18.9 L11.9,18.9 C11.5134007,18.9 11.2,18.5865993 11.2,18.2 L11.2,12.6 C11.2,12.2134007 11.5134007,11.9 11.9,11.9 Z" fill-rule="nonzero">
</path>
</svg>
</figure>
<div class="tw-pd-l-1">
<p class="tw-amazon-ember-bold tw-font-size-6 tw-upcase">
Games and Loot
</p>
</div>
</div>
</div>
</a>
</div>
<div class="menu-item menu-item--non-selected-page menu-item__1 tw-flex">
<a class="tw-interactive tw-block tw-full-width tw-interactable tw-interactable--inverted" href="/tp/prime">
<div class="menu-item__link menu-item__link--non-selected-page tw-flex tw-full-height tw-full-width" data-a-target="prime-page-menu">
<div class="tw-flex tw-pd-l-2 tw-pd-r-3 tw-pd-y-3">
<figure class="tw-svg">
<svg class="tw-svg__asset tw-svg__asset--menuitem tw-svg__asset--inherit" height="16px" version="1.1" viewbox="0 0 20 20" width="18px" x="0px" y="0px">
<path d="M0.7,0.7 L6.3,0.7 C6.68659932,0.7 7,1.01340068 7,1.4 L7,7 C7,7.38659932 6.68659932,7.7 6.3,7.7 L0.7,7.7 C0.313400675,7.7 3.6500856e-13,7.38659932 3.63931107e-13,7 L3.64153152e-13,1.4 C3.64105807e-13,1.01340068 0.313400675,0.7 0.7,0.7 Z M11.9,0.7 L17.5,0.7 C17.8865993,0.7 18.2,1.01340068 18.2,1.4 L18.2,7 C18.2,7.38659932 17.8865993,7.7 17.5,7.7 L11.9,7.7 C11.5134007,7.7 11.2,7.38659932 11.2,7 L11.2,1.4 C11.2,1.01340068 11.5134007,0.7 11.9,0.7 Z M0.7,11.9 L6.3,11.9 C6.68659932,11.9 7,12.2134007 7,12.6 L7,18.2 C7,18.5865993 6.68659932,18.9 6.3,18.9 L0.7,18.9 C0.313400675,18.9 3.6500856e-13,18.5865993 3.63931107e-13,18.2 L3.64153152e-13,12.6 C3.64105807e-13,12.2134007 0.313400675,11.9 0.7,11.9 Z M11.9,11.9 L17.5,11.9 C17.8865993,11.9 18.2,12.2134007 18.2,12.6 L18.2,18.2 C18.2,18.5865993 17.8865993,18.9 17.5,18.9 L11.9,18.9 C11.5134007,18.9 11.2,18.5865993 11.2,18.2 L11.2,12.6 C11.2,12.2134007 11.5134007,11.9 11.9,11.9 Z" fill-rule="nonzero">
</path>
</svg>
</figure>
<div class="tw-pd-l-1">
<p class="tw-amazon-ember-bold tw-font-size-6 tw-upcase">
More from Prime
</p>
</div>
</div>
</div>
</a>
</div>
</div>
</div>
</div>
<div class="tw-align-items-center tw-flex tw-flex-column tw-flex-shrink-0 tw-full-width tw-justify-content-between twitch-prime-base__body">
<div class="tw-flex tw-flex-column tw-flex-shrink-0 tw-full-width tw-justify-content-between twitch-prime-base__body-contents">
<div class="tw-hide tw-md-block tw-relative" data-test-selector="top-nav">
<div class="tw-absolute tw-mg-x-auto tw-mg-y-0 tw-top-0 twitch-prime-top-nav">
<div class="tw-align-items-center tw-flex tw-flex-nowrap tw-full-height tw-justify-content-between twitch-prime-top-nav__menu">
<div class="tw-flex tw-full-height tw-z-above twitch-prime-top-nav__menu__left">
</div>
<div class="tw-align-items-center tw-flex tw-justify-content-end tw-z-above">
<div class="tw-align-items-center tw-flex twitch-prime-top-nav__language-button">
<div class="language-selector tw-flex">
<div class="language-selector--dropdown-closed tw-full-width">
<div class="tw-relative" data-toggle-balloon-id="e4dbd139-812b-47c4-a6d1-6fed95852b7d">
<div data-test-selector="toggle-balloon-wrapper__mouse-enter-detector" style="display: inherit;">
<button class="tw-interactive tw-block tw-full-width tw-interactable tw-interactable--inverted" data-a-target="twitch-prime-top-nav-language-selector" data-target="twitch-prime-top-nav-language-selector-click" data-test-target="twitch-prime-top-nav-language-selector-click">
<div class="language-selector__menu tw-align-items-center tw-c-text-base tw-flex tw-justify-content-center tw-pd-x-1 tw-pd-y-05" data-a-target="language-selector-menu">
<figure class="tw-svg" data-test-target="language-selector__global-icon">
<svg class="tw-svg__asset tw-svg__asset--global tw-svg__asset--inherit" height="16px" version="1.1" viewbox="0 0 20 20" width="16px" x="0px" y="0px">
<path d="M13.156 15.097A10.703 10.703 0 0 0 14.36 11h1.557a6.004 6.004 0 0 1-2.76 4.097M4.096 11h1.557a10.725 10.725 0 0 0 1.206 4.1A6.007 6.007 0 0 1 4.097 11m2.76-6.097A10.702 10.702 0 0 0 5.654 9H4.097a6.006 6.006 0 0 1 2.76-4.097M12.403 9H7.61c.198-1.854.948-3.43 2.168-4.988.077-.003.152-.012.23-.012.075 0 .147.009.222.012C11.451 5.57 12.204 7.146 12.403 9m-2.167 6.989c-.077.003-.152.01-.229.01-.076 0-.148-.007-.223-.01-1.222-1.558-1.975-3.135-2.174-4.99h4.794c-.198 1.855-.948 3.432-2.168 4.99m5.681-6.99H14.36a10.704 10.704 0 0 0-1.207-4.098A6.003 6.003 0 0 1 15.917 9m2.096 1.014c0-.04-.009-.072-.01-.11C17.948 5.53 14.392 2 10.006 2 5.63 2 2.077 5.518 2.012 9.88 2.01 9.918 2 9.95 2 9.987c0 .039.01.072.011.11A7.998 7.998 0 0 0 10.007 18c4.378 0 7.93-3.518 7.994-7.882.002-.036.012-.067.012-.104" fill-rule="evenodd">
</path>
</svg>
</figure>
<p class="tw-c-text-overlay" data-test-selector="language-selector__displayed-language-code">
EN
</p>
<div class="language-selector__dropdown-arrow tw-align-middle tw-c-text-overlay tw-inline-flex">
<figure class="tw-svg" data-test-target="language-selector__arrow">
<svg class="tw-svg__asset tw-svg__asset--glypharrdown tw-svg__asset--inherit" height="14px" version="1.1" viewbox="0 0 20 20" width="14px" x="0px" y="0px">
<path d="M5.054 7.463A.714.714 0 0 1 5.714 7h8.572c.289 0 .55.183.66.463.11.28.05.603-.155.817l-4.286 4.5A.696.696 0 0 1 10 13a.696.696 0 0 1-.505-.22L5.21 8.28a.777.777 0 0 1-.155-.817">
</path>
</svg>
</figure>
</div>
</div>
</button>
</div>
</div>
</div>
</div>
</div>
<div class="auth-cluster tw-align-items-center tw-flex tw-justify-content-center" data-a-target="auth-cluster">
<div class="tw-flex-grow-2 tw-mg-x-1">
<button class="tw-interactive tw-button tw-button--full-width tw-button--hollow" data-a-target="sign-in-button">
<span class="tw-button__text" data-a-target="tw-button-text">
<div class="sign-in">
<p class="tw-amazon-ember-bold tw-font-size-6 tw-lg-font-size-6 tw-md-font-size-6 tw-sm-font-size-4 tw-xl-font-size-6 tw-xs-font-size-4 tw-xxl-font-size-6">
Sign in
</p>
</div>
</span>
</button>
</div>
<div class="tw-flex-grow-2 tw-mg-x-1">
<button class="tw-interactive tw-button tw-button--prime" data-a-target="try-prime-button">
<span class="tw-button__text" data-a-target="tw-button-text">
<div class="">
<p class="tw-amazon-ember-bold tw-c-text-overlay tw-font-size-6 tw-lg-font-size-6 tw-md-font-size-6 tw-sm-font-size-4 tw-xl-font-size-6 tw-xs-font-size-4 tw-xxl-font-size-6">
Try Prime
</p>
</div>
</span>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="tw-c-background-accent-alt-2 tw-flex-grow-2">
<div class="tw-c-background-accent-alt-2 tw-flex-grow-2" data-test-selector="landing-root">
<div class="hero-banner tw-mg-b-6 tw-relative" data-a-target="hero-banner">
<div class="hero-banner__asset tw-full-width tw-overflow-hidden" data-test-target="hero-asset">
<div class="sm-hero tw-align-items-center tw-flex tw-full-height tw-full-width tw-relative">
<div class="tw-full-height tw-full-width tw-z-default">
<picture data-test-selector="hero-wrapper">
<source data-test-selector="hero-source" media="(min-width: 1920px)" srcset="https://m.media-amazon.com/images/G/01/sm/Madden20_P2/Phase2/hero_banner_loot_desktop_extra_wide_1x.jpg 1x, https://m.media-amazon.com/images/G/01/sm/Madden20_P2/Phase2/hero_banner_loot_desktop_extra_wide_2x.jpg 2x"/>
<source data-test-selector="hero-source" media="(min-width: 1440px)" srcset="https://m.media-amazon.com/images/G/01/sm/Madden20_P2/Phase2/hero_banner_loot_desktop_wide_1x.jpg 1x, https://m.media-amazon.com/images/G/01/sm/Madden20_P2/Phase2/hero_banner_loot_desktop_wide_2x.jpg 2x"/>
<source data-test-selector="hero-source" media="(min-width: 1200px)" srcset="https://m.media-amazon.com/images/G/01/sm/Madden20_P2/Phase2/hero_banner_loot_desktop_1x.jpg 1x, https://m.media-amazon.com/images/G/01/sm/Madden20_P2/Phase2/hero_banner_loot_desktop_1x.jpg 2x"/>
<source data-test-selector="hero-source" media="(min-width: 1024px)" srcset="https://m.media-amazon.com/images/G/01/sm/Madden20_P2/Phase2/hero_banner_loot_desktop_1x.jpg 1x, https://m.media-amazon.com/images/G/01/sm/Madden20_P2/Phase2/hero_banner_loot_desktop_2x.jpg 2x"/>
<source data-test-selector="hero-source" media="(min-width: 768px)" srcset="https://m.media-amazon.com/images/G/01/sm/Madden20_P2/Phase2/hero_banner_loot_desktop_1x.jpg 1x, https://m.media-amazon.com/images/G/01/sm/Madden20_P2/Phase2/hero_banner_loot_desktop_2x.jpg 2x"/>
<source data-test-selector="hero-source" media="(min-width: 480px)" srcset="https://m.media-amazon.com/images/G/01/sm/Madden20_P2/Phase2/hero_banner_loot_tablet_1x.jpg 1x, https://m.media-amazon.com/images/G/01/sm/Madden20_P2/Phase2/hero_banner_loot_tablet_2x.jpg 2x"/>
<source data-test-selector="hero-source" media="(max-width: 479px)" srcset="https://m.media-amazon.com/images/G/01/sm/Madden20_P2/Phase2/hero_banner_loot_mobile_1x.jpg 1x, https://m.media-amazon.com/images/G/01/sm/Madden20_P2/Phase2/hero_banner_loot_mobile_2x.jpg 2x"/>
<img alt="Default content source" class="sm-hero__image tw-image" data-test-selector="hero-default" src="https://m.media-amazon.com/images/G/01/sm/Madden20_P2/Phase2/hero_banner_loot_desktop_1x.jpg" srcset="https://m.media-amazon.com/images/G/01/sm/Madden20_P2/Phase2/hero_banner_loot_desktop_1x.jpg 1x,https://m.media-amazon.com/images/G/01/sm/Madden20_P2/Phase2/hero_banner_loot_desktop_2x.jpg 2x"/>
<div class="sm-hero__gradient tw-absolute tw-bottom-0 tw-left-0 tw-right-0 tw-top-0" data-test-selector="hero-gradient">
</div>
</picture>
</div>
</div>
</div>
<div class="hero-banner__header tw-absolute tw-align-content-center tw-align-items-center tw-flex tw-flex-column tw-mg-b-5 tw-pd-x-2 tw-sm-align-content-baseline tw-sm-align-items-baseline tw-sm-mg-b-0 tw-z-default" data-test-target="hero-header">
<div class="tw-mg-b-3">
<p class="tw-amazon-ember-light tw-c-text-overlay tw-font-size-3 tw-md-font-size-2">
DOMINATE THE FIELD!
</p>
</div>
<div class="hero-banner__header__action-button">
<button class="tw-interactive tw-button tw-button--full-width tw-button--prime" data-a-target="try-prime-button">
<span class="tw-button__text" data-a-target="tw-button-text">
<div class="tw-pd-y-05">
<p class="tw-amazon-ember-bold tw-c-text-overlay tw-font-size-4 tw-lg-font-size-4 tw-md-font-size-4 tw-sm-font-size-4 tw-xl-font-size-4 tw-xs-font-size-4 tw-xxl-font-size-4">
Try Prime
</p>
</div>
</span>
</button>
</div>
</div>
</div>
<div class="tw-align-items-center tw-pd-b-2">
<div class="offer-list__content tw-md-pd-x-4" data-a-target="offer-list-ingame-loot">
<div class="tw-mg-x-1 tw-mg-y-1 tw-sm-mg-x-1 tw-sm-mg-y-4">
<h3 class="offer-list__section-title tw-amazon-ember-light tw-font-size-2">
In-Game Loot and More
</h3>
</div>
<div data-simplebar="init">
<div class="simplebar-wrapper" style="margin: 0px;">
<div class="simplebar-height-auto-observer-wrapper">
<div class="simplebar-height-auto-observer">
</div>
</div>
<div class="simplebar-mask">
<div class="simplebar-offset" style="right: 0px; bottom: 0px;">
<div class="simplebar-content-wrapper" style="height: auto; overflow: hidden;">
<div class="simplebar-content" style="padding: 0px;">
<div class="tw-pd-x-1">
<div class="tw-flex-nowrap tw-md-flex-wrap tw-tower tw-tower--300 tw-tower--gutter-sm">
<div class="offer tw-mg-b-2">
<div class="offer__action" data-a-target="learn-more-card">
<div class="tw-card tw-relative">
<div class="tw-flex tw-flex-column tw-flex-nowrap">
<div class="tw-border-radius-large tw-card-img tw-flex-shrink-0 tw-overflow-hidden">
<figure class="tw-aspect tw-aspect--16x9 tw-aspect--align-top">
<img alt="Jim Brown, Elite Pack, &amp; Exclusive Uniform" class="tw-image" src="https://m.media-amazon.com/images/G/01/sm/Madden20_P2/Phase2/Phase2_Crown_512x288._CB438097531_.jpg" srcset="https://m.media-amazon.com/images/G/01/sm/Madden20_P2/Phase2/Phase2_Crown_512x288._CB438097531_.jpg 1x,https://m.media-amazon.com/images/G/01/sm/Madden20_P2/Phase2/Phase2_Crown_512x288._CB438097531_.jpg 2x"/>
</figure>
</div>
<div class="tw-card-body tw-relative">
<div class="offer__body tw-flex tw-flex-column tw-justify-content-between">
<div class="offer__body__titles tw-flex tw-flex-column tw-full-height tw-justify-content-between tw-pd-t-2 tw-pd-x-2">
<p class="tw-amazon-ember-bold tw-c-text-overlay tw-font-size-5">
<span>
Jim Brown, Elite Pack, & Exclusive Uniform
</span>
</p>
<p class="tw-c-text-alt-2 tw-font-size-7">
Electronic Arts
</p>
</div>
<div class="claim-info tw-c-text-overlay-alt tw-flex tw-flex-column tw-full-width">
<div class="tw-border-t tw-full-width tw-mg-t-2">
</div>
<div class="tw-align-items-center tw-flex tw-full-height tw-justify-content-between tw-pd-x-2">
<p class="" data-test-selector="offer-end-time">
Offer ends
<span class="">
Oct 1
</span>
</p>
<a class="tw-interactive tw-button tw-button--prime" data-a-target="learn-more" href="https://twitch.amazon.com/prime/loot/madden20?ref_=SM_OM_Madden20_CRWN" rel="noreferrer noopener" target="_blank">
<span class="tw-button__text" data-a-target="tw-button-text">
<div class="">
<p class="tw-amazon-ember-regular tw-font-size-6 tw-lg-font-size-6 tw-md-font-size-6 tw-sm-font-size-6 tw-xl-font-size-6 tw-xs-font-size-6 tw-xxl-font-size-6">
Learn more
</p>
</div>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="offer tw-mg-b-2">
<div class="offer__action" data-a-target="learn-more-card">
<div class="tw-card tw-relative">
<div class="tw-flex tw-flex-column tw-flex-nowrap">
<div class="tw-border-radius-large tw-card-img tw-flex-shrink-0 tw-overflow-hidden">
<figure class="tw-aspect tw-aspect--16x9 tw-aspect--align-top">
<img alt="World of Tanks: Care Package Hotel & Captured King Tiger Tank" class="tw-image" src="https://m.media-amazon.com/images/G/01/sm/amped/worldoftanks/512x288_Crown_2x_Drop6._CB438911515_.png" srcset="https://m.media-amazon.com/images/G/01/sm/amped/worldoftanks/512x288_Crown_2x_Drop6._CB438911515_.png 1x,https://m.media-amazon.com/images/G/01/sm/amped/worldoftanks/512x288_Crown_2x_Drop6._CB438911515_.png 2x"/>
</figure>
</div>
<div class="tw-card-body tw-relative">
<div class="offer__body tw-flex tw-flex-column tw-justify-content-between">
<div class="offer__body__titles tw-flex tw-flex-column tw-full-height tw-justify-content-between tw-pd-t-2 tw-pd-x-2">
<p class="tw-amazon-ember-bold tw-c-text-overlay tw-font-size-5">
<span>
World of Tanks: Care Package Hotel & Captured King Tiger Tank
</span>
</p>
<p class="tw-c-text-alt-2 tw-font-size-7">
Wargaming
</p>
</div>
<div class="claim-info tw-c-text-overlay-alt tw-flex tw-flex-column tw-full-width">
<div class="tw-border-t tw-full-width tw-mg-t-2">
</div>
<div class="tw-align-items-center tw-flex tw-full-height tw-justify-content-between tw-pd-x-2">
<p class="" data-test-selector="offer-end-time">
Offer ends
<span class="">
Sep 26
</span>
</p>
<a class="tw-interactive tw-button tw-button--prime" data-a-target="learn-more" href="https://twitch.amazon.com/prime/loot/worldoftanks?ref_=SM_OM_WOT196_CRWN" rel="noreferrer noopener" target="_blank">
<span class="tw-button__text" data-a-target="tw-button-text">
<div class="">
<p class="tw-amazon-ember-regular tw-font-size-6 tw-lg-font-size-6 tw-md-font-size-6 tw-sm-font-size-6 tw-xl-font-size-6 tw-xs-font-size-6 tw-xxl-font-size-6">
Learn more
</p>
</div>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="offer tw-mg-b-2">
<div class="offer__action" data-a-target="learn-more-card">
<div class="tw-card tw-relative">
<div class="tw-flex tw-flex-column tw-flex-nowrap">
<div class="tw-border-radius-large tw-card-img tw-flex-shrink-0 tw-overflow-hidden">
<figure class="tw-aspect tw-aspect--16x9 tw-aspect--align-top">
<img alt="Noweyr Steed &amp; Pony" class="tw-image" src="https://m.media-amazon.com/images/G/01/ElderScrollsOnline/ESO-Summerset_TwitchPrime-CrownImage_512x288-01._CB479751486_.png" srcset="https://m.media-amazon.com/images/G/01/ElderScrollsOnline/ESO-Summerset_TwitchPrime-CrownImage_512x288-01._CB479751486_.png 1x,https://m.media-amazon.com/images/G/01/ElderScrollsOnline/ESO-Summerset_TwitchPrime-CrownImage_512x288-01._CB479751486_.png 2x"/>
</figure>
</div>
<div class="tw-card-body tw-relative">
<div class="offer__body tw-flex tw-flex-column tw-justify-content-between">
<div class="offer__body__titles tw-flex tw-flex-column tw-full-height tw-justify-content-between tw-pd-t-2 tw-pd-x-2">
<p class="tw-amazon-ember-bold tw-c-text-overlay tw-font-size-5">
<span>
Noweyr Steed & Pony
</span>
</p>
<p class="tw-c-text-alt-2 tw-font-size-7">
Bethesda
</p>
</div>
<div class="claim-info tw-c-text-overlay-alt tw-flex tw-flex-column tw-full-width">
<div class="tw-border-t tw-full-width tw-mg-t-2">
</div>
<div class="tw-align-items-center tw-flex tw-full-height tw-justify-content-between tw-pd-x-2">
<p class="" data-test-selector="offer-end-time">
Offer ends
<span class="">
Sep 30
</span>
</p>
<a class="tw-interactive tw-button tw-button--prime" data-a-target="learn-more" href="https://twitch.amazon.com/prime/loot/eso?ref_=SM_OM_ESO19_1_CRWN" rel="noreferrer noopener" target="_blank">
<span class="tw-button__text" data-a-target="tw-button-text">
<div class="">
<p class="tw-amazon-ember-regular tw-font-size-6 tw-lg-font-size-6 tw-md-font-size-6 tw-sm-font-size-6 tw-xl-font-size-6 tw-xs-font-size-6 tw-xxl-font-size-6">
Learn more
</p>
</div>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="offer tw-mg-b-2">
<div class="offer__action" data-a-target="get-code-card">
<div class="tw-card tw-relative">
<div class="tw-flex tw-flex-column tw-flex-nowrap">
<div class="tw-border-radius-large tw-card-img tw-flex-shrink-0 tw-overflow-hidden">
<figure class="tw-aspect tw-aspect--16x9 tw-aspect--align-top">
<img alt="Dauntless: Assault Supply Bundle" class="tw-image" src="https://m.media-amazon.com/images/G/01/sm/Dauntless_Drop3/Dauntless_TwitchPrimeDrop3_Dauntless_Drop3_Crown-2x._CB438889242_.jpg" srcset="https://m.media-amazon.com/images/G/01/sm/Dauntless_Drop3/Dauntless_TwitchPrimeDrop3_Dauntless_Drop3_Crown-2x._CB438889242_.jpg 1x,https://m.media-amazon.com/images/G/01/sm/Dauntless_Drop3/Dauntless_TwitchPrimeDrop3_Dauntless_Drop3_Crown-2x._CB438889242_.jpg 2x"/>
</figure>
</div>
<div class="tw-card-body tw-relative">
<div class="offer__body tw-flex tw-flex-column tw-justify-content-between">
<div class="offer__body__titles tw-flex tw-flex-column tw-full-height tw-justify-content-between tw-pd-t-2 tw-pd-x-2">
<p class="tw-amazon-ember-bold tw-c-text-overlay tw-font-size-5">
<span>
Dauntless: Assault Supply Bundle
</span>
</p>
<p class="tw-c-text-alt-2 tw-font-size-7">
Phoenix Labs
</p>
</div>
<div class="claim-info tw-c-text-overlay-alt tw-flex tw-flex-column tw-full-width">
<div class="tw-border-t tw-full-width tw-mg-t-2">
</div>
<div class="tw-align-items-center tw-flex tw-full-height tw-justify-content-between tw-pd-x-2">
<p class="" data-test-selector="offer-end-time">
Offer ends
<span class="">
Sep 10
</span>
</p>
<button class="tw-interactive tw-button tw-button--prime" data-a-target="get-code-button">
<span class="tw-button__text" data-a-target="tw-button-text">
<div class="">
<p class="tw-amazon-ember-regular tw-font-size-6 tw-lg-font-size-6 tw-md-font-size-6 tw-sm-font-size-6 tw-xl-font-size-6 tw-xs-font-size-6 tw-xxl-font-size-6">
Get code
</p>
</div>
</span>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="offer tw-mg-b-2">
<div class="offer__action" data-a-target="learn-more-card">
<div class="tw-card tw-relative">
<div class="tw-flex tw-flex-column tw-flex-nowrap">
<div class="tw-border-radius-large tw-card-img tw-flex-shrink-0 tw-overflow-hidden">
<figure class="tw-aspect tw-aspect--16x9 tw-aspect--align-top">
<img alt="Warface: Female Nanosuits Bundle" class="tw-image" src="https://m.media-amazon.com/images/G/01/sm/Warface/512x288_Drop4._CB438922535_.jpg" srcset="https://m.media-amazon.com/images/G/01/sm/Warface/512x288_Drop4._CB438922535_.jpg 1x,https://m.media-amazon.com/images/G/01/sm/Warface/512x288_Drop4._CB438922535_.jpg 2x"/>
</figure>
</div>
<div class="tw-card-body tw-relative">
<div class="offer__body tw-flex tw-flex-column tw-justify-content-between">
<div class="offer__body__titles tw-flex tw-flex-column tw-full-height tw-justify-content-between tw-pd-t-2 tw-pd-x-2">
<p class="tw-amazon-ember-bold tw-c-text-overlay tw-font-size-5">
<span>
Warface: Female Nanosuits Bundle
</span>
</p>
<p class="tw-c-text-alt-2 tw-font-size-7">
MY.GAMES
</p>
</div>
<div class="claim-info tw-c-text-overlay-alt tw-flex tw-flex-column tw-full-width">
<div class="tw-border-t tw-full-width tw-mg-t-2">
</div>
<div class="tw-align-items-center tw-flex tw-full-height tw-justify-content-between tw-pd-x-2">
<p class="" data-test-selector="offer-end-time">
Offer ends
<span class="">
Oct 22
</span>
</p>
<a class="tw-interactive tw-button tw-button--prime" data-a-target="learn-more" href="https://twitch.amazon.com/prime/loot/warface?ref_=SM_OM_WAR194_CRWN" rel="noreferrer noopener" target="_blank">
<span class="tw-button__text" data-a-target="tw-button-text">
<div class="">
<p class="tw-amazon-ember-regular tw-font-size-6 tw-lg-font-size-6 tw-md-font-size-6 tw-sm-font-size-6 tw-xl-font-size-6 tw-xs-font-size-6 tw-xxl-font-size-6">
Learn more
</p>
</div>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="offer tw-mg-b-2">
<div class="offer__action" data-a-target="learn-more-card">
<div class="tw-card tw-relative">
<div class="tw-flex tw-flex-column tw-flex-nowrap">
<div class="tw-border-radius-large tw-card-img tw-flex-shrink-0 tw-overflow-hidden">
<figure class="tw-aspect tw-aspect--16x9 tw-aspect--align-top">
<img alt="Free Master Penthouse &amp; More" class="tw-image" src="https://m.media-amazon.com/images/G/01/sm/GTAO_2019_D2/GTAO_Casino_Crown_2x._CB1563898207_.jpg" srcset="https://m.media-amazon.com/images/G/01/sm/GTAO_2019_D2/GTAO_Casino_Crown_2x._CB1563898207_.jpg 1x,https://m.media-amazon.com/images/G/01/sm/GTAO_2019_D2/GTAO_Casino_Crown_2x._CB1563898207_.jpg 2x"/>
</figure>
</div>
<div class="tw-card-body tw-relative">
<div class="offer__body tw-flex tw-flex-column tw-justify-content-between">
<div class="offer__body__titles tw-flex tw-flex-column tw-full-height tw-justify-content-between tw-pd-t-2 tw-pd-x-2">
<p class="tw-amazon-ember-bold tw-c-text-overlay tw-font-size-5">
<span>
Free Master Penthouse & More
</span>
</p>
<p class="tw-c-text-alt-2 tw-font-size-7">
Rockstar Games
</p>
</div>
<div class="claim-info tw-c-text-overlay-alt tw-flex tw-flex-column tw-full-width">
<div class="tw-border-t tw-full-width tw-mg-t-2">
</div>
<div class="tw-align-items-center tw-flex tw-full-height tw-justify-content-between tw-pd-x-2">
<p class="" data-test-selector="offer-end-time">
<span class="">
Offer ends soon
</span>
</p>
<a class="tw-interactive tw-button tw-button--prime" data-a-target="learn-more" href="https://twitch.amazon.com/prime/loot/gtaonline?ref_=SM_OM_GTAO2_TP_CRWN1" rel="noreferrer noopener" target="_blank">
<span class="tw-button__text" data-a-target="tw-button-text">
<div class="">
<p class="tw-amazon-ember-regular tw-font-size-6 tw-lg-font-size-6 tw-md-font-size-6 tw-sm-font-size-6 tw-xl-font-size-6 tw-xs-font-size-6 tw-xxl-font-size-6">
Learn more
</p>
</div>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="offer tw-mg-b-2">
<div class="offer__action" data-a-target="learn-more-card">
<div class="tw-card tw-relative">
<div class="tw-flex tw-flex-column tw-flex-nowrap">
<div class="tw-border-radius-large tw-card-img tw-flex-shrink-0 tw-overflow-hidden">
<figure class="tw-aspect tw-aspect--16x9 tw-aspect--align-top">
<img alt="The Carcano Sniper Rifle &amp; More" class="tw-image" src="https://m.media-amazon.com/images/G/01//sm/reddeadonline/512x288_Crown_2x._CB1198675309_.jpg" srcset="https://m.media-amazon.com/images/G/01//sm/reddeadonline/512x288_Crown_2x._CB1198675309_.jpg 1x,https://m.media-amazon.com/images/G/01//sm/reddeadonline/512x288_Crown_2x._CB1198675309_.jpg 2x"/>
</figure>
</div>
<div class="tw-card-body tw-relative">
<div class="offer__body tw-flex tw-flex-column tw-justify-content-between">
<div class="offer__body__titles tw-flex tw-flex-column tw-full-height tw-justify-content-between tw-pd-t-2 tw-pd-x-2">
<p class="tw-amazon-ember-bold tw-c-text-overlay tw-font-size-5">
<span>
The Carcano Sniper Rifle & More
</span>
</p>
<p class="tw-c-text-alt-2 tw-font-size-7">
Rockstar Games
</p>
</div>
<div class="claim-info tw-c-text-overlay-alt tw-flex tw-flex-column tw-full-width">
<div class="tw-border-t tw-full-width tw-mg-t-2">
</div>
<div class="tw-align-items-center tw-flex tw-full-height tw-justify-content-between tw-pd-x-2">
<p class="" data-test-selector="offer-end-time">
<span class="">
Offer ends soon
</span>
</p>
<a class="tw-interactive tw-button tw-button--prime" data-a-target="learn-more" href="https://twitch.amazon.com/prime/loot/reddeadonline?ref_=SM_OM_RDO2_TP_CRWN1" rel="noreferrer noopener" target="_blank">
<span class="tw-button__text" data-a-target="tw-button-text">
<div class="">
<p class="tw-amazon-ember-regular tw-font-size-6 tw-lg-font-size-6 tw-md-font-size-6 tw-sm-font-size-6 tw-xl-font-size-6 tw-xs-font-size-6 tw-xxl-font-size-6">
Learn more
</p>
</div>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="offer tw-mg-b-2">
<div class="offer__action" data-a-target="learn-more-card">
<div class="tw-card tw-relative">
<div class="tw-flex tw-flex-column tw-flex-nowrap">
<div class="tw-border-radius-large tw-card-img tw-flex-shrink-0 tw-overflow-hidden">
<figure class="tw-aspect tw-aspect--16x9 tw-aspect--align-top">
<img alt="Tom Clancy's The Division 2: DC Harriers Sports Team Fan" class="tw-image" src="https://m.media-amazon.com/images/G/01/sm/Division2_Drop3/512x288_Crown_2x._CB1565974412_.jpg" srcset="https://m.media-amazon.com/images/G/01/sm/Division2_Drop3/512x288_Crown_2x._CB1565974412_.jpg 1x,https://m.media-amazon.com/images/G/01/sm/Division2_Drop3/512x288_Crown_2x._CB1565974412_.jpg 2x"/>
</figure>
</div>
<div class="tw-card-body tw-relative">
<div class="offer__body tw-flex tw-flex-column tw-justify-content-between">
<div class="offer__body__titles tw-flex tw-flex-column tw-full-height tw-justify-content-between tw-pd-t-2 tw-pd-x-2">
<p class="tw-amazon-ember-bold tw-c-text-overlay tw-font-size-5">
<span>
Tom Clancy's The Division 2: DC Harriers Sports Team Fan
</span>
</p>
<p class="tw-c-text-alt-2 tw-font-size-7">
Ubisoft
</p>
</div>
<div class="claim-info tw-c-text-overlay-alt tw-flex tw-flex-column tw-full-width">
<div class="tw-border-t tw-full-width tw-mg-t-2">
</div>
<div class="tw-align-items-center tw-flex tw-full-height tw-justify-content-between tw-pd-x-2">
<p class="" data-test-selector="offer-end-time">
Offer ends
<span class="">
Sep 24
</span>
</p>
<a class="tw-interactive tw-button tw-button--prime" data-a-target="learn-more" href="https://twitch.amazon.com/prime/loot/division2?ref=_SM_OM_Div219_LP" rel="noreferrer noopener" target="_blank">
<span class="tw-button__text" data-a-target="tw-button-text">
<div class="">
<p class="tw-amazon-ember-regular tw-font-size-6 tw-lg-font-size-6 tw-md-font-size-6 tw-sm-font-size-6 tw-xl-font-size-6 tw-xs-font-size-6 tw-xxl-font-size-6">
Learn more
</p>
</div>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="offer tw-mg-b-2">
<div class="offer__action" data-a-target="learn-more-card">
<div class="tw-card tw-relative">
<div class="tw-flex tw-flex-column tw-flex-nowrap">
<div class="tw-border-radius-large tw-card-img tw-flex-shrink-0 tw-overflow-hidden">
<figure class="tw-aspect tw-aspect--16x9 tw-aspect--align-top">
<img alt="Exclusive Octane Whiplash Skin" class="tw-image" src="https://m.media-amazon.com/images/G/01/sm/ApexLegends_S2_P3/octane_512x288._CB438327276_.gif/ApexLegends_S2_P3/512-x-288--Twitch.tv-Crown-large._CB441046925_.jpg" srcset="https://m.media-amazon.com/images/G/01/sm/ApexLegends_S2_P3/octane_512x288._CB438327276_.gif/ApexLegends_S2_P3/512-x-288--Twitch.tv-Crown-large._CB441046925_.jpg 1x,https://m.media-amazon.com/images/G/01/sm/ApexLegends_S2_P3/octane_512x288._CB438327276_.gif/ApexLegends_S2_P3/512-x-288--Twitch.tv-Crown-large._CB441046925_.jpg 2x"/>
</figure>
</div>
<div class="tw-card-body tw-relative">
<div class="offer__body tw-flex tw-flex-column tw-justify-content-between">
<div class="offer__body__titles tw-flex tw-flex-column tw-full-height tw-justify-content-between tw-pd-t-2 tw-pd-x-2">
<p class="tw-amazon-ember-bold tw-c-text-overlay tw-font-size-5">
<span>
Exclusive Octane Whiplash Skin
</span>
</p>
<p class="tw-c-text-alt-2 tw-font-size-7">
Electronic Arts
</p>
</div>
<div class="claim-info tw-c-text-overlay-alt tw-flex tw-flex-column tw-full-width">
<div class="tw-border-t tw-full-width tw-mg-t-2">
</div>
<div class="tw-align-items-center tw-flex tw-full-height tw-justify-content-between tw-pd-x-2">
<p class="" data-test-selector="offer-end-time">
Offer ends
<span class="">
Sep 30
</span>
</p>
<a class="tw-interactive tw-button tw-button--prime" data-a-target="learn-more" href="https://twitch.amazon.com/prime/loot/apexlegends?ref_=SM_OM_APEX2_2019_CRWN" rel="noreferrer noopener" target="_blank">
<span class="tw-button__text" data-a-target="tw-button-text">
<div class="">
<p class="tw-amazon-ember-regular tw-font-size-6 tw-lg-font-size-6 tw-md-font-size-6 tw-sm-font-size-6 tw-xl-font-size-6 tw-xs-font-size-6 tw-xxl-font-size-6">
Learn more
</p>
</div>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="offer tw-mg-b-2">
<div class="offer__action" data-a-target="claim-prime-offer-card">
<div class="tw-card tw-relative">
<div class="tw-flex tw-flex-column tw-flex-nowrap">
<div class="tw-border-radius-large tw-card-img tw-flex-shrink-0 tw-overflow-hidden">
<figure class="tw-aspect tw-aspect--16x9 tw-aspect--align-top">
<img alt="RuneScape: Premium Currency Pack" class="tw-image" src="https://m.media-amazon.com/images/G/01/sm/RuneScape_2019/Twitch_TV_Twitch_Nav_Detail_Image_512x288._CB441790284_.jpg" srcset="https://m.media-amazon.com/images/G/01/sm/RuneScape_2019/Twitch_TV_Twitch_Nav_Detail_Image_512x288._CB441790284_.jpg 1x,https://m.media-amazon.com/images/G/01/sm/RuneScape_2019/Twitch_TV_Twitch_Nav_Detail_Image_512x288._CB441790284_.jpg 2x"/>
</figure>
</div>
<div class="tw-card-body tw-relative">
<div class="offer__body tw-flex tw-flex-column tw-justify-content-between">
<div class="offer__body__titles tw-flex tw-flex-column tw-full-height tw-justify-content-between tw-pd-t-2 tw-pd-x-2">
<p class="tw-amazon-ember-bold tw-c-text-overlay tw-font-size-5">
<span>
RuneScape: Premium Currency Pack
</span>
</p>
<p class="tw-c-text-alt-2 tw-font-size-7">
Jagex
</p>
</div>
<div class="claim-info tw-c-text-overlay-alt tw-flex tw-flex-column tw-full-width">
<div class="tw-border-t tw-full-width tw-mg-t-2">
</div>
<div class="tw-align-items-center tw-flex tw-full-height tw-justify-content-between tw-pd-x-2">
<p class="" data-test-selector="offer-end-time">
Offer ends
<span class="">
Sep 24
</span>
</p>
<button class="tw-interactive tw-button tw-button--prime" data-a-target="claim-prime-offer">
<span class="tw-button__text" data-a-target="tw-button-text">
<div class="">
<p class="tw-amazon-ember-regular tw-font-size-6 tw-lg-font-size-6 tw-md-font-size-6 tw-sm-font-size-6 tw-xl-font-size-6 tw-xs-font-size-6 tw-xxl-font-size-6">
Claim
</p>
</div>
</span>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="offer tw-mg-b-2">
<div class="offer__action" data-a-target="get-code-card">
<div class="tw-card tw-relative">
<div class="tw-flex tw-flex-column tw-flex-nowrap">
<div class="tw-border-radius-large tw-card-img tw-flex-shrink-0 tw-overflow-hidden">
<figure class="tw-aspect tw-aspect--16x9 tw-aspect--align-top">
<img alt="Minion Masters: Void’s Onslaught DLC" class="tw-image" src="https://m.media-amazon.com/images/G/01/sm/MinionMasters/MM_TP_Crown_Large_VoidborneComp._CB1566236689_.gif" srcset="https://m.media-amazon.com/images/G/01/sm/MinionMasters/MM_TP_Crown_Large_VoidborneComp._CB1566236689_.gif 1x,https://m.media-amazon.com/images/G/01/sm/MinionMasters/MM_TP_Crown_Large_VoidborneComp._CB1566236689_.gif 2x"/>
</figure>
</div>
<div class="tw-card-body tw-relative">
<div class="offer__body tw-flex tw-flex-column tw-justify-content-between">
<div class="offer__body__titles tw-flex tw-flex-column tw-full-height tw-justify-content-between tw-pd-t-2 tw-pd-x-2">
<p class="tw-amazon-ember-bold tw-c-text-overlay tw-font-size-5">
<span>
Minion Masters: Void’s Onslaught DLC
</span>
</p>
<p class="tw-c-text-alt-2 tw-font-size-7">
Beta Dwarf
</p>
</div>
<div class="claim-info tw-c-text-overlay-alt tw-flex tw-flex-column tw-full-width">
<div class="tw-border-t tw-full-width tw-mg-t-2">
</div>
<div class="tw-align-items-center tw-flex tw-full-height tw-justify-content-between tw-pd-x-2">
<p class="" data-test-selector="offer-end-time">
Offer ends
<span class="">
Oct 21
</span>
</p>
<button class="tw-interactive tw-button tw-button--prime" data-a-target="get-code-button">
<span class="tw-button__text" data-a-target="tw-button-text">
<div class="">
<p class="tw-amazon-ember-regular tw-font-size-6 tw-lg-font-size-6 tw-md-font-size-6 tw-sm-font-size-6 tw-xl-font-size-6 tw-xs-font-size-6 tw-xxl-font-size-6">
Get code
</p>
</div>
</span>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="offer tw-mg-b-2">
<div class="offer__action" data-a-target="learn-more-card">
<div class="tw-card tw-relative">
<div class="tw-flex tw-flex-column tw-flex-nowrap">
<div class="tw-border-radius-large tw-card-img tw-flex-shrink-0 tw-overflow-hidden">
<figure class="tw-aspect tw-aspect--16x9 tw-aspect--align-top">
<img alt="FIFA19 Ultimate Team Pack #2" class="tw-image" src="https://m.media-amazon.com/images/G/01/sm/FIFA19_P2/Crown_512x288._CB439449370_.jpg" srcset="https://m.media-amazon.com/images/G/01/sm/FIFA19_P2/Crown_512x288._CB439449370_.jpg 1x,https://m.media-amazon.com/images/G/01/sm/FIFA19_P2/Crown_512x288._CB439449370_.jpg 2x"/>
</figure>
</div>
<div class="tw-card-body tw-relative">
<div class="offer__body tw-flex tw-flex-column tw-justify-content-between">
<div class="offer__body__titles tw-flex tw-flex-column tw-full-height tw-justify-content-between tw-pd-t-2 tw-pd-x-2">
<p class="tw-amazon-ember-bold tw-c-text-overlay tw-font-size-5">
<span>
FIFA19 Ultimate Team Pack #2
</span>
</p>
<p class="tw-c-text-alt-2 tw-font-size-7">
Electronic Arts
</p>
</div>
<div class="claim-info tw-c-text-overlay-alt tw-flex tw-flex-column tw-full-width">
<div class="tw-border-t tw-full-width tw-mg-t-2">
</div>
<div class="tw-align-items-center tw-flex tw-full-height tw-justify-content-between tw-pd-x-2">
<p class="" data-test-selector="offer-end-time">
Offer ends
<span class="">
Sep 6
</span>
</p>
<a class="tw-interactive tw-button tw-button--prime" data-a-target="learn-more" href="https://twitch.amazon.com/prime/loot/fifa19?ref_=SM_OM_FIFA_2019_CRWN" rel="noreferrer noopener" target="_blank">
<span class="tw-button__text" data-a-target="tw-button-text">
<div class="">
<p class="tw-amazon-ember-regular tw-font-size-6 tw-lg-font-size-6 tw-md-font-size-6 tw-sm-font-size-6 tw-xl-font-size-6 tw-xs-font-size-6 tw-xxl-font-size-6">
Learn more
</p>
</div>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="offer tw-mg-b-2">
<div class="offer__action" data-a-target="learn-more-card">
<div class="tw-card tw-relative">
<div class="tw-flex tw-flex-column tw-flex-nowrap">
<div class="tw-border-radius-large tw-card-img tw-flex-shrink-0 tw-overflow-hidden">
<figure class="tw-aspect tw-aspect--16x9 tw-aspect--align-top">
<img alt="Rainbow Six Siege: Exclusive Ash Operator Set" class="tw-image" src="https://m.media-amazon.com/images/G/01/sm/R6_2019/R6SIEGE_UCS13886_TWCH_Prime_Ash_BannerBunndle_US_DetailImageHigh_512x288._CB439450374_.jpg" srcset="https://m.media-amazon.com/images/G/01/sm/R6_2019/R6SIEGE_UCS13886_TWCH_Prime_Ash_BannerBunndle_US_DetailImageHigh_512x288._CB439450374_.jpg 1x,https://m.media-amazon.com/images/G/01/sm/R6_2019/R6SIEGE_UCS13886_TWCH_Prime_Ash_BannerBunndle_US_DetailImageHigh_512x288._CB439450374_.jpg 2x"/>
</figure>
</div>
<div class="tw-card-body tw-relative">
<div class="offer__body tw-flex tw-flex-column tw-justify-content-between">
<div class="offer__body__titles tw-flex tw-flex-column tw-full-height tw-justify-content-between tw-pd-t-2 tw-pd-x-2">
<p class="tw-amazon-ember-bold tw-c-text-overlay tw-font-size-5">
<span>
Rainbow Six Siege: Exclusive Ash Operator Set
</span>
</p>
<p class="tw-c-text-alt-2 tw-font-size-7">
Ubisoft
</p>
</div>
<div class="claim-info tw-c-text-overlay-alt tw-flex tw-flex-column tw-full-width">
<div class="tw-border-t tw-full-width tw-mg-t-2">
</div>
<div class="tw-align-items-center tw-flex tw-full-height tw-justify-content-between tw-pd-x-2">
<p class="" data-test-selector="offer-end-time">
Offer ends
<span class="">
Sep 16
</span>
</p>
<a class="tw-interactive tw-button tw-button--prime" data-a-target="learn-more" href="https://twitch.amazon.com/prime/loot/rainbow6?ref=_SM_OM_R619_LP" rel="noreferrer noopener" target="_blank">
<span class="tw-button__text" data-a-target="tw-button-text">
<div class="">
<p class="tw-amazon-ember-regular tw-font-size-6 tw-lg-font-size-6 tw-md-font-size-6 tw-sm-font-size-6 tw-xl-font-size-6 tw-xs-font-size-6 tw-xxl-font-size-6">
Learn more
</p>
</div>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="offer tw-mg-b-2">
<div class="offer__action" data-a-target="learn-more-card">
<div class="tw-card tw-relative">
<div class="tw-flex tw-flex-column tw-flex-nowrap">
<div class="tw-border-radius-large tw-card-img tw-flex-shrink-0 tw-overflow-hidden">
<figure class="tw-aspect tw-aspect--16x9 tw-aspect--align-top">
<img alt="Call of Duty: Black Ops 4: Customization Bundle 5" class="tw-image" src="https://m.media-amazon.com/images/G/01/sm/codblackops4/512x288_Crown_2x_Drop5._CB438538998_.png" srcset="https://m.media-amazon.com/images/G/01/sm/codblackops4/512x288_Crown_2x_Drop5._CB438538998_.png 1x,https://m.media-amazon.com/images/G/01/sm/codblackops4/512x288_Crown_2x_Drop5._CB438538998_.png 2x"/>
</figure>
</div>
<div class="tw-card-body tw-relative">
<div class="offer__body tw-flex tw-flex-column tw-justify-content-between">
<div class="offer__body__titles tw-flex tw-flex-column tw-full-height tw-justify-content-between tw-pd-t-2 tw-pd-x-2">
<p class="tw-amazon-ember-bold tw-c-text-overlay tw-font-size-5">
<span>
Call of Duty: Black Ops 4: Customization Bundle 5
</span>
</p>
<p class="tw-c-text-alt-2 tw-font-size-7">
Activision
</p>
</div>
<div class="claim-info tw-c-text-overlay-alt tw-flex tw-flex-column tw-full-width">
<div class="tw-border-t tw-full-width tw-mg-t-2">
</div>
<div class="tw-align-items-center tw-flex tw-full-height tw-justify-content-between tw-pd-x-2">
<p class="" data-test-selector="offer-end-time">
Offer ends
<span class="">
Sep 17
</span>
</p>
<a class="tw-interactive tw-button tw-button--prime" data-a-target="learn-more" href="https://twitch.amazon.com/prime/loot/codblackops4?ref_=SM_OM_COD195_CRWN" rel="noreferrer noopener" target="_blank">
<span class="tw-button__text" data-a-target="tw-button-text">
<div class="">
<p class="tw-amazon-ember-regular tw-font-size-6 tw-lg-font-size-6 tw-md-font-size-6 tw-sm-font-size-6 tw-xl-font-size-6 tw-xs-font-size-6 tw-xxl-font-size-6">
Learn more
</p>
</div>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="offer tw-mg-b-2">
<div class="offer__action" data-a-target="claim-prime-offer-card">
<div class="tw-card tw-relative">
<div class="tw-flex tw-flex-column tw-flex-nowrap">
<div class="tw-border-radius-large tw-card-img tw-flex-shrink-0 tw-overflow-hidden">
<figure class="tw-aspect tw-aspect--16x9 tw-aspect--align-top">
<img alt="Twitch Sings: Lifeguard Uniform Outfit" class="tw-image" src="https://m.media-amazon.com/images/G/01/sm/TwitchSings/ts_prime_loot_crown_512x288_LifeGuard_LogoSafe._CB439899738_.png" srcset="https://m.media-amazon.com/images/G/01/sm/TwitchSings/ts_prime_loot_crown_512x288_LifeGuard_LogoSafe._CB439899738_.png 1x,https://m.media-amazon.com/images/G/01/sm/TwitchSings/ts_prime_loot_crown_512x288_LifeGuard_LogoSafe._CB439899738_.png 2x"/>
</figure>
</div>
<div class="tw-card-body tw-relative">
<div class="offer__body tw-flex tw-flex-column tw-justify-content-between">
<div class="offer__body__titles tw-flex tw-flex-column tw-full-height tw-justify-content-between tw-pd-t-2 tw-pd-x-2">
<p class="tw-amazon-ember-bold tw-c-text-overlay tw-font-size-5">
<span>
Twitch Sings: Lifeguard Uniform Outfit
</span>
</p>
<p class="tw-c-text-alt-2 tw-font-size-7">
Twitch
</p>
</div>
<div class="claim-info tw-c-text-overlay-alt tw-flex tw-flex-column tw-full-width">
<div class="tw-border-t tw-full-width tw-mg-t-2">
</div>
<div class="tw-align-items-center tw-flex tw-full-height tw-justify-content-between tw-pd-x-2">
<p class="" data-test-selector="offer-end-time">
Offer ends
<span class="">
Sep 12
</span>
</p>
<button class="tw-interactive tw-button tw-button--prime" data-a-target="claim-prime-offer">
<span class="tw-button__text" data-a-target="tw-button-text">
<div class="">
<p class="tw-amazon-ember-regular tw-font-size-6 tw-lg-font-size-6 tw-md-font-size-6 tw-sm-font-size-6 tw-xl-font-size-6 tw-xs-font-size-6 tw-xxl-font-size-6">
Claim
</p>
</div>
</span>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="offer tw-mg-b-2">
<div class="offer__action" data-a-target="learn-more-card">
<div class="tw-card tw-relative">
<div class="tw-flex tw-flex-column tw-flex-nowrap">
<div class="tw-border-radius-large tw-card-img tw-flex-shrink-0 tw-overflow-hidden">
<figure class="tw-aspect tw-aspect--16x9 tw-aspect--align-top">
<img alt="Buy the Overwatch League 2019 All-Access Pass and get 500 Bits" class="tw-image" src="https://m.media-amazon.com/images/G/01/sm/19-AMA-0011_Overwatch_512x288_S1._CB1548792453_.jpg" srcset="https://m.media-amazon.com/images/G/01/sm/19-AMA-0011_Overwatch_512x288_S1._CB1548792453_.jpg 1x,https://m.media-amazon.com/images/G/01/sm/19-AMA-0011_Overwatch_512x288_S1._CB1548792453_.jpg 2x"/>
</figure>
</div>
<div class="tw-card-body tw-relative">
<div class="offer__body tw-flex tw-flex-column tw-justify-content-between">
<div class="offer__body__titles tw-flex tw-flex-column tw-full-height tw-justify-content-between tw-pd-t-2 tw-pd-x-2">
<p class="tw-amazon-ember-bold tw-c-text-overlay tw-font-size-5">
<span>
Buy the Overwatch League 2019 All-Access Pass and get 500 Bits
</span>
</p>