@gcorevideo/player 2.20.14 → 2.20.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.css CHANGED
@@ -261,6 +261,113 @@
261
261
  }
262
262
  }.clips.bar-container[data-seekbar] {
263
263
  clip-path: url("#myClip");
264
+ }.big-mute-icon-wrapper[data-big-mute] {
265
+ position: absolute;
266
+ z-index: 9998;
267
+ background-color: transparent;
268
+ display: flex;
269
+ justify-content: center;
270
+ width: 100%;
271
+ height: calc(100% - 50px);
272
+ margin: 0 auto;
273
+ opacity: 0.75;
274
+ transition: opacity 0.1s ease;
275
+ pointer-events: auto;
276
+ }
277
+ .big-mute-icon-wrapper[data-big-mute].hide {
278
+ display: none;
279
+ }
280
+ .big-mute-icon-wrapper[data-big-mute]:hover {
281
+ cursor: pointer;
282
+ }
283
+
284
+ .big-mute-icon[data-big-mute-icon] {
285
+ display: flex;
286
+ align-items: center;
287
+ justify-content: center;
288
+ align-self: center;
289
+ width: 120px;
290
+ height: 120px;
291
+ border: 2px solid white;
292
+ border-radius: 50%;
293
+ filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
294
+ filter: alpha(opacity=60);
295
+ opacity: 1;
296
+ box-shadow: 0 0 1px 0 white;
297
+ background: rgba(240, 243, 247, 0.9411764706);
298
+ z-index: 10000;
299
+ }
300
+ .big-mute-icon[data-big-mute-icon] svg {
301
+ margin-left: 5px;
302
+ width: 80px;
303
+ height: 80px;
304
+ }
305
+ .big-mute-icon[data-big-mute-icon] svg path {
306
+ fill: #1f1e1e !important;
307
+ }
308
+ .big-mute-icon[data-big-mute-icon]:hover {
309
+ background: rgba(240, 243, 247, 0.8784313725);
310
+ }
311
+ .big-mute-icon[data-big-mute-icon]:hover svg path {
312
+ fill: #151515 !important;
313
+ }.context-menu {
314
+ z-index: 999;
315
+ position: absolute;
316
+ top: 0;
317
+ left: 0;
318
+ text-align: center;
319
+ }
320
+ .context-menu .context-menu-list {
321
+ font-family: "Proxima Nova", sans-serif;
322
+ font-size: 12px;
323
+ line-height: 12px;
324
+ list-style-type: none;
325
+ text-align: left;
326
+ padding: 5px;
327
+ margin-left: auto;
328
+ margin-right: auto;
329
+ background-color: rgba(0, 0, 0, 0.75);
330
+ border: 1px solid #666;
331
+ border-radius: 4px;
332
+ }
333
+ .context-menu .context-menu-list .context-menu-list-item {
334
+ color: white;
335
+ padding: 5px;
336
+ cursor: pointer;
337
+ }div.player-error-screen, [data-player] div.player-error-screen {
338
+ color: #CCCACA;
339
+ position: absolute;
340
+ top: 0;
341
+ height: 100%;
342
+ width: 100%;
343
+ background-color: rgba(0, 0, 0, 0.7);
344
+ z-index: 2000;
345
+ display: flex;
346
+ flex-direction: column;
347
+ justify-content: center;
348
+ }
349
+ div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
350
+ font-size: 14px;
351
+ color: #CCCACA;
352
+ margin-top: 45px;
353
+ }
354
+ div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
355
+ font-weight: bold;
356
+ line-height: 30px;
357
+ font-size: 18px;
358
+ }
359
+ div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
360
+ width: 90%;
361
+ margin: 0 auto;
362
+ }
363
+ div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
364
+ font-size: 13px;
365
+ margin-top: 15px;
366
+ }
367
+ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
368
+ cursor: pointer;
369
+ width: 30px;
370
+ margin: 15px auto 0;
264
371
  }:root {
265
372
  --primary-background-color: #000;
266
373
  --secondary-background-color: #262626;
@@ -643,619 +750,107 @@
643
750
  .mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul {
644
751
  width: 25%;
645
752
  }
646
- }*, :focus, :visited {
647
- outline: none !important;
648
- }
649
-
650
- .gear-wrapper .go-back {
651
- font-weight: 600;
652
- font-size: 14px;
753
+ }.seek-time[data-seek-time] {
754
+ position: absolute;
755
+ white-space: nowrap;
756
+ height: 20px;
653
757
  line-height: 20px;
654
- width: 100%;
655
- text-align: left;
656
- padding: 12px;
758
+ font-size: 0;
759
+ left: -100%;
760
+ bottom: 55px;
761
+ background-color: rgba(2, 2, 2, 0.5);
762
+ z-index: 9999;
763
+ transition: opacity 0.1s ease;
657
764
  }
