@gcorevideo/player 2.22.4 → 2.22.7

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.
Files changed (60) hide show
  1. package/assets/level-selector/button.ejs +1 -1
  2. package/assets/level-selector/list.ejs +10 -4
  3. package/assets/level-selector/style.scss +8 -3
  4. package/assets/media-control/media-control.ejs +1 -2
  5. package/dist/core.js +2 -2
  6. package/dist/index.css +916 -912
  7. package/dist/index.js +452 -413
  8. package/dist/plugins/index.css +668 -664
  9. package/dist/plugins/index.js +514 -474
  10. package/lib/index.plugins.d.ts +2 -1
  11. package/lib/index.plugins.d.ts.map +1 -1
  12. package/lib/index.plugins.js +2 -1
  13. package/lib/playback/dash-playback/DashPlayback.d.ts.map +1 -1
  14. package/lib/playback/dash-playback/DashPlayback.js +1 -1
  15. package/lib/plugins/bottom-gear/BottomGear.d.ts.map +1 -1
  16. package/lib/plugins/bottom-gear/BottomGear.js +2 -2
  17. package/lib/plugins/level-selector/LevelSelector.d.ts +6 -5
  18. package/lib/plugins/level-selector/LevelSelector.d.ts.map +1 -1
  19. package/lib/plugins/level-selector/LevelSelector.js +11 -8
  20. package/lib/plugins/level-selector/QualityLevels.d.ts +112 -0
  21. package/lib/plugins/level-selector/QualityLevels.d.ts.map +1 -0
  22. package/lib/plugins/level-selector/QualityLevels.js +280 -0
  23. package/lib/plugins/media-control/MediaControl.d.ts +37 -6
  24. package/lib/plugins/media-control/MediaControl.d.ts.map +1 -1
  25. package/lib/plugins/media-control/MediaControl.js +54 -36
  26. package/lib/plugins/playback-rate/PlaybackRate.d.ts +5 -4
  27. package/lib/plugins/playback-rate/PlaybackRate.d.ts.map +1 -1
  28. package/lib/plugins/playback-rate/PlaybackRate.js +46 -24
  29. package/lib/plugins/subtitles/ClosedCaptions.js +1 -1
  30. package/lib/plugins/utils/fullscreen.d.ts +4 -0
  31. package/lib/plugins/utils/fullscreen.d.ts.map +1 -0
  32. package/lib/plugins/utils/fullscreen.js +30 -0
  33. package/lib/plugins/utils.d.ts +0 -1
  34. package/lib/plugins/utils.d.ts.map +1 -1
  35. package/lib/plugins/utils.js +0 -28
  36. package/lib/plugins/vast-ads/VastAds.d.ts +1 -0
  37. package/lib/plugins/vast-ads/VastAds.d.ts.map +1 -1
  38. package/lib/plugins/vast-ads/VastAds.js +6 -3
  39. package/lib/utils/fullscreen.d.ts +3 -0
  40. package/lib/utils/fullscreen.d.ts.map +1 -0
  41. package/lib/utils/fullscreen.js +2 -0
  42. package/package.json +1 -1
  43. package/src/index.plugins.ts +2 -1
  44. package/src/playback/dash-playback/DashPlayback.ts +1 -4
  45. package/src/plugins/bottom-gear/BottomGear.ts +2 -2
  46. package/src/plugins/bottom-gear/__tests__/BottomGear.test.ts +15 -3
  47. package/src/plugins/level-selector/{LevelSelector.ts → QualityLevels.ts} +19 -13
  48. package/src/plugins/level-selector/__tests__/{LevelSelector.test.ts → QualityLevels.test.ts} +20 -6
  49. package/src/plugins/level-selector/__tests__/__snapshots__/{LevelSelector.test.ts.snap → QualityLevels.test.ts.snap} +58 -25
  50. package/src/plugins/media-control/MediaControl.ts +111 -62
  51. package/src/plugins/media-control/__tests__/MediaControl.test.ts +118 -8
  52. package/src/plugins/media-control/__tests__/__snapshots__/MediaControl.test.ts.snap +149 -5
  53. package/src/plugins/playback-rate/PlaybackRate.ts +48 -26
  54. package/src/plugins/playback-rate/__tests__/PlaybackRate.test.ts +125 -55
  55. package/src/plugins/playback-rate/__tests__/__snapshots__/PlaybackRate.test.ts.snap +1 -1
  56. package/src/plugins/subtitles/ClosedCaptions.ts +1 -1
  57. package/src/plugins/utils/fullscreen.ts +34 -0
  58. package/src/plugins/utils.ts +0 -31
  59. package/src/plugins/vast-ads/VastAds.ts +8 -4
  60. package/tsconfig.tsbuildinfo +1 -1
package/dist/index.css CHANGED
@@ -122,156 +122,8 @@
122
122
  .gplayer-lite-btn::-moz-focus-inner {
123
123
  border: 0;
124
124
  padding: 0;
125
- }.big-mute-icon-wrapper[data-big-mute] {
126
- position: absolute;
127
- z-index: 9998;
128
- background-color: transparent;
129
- display: flex;
130
- justify-content: center;
131
- width: 100%;
132
- height: calc(100% - 50px);
133
- margin: 0 auto;
134
- opacity: 0.75;
135
- transition: opacity 0.1s ease;
136
- pointer-events: auto;
137
- }
138
- .big-mute-icon-wrapper[data-big-mute].hide {
139
- display: none;
140
- }
141
- .big-mute-icon-wrapper[data-big-mute]:hover {
142
- cursor: pointer;
143
- }
144
-
145
- .big-mute-icon[data-big-mute-icon] {
146
- display: flex;
147
- align-items: center;
148
- justify-content: center;
149
- align-self: center;
150
- width: 120px;
151
- height: 120px;
152
- border: 2px solid white;
153
- border-radius: 50%;
154
- filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
155
- filter: alpha(opacity=60);
156
- opacity: 1;
157
- box-shadow: 0 0 1px 0 white;
158
- background: rgba(240, 243, 247, 0.9411764706);
159
- z-index: 10000;
160
- }
161
- .big-mute-icon[data-big-mute-icon] svg {
162
- margin-left: 5px;
163
- width: 80px;
164
- height: 80px;
165
- }
166
- .big-mute-icon[data-big-mute-icon] svg path {
167
- fill: #1f1e1e !important;
168
- }
169
- .big-mute-icon[data-big-mute-icon]:hover {
170
- background: rgba(240, 243, 247, 0.8784313725);
171
- }
172
- .big-mute-icon[data-big-mute-icon]:hover svg path {
173
- fill: #151515 !important;
174
125
  }.clips.bar-container[data-seekbar] {
175
126
  clip-path: url("#myClip");
176
- }.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
177
- order: 99;
178
- height: 20px;
179
- }
180
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
181
- position: absolute;
182
- right: 16px;
183
- bottom: 52px;
184
- width: 250px;
185
- min-height: 48px;
186
- z-index: 9999;
187
- border-radius: 4px;
188
- }
189
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
190
- padding: 8px 0;
191
- }
192
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list svg {
193
- float: left;
194
- margin-right: 10px;
195
- }
196
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option {
197
- margin: 0;
198
- text-align: left;
199
- line-height: 22px;
200
- padding: 5px 14px;
201
- width: 250px;
202
- font-size: 12px;
203
- }
204
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option .gear-option_arrow-right-icon {
205
- float: right;
206
- margin-right: -14px;
207
- }
208
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option .gear-option_value {
209
- float: right;
210
- margin-right: 8px;
211
- }
212
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option svg {
213
- height: 20px;
214
- }*, :focus, :visited {
215
- outline: none !important;
216
- }
217
-
218
- .gear-wrapper .go-back {
219
- font-weight: 600;
220
- font-size: 14px;
221
- line-height: 20px;
222
- width: 100%;
223
- text-align: left;
224
- padding: 12px;
225
- }
226
- .gear-wrapper .go-back .arrow-left-icon {
227
- float: left;
228
- padding-top: 2px;
229
- padding-right: 2px;
230
- }
231
- .gear-wrapper .go-back .arrow-left-icon svg {
232
- height: 16px;
233
- }
234
- .gear-wrapper ul.gear-sub-menu {
235
- width: 100%;
236
- list-style-type: none;
237
- min-width: 60px;
238
- border-top: 2px solid rgb(36, 36, 36);
239
- }
240
- .gear-wrapper ul.gear-sub-menu li {
241
- font-size: 12px;
242
- text-align: left;
243
- }
244
- .gear-wrapper ul.gear-sub-menu li[data-title] {
245
- background-color: #c3c2c2;
246
- padding: 5px;
247
- }
248
- .gear-wrapper ul.gear-sub-menu li a {
249
- display: block;
250
- text-decoration: none;
251
- height: 32px;
252
- padding: 5px 10px;
253
- line-height: 22px;
254
- color: #fffffe;
255
- }
256
- .gear-wrapper ul.gear-sub-menu li a:hover {
257
- color: white;
258
- background-color: rgba(0, 0, 0, 0.4);
259
- }
260
- .gear-wrapper ul.gear-sub-menu li a:hover a {
261
- color: white;
262
- text-decoration: none;
263
- }
264
- .gear-wrapper ul.gear-sub-menu li a .check-icon {
265
- width: 30px;
266
- height: 20px;
267
- float: left;
268
- display: block;
269
- }
270
- .gear-wrapper ul.gear-sub-menu li a .check-icon svg {
271
- display: none;
272
- }
273
- .gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
274
- display: inline;
275
127
  }*,
