@clickview/library-editor 1.1.3-dev.0 → 1.1.3

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 (58) hide show
  1. package/dist/bundle.js +2 -100023
  2. package/dist/bundle.js.map +1 -1
  3. package/dist/cv-app-dev.js +104026 -0
  4. package/dist/cv-app-dev.js.map +1 -0
  5. package/dist/cv-svg-dev.js +1449 -0
  6. package/dist/cv-svg-dev.js.map +1 -0
  7. package/dist/en.json +1 -1419
  8. package/dist/library-editor-app.css +316 -2599
  9. package/dist/library-editor-app.css.map +1 -1
  10. package/dist/src/apps/dashboard/components/dashboard-notifications/DashboardNotificationsComponents.d.ts +1 -1
  11. package/dist/src/apps/index.d.ts +1 -1
  12. package/dist/src/apps/library-editor/components/sort-select/SortSelectComponent.d.ts +1 -1
  13. package/dist/src/apps/library-editor/services/ExportDataService.d.ts +1 -1
  14. package/dist/src/apps/notifications/utils/Constants.d.ts +52 -0
  15. package/dist/src/apps/notifications/utils/NotificationsHelper.d.ts +13 -4
  16. package/dist/src/apps/notifications/utils/index.d.ts +1 -0
  17. package/dist/src/apps/search/components/index.d.ts +2 -0
  18. package/dist/src/apps/search/components/instant-search/index.d.ts +4 -0
  19. package/dist/src/apps/search/components/instant-search/recent-search/RecentSearchResultComponent.d.ts +15 -0
  20. package/dist/src/apps/search/components/instant-search/series/SeriesSearchResultComponent.d.ts +9 -0
  21. package/dist/src/apps/search/components/instant-search/tag/TagSearchResultComponent.d.ts +9 -0
  22. package/dist/src/apps/search/components/instant-search/video-result/VideoSearchResultComponent.d.ts +15 -0
  23. package/dist/src/apps/search/components/search-context/SearchContextComponent.d.ts +18 -0
  24. package/dist/src/apps/search/components/search-tips/SearchTipsComponent.d.ts +11 -0
  25. package/dist/src/apps/search/services/ContextualSearchService.d.ts +37 -0
  26. package/dist/src/apps/search/services/SearchDataService.d.ts +1 -1
  27. package/dist/src/apps/search/views/search-bar/SearchBarView.d.ts +102 -0
  28. package/dist/src/apps/search/views/search-bar/templates/index.d.ts +9 -0
  29. package/dist/src/apps/staff-requests/views/staff-requests/StaffRequestsView.d.ts +1 -1
  30. package/dist/src/index.d.ts +6 -0
  31. package/dist/src/shared/behaviors/index.d.ts +1 -0
  32. package/dist/src/shared/behaviors/popover/PopoverBehavior.d.ts +40 -0
  33. package/dist/src/shared/behaviors/tooltip/TooltipBehavior.d.ts +12 -0
  34. package/dist/src/shared/components/index.d.ts +2 -0
  35. package/dist/src/shared/components/thumbnail/ThumbnailComponent.d.ts +32 -0
  36. package/dist/src/shared/constants/ImageUrls.d.ts +1 -0
  37. package/dist/src/shared/constants/Services.d.ts +1 -0
  38. package/dist/src/shared/constants/empty-state-components/EmptyStateComponents.d.ts +1 -1
  39. package/dist/src/shared/enums/SortTypes.d.ts +7 -0
  40. package/dist/src/shared/enums/index.d.ts +1 -0
  41. package/dist/src/shared/interfaces/LibraryFoldersIdentifier.d.ts +2 -1
  42. package/dist/src/shared/interfaces/RecentVideoCollectionIdentifier.d.ts +1 -1
  43. package/dist/src/shared/interfaces/RecentVideoSubjectCollectionIdentifier.d.ts +1 -1
  44. package/dist/src/shared/interfaces/Tooltip.d.ts +6 -0
  45. package/dist/src/shared/interfaces/VideoCollectionIdentifier.d.ts +2 -1
  46. package/dist/src/shared/interfaces/index.d.ts +1 -0
  47. package/dist/src/shared/services/ContextService.d.ts +38 -0
  48. package/dist/src/shared/services/LanguageService.d.ts +16 -0
  49. package/dist/src/shared/services/UserDataService.d.ts +1 -1
  50. package/dist/src/shared/utils/MaskHelper.d.ts +15 -0
  51. package/dist/src/shared/utils/SortHelper.d.ts +1 -2
  52. package/dist/src/shared/utils/index.d.ts +2 -0
  53. package/dist/src/shared/utils/search/InstantSearchHelper.d.ts +21 -0
  54. package/dist/src/shared/utils/search/RecentSearchHelper.d.ts +12 -0
  55. package/dist/src/shared/utils/search/SearchTypes.d.ts +28 -0
  56. package/dist/src/shared/utils/search/TypeaheadHelper.d.ts +76 -0
  57. package/dist/src/shared/utils/search/raw-search-components/confirm-selection/ConfirmSelectionComponent.d.ts +12 -0
  58. package/package.json +103 -103