658
- .gear-wrapper .go-back .arrow-left-icon {
659
- float: left;
660
- padding-top: 2px;
661
- padding-right: 2px;
765
+ .seek-time[data-seek-time].hidden[data-seek-time] {
766
+ opacity: 0;
662
767
  }
663
- .gear-wrapper .go-back .arrow-left-icon svg {
664
- height: 16px;
768
+ .seek-time[data-seek-time] [data-seek-time] {
769
+ display: inline-block;
770
+ color: white;
771
+ font-size: 10px;
772
+ padding-left: 7px;
773
+ padding-right: 7px;
774
+ vertical-align: top;
665
775
  }
666
- .gear-wrapper ul.gear-sub-menu {
667
- width: 100%;
668
- list-style-type: none;
669
- background-color: transparent;
670
- min-width: 60px;
671
- border-top: 2px solid rgb(36, 36, 36);
776
+ .seek-time[data-seek-time] [data-duration] {
777
+ display: inline-block;
778
+ color: rgba(255, 255, 255, 0.5);
779
+ font-size: 10px;
780
+ padding-right: 7px;
781
+ vertical-align: top;
672
782
  }
673
- .gear-wrapper ul.gear-sub-menu li {
674
- font-size: 12px;
675
- text-align: left;
783
+ .seek-time[data-seek-time] [data-duration]::before {
784
+ content: "|";
785
+ margin-right: 7px;
786
+ }[data-player] {
787
+ --bottom-panel: 40px;
676
788
  }
677
- .gear-wrapper ul.gear-sub-menu li[data-title] {
678
- background-color: #c3c2c2;
679
- padding: 5px;
789
+
790
+ .container .media-control-notransition {
791
+ transition: none !important;
680
792
  }
681
- .gear-wrapper ul.gear-sub-menu li a {
682
- display: block;
683
- text-decoration: none;
684
- height: 32px;
685
- padding: 5px 10px;
686
- line-height: 22px;
687
- color: #fffffe;
793
+ .container .player-poster[data-poster] .play-wrapper[data-poster] {
794
+ opacity: 1;
688
795
  }
689
- .gear-wrapper ul.gear-sub-menu li a:hover {
690
- color: white;
691
- background-color: rgba(0, 0, 0, 0.4);
796
+ .container.crop-video [data-html5-video] {
797
+ object-fit: cover;
692
798
  }
693
- .gear-wrapper ul.gear-sub-menu li a:hover a {
694
- color: white;
695
- text-decoration: none;
799
+ .container .subtitle-string {
800
+ position: absolute;
801
+ bottom: calc(var(--bottom-panel) + 5px);
802
+ width: 100%;
696
803
  }
697
- .gear-wrapper ul.gear-sub-menu li a .check-icon {
698
- width: 30px;
699
- height: 20px;
700
- float: left;
701
- display: block;
804
+ .container .subtitle-string p {
805
+ width: auto;
806
+ background-color: rgba(0, 0, 0, 0.4);
807
+ color: white;
808
+ display: inline-block;
702
809
  }
703
- .gear-wrapper ul.gear-sub-menu li a .check-icon svg {
704
- display: none;
810
+ .container .circle-poster[data-poster] {
811
+ top: 50%;
812
+ margin-top: -60px;
813
+ left: 50%;
814
+ margin-left: -60px;
815
+ position: absolute;
816
+ width: 120px;
817
+ height: 120px;
818
+ border: 2px solid white;
819
+ border-radius: 50%;
820
+ filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
821
+ filter: alpha(opacity=60);
822
+ opacity: 1;
823
+ box-shadow: 0 0 1px 0 white;
705
824
  }
706
- .gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
707
- display: inline;
825
+ .container .circle-poster[data-poster] svg {
826
+ margin-left: 5px;
827
+ width: 80px;
828
+ height: 80px;
708
829
  }
709
- .gear-wrapper svg {
710
- height: 20px;
711
- }.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
712
- float: right;
713
- font-family: Roboto, "Open Sans", Arial, sans-serif;
830
+ .container .spinner-three-bounce[data-spinner] > div {
831
+ background-color: #ff5700;
714
832
  }
715
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .button-gear {
716
- height: 40px;
717
- width: 40px;
718
- padding-right: 20px;
833
+
834
+ .media-control-skin-1[data-media-control-skin-1].w270 .media-control-quality,
835
+ .media-control-skin-1[data-media-control-skin-1].w270 .media-control-audio-tracks {
836
+ display: none;
719
837
  }
720
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .button-gear svg {
721
- height: 20px;
838
+ .media-control-skin-1[data-media-control-skin-1].w270 .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] {
839
+ transform: rotate(270deg);
840
+ float: none;
841
+ display: block;
842
+ position: absolute;
843
+ /* bottom: 12px; */
844
+ margin: 0;
845
+ top: -40px;
846
+ padding: 0;
847
+ /* right: 20px; */
848
+ margin-left: -32px;
849
+ margin-top: -3px;
850
+ width: 80px;
851
+ /* padding-left: 12px; */
722
852
  }
723
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
724
- position: absolute;
725
- right: 16px;
726
- bottom: 52px;
727
- display: none;
728
- width: 250px;
729
- min-height: 48px;
730
- z-index: 9999;
731
- border-radius: 4px;
732
- }
733
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
734
- padding: 8px 0;
735
- }
736
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list svg {
737
- float: left;
738
- margin-right: 10px;
739
- }
740
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option {
741
- margin: 0;
742
- text-align: left;
743
- line-height: 22px;
744
- padding: 5px 14px;
745
- width: 250px;
746
- font-size: 12px;
747
- }
748
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option .gear-option_arrow-right-icon {
749
- float: right;
750
- margin-right: -14px;
751
- }
752
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option .gear-option_value {
753
- float: right;
754
- margin-right: 8px;
755
- }
756
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option svg {
757
- height: 20px;
758
- }.big-mute-icon-wrapper[data-big-mute] {
759
- position: absolute;
760
- z-index: 9998;
761
- background-color: transparent;
762
- display: flex;
763
- justify-content: center;
764
- width: 100%;
765
- height: calc(100% - 50px);
766
- margin: 0 auto;
767
- opacity: 0.75;
768
- transition: opacity 0.1s ease;
769
- pointer-events: auto;
770
- }
771
- .big-mute-icon-wrapper[data-big-mute].hide {
772
- display: none;
773
- }
774
- .big-mute-icon-wrapper[data-big-mute]:hover {
775
- cursor: pointer;
776
- }
777
-
778
- .big-mute-icon[data-big-mute-icon] {
779
- display: flex;
780
- align-items: center;
781
- justify-content: center;
782
- align-self: center;
783
- width: 120px;
784
- height: 120px;
785
- border: 2px solid white;
786
- border-radius: 50%;
787
- filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
788
- filter: alpha(opacity=60);
789
- opacity: 1;
790
- box-shadow: 0 0 1px 0 white;
791
- background: rgba(240, 243, 247, 0.9411764706);
792
- z-index: 10000;
793
- }
794
- .big-mute-icon[data-big-mute-icon] svg {
795
- margin-left: 5px;
796
- width: 80px;
797
- height: 80px;
798
- }
799
- .big-mute-icon[data-big-mute-icon] svg path {
800
- fill: #1f1e1e !important;
801
- }
802
- .big-mute-icon[data-big-mute-icon]:hover {
803
- background: rgba(240, 243, 247, 0.8784313725);
804
- }
805
- .big-mute-icon[data-big-mute-icon]:hover svg path {
806
- fill: #151515 !important;
807
- }.dvr-controls[data-dvr-controls] {
808
- display: inline-block;
809
- float: left;
810
- color: #fff;
811
- line-height: 32px;
812
- font-size: 10px;
813
- font-weight: bold;
814
- margin-left: 6px;
815
- height: 40px;
816
- line-height: 40px;
817
- margin-left: 0;
818
- }
819
- .dvr-controls[data-dvr-controls] .live-info {
820
- cursor: default;
821
- font-family: "Roboto", "Open Sans", Arial, sans-serif;
822
- text-transform: uppercase;
823
- }
824
- .dvr-controls[data-dvr-controls] .live-info:before {
825
- content: "";
826
- display: inline-block;
827
- position: relative;
828
- width: 7px;
829
- height: 7px;
830
- border-radius: 3.5px;
831
- margin-right: 3.5px;
832
- background-color: #ff0101;
833
- }
834
- .dvr-controls[data-dvr-controls] .live-info.disabled {
835
- opacity: 0.3;
836
- }
837
- .dvr-controls[data-dvr-controls] .live-info.disabled:before {
838
- background-color: #fff;
839
- }
840
- .dvr-controls[data-dvr-controls] .live-button {
841
- cursor: pointer;
842
- outline: none;
843
- display: none;
844
- border: 0;
845
- color: #fff;
846
- background-color: transparent;
847
- height: 32px;
848
- padding: 0;
849
- opacity: 0.7;
850
- font-family: "Roboto", "Open Sans", Arial, sans-serif;
851
- text-transform: uppercase;
852
- transition: all 0.1s ease;
853
- }
854
- .dvr-controls[data-dvr-controls] .live-button:before {
855
- content: "";
856
- display: inline-block;
857
- position: relative;
858
- width: 7px;
859
- height: 7px;
860
- border-radius: 3.5px;
861
- margin-right: 3.5px;
862
- background-color: #fff;
863
- }
864
- .dvr-controls[data-dvr-controls] .live-button:hover {
865
- opacity: 1;
866
- text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
867
- }
868
- .dvr-controls[data-dvr-controls] .live-info {
869
- font-size: 14px;
870
- letter-spacing: 0.8px;
871
- font-weight: 500;
872
- color: #fffffe;
873
- margin-left: 21px;
874
- }
875
- .dvr-controls[data-dvr-controls] .live-info::before {
876
- width: 10px;
877
- height: 10px;
878
- border-radius: 50%;
879
- margin-right: 8px;
880
- background-color: #ed4f4a;
881
- }
882
- .dvr-controls[data-dvr-controls] .live-button {
883
- height: 40px;
884
- opacity: 1;
885
- font-size: 14px;
886
- letter-spacing: 0.8px;
887
- font-weight: 500;
888
- margin-left: 20px;
889
- }
890
- .dvr-controls[data-dvr-controls] .live-button::before {
891
- width: 10px;
892
- height: 10px;
893
- border-radius: 50%;
894
- margin-right: 8px;
895
- background-color: #cacaca;
896
- }
897
-
898
- .dvr .dvr-controls[data-dvr-controls] .live-info {
899
- display: none;
900
- }
901
- .dvr .dvr-controls[data-dvr-controls] .live-button {
902
- display: block;
903
- }
904
- .dvr.media-control.live[data-media-control] .media-control-layer[data-controls] .bar-container[data-seekbar] .bar-background[data-seekbar] .bar-fill-2[data-seekbar] {
905
- background-color: #005aff;
906
- }
907
-
908
- .media-control.live[data-media-control] .media-control-layer[data-controls] .bar-container[data-seekbar] .bar-background[data-seekbar] .bar-fill-2[data-seekbar] {
909
- background-color: #ff0101;
910
- }div.player-error-screen, [data-player] div.player-error-screen {
911
- color: #CCCACA;
912
- position: absolute;
913
- top: 0;
914
- height: 100%;
915
- width: 100%;
916
- background-color: rgba(0, 0, 0, 0.7);
917
- z-index: 2000;
918
- display: flex;
919
- flex-direction: column;
920
- justify-content: center;
921
- }
922
- div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
923
- font-size: 14px;
924
- color: #CCCACA;
925
- margin-top: 45px;
926
- }
927
- div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
928
- font-weight: bold;
929
- line-height: 30px;
930
- font-size: 18px;
931
- }
932
- div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
933
- width: 90%;
934
- margin: 0 auto;
935
- }
936
- div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
937
- font-size: 13px;
938
- margin-top: 15px;
939
- }
940
- div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
941
- cursor: pointer;
942
- width: 30px;
943
- margin: 15px auto 0;
944
- }.level-disabled {
945
- opacity: 0.5;
946
- pointer-events: none;
947
- }.context-menu {
948
- z-index: 999;
949
- position: absolute;
950
- top: 0;
951
- left: 0;
952
- text-align: center;
953
- }
954
- .context-menu .context-menu-list {
955
- font-family: "Proxima Nova", sans-serif;
956
- font-size: 12px;
957
- line-height: 12px;
958
- list-style-type: none;
959
- text-align: left;
960
- padding: 5px;
961
- margin-left: auto;
962
- margin-right: auto;
963
- background-color: rgba(0, 0, 0, 0.75);
964
- border: 1px solid #666;
965
- border-radius: 4px;
966
- }
967
- .context-menu .context-menu-list .context-menu-list-item {
968
- color: white;
969
- padding: 5px;
970
- cursor: pointer;
971
- }.share_plugin[data-share] {
972
- pointer-events: auto;
973
- z-index: 5;
974
- font-family: Roboto, "Open Sans", Arial, sans-serif !important;
975
- }
976
- .share_plugin[data-share].share-hide .share-button-container {
977
- right: -50px;
978
- }
979
- .share_plugin[data-share] .share-button-container {
980
- cursor: pointer;
981
- width: 36px;
982
- height: 36px;
983
- background-color: rgba(74, 74, 74, 0.6);
984
- border-radius: 4px;
985
- position: absolute;
986
- right: 10px;
987
- top: 10px;
988
- padding-top: 6px;
989
- transition: all 0.3s ease-out;
990
- }
991
- .share_plugin[data-share] .share-button-container button[data-share-button] {
992
- background-color: transparent;
993
- border: 0;
994
- margin: 0 6px;
995
- padding: 0;
996
- cursor: pointer;
997
- display: inline-block;
998
- width: 19px;
999
- height: 20px;
1000
- }
1001
- .share_plugin[data-share] .share-container {
1002
- pointer-events: auto;
1003
- position: absolute;
1004
- width: 280px;
1005
- background-color: white;
1006
- transform: translate(0, 50%);
1007
- transform: translate(-50%, -50%);
1008
- left: 50%;
1009
- /* margin-left: -140px; */
1010
- top: calc(50% - 20px);
1011
- /* margin-top: -170px; */
1012
- }
1013
- .share_plugin[data-share] .share-container .share-container-header {
1014
- text-align: left;
1015
- border-bottom: 1px solid rgba(155, 155, 155, 0.25);
1016
- }
1017
- .share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
1018
- display: inline-block;
1019
- font-size: 16px;
1020
- margin: 5px;
1021
- }
1022
- .share_plugin[data-share] .share-container .share-container-header .share-container-header--close {
1023
- display: inline-block;
1024
- width: 24px;
1025
- float: right;
1026
- margin: 5px;
1027
- cursor: pointer;
1028
- }
1029
- .share_plugin[data-share] .share-container .share-container-main {
1030
- margin-bottom: 8px;
1031
- }
1032
- .share_plugin[data-share] .share-container .share-container-main > div {
1033
- text-align: left;
1034
- font-size: 14px;
1035
- padding: 5px;
1036
- }
1037
- .share_plugin[data-share] .share-container .share-container-main .share-container-header--link, .share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
1038
- overflow: hidden;
1039
- text-overflow: ellipsis;
1040
- color: #818181;
1041
- border: solid 1px #d3d3d3;
1042
- width: calc(100% - 10px);
1043
- padding: 5px;
1044
- }
1045
- .share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
1046
- max-height: 90px;
1047
- resize: none;
1048
- }
1049
- .share_plugin[data-share] .share-container .share-container-main .share-container-header--socialicon > div {
1050
- width: 32px;
1051
- display: inline-block;
1052
- margin-right: 5px;
1053
- cursor: pointer;
1054
- }.player-poster[data-poster] {
1055
- display: flex;
1056
- justify-content: center;
1057
- align-items: center;
1058
- position: absolute;
1059
- height: 100%;
1060
- width: 100%;
1061
- z-index: 998;
1062
- top: 0;
1063
- left: 0;
1064
- background-color: #000;
1065
- background-size: cover;
1066
- background-repeat: no-repeat;
1067
- background-position: 50% 50%;
1068
- }
1069
- .player-poster[data-poster].clickable {
1070
- cursor: pointer;
1071
- }
1072
- .player-poster[data-poster]:hover .play-wrapper[data-poster] {
1073
- opacity: 1;
1074
- }
1075
- .player-poster[data-poster] .play-wrapper[data-poster] {
1076
- width: 100%;
1077
- height: 25%;
1078
- margin: 0 auto;
1079
- opacity: 0.75;
1080
- transition: opacity 0.1s ease;
1081
- }
1082
- .player-poster[data-poster] .play-wrapper[data-poster] svg {
1083
- height: 100%;
1084
- display: inline;
1085
- }
1086
- .player-poster[data-poster] .play-wrapper[data-poster] svg path {
1087
- fill: #fff;
1088
- }.seek-time[data-seek-time] {
1089
- position: absolute;
1090
- white-space: nowrap;
1091
- height: 20px;
1092
- line-height: 20px;
1093
- font-size: 0;
1094
- left: -100%;
1095
- bottom: 55px;
1096
- background-color: rgba(2, 2, 2, 0.5);
1097
- z-index: 9999;
1098
- transition: opacity 0.1s ease;
1099
- }
1100
- .seek-time[data-seek-time].hidden[data-seek-time] {
1101
- opacity: 0;
1102
- }
1103
- .seek-time[data-seek-time] [data-seek-time] {
1104
- display: inline-block;
1105
- color: white;
1106
- font-size: 10px;
1107
- padding-left: 7px;
1108
- padding-right: 7px;
1109
- vertical-align: top;
1110
- }
1111
- .seek-time[data-seek-time] [data-duration] {
1112
- display: inline-block;
1113
- color: rgba(255, 255, 255, 0.5);
1114
- font-size: 10px;
1115
- padding-right: 7px;
1116
- vertical-align: top;
1117
- }
1118
- .seek-time[data-seek-time] [data-duration]::before {
1119
- content: "|";
1120
- margin-right: 7px;
1121
- }.media-control-skin-1[data-media-control-skin-1] .media-control-quality,
1122
- .media-control-skin-1[data-media-control-skin-1] .media-control-audio-tracks {
1123
- display: block;
1124
- }
1125
- .media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] {
1126
- width: 40px;
1127
- margin-top: 0;
1128
- }
1129
- .media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] button[data-subtitles-button] {
1130
- display: flex;
1131
- justify-content: center;
1132
- padding: 0;
1133
- align-items: center;
1134
- }
1135
- .media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] button[data-subtitles-button]:hover {
1136
- color: white;
1137
- }
1138
- .media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] ul {
1139
- background-color: rgba(74, 74, 74, 0.6);
1140
- border: none;
1141
- width: auto;
1142
- transform: rotate(180deg);
1143
- border-radius: 4px;
1144
- bottom: 52px;
1145
- margin-left: -28px;
1146
- }
1147
- .media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] ul li {
1148
- transform: rotate(-180deg);
1149
- font-size: 16px;
1150
- text-align: center;
1151
- white-space: nowrap;
1152
- height: 30px;
1153
- }
1154
- .media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] ul li a {
1155
- height: 30px;
1156
- padding: 5px 10px;
1157
- color: #fffffe;
1158
- }
1159
- .media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] ul li a:hover {
1160
- background-color: rgba(0, 0, 0, 0.4);
1161
- }
1162
- .media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] ul li.current a {
1163
- background-color: rgba(0, 0, 0, 0.4);
1164
- }
1165
- .media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] ul li:first-child a {
1166
- border-bottom-left-radius: 4px;
1167
- border-bottom-right-radius: 4px;
1168
- }
1169
- .media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] ul li:last-child a {
1170
- border-top-left-radius: 4px;
1171
- border-top-right-radius: 4px;
1172
- }
1173
- .media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] {
1174
- height: 26px;
1175
- line-height: 26px;
1176
- bottom: 52px;
1177
- border-radius: 3px;
1178
- background-color: rgba(74, 74, 74, 0.7);
1179
- }
1180
- .media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span {
1181
- letter-spacing: 0.8px;
1182
- font-size: 14px;
1183
- font-family: Roboto, "Open Sans", Arial, sans-serif;
1184
- }
1185
- .media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span[data-seek-time] {
1186
- padding-left: 8px;
1187
- padding-right: 8px;
1188
- }
1189
- .media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span[data-duration] {
1190
- display: none !important;
1191
- }[data-player] {
1192
- --bottom-panel: 40px;
1193
- }
1194
-
1195
- .container .media-control-notransition {
1196
- transition: none !important;
1197
- }
1198
- .container .player-poster[data-poster] .play-wrapper[data-poster] {
1199
- opacity: 1;
1200
- }
1201
- .container.crop-video [data-html5-video] {
1202
- object-fit: cover;
1203
- }
1204
- .container .subtitle-string {
1205
- position: absolute;
1206
- bottom: calc(var(--bottom-panel) + 5px);
1207
- width: 100%;
1208
- }
1209
- .container .subtitle-string p {
1210
- width: auto;
1211
- background-color: rgba(0, 0, 0, 0.4);
1212
- color: white;
1213
- display: inline-block;
1214
- }
1215
- .container .circle-poster[data-poster] {
1216
- top: 50%;
1217
- margin-top: -60px;
1218
- left: 50%;
1219
- margin-left: -60px;
1220
- position: absolute;
1221
- width: 120px;
1222
- height: 120px;
1223
- border: 2px solid white;
1224
- border-radius: 50%;
1225
- filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
1226
- filter: alpha(opacity=60);
1227
- opacity: 1;
1228
- box-shadow: 0 0 1px 0 white;
1229
- }
1230
- .container .circle-poster[data-poster] svg {
1231
- margin-left: 5px;
1232
- width: 80px;
1233
- height: 80px;
1234
- }
1235
- .container .spinner-three-bounce[data-spinner] > div {
1236
- background-color: #ff5700;
1237
- }
1238
-
1239
- .media-control-skin-1[data-media-control-skin-1].w270 .media-control-quality,
1240
- .media-control-skin-1[data-media-control-skin-1].w270 .media-control-audio-tracks {
1241
- display: none;
1242
- }
1243
- .media-control-skin-1[data-media-control-skin-1].w270 .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] {
1244
- transform: rotate(270deg);
1245
- float: none;
1246
- display: block;
1247
- position: absolute;
1248
- /* bottom: 12px; */
1249
- margin: 0;
1250
- top: -40px;
1251
- padding: 0;
1252
- /* right: 20px; */
1253
- margin-left: -32px;
1254
- margin-top: -3px;
1255
- width: 80px;
1256
- /* padding-left: 12px; */
1257
- }
1258
- .media-control-skin-1[data-media-control-skin-1].w270 .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .bar-background-mask {
853
+ .media-control-skin-1[data-media-control-skin-1].w270 .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .bar-background-mask {
1259
854
  position: absolute;
1260
855
  width: 100%;
1261
856
  height: 100%;
@@ -1641,305 +1236,560 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1641
1236
  width: 100%;
1642
1237
  height: 3px;
1643
1238
  position: relative;
1644
- top: 8px;
1239
+ top: 8px;
1240
+ background-color: #666;
1241
+ }
1242
+ .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .bar-container[data-seekbar] .bar-background[data-seekbar] .bar-fill-1[data-seekbar] {
1243
+ position: absolute;
1244
+ top: 0;
1245
+ left: 0;
1246
+ width: 0;
1247
+ height: 100%;
1248
+ background-color: white;
1249
+ transition: all 0.1s ease-out;
1250
+ }
1251
+ .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .bar-container[data-seekbar] .bar-background[data-seekbar] .bar-fill-2[data-seekbar] {
1252
+ position: absolute;
1253
+ top: 0;
1254
+ left: 0;
1255
+ width: 0;
1256
+ height: 100%;
1257
+ background-color: #ff5700;
1258
+ transition: all 0.1s ease-out;
1259
+ }
1260
+ .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .bar-container[data-seekbar].seek-disabled {
1261
+ cursor: default;
1262
+ display: none;
1263
+ }
1264
+ .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .bar-container[data-seekbar].seek-disabled + .bar-scrubber[data-seekbar] {
1265
+ cursor: default;
1266
+ display: none;
1267
+ }
1268
+ .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .bar-scrubber[data-seekbar] {
1269
+ position: absolute;
1270
+ transform: translateX(-50%);
1271
+ top: -11.5px;
1272
+ left: 0;
1273
+ width: 20px;
1274
+ height: 20px;
1275
+ opacity: 1;
1276
+ transition: all 0.1s ease-out;
1277
+ }
1278
+ .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .bar-scrubber[data-seekbar] .bar-scrubber-icon[data-seekbar] {
1279
+ position: absolute;
1280
+ left: 4.5px;
1281
+ top: 4.5px;
1282
+ width: 11px;
1283
+ height: 11px;
1284
+ border-radius: 50%;
1285
+ background-color: white;
1286
+ }
1287
+ .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] {
1288
+ float: left;
1289
+ display: inline-block;
1290
+ height: var(--bottom-panel);
1291
+ cursor: pointer;
1292
+ box-sizing: border-box;
1293
+ margin-right: 20px;
1294
+ }
1295
+ .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .drawer-icon-container[data-volume] {
1296
+ float: left;
1297
+ bottom: 0;
1298
+ }
1299
+ .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .drawer-icon-container[data-volume] .drawer-icon[data-volume] {
1300
+ background-color: transparent;
1301
+ border: 0;
1302
+ box-sizing: content-box;
1303
+ height: var(--bottom-panel);
1304
+ width: 20px;
1305
+ }
1306
+ .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .drawer-icon-container[data-volume] .drawer-icon[data-volume] svg {
1307
+ height: 20px;
1308
+ position: relative;
1309
+ top: 3px;
1310
+ margin-top: 7px;
1311
+ }
1312
+ .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .drawer-icon-container[data-volume] .drawer-icon[data-volume] svg path {
1313
+ fill: white;
1314
+ }
1315
+ .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .drawer-icon-container[data-volume] .drawer-icon[data-volume].muted svg {
1316
+ margin-left: 2px;
1317
+ }
1318
+ .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] {
1319
+ float: left;
1320
+ position: relative;
1321
+ margin-left: 10px;
1322
+ top: 8px;
1323
+ width: 80px;
1324
+ height: 23px;
1325
+ padding: 3px 0;
1326
+ transition: width 0.2s ease-out;
1327
+ }
1328
+ .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .bar-background[data-volume] {
1329
+ height: 3px;
1330
+ border-radius: 100px;
1331
+ position: relative;
1332
+ top: 7px;
1645
1333
  background-color: #666;
1646
1334
  }