276
128
  :focus,
277
129
  :visited {
@@ -372,36 +224,67 @@
372
224
  100% {
373
225
  color: #B80000;
374
226
  }
375
- }.context-menu {
376
- z-index: 999;
377
- position: absolute;
378
- top: 0;
379
- left: 0;
380
- text-align: center;
227
+ }*, :focus, :visited {
228
+ outline: none !important;
381
229
  }
382
- .context-menu .context-menu-list {
383
- font-family: "Proxima Nova", sans-serif;
384
- font-size: 12px;
385
- line-height: 12px;
230
+
231
+ .gear-wrapper .go-back {
232
+ font-weight: 600;
233
+ font-size: 14px;
234
+ line-height: 20px;
235
+ width: 100%;
236
+ text-align: left;
237
+ padding: 12px;
238
+ }
239
+ .gear-wrapper .go-back .arrow-left-icon {
240
+ float: left;
241
+ padding-top: 2px;
242
+ padding-right: 2px;
243
+ }
244
+ .gear-wrapper .go-back .arrow-left-icon svg {
245
+ height: 16px;
246
+ }
247
+ .gear-wrapper ul.gear-sub-menu {
248
+ width: 100%;
386
249
  list-style-type: none;
250
+ min-width: 60px;
251
+ border-top: 2px solid rgb(36, 36, 36);
252
+ }
253
+ .gear-wrapper ul.gear-sub-menu li {
254
+ font-size: 12px;
387
255
  text-align: left;
256
+ }
257
+ .gear-wrapper ul.gear-sub-menu li[data-title] {
258
+ background-color: #c3c2c2;
388
259
  padding: 5px;
389
- margin-left: auto;
390
- margin-right: auto;
391
- background-color: rgba(0, 0, 0, 0.75);
392
- border: 1px solid #666;
393
- border-radius: 4px;
394
260
  }
395
- .context-menu .context-menu-list .context-menu-list-item {
261
+ .gear-wrapper ul.gear-sub-menu li a {
262
+ display: block;
263
+ text-decoration: none;
264
+ height: 32px;
265
+ padding: 5px 10px;
266
+ line-height: 22px;
267
+ color: #fffffe;
268
+ }
269
+ .gear-wrapper ul.gear-sub-menu li a:hover {
396
270
  color: white;
397
- padding: 5px;
398
- cursor: pointer;
399
- }.gear-option_hd-icon.disabled {
400
- opacity: 0.5;
401
- pointer-events: none;
271
+ background-color: rgba(0, 0, 0, 0.4);
272
+ }
273
+ .gear-wrapper ul.gear-sub-menu li a:hover a {
274
+ color: white;
275
+ text-decoration: none;
276
+ }
277
+ .gear-wrapper ul.gear-sub-menu li a .check-icon {
278
+ width: 30px;
279
+ height: 20px;
280
+ float: left;
281
+ display: block;
402
282
  }
403
- .gear-option_hd-icon.hidden {
283
+ .gear-wrapper ul.gear-sub-menu li a .check-icon svg {
404
284
  display: none;
285
+ }
286
+ .gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
287
+ display: inline;
405
288
  }div.player-error-screen, [data-player] div.player-error-screen {
406
289
  color: #CCCACA;
407
290
  position: absolute;
@@ -436,39 +319,44 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
436
319
  cursor: pointer;
437
320
  width: 30px;
438
321
  margin: 15px auto 0;
439
- }.seek-time[data-seek-time] {
440
- position: absolute;
441
- white-space: nowrap;
322
+ }.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
323
+ order: 99;
442
324
  height: 20px;
443
- line-height: 20px;
444
- font-size: 0;
445
- left: -100%;
446
- bottom: 55px;
447
- background-color: rgba(2, 2, 2, 0.5);
325
+ }
326
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
327
+ position: absolute;
328
+ right: 16px;
329
+ bottom: 52px;
330
+ width: 250px;
331
+ min-height: 48px;
448
332
  z-index: 9999;
449
- transition: opacity 0.1s ease;
333
+ border-radius: 4px;
450
334
  }
451
- .seek-time[data-seek-time].hidden[data-seek-time] {
452
- opacity: 0;
335
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
336
+ padding: 8px 0;
453
337
  }
