This repository has been archived by the owner on Jan 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathIMDb-Reborn.css
3077 lines (3073 loc) · 101 KB
/
IMDb-Reborn.css
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
/* ==UserStyle==
@name IMDb Reborn
@type less
@homepageURL http://userstyles.org/styles/163692
@updateURL https://userstyles.org/styles/163692.css
@md5URL https://update.userstyles.org/163692.md5
@originalMD5 1d76188e37a304fcb3179280f183488d
@author [object Object]
@advanced color primary-color "Primary color" #f5c518
@advanced color primary-color-hover "Primary Color Hover" #be9500
@advanced color light-primary "Light Primary" #fff857
==/UserStyle== */
@-moz-document domain("www.imdb.com") {
/*
Primary Color: #f5c518
Accent Color: #be9500
Text Color: #000/#FFF
Dark/Light Mode: Dark/Light
Dark Background Colors: #191919, #262626, #333333, #3F3F3F, #4C4C4C
Light Background Colors: #FFFFFF, #F2F2F2, #E5E5E5, #D8D8D8, #CCCCCC
*/
#root {
width: 100%;
background-color: #333 !important;
color: #fff;
}
#pagecontent {
background: transparent;
}
/* START Removes full page background */
#styleguide-v2 {
background: #333 !important;
}
/* END Removes full page background */
div#rvi-div {
background-color: #333;
padding-top: 10px;
}
#content-2-wide #main, #content-2-wide .main {
width: 100%;
max-width: calc(100% - 390px);
}
.aux-content-widget-2 .ab_widget .ab_ninja {
width: 97%;
}
div#content-2-wide {
background-color: #333;
background: #333 !important;
}
/* START Full Page Ads */
.ad{
display: none;
}
div#content-2-wide {
border-left: unset;
}
#injected_navstrip_wrapper {
display: none;
}
/* END Full Page Ads */
/* START Page with background Ad */
#nb20.supertab ~ #pagecontent {
margin-top: 0px;
}
/* END Home Page */
/* START Other pages (without ad) */
#nb20.navbarSprite ~ #pagecontent.pagecontent,
#nb20.navbarSprite~#pagecontent {
margin-top: 80px;
}
/* END Other pages (without ad) */
/* START Pages that AREN'T the main page */
#content-2-wide.redesign #sidebar {
}
/* END Pages that AREN'T the main page */
/* START Slideshow */
div.ab_hero {
background-color: #191919;
color: #747474;
margin-left: 10px;
border-radius: 2px;
}
/* END Slideshow */
/* START Buttons */
button.btn.small {
background: /*[[primary-color]]*/;
border: unset;
padding: 4px 10px;
border-radius: 2px;
transition: background .2s linear;
}
button.btn.small:hover {
background: /*[[primary-hover-color]]*/;
}
.ab_widget .seemore::after {
display: none;
}
.btn.primary {
background: /*[[primary-color]]*/;
border-radius: 2px;
transition: background .2s linear;
}
.btn2.small {
background: /*[[primary-color]]*/;
color: #000;
border-radius: 2px;
border: 1px solid transparent;
padding: 3px 8px;
transition: background .2s linear;
}
.btn2.small:hover,
.btn.primary:hover {
background: /*[[primary-hover-color]]*/;
}
.btn2.small[itemprop="trailer"] {
color: /*[[primary-color]]*/;
background: transparent;
}
.btn2.small[title="Click to add to watchlist"] {
color: /*[[primary-color]]*/;
background: transparent;
border: 1px solid #333;
}
.btn2.small[title="Click to add to watchlist"]:hover,
.btn2.small[itemprop="trailer"]:hover {
color: /*[[primary-hover-color]]*/;
}
.see-more:not(.canwrap) a,
.seemore a {
color: #000 !important;
background-color: /*[[primary-color]]*/;
border-radius: 2px;
padding: 7px 8px;
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.45);
transition: .2s linear background-color, .2s linear box-shadow;
}
.seemore a:hover,
.see-more:not(.canwrap) a:hover {
background-color: /*[[primary-hover-color]]*/;
box-shadow: 0px 2px 4px 2px rgba(0, 0, 0, 0.45);
}
.see-more a span.itemprop {
color: /*[[primary-color]]*/;
}
.see-more {
border: unset;
color: transparent;
}
.ab_hero .seemore a,
#pagecontent .pagecontent #content-2-wide #main .article .seemore a{
top: 5px;
position: relative;
}
.btn2.primary {
background: /*[[primary-color]]*/ !important;
border: unset;
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.45);
border-radius: 2px;
padding: 2px;
}
#get_tickets_button .btn2 {
background: #0fbd34;
color: #fff;
border: unset;
transition: .2s background-color linear, .2s linear box-shadow;
padding: 3px 8px 1px;
border-radius: 2px;
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.45);
}
#get_tickets_button .btn2:hover {
background-color: #0a9427;
box-shadow: 0px 2px 4px 2px rgba(0, 0, 0, 0.45);
}
.rec_actions .rec_not_interested_btn .btn2 { /* Dislike button */
border: unset;
background: #ff3333;
border-radius: 50%;
width: 30px;
height: 30px;
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.45);
transition: .2s linear background, .2s linear box-shadow;
}
.rec_actions .rec_not_interested_btn .btn2:hover { /* Dislike button */
background: #d32929;
box-shadow: 0px 2px 4px 2px rgba(0, 0, 0, 0.45);
}
.rec_actions .rec_not_interested_btn {
display: inline;
float: left;
left: 10px;
top: 5px;
position: relative;
}
.rec_next.btn2.medium.btn2_text_on {
background: unset;
border: 1px solid #333;
color: /*[[primary-color]]*/;
border-radius: 2px;
padding: 2px;
font-family: Rubik,sans-serif !important;
right: 10px;
top: 8px;
position: relative;
}
.rec_nav_left.rec_nav_disabled,
.rec_nav_left.rec_nav_disabled:hover {
background-color: rgba(255, 255, 255, 0.05);
border-radius: 2px;
padding: 7px 15px 7px 9px;
color: #505050;
pointer-events: none;
cursor: pointer;
}
.rec_nav_right {
color: #000 !important;
background-color: /*[[primary-color]]*/;
padding: 7px 7px 7px 9px;
border-radius: 2px;
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.45);
}
.see-all {
color: transparent;
}
.see-all a {
color: #000;
background-color: /*[[primary-color]]*/;
border-radius: 2px;
padding: 6px 8px;
top: 5px;
position: relative;
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.45);
transition: .2s background-color linear, box-shadow .2s linear;
}
.see-all a:hover {
box-shadow: 0px 2px 4px 2px rgba(0, 0, 0, 0.45);
background-color: /*[[primary-hover-color]]*/;
}
/* END Buttons */
/* START In Theaters */
#main .article.listo.nm .list.detail.sub-list .list_item {
background-color: #333;
margin-top: 10px;
border-radius: 2px;
box-shadow: 0px 2px 4px rgba(0,0,0,0.4);
transition: .2s box-shadow linear;
}
#main .article.listo.nm .list.detail.sub-list .list_item:hover {
box-shadow: 0px 2px 4px 2px rgba(0,0,0,0.4);
}
#main .article.listo.nm h1.header {
margin-bottom: 9px;
}
.list_item .overview-top .cert-runtime-genre span:not(.ghost) {
background-color: #191919;
color: #fff;
padding: 5px 11px;
border-radius: 25px;
}
.nm-title-overview-widget-layout .outline, .nm-title-overview-widget-layout .txt-block {
color: #ffffff;
}
.article.listo.nm .list.detail.sub-list .list_item .overview-top h4 a {
top: -4px;
position: relative;
color: #000;
background-color: /*[[primary-color]]*/;
padding: 5px 10px;
border-radius: 2px;
}
p.cert-runtime-genre {
margin-top: 11px;
}
.wlb_wrapper .btn2_wrapper a.btn2.small.btn2_text_on[title="Click to add to watchlist"] {
border: 1px solid #191919;
}
.list_item .overview-top .cert-runtime-genre span.ghost {
display: none;
}
/* END In Theaters*/
/* START Showtime & Tickets Article */
.article.listo .cinema-attributes .accessibility-hearing {
background: url("data:image/svg+xml;utf8,<svg width='24' height='24' xmlns='http://www.w3.org/2000/svg'><g><title>background</title><rect fill='none' id='canvas_background' height='402' width='582' y='-1' x='-1'/></g><g><title>Layer 1</title><path fill='#ffffff' id='svg_1' d='m17,20c-0.29,0 -0.56,-0.06 -0.76,-0.15c-0.71,-0.37 -1.21,-0.88 -1.71,-2.38c-0.51,-1.56 -1.47,-2.29 -2.39,-3c-0.79,-0.61 -1.61,-1.24 -2.32,-2.53c-0.53,-0.96 -0.82,-2.01 -0.82,-2.94c0,-2.8 2.2,-5 5,-5s5,2.2 5,5l2,0c0,-3.93 -3.07,-7 -7,-7s-7,3.07 -7,7c0,1.26 0.38,2.65 1.07,3.9c0.91,1.65 1.98,2.48 2.85,3.15c0.81,0.62 1.39,1.07 1.71,2.05c0.6,1.82 1.37,2.84 2.73,3.55c0.51,0.23 1.07,0.35 1.64,0.35c2.21,0 4,-1.79 4,-4l-2,0c0,1.1 -0.9,2 -2,2zm-9.36,-17.36l-1.42,-1.42c-1.99,1.99 -3.22,4.74 -3.22,7.78s1.23,5.79 3.22,7.78l1.41,-1.41c-1.62,-1.63 -2.63,-3.88 -2.63,-6.37s1.01,-4.74 2.64,-6.36zm3.86,6.36c0,1.38 1.12,2.5 2.5,2.5s2.5,-1.12 2.5,-2.5s-1.12,-2.5 -2.5,-2.5s-2.5,1.12 -2.5,2.5z'/><path id='svg_2' fill='none' d='m0,0l24,0l0,24l-24,0l0,-24z'/></g></svg>");
background-size: 18px;
background-repeat: no-repeat;
background-position: center;
background-color: #157ad0;
padding: 6px 8px;
border-radius: 2px;
margin-top: 5px;
}
.article.listo .cinema-attributes .accessibility-wheelchair {
background-image: url("data:image/svg+xml;utf8,<svg width='502.483' height='502.483' xmlns='http://www.w3.org/2000/svg'><g><title>background</title><rect fill='none' id='canvas_background' height='402' width='582' y='-1' x='-1'/></g><g><title>Layer 1</title><g id='svg_1'><g id='svg_2'><path id='svg_3' fill='#ffffff' d='m296.64,397.279c-11.139,21.032 -26.836,37.736 -47.109,50.11c-20.269,12.364 -42.395,18.556 -66.379,18.556c-35.214,0 -65.334,-12.509 -90.364,-37.542c-25.028,-25.026 -37.543,-55.151 -37.543,-90.365c0,-25.313 6.945,-48.577 20.841,-69.806c13.894,-21.222 32.453,-36.974 55.672,-47.251l-4.853,-37.402c-32.358,11.803 -58.479,31.882 -78.371,60.242c-19.89,28.361 -29.834,59.77 -29.834,94.217c0,29.701 7.376,57.153 22.126,82.371s34.735,45.204 59.954,59.953c25.216,14.749 52.678,22.121 82.368,22.121c35.594,0 67.858,-10.562 96.785,-31.689c28.932,-21.122 48.917,-48.725 59.957,-82.796l-29.119,-58.241c1.713,23.985 -2.996,46.489 -14.131,67.522z'/><path id='svg_4' fill='#ffffff' d='m467.228,358.307l-56.528,28.267l-65.096,-129.904c-3.237,-6.66 -8.665,-9.992 -16.276,-9.992l-129.907,0l-4.568,-36.543l116.205,0l0,-36.547l-120.768,0l-10.566,-82.512c12.946,1.331 24.366,-2.618 34.263,-11.848c9.898,-9.231 14.847,-20.413 14.847,-33.547c0,-12.562 -4.471,-23.317 -13.418,-32.264c-8.95,-8.946 -19.706,-13.417 -32.265,-13.417c-10.277,0 -19.511,2.996 -27.694,8.992c-8.186,5.996 -13.61,13.844 -16.274,23.551c-1.525,4.952 -2.096,8.947 -1.713,11.993l27.406,222.41c0.572,4.575 2.615,8.422 6.136,11.57c3.521,3.135 7.566,4.709 12.135,4.709l134.758,0l68.245,136.188c3.237,6.655 8.657,9.992 16.279,9.992c3.045,0 5.8,-0.664 8.278,-1.998l73.076,-36.549l-16.555,-32.551z'/></g></g><g id='svg_5'/><g id='svg_6'/><g id='svg_7'/><g id='svg_8'/><g id='svg_9'/><g id='svg_10'/><g id='svg_11'/><g id='svg_12'/><g id='svg_13'/><g id='svg_14'/><g id='svg_15'/><g id='svg_16'/><g id='svg_17'/><g id='svg_18'/><g id='svg_19'/></g></svg>");
background-size: 18px;
background-repeat: no-repeat;
background-position: center;
background-color: #157ad0;
padding: 6px 8px;
border-radius: 2px;
margin-top: 5px;
}
.article.listo .list .fav_box a[itemprop="url"] {
background-color: /*[[primary-color]]*/;
color: #000;
padding: 5px;
border-radius: 2px;
}
a.favorite_toggle.favorite_off {
border: unset;
background-color: #ea4242;
border-radius: 2px;
transition: .2s linear background-color;
}
a.favorite_toggle.favorite_off:hover {
border: unset;
background-color: #e22727;
border-radius: 2px;
}
.favorite_toggle:hover,
.favorite_toggle{
border: unset;
text-decoration: unset !important;
}
.article.listo.st {
background-color: #191919;
border: unset;
border-radius: 2px;
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.4);
}
.datepicker a {
background: #333;
border-radius: 2px;
color: #fff;
margin-left: 7px;
}
.datepicker a {
background: #333 !important;
border-radius: 2px !important;
color: #fff !important;
margin-left: 10px;
border: unset !important;
padding: 0px 0px 6px !important;
width: 3.3em !important;
transition: .2s transform linear;
}
.datepicker a.selected {
background: /*[[primary-color]]*/ !important;
color: #000 !important;
border: unset !important;
}
.datepicker a:not(.selected):hover {
transform: translate(0px, -4px);
}
.article.listo.st .datepicker .description {
color: #fff;
margin-left: 10px;
margin-bottom: 15px;
font-size: 20px;
}
.article.listo.st .location .header a {
color: #000;
background-color: /*[[primary-color]]*/;
border-radius: 2px;
padding: 6px 8px;
margin-left: 15px;
top: 6px !important;
position: relative;
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.45);
transition: .2s background-color linear, box-shadow .2s linear;
}
.article.listo.st .location .header a:hover {
color: #000;
text-decoration: unset;
background-color: /*[[primary-hover-color]]*/;
box-shadow: 0px 2px 4px 2px rgba(0, 0, 0, 0.45);
transition: .2s background-color linear, box-shadow .2s linear;
}
.listo ul.list_tabs a {
background-color: unset;
border: unset;
color: #fff;
opacity: 0.8;
padding-bottom: 10px;
transition: .2s linear border-bottom;
border-bottom: 2px solid transparent;
}
.listo ul.list_tabs li.active a {
background-color: unset;
border: unset;
color: #fff;
border-bottom: 2px solid /*[[primary-color]]*/;
padding-bottom: 10px;
opacity: 1;
}
.listo ul.list_tabs li.active a span {
color: /*[[primary-color]]*/;
}
.listo ul.list_tabs a:hover {
border-bottom: 2px solid /*[[primary-color]]*/;
opacity: 1;
}
.listo ul.list_tabs {
border: unset;
background-color: #333;
border-radius: 2px;
padding: 7px 15px;
}
.listo .header .spacer ~ div.nav {
background: /*[[primary-color]]*/;
border-radius: 2px;
top: 8px;
position: relative;
border: unset;
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
}
.article.listo.nm .header div.nav {
background: #333;
border: unset;
}
.listo .header .nav .desc {
color: #000;
}
.linkright span {
visibility: hidden;
}
ul.list_tabs li.linkright a {
color: /*[[primary-color]]*/;
opacity: 1;
border: 1px solid #191919;
border-radius: 2px;
padding: 4px 10px 5px;
}
ul.list_tabs li.linkright a:hover {
text-decoration: unset;
border: 1px solid #191919;
}
ul.list_tabs li.linkright a:last-of-type {
border: unset;
background-color: /*[[primary-color]]*/;
color: #000;
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.45);
transition: .2s linear background-color, .2s linear box-shadow;
}
ul.list_tabs li.linkright a:hover:last-of-type {
background-color: /*[[primary-hover-color]]*/;
box-shadow: 0px 2px 4px 2px rgba(0, 0, 0, 0.45);
}
.listo.st .detail .list_item {
background-color: transparent;
border: unset;
}
.listo .detail .list_item .list_item {
background-color: #333;
border-radius: 2px;
border: unset;
margin-top: 10px;
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.4);
transition: .2s box-shadow linear;
}
.listo .detail .list_item .list_item:hover {
box-shadow: 0px 2px 4px 2px rgba(0, 0, 0, 0.4);
}
.article.listo.st .detail .list_item .address div {
color: #fff;
background-color: #333;
display: -webkit-inline-box;
padding: 7px 9px;
border-radius: 2px;
margin-top: 6px;
}
.article.listo.st .detail .list_item .address div span[itemprop="telephone"] {
color: /*[[primary-color]]*/;
}
.datepicker a span {
color: #000;
background-color: /*[[primary-color]]*/;
border-radius: 2px 2px 0px 0px;
padding: 1px 0px;
margin-bottom: 4px;
}
.article.listo.st .location-no-wrap {
top: 18px;
left: 14px;
position: relative;
}
.location .edit-show a {
font-size: 0px !important;
}
.location .edit-show a::before {
content: "";
background: url("data:image/svg+xml;utf8,<svg width='1024' height='1024' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='xMidYMid meet'><metadata>Created by potrace 1.15, written by Peter Selinger 2001-2017</metadata><g><title>background</title><rect fill='none' id='canvas_background' height='402' width='582' y='-1' x='-1'/></g><g><title>Layer 1</title><g id='svg_1' fill='#000000' transform='translate(0,1024) scale(0.10000000149011612,-0.10000000149011612) '><path fill='#000' stroke='#b7b716' id='svg_2' d='m4690,9380l0,-439l-32,-5c-18,-3 -96,-15 -173,-27c-748,-114 -1478,-483 -2044,-1034c-519,-505 -878,-1130 -1051,-1828c-31,-127 -90,-446 -90,-489c0,-5 -198,-8 -440,-8l-440,0l0,-430l0,-430l439,0l439,0l6,-37c29,-195 53,-323 87,-460c286,-1172 1132,-2157 2250,-2621c277,-114 610,-209 874,-247c61,-8 125,-18 143,-21l32,-5l0,-439l0,-440l430,0l430,0l0,440l0,439l33,5c234,36 326,53 462,86c846,207 1610,710 2139,1408c262,346 461,728 596,1146c67,207 111,411 156,709l6,37l439,0l439,0l0,430l0,430l-439,0l-439,0l-6,38c-48,323 -99,542 -182,784c-359,1048 -1160,1893 -2194,2313c-297,121 -557,188 -977,251l-33,5l0,439l0,440l-430,0l-430,0l0,-440zm830,-1305c1294,-181 2323,-1178 2539,-2460c91,-541 26,-1127 -181,-1623c-156,-376 -367,-691 -653,-977c-1000,-1000 -2557,-1162 -3735,-387c-182,119 -320,231 -475,387c-410,409 -682,906 -809,1475c-77,346 -86,766 -25,1127c144,857 667,1618 1416,2064c396,235 782,359 1288,413c91,9 524,-3 635,-19z'/><path fill='#000' stroke='#b7b716' id='svg_3' d='m4917,6819c-492,-57 -942,-332 -1218,-744c-293,-437 -369,-995 -203,-1495c197,-591 684,-1017 1306,-1142c164,-33 472,-33 636,0c431,87 797,314 1053,657c334,445 429,1032 253,1565c-208,631 -766,1084 -1429,1160c-102,11 -297,11 -398,-1z'/></g></g></svg>");
background-size: 13px;
background-repeat: no-repeat;
background-position: center;
width: 25px;
height: 25px;
position: absolute;
border-radius: 50%;
background-color: /*[[primary-color]]*/;
}
h5.li_group:before {
visibility: hidden;
}
.info .showtimes .ghost {
visibility: hidden;
}
.info .showtimes a:not(.btn2) {
background-color: #191919;
padding: 5px 10px;
margin-left: -13px;
border-radius: 2px;
top: 4px;
position: relative;
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.4);
transition: .2s box-shadow linear;
font-size: 12px;
}
.info .showtimes a:hover:not(.btn2) {
box-shadow: 0px 2px 4px 2px rgba(0, 0, 0, 0.4);
}
.cert-runtime-genre .rating_txt {
display: -webkit-box;
color: #fff;
}
.cert-runtime-genre .rating_txt .nobr strong {
color: /*[[primary-color]]*/;
}
.cert-runtime-genre .rating_txt .ghost {
visibility: hidden;
}
.cert-runtime-genre .rating_txt .metascore {
border-radius: 50%;
padding: 6px 6.5px;
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.4);
transition: .2s linear box-shadow;
}
.cert-runtime-genre .rating_txt .metascore:hover {
box-shadow: 0px 2px 4px 2px rgba(0, 0, 0, 0.4);
}
.faceter>.faceter-header {
background-color: #333;
border: unset;
border-radius: 2px;
}
.faceter>.faceter-header .expand .double-arrow {
display: none;
}
.faceter>.faceter-header .expand .global-sprite ~ strong {
color: /*[[primary-color]]*/;
}
.faceter>.faceter-header>.facets-active {
border-left: 1px solid #191919;
}
.faceter>.faceter-header>.facets-active>.text-muted {
color: #fff;
}
.article.listo .header.filmosearch {
background: transparent;
border: unset;
}
.listo .header.filmosearch .nav {
background: #323232;
border: unset;
}
.listo .header.filmosearch .nav .desc {
color: #fff;
}
.lister .header.filmosearch .lister-controls>.lister-control-group {
background-color: #333;
padding: 7px 12px;
margin-bottom: 10px;
}
.heroic-overview .title_block .titleBar .primary_ribbon .wl-ribbon.standalone.inWL::before {
content: "✓";
color: #fff;
background-color: #4bae4f;
padding: 10px 13.19px;
border-radius: 50%;
font-size: 16px;
box-shadow: 0px 3px 4px 0px #131313;
transition: .2s all linear;
position: relative;
left: 1px;
top: 18px;
}
.header.filmosearch ~ .lister-list .lister-item-image .wl-ribbon.poster.inWL::before {
content: "✓";
color: #fff;
background-color: #4bae4f;
padding: 10px 13.19px;
border-radius: 50%;
font-size: 16px;
box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.4);
transition: .2s all linear;
position: relative;
left: -8px;
top: 3px;
}
.header.filmosearch ~ .lister-list .lister-item-image .wl-ribbon.poster.not-inWL::before {
content: "+";
color: #000;
background-color: /*[[primary-color]]*/;
padding: 10px 13.19px;
border-radius: 50%;
font-size: 16px;
box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.4);
transition: .2s all linear;
position: relative;
left: -8px;
top: 3px;
opacity: 0.9;
}
.header.filmosearch ~ .lister-list .lister-item-image .wl-ribbon.poster.inWL:hover::before,
.header.filmosearch ~ .lister-list .lister-item-image .wl-ribbon.poster.not-inWL:hover::before {
box-shadow: 0px 2px 4px 2px rgba(0,0,0,0.4);
opacity: 1;
}
.header.filmosearch ~ .lister-list .lister-item-image .wl-ribbon.poster.inWL,
.header.filmosearch ~ .lister-list .lister-item-image .wl-ribbon.poster.not-inWL {
background: unset;
}
.lister-item-content.smart-popout {
background-color: #333 !important;
animation: .1s linear opacity,.3s cubic-bezier(0,0,0,1) context-open-new;
transform-origin: 0 0!important;
border-radius: 2px !important;
}
.lister-item.mode-grid>.lister-item-content.popout-up>.triangle {
border-color: #333333 transparent transparent transparent;
}
.lister-item.mode-grid>.lister-item-content.popout-right>.triangle {
border-color: transparent #333 transparent transparent;
}
.lister-item.mode-grid>.lister-item-content.popout-down>.triangle {
border-color: transparent transparent #333 transparent;
}
.lister-item.mode-grid>.lister-item-content.popout-left>.triangle {
border-color: transparent transparent transparent #333;
}
.lister-item.mode-grid>.lister-item-image>.posterInfo {
color: #fff;
}
.lister-item.mode-grid>.lister-item-image>.posterInfo strong {
color: /*[[primary-color]]*/;
}
.lister-item .lister-item-content.smart-popout .text-muted a {
background-color: transparent;
color: /*[[primary-color]]*/;
padding: 0px;
transition: .2s color linear;
}
.lister-item .lister-item-content.smart-popout .text-muted a:hover {
background-color: transparent;
color: /*[[primary-hover-color]]*/;
}
.datepicker .text-muted.text-smaller.description {
color: #fff;
font-size: 25px;
margin-bottom: 18px;
border-bottom: 2px solid /*[[primary-color]]*/;
display: -webkit-inline-box;
padding-bottom: 10px;
}
.datepicker {
margin-top: 31px !important;
}
#pagecontent.pagecontent #content-2-wide #main .article.sub-overview {
background-color: #333;
}
#pagecontent.pagecontent #content-2-wide #main .article.sub-overview ~ .list.detail .list_item {
background-color: #333;
border-radius: 2px;
padding: 4px 8px;
margin-top: 10px;
}
#pagecontent.pagecontent #content-2-wide #main .article.sub-overview ~ .list.detail .showtimes .btn_float ~ a {
background-color: #191919;
padding: 5px 8px;
font-size: 12px;
border-radius: 2px;
transition: .2s linear background-color;
}
#pagecontent.pagecontent #content-2-wide #main .article.sub-overview ~ .list.detail .showtimes .btn_float ~ a:hover {
background-color: /*[[primary-color]]*/;
color: #000;
text-decoration: unset;
}
#pagecontent.pagecontent #content-2-wide #main .article.sub-overview ~ .list.detail .address {
color: #fff;
}
#pagecontent.pagecontent #content-2-wide #main .article.sub-overview ~ .list.detail .address div[itemprop="location"] {
background-color: #191919;
padding: 7px 9px;
margin-top: 7px;
display: -webkit-inline-box;
}
#pagecontent.pagecontent #content-2-wide #main .article.sub-overview ~ h3 {
background-color: #333;
color: #fff;
display: -webkit-inline-box;
padding: 8px 16px;
margin-top: 25px;
font-size: 21px;
}
#pagecontent.pagecontent #content-2-wide #main .article.sub-overview ~ .list.detail .showtimes .btn_float ~ .ghost {
display: none;
}
#pagecontent.pagecontent #content-2-wide #main .article.sub-overview ~ .list.detail .list_item .fav_box a[itemprop=url] {
border-radius: 0px;
}
#pagecontent.pagecontent #content-2-wide #main .article.sub-overview .overview-top p,
#pagecontent.pagecontent #content-2-wide #main .article.sub-overview .overview-top .txt-block{
color: #fff;
}
#pagecontent.pagecontent #content-2-wide #main .article.sub-overview .overview-top .cert-runtime-genre span:not(.ghost) {
background-color: #191919;
padding: 5px 10px 6px 10px;
border-radius: 25px;
}
#pagecontent.pagecontent #content-2-wide #main .article.sub-overview .overview-top .cert-runtime-genre span.ghost {
display: none;
}
#pagecontent.pagecontent #content-2-wide #main .article.sub-overview .overview-top .outline {
color: #fff;
background-color: #191919;
border-radius: 2px;
padding: 9px 10px;
}
#pagecontent.pagecontent #content-2-wide #main .article.sub-overview .overview-top .rating_txt .rating.rating-list {
position: absolute;
margin-left: 65px;
}
/* END Showtime & Tickets Article */
/* START Coming Soon */
.listo.nm .detail div.list_item {
border: unset;
background-color: #333;
margin-top: 10px;
border-radius: 2px;
box-shadow: 0px 2px 4px rgba(0,0,0,0.4);
transition: .2s linear box-shadow;
}
.listo.nm .detail div.list_item:hover {
box-shadow: 0px 2px 4px 2px rgba(0,0,0,0.4);
}
/* START Coming Soon */
/* START Articles */
#content-2-wide #main .article .sorting a {
color: #fff;
margin-left: 14px;
border-bottom: 2px solid transparent;
padding-bottom: 10px;
transition: .2s linear border-bottom, .2s linear color;
}
#content-2-wide #main .article .sorting a:hover{
color: /*[[primary-color]]*/;
border-bottom: 2px solid /*[[primary-color]]*/;
}
#content-2-wide #main .article .sorting a strong {
color: /*[[primary-color]]*/;
border-bottom: 2px solid /*[[primary-color]]*/;
}
#content-2-wide #main .article .sorting a strong {
color: /*[[primary-color]]*/;
border-bottom: 2px solid /*[[primary-color]]*/;
padding-bottom: 9px;
}
#content-2-wide #main .article .sorting {
background-color: #252525;
padding: 12px 10px;
border-radius: 2px;
}
#pagecontent .pagecontent #content-2-wide #main .article {
border: unset;
background-color: #191919;
border-radius: 2px;
margin-left: 10px;
margin-top: 10px;
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.4);
}
#pagecontent.pagecontent #content-2-wide #main .article {
border: unset;
background-color: #191919;
border-radius: 2px;
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.4);
transition: .2s linear box-shadow;
}
#pagecontent.pagecontent #content-2-wide #main .article:hover {
box-shadow: 0px 2px 4px 2px rgba(0, 0, 0, 0.4);
}
#pagecontent.pagecontent #content-2-wide #main .article .article,
#pagecontent.pagecontent #content-2-wide #main .article:hover .article {
box-shadow: unset;
}
.article a h3 {
color: #000;
background-color: /*[[primary-color]]*/;
padding: 7px 12px;
border-radius: 2px;
transition: .2s linear background-color, box-shadow .2s linear;
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.45);
}
.article a:hover h3 {
box-shadow: 0px 2px 4px 2px rgba(0, 0, 0, 0.45);
}
.article > a:hover:not(.full-link) {
text-decoration: unset;
background-color: /*[[primary-hover-color]]*/;
}
.article > a:hover {
text-decoration: unset !important;
}
.rightcornerlink {
border-left: unset;
}
.article .rightcornerlink a {
font-size: 14px;
top: -16px;
right: 10px;
position: relative;
}
.widget_header .oneline span {
visibility: hidden;
}
.article .poll h4 a {
border: 1px solid #333;
padding: 7px 10px;
border-radius: 2px;
}
/* END Articles */
/* START Recommended Article */
.rec_view {
height: 280px;
}
.rec_nav {
top: 245px;
}
.rating-list {
border: unset;
border-radius: 2px;
}
.rec_details {
overflow: visible !important;
width: 230px;
border-radius: 2px;
}
.rec_details .rec-jaw-upper>.rec-title .nobr {
visibility: hidden;
}
.rec_details .rec-jaw-upper>.rec-title {
font-size: 22px;
top: 4px;
position: relative;
line-height: 24px;
margin-bottom: 5px;
}
.rec_details .rec-jaw-lower {
display: none;
}
.rec_details .rec-jaw-upper {
background: #333;
padding: 10px;
border-radius: 2px;
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
}
.rec_actions .rec_not_interested_btn .btn2_text {
margin-top: 9px;
}
/* END Recommended Article */
/* START News Article */
.newsdesk .primary-news {
box-shadow: 0 2px 4px 0 rgba(0,0,0,.45);
margin-bottom: 10px;
background-color: #333;
border-radius: 2px;
padding: 10px;
transition: .2s linear box-shadow;
}
.newsdesk .summary-news .news-header {
background-color: #333;
border-radius: 2px;
padding: 9px;
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.45);
border: unset;
transition: .2s linear box-shadow;
}
.newsdesk .summary-news .news-header:hover,
.newsdesk .primary-news:hover {
box-shadow:0 2px 4px 2px rgba(0,0,0,.45);
}
.newsdesk .redesign .ghost {
color: #4e4e4e;
}
.newsdesk .text-muted {
color: rgba(255, 255, 255, 0.69);
}
/* END News Article */
/* START Watchlist */
.article #center-1-react.ab_react .lister-widget .lister-controls .nav,
.article #center-1-react.ab_react .lister-widget .lister-header .nav {
background-color: #191919;
border-color: #333;
}
.lister-widget .lister-header h1 {
color: #ffffff;
}
.lister-widget .lister-item .lister-item-image .wl-ribbon.poster {
background-image: unset;
}
.lister-widget .lister-item .lister-item-image .wl-ribbon.poster::before {
content: "✓";
color: #fff;
background-color: #4bae4f;
padding: 6px 9px;
border-radius: 50%;
font-size: 16px;
box-shadow: 0 3px 4px 0 #131313;
transition: .2s all linear;
position: relative;
left: -10.51px;
}
.lister-widget .lister-item .lister-item-image .wl-ribbon.poster:hover::before {
content: "X";
color: #fff;
background-color: #cf3232;
}
#wrapper .lister-widget .metascore {
padding: 1px 2px 0;
margin-top: -5px;
box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.4);
}
.lister-widget .lister-list.mode-detail>* {
border: unset;
background-color: #333;
margin-top: 10px;
border-radius: 2px;
padding: 0px 12px;
}
#wrapper .lister-widget .lister-item .lister-item-content .plot:after {
visibility: hidden;
}
#wrapper .lister-widget .ratings-bar>.ratings-metascore {
margin-left: 13px;
}
.lister-widget .ratings-metascore-description {
color: #000000;
}
#wrapper .lister-widget .lister-item-header>a {
color: #000;
background-color: /*[[primary-color]]*/;
padding: 4px 10px;
top: -6px;
position: relative;
transition: .2s linear background-color;
}
#wrapper .lister-widget .lister-item-header>a:hover {
color: #000;
background-color: /*[[primary-hover-color]]*/;
}
.lister-widget .lister-item-details,
.lister-widget .lister-item-credits,
#wrapper .lister-widget .lister-item-credits span,
.lister-widget .lister-details,
#wrapper .lister-widget .lister-header .header-actions .button-title,
#wrapper .lister-widget .lister-controls select,
#wrapper .lister-widget .lister-control-group {
color: #fff;
}
button.lister-controls-expand {
color: /*[[primary-color]]*/ !important;
border: 1px solid #333 !important;
border-radius: 2px !important;
transition: .2s all linear;
}
button.lister-controls-expand:hover {
color: #000 !important;
background-color: /*[[primary-color]]*/;
border: 1px solid transparent !important;
}
.lister-widget .lister-control-group select, .lister-widget .header-actions select {
background-color: #333333;
height: 30px;
padding: 0px 6px;
border-radius: 2px !important;
}
#wrapper .lister-widget .lister-item-credits .ghost {
color: #191919;
}
#wrapper .lister-widget .lister-item-credits>a {
color: /*[[primary-color]]*/;
}
/* END Watchlist */
/* START Right Sidebar #1 */
#content-2-wide:before {
display: none;
}
#pagecontent .pagecontent #content-2-wide #sidebar {
margin-right: 10px;
width: 370px;