1647
- .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .bar-container[data-seekbar] .bar-background[data-seekbar] .bar-fill-1[data-seekbar] {
1335
+ .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .bar-background[data-volume] .bar-fill-1[data-volume] {
1648
1336
  position: absolute;
1649
1337
  top: 0;
1650
1338
  left: 0;
1651
1339
  width: 0;
1652
1340
  height: 100%;
1341
+ border-radius: 100px;
1653
1342
  background-color: white;
1654
1343
  transition: all 0.1s ease-out;
1655
1344
  }
1656
- .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .bar-container[data-seekbar] .bar-background[data-seekbar] .bar-fill-2[data-seekbar] {
1345
+ .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .bar-background[data-volume] .bar-fill-2[data-volume] {
1657
1346
  position: absolute;
1658
1347
  top: 0;
1659
1348
  left: 0;
1660
1349
  width: 0;
1661
1350
  height: 100%;
1662
- background-color: #ff5700;
1351
+ background-color: #005aff;
1663
1352
  transition: all 0.1s ease-out;
1664
1353
  }
1665
- .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .bar-container[data-seekbar].seek-disabled {
1666
- cursor: default;
1667
- display: none;
1668
- }
1669
- .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .bar-container[data-seekbar].seek-disabled + .bar-scrubber[data-seekbar] {
1670
- cursor: default;
1671
- display: none;
1672
- }
1673
- .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .bar-scrubber[data-seekbar] {
1354
+ .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .bar-scrubber[data-volume] {
1674
1355
  position: absolute;
1675
1356
  transform: translateX(-50%);
1676
- top: -11.5px;
1677
- left: 0;
1678
- width: 20px;
1679
- height: 20px;
1357
+ top: 3px;
1358
+ margin-left: 3px;
1359
+ width: 16px;
1360
+ height: 16px;
1680
1361
  opacity: 1;
1681
1362
  transition: all 0.1s ease-out;
1682
1363
  }
1683
- .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .bar-scrubber[data-seekbar] .bar-scrubber-icon[data-seekbar] {
1364
+ .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .bar-scrubber[data-volume] .bar-scrubber-icon[data-volume] {
1684
1365
  position: absolute;
1685
- left: 4.5px;
1686
- top: 4.5px;
1687
- width: 11px;
1688
- height: 11px;
1366
+ left: 3px;
1367
+ top: 5px;
1368
+ width: 7px;
1369
+ height: 7px;
1689
1370
  border-radius: 50%;
1690
1371
  background-color: white;
1691
1372
  }
1692
- .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] {
1373
+ .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .segmented-bar-element[data-volume] {
1693
1374
  float: left;
1694
- display: inline-block;
1695
- height: var(--bottom-panel);
1696
- cursor: pointer;
1697
- box-sizing: border-box;
1698
- margin-right: 20px;
1375
+ width: 4px;
1376
+ padding-left: 2px;
1377
+ height: 12px;
1378
+ opacity: 0.5;
1379
+ box-shadow: inset 2px 0 0 white;
1380
+ transition: transform 0.2s ease-out;
1699
1381
  }
1700
- .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .drawer-icon-container[data-volume] {
1382
+ .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .segmented-bar-element[data-volume].fill {
1383
+ box-shadow: inset 2px 0 0 #fff;
1384
+ opacity: 1;
1385
+ }
1386
+ .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .segmented-bar-element[data-volume]:nth-of-type(1) {
1387
+ padding-left: 0;
1388
+ }
1389
+ .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .segmented-bar-element[data-volume]:hover {
1390
+ transform: scaleY(1.5);
1391
+ }.media-control-skin-1[data-media-control-skin-1] .media-control-quality,
1392
+ .media-control-skin-1[data-media-control-skin-1] .media-control-audio-tracks {
1393
+ display: block;
1394
+ }
1395
+ .media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] {
1396
+ width: 40px;
1397
+ margin-top: 0;
1398
+ }
1399
+ .media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] button[data-subtitles-button] {
1400
+ display: flex;
1401
+ justify-content: center;
1402
+ padding: 0;
1403
+ align-items: center;
1404
+ }
1405
+ .media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] button[data-subtitles-button]:hover {
1406
+ color: white;
1407
+ }
1408
+ .media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] ul {
1409
+ background-color: rgba(74, 74, 74, 0.6);
1410
+ border: none;
1411
+ width: auto;
1412
+ transform: rotate(180deg);
1413
+ border-radius: 4px;
1414
+ bottom: 52px;
1415
+ margin-left: -28px;
1416
+ }
1417
+ .media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] ul li {
1418
+ transform: rotate(-180deg);
1419
+ font-size: 16px;
1420
+ text-align: center;
1421
+ white-space: nowrap;
1422
+ height: 30px;
1423
+ }
1424
+ .media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] ul li a {
1425
+ height: 30px;
1426
+ padding: 5px 10px;
1427
+ color: #fffffe;
1428
+ }
1429
+ .media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] ul li a:hover {
1430
+ background-color: rgba(0, 0, 0, 0.4);
1431
+ }
1432
+ .media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] ul li.current a {
1433
+ background-color: rgba(0, 0, 0, 0.4);
1434
+ }
1435
+ .media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] ul li:first-child a {
1436
+ border-bottom-left-radius: 4px;
1437
+ border-bottom-right-radius: 4px;
1438
+ }
1439
+ .media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] ul li:last-child a {
1440
+ border-top-left-radius: 4px;
1441
+ border-top-right-radius: 4px;
1442
+ }
1443
+ .media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] {
1444
+ height: 26px;
1445
+ line-height: 26px;
1446
+ bottom: 52px;
1447
+ border-radius: 3px;
1448
+ background-color: rgba(74, 74, 74, 0.7);
1449
+ }
1450
+ .media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span {
1451
+ letter-spacing: 0.8px;
1452
+ font-size: 14px;
1453
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
1454
+ }
1455
+ .media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span[data-seek-time] {
1456
+ padding-left: 8px;
1457
+ padding-right: 8px;
1458
+ }
1459
+ .media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span[data-duration] {
1460
+ display: none !important;
1461
+ }.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
1462
+ float: right;
1463
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
1464
+ }
1465
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .button-gear {
1466
+ height: 40px;
1467
+ width: 40px;
1468
+ padding-right: 20px;
1469
+ }
1470
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .button-gear svg {
1471
+ height: 20px;
1472
+ }
1473
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
1474
+ position: absolute;
1475
+ right: 16px;
1476
+ bottom: 52px;
1477
+ display: none;
1478
+ width: 250px;
1479
+ min-height: 48px;
1480
+ z-index: 9999;
1481
+ border-radius: 4px;
1482
+ }
1483
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
1484
+ padding: 8px 0;
1485
+ }
1486
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list svg {
1701
1487
  float: left;
1702
- bottom: 0;
1488
+ margin-right: 10px;
1703
1489
  }