@@ -1,2599 +1,316 @@
1
- .cv--contentContainerWithBulkActions--1OZCN {
2
- padding-left: -webkit-calc(3.75rem) !important;
3
- padding-left: calc(3.75rem) !important; }
4
-
5
- .cv--thumbnailContainer--35XrM {
6
- width: 8rem;
7
- height: 4.5rem; }
8
-
9
- .cv--metaContainer--1-L5x {
10
- width: -webkit-calc(100% - 8rem);
11
- width: calc(100% - 8rem);
12
- height: 4.5rem; }
13
-
14
- .cv--titleContainer--3nfiJ {
15
- width: 25%;
16
- height: 1.4rem; }
17
-
18
- .cv--videoGroupList--38Usa {
19
- padding-top: -webkit-calc(1.25rem + 1.5rem + 0.625rem) !important;
20
- padding-top: calc(1.25rem + 1.5rem + 0.625rem) !important; }
21
-
22
- .cv--partialSubFolder--1ltue {
23
- width: 20%;
24
- height: 2.5rem; }
25
-
26
- .cv--content--3KP84, .cv--notificationTime--1MR01 {
27
- height: -webkit-calc(1.3125rem - 0.3125rem);
28
- height: calc(1.3125rem - 0.3125rem); }
29
-
30
- .cv--icon--1GUmS {
31
- width: 1.5rem;
32
- height: 1.5rem;
33
- display: inline-block;
34
- vertical-align: top;
35
- margin-right: 0.3125rem;
36
- border-radius: 100%; }
37
-
38
- .cv--contentContainer--34ETn {
39
- width: -webkit-calc(100% - 1.5rem - 0.625rem);
40
- width: calc(100% - 1.5rem - 0.625rem);
41
- display: inline-block;
42
- vertical-align: top; }
43
-
44
- .cv--content--3KP84 {
45
- max-height: 3rem;
46
- overflow: hidden; }
47
-
48
- .cv--notificationTime--1MR01 {
49
- width: 15%; }
50
-
51
- .cv--list--35CAt .cv--item--1r5u9:last-child {
52
- border-bottom: none !important; }
53
-
54
- .cv--title--1ttnP {
55
- width: 40%; }
56
-
57
- .cv--requestedBy--3Tq3M {
58
- width: 75%; }
59
-
60
- .cv--date--33-LZ {
61
- width: 25%; }
62
-
63
- .cv--title--1ttnP, .cv--requestedBy--3Tq3M, .cv--date--33-LZ {
64
- height: 1rem; }
65
-
66
- .cv--actions--1cCHt {
67
- background-color: #f8f8f8; }
68
-
69
- .cv--badge--2x-so {
70
- width: 3.5rem;
71
- height: 1.25rem;
72
- border-radius: 1rem; }
73
-
74
- .cv--button--2y4ng {
75
- width: 6rem; }
76
-
77
- .cv--selectButton--1uCMl {
78
- width: 20rem;
79
- height: 2.1875rem; }
80
- .cv--selectButton--1uCMl:after {
81
- position: absolute;
82
- right: 0.75rem;
83
- top: 50%;
84
- margin-top: -0.15em; }
85
-
86
- .cv--content--3_8yg {
87
- height: -webkit-calc(2 * 2rem + 1.875rem + 1.3125rem);
88
- height: calc(2 * 2rem + 1.875rem + 1.3125rem); }
89
-
90
- .cv--banner--16p9Y {
91
- background-color: #f1f1f1;
92
- background-size: cover;
93
- background-position: center;
94
- height: 0;
95
- padding-bottom: -webkit-calc(185 / 1000 * 100%);
96
- padding-bottom: calc(185 / 1000 * 100%); }
97
- .cv--banner--16p9Y .cv--actions--KoZV- {
98
- background-color: rgba(0, 0, 0, 0.5);
99
- top: 0;
100
- width: 2rem;
101
- height: 2rem; }
102
- .cv--banner--16p9Y .cv--actions--KoZV- svg {
103
- opacity: 1;
104
- text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5); }
105
- .cv--banner--16p9Y h1 {
106
- bottom: 1.25rem;
107
- left: 1.25rem;
108
- max-width: 100%;
109
- text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
110
- overflow-wrap: break-word;
111
- max-height: 5.2rem;
112
- overflow: hidden;
113
- padding: 0.1rem 1.25rem 0.1rem 0; }
114
-
115
- .cv--button--3owCz {
116
- width: 8.8rem; }
117
-
118
- .cv--filterButton--10tNq:after {
119
- display: inline-block;
120
- vertical-align: middle;
121
- width: 5.125rem;
122
- height: 2.0625rem;
123
- content: ""; }
124
-
125
- .cv--video--oGPHd {
126
- width: 100%;
127
- height: 155px; }
128
-
129
- .cv--text--1tn1v, .cv--subText--1OlIS, .cv--subSubText--3xERx {
130
- width: 100%;
131
- height: 1.85rem; }
132
-
133
- .cv--subText--1OlIS, .cv--subSubText--3xERx {
134
- width: 75%;
135
- height: 1.35rem; }
136
-
137
- .cv--subSubText--3xERx {
138
- width: 50%; }
139
-
140
- .cv--videoTitle--rJRCI, .cv--videoAction--3O5I3 {
141
- width: 200px;
142
- height: 1.55rem;
143
- margin-top: 0.7rem; }
144
-
145
- .cv--videoAction--3O5I3 {
146
- width: 70px; }
147
-
148
- .cv--text--z4_PP, .cv--subText--1CvDv {
149
- width: 10rem;
150
- height: 1.85rem; }
151
-
152
- .cv--subText--1CvDv {
153
- width: 50%;
154
- height: 1.35rem; }
155
-
156
- .cv--tab--1K9wl, .cv--detailsTab--31qrm, .cv--chaptersTab--1VUMk, .cv--learningTab--35o6Z {
157
- width: 8rem;
158
- height: 1.75rem; }
159
-
160
- .cv--chaptersTab--1VUMk {
161
- width: 6rem; }
162
-
163
- .cv--learningTab--35o6Z {
164
- width: 12rem; }
165
-
166
- .cv--back--2SZ3v {
167
- width: 8rem;
168
- height: 2rem; }
169
-
170
- .cv--header--1JGs8 {
171
- width: 8rem;
172
- height: 1.3125rem; }
173
-
174
- .cv--subHeader--11o1N {
175
- width: 6rem;
176
- height: 1.3125rem; }
177
-
178
- .cv--thumbnailContainer--ebrIQ {
179
- height: 12.5rem; }
180
-
181
- .cv--input--2xpxP, .cv--textbox--3OIzb {
182
- height: 2.1875rem;
183
- width: 100%; }
184
-
185
- .cv--textbox--3OIzb {
186
- height: 4rem; }
187
-
188
- .cv--header--1Yt1j, .cv--input--tJ4KG, .cv--line--2BFZB {
189
- width: 8rem;
190
- height: 2rem; }
191
-
192
- .cv--input--tJ4KG, .cv--line--2BFZB {
193
- width: 100%; }
194
-
195
- .cv--line--2BFZB {
196
- height: 1.5rem; }
197
-
198
- .cv--header--2KAd_, .cv--input--2ai1L {
199
- width: 8rem;
200
- height: 1.25rem; }
201
-
202
- .cv--input--2ai1L {
203
- height: 2rem;
204
- width: 100%; }
205
-
206
- .cv--button--crdSU {
207
- width: 8rem;
208
- height: 2.5rem; }
209
-
210
- .cv--player--H6oUk {
211
- position: relative;
212
- width: 100%;
213
- padding: 0;
214
- overflow: hidden;
215
- padding-top: 56.25%; }
216
-
217
- .cv--header--15fBJ {
218
- width: 8rem;
219
- height: 2rem; }
220
-
221
- .cv--text--2OP4S {
222
- height: 1.5rem;
223
- width: 40%; }
224
-
225
- .cv--upload--17wos {
226
- width: 50%;
227
- height: 4rem;
228
- border-radius: 0.25rem; }
229
-
230
- .cv--container--11___ {
231
- height: 5rem; }
232
-
233
- .cv--input--3RRYx {
234
- height: 2.1875rem; }
235
-
236
- .cv--containerWithBottomBorder--3pMnf {
237
- border-bottom: 0.125rem solid #eaeaea; }
238
-
239
- .cv--tabContainer--3DDqe {
240
- background-color: #f8f8f8;
241
- border-bottom: 1px solid #eaeaea; }
242
- .cv--tabContainer--3DDqe a {
243
- text-align: center;
244
- cursor: pointer; }
245
- .cv--tabContainer--3DDqe a:hover {
246
- text-decoration: none; }
247
- .cv--tabContainer--3DDqe .cv--publisherArchiveAppLink--WtJIT {
248
- max-width: 22rem; }
249
- .cv--tabContainer--3DDqe .cv--reviewErroredAppLink--2P6wN {
250
- max-width: 17rem; }
251
-
252
- .cv--none--36_Ky .cv--tabContainer--3DDqe {
253
- background-color: #fff; }
254
- .cv--none--36_Ky .cv--tabContainer--3DDqe .cv--reviewErroredAppLink--2P6wN {
255
- display: none; }
256
-
257
- .cv--none--36_Ky .cv--publisherArchiveAppLink--WtJIT {
258
- text-align: left; }
259
-
260
- .cv--publisherArchive--oHXCU .cv--tabContainer--3DDqe .cv--publisherArchiveAppLink--WtJIT {
261
- background-color: #fff;
262
- border-bottom: 1px solid #fff;
263
- margin-bottom: -1px;
264
- border-right: 1px solid #eaeaea;
265
- font-weight: bold; }
266
-
267
- .cv--publisherArchive--oHXCU .cv--tabContainer--3DDqe .cv--reviewErroredAppLink--2P6wN {
268
- border-left: 1px solid #eaeaea;
269
- margin-left: -1px;
270
- margin-bottom: -1px; }
271
-
272
- .cv--migrationErrors--_Ztdf .cv--tabContainer--3DDqe .cv--reviewErroredAppLink--2P6wN {
273
- background-color: #fff;
274
- margin-bottom: -1px;
275
- border-left: 1px solid #eaeaea;
276
- border-right: 1px solid #eaeaea;
277
- border-bottom: 1px solid #fff; }
278
-
279
- .cv--svgContainer--edUQE {
280
- color: #FFCD52;
281
- vertical-align: middle; }
282
-
283
- .cv--videoList--2YEbA {
284
- max-height: 34.375rem;
285
- overflow: hidden; }
286
-
287
- .cv--text--1-Tvp, .cv--views--3BDvT {
288
- width: 14rem;
289
- height: 1.1rem;
290
- top: 0.2rem;
291
- position: relative; }
292
-
293
- .cv--views--3BDvT {
294
- width: 4rem; }
295
-
296
- .cv--bulkCheckbox--2ew2h {
297
- top: 0.1rem; }
298
-
299
- .cv--svgContainer--O3FnZ {
300
- display: inline-block;
301
- top: -0.2rem; }
302
- .cv--svgContainer--O3FnZ svg {
303
- width: 1.8rem;
304
- height: 1.8rem; }
305
-
306
- .cv--sortingRow--Rbj8Y {
307
- border-bottom: 1px solid #eaeaea; }
308
-
309
- .cv--bulkCheckbox--2mKzS {
310
- top: 0.1rem; }
311
-
312
- .cv--sortOption--3ajGP {
313
- font-weight: 600; }
314
-
315
- .cv--viewLink--2s0QU {
316
- display: none;
317
- color: #4E9ACE;
318
- font-weight: 500; }
319
- .cv--viewLink--2s0QU:hover {
320
- color: #4E9ACE;
321
- text-decoration: none; }
322
-
323
- .cv--viewCount--1ncwl {
324
- color: #B5B5B5; }
325
-
326
- .cv--faded--2G1C1 {
327
- opacity: 0.5; }
328
- .cv--faded--2G1C1 .custom-control-input:checked ~ .custom-control-label::before {
329
- border: none !important; }
330
-
331
- .cv--bulkCheckbox--225JZ {
332
- top: 0.1rem; }
333
-
334
- .cv--videoRow--fFRMW {
335
- border-bottom: 1px solid #eaeaea; }
336
- .cv--videoRow--fFRMW .cv--videoTitle--3YCJO {
337
- font-weight: 400;
338
- color: #313543;
339
- text-decoration: none; }
340
- .cv--videoRow--fFRMW:hover {
341
- background-color: #f8f8f8; }
342
- .cv--videoRow--fFRMW:hover .cv--viewCount--1ncwl {
343
- display: none; }
344
- .cv--videoRow--fFRMW:hover .cv--viewLink--2s0QU {
345
- display: inline-block; }
346
-
347
- .cv--errorIconContainer--37_lU {
348
- width: 2rem; }
349
-
350
- .cv--categoryName--3gjN2 {
351
- font-style: italic;
352
- color: #B5B5B5;
353
- font-size: 0.75rem;
354
- margin-top: 0.1rem; }
355
-
356
- .cv--header--1S3_p, .cv--toggle--1pAWe {
357
- width: 12rem;
358
- height: 1.75rem;
359
- opacity: 0.75; }
360
-
361
- .cv--toggle--1pAWe {
362
- height: 1.25rem;
363
- width: 10rem;
364
- margin: 0 0 0 auto; }
365
-
366
- .cv--row--rShIv {
367
- width: 80%;
368
- height: 1.25rem; }
369
-
370
- .cv--statusBar--3qlXe {
371
- border-top: 1px solid #eaeaea; }
372
-
373
- .cv--statusBarMessage--1ul9Z {
374
- font-weight: 500;
375
- color: #5B5E68; }
376
-
377
- .cv--button--3HS1V {
378
- min-width: 90px;
379
- padding: 0.25rem 1.25rem;
380
- color: white; }
381
-
382
- .cv--currentHeader--b4Mqw {
383
- height: 3.375rem; }
384
-
385
- .cv--header--2OV3l {
386
- display: inline-block;
387
- margin-top: 0.35rem; }
388
-
389
- .cv--subheader--6H8te {
390
- margin-top: 0.35rem;
391
- font-weight: 500; }
392
- .cv--subheader--6H8te svg {
393
- width: 1.5rem;
394
- margin: -0.2rem 0.2rem 0 0; }
395
-
396
- .cv--back--3RKrR {
397
- margin-left: 1rem;
398
- display: inline-block; }
399
-
400
- .cv--backSvgContainer--1T015 {
401
- width: 1.05rem;
402
- height: 1.05rem;
403
- position: relative;
404
- top: -0.15rem; }
405
-
406
- .cv--checkSvgContainer--3Q3UJ {
407
- width: 1.35rem;
408
- height: 1.35rem;
409
- position: relative;
410
- top: -0.15rem;
411
- color: #D7D7D7; }
412
-
413
- .cv--checkSvgContainerChecked--ZsxkB {
414
- color: #60B789; }
415
-
416
- .cv--svg--uKtsP {
417
- position: relative;
418
- top: 1px;
419
- left: 2px; }
420
-
421
- .cv--button--1CETN {
422
- width: 8.75rem; }
423
-
424
- .cv--logo--3QS4m {
425
- width: 8rem;
426
- height: 8rem;
427
- margin: 0 auto; }
428
-
429
- .cv--row--1odt6 {
430
- display: block;
431
- height: 2.1875rem; }
432
-
433
- .cv--text--JJCF1 {
434
- position: relative;
435
- top: 0.4375rem;
436
- display: block;
437
- height: 1.25rem;
438
- width: 6.25rem;
439
- margin-left: 1.25rem; }
440
-
441
- .cv--text--3hPOj {
442
- width: 8rem;
443
- height: 2rem; }
444
-
445
- .cv--folder--2zGvZ {
446
- display: block;
447
- height: 8.125rem; }
448
-
449
- .cv--text--3b-w5 {
450
- width: 9rem;
451
- height: 1.35rem; }
452
-
453
- .cv--subText--k49US {
454
- width: 50%;
455
- height: 1.35rem;
456
- margin-bottom: 0.8rem; }
457
-
458
- .cv--multilineSubText--1QGdP {
459
- width: 90%;
460
- height: 2.7rem; }
461
-
462
- .cv--thumbnail--2V8gJ {
463
- width: 25rem;
464
- height: 15rem; }
465
-
466
- .cv--header--2x-al {
467
- width: 8rem;
468
- height: 2rem; }
469
-
470
- .cv--item--hFvEo {
471
- height: 1.5rem;
472
- width: 40%; }
473
-
474
- .cv--tagWidth1--cy-sv {
475
- width: 3rem; }
476
-
477
- .cv--tagWidth2--35_iB {
478
- width: 4rem; }
479
-
480
- .cv--tagWidth3--2sYuD {
481
- width: 5rem; }
482
-
483
- .cv--addLibraryButton--fXaTF {
484
- padding-left: -webkit-calc(1.875rem);
485
- padding-left: calc(1.875rem); }
486
-
487
- .cv--addLibraryPlus--3Ygal {
488
- width: 1.5rem;
489
- height: 1.5rem;
490
- left: 0.375rem;
491
- top: 50%;
492
- margin-top: -0.75rem; }
493
-
494
- .cv--paddedContainer--1uVUJ {
495
- padding: 7.5rem; }
496
-
497
- .cv--imageLarge--2-GAI {
498
- height: 7.5rem; }
499
-
500
- .cv--imageSmall--36Ljd {
501
- height: 5rem; }
502
-
503
- .cv--alertItem--6L-Rn {
504
- border-radius: 0.25rem;
505
- border: 1px solid #D7D7D7;
506
- box-shadow: 2px 3px 6px 1px rgba(0, 0, 0, 0.1);
507
- -webkit-animation: cv--fadeIn--2ISjU 500ms;
508
- animation: cv--fadeIn--2ISjU 500ms; }
509
- .cv--alertItem--6L-Rn .close {
510
- float: none;
511
- line-height: 0.8;
512
- vertical-align: top; }
513
-
514
- .cv--icon--3X3sP {
515
- vertical-align: top;
516
- text-align: center; }
517
-
518
- .cv--alertContent--2_sUY {
519
- width: 15.625rem; }
520
- .cv--alertContent--2_sUY .cv--heading--2nrzl {
521
- line-height: 1.5;
522
- font-weight: 500; }
523
- .cv--alertContent--2_sUY .cv--heading--2nrzl, .cv--alertContent--2_sUY .cv--message--1UIK0, .cv--alertContent--2_sUY .cv--link--2xwcl {
524
- font-size: 0.875rem; }
525
-
526
- .cv--svgContainer--2yj4z {
527
- vertical-align: middle;
528
- width: 1.5rem;
529
- height: 1.5rem; }
530
-
531
- .cv--alertList--1O_xv {
532
- z-index: 1071; }
533
-
534
- .cv--removing--3pw7F {
535
- -webkit-animation: cv--fadeOut--eLPSS 500ms !important;
536
- animation: cv--fadeOut--eLPSS 500ms !important; }
537
-
538
- .cv--removed--OqzPi {
539
- opacity: 0; }
540
-
541
- @-webkit-keyframes cv--fadeIn--2ISjU {
542
- from {
543
- opacity: 0; }
544
- to {
545
- opacity: 1; } }
546
-
547
- @keyframes cv--fadeIn--2ISjU {
548
- from {
549
- opacity: 0; }
550
- to {
551
- opacity: 1; } }
552
-
553
- @-webkit-keyframes cv--fadeOut--eLPSS {
554
- from {
555
- opacity: 1; }
556
- to {
557
- opacity: 0; } }
558
-
559
- @keyframes cv--fadeOut--eLPSS {
560
- from {
561
- opacity: 1; }
562
- to {
563
- opacity: 0; } }
564
-
565
- .cv--active--3fIrz {
566
- text-shadow: 0.05rem 0 0 currentColor; }
567
- .cv--active--3fIrz .badge {
568
- text-shadow: none; }
569
-
570
- .cv--icon--1RDxv {
571
- height: 1.5rem;
572
- position: relative;
573
- margin-top: -0.25rem; }
574
- .cv--icon--1RDxv svg {
575
- width: 1.5rem;
576
- height: 1.5rem; }
577
-
578
- .cv--requiredStar--3S5iJ {
579
- color: red; }
580
-
581
- .cv--disabled--3iZQ5 {
582
- color: #B5B5B5; }
583
-
584
- .cv--formGroup--B4xS9 .cv--suggestEdit--3n3sM, .cv--programTitle--3bWJB .cv--suggestEdit--3n3sM, .cv--description--3qayV .cv--suggestEdit--3n3sM, .cv--seriesTitle--3ojjo .cv--suggestEdit--3n3sM, .cv--broadcastDate--2hA-0 .cv--suggestEdit--3n3sM, .cv--channel--1SMGG .cv--suggestEdit--3n3sM, .cv--rating--3AkUv .cv--suggestEdit--3n3sM, .cv--productionYear--1DYCl .cv--suggestEdit--3n3sM, .cv--distributors--2CbiR .cv--suggestEdit--3n3sM, .cv--productionCompanies--3hB5o .cv--suggestEdit--3n3sM, .cv--directors--ksEaA .cv--suggestEdit--3n3sM, .cv--producers--h7P2B .cv--suggestEdit--3n3sM, .cv--episodeNumber--3fMUg .cv--suggestEdit--3n3sM, .cv--seasonNumber--GwqaB .cv--suggestEdit--3n3sM {
585
- display: none; }
586
- .cv--formGroup--B4xS9 .cv--suggestEdit--3n3sM a, .cv--programTitle--3bWJB .cv--suggestEdit--3n3sM a, .cv--description--3qayV .cv--suggestEdit--3n3sM a, .cv--seriesTitle--3ojjo .cv--suggestEdit--3n3sM a, .cv--broadcastDate--2hA-0 .cv--suggestEdit--3n3sM a, .cv--channel--1SMGG .cv--suggestEdit--3n3sM a, .cv--rating--3AkUv .cv--suggestEdit--3n3sM a, .cv--productionYear--1DYCl .cv--suggestEdit--3n3sM a, .cv--distributors--2CbiR .cv--suggestEdit--3n3sM a, .cv--productionCompanies--3hB5o .cv--suggestEdit--3n3sM a, .cv--directors--ksEaA .cv--suggestEdit--3n3sM a, .cv--producers--h7P2B .cv--suggestEdit--3n3sM a, .cv--episodeNumber--3fMUg .cv--suggestEdit--3n3sM a, .cv--seasonNumber--GwqaB .cv--suggestEdit--3n3sM a {
587
- cursor: pointer; }
588
- .cv--formGroup--B4xS9 .cv--suggestEdit--3n3sM a:hover, .cv--programTitle--3bWJB .cv--suggestEdit--3n3sM a:hover, .cv--description--3qayV .cv--suggestEdit--3n3sM a:hover, .cv--seriesTitle--3ojjo .cv--suggestEdit--3n3sM a:hover, .cv--broadcastDate--2hA-0 .cv--suggestEdit--3n3sM a:hover, .cv--channel--1SMGG .cv--suggestEdit--3n3sM a:hover, .cv--rating--3AkUv .cv--suggestEdit--3n3sM a:hover, .cv--productionYear--1DYCl .cv--suggestEdit--3n3sM a:hover, .cv--distributors--2CbiR .cv--suggestEdit--3n3sM a:hover, .cv--productionCompanies--3hB5o .cv--suggestEdit--3n3sM a:hover, .cv--directors--ksEaA .cv--suggestEdit--3n3sM a:hover, .cv--producers--h7P2B .cv--suggestEdit--3n3sM a:hover, .cv--episodeNumber--3fMUg .cv--suggestEdit--3n3sM a:hover, .cv--seasonNumber--GwqaB .cv--suggestEdit--3n3sM a:hover {
589
- text-decoration: underline !important; }
590
-
591
- .cv--formGroup--B4xS9:hover > .cv--suggestEdit--3n3sM, .cv--programTitle--3bWJB:hover > .cv--suggestEdit--3n3sM, .cv--description--3qayV:hover > .cv--suggestEdit--3n3sM, .cv--seriesTitle--3ojjo:hover > .cv--suggestEdit--3n3sM, .cv--broadcastDate--2hA-0:hover > .cv--suggestEdit--3n3sM, .cv--channel--1SMGG:hover > .cv--suggestEdit--3n3sM, .cv--rating--3AkUv:hover > .cv--suggestEdit--3n3sM, .cv--productionYear--1DYCl:hover > .cv--suggestEdit--3n3sM, .cv--distributors--2CbiR:hover > .cv--suggestEdit--3n3sM, .cv--productionCompanies--3hB5o:hover > .cv--suggestEdit--3n3sM, .cv--directors--ksEaA:hover > .cv--suggestEdit--3n3sM, .cv--producers--h7P2B:hover > .cv--suggestEdit--3n3sM, .cv--episodeNumber--3fMUg:hover > .cv--suggestEdit--3n3sM, .cv--seasonNumber--GwqaB:hover > .cv--suggestEdit--3n3sM {
592
- display: inline-block; }
593
-
594
- .cv--icon--quxL2 {
595
- height: 1.5rem;
596
- position: relative;
597
- margin-top: -0.25rem; }
598
- .cv--icon--quxL2 svg {
599
- width: 1.5rem;
600
- height: 1.5rem; }
601
-
602
- .cv--infoSvgContainer--18UDY {
603
- width: 1.25rem;
604
- height: 1.25rem;
605
- display: inline-block;
606
- color: #B5B5B5; }
607
-
608
- .cv--dropMask--ZO89K, .cv--dropContent--1EbzE, .cv--dropArea--3ucfy {
609
- display: none; }
610
-
611
- .cv--dragOver--2D_ox {
612
- position: relative; }
613
- .cv--dragOver--2D_ox .cv--dropMask--ZO89K, .cv--dragOver--2D_ox .cv--dropContent--1EbzE, .cv--dragOver--2D_ox .cv--dropArea--3ucfy {
614
- display: block;
615
- position: fixed;
616
- top: 0;
617
- left: 0;
618
- right: 0;
619
- bottom: 0; }
620
- .cv--dragOver--2D_ox .cv--dropMask--ZO89K {
621
- z-index: 1040;
622
- background-color: #313543;
623
- opacity: 0.5; }
624
- .cv--dragOver--2D_ox .cv--dropContent--1EbzE {
625
- z-index: 1041; }
626
- .cv--dragOver--2D_ox .cv--dropContent--1EbzE h1 {
627
- position: absolute;
628
- top: 50%;
629
- width: 100%;
630
- text-align: center;
631
- color: #fff;
632
- margin-top: -1rem; }
633
- .cv--dragOver--2D_ox .cv--dropArea--3ucfy {
634
- z-index: 1042; }
635
- .cv--dragOver--2D_ox .cv--border--3sQtM {
636
- display: block;
637
- position: fixed;
638
- top: 6rem;
639
- left: 6rem;
640
- right: 6rem;
641
- bottom: 6rem;
642
- border: 3px dashed #fff;
643
- border-radius: 0.25rem; }
644
-
645
- .cv--svgContainer--1nWzn {
646
- width: 1.3rem;
647
- height: 1.3rem;
648
- display: inline-block;
649
- position: relative;
650
- top: -2px; }
651
-
652
- .cv--selectRating--1I6jj .cv--removeRating--1ze5G {
653
- cursor: pointer; }
654
- .cv--selectRating--1I6jj .cv--removeRating--1ze5G:hover {
655
- text-decoration: underline; }
656
-
657
- .cv--selectRating--1I6jj .invalid-feedback {
658
- display: block; }
659
-
660
- .cv--selectRating--1I6jj .is-invalid .btn-group {
661
- border: 0.0625rem solid #D9584F;
662
- border-radius: 0.25rem; }
663
-
664
- .cv--selectRating--1I6jj .cv--disabled--2hO8J {
665
- background-color: #f1f1f1;
666
- opacity: 1;
667
- border: 0.0625rem solid #D7D7D7;
668
- cursor: default !important;
669
- color: #B5B5B5; }
670
-
671
- .cv--selectRating--1I6jj .cv--disabledSelected--mnQ5O {
672
- background-color: #D7D7D7; }
673
-
674
- .cv--disabled--tOHRz {
675
- color: #B5B5B5; }
676
-
677
- .cv--clearSvg--2-D4Z {
678
- position: absolute;
679
- bottom: 0.375rem;
680
- right: 1.875rem; }
681
- .cv--clearSvg--2-D4Z:hover {
682
- cursor: pointer; }
683
-
684
- .cv--next--1sAku::before, .cv--previous--3zc5V::before {
685
- content: '';
686
- display: inline-block;
687
- border-style: solid;
688
- border-width: 0.2rem 0.2rem 0 0;
689
- height: 0.625rem;
690
- width: 0.625rem; }
691
-
692
- .cv--next--1sAku::before {
693
- -webkit-transform: rotate(45deg);
694
- transform: rotate(45deg); }
695
-
696
- .cv--previous--3zc5V::before {
697
- -webkit-transform: rotate(-135deg);
698
- transform: rotate(-135deg); }
699
-
700
- .cv--datePicker--1j_H7 {
701
- position: relative; }
702
- .cv--datePicker--1j_H7 .clear-button {
703
- color: #D7D7D7; }
704
- .cv--datePicker--1j_H7:hover .clear-button {
705
- color: #313543; }
706
-
707
- .cv--calendarSvg--3ViTN {
708
- position: absolute;
709
- bottom: 0.375rem;
710
- right: 0.375rem; }
711
-
712
- .cv--disabled--DzdxT {
713
- color: #B5B5B5; }
714
-
715
- .cv--disabled--3TIct {
716
- color: #B5B5B5; }
717
-
718
- .cv--svg--1iL3O {
719
- position: absolute;
720
- right: 0.3125rem;
721
- top: 50%;
722
- margin-top: -0.75rem;
723
- color: #D7D7D7; }
724
- .cv--svg--1iL3O:hover {
725
- cursor: pointer; }
726
-
727
- .cv--typeaheadContainer--1SWXc {
728
- position: relative; }
729
- .cv--typeaheadContainer--1SWXc .twitter-typeahead {
730
- width: 100%; }
731
- .cv--typeaheadContainer--1SWXc .form-control[readonly] {
732
- background-color: transparent; }
733
- .cv--typeaheadContainer--1SWXc .tt-hint, .cv--typeaheadContainer--1SWXc .tt-menu {
734
- width: 100%; }
735
- .cv--typeaheadContainer--1SWXc .tt-cursor {
736
- background-color: #4E9ACE;
737
- color: #fff;
738
- cursor: pointer; }
739
- .cv--typeaheadContainer--1SWXc .tt-menu {
740
- background-color: #fff;
741
- border: 1px #D7D7D7 solid;
742
- border-radius: 0.25rem;
743
- margin-top: 0.125rem; }
744
- .cv--typeaheadContainer--1SWXc .ignore-highlighting strong {
745
- font-weight: normal; }
746
- .cv--typeaheadContainer--1SWXc:hover .cv--svg--1iL3O {
747
- color: #313543; }
748
-
749
- .cv--disabled--3C2O8 {
750
- background-color: #f1f1f1 !important;
751
- color: #B5B5B5; }
752
-
753
- .cv--droppable--1OOL3 {
754
- border: 1px solid transparent; }
755
-
756
- .cv--hover--sCq0c {
757
- background-color: #fff2d2;
758
- border-color: #fff2d2 !important; }
759
-
760
- .cv--dragItem--2TIZ7 {
761
- background-color: #fff;
762
- font-weight: bold;
763
- z-index: 60;
764
- width: 18rem;
765
- display: inline-block;
766
- border-radius: 0.25rem;
767
- line-height: 1.5rem;
768
- box-shadow: 0.1875rem 0.125rem 10px rgba(51, 51, 51, 0.3); }
769
-
770
- .cv--svgContainer--3JzEU {
771
- vertical-align: middle;
772
- display: inline-block;
773
- width: 1.5rem;
774
- height: 1.5rem; }
775
-
776
- .cv--dragText--1Kdwj {
777
- vertical-align: middle;
778
- display: inline-block; }
779
-
780
- .cv--dragging--2wBn3 {
781
- background-color: #eaeaea; }
782
-
783
- .cv--draggingFolder--1r3AS a, .cv--draggingFolder--1r3AS a:hover {
784
- color: #B5B5B5 !important; }
785
-
786
- .cv--folderTree--1inFA .cv--text--2ovSq {
787
- padding-left: 1.25rem; }
788
-
789
- .cv--folderTree--1inFA .cv--caret--2pwp9 {
790
- left: 1rem;
791
- right: auto; }
792
-
793
- .cv--folderTree--1inFA .cv--folderTree--1inFA .cv--text--2ovSq {
794
- padding-left: 2.5rem; }
795
-
796
- .cv--folderTree--1inFA .cv--folderTree--1inFA .cv--caret--2pwp9 {
797
- left: 2.25rem;
798
- right: auto; }
799
-
800
- .cv--folderTree--1inFA .cv--folderTree--1inFA .cv--folderTree--1inFA .cv--text--2ovSq {
801
- padding-left: 3.75rem; }
802
-
803
- .cv--folderTree--1inFA .cv--folderTree--1inFA .cv--folderTree--1inFA .cv--caret--2pwp9 {
804
- left: 3.5rem;
805
- right: auto; }
806
-
807
- .cv--folderTree--1inFA .cv--folderTree--1inFA .cv--folderTree--1inFA .cv--folderTree--1inFA .cv--text--2ovSq {
808
- padding-left: 5rem; }
809
-
810
- .cv--folderTree--1inFA .cv--folderTree--1inFA .cv--folderTree--1inFA .cv--folderTree--1inFA .cv--caret--2pwp9 {
811
- left: 4.75rem;
812
- right: auto; }
813
-
814
- .cv--folderTree--1inFA .cv--folderTree--1inFA .cv--folderTree--1inFA .cv--folderTree--1inFA .cv--folderTree--1inFA .cv--text--2ovSq {
815
- padding-left: 6.25rem; }
816
-
817
- .cv--folderTree--1inFA .cv--folderTree--1inFA .cv--folderTree--1inFA .cv--folderTree--1inFA .cv--folderTree--1inFA .cv--caret--2pwp9 {
818
- left: 6rem;
819
- right: auto; }
820
-
821
- .cv--folderTree--1inFA .cv--folderTree--1inFA .cv--folderTree--1inFA .cv--folderTree--1inFA .cv--folderTree--1inFA .cv--folderTree--1inFA .cv--text--2ovSq {
822
- padding-left: 7.5rem; }
823
-
824
- .cv--folderTree--1inFA .cv--folderTree--1inFA .cv--folderTree--1inFA .cv--folderTree--1inFA .cv--folderTree--1inFA .cv--folderTree--1inFA .cv--caret--2pwp9 {
825
- left: 7.25rem;
826
- right: auto; }
827
-
828
- .cv--library--2WHiz {
829
- cursor: pointer; }
830
- .cv--library--2WHiz:hover {
831
- background-color: rgba(132, 134, 141, 0.05); }
832
-
833
- .cv--caret--2pwp9 {
834
- color: black;
835
- width: 1.5rem;
836
- height: 1.5rem;
837
- top: 50%;
838
- margin-top: -0.75rem;
839
- right: 100%;
840
- -webkit-transform: rotate(270deg);
841
- transform: rotate(270deg);
842
- left: 0; }
843
-
844
- .cv--library--2WHiz .cv--caret--2pwp9 {
845
- left: 0.375rem; }
846
-
847
- .cv--selected--200l0 > .cv--caret--2pwp9, .cv--parent--205QS > .cv--caret--2pwp9, .cv--selected--200l0 > div > a > .cv--caret--2pwp9, .cv--parent--205QS > div > a > .cv--caret--2pwp9 {
848
- -webkit-transform: rotate(0deg);
849
- transform: rotate(0deg); }
850
-
851
- .cv--selected--200l0.cv--collapsed--1-_q7 > div > a > .cv--caret--2pwp9 {
852
- -webkit-transform: rotate(270deg);
853
- transform: rotate(270deg); }
854
-
855
- .cv--text--2ovSq {
856
- display: block;
857
- padding: 0.25rem 0;
858
- overflow-wrap: break-word;
859
- padding-right: 0.625rem; }
860
-
861
- .cv--library--2WHiz > a {
862
- font-weight: 500;
863
- padding: 0.125rem 0.625rem;
864
- display: block; }
865
- .cv--library--2WHiz > a .cv--text--2ovSq {
866
- padding-left: 1.25rem;
867
- position: relative; }
868
-
869
- .cv--actions--3Il7t svg {
870
- display: none; }
871
-
872
- .cv--actions--3Il7t:hover {
873
- background-color: rgba(0, 0, 0, 0.4); }
874
- .cv--actions--3Il7t:hover svg {
875
- opacity: 1;
876
- color: #fff; }
877
-
878
- .cv--library--2WHiz > .cv--actions--3Il7t svg {
879
- display: inline-block; }
880
-
881
- .cv--library--2WHiz .cv--actions--3Il7t {
882
- right: 0; }
883
-
884
- .cv--folderTree--1inFA {
885
- list-style: none; }
886
- .cv--folderTree--1inFA .cv--node--23bpP {
887
- max-width: 100%;
888
- display: block;
889
- -moz-box-sizing: border-box;
890
- box-sizing: border-box;
891
- padding: 0.125rem 1.25rem; }
892
- .cv--folderTree--1inFA .cv--node--23bpP:hover {
893
- text-decoration: none; }
894
-
895
- .cv--folderTree--1inFA div .show svg {
896
- display: block; }
897
-
898
- .cv--library--2WHiz:hover > .cv--actions--3Il7t svg {
899
- display: block; }
900
-
901
- .cv--folderTree--1inFA div:hover .cv--actions--3Il7t svg {
902
- display: block; }
903
-
904
- .cv--libraryContainer--EuNKs ul {
905
- padding-left: 0; }
906
-
907
- .cv--libraryContainer--EuNKs li {
908
- padding-left: 0; }
909
-
910
- .cv--libraryContainer--EuNKs ul, .cv--libraryContainer--EuNKs li {
911
- list-style: none;
912
- margin: 0; }
913
-
914
- .cv--item--ahYSz {
915
- background-color: rgba(132, 134, 141, 0.15); }
916
- .cv--item--ahYSz:hover {
917
- background-color: rgba(132, 134, 141, 0.25); }
918
-
919
- .cv--selected--200l0 > .cv--item--ahYSz {
920
- background-color: rgba(132, 134, 141, 0.55); }
921
-
922
- .cv--columnNames--1N_VT {
923
- font-weight: 600; }
924
-
925
- .cv--seriesContainer--4pk2s {
926
- margin-bottom: 1rem; }
927
-
928
- .cv--icon--3SoBV {
929
- height: 1.5rem;
930
- position: relative;
931
- margin-top: -0.25rem; }
932
- .cv--icon--3SoBV svg {
933
- width: 1.5rem;
934
- height: 1.5rem; }
935
-
936
- .cv--citationValues--1nYZg span:after {
937
- content: ','; }
938
-
939
- .cv--citationValues--1nYZg span:last-child:after {
940
- content: ''; }
941
-
942
- .cv--darkBackground--2jtQl p, .cv--loading--152ia p {
943
- color: #D7D7D7; }
944
-
945
- .cv--darkBackground--2jtQl {
946
- background-color: #f8f8f8; }
947
-
948
- .cv--svgContainer--xdD5o svg {
949
- color: #84868D; }
950
- .cv--svgContainer--xdD5o svg:hover {
951
- color: #313543; }
952
-
953
- .cv--loading--152ia .cv--svgContainer--xdD5o svg:hover {
954
- color: #D7D7D7; }
955
-
956
- .cv--chapterItem--3G38c {
957
- cursor: pointer; }
958
- .cv--chapterItem--3G38c .cv--loading--152ia {
959
- cursor: default; }
960
-
961
- .cv--btn--59zg9 {
962
- min-width: 8rem;
963
- min-height: -webkit-calc(2.5 * 0.875rem);
964
- min-height: calc(2.5 * 0.875rem); }
965
-
966
- .cv--saveButton--2FsA6 {
967
- width: 5.625rem; }
968
-
969
- .cv--undo--v6msX {
970
- cursor: pointer; }
971
- .cv--undo--v6msX:hover {
972
- text-decoration: underline; }
973
-
974
- .cv--suggestEdit--1X4l5 {
975
- border-radius: 0.25rem;
976
- font-weight: 600; }
977
-
978
- .cv--svgContainer--27gR6 {
979
- width: 1rem;
980
- height: 1rem; }
981
- .cv--svgContainer--27gR6 svg {
982
- vertical-align: top; }
983
-
984
- .cv--link--5idZs:hover {
985
- text-decoration: none; }
986
-
987
- .cv--active--3Ty4M {
988
- font-weight: 500; }
989
-
990
- .cv--fileDrop--l2vGK {
991
- border: 0.125rem dashed #B5B5B5;
992
- border-radius: 0.25rem;
993
- position: relative; }
994
-
995
- .cv--dropMask--yNe5b {
996
- display: none; }
997
-
998
- .cv--dragOver--3sZ1T {
999
- position: relative; }
1000
- .cv--dragOver--3sZ1T .cv--fileDrop--l2vGK {
1001
- border-color: #F8981D; }
1002
- .cv--dragOver--3sZ1T .cv--dropMask--yNe5b h3 {
1003
- position: absolute;
1004
- top: 50%;
1005
- width: 100%;
1006
- text-align: center;
1007
- margin-top: -1rem; }
1008
- .cv--dragOver--3sZ1T .cv--dropMask--yNe5b {
1009
- display: block;
1010
- position: absolute;
1011
- top: 0;
1012
- left: 0;
1013
- right: 0;
1014
- bottom: 0;
1015
- background: rgba(255, 255, 255, 0.6); }
1016
-
1017
- .cv--svgContainer--3LHs_ {
1018
- width: 1.5rem;
1019
- height: 1.5rem; }
1020
-
1021
- .cv--progress--30D9s {
1022
- height: 0.1875rem; }
1023
-
1024
- .cv--dropdownContainer--2F3Cz {
1025
- width: 1.5rem;
1026
- height: 1.5rem;
1027
- margin-top: -0.75rem;
1028
- top: 50%;
1029
- right: 0; }
1030
- .cv--dropdownContainer--2F3Cz.show {
1031
- z-index: 11; }
1032
-
1033
- .cv--dropdownButton--2TdId {
1034
- width: 100%;
1035
- height: 100%;
1036
- cursor: pointer; }
1037
-
1038
- .cv--dropdownContainer--293SV {
1039
- width: 1.5rem;
1040
- height: 1.5rem;
1041
- margin-top: -0.75rem;
1042
- top: 50%;
1043
- right: 0; }
1044
-
1045
- .cv--dropdownButton--23YxG {
1046
- width: 100%;
1047
- height: 100%;
1048
- cursor: pointer; }
1049
-
1050
- .cv--sortSelect--3o-cY, .cv--sortSelectDropdown--3O1cI {
1051
- width: 8.8rem;
1052
- position: relative; }
1053
-
1054
- .cv--sortSelect--3o-cY .dropdown-toggle:after {
1055
- position: absolute;
1056
- right: 0.75rem;
1057
- top: 50%;
1058
- margin-top: -0.15em; }
1059
-
1060
- .cv--folderIcon--3yOKC {
1061
- width: 1.5rem;
1062
- height: 1.5rem;
1063
- left: 0.375rem;
1064
- top: 50%;
1065
- margin-top: -0.75rem; }
1066
-
1067
- .cv--folder--1mL-8 {
1068
- padding-left: 1.5rem; }
1069
-
1070
- .cv--folderBlock--3Z20g {
1071
- border: 1px solid #eaeaea; }
1072
-
1073
- .cv--actions--1NQjU svg {
1074
- opacity: 0.5;
1075
- text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5); }
1076
-
1077
- .cv--actions--1NQjU:hover {
1078
- background-color: rgba(0, 0, 0, 0.4); }
1079
- .cv--actions--1NQjU:hover svg {
1080
- opacity: 1;
1081
- color: #fff; }
1082
-
1083
- .cv--disabled--3Vziu {
1084
- background-color: #f1f1f1;
1085
- color: #B5B5B5; }
1086
- .cv--disabled--3Vziu:hover {
1087
- background-color: #f1f1f1;
1088
- color: #B5B5B5; }
1089
-
1090
- .cv--svgContainer--2fUyj {
1091
- width: 1.5rem;
1092
- height: 1.5rem; }
1093
-
1094
- .cv--svgContainer--_uEVJ {
1095
- width: 1.5rem;
1096
- height: 1.5rem; }
1097
-
1098
- .cv--actionSvg--1oLg0 {
1099
- cursor: pointer; }
1100
-
1101
- .cv--interactive--cAujD {
1102
- background-color: #F8981D;
1103
- color: #fff; }
1104
-
1105
- .cv--svgContainer--1VUhp {
1106
- width: 1.5rem;
1107
- height: 1.5rem; }
1108
-
1109
- .cv--actionSvg--3cODR {
1110
- cursor: pointer; }
1111
-
1112
- .cv--folder--1MHyt {
1113
- height: 0;
1114
- background-color: #f1f1f1;
1115
- background-size: cover;
1116
- padding-bottom: -webkit-calc(720 / 1280 * 100%);
1117
- padding-bottom: calc(720 / 1280 * 100%); }
1118
- .cv--folder--1MHyt h3 {
1119
- top: 50%;
1120
- left: 50%;
1121
- -webkit-transform: translate(-50%, -50%);
1122
- transform: translate(-50%, -50%);
1123
- text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
1124
- overflow-wrap: break-word;
1125
- max-width: -webkit-calc(100% - 2.5rem);
1126
- max-width: calc(100% - 2.5rem);
1127
- z-index: 10;
1128
- max-height: 7.2rem;
1129
- padding: 0.18rem 0;
1130
- overflow: hidden;
1131
- -moz-box-sizing: content-box;
1132
- box-sizing: content-box; }
1133
- @media (max-width: 1200px) {
1134
- .cv--folder--1MHyt h3 {
1135
- max-height: 5.4rem; } }
1136
- .cv--folder--1MHyt:before {
1137
- content: " ";
1138
- top: 0.625rem;
1139
- left: 0.625rem;
1140
- right: 0.625rem;
1141
- bottom: 0.625rem;
1142
- position: absolute;
1143
- background: rgba(51, 51, 51, 0.5);
1144
- z-index: 5;
1145
- -webkit-transition: background linear 500ms;
1146
- transition: background linear 500ms; }
1147
- .cv--folder--1MHyt:hover:before {
1148
- background: rgba(51, 51, 51, 0.25); }
1149
-
1150
- .cv--actions--3-hwy {
1151
- background: none;
1152
- top: 0;
1153
- width: 2rem;
1154
- height: 2rem;
1155
- margin-top: 0.9375rem;
1156
- margin-right: 0.9375rem;
1157
- z-index: 10; }
1158
- .cv--actions--3-hwy svg {
1159
- opacity: 0.5;
1160
- text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5); }
1161
- .cv--actions--3-hwy:hover {
1162
- background-color: rgba(0, 0, 0, 0.5); }
1163
- .cv--actions--3-hwy:hover svg {
1164
- opacity: 1; }
1165
-
1166
- .cv--draggingVideo--3cCHx {
1167
- background-color: #f1f1f1 !important;
1168
- position: relative; }
1169
- .cv--draggingVideo--3cCHx:after {
1170
- content: ' ';
1171
- position: absolute;
1172
- top: 0;
1173
- left: 0;
1174
- right: 0;
1175
- bottom: 0;
1176
- display: inline-block;
1177
- z-index: 2;
1178
- background-color: rgba(255, 255, 255, 0.5); }
1179
-
1180
- .cv--image--Cz1y1, .cv--addCrest--2PAV_ {
1181
- width: 8rem;
1182
- height: 8rem; }
1183
-
1184
- .cv--addCrest--2PAV_ {
1185
- font-weight: 600;
1186
- cursor: pointer;
1187
- border: 0.125rem dashed #D7D7D7;
1188
- color: #979797; }
1189
- .cv--addCrest--2PAV_:hover {
1190
- color: #979797; }
1191
-
1192
- .cv--metadataValue--3nkrW {
1193
- max-height: 6.5625rem;
1194
- overflow-y: auto; }
1195
-
1196
- .cv--removeImage--3OmsX {
1197
- color: #5B5E68;
1198
- text-decoration: none;
1199
- cursor: pointer;
1200
- background-color: transparent;
1201
- border: none; }
1202
- .cv--removeImage--3OmsX:hover {
1203
- text-decoration: underline; }
1204
-
1205
- .cv--imageElement--3kJ8m {
1206
- background-size: cover;
1207
- background-position: center; }
1208
-
1209
- .cv--banner--uFWnL .cv--imageElement--3kJ8m {
1210
- padding-bottom: 18.5%; }
1211
-
1212
- .cv--thumbnail--3_b6l .cv--imageContainer--1mYjS {
1213
- width: 40%; }
1214
-
1215
- .cv--thumbnail--3_b6l .cv--imageElement--3kJ8m {
1216
- padding-bottom: 56.25%; }
1217
-
1218
- .cv--svgContainer--3T40U {
1219
- width: 1.5rem;
1220
- height: 1.5rem; }
1221
-
1222
- .cv--actionSvg--3FRzz {
1223
- cursor: pointer; }
1224
-
1225
- .cv--columnNames--QvhY0 {
1226
- font-weight: 600; }
1227
-
1228
- .cv--smallSvgContainer--2qax8 {
1229
- width: 1.25rem;
1230
- height: 1.25rem; }
1231
-
1232
- .cv--avatar--1SfF- {
1233
- border-radius: 50%;
1234
- background-color: #51ADA3;
1235
- display: inline-block;
1236
- width: 2.1875rem;
1237
- height: 2.1875rem;
1238
- text-align: center;
1239
- line-height: 2.1875rem;
1240
- background-size: cover;
1241
- background-position: top center; }
1242
-
1243
- .cv--arrow--2C5x6 {
1244
- color: #FFFFFF; }
1245
-
1246
- .cv--popoverOffset--3FIw8 .dropdown-menu-right::before, .cv--popoverOffset--3FIw8 .dropdown-menu-right::after {
1247
- right: -webkit-calc(1.25rem - 7px);
1248
- right: calc(1.25rem - 7px); }
1249
-
1250
- .cv--heading--2xsqU:hover {
1251
- background-color: transparent; }
1252
- .cv--heading--2xsqU:hover .cv--displayName--3tg2v {
1253
- color: #333333; }
1254
-
1255
- .cv--actions--1n37b {
1256
- display: inline-block;
1257
- position: absolute;
1258
- right: 0;
1259
- top: 0; }
1260
-
1261
- .cv--spinner--3Fpix, .cv--cancel--2ZmdX {
1262
- width: 1.25rem;
1263
- height: 1.25rem;
1264
- display: inline-block; }
1265
-
1266
- .cv--cancel--2ZmdX {
1267
- font-size: 2rem;
1268
- line-height: 1rem;
1269
- cursor: pointer;
1270
- color: #B5B5B5; }
1271
-
1272
- .cv--hiddenCancel--1PypJ {
1273
- display: none; }
1274
-
1275
- .cv--processProgress--3dASy {
1276
- position: relative; }
1277
- .cv--processProgress--3dASy:hover .cv--spinner--3Fpix {
1278
- display: none; }
1279
- .cv--processProgress--3dASy:hover .cv--cancel--2ZmdX {
1280
- display: inline-block; }
1281
-
1282
- .cv--errorMargin--3GfnF {
1283
- margin-right: 4rem; }
1284
-
1285
- .cv--progressDropdown--3mx9H .progress-summary {
1286
- width: -webkit-calc(25rem - (0.75rem * 2) - (2px) - 0.3125rem);
1287
- width: calc(25rem - (0.75rem * 2) - (2px) - 0.3125rem); }
1288
-
1289
- .cv--upload--t6ngq {
1290
- vertical-align: top;
1291
- padding-left: 36px;
1292
- position: relative; }
1293
-
1294
- .cv--uploadButtonSvg--35apo {
1295
- width: 1.5rem;
1296
- height: 1.5rem;
1297
- position: absolute;
1298
- left: 0.375rem;
1299
- top: 50%;
1300
- margin-top: -0.75rem; }
1301
-
1302
- .cv--progressInfo--1fkFK {
1303
- text-align: center;
1304
- cursor: pointer;
1305
- position: relative; }
1306
-
1307
- .cv--svgContainer--2uMkl {
1308
- width: 2rem;
1309
- height: 2rem;
1310
- display: inline-block;
1311
- vertical-align: middle; }
1312
-
1313
- .cv--itemCount--1oXJj {
1314
- position: absolute;
1315
- left: 0.75rem;
1316
- bottom: -6px; }
1317
-
1318
- .cv--logoContainer--1T4m8 {
1319
- min-width: 12rem;
1320
- width: 13.75rem;
1321
- height: 2.92062rem; }
1322
-
1323
- .cv--upload--2CcDj {
1324
- vertical-align: top;
1325
- padding-left: 36px;
1326
- position: relative; }
1327
-
1328
- .cv--uploadButtonSvg--2N6Io {
1329
- width: 1.5rem;
1330
- height: 1.5rem;
1331
- position: absolute;
1332
- left: 0.375rem;
1333
- top: 50%;
1334
- margin-top: -0.75rem; }
1335
-
1336
- .cv--searchBar--Ds2gb {
1337
- padding-right: 18.75rem; }
1338
-
1339
- .cv--actionButtons--3OcPu {
1340
- top: 0;
1341
- bottom: 0;
1342
- right: 0; }
1343
-
1344
- .cv--actions--34Z19 {
1345
- color: #D7D7D7; }
1346
-
1347
- .cv--showPreview--cZAmH {
1348
- visibility: hidden;
1349
- font-weight: 600; }
1350
-
1351
- .cv--lock--25RMJ {
1352
- cursor: default; }
1353
-
1354
- .cv--svgContainer--1k8KB {
1355
- width: 1.25rem;
1356
- height: 1.25rem;
1357
- cursor: default; }
1358
- .cv--svgContainer--1k8KB svg {
1359
- vertical-align: text-bottom; }
1360
-
1361
- .cv--svgContainer--1CUEt {
1362
- vertical-align: middle;
1363
- display: inline-block;
1364
- width: 1.5rem;
1365
- height: 1.5rem; }
1366
-
1367
- .cv--series--oZx-K {
1368
- text-transform: uppercase;
1369
- font-size: 0.92857em; }
1370
-
1371
- .cv--series--P3914 {
1372
- cursor: default; }
1373
-
1374
- .cv--sourceLabel--2HK7r {
1375
- cursor: default; }
1376
-
1377
- .cv--interactive--37GpR {
1378
- background-color: #F8981D;
1379
- color: #fff;
1380
- cursor: default; }
1381
-
1382
- .cv--rating--2lAYT {
1383
- color: #fff;
1384
- cursor: default; }
1385
-
1386
- .cv--svgContainer--19ncQ {
1387
- width: 1.75rem;
1388
- height: 1.75rem;
1389
- cursor: default;
1390
- margin: 0 -0.25rem; }
1391
- .cv--svgContainer--19ncQ svg {
1392
- vertical-align: text-bottom; }
1393
-
1394
- .cv--badgesWrapper--26lCi > span {
1395
- vertical-align: middle; }
1396
-
1397
- .cv--restrictionBadgeClass--UdQeS {
1398
- background-color: rgba(255, 205, 82, 0.3);
1399
- cursor: default; }
1400
-
1401
- .cv--reviewBadge--ExFLF {
1402
- background-color: rgba(255, 205, 82, 0.3);
1403
- color: #d29500;
1404
- cursor: default; }
1405
-
1406
- .cv--urgentReviewBadge--3dcfL {
1407
- background-color: rgba(217, 88, 79, 0.25);
1408
- color: #D9584F;
1409
- cursor: default; }
1410
-
1411
- .cv--checkboxContainer--3BLCF {
1412
- width: 1.25rem; }
1413
-
1414
- .cv--thumbnailContainer--16jlV {
1415
- width: 8rem;
1416
- height: 4.5rem; }
1417
-
1418
- .cv--metaContainer--2mMws {
1419
- width: -webkit-calc(100% - 19.25rem);
1420
- width: calc(100% - 19.25rem);
1421
- vertical-align: top; }
1422
-
1423
- .cv--actionsContainer--I31I0 {
1424
- width: 10rem; }
1425
-
1426
- .cv--allowBulk--2VkOe .cv--metaContainer--2mMws {
1427
- width: -webkit-calc(100% - 20.5rem);
1428
- width: calc(100% - 20.5rem); }
1429
-
1430
- .cv--videoItem--PoHa- .video-item-actions svg {
1431
- color: #D7D7D7; }
1432
-
1433
- .cv--videoItem--PoHa- .video-item-actions .ui-more svg {
1434
- color: #979797; }
1435
-
1436
- .cv--videoItem--PoHa-:hover {
1437
- background-color: #f8f8f8; }
1438
- .cv--videoItem--PoHa-:hover .video-item-actions svg {
1439
- color: #979797; }
1440
- .cv--videoItem--PoHa-:hover .video-item-actions svg:hover {
1441
- color: #313543; }
1442
- .cv--videoItem--PoHa-:hover .video-item-show-preview {
1443
- visibility: visible; }
1444
-
1445
- .cv--processingVideo--qFjv2 .cv--videoItem--PoHa- {
1446
- background-color: #f1f1f1; }
1447
- .cv--processingVideo--qFjv2 .cv--videoItem--PoHa-:hover {
1448
- background-color: #f1f1f1; }
1449
- .cv--processingVideo--qFjv2 .cv--videoItem--PoHa- .cv--thumbnailContainer--16jlV {
1450
- position: relative; }
1451
- .cv--processingVideo--qFjv2 .cv--videoItem--PoHa- .cv--thumbnailContainer--16jlV:after {
1452
- position: absolute;
1453
- top: 0;
1454
- left: 0;
1455
- right: 0;
1456
- bottom: 0;
1457
- display: block;
1458
- content: " ";
1459
- background: rgba(255, 255, 255, 0.5);
1460
- z-index: 1; }
1461
-
1462
- .cv--processingVideo--qFjv2.cv--allowBulk--2VkOe .cv--bulkPlaceholder--3iAFa {
1463
- width: 2.25rem; }
1464
-
1465
- .cv--previewContainer--2UBZX {
1466
- -webkit-transition: height 0.3s ease-in-out;
1467
- transition: height 0.3s ease-in-out;
1468
- height: 0;
1469
- overflow: hidden; }
1470
-
1471
- .cv--columnNames--1a1Re {
1472
- font-weight: 600; }
1473
-
1474
- .cv--descriptionWrapper--2MZC5 {
1475
- position: relative; }
1476
-
1477
- .cv--description--3U9j9 {
1478
- white-space: pre-wrap; }
1479
-
1480
- .cv--ellipsis--1YjUg, .cv--singleEllipsis--3SNtn, .cv--showMoreEllipsis--xy3i9 {
1481
- position: absolute;
1482
- padding-left: 1.25rem;
1483
- bottom: 0;
1484
- right: 0;
1485
- background: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(255, 255, 255, 0)), color-stop(#fff), color-stop(2rem), to(#fff));
1486
- background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, #fff, 2rem, #fff);
1487
- color: #979797; }
1488
-
1489
- .cv--singleEllipsis--3SNtn {
1490
- padding-right: 3rem;
1491
- letter-spacing: 0.1rem; }
1492
-
1493
- .cv--showMoreEllipsis--xy3i9 {
1494
- cursor: pointer; }
1495
-
1496
- .cv--showEllipsis--1_L9t {
1497
- display: inline; }
1498
-
1499
- .cv--hideEllipsis--TCdgP {
1500
- display: none; }
1501
-
1502
- .cv--open--18ojI {
1503
- padding-bottom: 1.25rem; }
1504
-
1505
- .cv--truncateSmall--nLuVF {
1506
- max-height: 3.9375rem;
1507
- overflow: hidden; }
1508
-
1509
- .cv--truncateLarge--sEELY {
1510
- max-height: 6.5625rem;
1511
- overflow: hidden; }
1512
-
1513
- .cv--actions--1U-Yf {
1514
- white-space: nowrap; }
1515
-
1516
- .cv--svgContainer--3hYSf {
1517
- width: 1.5rem;
1518
- height: 1.5rem; }
1519
- .cv--svgContainer--3hYSf svg {
1520
- color: #979797; }
1521
-
1522
- .cv--actionName--2kY6B {
1523
- font-weight: 500; }
1524
-
1525
- .cv--disabled--3UjU0 {
1526
- cursor: default;
1527
- color: #D7D7D7 !important; }
1528
- .cv--disabled--3UjU0 .cv--svgContainer--3hYSf svg {
1529
- color: #D7D7D7 !important; }
1530
- .cv--disabled--3UjU0 .cv--svgContainer--3hYSf svg:hover {
1531
- color: #D7D7D7 !important; }
1532
- .cv--disabled--3UjU0 .cv--actionName--2kY6B {
1533
- color: #D7D7D7; }
1534
-
1535
- .cv--webPlayerContainer--2S4VF {
1536
- background-color: #f1f1f1; }
1537
-
1538
- .cv--webPlayer--3569L {
1539
- z-index: 1; }
1540
-
1541
- .cv--svgContainer--1WsxD svg {
1542
- position: absolute;
1543
- top: 50%;
1544
- left: 50%;
1545
- -webkit-transform: translate(-50%, -50%);
1546
- transform: translate(-50%, -50%);
1547
- width: 20%;
1548
- color: #D7D7D7; }
1549
-
1550
- .cv--dropdownMenu--2RaQu {
1551
- max-width: 100%;
1552
- max-height: 50vh;
1553
- overflow-y: scroll; }
1554
-
1555
- .cv--selectButton--2xGqi {
1556
- padding-right: 2rem;
1557
- overflow-y: hidden;
1558
- cursor: pointer; }
1559
- .cv--selectButton--2xGqi::after {
1560
- position: absolute;
1561
- right: 0.75rem;
1562
- top: 50%;
1563
- margin-top: -0.15em; }
1564
-
1565
- .cv--disabled--15kWr {
1566
- color: #B5B5B5;
1567
- cursor: default; }
1568
- .cv--disabled--15kWr .cv--selectButton--2xGqi::after {
1569
- color: #B5B5B5; }
1570
-
1571
- .cv--columnNames--1ZuuN {
1572
- font-weight: 600; }
1573
-
1574
- .cv--button--39NvM {
1575
- text-align: left;
1576
- border: 1px solid #D7D7D7;
1577
- height: 2.2rem; }
1578
-
1579
- .cv--svg--2Tl0W {
1580
- position: absolute;
1581
- right: 0.3125rem;
1582
- top: 50%;
1583
- margin-top: -0.75rem;
1584
- color: #D7D7D7; }
1585
- .cv--svg--2Tl0W:hover {
1586
- cursor: pointer; }
1587
-
1588
- .cv--disabled--2julA {
1589
- background-color: #f1f1f1;
1590
- color: #B5B5B5;
1591
- cursor: default !important; }
1592
- .cv--disabled--2julA:hover {
1593
- color: #B5B5B5;
1594
- text-decoration: none; }
1595
-
1596
- .cv--seasonContainer--_SpZq {
1597
- position: relative; }
1598
- .cv--seasonContainer--_SpZq:hover .cv--svg--2Tl0W {
1599
- color: #313543; }
1600
-
1601
- .cv--resizingTextarea--qKxbV {
1602
- max-height: 50vh; }
1603
-
1604
- .cv--select--1rbBR {
1605
- position: relative; }
1606
-
1607
- .cv--selectButton--htYy7::after {
1608
- position: absolute;
1609
- right: 0.75rem;
1610
- top: 50%;
1611
- margin-top: -0.15em; }
1612
-
1613
- .cv--svgContainer--1sQ7D {
1614
- width: 1rem;
1615
- height: 1rem; }
1616
-
1617
- .cv--groupButton--2CM1D {
1618
- background-color: #fff;
1619
- border-color: #f1f1f1;
1620
- color: #B5B5B5;
1621
- -webkit-transition: none;
1622
- transition: none;
1623
- -moz-box-sizing: content-box;
1624
- box-sizing: content-box; }
1625
- .cv--groupButton--2CM1D:focus {
1626
- box-shadow: none; }
1627
-
1628
- .cv--groupButtons--3uv-z:hover .cv--groupButton--2CM1D {
1629
- border-color: #B5B5B5;
1630
- color: #B5B5B5;
1631
- z-index: 2; }
1632
- .cv--groupButtons--3uv-z:hover .cv--groupButton--2CM1D.cv--groupButtonSelected--uC5RG {
1633
- border-color: #5B5E68;
1634
- color: #333333;
1635
- z-index: 3; }
1636
-
1637
- .cv--groupButton--2CM1D:hover ~ .cv--groupButton--2CM1D {
1638
- border-color: #f1f1f1;
1639
- color: #B5B5B5;
1640
- z-index: 1; }
1641
-
1642
- .cv--groupButtonSelected--uC5RG {
1643
- border-color: #5B5E68;
1644
- color: #333333;
1645
- z-index: 2; }
1646
-
1647
- .cv--buttonDisabled--3-I1L {
1648
- opacity: 0.5;
1649
- cursor: default !important; }
1650
- .cv--buttonDisabled--3-I1L:focus, .cv--buttonDisabled--3-I1L:active {
1651
- box-shadow: none !important; }
1652
-
1653
- .cv--mediumWeight--10amI {
1654
- font-weight: 500; }
1655
-
1656
- .cv--container--2SYyd {
1657
- min-height: 5rem; }
1658
-
1659
- .cv--embedInput--ozkKz, .cv--textareaContainer--1monr {
1660
- height: 6.375rem; }
1661
-
1662
- .cv--embedInput--ozkKz, .cv--shareInput--36Arj {
1663
- box-shadow: none; }
1664
-
1665
- .cv--copyBtn--2UGxe {
1666
- border: 0.0625rem solid #D7D7D7; }
1667
-
1668
- .cv--embedCopyBtn--gaJap {
1669
- height: 2.25rem;
1670
- top: -2.25rem;
1671
- position: relative;
1672
- margin: 0 0 0 auto; }
1673
- .cv--embedCopyBtn--gaJap .btn {
1674
- border-top-right-radius: 0;
1675
- border-bottom-left-radius: 0;
1676
- border-top-left-radius: 0.25rem !important; }
1677
-
1678
- .cv--footerText--3ydjG {
1679
- min-height: 1rem; }
1680
-
1681
- .cv--topNav--3xqNh {
1682
- min-height: -webkit-calc(1.3125rem + 1rem);
1683
- min-height: calc(1.3125rem + 1rem); }
1684
- .cv--topNav--3xqNh .nav {
1685
- display: -webkit-inline-box;
1686
- display: -webkit-inline-flex;
1687
- display: inline-flex; }
1688
-
1689
- .cv--header--1tdTv {
1690
- font-weight: 600; }
1691
-
1692
- .cv--leftNav--15vRB {
1693
- width: 20rem; }
1694
- .cv--leftNav--15vRB a {
1695
- color: #4E9ACE !important;
1696
- cursor: pointer; }
1697
- .cv--leftNav--15vRB a:hover {
1698
- text-decoration: underline !important; }
1699
-
1700
- .cv--heading--1SwZ2 {
1701
- width: 20rem; }
1702
-
1703
- .cv--tabsContainer--3f4T9 {
1704
- width: -webkit-calc(100% - 20rem);
1705
- width: calc(100% - 20rem);
1706
- vertical-align: top; }
1707
-
1708
- .cv--content--303Nb {
1709
- min-height: 40rem; }
1710
-
1711
- .cv--contentWithLeftNav--2ZCHY {
1712
- width: -webkit-calc(100% - 20rem);
1713
- width: calc(100% - 20rem);
1714
- vertical-align: top; }
1715
-
1716
- .cv--image--2AV9T {
1717
- width: 9rem; }
1718
-
1719
- .cv--label--3iMZr {
1720
- vertical-align: middle; }
1721
-
1722
- .cv--filterButton--1xOts {
1723
- font-weight: 500; }
1724
-
1725
- .cv--dropdownMenu--1Yzts {
1726
- max-width: 100%;
1727
- max-height: 50vh;
1728
- overflow-y: auto; }
1729
-
1730
- .cv--moreFiltersButton--3sym3 .filter-option-item {
1731
- display: inline-block;
1732
- width: 50%; }
1733
-
1734
- .cv--options--6o30E:hover .cv--option--3yReT {
1735
- background-color: #4E9ACE;
1736
- border-color: #4E9ACE;
1737
- color: #FFFFFF; }
1738
-
1739
- .cv--option--3yReT:hover ~ .cv--option--3yReT {
1740
- background-color: #f1f1f1;
1741
- border-color: #f1f1f1;
1742
- color: #333333; }
1743
-
1744
- .cv--optionItem--3jzt0 {
1745
- width: 33%;
1746
- vertical-align: top; }
1747
- .cv--optionItem--3jzt0:first-child {
1748
- padding-left: 0 !important; }
1749
- .cv--optionItem--3jzt0:last-child {
1750
- padding-right: 0 !important; }
1751
-
1752
- .cv--customOptionItem--78r7L {
1753
- width: 25%; }
1754
-
1755
- .cv--selected--aFhSG {
1756
- background-color: #4E9ACE;
1757
- color: #FFFFFF; }
1758
-
1759
- .cv--container--1SMXf {
1760
- max-width: 12rem; }
1761
-
1762
- .cv--tile--2vzcB {
1763
- width: 16rem; }
1764
-
1765
- .cv--count--1NMES {
1766
- font-size: 4rem;
1767
- line-height: 4rem; }
1768
-
1769
- .cv--emptyStateImage--2g_X_ {
1770
- height: -webkit-calc(2 * 2rem + 0.65625rem);
1771
- height: calc(2 * 2rem + 0.65625rem); }
1772
-
1773
- .cv--tile--2oIcc {
1774
- width: -webkit-calc(100% - 16rem - 2.5rem);
1775
- width: calc(100% - 16rem - 2.5rem); }
1776
-
1777
- .cv--notificationList--1Hn2a {
1778
- max-height: -webkit-calc((1.3125rem * 2 + 1.25rem) * 6);
1779
- max-height: calc((1.3125rem * 2 + 1.25rem) * 6);
1780
- overflow-y: scroll;
1781
- margin-right: -1.25rem; }
1782
-
1783
- .cv--tileList--1dNZs {
1784
- margin: -0.625rem; }
1785
- .cv--tileList--1dNZs .cv--tileList--1dNZs {
1786
- margin: 0; }
1787
-
1788
- .cv--tile--REue0 {
1789
- width: -webkit-calc(50% - 1.25rem);
1790
- width: calc(50% - 1.25rem); }
1791
-
1792
- .cv--illoContainer--3Eqbe {
1793
- display: block;
1794
- position: relative;
1795
- width: 15.0625rem;
1796
- height: 14.3125rem;
1797
- margin: 0 auto; }
1798
-
1799
- .cv--illoContainer--3Eqbe div {
1800
- display: block;
1801
- position: absolute; }
1802
-
1803
- .cv--body--39GQb {
1804
- position: absolute; }
1805
-
1806
- .cv--head--PVOtq {
1807
- position: absolute;
1808
- left: 1.0625rem;
1809
- top: 0.625rem;
1810
- z-index: 2; }
1811
-
1812
- .cv--lunaHead--3z13a {
1813
- position: absolute;
1814
- z-index: 3;
1815
- top: 4.876rem;
1816
- left: 8.5rem; }
1817
-
1818
- @-webkit-keyframes cv--animate--2FR1z {
1819
- 0% {
1820
- -webkit-transform: rotate(-5deg);
1821
- transform: rotate(-5deg); }
1822
- 48% {
1823
- -webkit-transform: rotate(-20deg);
1824
- transform: rotate(-20deg); }
1825
- 55% {
1826
- -webkit-transform: rotate(-20deg);
1827
- transform: rotate(-20deg); }
1828
- 90% {
1829
- -webkit-transform: rotate(5deg);
1830
- transform: rotate(5deg); }
1831
- 100% {
1832
- -webkit-transform: rotate(-5deg);
1833
- transform: rotate(-5deg); } }
1834
-
1835
- @keyframes cv--animate--2FR1z {
1836
- 0% {
1837
- -webkit-transform: rotate(-5deg);
1838
- transform: rotate(-5deg); }
1839
- 48% {
1840
- -webkit-transform: rotate(-20deg);
1841
- transform: rotate(-20deg); }
1842
- 55% {
1843
- -webkit-transform: rotate(-20deg);
1844
- transform: rotate(-20deg); }
1845
- 90% {
1846
- -webkit-transform: rotate(5deg);
1847
- transform: rotate(5deg); }
1848
- 100% {
1849
- -webkit-transform: rotate(-5deg);
1850
- transform: rotate(-5deg); } }
1851
-
1852
- @-webkit-keyframes cv--luna-animate--12szO {
1853
- 0% {
1854
- -webkit-transform: translateY(5px);
1855
- transform: translateY(5px); }
1856
- 50% {
1857
- -webkit-transform: translateY(-2px);
1858
- transform: translateY(-2px); }
1859
- 100% {
1860
- -webkit-transform: translateY(5px);
1861
- transform: translateY(5px); } }
1862
-
1863
- @keyframes cv--luna-animate--12szO {
1864
- 0% {
1865
- -webkit-transform: translateY(5px);
1866
- transform: translateY(5px); }
1867
- 50% {
1868
- -webkit-transform: translateY(-2px);
1869
- transform: translateY(-2px); }
1870
- 100% {
1871
- -webkit-transform: translateY(5px);
1872
- transform: translateY(5px); } }
1873
-
1874
- .cv--illoContainer--3Eqbe .cv--head--PVOtq {
1875
- -webkit-animation: cv--animate--2FR1z 4s infinite ease-out;
1876
- animation: cv--animate--2FR1z 4s infinite ease-out; }
1877
-
1878
- .cv--illoContainer--3Eqbe .cv--lunaHead--3z13a {
1879
- -webkit-animation: cv--luna-animate--12szO 1s infinite ease-out;
1880
- animation: cv--luna-animate--12szO 1s infinite ease-out; }
1881
-
1882
- .cv--lunaTail--1memV {
1883
- z-index: 1;
1884
- top: 10.75rem;
1885
- left: 10.3125rem;
1886
- -webkit-transform-origin: bottom right;
1887
- transform-origin: bottom right; }
1888
-
1889
- .cv--tintinTail--2V4lb {
1890
- z-index: 1;
1891
- top: 8rem;
1892
- left: 1.375rem;
1893
- -webkit-transform-origin: bottom right;
1894
- transform-origin: bottom right; }
1895
-
1896
- .cv--illoContainer--3Eqbe .cv--tintinTail--2V4lb {
1897
- -webkit-animation: cv--wag-tail-small--2atTc .7s infinite;
1898
- animation: cv--wag-tail-small--2atTc .7s infinite; }
1899
-
1900
- .cv--illoContainer--3Eqbe .cv--lunaTail--1memV {
1901
- -webkit-animation: cv--wag-tail--13j3E .5s infinite;
1902
- animation: cv--wag-tail--13j3E .5s infinite; }
1903
-
1904
- @-webkit-keyframes cv--wag-tail--13j3E {
1905
- 0% {
1906
- -webkit-transform: rotate(-5deg);
1907
- transform: rotate(-5deg); }
1908
- 50% {
1909
- -webkit-transform: rotate(-18deg);
1910
- transform: rotate(-18deg); }
1911
- 90% {
1912
- -webkit-transform: rotate(5deg);
1913
- transform: rotate(5deg); }
1914
- 100% {
1915
- -webkit-transform: rotate(-5deg);
1916
- transform: rotate(-5deg); } }
1917
-
1918
- @keyframes cv--wag-tail--13j3E {
1919
- 0% {
1920
- -webkit-transform: rotate(-5deg);
1921
- transform: rotate(-5deg); }
1922
- 50% {
1923
- -webkit-transform: rotate(-18deg);
1924
- transform: rotate(-18deg); }
1925
- 90% {
1926
- -webkit-transform: rotate(5deg);
1927
- transform: rotate(5deg); }
1928
- 100% {
1929
- -webkit-transform: rotate(-5deg);
1930
- transform: rotate(-5deg); } }
1931
-
1932
- @-webkit-keyframes cv--wag-tail-small--2atTc {
1933
- 0% {
1934
- -webkit-transform: rotate(-2deg);
1935
- transform: rotate(-2deg); }
1936
- 50% {
1937
- -webkit-transform: rotate(-12deg);
1938
- transform: rotate(-12deg); }
1939
- 90% {
1940
- -webkit-transform: rotate(2deg);
1941
- transform: rotate(2deg); }
1942
- 100% {
1943
- -webkit-transform: rotate(-2deg);
1944
- transform: rotate(-2deg); } }
1945
-
1946
- @keyframes cv--wag-tail-small--2atTc {
1947
- 0% {
1948
- -webkit-transform: rotate(-2deg);
1949
- transform: rotate(-2deg); }
1950
- 50% {
1951
- -webkit-transform: rotate(-12deg);
1952
- transform: rotate(-12deg); }
1953
- 90% {
1954
- -webkit-transform: rotate(2deg);
1955
- transform: rotate(2deg); }
1956
- 100% {
1957
- -webkit-transform: rotate(-2deg);
1958
- transform: rotate(-2deg); } }
1959
-
1960
- .cv--image--1wvl8 {
1961
- width: 15.0625rem;
1962
- height: 14.625rem; }
1963
-
1964
- .cv--addLibrary--1O42p {
1965
- width: 100%;
1966
- margin-top: 1.25rem;
1967
- border-style: dashed;
1968
- border-width: 0.125rem;
1969
- font-weight: 600;
1970
- position: relative;
1971
- text-align: left;
1972
- padding-left: 1.5rem;
1973
- vertical-align: middle; }
1974
-
1975
- .cv--addLibraryContainer--1HX0v {
1976
- padding: 0 0.625rem; }
1977
-
1978
- .cv--plus--3aHT2 {
1979
- width: 1.5rem;
1980
- height: 1.5rem;
1981
- left: 0px;
1982
- top: 50%;
1983
- margin-top: -0.75rem; }
1984
-
1985
- .cv--image--J9jn_ {
1986
- width: 9rem; }
1987
-
1988
- .cv--actions--3vCmp {
1989
- top: 0;
1990
- right: 0.625rem;
1991
- width: 2rem;
1992
- height: 2rem;
1993
- margin-top: 0.9375rem; }
1994
- .cv--actions--3vCmp svg {
1995
- opacity: 0.5;
1996
- text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5); }
1997
- .cv--actions--3vCmp:hover {
1998
- background-color: rgba(0, 0, 0, 0.4); }
1999
- .cv--actions--3vCmp:hover svg {
2000
- opacity: 1;
2001
- color: #fff; }
2002
-
2003
- .cv--thumbnail--3S7KI {
2004
- display: block;
2005
- margin: 0 auto;
2006
- max-width: 16rem; }
2007
-
2008
- .cv--start--GpK3N {
2009
- border-radius: 5px;
2010
- box-shadow: 0 1px 4px 1px #D7D7D7;
2011
- border: 1px solid #D7D7D7; }
2012
-
2013
- .cv--subtitle--2tQJA {
2014
- font-size: 1rem;
2015
- color: #5B5E68; }
2016
-
2017
- .cv--options--BxsJX {
2018
- font-weight: 600; }
2019
-
2020
- .cv--optionHeader--2OS3h {
2021
- font-weight: 600; }
2022
-
2023
- .cv--optionText--1sNAq {
2024
- margin-left: 1rem; }
2025
-
2026
- .cv--image--xsCzA {
2027
- margin: 0 auto; }
2028
-
2029
- .cv--infoMessage--3jOln {
2030
- border-bottom-left-radius: 5px;
2031
- border-bottom-right-radius: 5px; }
2032
-
2033
- .cv--migrationBanner--n_A_A {
2034
- background-color: #51ADA3; }
2035
-
2036
- .cv--migrationBadge--plIse {
2037
- background-color: #51ADA3;
2038
- color: white; }
2039
-
2040
- .cv--migrationContainer--33xeg {
2041
- width: 650px; }
2042
-
2043
- .cv--smart--1dRs0 {
2044
- background: white;
2045
- border-radius: 5px;
2046
- box-shadow: 0 1px 4px 1px #D7D7D7;
2047
- border: 1px solid #D7D7D7;
2048
- overflow: hidden; }
2049
-
2050
- .cv--leftNav--3dpUO {
2051
- border-right: 1px solid #eaeaea;
2052
- max-width: 22rem;
2053
- overflow-y: auto;
2054
- max-height: 40rem; }
2055
-
2056
- .cv--item--13Gu_ {
2057
- background-color: transparent;
2058
- padding: 0.1rem 0; }
2059
-
2060
- .cv--text--2mbEb {
2061
- padding-left: 0; }
2062
- .cv--text--2mbEb:hover {
2063
- color: #F8981D; }
2064
-
2065
- .cv--folderTree--2NhVk {
2066
- list-style: none;
2067
- padding-left: 1.5rem; }
2068
- .cv--folderTree--2NhVk .cv--node--1dMK1 {
2069
- max-width: 100%;
2070
- display: block;
2071
- -moz-box-sizing: border-box;
2072
- box-sizing: border-box;
2073
- padding: 0.125rem 1.5rem; }
2074
- .cv--folderTree--2NhVk .cv--node--1dMK1:hover {
2075
- text-decoration: none; }
2076
-
2077
- .cv--selected--1AACi > .cv--item--13Gu_ .cv--text--2mbEb {
2078
- color: #F8981D; }
2079
-
2080
- .cv--videoList--3RFYO {
2081
- height: 34.375rem;
2082
- overflow-y: auto; }
2083
-
2084
- .cv--banner--O5CMF {
2085
- background-color: #51ADA3; }
2086
-
2087
- .cv--learnMore--MjcUE {
2088
- text-decoration: underline; }
2089
-
2090
- .cv--category--BSPKV {
2091
- font-weight: 600; }
2092
-
2093
- .cv--videoList--3TgUv {
2094
- height: 34.375rem; }
2095
-
2096
- .cv--progressBarContainter--1aNlZ {
2097
- margin-top: 0.45rem; }
2098
-
2099
- .cv--progressBar--325nt {
2100
- height: 0.5rem;
2101
- border-radius: 5px; }
2102
-
2103
- .cv--circle--3iX0l {
2104
- height: 20rem;
2105
- width: 20rem;
2106
- position: relative;
2107
- margin: 0 auto;
2108
- border-radius: 50%;
2109
- background-color: #D7D7D7; }
2110
- .cv--circle--3iX0l::after {
2111
- top: 1.5rem;
2112
- left: 1.5rem;
2113
- position: absolute;
2114
- display: block;
2115
- content: " ";
2116
- border-radius: 50%;
2117
- background-color: #eaeaea;
2118
- width: 17rem;
2119
- height: 17rem; }
2120
- .cv--circle--3iX0l > span {
2121
- position: absolute;
2122
- left: 0;
2123
- top: 5rem;
2124
- z-index: 1;
2125
- width: 20rem;
2126
- font-size: 5.75em;
2127
- font-weight: 600;
2128
- display: block;
2129
- text-align: center;
2130
- white-space: nowrap; }
2131
- .cv--circle--3iX0l > span > .cv--extraText--1nYnx {
2132
- margin: -10px auto;
2133
- max-width: 70%;
2134
- color: #5B5E68;
2135
- font-weight: 400;
2136
- display: block;
2137
- font-size: 1rem; }
2138
-
2139
- .cv--progressCircleContainer--2l1Al {
2140
- height: 20rem;
2141
- width: 20rem;
2142
- position: relative;
2143
- margin: 0 auto;
2144
- border-radius: 50%;
2145
- background-color: #D7D7D7; }
2146
-
2147
- .cv--progressCircle--1RbA5 {
2148
- -webkit-transition: 5s stroke-dashoffset;
2149
- transition: 5s stroke-dashoffset; }
2150
-
2151
- .cv--generateReport--2PRgW {
2152
- position: absolute;
2153
- right: 0;
2154
- bottom: 0.2rem; }
2155
-
2156
- .cv--progress--bJ21G {
2157
- border-radius: 5px;
2158
- box-shadow: 0 1px 4px 1px #D7D7D7;
2159
- border: 1px solid #D7D7D7; }
2160
-
2161
- .cv--remaining--1T3fH {
2162
- color: #5B5E68; }
2163
-
2164
- .cv--info--3m6CX {
2165
- font-size: 1rem; }
2166
-
2167
- .cv--migrationContainer--MVm9U {
2168
- width: 650px; }
2169
-
2170
- .cv--migrationSyncContainer--KH7rf {
2171
- position: relative;
2172
- margin: 0 auto;
2173
- text-align: center; }
2174
- .cv--migrationSyncContainer--KH7rf img {
2175
- display: inline-block; }
2176
- .cv--migrationSyncContainer--KH7rf .cv--syncServer--2-0ob {
2177
- margin-right: 25px;
2178
- width: 100px; }
2179
- .cv--migrationSyncContainer--KH7rf .cv--syncVideo--2Rh0f {
2180
- position: relative;
2181
- width: 65px;
2182
- -webkit-animation: cv--migrationSyncAnimation--oXD93 1.7s infinite ease;
2183
- animation: cv--migrationSyncAnimation--oXD93 1.7s infinite ease;
2184
- -webkit-transform: rotate(-20deg) scale(0.8);
2185
- transform: rotate(-20deg) scale(0.8);
2186
- opacity: .7; }
2187
- .cv--migrationSyncContainer--KH7rf .cv--syncCloud--3B9BP {
2188
- margin-top: 20px;
2189
- margin-left: 25px;
2190
- width: 170px; }
2191
-
2192
- @-webkit-keyframes cv--migrationSyncAnimation--oXD93 {
2193
- 0% {
2194
- top: 0px;
2195
- left: -100px;
2196
- -webkit-transform: rotate(-20deg) scale(0.8);
2197
- transform: rotate(-20deg) scale(0.8);
2198
- opacity: .7; }
2199
- 50% {
2200
- top: -50px;
2201
- left: 25px;
2202
- -webkit-transform: rotate(0) scale(1.4);
2203
- transform: rotate(0) scale(1.4);
2204
- opacity: 1; }
2205
- 100% {
2206
- top: 10px;
2207
- left: 150px;
2208
- -webkit-transform: rotate(20deg) scale(0.8);
2209
- transform: rotate(20deg) scale(0.8);
2210
- opacity: .7; } }
2211
-
2212
- @keyframes cv--migrationSyncAnimation--oXD93 {
2213
- 0% {
2214
- top: 0px;
2215
- left: -100px;
2216
- -webkit-transform: rotate(-20deg) scale(0.8);
2217
- transform: rotate(-20deg) scale(0.8);
2218
- opacity: .7; }
2219
- 50% {
2220
- top: -50px;
2221
- left: 25px;
2222
- -webkit-transform: rotate(0) scale(1.4);
2223
- transform: rotate(0) scale(1.4);
2224
- opacity: 1; }
2225
- 100% {
2226
- top: 10px;
2227
- left: 150px;
2228
- -webkit-transform: rotate(20deg) scale(0.8);
2229
- transform: rotate(20deg) scale(0.8);
2230
- opacity: .7; } }
2231
-
2232
- .cv--videosAdded--2mvcb {
2233
- margin: 0 auto;
2234
- border-radius: 5px;
2235
- box-shadow: 0 1px 4px 1px #D7D7D7;
2236
- border: 1px solid #D7D7D7; }
2237
-
2238
- .cv--migrationContainer--_kJhb {
2239
- width: 650px; }
2240
-
2241
- .cv--info--wszk6 {
2242
- margin: 0 auto;
2243
- font-size: 1rem; }
2244
-
2245
- .cv--image--1HF1l {
2246
- margin: 0 auto;
2247
- width: 33%; }
2248
-
2249
- .cv--publisherLink--2SXoK {
2250
- font-weight: 600; }
2251
-
2252
- .cv--icon--2wZJN {
2253
- position: relative;
2254
- right: -0.2rem; }
2255
- .cv--icon--2wZJN svg {
2256
- width: 1.5rem;
2257
- height: 1.5rem; }
2258
-
2259
- .cv--container--2SvL3 {
2260
- background: white;
2261
- border-radius: 5px;
2262
- box-shadow: 0 1px 4px 1px #D7D7D7;
2263
- border: 1px solid #D7D7D7; }
2264
-
2265
- .cv--header--2KEEa {
2266
- border-bottom: 1px solid #eaeaea;
2267
- font-size: 1.125rem;
2268
- font-weight: 600; }
2269
-
2270
- .cv--footer--wCMJb {
2271
- border-top: 1px solid #eaeaea; }
2272
-
2273
- .cv--backupImage--10r2k {
2274
- width: 50%;
2275
- position: relative;
2276
- top: -25px;
2277
- margin: 0 auto; }
2278
-
2279
- .cv--info--1O7-y, .cv--button--1cN_3 {
2280
- font-size: 0.95rem; }
2281
-
2282
- .cv--bolder--bxulh, .cv--button--1cN_3 {
2283
- font-weight: 600; }
2284
-
2285
- .cv--button--1cN_3:focus {
2286
- box-shadow: none; }
2287
-
2288
- .cv--question--2OYs- {
2289
- background-color: #5B5E68;
2290
- border-radius: 0.25rem; }
2291
-
2292
- .cv--collapse--1dD-L {
2293
- background-color: white;
2294
- position: relative;
2295
- top: -14px;
2296
- border-bottom-left-radius: 0.25rem;
2297
- border-bottom-right-radius: 0.25rem;
2298
- -webkit-transition: none !important;
2299
- transition: none !important; }
2300
- .cv--collapse--1dD-L .cv--collapseContents--2sqEn {
2301
- padding-top: 1rem; }
2302
- .cv--collapse--1dD-L hr {
2303
- height: 2px;
2304
- background-color: #eaeaea;
2305
- margin: 0;
2306
- border: none; }
2307
-
2308
- .cv--migrationBackupContainer--2Hcov {
2309
- width: 850px; }
2310
-
2311
- .cv--backupProgress--15jUh {
2312
- height: 625px; }
2313
-
2314
- .cv--info--1NjZL {
2315
- font-weight: 600;
2316
- font-size: 1rem; }
2317
-
2318
- .cv--progress--fp9FZ circle {
2319
- stroke: #60B789; }
2320
-
2321
- .cv--progress--fp9FZ::after {
2322
- background: white; }
2323
-
2324
- .cv--migrationBackupContainer--28z_5 {
2325
- width: 850px; }
2326
-
2327
- .cv--complete--2YgCz {
2328
- height: 625px;
2329
- position: relative; }
2330
-
2331
- .cv--middle--2QcuL {
2332
- position: relative;
2333
- top: 20%; }
2334
-
2335
- .cv--checkedImage--30_1Z, .cv--warningImage--2gF7F {
2336
- width: 8rem;
2337
- margin: 0 auto; }
2338
-
2339
- .cv--warningImage--2gF7F {
2340
- width: 10rem; }
2341
-
2342
- .cv--welcome--3MANn {
2343
- height: 625px;
2344
- position: relative; }
2345
-
2346
- .cv--middle--2sLB2 {
2347
- position: absolute;
2348
- top: 50%;
2349
- left: 50%;
2350
- margin-left: -250px;
2351
- margin-top: -175px; }
2352
-
2353
- .cv--image--1--7s {
2354
- width: 12rem;
2355
- margin: 0 1.65rem 0 auto; }
2356
-
2357
- .cv--text--ivhYc {
2358
- margin: 0 auto; }
2359
-
2360
- .cv--migrationBackupContainer--W7da5 {
2361
- width: 850px; }
2362
-
2363
- .cv--image--2A7jn {
2364
- width: 9rem; }
2365
-
2366
- .cv--hide--5hYaK {
2367
- display: none; }
2368
-
2369
- .cv--backupProgress--sg8Kg {
2370
- height: 625px; }
2371
-
2372
- .cv--info--2HxTI {
2373
- font-weight: 600;
2374
- font-size: 1rem; }
2375
-
2376
- .cv--progress--hbLuA circle {
2377
- stroke: #60B789; }
2378
-
2379
- .cv--progress--hbLuA::after {
2380
- background: white; }
2381
-
2382
- .cv--migrationBackupContainer--2lpDI {
2383
- width: 850px; }
2384
-
2385
- .cv--complete--2A6IC {
2386
- height: 625px;
2387
- position: relative; }
2388
-
2389
- .cv--middle--1R3SI {
2390
- position: relative;
2391
- top: 20%; }
2392
-
2393
- .cv--checkedImage--2Vb1u {
2394
- width: 8rem;
2395
- margin: 0 auto; }
2396
-
2397
- .cv--migrationBackupContainer--26fzE {
2398
- width: 850px; }
2399
-
2400
- .cv--rating--3IJcl {
2401
- color: #fff;
2402
- cursor: default; }
2403
-
2404
- .cv--svgContainer---0ibU {
2405
- width: 1.5rem;
2406
- height: 1.5rem;
2407
- display: inline-block;
2408
- position: absolute;
2409
- left: 0.375rem;
2410
- margin-top: -0.75rem;
2411
- top: 50%; }
2412
-
2413
- .cv--selectedButton--28zhr {
2414
- position: relative;
2415
- padding-left: 1.875rem; }
2416
-
2417
- .cv--showPreview--2r4VF {
2418
- visibility: hidden;
2419
- font-weight: 600;
2420
- margin-bottom: -0.75rem;
2421
- margin-top: 0.25rem; }
2422
-
2423
- .cv--component--13khy {
2424
- position: relative; }
2425
-
2426
- .cv--thumbnailContainer--_gEcp {
2427
- width: 8rem;
2428
- height: 4.5rem; }
2429
-
2430
- .cv--metaContainer--zuMb1 {
2431
- width: -webkit-calc(100% - 19.25rem);
2432
- width: calc(100% - 19.25rem);
2433
- vertical-align: top; }
2434
-
2435
- .cv--actionsContainer--1ppp8 {
2436
- width: 10rem; }
2437
-
2438
- .cv--videoItem--2Ru6c {
2439
- cursor: pointer; }
2440
- .cv--videoItem--2Ru6c:hover {
2441
- background-color: #f8f8f8; }
2442
- .cv--videoItem--2Ru6c:hover .video-item-actions svg {
2443
- color: #979797; }
2444
- .cv--videoItem--2Ru6c:hover .video-item-actions svg:hover {
2445
- color: #313543; }
2446
- .cv--videoItem--2Ru6c:hover .video-item-show-preview {
2447
- visibility: visible; }
2448
-
2449
- .cv--doNotAdd--8l6WV {
2450
- position: absolute;
2451
- top: 0;
2452
- left: 0;
2453
- right: 0;
2454
- bottom: 0;
2455
- background-color: #f8f8f8;
2456
- z-index: 3; }
2457
-
2458
- .cv--migrationErrorView--1Jo6e {
2459
- border-radius: 5px;
2460
- overflow: hidden; }
2461
-
2462
- .cv--videoContainer--7tGnj {
2463
- height: 31rem;
2464
- overflow-y: scroll; }
2465
-
2466
- .cv--svgContainer--csNIF {
2467
- width: 7.5rem;
2468
- height: 7.5rem; }
2469
-
2470
- .cv--headingContainer--30NNv {
2471
- min-height: 10.6875rem; }
2472
-
2473
- .cv--tabsContainer--10__f {
2474
- min-height: 4.09375rem; }
2475
-
2476
- .cv--list--3aP3V .cv--item--1uqg-:last-child {
2477
- margin-bottom: -0.0625rem; }
2478
-
2479
- .cv--selected--29kkj {
2480
- background-color: #979797;
2481
- color: #fff; }
2482
-
2483
- .cv--actions--2xyI4 {
2484
- background-color: #f8f8f8; }
2485
-
2486
- .cv--source--153F1 {
2487
- color: #fff;
2488
- border-radius: 1rem; }
2489
-
2490
- .cv--button--3I7SQ {
2491
- width: 6rem; }
2492
-
2493
- .cv--avatar--2c8zD {
2494
- border-radius: 50%;
2495
- background-color: #51ADA3;
2496
- display: inline-block;
2497
- width: 2.1875rem;
2498
- height: 2.1875rem;
2499
- text-align: center;
2500
- line-height: 2.1875rem;
2501
- background-size: cover;
2502
- background-position: top center;
2503
- vertical-align: top; }
2504
-
2505
- .cv--message--EQzqm {
2506
- border-left: 0.125rem solid #51ADA3; }
2507
-
2508
- .cv--interactive--mnE2L {
2509
- background-color: #F8981D;
2510
- color: #fff; }
2511
-
2512
- .cv--requestList--3DFfh {
2513
- width: 20rem; }
2514
-
2515
- .cv--requestDetails--2ezub {
2516
- width: -webkit-calc(100% - 20rem);
2517
- width: calc(100% - 20rem);
2518
- vertical-align: top;
2519
- margin-left: -0.0625rem; }
2520
-
2521
- .cv--uploadImage--2qNTM {
2522
- width: 10.5rem;
2523
- height: 7.375rem; }
2524
-
2525
- .cv--requiredStar--3m_pH {
2526
- color: red; }
2527
-
2528
- .cv--title--2yTdm {
2529
- overflow-wrap: break-word; }
2530
-
2531
- .cv--completeImage--1LiuD {
2532
- width: 10.5rem;
2533
- height: 8.1875rem; }
2534
-
2535
- .cv--svgContainer--2KSbB {
2536
- width: 1rem;
2537
- height: 1rem; }
2538
-
2539
- .cv--leftNav--2r3wp {
2540
- top: 0;
2541
- bottom: 0;
2542
- position: absolute;
2543
- width: 15rem;
2544
- background-color: #fff;
2545
- min-height: -webkit-calc(100vh - 6.5625rem);
2546
- min-height: calc(100vh - 6.5625rem);
2547
- padding-bottom: 1.25rem;
2548
- box-shadow: 0.3125rem 0 0.3125rem -0.3125rem #D7D7D7; }
2549
-
2550
- .cv--topNav--2tPrC {
2551
- padding-left: 15rem; }
2552
-
2553
- .cv--contentBox--gzfZN {
2554
- width: 100%;
2555
- padding-top: 1.25rem; }
2556
-
2557
- .cv--leftNavContentBox--1yUOQ {
2558
- padding-left: 15rem; }
2559
-
2560
- .cv--sizingBox--2Rol1 {
2561
- position: relative;
2562
- min-height: -webkit-calc(100vh - 6.5625rem);
2563
- min-height: calc(100vh - 6.5625rem); }
2564
-
2565
- .cv--alertBox--1TUsf {
2566
- position: relative; }
2567
- .cv--alertBox--1TUsf ul {
2568
- bottom: 0;
2569
- right: -webkit-calc(1.25rem + 5rem);
2570
- right: calc(1.25rem + 5rem);
2571
- position: fixed;
2572
- list-style-type: none; }
2573
-
2574
- .cv--lockedWidth--1XHqq {
2575
- height: 100%;
2576
- min-width: 1200px; }
2577
- .cv--lockedWidth--1XHqq .container {
2578
- min-width: -webkit-calc(1200px - 15rem);
2579
- min-width: calc(1200px - 15rem); }
2580
- .cv--lockedWidth--1XHqq .cv--contentBox--gzfZN .container {
2581
- min-width: -webkit-calc(1200px - 15rem);
2582
- min-width: calc(1200px - 15rem); }
2583
-
2584
- .cv--banner--1kvBB {
2585
- background-color: #4E9ACE;
2586
- color: #fff;
2587
- text-align: center; }
2588
-
2589
- svg {
2590
- fill: currentColor;
2591
- width: 100%;
2592
- height: 100%; }
2593
-
2594
- .svg-container {
2595
- width: 1.5rem;
2596
- height: 1.5rem; }
2597
-
2598
-
2599
- /*# sourceMappingURL=library-editor-app.css.map*/
1
+ ._1OZCN{padding-left:-webkit-calc(3.75rem) !important;padding-left:calc(3.75rem) !important}._35XrM{width:8rem;height:4.5rem}._1-L5x{width:-webkit-calc(100% - 8rem);width:calc(100% - 8rem);height:4.5rem}._3nfiJ{width:25%;height:1.4rem}
2
+
3
+ ._38Usa{padding-top:-webkit-calc(1.25rem + 1.5rem + .625rem) !important;padding-top:calc(1.25rem + 1.5rem + .625rem) !important}
4
+
5
+ ._1ltue{width:20%;height:2.5rem}
6
+
7
+ .OUZAW{width:1.5rem;height:1.5rem;display:inline-block;vertical-align:top;margin-right:.3125rem}.NG4Up{width:-webkit-calc(100% - 1.5rem - .625rem);width:calc(100% - 1.5rem - .625rem);display:inline-block;vertical-align:top}._2s7vw{max-height:3rem;overflow:hidden}._2s7vw,._1VE5-{height:-webkit-calc(1.3125rem - .3125rem);height:calc(1.3125rem - .3125rem)}.OUZAW{border-radius:100%}._1VE5-{width:15%}
8
+
9
+ ._35CAt ._1r5u9:last-child{border-bottom:none !important}._1ttnP{width:40%}._3Tq3M{width:75%}._33-LZ{width:25%}._1ttnP,._3Tq3M,._33-LZ{height:1rem}
10
+
11
+ ._1cCHt{background-color:#f8f8f8}._2x-so{width:3.5rem;height:1.25rem;border-radius:1rem}._2y4ng{width:6rem}._1uCMl{width:20rem;height:2.1875rem}._1uCMl:after{position:absolute;right:.75rem;top:50%;margin-top:-.15em}
12
+
13
+ ._3_8yg{height:-webkit-calc(2 * 2rem + 1.875rem + 1.3125rem);height:calc(2 * 2rem + 1.875rem + 1.3125rem)}
14
+
15
+ ._16p9Y{background-color:#f1f1f1;background-size:cover;background-position:center;height:0;padding-bottom:-webkit-calc(185 / 1000 * 100%);padding-bottom:calc(185 / 1000 * 100%)}._16p9Y .KoZV-{background-color:rgba(0,0,0,0.5);top:0;width:2rem;height:2rem}._16p9Y .KoZV- svg{opacity:1;text-shadow:1px 1px 1px rgba(0,0,0,0.5)}._16p9Y h1{bottom:1.25rem;left:1.25rem;max-width:100%;text-shadow:1px 1px 1px rgba(0,0,0,0.5);overflow-wrap:break-word;max-height:5.2rem;overflow:hidden;padding:0.1rem 1.25rem 0.1rem 0}
16
+
17
+ ._3owCz{width:8.8rem}
18
+
19
+ ._10tNq:after{display:inline-block;vertical-align:middle;width:5.125rem;height:2.0625rem;content:""}
20
+
21
+ .oGPHd{width:100%;height:155px}._1tn1v,._1OlIS,._3xERx{width:100%;height:1.85rem}._1OlIS,._3xERx{width:75%;height:1.35rem}._3xERx{width:50%}
22
+
23
+ .rJRCI,._3O5I3{width:200px;height:1.55rem;margin-top:0.7rem}._3O5I3{width:70px}
24
+
25
+ .z4_PP,._1CvDv{width:10rem;height:1.85rem}._1CvDv{width:50%;height:1.35rem}
26
+
27
+ ._1K9wl,._31qrm,._1VUMk,._35o6Z{width:8rem;height:1.75rem}._1VUMk{width:6rem}._35o6Z{width:12rem}._2SZ3v{width:8rem;height:2rem}
28
+
29
+ ._1JGs8{width:8rem;height:1.3125rem}._11o1N{width:6rem;height:1.3125rem}.ebrIQ{height:12.5rem}._2xpxP,._3OIzb{height:2.1875rem;width:100%}._3OIzb{height:4rem}
30
+
31
+ ._1Yt1j,.tJ4KG,._2BFZB{width:8rem;height:2rem}.tJ4KG,._2BFZB{width:100%}._2BFZB{height:1.5rem}
32
+
33
+ ._2KAd_,._2ai1L{width:8rem;height:1.25rem}._2ai1L{height:2rem;width:100%}.crdSU{width:8rem;height:2.5rem}
34
+
35
+ .H6oUk{position:relative;width:100%;padding:0;overflow:hidden;padding-top:56.25%}
36
+
37
+ ._15fBJ{width:8rem;height:2rem}._2OP4S{height:1.5rem;width:40%}._17wos{width:50%;height:4rem;border-radius:0.25rem}
38
+
39
+ ._11___{height:5rem}._3RRYx{height:2.1875rem}
40
+
41
+ ._3pMnf{border-bottom:0.125rem solid #eaeaea}._3DDqe{background-color:#f8f8f8;border-bottom:1px solid #eaeaea}._3DDqe a{text-align:center;cursor:pointer}._3DDqe a:hover{text-decoration:none}._3DDqe .WtJIT{max-width:22rem}._3DDqe ._2P6wN{max-width:17rem}._36_Ky ._3DDqe{background-color:#fff}._36_Ky ._3DDqe ._2P6wN{display:none}._36_Ky .WtJIT{text-align:left}.oHXCU ._3DDqe .WtJIT{background-color:#fff;border-bottom:1px solid #fff;margin-bottom:-1px;border-right:1px solid #eaeaea;font-weight:bold}.oHXCU ._3DDqe ._2P6wN{border-left:1px solid #eaeaea;margin-left:-1px;margin-bottom:-1px}._Ztdf ._3DDqe ._2P6wN{background-color:#fff;margin-bottom:-1px;border-left:1px solid #eaeaea;border-right:1px solid #eaeaea;border-bottom:1px solid #fff}.edUQE{color:#FFCD52;vertical-align:middle}
42
+
43
+ ._2YEbA{max-height:34.375rem;overflow:hidden}._1-Tvp,._3BDvT{width:14rem;height:1.1rem;top:0.2rem;position:relative}._3BDvT{width:4rem}._2ew2h{top:0.1rem}
44
+
45
+ .O3FnZ{display:inline-block;top:-0.2rem}.O3FnZ svg{width:1.8rem;height:1.8rem}.Rbj8Y{border-bottom:1px solid #eaeaea}._2mKzS{top:0.1rem}._3ajGP{font-weight:600}
46
+
47
+ ._2s0QU{display:none;color:#4E9ACE;font-weight:500}._2s0QU:hover{color:#4E9ACE;text-decoration:none}._1ncwl{color:#B5B5B5}._2G1C1{opacity:0.5}._2G1C1 .custom-control-input:checked ~ .custom-control-label::before{border:none !important}._225JZ{top:0.1rem}.fFRMW{border-bottom:1px solid #eaeaea}.fFRMW ._3YCJO{font-weight:400;color:#313543;text-decoration:none}.fFRMW:hover{background-color:#f8f8f8}.fFRMW:hover ._1ncwl{display:none}.fFRMW:hover ._2s0QU{display:inline-block}._37_lU{width:2rem}._3gjN2{font-style:italic;color:#B5B5B5;font-size:0.75rem;margin-top:0.1rem}
48
+
49
+ ._1S3_p,._1pAWe{width:12rem;height:1.75rem;opacity:0.75}._1pAWe{height:1.25rem;width:10rem;margin:0 0 0 auto}
50
+
51
+ .rShIv{width:80%;height:1.25rem}
52
+
53
+ ._3qlXe{border-top:1px solid #eaeaea}._1ul9Z{font-weight:500;color:#5B5E68}._3HS1V{min-width:90px;padding:0.25rem 1.25rem;color:white}
54
+
55
+ .b4Mqw{height:3.375rem}._2OV3l{display:inline-block;margin-top:0.35rem}._6H8te{margin-top:0.35rem;font-weight:500}._6H8te svg{width:1.5rem;margin:-0.2rem 0.2rem 0 0}._3RKrR{margin-left:1rem;display:inline-block}._1T015{width:1.05rem;height:1.05rem;position:relative;top:-0.15rem}._3Q3UJ{width:1.35rem;height:1.35rem;position:relative;top:-0.15rem;color:#D7D7D7}.ZsxkB{color:#60B789}.uKtsP{position:relative;top:1px;left:2px}
56
+
57
+ ._1CETN{width:8.75rem}
58
+
59
+ ._3QS4m{width:8rem;height:8rem;margin:0 auto}._1odt6{display:block;height:2.1875rem}.JJCF1{position:relative;top:0.4375rem;display:block;height:1.25rem;width:6.25rem;margin-left:1.25rem}
60
+
61
+ ._3hPOj{width:8rem;height:2rem}._2zGvZ{display:block;height:8.125rem}
62
+
63
+ ._3b-w5{width:9rem;height:1.35rem}.k49US{width:50%;height:1.35rem;margin-bottom:0.8rem}._1QGdP{width:90%;height:2.7rem}._2V8gJ{width:25rem;height:15rem}
64
+
65
+ ._2x-al{width:8rem;height:2rem}.hFvEo{height:1.5rem;width:40%}
66
+
67
+ .cy-sv{width:3rem}._35_iB{width:4rem}._2sYuD{width:5rem}
68
+
69
+ .fXaTF{padding-left:-webkit-calc(1.875rem);padding-left:calc(1.875rem)}._3Ygal{width:1.5rem;height:1.5rem;left:0.375rem;top:50%;margin-top:-.75rem}._1uVUJ{padding:7.5rem}._2-GAI{height:7.5rem}._36Ljd{height:5rem}
70
+
71
+ ._6L-Rn{border-radius:.25rem;border:1px solid #D7D7D7;box-shadow:2px 3px 6px 1px rgba(0,0,0,0.1);-webkit-animation:_2ISjU 500ms;animation:_2ISjU 500ms}._6L-Rn .close{float:none;line-height:0.8;vertical-align:top}._3X3sP{vertical-align:top;text-align:center}._2_sUY{width:15.625rem}._2_sUY ._2nrzl{line-height:1.5;font-weight:500}._2_sUY ._2nrzl,._2_sUY ._1UIK0,._2_sUY ._2xwcl{font-size:.875rem}._2yj4z{vertical-align:middle;width:1.5rem;height:1.5rem}._1O_xv{z-index:1071}._3pw7F{-webkit-animation:eLPSS 500ms !important;animation:eLPSS 500ms !important}.OqzPi{opacity:0}@-webkit-keyframes _2ISjU{from{opacity:0}to{opacity:1}}@keyframes _2ISjU{from{opacity:0}to{opacity:1}}@-webkit-keyframes eLPSS{from{opacity:1}to{opacity:0}}@keyframes eLPSS{from{opacity:1}to{opacity:0}}
72
+
73
+ ._3fIrz{text-shadow:0.05rem 0 0 currentColor}._3fIrz .badge{text-shadow:none}._1RDxv{height:1.5rem;position:relative;margin-top:-0.25rem}._1RDxv svg{width:1.5rem;height:1.5rem}
74
+
75
+ ._3S5iJ{color:red}._3iZQ5{color:#B5B5B5}.B4xS9 ._3n3sM,._3bWJB ._3n3sM,._3qayV ._3n3sM,._3ojjo ._3n3sM,._2hA-0 ._3n3sM,._1SMGG ._3n3sM,._3AkUv ._3n3sM,._1DYCl ._3n3sM,._2CbiR ._3n3sM,._3hB5o ._3n3sM,.ksEaA ._3n3sM,.h7P2B ._3n3sM,._3fMUg ._3n3sM,.GwqaB ._3n3sM{display:none}.B4xS9 ._3n3sM a,._3bWJB ._3n3sM a,._3qayV ._3n3sM a,._3ojjo ._3n3sM a,._2hA-0 ._3n3sM a,._1SMGG ._3n3sM a,._3AkUv ._3n3sM a,._1DYCl ._3n3sM a,._2CbiR ._3n3sM a,._3hB5o ._3n3sM a,.ksEaA ._3n3sM a,.h7P2B ._3n3sM a,._3fMUg ._3n3sM a,.GwqaB ._3n3sM a{cursor:pointer}.B4xS9 ._3n3sM a:hover,._3bWJB ._3n3sM a:hover,._3qayV ._3n3sM a:hover,._3ojjo ._3n3sM a:hover,._2hA-0 ._3n3sM a:hover,._1SMGG ._3n3sM a:hover,._3AkUv ._3n3sM a:hover,._1DYCl ._3n3sM a:hover,._2CbiR ._3n3sM a:hover,._3hB5o ._3n3sM a:hover,.ksEaA ._3n3sM a:hover,.h7P2B ._3n3sM a:hover,._3fMUg ._3n3sM a:hover,.GwqaB ._3n3sM a:hover{text-decoration:underline !important}.B4xS9:hover>._3n3sM,._3bWJB:hover>._3n3sM,._3qayV:hover>._3n3sM,._3ojjo:hover>._3n3sM,._2hA-0:hover>._3n3sM,._1SMGG:hover>._3n3sM,._3AkUv:hover>._3n3sM,._1DYCl:hover>._3n3sM,._2CbiR:hover>._3n3sM,._3hB5o:hover>._3n3sM,.ksEaA:hover>._3n3sM,.h7P2B:hover>._3n3sM,._3fMUg:hover>._3n3sM,.GwqaB:hover>._3n3sM{display:inline-block}.quxL2{height:1.5rem;position:relative;margin-top:-0.25rem}.quxL2 svg{width:1.5rem;height:1.5rem}._18UDY{width:1.25rem;height:1.25rem;display:inline-block;color:#B5B5B5}
76
+
77
+ .ZO89K,._1EbzE,._3ucfy{display:none}._2D_ox{position:relative}._2D_ox .ZO89K,._2D_ox ._1EbzE,._2D_ox ._3ucfy{display:block;position:fixed;top:0;left:0;right:0;bottom:0}._2D_ox .ZO89K{z-index:1040;background-color:#313543;opacity:.5}._2D_ox ._1EbzE{z-index:1041}._2D_ox ._1EbzE h1{position:absolute;top:50%;width:100%;text-align:center;color:#fff;margin-top:-1rem}._2D_ox ._3ucfy{z-index:1042}._2D_ox ._3sQtM{display:block;position:fixed;top:6rem;left:6rem;right:6rem;bottom:6rem;border:3px dashed #fff;border-radius:.25rem}
78
+
79
+ ._1nWzn{width:1.3rem;height:1.3rem;display:inline-block;position:relative;top:-2px}
80
+
81
+ ._1I6jj ._1ze5G{cursor:pointer}._1I6jj ._1ze5G:hover{text-decoration:underline}._1I6jj .invalid-feedback{display:block}._1I6jj .is-invalid .btn-group{border:0.0625rem solid #D9584F;border-radius:.25rem}._1I6jj ._2hO8J{background-color:#f1f1f1;opacity:1;border:0.0625rem solid #D7D7D7;cursor:default !important;color:#B5B5B5}._1I6jj .mnQ5O{background-color:#D7D7D7}
82
+
83
+ .tOHRz{color:#B5B5B5}
84
+
85
+ ._2-D4Z{position:absolute;bottom:.375rem;right:1.875rem}._2-D4Z:hover{cursor:pointer}
86
+
87
+ ._1sAku::before,._3zc5V::before{content:'';display:inline-block;border-style:solid;border-width:0.2rem 0.2rem 0 0;height:.625rem;width:.625rem}._1sAku::before{-webkit-transform:rotate(45deg);transform:rotate(45deg)}._3zc5V::before{-webkit-transform:rotate(-135deg);transform:rotate(-135deg)}._1j_H7{position:relative}._1j_H7 .clear-button{color:#D7D7D7}._1j_H7:hover .clear-button{color:#313543}._3ViTN{position:absolute;bottom:.375rem;right:.375rem}.DzdxT{color:#B5B5B5}
88
+
89
+ ._3TIct{color:#B5B5B5}
90
+
91
+ ._1iL3O{position:absolute;right:0.3125rem;top:50%;margin-top:-.75rem;color:#D7D7D7}._1iL3O:hover{cursor:pointer}._1SWXc{position:relative}._1SWXc .twitter-typeahead{width:100%}._1SWXc .form-control[readonly]{background-color:transparent}._1SWXc .tt-hint,._1SWXc .tt-menu{width:100%}._1SWXc .tt-cursor{background-color:#4E9ACE;color:#fff;cursor:pointer}._1SWXc .tt-menu{background-color:#fff;border:1px #D7D7D7 solid;border-radius:.25rem;margin-top:0.125rem}._1SWXc .ignore-highlighting strong{font-weight:normal}._1SWXc:hover ._1iL3O{color:#313543}._3C2O8{background-color:#f1f1f1 !important;color:#B5B5B5}
92
+
93
+ ._1OOL3{border:1px solid transparent}.sCq0c{background-color:#fff2d2;border-color:#fff2d2 !important}
94
+
95
+ ._2TIZ7{background-color:#fff;font-weight:bold;z-index:60;width:18rem;display:inline-block;border-radius:.25rem;line-height:1.5rem;box-shadow:0.1875rem 0.125rem 10px rgba(51,51,51,0.3)}._3JzEU{vertical-align:middle;display:inline-block;width:1.5rem;height:1.5rem}._1Kdwj{vertical-align:middle;display:inline-block}
96
+
97
+ ._2wBn3{background-color:#eaeaea}._1r3AS a,._1r3AS a:hover{color:#B5B5B5 !important}
98
+
99
+ ._1inFA ._2ovSq{padding-left:1.25rem}._1inFA ._2pwp9{left:1rem;right:auto}._1inFA ._1inFA ._2ovSq{padding-left:2.5rem}._1inFA ._1inFA ._2pwp9{left:2.25rem;right:auto}._1inFA ._1inFA ._1inFA ._2ovSq{padding-left:3.75rem}._1inFA ._1inFA ._1inFA ._2pwp9{left:3.5rem;right:auto}._1inFA ._1inFA ._1inFA ._1inFA ._2ovSq{padding-left:5rem}._1inFA ._1inFA ._1inFA ._1inFA ._2pwp9{left:4.75rem;right:auto}._1inFA ._1inFA ._1inFA ._1inFA ._1inFA ._2ovSq{padding-left:6.25rem}._1inFA ._1inFA ._1inFA ._1inFA ._1inFA ._2pwp9{left:6rem;right:auto}._1inFA ._1inFA ._1inFA ._1inFA ._1inFA ._1inFA ._2ovSq{padding-left:7.5rem}._1inFA ._1inFA ._1inFA ._1inFA ._1inFA ._1inFA ._2pwp9{left:7.25rem;right:auto}._2WHiz{cursor:pointer}._2WHiz:hover{background-color:rgba(132,134,141,0.05)}._2pwp9{color:black;width:1.5rem;height:1.5rem;top:50%;margin-top:-.75rem;right:100%;-webkit-transform:rotate(270deg);transform:rotate(270deg);left:0}._2WHiz ._2pwp9{left:.375rem}._200l0>._2pwp9,._205QS>._2pwp9,._200l0>div>a>._2pwp9,._205QS>div>a>._2pwp9{-webkit-transform:rotate(0deg);transform:rotate(0deg)}._200l0._1-_q7>div>a>._2pwp9{-webkit-transform:rotate(270deg);transform:rotate(270deg)}._2ovSq{display:block;padding:.25rem 0;overflow-wrap:break-word;padding-right:.625rem}._2WHiz>a{font-weight:500;padding:0.125rem .625rem;display:block}._2WHiz>a ._2ovSq{padding-left:1.25rem;position:relative}._3Il7t svg{display:none}._3Il7t:hover{background-color:rgba(0,0,0,0.4)}._3Il7t:hover svg{opacity:1;color:#fff}._2WHiz>._3Il7t svg{display:inline-block}._2WHiz ._3Il7t{right:0}._1inFA{list-style:none}._1inFA ._23bpP{max-width:100%;display:block;-moz-box-sizing:border-box;box-sizing:border-box;padding:0.125rem 1.25rem}._1inFA ._23bpP:hover{text-decoration:none}._1inFA div .show svg{display:block}._2WHiz:hover>._3Il7t svg{display:block}._1inFA div:hover ._3Il7t svg{display:block}.EuNKs ul{padding-left:0}.EuNKs li{padding-left:0}.EuNKs ul,.EuNKs li{list-style:none;margin:0}.ahYSz{background-color:rgba(132,134,141,0.15)}.ahYSz:hover{background-color:rgba(132,134,141,0.25)}._200l0>.ahYSz{background-color:rgba(132,134,141,0.55)}
100
+
101
+ ._1N_VT{font-weight:600}._4pk2s{margin-bottom:1rem}._3SoBV{height:1.5rem;position:relative;margin-top:-0.25rem}._3SoBV svg{width:1.5rem;height:1.5rem}._1nYZg span:after{content:','}._1nYZg span:last-child:after{content:''}
102
+
103
+ ._2jtQl p,._152ia p{color:#D7D7D7}._2jtQl{background-color:#f8f8f8}.xdD5o svg{color:#84868D}.xdD5o svg:hover{color:#313543}._152ia .xdD5o svg:hover{color:#D7D7D7}._3G38c{cursor:pointer}._3G38c ._152ia{cursor:default}
104
+
105
+ ._59zg9{min-width:8rem;min-height:-webkit-calc(2.5 * .875rem);min-height:calc(2.5 * .875rem)}
106
+
107
+ ._2FsA6{width:5.625rem}.v6msX{cursor:pointer}.v6msX:hover{text-decoration:underline}
108
+
109
+ ._1X4l5{border-radius:.25rem;font-weight:600}
110
+
111
+ ._27gR6{width:1rem;height:1rem}._27gR6 svg{vertical-align:top}
112
+
113
+ ._5idZs:hover{text-decoration:none}._3Ty4M{font-weight:500}
114
+
115
+ .l2vGK{border:0.125rem dashed #B5B5B5;border-radius:.25rem;position:relative}.yNe5b{display:none}._3sZ1T{position:relative}._3sZ1T .l2vGK{border-color:#F8981D}._3sZ1T .yNe5b h3{position:absolute;top:50%;width:100%;text-align:center;margin-top:-1rem}._3sZ1T .yNe5b{display:block;position:absolute;top:0;left:0;right:0;bottom:0;background:rgba(255,255,255,0.6)}
116
+
117
+ ._3LHs_{width:1.5rem;height:1.5rem}._30D9s{height:0.1875rem}
118
+
119
+ ._2F3Cz{width:1.5rem;height:1.5rem;margin-top:-.75rem;top:50%;right:0}._2F3Cz.show{z-index:11}._2TdId{width:100%;height:100%;cursor:pointer}
120
+
121
+ ._293SV{width:1.5rem;height:1.5rem;margin-top:-.75rem;top:50%;right:0}._23YxG{width:100%;height:100%;cursor:pointer}
122
+
123
+ ._3o-cY,._3O1cI{width:8.8rem;position:relative}._3o-cY .dropdown-toggle:after{position:absolute;right:.75rem;top:50%;margin-top:-.15em}
124
+
125
+ ._3yOKC{width:1.5rem;height:1.5rem;left:.375rem;top:50%;margin-top:-.75rem}._1mL-8{padding-left:1.5rem}._3Z20g{border:1px solid #eaeaea}._1NQjU svg{opacity:0.5;text-shadow:1px 1px 1px rgba(0,0,0,0.5)}._1NQjU:hover{background-color:rgba(0,0,0,0.4)}._1NQjU:hover svg{opacity:1;color:#fff}
126
+
127
+ ._3Vziu{background-color:#f1f1f1;color:#B5B5B5}._3Vziu:hover{background-color:#f1f1f1;color:#B5B5B5}
128
+
129
+ ._2fUyj{width:1.5rem;height:1.5rem}
130
+
131
+ ._uEVJ{width:1.5rem;height:1.5rem}._1oLg0{cursor:pointer}
132
+
133
+ .cAujD{background-color:#F8981D;color:#fff}
134
+
135
+ ._1VUhp{width:1.5rem;height:1.5rem}._3cODR{cursor:pointer}
136
+
137
+ ._1MHyt{height:0;background-color:#f1f1f1;background-size:cover;padding-bottom:-webkit-calc(720 / 1280 * 100%);padding-bottom:calc(720 / 1280 * 100%)}._1MHyt h3{top:50%;left:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);text-shadow:1px 1px 1px rgba(0,0,0,0.5);overflow-wrap:break-word;max-width:-webkit-calc(100% - 2.5rem);max-width:calc(100% - 2.5rem);z-index:10;max-height:7.2rem;padding:0.18rem 0;overflow:hidden;-moz-box-sizing:content-box;box-sizing:content-box}@media (max-width: 1200px){._1MHyt h3{max-height:5.4rem}}._1MHyt:before{content:" ";top:.625rem;left:.625rem;right:.625rem;bottom:.625rem;position:absolute;background:rgba(51,51,51,0.5);z-index:5;-webkit-transition:background linear 500ms;transition:background linear 500ms}._1MHyt:hover:before{background:rgba(51,51,51,0.25)}._3-hwy{background:none;top:0;width:2rem;height:2rem;margin-top:.9375rem;margin-right:.9375rem;z-index:10}._3-hwy svg{opacity:0.5;text-shadow:1px 1px 1px rgba(0,0,0,0.5)}._3-hwy:hover{background-color:rgba(0,0,0,0.5)}._3-hwy:hover svg{opacity:1}
138
+
139
+ ._3cCHx{background-color:#f1f1f1 !important;position:relative}._3cCHx:after{content:' ';position:absolute;top:0;left:0;right:0;bottom:0;display:inline-block;z-index:2;background-color:rgba(255,255,255,0.5)}
140
+
141
+ .Cz1y1,._2PAV_{width:8rem;height:8rem}._2PAV_{font-weight:600;cursor:pointer;border:0.125rem dashed #D7D7D7;color:#979797}._2PAV_:hover{color:#979797}
142
+
143
+ ._3nkrW{max-height:6.5625rem;overflow-y:auto}
144
+
145
+ ._3OmsX{color:#5B5E68;text-decoration:none;cursor:pointer;background-color:transparent;border:none}._3OmsX:hover{text-decoration:underline}._3kJ8m{background-size:cover;background-position:center}.uFWnL ._3kJ8m{padding-bottom:18.5%}._3_b6l ._1mYjS{width:40%}._3_b6l ._3kJ8m{padding-bottom:56.25%}
146
+
147
+ ._3T40U{width:1.5rem;height:1.5rem}._3FRzz{cursor:pointer}
148
+
149
+ .QvhY0{font-weight:600}._2qax8{width:1.25rem;height:1.25rem}
150
+
151
+ ._1SfF-{border-radius:50%;background-color:#51ADA3;display:inline-block;width:2.1875rem;height:2.1875rem;text-align:center;line-height:2.1875rem;background-size:cover;background-position:top center}._2C5x6{color:#fff}._3FIw8 .dropdown-menu-right::before,._3FIw8 .dropdown-menu-right::after{right:-webkit-calc(1.25rem - 7px);right:calc(1.25rem - 7px)}
152
+
153
+ ._2xsqU:hover{background-color:transparent}._2xsqU:hover ._3tg2v{color:#333}
154
+
155
+ ._1n37b{display:inline-block;position:absolute;right:0;top:0}._3Fpix,._2ZmdX{width:1.25rem;height:1.25rem;display:inline-block}._2ZmdX{font-size:2rem;line-height:1rem;cursor:pointer;color:#B5B5B5}._1PypJ{display:none}._3dASy{position:relative}._3dASy:hover ._3Fpix{display:none}._3dASy:hover ._2ZmdX{display:inline-block}._3GfnF{margin-right:4rem}
156
+
157
+ ._3mx9H .progress-summary{width:-webkit-calc(25rem - (.75rem * 2) - (2px) - .3125rem);width:calc(25rem - (.75rem * 2) - (2px) - .3125rem)}.t6ngq{vertical-align:top;padding-left:36px;position:relative}._35apo{width:1.5rem;height:1.5rem;position:absolute;left:.375rem;top:50%;margin-top:-.75rem}
158
+
159
+ ._1fkFK{text-align:center;cursor:pointer;position:relative}._2uMkl{width:2rem;height:2rem;display:inline-block;vertical-align:middle}._1oXJj{position:absolute;left:0.75rem;bottom:-6px}
160
+
161
+ ._2eiO6{width:2rem;height:2rem;color:#fff;position:relative;display:inline-block;vertical-align:middle}._2eiO6:hover{cursor:pointer}._2eiO6 svg{fill:#fff}._1AHIg{position:absolute;left:1.1rem;bottom:-2px}
162
+
163
+ ._2cYy5{display:block}._3ZScE{width:1.5rem;height:1.5rem;display:inline-block;vertical-align:top;margin-right:.3125rem}.-VFaS{width:-webkit-calc(100% - 1.5rem - .625rem);width:calc(100% - 1.5rem - .625rem);display:inline-block;vertical-align:top}._1GtKT{color:#979797}._2cYy5.unread{background-color:#eef5fa}._2cYy5.unread:hover{background-color:#daeaf5}._2cYy5.read:hover{background-color:#f1f1f1}._2cYy5:hover{text-decoration:none}._3oANN{max-height:2.4rem;overflow:hidden}._3ZScE svg{vertical-align:top}.-VFaS ._3vcMF{float:right}.-VFaS ._3vcMF:hover{text-decoration:underline;cursor:pointer}
164
+
165
+ ._27rXv{width:-webkit-calc(25rem - (.75rem * 2) - (2px) - .3125rem);width:calc(25rem - (.75rem * 2) - (2px) - .3125rem)}
166
+
167
+ ._1T4m8{min-width:12rem;width:13.75rem;height:2.92062rem}._2CcDj{vertical-align:top;padding-left:36px;position:relative}._2N6Io{width:1.5rem;height:1.5rem;position:absolute;left:.375rem;top:50%;margin-top:-.75rem}.Ds2gb{padding-right:18.75rem}._3OcPu{top:0;bottom:0;right:0}
168
+
169
+ ._34Z19{color:#D7D7D7}.cZAmH{visibility:hidden;font-weight:600}
170
+
171
+ ._25RMJ{cursor:default}._1k8KB{width:1.25rem;height:1.25rem;cursor:default}._1k8KB svg{vertical-align:text-bottom}
172
+
173
+ ._1CUEt{vertical-align:middle;display:inline-block;width:1.5rem;height:1.5rem}.oZx-K{text-transform:uppercase;font-size:.92857em}
174
+
175
+ .P3914{cursor:default}
176
+
177
+ ._2HK7r{cursor:default}
178
+
179
+ ._37GpR{background-color:#F8981D;color:#fff;cursor:default}._2lAYT{color:#fff;cursor:default}._19ncQ{width:1.75rem;height:1.75rem;cursor:default;margin:0 -0.25rem}._19ncQ svg{vertical-align:text-bottom}._26lCi>span{vertical-align:middle}.UdQeS{background-color:rgba(255,205,82,0.3);cursor:default}.ExFLF{background-color:rgba(255,205,82,0.3);color:#d29500;cursor:default}._3dcfL{background-color:rgba(217,88,79,0.25);color:#D9584F;cursor:default}
180
+
181
+ ._3BLCF{width:1.25rem}._16jlV{width:8rem;height:4.5rem}._2mMws{width:-webkit-calc(100% - 19.25rem);width:calc(100% - 19.25rem);vertical-align:top}.I31I0{width:10rem}._2VkOe ._2mMws{width:-webkit-calc(100% - 20.5rem);width:calc(100% - 20.5rem)}.PoHa- .video-item-actions svg{color:#D7D7D7}.PoHa- .video-item-actions .ui-more svg{color:#979797}.PoHa-:hover{background-color:#f8f8f8}.PoHa-:hover .video-item-actions svg{color:#979797}.PoHa-:hover .video-item-actions svg:hover{color:#313543}.PoHa-:hover .video-item-show-preview{visibility:visible}.qFjv2 .PoHa-{background-color:#f1f1f1}.qFjv2 .PoHa-:hover{background-color:#f1f1f1}.qFjv2 .PoHa- ._16jlV{position:relative}.qFjv2 .PoHa- ._16jlV:after{position:absolute;top:0;left:0;right:0;bottom:0;display:block;content:" ";background:rgba(255,255,255,0.5);z-index:1}.qFjv2._2VkOe ._3iAFa{width:2.25rem}._2UBZX{-webkit-transition:height 0.3s ease-in-out;transition:height 0.3s ease-in-out;height:0;overflow:hidden}
182
+
183
+ ._1a1Re{font-weight:600}._2MZC5{position:relative}._3U9j9{white-space:pre-wrap}._1YjUg,._3SNtn,.xy3i9{position:absolute;padding-left:1.25rem;bottom:0;right:0;background:-webkit-gradient(linear, left top, right top, color-stop(0, rgba(255,255,255,0)), color-stop(#fff), color-stop(2rem), to(#fff));background:linear-gradient(to right, rgba(255,255,255,0) 0, #fff, 2rem, #fff);color:#979797}._3SNtn{padding-right:3rem;letter-spacing:0.1rem}.xy3i9{cursor:pointer}._1_L9t{display:inline}.TCdgP{display:none}._18ojI{padding-bottom:1.25rem}.nLuVF{max-height:3.9375rem;overflow:hidden}.sEELY{max-height:6.5625rem;overflow:hidden}
184
+
185
+ ._1U-Yf{white-space:nowrap}._3hYSf{width:1.5rem;height:1.5rem}._3hYSf svg{color:#979797}._2kY6B{font-weight:500}._3UjU0{cursor:default;color:#D7D7D7 !important}._3UjU0 ._3hYSf svg{color:#D7D7D7 !important}._3UjU0 ._3hYSf svg:hover{color:#D7D7D7 !important}._3UjU0 ._2kY6B{color:#D7D7D7}
186
+
187
+ ._2S4VF{background-color:#f1f1f1}._3569L{z-index:1}._1WsxD svg{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);width:20%;color:#D7D7D7}
188
+
189
+ ._2RaQu{max-width:100%;max-height:50vh;overflow-y:scroll}._2xGqi{padding-right:2rem;overflow-y:hidden;cursor:pointer}._2xGqi::after{position:absolute;right:.75rem;top:50%;margin-top:-.15em}._15kWr{color:#B5B5B5;cursor:default}._15kWr ._2xGqi::after{color:#B5B5B5}
190
+
191
+ ._1ZuuN{font-weight:600}
192
+
193
+ ._39NvM{text-align:left;border:1px solid #D7D7D7;height:2.2rem}._2Tl0W{position:absolute;right:0.3125rem;top:50%;margin-top:-.75rem;color:#D7D7D7}._2Tl0W:hover{cursor:pointer}._2julA{background-color:#f1f1f1;color:#B5B5B5;cursor:default !important}._2julA:hover{color:#B5B5B5;text-decoration:none}._SpZq{position:relative}._SpZq:hover ._2Tl0W{color:#313543}
194
+
195
+ .qKxbV{max-height:50vh}
196
+
197
+ ._1rbBR{position:relative}.htYy7::after{position:absolute;right:.75rem;top:50%;margin-top:-.15em}._1sQ7D{width:1rem;height:1rem}._2CM1D{background-color:#fff;border-color:#f1f1f1;color:#B5B5B5;-webkit-transition:none;transition:none;-moz-box-sizing:content-box;box-sizing:content-box}._2CM1D:focus{box-shadow:none}._3uv-z:hover ._2CM1D{border-color:#B5B5B5;color:#B5B5B5;z-index:2}._3uv-z:hover ._2CM1D.uC5RG{border-color:#5B5E68;color:#333;z-index:3}._2CM1D:hover ~ ._2CM1D{border-color:#f1f1f1;color:#B5B5B5;z-index:1}.uC5RG{border-color:#5B5E68;color:#333;z-index:2}._3-I1L{opacity:.5;cursor:default !important}._3-I1L:focus,._3-I1L:active{box-shadow:none !important}._10amI{font-weight:500}
198
+
199
+ ._2SYyd{min-height:5rem}.ozkKz,._1monr{height:6.375rem}.ozkKz,._36Arj{box-shadow:none}._2UGxe{border:0.0625rem solid #D7D7D7}.gaJap{height:2.25rem;top:-2.25rem;position:relative;margin:0 0 0 auto}.gaJap .btn{border-top-right-radius:0;border-bottom-left-radius:0;border-top-left-radius:.25rem !important}._3ydjG{min-height:1rem}
200
+
201
+ ._3xqNh{min-height:-webkit-calc(1.3125rem + 1rem);min-height:calc(1.3125rem + 1rem)}._3xqNh .nav{display:-webkit-inline-box;display:-webkit-inline-flex;display:inline-flex}
202
+
203
+ ._1tdTv{font-weight:600}
204
+
205
+ ._15vRB{width:20rem}._15vRB a{color:#4E9ACE !important;cursor:pointer}._15vRB a:hover{text-decoration:underline !important}
206
+
207
+ ._1SwZ2{width:20rem}._3f4T9{width:-webkit-calc(100% - 20rem);width:calc(100% - 20rem);vertical-align:top}
208
+
209
+ ._303Nb{min-height:40rem}._2ZCHY{width:-webkit-calc(100% - 20rem);width:calc(100% - 20rem);vertical-align:top}
210
+
211
+ ._2AV9T{width:9rem}
212
+
213
+ ._3iMZr{vertical-align:middle}._1xOts{font-weight:500}._1Yzts{max-width:100%;max-height:50vh;overflow-y:auto}
214
+
215
+ ._3sym3 .filter-option-item{display:inline-block;width:50%}
216
+
217
+ ._6o30E:hover ._3yReT{background-color:#4E9ACE;border-color:#4E9ACE;color:#fff}._3yReT:hover ~ ._3yReT{background-color:#f1f1f1;border-color:#f1f1f1;color:#333}
218
+
219
+ ._3jzt0{width:33%;vertical-align:top}._3jzt0:first-child{padding-left:0 !important}._3jzt0:last-child{padding-right:0 !important}._78r7L{width:25%}.aFhSG{background-color:#4E9ACE;color:#fff}
220
+
221
+ ._1SMXf{max-width:12rem}
222
+
223
+ ._2vzcB{width:16rem}._1NMES{font-size:4rem;line-height:4rem}._2g_X_{height:-webkit-calc(2 * 2rem + .65625rem);height:calc(2 * 2rem + .65625rem)}
224
+
225
+ ._2oIcc{width:-webkit-calc(100% - 16rem - 2.5rem);width:calc(100% - 16rem - 2.5rem)}._1Hn2a{max-height:-webkit-calc((1.3125rem * 2 + 1.25rem) * 6);max-height:calc((1.3125rem * 2 + 1.25rem) * 6);overflow-y:scroll;margin-right:-1.25rem}
226
+
227
+ ._1dNZs{margin:-.625rem}._1dNZs ._1dNZs{margin:0}
228
+
229
+ .REue0{width:-webkit-calc(50% - 1.25rem);width:calc(50% - 1.25rem)}
230
+
231
+ ._3Eqbe{display:block;position:relative;width:15.0625rem;height:14.3125rem;margin:0 auto}._3Eqbe div{display:block;position:absolute}._39GQb{position:absolute}.PVOtq{position:absolute;left:1.0625rem;top:0.625rem;z-index:2}._3z13a{position:absolute;z-index:3;top:4.876rem;left:8.5rem}@-webkit-keyframes _2FR1z{0%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}48%{-webkit-transform:rotate(-20deg);transform:rotate(-20deg)}55%{-webkit-transform:rotate(-20deg);transform:rotate(-20deg)}90%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}100%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}}@keyframes _2FR1z{0%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}48%{-webkit-transform:rotate(-20deg);transform:rotate(-20deg)}55%{-webkit-transform:rotate(-20deg);transform:rotate(-20deg)}90%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}100%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}}@-webkit-keyframes _12szO{0%{-webkit-transform:translateY(5px);transform:translateY(5px)}50%{-webkit-transform:translateY(-2px);transform:translateY(-2px)}100%{-webkit-transform:translateY(5px);transform:translateY(5px)}}@keyframes _12szO{0%{-webkit-transform:translateY(5px);transform:translateY(5px)}50%{-webkit-transform:translateY(-2px);transform:translateY(-2px)}100%{-webkit-transform:translateY(5px);transform:translateY(5px)}}._3Eqbe .PVOtq{-webkit-animation:_2FR1z 4s infinite ease-out;animation:_2FR1z 4s infinite ease-out}._3Eqbe ._3z13a{-webkit-animation:_12szO 1s infinite ease-out;animation:_12szO 1s infinite ease-out}._1memV{z-index:1;top:10.75rem;left:10.3125rem;-webkit-transform-origin:bottom right;transform-origin:bottom right}._2V4lb{z-index:1;top:8rem;left:1.375rem;-webkit-transform-origin:bottom right;transform-origin:bottom right}._3Eqbe ._2V4lb{-webkit-animation:_2atTc .7s infinite;animation:_2atTc .7s infinite}._3Eqbe ._1memV{-webkit-animation:_13j3E .5s infinite;animation:_13j3E .5s infinite}@-webkit-keyframes _13j3E{0%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}50%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}90%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}100%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}}@keyframes _13j3E{0%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}50%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}90%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}100%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}}@-webkit-keyframes _2atTc{0%{-webkit-transform:rotate(-2deg);transform:rotate(-2deg)}50%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}90%{-webkit-transform:rotate(2deg);transform:rotate(2deg)}100%{-webkit-transform:rotate(-2deg);transform:rotate(-2deg)}}@keyframes _2atTc{0%{-webkit-transform:rotate(-2deg);transform:rotate(-2deg)}50%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}90%{-webkit-transform:rotate(2deg);transform:rotate(2deg)}100%{-webkit-transform:rotate(-2deg);transform:rotate(-2deg)}}
232
+
233
+ ._1wvl8{width:15.0625rem;height:14.625rem}
234
+
235
+ ._1O42p{width:100%;margin-top:1.25rem;border-style:dashed;border-width:0.125rem;font-weight:600;position:relative;text-align:left;padding-left:1.5rem;vertical-align:middle}._1HX0v{padding:0 .625rem}._3aHT2{width:1.5rem;height:1.5rem;left:0px;top:50%;margin-top:-.75rem}
236
+
237
+ .J9jn_{width:9rem}
238
+
239
+ ._3vCmp{top:0;right:.625rem;width:2rem;height:2rem;margin-top:.9375rem}._3vCmp svg{opacity:0.5;text-shadow:1px 1px 1px rgba(0,0,0,0.5)}._3vCmp:hover{background-color:rgba(0,0,0,0.4)}._3vCmp:hover svg{opacity:1;color:#fff}
240
+
241
+ ._3S7KI{display:block;margin:0 auto;max-width:16rem}
242
+
243
+ .GpK3N{border-radius:5px;box-shadow:0 1px 4px 1px #D7D7D7;border:1px solid #D7D7D7}._2tQJA{font-size:1rem;color:#5B5E68}.BxsJX{font-weight:600}._2OS3h{font-weight:600}._1sNAq{margin-left:1rem}.xsCzA{margin:0 auto}._3jOln{border-bottom-left-radius:5px;border-bottom-right-radius:5px}.n_A_A{background-color:#51ADA3}.plIse{background-color:#51ADA3;color:white}._33xeg{width:650px}
244
+
245
+ ._1dRs0{background:white;border-radius:5px;box-shadow:0 1px 4px 1px #D7D7D7;border:1px solid #D7D7D7;overflow:hidden}._3dpUO{border-right:1px solid #eaeaea;max-width:22rem;overflow-y:auto;max-height:40rem}
246
+
247
+ ._13Gu_{background-color:transparent;padding:0.1rem 0}._2mbEb{padding-left:0}._2mbEb:hover{color:#F8981D}._2NhVk{list-style:none;padding-left:1.5rem}._2NhVk ._1dMK1{max-width:100%;display:block;-moz-box-sizing:border-box;box-sizing:border-box;padding:0.125rem 1.5rem}._2NhVk ._1dMK1:hover{text-decoration:none}._1AACi>._13Gu_ ._2mbEb{color:#F8981D}
248
+
249
+ ._3RFYO{height:34.375rem;overflow-y:auto}
250
+
251
+ .O5CMF{background-color:#51ADA3}.MjcUE{text-decoration:underline}
252
+
253
+ .BSPKV{font-weight:600}
254
+
255
+ ._3TgUv{height:34.375rem}
256
+
257
+ ._1aNlZ{margin-top:0.45rem}._325nt{height:0.5rem;border-radius:5px}
258
+
259
+ ._3iX0l{height:20rem;width:20rem;position:relative;margin:0 auto;border-radius:50%;background-color:#D7D7D7}._3iX0l::after{top:1.5rem;left:1.5rem;position:absolute;display:block;content:" ";border-radius:50%;background-color:#eaeaea;width:17rem;height:17rem}._3iX0l>span{position:absolute;left:0;top:5rem;z-index:1;width:20rem;font-size:5.75em;font-weight:600;display:block;text-align:center;white-space:nowrap}._3iX0l>span>._1nYnx{margin:-10px auto;max-width:70%;color:#5B5E68;font-weight:400;display:block;font-size:1rem}._2l1Al{height:20rem;width:20rem;position:relative;margin:0 auto;border-radius:50%;background-color:#D7D7D7}._1RbA5{-webkit-transition:5s stroke-dashoffset;transition:5s stroke-dashoffset}
260
+
261
+ ._2PRgW{position:absolute;right:0;bottom:0.2rem}
262
+
263
+ .bJ21G{border-radius:5px;box-shadow:0 1px 4px 1px #D7D7D7;border:1px solid #D7D7D7}._1T3fH{color:#5B5E68}._3m6CX{font-size:1rem}.MVm9U{width:650px}.KH7rf{position:relative;margin:0 auto;text-align:center}.KH7rf img{display:inline-block}.KH7rf ._2-0ob{margin-right:25px;width:100px}.KH7rf ._2Rh0f{position:relative;width:65px;-webkit-animation:oXD93 1.7s infinite ease;animation:oXD93 1.7s infinite ease;-webkit-transform:rotate(-20deg) scale(0.8);transform:rotate(-20deg) scale(0.8);opacity:.7}.KH7rf ._3B9BP{margin-top:20px;margin-left:25px;width:170px}@-webkit-keyframes oXD93{0%{top:0px;left:-100px;-webkit-transform:rotate(-20deg) scale(0.8);transform:rotate(-20deg) scale(0.8);opacity:.7}50%{top:-50px;left:25px;-webkit-transform:rotate(0) scale(1.4);transform:rotate(0) scale(1.4);opacity:1}100%{top:10px;left:150px;-webkit-transform:rotate(20deg) scale(0.8);transform:rotate(20deg) scale(0.8);opacity:.7}}@keyframes oXD93{0%{top:0px;left:-100px;-webkit-transform:rotate(-20deg) scale(0.8);transform:rotate(-20deg) scale(0.8);opacity:.7}50%{top:-50px;left:25px;-webkit-transform:rotate(0) scale(1.4);transform:rotate(0) scale(1.4);opacity:1}100%{top:10px;left:150px;-webkit-transform:rotate(20deg) scale(0.8);transform:rotate(20deg) scale(0.8);opacity:.7}}
264
+
265
+ ._2mvcb{margin:0 auto;border-radius:5px;box-shadow:0 1px 4px 1px #D7D7D7;border:1px solid #D7D7D7}._kJhb{width:650px}.wszk6{margin:0 auto;font-size:1rem}._1HF1l{margin:0 auto;width:33%}._2SXoK{font-weight:600}._2wZJN{position:relative;right:-0.2rem}._2wZJN svg{width:1.5rem;height:1.5rem}
266
+
267
+ ._2SvL3{background:white;border-radius:5px;box-shadow:0 1px 4px 1px #D7D7D7;border:1px solid #D7D7D7}._2KEEa{border-bottom:1px solid #eaeaea;font-size:1.125rem;font-weight:600}.wCMJb{border-top:1px solid #eaeaea}
268
+
269
+ ._10r2k{width:50%;position:relative;top:-25px;margin:0 auto}._1O7-y,._1cN_3{font-size:0.95rem}.bxulh,._1cN_3{font-weight:600}._1cN_3:focus{box-shadow:none}._2OYs-{background-color:#5B5E68;border-radius:0.25rem}._1dD-L{background-color:white;position:relative;top:-14px;border-bottom-left-radius:0.25rem;border-bottom-right-radius:0.25rem;-webkit-transition:none !important;transition:none !important}._1dD-L ._2sqEn{padding-top:1rem}._1dD-L hr{height:2px;background-color:#eaeaea;margin:0;border:none}._2Hcov{width:850px}
270
+
271
+ ._15jUh{height:625px}._1NjZL{font-weight:600;font-size:1rem}.fp9FZ circle{stroke:#60B789}.fp9FZ::after{background:white}._28z_5{width:850px}
272
+
273
+ ._2YgCz{height:625px;position:relative}._2QcuL{position:relative;top:20%}._30_1Z,._2gF7F{width:8rem;margin:0 auto}._2gF7F{width:10rem}
274
+
275
+ ._3MANn{height:625px;position:relative}._2sLB2{position:absolute;top:50%;left:50%;margin-left:-250px;margin-top:-175px}._1--7s{width:12rem;margin:0 1.65rem 0 auto}.ivhYc{margin:0 auto}.W7da5{width:850px}
276
+
277
+ ._2A7jn{width:9rem}
278
+
279
+ ._5hYaK{display:none}
280
+
281
+ .sg8Kg{height:625px}._2HxTI{font-weight:600;font-size:1rem}.hbLuA circle{stroke:#60B789}.hbLuA::after{background:white}._2lpDI{width:850px}
282
+
283
+ ._2A6IC{height:625px;position:relative}._1R3SI{position:relative;top:20%}._2Vb1u{width:8rem;margin:0 auto}._26fzE{width:850px}
284
+
285
+ ._3IJcl{color:#fff;cursor:default}
286
+
287
+ ._-0ibU{width:1.5rem;height:1.5rem;display:inline-block;position:absolute;left:.375rem;margin-top:-.75rem;top:50%}._28zhr{position:relative;padding-left:1.875rem}._2r4VF{visibility:hidden;font-weight:600;margin-bottom:-0.75rem;margin-top:0.25rem}
288
+
289
+ ._13khy{position:relative}._gEcp{width:8rem;height:4.5rem}.zuMb1{width:-webkit-calc(100% - 19.25rem);width:calc(100% - 19.25rem);vertical-align:top}._1ppp8{width:10rem}._2Ru6c{cursor:pointer}._2Ru6c:hover{background-color:#f8f8f8}._2Ru6c:hover .video-item-actions svg{color:#979797}._2Ru6c:hover .video-item-actions svg:hover{color:#313543}._2Ru6c:hover .video-item-show-preview{visibility:visible}._8l6WV{position:absolute;top:0;left:0;right:0;bottom:0;background-color:#f8f8f8;z-index:3}
290
+
291
+ ._1Jo6e{border-radius:5px;overflow:hidden}._7tGnj{height:31rem;overflow-y:scroll}.csNIF{width:7.5rem;height:7.5rem}._30NNv{min-height:10.6875rem}._10__f{min-height:4.09375rem}
292
+
293
+ ._3aP3V ._1uqg-:last-child{margin-bottom:-0.0625rem}._29kkj{background-color:#979797;color:#fff}
294
+
295
+ ._2xyI4{background-color:#f8f8f8}._153F1{color:#fff;border-radius:1rem}._3I7SQ{width:6rem}
296
+
297
+ ._2c8zD{border-radius:50%;background-color:#51ADA3;display:inline-block;width:2.1875rem;height:2.1875rem;text-align:center;line-height:2.1875rem;background-size:cover;background-position:top center;vertical-align:top}.EQzqm{border-left:0.125rem solid #51ADA3}.mnE2L{background-color:#F8981D;color:#fff}
298
+
299
+ ._3DFfh{width:20rem}._2ezub{width:-webkit-calc(100% - 20rem);width:calc(100% - 20rem);vertical-align:top;margin-left:-0.0625rem}
300
+
301
+ ._2qNTM{width:10.5rem;height:7.375rem}
302
+
303
+ ._3m_pH{color:red}
304
+
305
+ ._2yTdm{overflow-wrap:break-word}
306
+
307
+ ._1LiuD{width:10.5rem;height:8.1875rem}
308
+
309
+ ._2KSbB{width:1rem;height:1rem}
310
+
311
+ ._2r3wp{top:0;bottom:0;position:absolute;width:15rem;background-color:#fff;min-height:-webkit-calc(100vh - 6.5625rem);min-height:calc(100vh - 6.5625rem);padding-bottom:1.25rem;box-shadow:0.3125rem 0 0.3125rem -0.3125rem #D7D7D7}._2tPrC{padding-left:15rem}.gzfZN{width:100%;padding-top:1.25rem}._1yUOQ{padding-left:15rem}._2Rol1{position:relative;min-height:-webkit-calc(100vh - 6.5625rem);min-height:calc(100vh - 6.5625rem)}._1TUsf{position:relative}._1TUsf ul{bottom:0;right:-webkit-calc(1.25rem + 5rem);right:calc(1.25rem + 5rem);position:fixed;list-style-type:none}._1XHqq{height:100%;min-width:1200px}._1XHqq .container{min-width:-webkit-calc(1200px - 15rem);min-width:calc(1200px - 15rem)}._1XHqq .gzfZN .container{min-width:-webkit-calc(1200px - 15rem);min-width:calc(1200px - 15rem)}
312
+
313
+ ._1kvBB{background-color:#4E9ACE;color:#fff;text-align:center}
314
+
315
+ svg{fill:currentColor;width:100%;height:100%}.svg-container{width:1.5rem;height:1.5rem}
316
+