454
- .seek-time[data-seek-time] [data-seek-time] {
455
- display: inline-block;
456
- color: white;
457
- font-size: 10px;
458
- padding-left: 7px;
459
- padding-right: 7px;
460
- vertical-align: top;
338
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list svg {
339
+ float: left;
340
+ margin-right: 10px;
461
341
  }
462
- .seek-time[data-seek-time] [data-duration] {
463
- display: inline-block;
464
- color: rgba(255, 255, 255, 0.5);
465
- font-size: 10px;
466
- padding-right: 7px;
467
- vertical-align: top;
342
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option {
343
+ margin: 0;
344
+ text-align: left;
345
+ line-height: 22px;
346
+ padding: 5px 14px;
347
+ width: 250px;
348
+ font-size: 12px;
468
349
  }
469
- .seek-time[data-seek-time] [data-duration]::before {
470
- content: "|";
471
- margin-right: 7px;
350
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option .gear-option_arrow-right-icon {
351
+ float: right;
352
+ margin-right: -14px;
353
+ }
354
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option .gear-option_value {
355
+ float: right;
356
+ margin-right: 8px;
357
+ }
358
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option svg {
359
+ height: 20px;
472
360
  }.player-poster[data-poster] {
473
361
  display: flex;
474
362
  justify-content: center;
@@ -503,74 +391,99 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
503
391
  }
504
392
  .player-poster[data-poster] .play-wrapper[data-poster] svg path {
505
393
  fill: #fff;
506
- }.spinner-three-bounce[data-spinner] {
507
- position: absolute;
508
- width: 70px;
509
- text-align: center;
510
- z-index: 999;
511
- left: 0;
512
- right: 0;
513
- margin: 0 auto;
514
- margin-left: auto;
515
- margin-right: auto;
516
- /* center vertically */
517
- top: 50%;
518
- transform: translateY(-50%);
394
+ }.dvr-controls[data-dvr] {
395
+ display: inline-block;
396
+ color: var(--player-dvr-color);
397
+ line-height: 32px;
398
+ font-size: 10px;
399
+ font-weight: bold;
400
+ margin-left: 6px;
401
+ height: 40px;
402
+ line-height: 40px;
403
+ margin-left: 0;
519
404
  }
520
- .spinner-three-bounce[data-spinner] > div {
521
- width: 18px;
522
- height: 18px;
523
- background-color: #FFF;
524
- border-radius: 100%;
405
+ .dvr-controls[data-dvr] .live-info {
406
+ cursor: default;
407
+ text-transform: uppercase;
408
+ }
409
+ .dvr-controls[data-dvr] .live-info:before {
410
+ content: "";
525
411
  display: inline-block;
526
- animation: bouncedelay 1.4s infinite ease-in-out;
527
- /* Prevent first frame from flickering when animation starts */
528
- animation-fill-mode: both;
412
+ position: relative;
413
+ width: 7px;
414
+ height: 7px;
415
+ border-radius: 3.5px;
416
+ margin-right: 3.5px;
417
+ background-color: var(--player-live-color);
529
418
  }
530
- .spinner-three-bounce[data-spinner] [data-bounce1] {
531
- animation-delay: -0.32s;
419
+ .dvr-controls[data-dvr] .live-info.disabled {
420
+ opacity: 0.3;
532
421
  }
533
- .spinner-three-bounce[data-spinner] [data-bounce2] {
534
- animation-delay: -0.16s;
422
+ .dvr-controls[data-dvr] .live-info.disabled:before {
423
+ background-color: var(--player-dvr-color);
535
424
  }
536
-
537
- @keyframes bouncedelay {
538
- 0%, 80%, 100% {
539
- transform: scale(0);
540
- }
541
- 40% {
542
- transform: scale(1);
543
- }
544
- }.media-control-pip {
545
- order: 95;
546
- display: flex;
425
+ .dvr-controls[data-dvr] .live-button {
426
+ cursor: pointer;
427
+ outline: none;
428
+ display: none;
429
+ border: 0;
430
+ color: var(--player-dvr-color);
431
+ background-color: transparent;
432
+ height: 32px;
433
+ padding: 0;
434
+ opacity: 0.7;
435
+ text-transform: uppercase;
436
+ transition: all 0.1s ease;
547
437
  }
548
- .media-control-pip button {
549
- height: 20px;
438
+ .dvr-controls[data-dvr] .live-button:before {
439
+ content: "";
440
+ display: inline-block;
441
+ position: relative;
442
+ width: 7px;
443
+ height: 7px;
444
+ border-radius: 3.5px;
445
+ margin-right: 3.5px;
446
+ background-color: var(--player-dvr-color);
550
447
  }
551
- .media-control-pip button svg {
552
- height: 20px;
553
- }.container-with-poster-clickable .skip_time_plugin[data-skip-time] {
554
- height: 0;
448
+ .dvr-controls[data-dvr] .live-button:hover {
449
+ opacity: 1;
450
+ text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
555
451
  }
556
-
557
- .skip_time_plugin[data-skip-time] {
558
- position: absolute;
559
- width: 100%;
560
- height: calc(100% - 50px);
561
- z-index: 9998;
562
- background-color: transparent;
563
- font-family: Roboto, "Open Sans", Arial, sans-serif;
452
+ .dvr-controls[data-dvr] .live-info {
453
+ font-size: 14px;
454
+ letter-spacing: 0.8px;
455
+ font-weight: 500;
456
+ color: #fffffe;
457
+ margin-left: 21px;
564
458
  }
565
- .skip_time_plugin[data-skip-time] .skip-container[data-skip-container] {
566
- width: 100%;
567
- height: 100%;
568
- display: flex;
569
- justify-content: space-between;
459
+ .dvr-controls[data-dvr] .live-info::before {
460
+ width: 10px;
461
+ height: 10px;
462
+ border-radius: 50%;
463
+ margin-right: 8px;
464
+ background-color: #ed4f4a;
570
465
  }
571
- .skip_time_plugin[data-skip-time] .skip-container[data-skip-container] .skip-item {
572
- width: 33.3%;
573
- height: 100%;
466
+ .dvr-controls[data-dvr] .live-button {
467
+ height: 40px;
468
+ opacity: 1;
469
+ font-size: 14px;
470
+ letter-spacing: 0.8px;
471
+ font-weight: 500;
472
+ margin-left: 20px;
473
+ }
474
+ .dvr-controls[data-dvr] .live-button::before {
475
+ width: 10px;
476
+ height: 10px;
477
+ border-radius: 50%;
478
+ margin-right: 8px;
479
+ background-color: #cacaca;
480
+ }
481
+
482
+ .dvr .dvr-controls[data-dvr] .live-info {
483
+ display: none;
484
+ }
485
+ .dvr .dvr-controls[data-dvr] .live-button {
486
+ display: block;
574
487
  }[data-player] {
575
488
  --bottom-panel: 40px;
576
489
  }
@@ -1208,540 +1121,391 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1208
1121
  }
1209
1122
  .media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span[data-duration] {
1210
1123
  display: none !important;
1211
- }*,
1212
- :focus,
1213
- :visited {
1214
- outline: none !important;
1215
- }
1216
-
1217
- .media-control-cc[data-cc] {
1218
- position: relative;
1219
- order: 85;
1220
- }
1221
- .media-control-cc[data-cc] button {
1222
- background-color: transparent;
1223
- color: #fff;
1224
- -webkit-font-smoothing: antialiased;
1225
- border: none;
1226
- cursor: pointer;
1124
+ }.spinner-three-bounce[data-spinner] {
1125
+ position: absolute;
1126
+ width: 70px;
1127
+ text-align: center;
1128
+ z-index: 999;
1129
+ left: 0;
1130
+ right: 0;
1131
+ margin: 0 auto;
1132
+ margin-left: auto;
1133
+ margin-right: auto;
1134
+ /* center vertically */
1135
+ top: 50%;
1136
+ transform: translateY(-50%);
1227
1137
  }
1228
- .media-control-cc[data-cc] button .cc-text svg {
1229
- fill: white;
1138
+ .spinner-three-bounce[data-spinner] > div {
1139
+ width: 18px;
1140
+ height: 18px;
1141
+ background-color: #FFF;
1142
+ border-radius: 100%;
1143
+ display: inline-block;
1144
+ animation: bouncedelay 1.4s infinite ease-in-out;
1145
+ /* Prevent first frame from flickering when animation starts */
1146
+ animation-fill-mode: both;
1230
1147
  }
1231
- .media-control-cc[data-cc] button:hover {
1232
- color: #c9c9c9;
1148
+ .spinner-three-bounce[data-spinner] [data-bounce1] {
1149
+ animation-delay: -0.32s;
1233
1150
  }
1234
- .media-control-cc[data-cc] button.changing {
1235
- animation: pulse 0.5s infinite alternate;
1151
+ .spinner-three-bounce[data-spinner] [data-bounce2] {
1152
+ animation-delay: -0.16s;
1236
1153
  }
1237
- .media-control-cc[data-cc] ul {
1238
- width: 80px;
1239
- list-style-type: none;
1154
+
1155
+ @keyframes bouncedelay {
1156
+ 0%, 80%, 100% {
1157
+ transform: scale(0);
1158
+ }
1159
+ 40% {
1160
+ transform: scale(1);
1161
+ }
1162
+ }.scrub-thumbnails {
1240
1163
  position: absolute;
1241
- bottom: 25px;
1242
- border: 1px solid black;
1243
- display: none;
1244
- background-color: #e6e6e6;
1245
- padding: 8px 0;
1164
+ bottom: 52px;
1165
+ width: 100%;
1166
+ transition: opacity 0.3s ease;
1246
1167
  }
1247
- .media-control-cc[data-cc] li a {
1248
- color: #444;
1249
- padding: 2px 10px;
1250
- display: block;
1251
- text-decoration: none;
1168
+ .scrub-thumbnails.hidden {
1169
+ opacity: 0;
1252
1170
  }
1253
- .media-control-cc[data-cc] li a:hover {
1254
- background-color: #555;
1255
- color: white;
1171
+ .scrub-thumbnails .thumbnail-container {
1172
+ display: inline-block;
1173
+ position: relative;
1174
+ overflow: hidden;
1175
+ background-color: #000;
1256
1176
  }
1257
- .media-control-cc[data-cc] li a:hover a {
1258
- color: white;
1259
- text-decoration: none;
1177
+ .scrub-thumbnails .thumbnail-container .thumbnail-img {
1178
+ position: absolute;
1179
+ width: auto;
1260
1180
  }
1261
- .media-control-cc[data-cc] li.current a {
1262
- color: #f00;
1263
- background-color: #555;
1264
- }
1265
-
1266
- @keyframes pulse {
1267
- 0% {
1268
- color: #fff;
1269
- }
1270
- 50% {
1271
- color: #ff0101;
1272
- }
1273
- 100% {
1274
- color: #B80000;
1275
- }
1181
+ .scrub-thumbnails .thumbnails-text {
1182
+ background-color: rgba(74, 74, 74, 0.7);
1183
+ border-radius: 3px;
1184
+ white-space: nowrap;
1185
+ overflow: hidden;
1186
+ text-overflow: ellipsis;
1187
+ color: white;
1188
+ position: absolute;
1189
+ bottom: 23px;
1190
+ width: 100px;
1276
1191
  }
1277
- ::cue {
1278
- visibility: hidden !important;
1279
- font-size: 0 !important;
1192
+ .scrub-thumbnails .spotlight {
1193
+ background-color: #4a4a4a;
1194
+ overflow: hidden;
1195
+ position: absolute;
1196
+ bottom: 0;
1197
+ left: 0;
1198
+ border-color: #4a4a4a;
1199
+ border-style: solid;
1200
+ border-width: 3px;
1201
+ border-radius: 3px;
1280
1202
  }
1281
-
1282
- .ios-fullscreen::cue {
1283
- visibility: visible !important;
1284
- font-size: 1em !important;
1285
- }:root {
1286
- --primary-background-color: #000;
1287
- --secondary-background-color: #262626;
1288
- --primary-text-color: #fff;
1289
- --secondary-text-color: #fff4f2;
1290
- --hover-text-color: #f9b090;
1291
- --speedtest-red: #df564d;
1292
- --speedtest-orange: #df934d;
1293
- --speedtest-yellow: #dfd04d;
1294
- --speedtest-light-green: #c2df4d;
1295
- --speedtest-green: #73df4d;
1203
+ .scrub-thumbnails .spotlight img {
1204
+ width: auto;
1296
1205
  }
1297
-
1298
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box {
1206
+ .scrub-thumbnails .backdrop {
1299
1207
  position: absolute;
1300
- display: inline-block;
1301
- bottom: 52px;
1302
- right: 16px;
1303
- padding: 0 10px 12px;
1304
- margin: 0;
1305
- line-height: 20px;
1306
- font-size: 12px;
1307
- font-weight: 500;
1308
- background: var(--primary-background-color);
1309
- color: #fff;
1310
- z-index: 20000;
1311
- overflow: auto;
1312
- max-height: calc(100vh - 60px);
1313
- max-width: calc(100vw - 10px);
1208
+ left: 0;
1209
+ bottom: 0;
1210
+ right: 0;
1211
+ background-color: #000;
1212
+ overflow: hidden;
1314
1213
  }
1315
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-top {
1214
+ .scrub-thumbnails .backdrop .carousel {
1316
1215
  position: absolute;
1317
1216
  top: 0;
1318
1217
  left: 0;
1319
- z-index: 99990;
1320
- width: 100%;
1321
- height: 32px;
1322
- background: var(--primary-background-color);
1323
- }
1324
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-top .close-button {
1325
- float: right;
1326
- margin-right: 12px;
1327
- margin-top: 10px;
1328
- display: block;
1329
- width: 12px;
1330
- height: 12px;
1218
+ height: 100%;
1219
+ white-space: nowrap;
1331
1220
  }
1332
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-top .close-button svg path {
1333
- fill: var(--primary-text-color);
1221
+ .scrub-thumbnails .backdrop .carousel img {
1222
+ width: auto;
1223
+ }.share_plugin[data-share] {
1224
+ pointer-events: auto;
1225
+ z-index: 5;
1226
+ font-family: Roboto, "Open Sans", Arial, sans-serif !important;
1334
1227
  }
1335
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-top .close-button:hover svg path {
1336
- fill: var(--hover-text-color);
1228
+ .share_plugin[data-share].share-hide .share-button-container {
1229
+ right: -50px;
1337
1230
  }
1338
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-main {
1339
- overflow: hidden;
1340
- margin-top: 44px;
1231
+ .share_plugin[data-share] .share-button-container {
1232
+ cursor: pointer;
1233
+ width: 36px;
1234
+ height: 36px;
1235
+ background-color: rgba(74, 74, 74, 0.6);
1236
+ border-radius: 4px;
1237
+ position: absolute;
1238
+ right: 10px;
1239
+ top: 10px;
1240
+ padding-top: 6px;
1241
+ transition: all 0.3s ease-out;
1341
1242
  }
1342
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.wide {
1343
- width: 820px;
1243
+ .share_plugin[data-share] .share-button-container button[data-share-button] {
1244
+ background-color: transparent;
1245
+ border: 0;
1246
+ margin: 0 6px;
1247
+ padding: 0;
1248
+ cursor: pointer;
1249
+ display: inline-block;
1250
+ width: 19px;
1251
+ height: 20px;
1344
1252
  }
1345
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul, .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box li {
1346
- list-style-type: none;
1253
+ .share_plugin[data-share] .share-container {
1254
+ pointer-events: auto;
1255
+ position: absolute;
1256
+ width: 280px;
1257
+ background-color: white;
1258
+ transform: translate(0, 50%);
1259
+ transform: translate(-50%, -50%);
1260
+ left: 50%;
1261
+ /* margin-left: -140px; */
1262
+ top: calc(50% - 20px);
1263
+ /* margin-top: -170px; */
1347
1264
  }
1348
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul div, .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box li div {
1349
- padding-left: 2px;
1350
- padding-right: 2px;
1351
- background: var(--primary-background-color);
1265
+ .share_plugin[data-share] .share-container .share-container-header {
1266
+ text-align: left;
1267
+ border-bottom: 1px solid rgba(155, 155, 155, 0.25);
1352
1268
  }
1353
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul {
1269
+ .share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
1354
1270
  display: inline-block;
1355
- float: left;
1356
- padding: 5px;
1357
- width: 200px;
1358
- }
1359
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li {
1360
- position: relative;
1361
- padding: 0 5px;
1362
- text-align: left;
1271
+ font-size: 16px;
1272
+ margin: 5px;
1363
1273
  }
1364
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li.canvas-wrapper {
1365
- padding: 0;
1274
+ .share_plugin[data-share] .share-container .share-container-header .share-container-header--close {
1275
+ display: inline-block;
1276
+ width: 24px;
1277
+ float: right;
1278
+ margin: 5px;
1279
+ cursor: pointer;
1366
1280
  }
1367
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li.canvas-wrapper canvas {
1368
- width: 100%;
1281
+ .share_plugin[data-share] .share-container .share-container-main {
1282
+ margin-bottom: 8px;
1369
1283
  }
1370
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li:nth-child(2n) {
1371
- background: var(--secondary-background-color);
1284
+ .share_plugin[data-share] .share-container .share-container-main > div {
1285
+ text-align: left;
1286
+ font-size: 14px;
1287
+ padding: 5px;
1372
1288
  }
1373
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li:nth-child(2n) div {
1374
- background: var(--secondary-background-color);
1289
+ .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 {
1290
+ overflow: hidden;
1291
+ text-overflow: ellipsis;
1292
+ color: #818181;
1293
+ border: solid 1px #d3d3d3;
1294
+ width: calc(100% - 10px);
1295
+ padding: 5px;
1375
1296
  }
1376
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li.title {
1377
- text-align: center;
1378
- font-weight: bold;
1379
- padding-bottom: 4px;
1380
- font-size: 14px;
1297
+ .share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
1298
+ max-height: 90px;
1299
+ resize: none;
1381
1300
  }
1382
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li div {
1383
- margin: 0;
1301
+ .share_plugin[data-share] .share-container .share-container-main .share-container-header--socialicon > div {
1302
+ width: 32px;
1303
+ display: inline-block;
1304
+ margin-right: 5px;
1305
+ cursor: pointer;
1306
+ }.context-menu {
1307
+ z-index: 999;
1384
1308
  position: absolute;
1385
- right: 0;
1386
1309
  top: 0;
1310
+ left: 0;
1311
+ text-align: center;
1387
1312
  }
1388
-
1389
- .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow {
1390
- width: 250px;
1391
- }
1392
- .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow ul {
1393
- width: 100%;
1394
- }
1395
- .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-summary {
1396
- padding: 0 5px;
1397
- height: auto;
1313
+ .context-menu .context-menu-list {
1314
+ font-family: "Proxima Nova", sans-serif;
1315
+ font-size: 12px;
1316
+ line-height: 12px;
1317
+ list-style-type: none;
1318
+ text-align: left;
1319
+ padding: 5px;
1320
+ margin-left: auto;
1321
+ margin-right: auto;
1322
+ background-color: rgba(0, 0, 0, 0.75);
1323
+ border: 1px solid #666;
1324
+ border-radius: 4px;
1398
1325
  }
1399
- .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-summary-block {
1326
+ .context-menu .context-menu-list .context-menu-list-item {
1327
+ color: white;
1328
+ padding: 5px;
1329
+ cursor: pointer;
1330
+ }.big-mute-icon-wrapper[data-big-mute] {
1331
+ position: absolute;
1332
+ z-index: 9998;
1333
+ background-color: transparent;
1334
+ display: flex;
1335
+ justify-content: center;
1400
1336
  width: 100%;
1401
- flex-direction: column;
1337
+ height: calc(100% - 50px);
1338
+ margin: 0 auto;
1339
+ opacity: 0.75;
1340
+ transition: opacity 0.1s ease;
1341
+ pointer-events: auto;
1402
1342
  }
1403
- .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-summary-block .speedtest-summary-subblock {
1404
- width: 100%;
1343
+ .big-mute-icon-wrapper[data-big-mute].hide {
1344
+ display: none;
1405
1345
  }
1406
- .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-summary-block .speedtest-summary-subblock-content {
1407
- width: 100%;
1346
+ .big-mute-icon-wrapper[data-big-mute]:hover {
1347
+ cursor: pointer;
1408
1348
  }
1409
- .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-summary-header {
1410
- padding-top: 12px;
1411
- height: 38px;
1412
- text-align: center;
1413
- }
1414
- .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-quality-header {
1415
- text-align: center;
1349
+
1350
+ .big-mute-icon[data-big-mute-icon] {
1351
+ display: flex;
1352
+ align-items: center;
1353
+ justify-content: center;
1354
+ align-self: center;
1355
+ width: 120px;
1356
+ height: 120px;
1357
+ border: 2px solid white;
1358
+ border-radius: 50%;
1359
+ filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
1360
+ filter: alpha(opacity=60);
1361
+ opacity: 1;
1362
+ box-shadow: 0 0 1px 0 white;
1363
+ background: rgba(240, 243, 247, 0.9411764706);
1364
+ z-index: 10000;
1416
1365
  }
1417
- .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-footer {
1366
+ .big-mute-icon[data-big-mute-icon] svg {
1367
+ margin-left: 5px;
1368
+ width: 80px;
1418
1369
  height: 80px;
1419
1370
  }
1420
- .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-footer-about-link {
1421
- bottom: 0;
1422
- left: 0;
1371
+ .big-mute-icon[data-big-mute-icon] svg path {
1372
+ fill: #1f1e1e !important;
1423
1373
  }
1424
- .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-footer .speedtest-footer-refresh {
1425
- inset: 50% auto auto 50%;
1426
- transform: translate(-50%, -50%);
1374
+ .big-mute-icon[data-big-mute-icon]:hover {
1375
+ background: rgba(240, 243, 247, 0.8784313725);
1427
1376
  }
1428
-
1429
- .speed-test-button {
1430
- margin: 10px 0 0;
1431
- color: #000;
1377
+ .big-mute-icon[data-big-mute-icon]:hover svg path {
1378
+ fill: #151515 !important;
1379
+ }.gear-option_hd-icon.hidden {
1380
+ display: none;
1432
1381
  }
1433
1382
 
1434
- .speed-test {
1435
- position: absolute;
1436
- top: 0;
1437
- left: 0;
1438
- width: 100%;
1439
- height: 100%;
1440
- z-index: 9999;
1441
- }
1442
- .speed-test .speed-test-header {
1443
- width: 100%;
1444
- height: 32px;
1445
- }
1446
- .speed-test .speed-test-header .close-speed-test {
1447
- float: right;
1448
- margin-right: 5px;
1449
- line-height: 32px;
1450
- cursor: pointer;
1451
- color: var(--primary-text-color);
1383
+ .quality-levels li.disabled {
1384
+ opacity: 0.5;
1385
+ pointer-events: none;
1452
1386
  }
1453
- .speed-test .speed-test-header .close-speed-test:hover {
1454
- color: var(--hover-text-color);
1387
+ .quality-levels li.current {
1388
+ background-color: #000;
1389
+ }.media-control-pip {
1390
+ order: 95;
1391
+ display: flex;
1455
1392
  }
1456
-
1457
- .settings-button {
1458
- float: right;
1459
- margin: 0 12px 0 0;
1460
- height: 40px;
1461
- width: 24px;
1462
- border: none;
1463
- padding: 0;
1393
+ .media-control-pip button {
1394
+ height: 20px;
1464
1395
  }
1465
-
1466
- .settings-options-list {
1396
+ .media-control-pip button svg {
1397
+ height: 20px;
1398
+ }.seek-time[data-seek-time] {
1467
1399
  position: absolute;
1468
- right: 16px;
1469
- bottom: 52px;
1470
- background: var(--primary-background-color);
1471
- width: 250px;
1472
- height: 48px;
1400
+ white-space: nowrap;
1401
+ height: 20px;
1402
+ line-height: 20px;
1403
+ font-size: 0;
1404
+ left: -100%;
1405
+ bottom: 55px;
1406
+ background-color: rgba(2, 2, 2, 0.5);
1473
1407
  z-index: 9999;
1474
- border-radius: 4px;
1475
- }
1476
- .settings-options-list svg {
1477
- float: left;
1478
- margin-right: 10px;
1408
+ transition: opacity 0.1s ease;
1479
1409
  }
1480
- .settings-options-list .settings-speedtest-option {
1481
- color: var(--primary-text-color);
1482
- margin: 0;
1483
- text-align: left;
1484
- height: 24px;
1485
- line-height: 22px;
1486
- padding: 14px;
1487
- width: 250px;
1488
- font-size: 12px;
1410
+ .seek-time[data-seek-time].hidden[data-seek-time] {
1411
+ opacity: 0;
1489
1412
  }
1490
- .settings-options-list .settings-speedtest-option:hover {
1491
- color: var(--hover-text-color);
1413
+ .seek-time[data-seek-time] [data-seek-time] {
1414
+ display: inline-block;
1415
+ color: white;
1416
+ font-size: 10px;
1417
+ padding-left: 7px;
1418
+ padding-right: 7px;
1419
+ vertical-align: top;
1492
1420
  }
1493
- .settings-options-list .settings-speedtest-option:hover svg path {
1494
- fill: var(--hover-text-color);
1421
+ .seek-time[data-seek-time] [data-duration] {
1422
+ display: inline-block;
1423
+ color: rgba(255, 255, 255, 0.5);
1424
+ font-size: 10px;
1425
+ padding-right: 7px;
1426
+ vertical-align: top;
1495
1427
  }
1496
- .settings-options-list .settings-speedtest-option svg path {
1497
- fill: var(--primary-text-color);
1428
+ .seek-time[data-seek-time] [data-duration]::before {
1429
+ content: "|";
1430
+ margin-right: 7px;
1431
+ }*, :focus, :visited {
1432
+ outline: none !important;
1498
1433
  }
1499
1434
 
1500
- .speedtest-summary {
1501
- width: 100%;
1502
- border-top: 1px solid var(--secondary-background-color) !important;
1503
- border-bottom: 1px solid var(--secondary-background-color) !important;
1504
- display: flex !important;
1505
- flex-direction: column;
1506
- align-items: stretch;
1507
- justify-content: space-between;
1435
+ .multicamera[data-multicamera] {
1436
+ float: right;
1437
+ margin-top: 4px;
1438
+ position: relative;
1439
+ margin-right: 20px;
1440
+ width: 20px;
1508
1441
  }
1509
- .speedtest-summary .speedtest-summary-header {
1510
- width: 100%;
1511
- padding-top: 4px;
1512
- text-align: left;
1513
- height: 32px;
1442
+ .multicamera[data-multicamera] button {
1443
+ background-color: transparent;
1444
+ color: #fff;
1445
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
1446
+ -webkit-font-smoothing: antialiased;
1447
+ border: none;
1514
1448
  font-size: 14px;
1515
- font-weight: 500;
1516
- line-height: 20px;
1449
+ padding: 0;
1517
1450
  }
1518
- .speedtest-summary .speedtest-summary-block {
1451
+ .multicamera[data-multicamera] button svg {
1452
+ height: 20px;
1519
1453
  position: relative;
1520
- display: flex;
1521
- flex-direction: row;
1522
- width: 100%;
1454
+ margin-top: 6px;
1523
1455
  }
1524
- .speedtest-summary .speedtest-summary-block .speedtest-summary-subblock {
1525
- width: 50%;
1526
- margin-top: 4px;
1527
- margin-bottom: 12px;
1456
+ .multicamera[data-multicamera] button:hover {
1457
+ color: #c9c9c9;
1528
1458
  }
1529
- .speedtest-summary .speedtest-summary-block .speedtest-summary-subblock-content {
1530
- padding: 2px;
1531
- width: 248px;
1532
- max-width: 100%;
1459
+ .multicamera[data-multicamera] button.changing {
1460
+ animation: pulse 0.5s infinite alternate;
1533
1461
  }
1534
-
1535
- .speedtest-quality {
1536
- width: 100%;
1537
- height: 36px;
1538
- display: flex !important;
1539
- flex-direction: column !important;
1540
- justify-content: space-between !important;
1462
+ .multicamera[data-multicamera] button span.quality-arrow {
1463
+ width: 9px;
1464
+ height: 6px;
1465
+ margin-top: 11px;
1466
+ margin-left: 5px;
1541
1467
  }
1542
- .speedtest-quality .speedtest-quality-header {
1543
- font-size: 12px;
1544
- height: 20px;
1545
- border-left: 2px solid var(--secondary-background-color) !important;
1546
- background-color: var(--secondary-background-color);
1547
- text-align: left;
1468
+ .multicamera[data-multicamera] > ul {
1469
+ padding: 6px 0;
1470
+ right: -24px;
1471
+ width: 245px;
1472
+ list-style-type: none;
1473
+ position: absolute;
1474
+ bottom: 48px;
1475
+ border-radius: 4px;
1476
+ display: none;
1477
+ background-color: rgba(74, 74, 74, 0.9);
1548
1478
  }
1549
- .speedtest-quality-content {
1550
- width: 100%;
1551
- margin-top: 8px;
1552
- height: 8px;
1553
- display: flex !important;
1554
- flex-direction: row !important;
1555
- align-items: stretch !important;
1556
- justify-content: space-between;
1479
+ .multicamera[data-multicamera] > ul::after {
1480
+ content: "";
1481
+ position: absolute;
1482
+ top: 100%;
1483
+ left: 85%;
1484
+ margin-left: -10px;
1485
+ width: 0;
1486
+ height: 0;
1487
+ border-top: 10px solid rgba(74, 74, 74, 0.9);
1488
+ border-right: 10px solid transparent;
1489
+ border-left: 10px solid transparent;
1557
1490
  }
1558
- .speedtest-quality-content-item {
1559
- width: 18.8%;
1560
- background-color: #fff;
1491
+ .multicamera[data-multicamera] li {
1492
+ font-size: 10px;
1493
+ cursor: pointer;
1561
1494
  }
1562
- .speedtest-quality-content-item.speedtest-quality-value-1 {
1563
- background-color: var(--speedtest-red);
1495
+ .multicamera[data-multicamera] li .multicamera-item {
1496
+ display: flex;
1497
+ padding: 10px 0;
1498
+ justify-content: center;
1499
+ position: relative;
1564
1500
  }
1565
- .speedtest-quality-content-item.speedtest-quality-value-2 {
1566
- background-color: var(--speedtest-orange);
1501
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
1502
+ pointer-events: none;
1567
1503
  }
1568
- .speedtest-quality-content-item.speedtest-quality-value-3 {
1569
- background-color: var(--speedtest-yellow);
1504
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
1505
+ opacity: 0.5;
1570
1506
  }
1571
- .speedtest-quality-content-item.speedtest-quality-value-4 {
1572
- background-color: var(--speedtest-light-green);
1573
- }
1574
- .speedtest-quality-content-item.speedtest-quality-value-5 {
1575
- background-color: var(--speedtest-green);
1576
- }
1577
-
1578
- .speedtest-footer {
1579
- position: relative;
1580
- float: left;
1581
- width: 100%;
1582
- height: 30px;
1583
- line-height: 16px;
1584
- }
1585
- .speedtest-footer-about-link {
1586
- position: absolute;
1587
- bottom: 0;
1588
- left: 0;
1589
- color: var(--secondary-text-color);
1590
- text-decoration: underline !important;
1591
- }
1592
- .speedtest-footer-about-link:hover {
1593
- color: var(--hover-text-color);
1594
- }
1595
- .speedtest-footer .speedtest-footer-refresh {
1596
- position: absolute;
1597
- bottom: 0;
1598
- right: 0;
1599
- color: var(--secondary-text-color);
1600
- font-size: 14px;
1601
- font-weight: 400;
1602
- line-height: 16px;
1603
- height: 16px;
1604
- display: flex;
1605
- align-items: center;
1606
- gap: 4px;
1607
- }
1608
- .speedtest-footer .speedtest-footer-refresh svg path {
1609
- fill: var(--secondary-text-color);
1610
- }
1611
- .speedtest-footer .speedtest-footer-refresh:hover {
1612
- color: var(--hover-text-color);
1613
- }
1614
- .speedtest-footer .speedtest-footer-refresh:hover svg path {
1615
- fill: var(--hover-text-color);
1616
- }
1617
-
1618
- .mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box {
1619
- position: fixed;
1620
- height: auto;
1621
- width: auto;
1622
- inset: 0;
1623
- min-width: 100vw;
1624
- padding-bottom: 4px;
1625
- padding-left: 4px;
1626
- padding-right: 4px;
1627
- }
1628
- .mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-top {
1629
- position: fixed;
1630
- }
1631
- .mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul {
1632
- width: 50%;
1633
- }
1634
-
1635
- @media only screen and (orientation: portrait) {
1636
- .mobile .speedtest-summary {
1637
- padding: 0 5px;
1638
- height: auto;
1639
- }
1640
- .mobile .speedtest-summary-block {
1641
- width: 100%;
1642
- flex-direction: column;
1643
- }
1644
- .mobile .speedtest-summary-block .speedtest-summary-subblock {
1645
- width: 100%;
1646
- }
1647
- .mobile .speedtest-summary-block .speedtest-summary-subblock-content {
1648
- width: 100%;
1649
- }
1650
- .mobile .speedtest-summary-header {
1651
- padding-top: 12px;
1652
- height: 38px;
1653
- text-align: center;
1654
- }
1655
- .mobile .speedtest-quality-header {
1656
- text-align: center;
1657
- }
1658
- .mobile .speedtest-footer .speedtest-footer-refresh {
1659
- inset: 50% auto auto 50%;
1660
- transform: translate(-50%, -50%);
1661
- }
1662
- }
1663
- @media only screen and (orientation: landscape) {
1664
- .mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul {
1665
- width: 25%;
1666
- }
1667
- }*, :focus, :visited {
1668
- outline: none !important;
1669
- }
1670
-
1671
- .multicamera[data-multicamera] {
1672
- float: right;
1673
- margin-top: 4px;
1674
- position: relative;
1675
- margin-right: 20px;
1676
- width: 20px;
1677
- }
1678
- .multicamera[data-multicamera] button {
1679
- background-color: transparent;
1680
- color: #fff;
1681
- font-family: Roboto, "Open Sans", Arial, sans-serif;
1682
- -webkit-font-smoothing: antialiased;
1683
- border: none;
1684
- font-size: 14px;
1685
- padding: 0;
1686
- }
1687
- .multicamera[data-multicamera] button svg {
1688
- height: 20px;
1689
- position: relative;
1690
- margin-top: 6px;
1691
- }
1692
- .multicamera[data-multicamera] button:hover {
1693
- color: #c9c9c9;
1694
- }
1695
- .multicamera[data-multicamera] button.changing {
1696
- animation: pulse 0.5s infinite alternate;
1697
- }
1698
- .multicamera[data-multicamera] button span.quality-arrow {
1699
- width: 9px;
1700
- height: 6px;
1701
- margin-top: 11px;
1702
- margin-left: 5px;
1703
- }
1704
- .multicamera[data-multicamera] > ul {
1705
- padding: 6px 0;
1706
- right: -24px;
1707
- width: 245px;
1708
- list-style-type: none;
1709
- position: absolute;
1710
- bottom: 48px;
1711
- border-radius: 4px;
1712
- display: none;
1713
- background-color: rgba(74, 74, 74, 0.9);
1714
- }
1715
- .multicamera[data-multicamera] > ul::after {
1716
- content: "";
1717
- position: absolute;
1718
- top: 100%;
1719
- left: 85%;
1720
- margin-left: -10px;
1721
- width: 0;
1722
- height: 0;
1723
- border-top: 10px solid rgba(74, 74, 74, 0.9);
1724
- border-right: 10px solid transparent;
1725
- border-left: 10px solid transparent;
1726
- }
1727
- .multicamera[data-multicamera] li {
1728
- font-size: 10px;
1729
- cursor: pointer;
1730
- }
1731
- .multicamera[data-multicamera] li .multicamera-item {
1732
- display: flex;
1733
- padding: 10px 0;
1734
- justify-content: center;
1735
- position: relative;
1736
- }
1737
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
1738
- pointer-events: none;
1739
- }
1740
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
1741
- opacity: 0.5;
1742
- }
1743
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
1744
- opacity: 0.5;
1507
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
1508
+ opacity: 0.5;
1745
1509
  }
1746
1510
  .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
1747
1511
  background-color: rgba(0, 0, 0, 0);
@@ -1812,243 +1576,483 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1812
1576
  100% {
1813
1577
  color: #B80000;
1814
1578
  }
1815
- }.share_plugin[data-share] {
1816
- pointer-events: auto;
1817
- z-index: 5;
1818
- font-family: Roboto, "Open Sans", Arial, sans-serif !important;
1819
- }
1820
- .share_plugin[data-share].share-hide .share-button-container {
1821
- right: -50px;
1579
+ }.container-with-poster-clickable .skip_time_plugin[data-skip-time] {
1580
+ height: 0;
1822
1581
  }
1823
- .share_plugin[data-share] .share-button-container {
1824
- cursor: pointer;
1825
- width: 36px;
1826
- height: 36px;
1827
- background-color: rgba(74, 74, 74, 0.6);
1828
- border-radius: 4px;
1582
+
1583
+ .skip_time_plugin[data-skip-time] {
1829
1584
  position: absolute;
1830
- right: 10px;
1831
- top: 10px;
1832
- padding-top: 6px;
1833
- transition: all 0.3s ease-out;
1834
- }
1835
- .share_plugin[data-share] .share-button-container button[data-share-button] {
1585
+ width: 100%;
1586
+ height: calc(100% - 50px);
1587
+ z-index: 9998;
1836
1588
  background-color: transparent;
1837
- border: 0;
1838
- margin: 0 6px;
1839
- padding: 0;
1840
- cursor: pointer;
1841
- display: inline-block;
1842
- width: 19px;
1843
- height: 20px;
1844
- }
1845
- .share_plugin[data-share] .share-container {
1846
- pointer-events: auto;
1847
- position: absolute;
1848
- width: 280px;
1849
- background-color: white;
1850
- transform: translate(0, 50%);
1851
- transform: translate(-50%, -50%);
1852
- left: 50%;
1853
- /* margin-left: -140px; */
1854
- top: calc(50% - 20px);
1855
- /* margin-top: -170px; */
1589
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
1856
1590
  }
1857
- .share_plugin[data-share] .share-container .share-container-header {
1858
- text-align: left;
1859
- border-bottom: 1px solid rgba(155, 155, 155, 0.25);
1591
+ .skip_time_plugin[data-skip-time] .skip-container[data-skip-container] {
1592
+ width: 100%;
1593
+ height: 100%;
1594
+ display: flex;
1595
+ justify-content: space-between;
1860
1596
  }
1861
- .share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
1862
- display: inline-block;
1863
- font-size: 16px;
1864
- margin: 5px;
1597
+ .skip_time_plugin[data-skip-time] .skip-container[data-skip-container] .skip-item {
1598
+ width: 33.3%;
1599
+ height: 100%;
1600
+ }:root {
1601
+ --primary-background-color: #000;
1602
+ --secondary-background-color: #262626;
1603
+ --primary-text-color: #fff;
1604
+ --secondary-text-color: #fff4f2;
1605
+ --hover-text-color: #f9b090;
1606
+ --speedtest-red: #df564d;
1607
+ --speedtest-orange: #df934d;
1608
+ --speedtest-yellow: #dfd04d;
1609
+ --speedtest-light-green: #c2df4d;
1610
+ --speedtest-green: #73df4d;
1865
1611
  }
1866
- .share_plugin[data-share] .share-container .share-container-header .share-container-header--close {
1612
+
1613
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box {
1614
+ position: absolute;
1867
1615
  display: inline-block;
1868
- width: 24px;
1869
- float: right;
1870
- margin: 5px;
1871
- cursor: pointer;
1872
- }
1873
- .share_plugin[data-share] .share-container .share-container-main {
1874
- margin-bottom: 8px;
1875
- }
1876
- .share_plugin[data-share] .share-container .share-container-main > div {
1877
- text-align: left;
1878
- font-size: 14px;
1879
- padding: 5px;
1616
+ bottom: 52px;
1617
+ right: 16px;
1618
+ padding: 0 10px 12px;
1619
+ margin: 0;
1620
+ line-height: 20px;
1621
+ font-size: 12px;
1622
+ font-weight: 500;
1623
+ background: var(--primary-background-color);
1624
+ color: #fff;
1625
+ z-index: 20000;
1626
+ overflow: auto;
1627
+ max-height: calc(100vh - 60px);
1628
+ max-width: calc(100vw - 10px);
1880
1629
  }
1881
- .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 {
1882
- overflow: hidden;
1883
- text-overflow: ellipsis;
1884
- color: #818181;
1885
- border: solid 1px #d3d3d3;
1886
- width: calc(100% - 10px);
1887
- padding: 5px;
1630
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-top {
1631
+ position: absolute;
1632
+ top: 0;
1633
+ left: 0;
1634
+ z-index: 99990;
1635
+ width: 100%;
1636
+ height: 32px;
1637
+ background: var(--primary-background-color);
1888
1638
  }
1889
- .share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
1890
- max-height: 90px;
1891
- resize: none;
1639
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-top .close-button {
1640
+ float: right;
1641
+ margin-right: 12px;
1642
+ margin-top: 10px;
1643
+ display: block;
1644
+ width: 12px;
1645
+ height: 12px;
1892
1646
  }
1893
- .share_plugin[data-share] .share-container .share-container-main .share-container-header--socialicon > div {
1894
- width: 32px;
1895
- display: inline-block;
1896
- margin-right: 5px;
1897
- cursor: pointer;
1898
- }.dvr-controls[data-dvr] {
1899
- display: inline-block;
1900
- color: var(--player-dvr-color);
1901
- line-height: 32px;
1902
- font-size: 10px;
1903
- font-weight: bold;
1904
- margin-left: 6px;
1905
- height: 40px;
1906
- line-height: 40px;
1907
- margin-left: 0;
1647
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-top .close-button svg path {
1648
+ fill: var(--primary-text-color);
1908
1649
  }
1909
- .dvr-controls[data-dvr] .live-info {
1910
- cursor: default;
1911
- text-transform: uppercase;
1650
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-top .close-button:hover svg path {
1651
+ fill: var(--hover-text-color);
1912
1652
  }
1913
- .dvr-controls[data-dvr] .live-info:before {
1914
- content: "";
1915
- display: inline-block;
1916
- position: relative;
1917
- width: 7px;
1918
- height: 7px;
1919
- border-radius: 3.5px;
1920
- margin-right: 3.5px;
1921
- background-color: var(--player-live-color);
1653
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-main {
1654
+ overflow: hidden;
1655
+ margin-top: 44px;
1922
1656
  }
1923
- .dvr-controls[data-dvr] .live-info.disabled {
1924
- opacity: 0.3;
1657
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.wide {
1658
+ width: 820px;
1925
1659
  }
1926
- .dvr-controls[data-dvr] .live-info.disabled:before {
1927
- background-color: var(--player-dvr-color);
1660
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul, .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box li {
1661
+ list-style-type: none;
1928
1662
  }
1929
- .dvr-controls[data-dvr] .live-button {
1930
- cursor: pointer;
1931
- outline: none;
1932
- display: none;
1933
- border: 0;
1934
- color: var(--player-dvr-color);
1935
- background-color: transparent;
1936
- height: 32px;
1937
- padding: 0;
1938
- opacity: 0.7;
1939
- text-transform: uppercase;
1940
- transition: all 0.1s ease;
1663
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul div, .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box li div {
1664
+ padding-left: 2px;
1665
+ padding-right: 2px;
1666
+ background: var(--primary-background-color);
1941
1667
  }
1942
- .dvr-controls[data-dvr] .live-button:before {
1943
- content: "";
1668
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul {
1944
1669
  display: inline-block;
1670
+ float: left;
1671
+ padding: 5px;
1672
+ width: 200px;
1673
+ }
1674
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li {
1945
1675
  position: relative;
1946
- width: 7px;
1947
- height: 7px;
1948
- border-radius: 3.5px;
1949
- margin-right: 3.5px;
1950
- background-color: var(--player-dvr-color);
1676
+ padding: 0 5px;
1677
+ text-align: left;
1951
1678
  }
1952
- .dvr-controls[data-dvr] .live-button:hover {
1953
- opacity: 1;
1954
- text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
1679
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li.canvas-wrapper {
1680
+ padding: 0;
1955
1681
  }
1956
- .dvr-controls[data-dvr] .live-info {
1957
- font-size: 14px;
1958
- letter-spacing: 0.8px;
1959
- font-weight: 500;
1960
- color: #fffffe;
1961
- margin-left: 21px;
1682
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li.canvas-wrapper canvas {
1683
+ width: 100%;
1962
1684
  }
1963
- .dvr-controls[data-dvr] .live-info::before {
1964
- width: 10px;
1965
- height: 10px;
1966
- border-radius: 50%;
1967
- margin-right: 8px;
1968
- background-color: #ed4f4a;
1685
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li:nth-child(2n) {
1686
+ background: var(--secondary-background-color);
1969
1687
  }
1970
- .dvr-controls[data-dvr] .live-button {
1971
- height: 40px;
1972
- opacity: 1;
1688
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li:nth-child(2n) div {
1689
+ background: var(--secondary-background-color);
1690
+ }
1691
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li.title {
1692
+ text-align: center;
1693
+ font-weight: bold;
1694
+ padding-bottom: 4px;
1973
1695
  font-size: 14px;
1974
- letter-spacing: 0.8px;
1975
- font-weight: 500;
1976
- margin-left: 20px;
1977
1696
  }
1978
- .dvr-controls[data-dvr] .live-button::before {
1979
- width: 10px;
1980
- height: 10px;
1981
- border-radius: 50%;
1982
- margin-right: 8px;
1983
- background-color: #cacaca;
1697
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li div {
1698
+ margin: 0;
1699
+ position: absolute;
1700
+ right: 0;
1701
+ top: 0;
1984
1702
  }
1985
1703
 
1986
- .dvr .dvr-controls[data-dvr] .live-info {
1987
- display: none;
1704
+ .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow {
1705
+ width: 250px;
1988
1706
  }
1989
- .dvr .dvr-controls[data-dvr] .live-button {
1990
- display: block;
1991
- }.scrub-thumbnails {
1992
- position: absolute;
1993
- bottom: 52px;
1707
+ .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow ul {
1994
1708
  width: 100%;
1995
- transition: opacity 0.3s ease;
1996
1709
  }
1997
- .scrub-thumbnails.hidden {
1998
- opacity: 0;
1710
+ .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-summary {
1711
+ padding: 0 5px;
1712
+ height: auto;
1999
1713
  }
2000
- .scrub-thumbnails .thumbnail-container {
2001
- display: inline-block;
2002
- position: relative;
2003
- overflow: hidden;
2004
- background-color: #000;
1714
+ .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-summary-block {
1715
+ width: 100%;
1716
+ flex-direction: column;
2005
1717
  }
2006
- .scrub-thumbnails .thumbnail-container .thumbnail-img {
2007
- position: absolute;
2008
- width: auto;
1718
+ .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-summary-block .speedtest-summary-subblock {
1719
+ width: 100%;
2009
1720
  }
2010
- .scrub-thumbnails .thumbnails-text {
2011
- background-color: rgba(74, 74, 74, 0.7);
2012
- border-radius: 3px;
2013
- white-space: nowrap;
2014
- overflow: hidden;
2015
- text-overflow: ellipsis;
2016
- color: white;
2017
- position: absolute;
2018
- bottom: 23px;
2019
- width: 100px;
1721
+ .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-summary-block .speedtest-summary-subblock-content {
1722
+ width: 100%;
2020
1723
  }
2021
- .scrub-thumbnails .spotlight {
2022
- background-color: #4a4a4a;
2023
- overflow: hidden;
2024
- position: absolute;
1724
+ .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-summary-header {
1725
+ padding-top: 12px;
1726
+ height: 38px;
1727
+ text-align: center;
1728
+ }
1729
+ .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-quality-header {
1730
+ text-align: center;
1731
+ }
1732
+ .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-footer {
1733
+ height: 80px;
1734
+ }
1735
+ .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-footer-about-link {
2025
1736
  bottom: 0;
2026
1737
  left: 0;
2027
- border-color: #4a4a4a;
2028
- border-style: solid;
2029
- border-width: 3px;
2030
- border-radius: 3px;
2031
1738
  }
2032
- .scrub-thumbnails .spotlight img {
2033
- width: auto;
1739
+ .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-footer .speedtest-footer-refresh {
1740
+ inset: 50% auto auto 50%;
1741
+ transform: translate(-50%, -50%);
2034
1742
  }
2035
- .scrub-thumbnails .backdrop {
2036
- position: absolute;
2037
- left: 0;
2038
- bottom: 0;
2039
- right: 0;
2040
- background-color: #000;
2041
- overflow: hidden;
1743
+
1744
+ .speed-test-button {
1745
+ margin: 10px 0 0;
1746
+ color: #000;
2042
1747
  }
2043
- .scrub-thumbnails .backdrop .carousel {
1748
+
1749
+ .speed-test {
2044
1750
  position: absolute;
2045
1751
  top: 0;
2046
1752
  left: 0;
1753
+ width: 100%;
2047
1754
  height: 100%;
2048
- white-space: nowrap;
1755
+ z-index: 9999;
2049
1756
  }
2050
- .scrub-thumbnails .backdrop .carousel img {
2051
- width: auto;
1757
+ .speed-test .speed-test-header {
1758
+ width: 100%;
1759
+ height: 32px;
1760
+ }
1761
+ .speed-test .speed-test-header .close-speed-test {
1762
+ float: right;
1763
+ margin-right: 5px;
1764
+ line-height: 32px;
1765
+ cursor: pointer;
1766
+ color: var(--primary-text-color);
1767
+ }
1768
+ .speed-test .speed-test-header .close-speed-test:hover {
1769
+ color: var(--hover-text-color);
1770
+ }
1771
+
1772
+ .settings-button {
1773
+ float: right;
1774
+ margin: 0 12px 0 0;
1775
+ height: 40px;
1776
+ width: 24px;
1777
+ border: none;
1778
+ padding: 0;
1779
+ }
1780
+
1781
+ .settings-options-list {
1782
+ position: absolute;
1783
+ right: 16px;
1784
+ bottom: 52px;
1785
+ background: var(--primary-background-color);
1786
+ width: 250px;
1787
+ height: 48px;
1788
+ z-index: 9999;
1789
+ border-radius: 4px;
1790
+ }
1791
+ .settings-options-list svg {
1792
+ float: left;
1793
+ margin-right: 10px;
1794
+ }
1795
+ .settings-options-list .settings-speedtest-option {
1796
+ color: var(--primary-text-color);
1797
+ margin: 0;
1798
+ text-align: left;
1799
+ height: 24px;
1800
+ line-height: 22px;
1801
+ padding: 14px;
1802
+ width: 250px;
1803
+ font-size: 12px;
1804
+ }
1805
+ .settings-options-list .settings-speedtest-option:hover {
1806
+ color: var(--hover-text-color);
1807
+ }
1808
+ .settings-options-list .settings-speedtest-option:hover svg path {
1809
+ fill: var(--hover-text-color);
1810
+ }
1811
+ .settings-options-list .settings-speedtest-option svg path {
1812
+ fill: var(--primary-text-color);
1813
+ }
1814
+
1815
+ .speedtest-summary {
1816
+ width: 100%;
1817
+ border-top: 1px solid var(--secondary-background-color) !important;
1818
+ border-bottom: 1px solid var(--secondary-background-color) !important;
1819
+ display: flex !important;
1820
+ flex-direction: column;
1821
+ align-items: stretch;
1822
+ justify-content: space-between;
1823
+ }
1824
+ .speedtest-summary .speedtest-summary-header {
1825
+ width: 100%;
1826
+ padding-top: 4px;
1827
+ text-align: left;
1828
+ height: 32px;
1829
+ font-size: 14px;
1830
+ font-weight: 500;
1831
+ line-height: 20px;
1832
+ }
1833
+ .speedtest-summary .speedtest-summary-block {
1834
+ position: relative;
1835
+ display: flex;
1836
+ flex-direction: row;
1837
+ width: 100%;
1838
+ }
1839
+ .speedtest-summary .speedtest-summary-block .speedtest-summary-subblock {
1840
+ width: 50%;
1841
+ margin-top: 4px;
1842
+ margin-bottom: 12px;
1843
+ }
1844
+ .speedtest-summary .speedtest-summary-block .speedtest-summary-subblock-content {
1845
+ padding: 2px;
1846
+ width: 248px;
1847
+ max-width: 100%;
1848
+ }
1849
+
1850
+ .speedtest-quality {
1851
+ width: 100%;
1852
+ height: 36px;
1853
+ display: flex !important;
1854
+ flex-direction: column !important;
1855
+ justify-content: space-between !important;
1856
+ }
1857
+ .speedtest-quality .speedtest-quality-header {
1858
+ font-size: 12px;
1859
+ height: 20px;
1860
+ border-left: 2px solid var(--secondary-background-color) !important;
1861
+ background-color: var(--secondary-background-color);
1862
+ text-align: left;
1863
+ }
1864
+ .speedtest-quality-content {
1865
+ width: 100%;
1866
+ margin-top: 8px;
1867
+ height: 8px;
1868
+ display: flex !important;
1869
+ flex-direction: row !important;
1870
+ align-items: stretch !important;
1871
+ justify-content: space-between;
1872
+ }
1873
+ .speedtest-quality-content-item {
1874
+ width: 18.8%;
1875
+ background-color: #fff;
1876
+ }
1877
+ .speedtest-quality-content-item.speedtest-quality-value-1 {
1878
+ background-color: var(--speedtest-red);
1879
+ }
1880
+ .speedtest-quality-content-item.speedtest-quality-value-2 {
1881
+ background-color: var(--speedtest-orange);
1882
+ }
1883
+ .speedtest-quality-content-item.speedtest-quality-value-3 {
1884
+ background-color: var(--speedtest-yellow);
1885
+ }
1886
+ .speedtest-quality-content-item.speedtest-quality-value-4 {
1887
+ background-color: var(--speedtest-light-green);
1888
+ }
1889
+ .speedtest-quality-content-item.speedtest-quality-value-5 {
1890
+ background-color: var(--speedtest-green);
1891
+ }
1892
+
1893
+ .speedtest-footer {
1894
+ position: relative;
1895
+ float: left;
1896
+ width: 100%;
1897
+ height: 30px;
1898
+ line-height: 16px;
1899
+ }
1900
+ .speedtest-footer-about-link {
1901
+ position: absolute;
1902
+ bottom: 0;
1903
+ left: 0;
1904
+ color: var(--secondary-text-color);
1905
+ text-decoration: underline !important;
1906
+ }
1907
+ .speedtest-footer-about-link:hover {
1908
+ color: var(--hover-text-color);
1909
+ }
1910
+ .speedtest-footer .speedtest-footer-refresh {
1911
+ position: absolute;
1912
+ bottom: 0;
1913
+ right: 0;
1914
+ color: var(--secondary-text-color);
1915
+ font-size: 14px;
1916
+ font-weight: 400;
1917
+ line-height: 16px;
1918
+ height: 16px;
1919
+ display: flex;
1920
+ align-items: center;
1921
+ gap: 4px;
1922
+ }
1923
+ .speedtest-footer .speedtest-footer-refresh svg path {
1924
+ fill: var(--secondary-text-color);
1925
+ }
1926
+ .speedtest-footer .speedtest-footer-refresh:hover {
1927
+ color: var(--hover-text-color);
1928
+ }
1929
+ .speedtest-footer .speedtest-footer-refresh:hover svg path {
1930
+ fill: var(--hover-text-color);
1931
+ }
1932
+
1933
+ .mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box {
1934
+ position: fixed;
1935
+ height: auto;
1936
+ width: auto;
1937
+ inset: 0;
1938
+ min-width: 100vw;
1939
+ padding-bottom: 4px;
1940
+ padding-left: 4px;
1941
+ padding-right: 4px;
1942
+ }
1943
+ .mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-top {
1944
+ position: fixed;
1945
+ }
1946
+ .mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul {
1947
+ width: 50%;
1948
+ }
1949
+
1950
+ @media only screen and (orientation: portrait) {
1951
+ .mobile .speedtest-summary {
1952
+ padding: 0 5px;
1953
+ height: auto;
1954
+ }
1955
+ .mobile .speedtest-summary-block {
1956
+ width: 100%;
1957
+ flex-direction: column;
1958
+ }
1959
+ .mobile .speedtest-summary-block .speedtest-summary-subblock {
1960
+ width: 100%;
1961
+ }
1962
+ .mobile .speedtest-summary-block .speedtest-summary-subblock-content {
1963
+ width: 100%;
1964
+ }
1965
+ .mobile .speedtest-summary-header {
1966
+ padding-top: 12px;
1967
+ height: 38px;
1968
+ text-align: center;
1969
+ }
1970
+ .mobile .speedtest-quality-header {
1971
+ text-align: center;
1972
+ }
1973
+ .mobile .speedtest-footer .speedtest-footer-refresh {
1974
+ inset: 50% auto auto 50%;
1975
+ transform: translate(-50%, -50%);
1976
+ }
1977
+ }
1978
+ @media only screen and (orientation: landscape) {
1979
+ .mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul {
1980
+ width: 25%;
1981
+ }
1982
+ }*,
1983
+ :focus,
1984
+ :visited {
1985
+ outline: none !important;
1986
+ }
1987
+
1988
+ .media-control-cc[data-cc] {
1989
+ position: relative;
1990
+ order: 85;
1991
+ }
1992
+ .media-control-cc[data-cc] button {
1993
+ background-color: transparent;
1994
+ color: #fff;
1995
+ -webkit-font-smoothing: antialiased;
1996
+ border: none;
1997
+ cursor: pointer;
1998
+ }
1999
+ .media-control-cc[data-cc] button .cc-text svg {
2000
+ fill: white;
2001
+ }
2002
+ .media-control-cc[data-cc] button:hover {
2003
+ color: #c9c9c9;
2004
+ }
2005
+ .media-control-cc[data-cc] button.changing {
2006
+ animation: pulse 0.5s infinite alternate;
2007
+ }
2008
+ .media-control-cc[data-cc] ul {
2009
+ width: 80px;
2010
+ list-style-type: none;
2011
+ position: absolute;
2012
+ bottom: 25px;
2013
+ border: 1px solid black;
2014
+ display: none;
2015
+ background-color: #e6e6e6;
2016
+ padding: 8px 0;
2017
+ }
2018
+ .media-control-cc[data-cc] li a {
2019
+ color: #444;
2020
+ padding: 2px 10px;
2021
+ display: block;
2022
+ text-decoration: none;
2023
+ }
2024
+ .media-control-cc[data-cc] li a:hover {
2025
+ background-color: #555;
2026
+ color: white;
2027
+ }
2028
+ .media-control-cc[data-cc] li a:hover a {
2029
+ color: white;
2030
+ text-decoration: none;
2031
+ }
2032
+ .media-control-cc[data-cc] li.current a {
2033
+ color: #f00;
2034
+ background-color: #555;
2035
+ }
2036
+
2037
+ @keyframes pulse {
2038
+ 0% {
2039
+ color: #fff;
2040
+ }
2041
+ 50% {
2042
+ color: #ff0101;
2043
+ }
2044
+ 100% {
2045
+ color: #B80000;
2046
+ }
2047
+ }
2048
+ ::cue {
2049
+ visibility: hidden !important;
2050
+ font-size: 0 !important;
2051
+ }
2052
+
2053
+ .ios-fullscreen::cue {
2054
+ visibility: visible !important;
2055
+ font-size: 1em !important;
2052
2056
  }.player-logo[data-logo] {
2053
2057
  position: absolute;
2054
2058
  z-index: 2;