1704
- .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .drawer-icon-container[data-volume] .drawer-icon[data-volume] {
1490
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option {
1491
+ margin: 0;
1492
+ text-align: left;
1493
+ line-height: 22px;
1494
+ padding: 5px 14px;
1495
+ width: 250px;
1496
+ font-size: 12px;
1497
+ }
1498
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option .gear-option_arrow-right-icon {
1499
+ float: right;
1500
+ margin-right: -14px;
1501
+ }
1502
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option .gear-option_value {
1503
+ float: right;
1504
+ margin-right: 8px;
1505
+ }
1506
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option svg {
1507
+ height: 20px;
1508
+ }*, :focus, :visited {
1509
+ outline: none !important;
1510
+ }
1511
+
1512
+ .gear-wrapper .go-back {
1513
+ font-weight: 600;
1514
+ font-size: 14px;
1515
+ line-height: 20px;
1516
+ width: 100%;
1517
+ text-align: left;
1518
+ padding: 12px;
1519
+ }
1520
+ .gear-wrapper .go-back .arrow-left-icon {
1521
+ float: left;
1522
+ padding-top: 2px;
1523
+ padding-right: 2px;
1524
+ }
1525
+ .gear-wrapper .go-back .arrow-left-icon svg {
1526
+ height: 16px;
1527
+ }
1528
+ .gear-wrapper ul.gear-sub-menu {
1529
+ width: 100%;
1530
+ list-style-type: none;
1705
1531
  background-color: transparent;
1706
- border: 0;
1707
- box-sizing: content-box;
1708
- height: var(--bottom-panel);
1709
- width: 20px;
1532
+ min-width: 60px;
1533
+ border-top: 2px solid rgb(36, 36, 36);
1710
1534
  }
1711
- .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .drawer-icon-container[data-volume] .drawer-icon[data-volume] svg {
1535
+ .gear-wrapper ul.gear-sub-menu li {
1536
+ font-size: 12px;
1537
+ text-align: left;
1538
+ }
1539
+ .gear-wrapper ul.gear-sub-menu li[data-title] {
1540
+ background-color: #c3c2c2;
1541
+ padding: 5px;
1542
+ }
1543
+ .gear-wrapper ul.gear-sub-menu li a {
1544
+ display: block;
1545
+ text-decoration: none;
1546
+ height: 32px;
1547
+ padding: 5px 10px;
1548
+ line-height: 22px;
1549
+ color: #fffffe;
1550
+ }
1551
+ .gear-wrapper ul.gear-sub-menu li a:hover {
1552
+ color: white;
1553
+ background-color: rgba(0, 0, 0, 0.4);
1554
+ }
1555
+ .gear-wrapper ul.gear-sub-menu li a:hover a {
1556
+ color: white;
1557
+ text-decoration: none;
1558
+ }
1559
+ .gear-wrapper ul.gear-sub-menu li a .check-icon {
1560
+ width: 30px;
1712
1561
  height: 20px;
1713
- position: relative;
1714
- top: 3px;
1715
- margin-top: 7px;
1562
+ float: left;
1563
+ display: block;
1716
1564
  }
1717
- .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .drawer-icon-container[data-volume] .drawer-icon[data-volume] svg path {
1718
- fill: white;
1565
+ .gear-wrapper ul.gear-sub-menu li a .check-icon svg {
1566
+ display: none;
1719
1567
  }
1720
- .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .drawer-icon-container[data-volume] .drawer-icon[data-volume].muted svg {
1721
- margin-left: 2px;
1568
+ .gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
1569
+ display: inline;
1570
+ }
1571
+ .gear-wrapper svg {
1572
+ height: 20px;
1573
+ }.dvr-controls[data-dvr-controls] {
1574
+ display: inline-block;
1575
+ float: left;
1576
+ color: #fff;
1577
+ line-height: 32px;
1578
+ font-size: 10px;
1579
+ font-weight: bold;
1580
+ margin-left: 6px;
1581
+ height: 40px;
1582
+ line-height: 40px;
1583
+ margin-left: 0;
1722
1584
  }
1723
- .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] {
1724
- float: left;
1725
- position: relative;
1726
- margin-left: 10px;
1727
- top: 8px;
1728
- width: 80px;
1729
- height: 23px;
1730
- padding: 3px 0;
1731
- transition: width 0.2s ease-out;
1585
+ .dvr-controls[data-dvr-controls] .live-info {
1586
+ cursor: default;
1587
+ font-family: "Roboto", "Open Sans", Arial, sans-serif;
1588
+ text-transform: uppercase;
1732
1589
  }
1733
- .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .bar-background[data-volume] {
1734
- height: 3px;
1735
- border-radius: 100px;
1590
+ .dvr-controls[data-dvr-controls] .live-info:before {
1591
+ content: "";
1592
+ display: inline-block;
1736
1593
  position: relative;
1737
- top: 7px;
1738
- background-color: #666;
1594
+ width: 7px;
1595
+ height: 7px;
1596
+ border-radius: 3.5px;
1597
+ margin-right: 3.5px;
1598
+ background-color: #ff0101;
1739
1599
  }
1740
- .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .bar-background[data-volume] .bar-fill-1[data-volume] {
1741
- position: absolute;
1742
- top: 0;
1743
- left: 0;
1744
- width: 0;
1745
- height: 100%;
1746
- border-radius: 100px;
1747
- background-color: white;
1748
- transition: all 0.1s ease-out;
1600
+ .dvr-controls[data-dvr-controls] .live-info.disabled {
1601
+ opacity: 0.3;
1749
1602
  }
1750
- .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .bar-background[data-volume] .bar-fill-2[data-volume] {
1751
- position: absolute;
1752
- top: 0;
1753
- left: 0;
1754
- width: 0;
1755
- height: 100%;
1756
- background-color: #005aff;
1757
- transition: all 0.1s ease-out;
1603
+ .dvr-controls[data-dvr-controls] .live-info.disabled:before {
1604
+ background-color: #fff;
1758
1605
  }
1759
- .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .bar-scrubber[data-volume] {
1760
- position: absolute;
1761
- transform: translateX(-50%);
1762
- top: 3px;
1763
- margin-left: 3px;
1764
- width: 16px;
1765
- height: 16px;
1766
- opacity: 1;
1767
- transition: all 0.1s ease-out;
1606
+ .dvr-controls[data-dvr-controls] .live-button {
1607
+ cursor: pointer;
1608
+ outline: none;
1609
+ display: none;
1610
+ border: 0;
1611
+ color: #fff;
1612
+ background-color: transparent;
1613
+ height: 32px;
1614
+ padding: 0;
1615
+ opacity: 0.7;
1616
+ font-family: "Roboto", "Open Sans", Arial, sans-serif;
1617
+ text-transform: uppercase;
1618
+ transition: all 0.1s ease;
1768
1619
  }
1769
- .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .bar-scrubber[data-volume] .bar-scrubber-icon[data-volume] {
1770
- position: absolute;
1771
- left: 3px;
1772
- top: 5px;
1620
+ .dvr-controls[data-dvr-controls] .live-button:before {
1621
+ content: "";
1622
+ display: inline-block;
1623
+ position: relative;
1773
1624
  width: 7px;
1774
1625
  height: 7px;
1775
- border-radius: 50%;
1776
- background-color: white;
1777
- }
1778
- .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .segmented-bar-element[data-volume] {
1779
- float: left;
1780
- width: 4px;
1781
- padding-left: 2px;
1782
- height: 12px;
1783
- opacity: 0.5;
1784
- box-shadow: inset 2px 0 0 white;
1785
- transition: transform 0.2s ease-out;
1626
+ border-radius: 3.5px;
1627
+ margin-right: 3.5px;
1628
+ background-color: #fff;
1786
1629
  }
1787
- .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .segmented-bar-element[data-volume].fill {
1788
- box-shadow: inset 2px 0 0 #fff;
1630
+ .dvr-controls[data-dvr-controls] .live-button:hover {
1789
1631
  opacity: 1;
1632
+ text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
1790
1633
  }
1791
- .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .segmented-bar-element[data-volume]:nth-of-type(1) {
1792
- padding-left: 0;
1634
+ .dvr-controls[data-dvr-controls] .live-info {
1635
+ font-size: 14px;
1636
+ letter-spacing: 0.8px;
1637
+ font-weight: 500;
1638
+ color: #fffffe;
1639
+ margin-left: 21px;
1793
1640
  }
1794
- .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .segmented-bar-element[data-volume]:hover {
1795
- transform: scaleY(1.5);
1796
- }.media-control-pip button {
1797
- float: right;
1641
+ .dvr-controls[data-dvr-controls] .live-info::before {
1642
+ width: 10px;
1643
+ height: 10px;
1644
+ border-radius: 50%;
1645
+ margin-right: 8px;
1646
+ background-color: #ed4f4a;
1647
+ }
1648
+ .dvr-controls[data-dvr-controls] .live-button {
1798
1649
  height: 40px;
1799
- margin-right: 20px;
1650
+ opacity: 1;
1651
+ font-size: 14px;
1652
+ letter-spacing: 0.8px;
1653
+ font-weight: 500;
1654
+ margin-left: 20px;
1800
1655
  }
1801
- .media-control-pip button svg {
1802
- height: 20px;
1803
- }*, :focus, :visited {
1804
- outline: none !important;
1656
+ .dvr-controls[data-dvr-controls] .live-button::before {
1657
+ width: 10px;
1658
+ height: 10px;
1659
+ border-radius: 50%;
1660
+ margin-right: 8px;
1661
+ background-color: #cacaca;
1805
1662
  }
1806
1663
 
1807
- .subtitles[data-subtitles] {
1808
- float: right;
1809
- position: relative;
1810
- width: 50px;
1664
+ .dvr .dvr-controls[data-dvr-controls] .live-info {
1665
+ display: none;
1811
1666
  }
1812
- .subtitles[data-subtitles] button {
1813
- background-color: transparent;
1814
- color: #fff;
1815
- font-family: Roboto, "Open Sans", Arial, sans-serif;
1816
- -webkit-font-smoothing: antialiased;
1817
- border: none;
1818
- font-size: 14px;
1819
- cursor: pointer;
1667
+ .dvr .dvr-controls[data-dvr-controls] .live-button {
1668
+ display: block;
1820
1669
  }
1821
- .subtitles[data-subtitles] button .subtitle-text svg {
1822
- fill: white;
1670
+ .dvr.media-control.live[data-media-control] .media-control-layer[data-controls] .bar-container[data-seekbar] .bar-background[data-seekbar] .bar-fill-2[data-seekbar] {
1671
+ background-color: #005aff;
1823
1672
  }
1824
- .subtitles[data-subtitles] button:hover {
1825
- color: #c9c9c9;
1673
+
1674
+ .media-control.live[data-media-control] .media-control-layer[data-controls] .bar-container[data-seekbar] .bar-background[data-seekbar] .bar-fill-2[data-seekbar] {
1675
+ background-color: #ff0101;
1676
+ }.share_plugin[data-share] {
1677
+ pointer-events: auto;
1678
+ z-index: 5;
1679
+ font-family: Roboto, "Open Sans", Arial, sans-serif !important;
1826
1680
  }
1827
- .subtitles[data-subtitles] button.changing {
1828
- animation: pulse 0.5s infinite alternate;
1681
+ .share_plugin[data-share].share-hide .share-button-container {
1682
+ right: -50px;
1829
1683
  }
1830
- .subtitles[data-subtitles] > ul {
1831
- width: 80px;
1832
- list-style-type: none;
1684
+ .share_plugin[data-share] .share-button-container {
1685
+ cursor: pointer;
1686
+ width: 36px;
1687
+ height: 36px;
1688
+ background-color: rgba(74, 74, 74, 0.6);
1689
+ border-radius: 4px;
1833
1690
  position: absolute;
1834
- bottom: 25px;
1835
- border: 1px solid black;
1836
- display: none;
1837
- background-color: #e6e6e6;
1838
- }
1839
- .subtitles[data-subtitles] li {
1840
- font-size: 10px;
1691
+ right: 10px;
1692
+ top: 10px;
1693
+ padding-top: 6px;
1694
+ transition: all 0.3s ease-out;
1841
1695
  }
1842
- .subtitles[data-subtitles] li[data-title] {
1843
- background-color: #c3c2c2;
1844
- padding: 5px;
1696
+ .share_plugin[data-share] .share-button-container button[data-share-button] {
1697
+ background-color: transparent;
1698
+ border: 0;
1699
+ margin: 0 6px;
1700
+ padding: 0;
1701
+ cursor: pointer;
1702
+ display: inline-block;
1703
+ width: 19px;
1704
+ height: 20px;
1845
1705
  }
1846
- .subtitles[data-subtitles] li a {
1847
- color: #444;
1848
- padding: 2px 10px;
1849
- display: block;
1850
- text-decoration: none;
1706
+ .share_plugin[data-share] .share-container {
1707
+ pointer-events: auto;
1708
+ position: absolute;
1709
+ width: 280px;
1710
+ background-color: white;
1711
+ transform: translate(0, 50%);
1712
+ transform: translate(-50%, -50%);
1713
+ left: 50%;
1714
+ /* margin-left: -140px; */
1715
+ top: calc(50% - 20px);
1716
+ /* margin-top: -170px; */
1851
1717
  }
1852
- .subtitles[data-subtitles] li a:hover {
1853
- background-color: #555;
1854
- color: white;
1718
+ .share_plugin[data-share] .share-container .share-container-header {
1719
+ text-align: left;
1720
+ border-bottom: 1px solid rgba(155, 155, 155, 0.25);
1855
1721
  }
1856
- .subtitles[data-subtitles] li a:hover a {
1857
- color: white;
1858
- text-decoration: none;
1722
+ .share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
1723
+ display: inline-block;
1724
+ font-size: 16px;
1725
+ margin: 5px;
1859
1726
  }
1860
- .subtitles[data-subtitles] li.current a {
1861
- color: #f00;
1862
- background-color: #555;
1727
+ .share_plugin[data-share] .share-container .share-container-header .share-container-header--close {
1728
+ display: inline-block;
1729
+ width: 24px;
1730
+ float: right;
1731
+ margin: 5px;
1732
+ cursor: pointer;
1863
1733
  }
1864
-
1865
- @keyframes pulse {
1866
- 0% {
1867
- color: #fff;
1868
- }
1869
- 50% {
1870
- color: #ff0101;
1871
- }
1872
- 100% {
1873
- color: #B80000;
1874
- }
1734
+ .share_plugin[data-share] .share-container .share-container-main {
1735
+ margin-bottom: 8px;
1875
1736
  }
1876
- ::cue {
1877
- visibility: hidden !important;
1878
- font-size: 0 !important;
1737
+ .share_plugin[data-share] .share-container .share-container-main > div {
1738
+ text-align: left;
1739
+ font-size: 14px;
1740
+ padding: 5px;
1879
1741
  }
1880
-
1881
- .ios-fullscreen::cue {
1882
- visibility: visible !important;
1883
- font-size: 1em !important;
1884
- }.container-with-poster-clickable .skip_time_plugin[data-skip-time] {
1885
- height: 0;
1742
+ .share_plugin[data-share] .share-container .share-container-main .share-container-header--link, .share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
1743
+ overflow: hidden;
1744
+ text-overflow: ellipsis;
1745
+ color: #818181;
1746
+ border: solid 1px #d3d3d3;
1747
+ width: calc(100% - 10px);
1748
+ padding: 5px;
1886
1749
  }
1887
-
1888
- .skip_time_plugin[data-skip-time] {
1889
- position: absolute;
1890
- width: 100%;
1891
- height: calc(100% - 50px);
1892
- z-index: 9998;
1893
- background-color: transparent;
1894
- font-family: Roboto, "Open Sans", Arial, sans-serif;
1750
+ .share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
1751
+ max-height: 90px;
1752
+ resize: none;
1895
1753
  }
1896
- .skip_time_plugin[data-skip-time] .skip-container[data-skip-container] {
1897
- width: 100%;
1898
- height: 100%;
1754
+ .share_plugin[data-share] .share-container .share-container-main .share-container-header--socialicon > div {
1755
+ width: 32px;
1756
+ display: inline-block;
1757
+ margin-right: 5px;
1758
+ cursor: pointer;
1759
+ }.player-poster[data-poster] {
1899
1760
  display: flex;
1900
- justify-content: space-between;
1901
- }
1902
- .skip_time_plugin[data-skip-time] .skip-container[data-skip-container] .skip-item {
1903
- width: 33.3%;
1904
- height: 100%;
1905
- }.spinner-three-bounce[data-spinner] {
1761
+ justify-content: center;
1762
+ align-items: center;
1906
1763
  position: absolute;
1907
- width: 70px;
1908
- text-align: center;
1909
- z-index: 999;
1764
+ height: 100%;
1765
+ width: 100%;
1766
+ z-index: 998;
1767
+ top: 0;
1910
1768
  left: 0;
1911
- right: 0;
1912
- margin: 0 auto;
1913
- margin-left: auto;
1914
- margin-right: auto;
1915
- /* center vertically */
1916
- top: 50%;
1917
- transform: translateY(-50%);
1769
+ background-color: #000;
1770
+ background-size: cover;
1771
+ background-repeat: no-repeat;
1772
+ background-position: 50% 50%;
1918
1773
  }
1919
- .spinner-three-bounce[data-spinner] > div {
1920
- width: 18px;
1921
- height: 18px;
1922
- background-color: #FFF;
1923
- border-radius: 100%;
1924
- display: inline-block;
1925
- animation: bouncedelay 1.4s infinite ease-in-out;
1926
- /* Prevent first frame from flickering when animation starts */
1927
- animation-fill-mode: both;
1774
+ .player-poster[data-poster].clickable {
1775
+ cursor: pointer;
1928
1776
  }
1929
- .spinner-three-bounce[data-spinner] [data-bounce1] {
1930
- animation-delay: -0.32s;
1777
+ .player-poster[data-poster]:hover .play-wrapper[data-poster] {
1778
+ opacity: 1;
1931
1779
  }
1932
- .spinner-three-bounce[data-spinner] [data-bounce2] {
1933
- animation-delay: -0.16s;
1780
+ .player-poster[data-poster] .play-wrapper[data-poster] {
1781
+ width: 100%;
1782
+ height: 25%;
1783
+ margin: 0 auto;
1784
+ opacity: 0.75;
1785
+ transition: opacity 0.1s ease;
1934
1786
  }
1935
-
1936
- @keyframes bouncedelay {
1937
- 0%, 80%, 100% {
1938
- transform: scale(0);
1939
- }
1940
- 40% {
1941
- transform: scale(1);
1942
- }
1787
+ .player-poster[data-poster] .play-wrapper[data-poster] svg {
1788
+ height: 100%;
1789
+ display: inline;
1790
+ }
1791
+ .player-poster[data-poster] .play-wrapper[data-poster] svg path {
1792
+ fill: #fff;
1943
1793
  }*, :focus, :visited {
1944
1794
  outline: none !important;
1945
1795
  }
@@ -2088,15 +1938,156 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
2088
1938
  100% {
2089
1939
  color: #B80000;
2090
1940
  }
2091
- }.player-logo[data-logo] {
1941
+ }.level-disabled {
1942
+ opacity: 0.5;
1943
+ pointer-events: none;
1944
+ }.spinner-three-bounce[data-spinner] {
2092
1945
  position: absolute;
2093
- z-index: 2;
1946
+ width: 70px;
1947
+ text-align: center;
1948
+ z-index: 999;
1949
+ left: 0;
1950
+ right: 0;
1951
+ margin: 0 auto;
1952
+ margin-left: auto;
1953
+ margin-right: auto;
1954
+ /* center vertically */
1955
+ top: 50%;
1956
+ transform: translateY(-50%);
1957
+ }
1958
+ .spinner-three-bounce[data-spinner] > div {
1959
+ width: 18px;
1960
+ height: 18px;
1961
+ background-color: #FFF;
1962
+ border-radius: 100%;
1963
+ display: inline-block;
1964
+ animation: bouncedelay 1.4s infinite ease-in-out;
1965
+ /* Prevent first frame from flickering when animation starts */
1966
+ animation-fill-mode: both;
1967
+ }
1968
+ .spinner-three-bounce[data-spinner] [data-bounce1] {
1969
+ animation-delay: -0.32s;
1970
+ }
1971
+ .spinner-three-bounce[data-spinner] [data-bounce2] {
1972
+ animation-delay: -0.16s;
1973
+ }
1974
+
1975
+ @keyframes bouncedelay {
1976
+ 0%, 80%, 100% {
1977
+ transform: scale(0);
1978
+ }
1979
+ 40% {
1980
+ transform: scale(1);
1981
+ }
1982
+ }.media-control-pip button {
1983
+ float: right;
1984
+ height: 40px;
1985
+ margin-right: 20px;
1986
+ }
1987
+ .media-control-pip button svg {
1988
+ height: 20px;
1989
+ }.container-with-poster-clickable .skip_time_plugin[data-skip-time] {
1990
+ height: 0;
1991
+ }
1992
+
1993
+ .skip_time_plugin[data-skip-time] {
1994
+ position: absolute;
1995
+ width: 100%;
1996
+ height: calc(100% - 50px);
1997
+ z-index: 9998;
1998
+ background-color: transparent;
1999
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
2000
+ }
2001
+ .skip_time_plugin[data-skip-time] .skip-container[data-skip-container] {
2094
2002
  width: 100%;
2095
2003
  height: 100%;
2004
+ display: flex;
2005
+ justify-content: space-between;
2006
+ }
2007
+ .skip_time_plugin[data-skip-time] .skip-container[data-skip-container] .skip-item {
2008
+ width: 33.3%;
2009
+ height: 100%;
2010
+ }*, :focus, :visited {
2011
+ outline: none !important;
2096
2012
  }
2097
2013
 
2098
- .clappr-logo {
2014
+ .subtitles[data-subtitles] {
2015
+ float: right;
2016
+ position: relative;
2017
+ width: 50px;
2018
+ }
2019
+ .subtitles[data-subtitles] button {
2020
+ background-color: transparent;
2021
+ color: #fff;
2022
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
2023
+ -webkit-font-smoothing: antialiased;
2024
+ border: none;
2025
+ font-size: 14px;
2026
+ cursor: pointer;
2027
+ }
2028
+ .subtitles[data-subtitles] button .subtitle-text svg {
2029
+ fill: white;
2030
+ }
2031
+ .subtitles[data-subtitles] button:hover {
2032
+ color: #c9c9c9;
2033
+ }
2034
+ .subtitles[data-subtitles] button.changing {
2035
+ animation: pulse 0.5s infinite alternate;
2036
+ }
2037
+ .subtitles[data-subtitles] > ul {
2038
+ width: 80px;
2039
+ list-style-type: none;
2099
2040
  position: absolute;
2041
+ bottom: 25px;
2042
+ border: 1px solid black;
2043
+ display: none;
2044
+ background-color: #e6e6e6;
2045
+ }
2046
+ .subtitles[data-subtitles] li {
2047
+ font-size: 10px;
2048
+ }
2049
+ .subtitles[data-subtitles] li[data-title] {
2050
+ background-color: #c3c2c2;
2051
+ padding: 5px;
2052
+ }
2053
+ .subtitles[data-subtitles] li a {
2054
+ color: #444;
2055
+ padding: 2px 10px;
2056
+ display: block;
2057
+ text-decoration: none;
2058
+ }
2059
+ .subtitles[data-subtitles] li a:hover {
2060
+ background-color: #555;
2061
+ color: white;
2062
+ }
2063
+ .subtitles[data-subtitles] li a:hover a {
2064
+ color: white;
2065
+ text-decoration: none;
2066
+ }
2067
+ .subtitles[data-subtitles] li.current a {
2068
+ color: #f00;
2069
+ background-color: #555;
2070
+ }
2071
+
2072
+ @keyframes pulse {
2073
+ 0% {
2074
+ color: #fff;
2075
+ }
2076
+ 50% {
2077
+ color: #ff0101;
2078
+ }
2079
+ 100% {
2080
+ color: #B80000;
2081
+ }
2082
+ }
2083
+ ::cue {
2084
+ visibility: hidden !important;
2085
+ font-size: 0 !important;
2086
+ }
2087
+
2088
+ .ios-fullscreen::cue {
2089
+ visibility: visible !important;
2090
+ font-size: 1em !important;
2100
2091
  }.scrub-thumbnails {
2101
2092
  position: absolute;
2102
2093
  bottom: 52px;
@@ -2158,4 +2149,13 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
2158
2149
  }
2159
2150
  .scrub-thumbnails .backdrop .carousel img {
2160
2151
  width: auto;
2152
+ }.player-logo[data-logo] {
2153
+ position: absolute;
2154
+ z-index: 2;
2155
+ width: 100%;
2156
+ height: 100%;
2157
+ }
2158
+
2159
+ .clappr-logo {
2160
+ position: absolute;
2161
2161
  }