@clickview/online 0.0.51-rc.2 → 0.0.52-dev.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.json +0 -0
- package/README.md +0 -0
- package/dist/en.json +1699 -1
- package/dist/online-app.css +3080 -203
- package/dist/online-app.js +12742 -53
- package/package.json +4 -4
- package/tooling/externals.js +0 -0
- package/typings/libs/CVEvents.d.ts +0 -0
- package/typings/libs/CVLanguages.d.ts +0 -0
- package/typings/libs/FutureCoreHelper.d.ts +0 -0
- package/typings/libs/LazyLoad.d.ts +0 -0
- package/typings/libs/google-api.d.ts +0 -0
- package/typings/utils/imports.d.ts +0 -0
package/dist/online-app.css
CHANGED
|
@@ -1,60 +1,556 @@
|
|
|
1
|
-
.cv-icon-button
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
.
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
.
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
.
|
|
32
|
-
|
|
33
|
-
.
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
.
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
.
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
.
|
|
56
|
-
|
|
57
|
-
|
|
1
|
+
.cv-icon-button {
|
|
2
|
+
margin-left: 1rem;
|
|
3
|
+
padding-left: 3.2rem !important;
|
|
4
|
+
padding-right: 1.2rem; }
|
|
5
|
+
.cv-icon-button .std {
|
|
6
|
+
left: 0.6rem !important;
|
|
7
|
+
width: 2rem !important;
|
|
8
|
+
height: 2rem !important;
|
|
9
|
+
margin-top: -1rem !important; }
|
|
10
|
+
|
|
11
|
+
.content-height {
|
|
12
|
+
min-height: 70vh; }
|
|
13
|
+
|
|
14
|
+
.onboarding-layout {
|
|
15
|
+
min-height: 84vh;
|
|
16
|
+
overflow: hidden;
|
|
17
|
+
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
|
|
18
|
+
padding: 1.25rem; }
|
|
19
|
+
|
|
20
|
+
@media (max-width: 991px) {
|
|
21
|
+
.onboarding-layout {
|
|
22
|
+
min-height: 90vh; } }
|
|
23
|
+
|
|
24
|
+
button:focus,
|
|
25
|
+
select:focus,
|
|
26
|
+
div[role="button"]:focus,
|
|
27
|
+
a:focus {
|
|
28
|
+
outline: none; }
|
|
29
|
+
|
|
30
|
+
body.user-is-tabbing button:focus,
|
|
31
|
+
body.user-is-tabbing select:focus,
|
|
32
|
+
body.user-is-tabbing div[role="button"]:focus,
|
|
33
|
+
body.user-is-tabbing a:focus {
|
|
34
|
+
outline: 2px solid #7AACFE !important;
|
|
35
|
+
outline: 5px auto -webkit-focus-ring-color !important; }
|
|
36
|
+
|
|
37
|
+
html {
|
|
38
|
+
overflow-y: initial; }
|
|
39
|
+
|
|
40
|
+
body {
|
|
41
|
+
overflow-y: auto; }
|
|
42
|
+
|
|
43
|
+
.banner-header .container {
|
|
44
|
+
width: auto;
|
|
45
|
+
max-width: 100%;
|
|
46
|
+
margin-left: 0.3125rem;
|
|
47
|
+
margin-right: 0.3125rem; }
|
|
48
|
+
|
|
49
|
+
.playlist-bg1 {
|
|
50
|
+
background-color: #4E9ACE; }
|
|
51
|
+
|
|
52
|
+
.playlist-bg2 {
|
|
53
|
+
background-color: #6bbfca; }
|
|
54
|
+
|
|
55
|
+
.playlist-bg3 {
|
|
56
|
+
background-color: #FFCD52; }
|
|
57
|
+
|
|
58
|
+
.playlist-bg4 {
|
|
59
|
+
background-color: #F7847B; }
|
|
60
|
+
|
|
61
|
+
.playlist-bg5 {
|
|
62
|
+
background-color: #51ADA3; }
|
|
63
|
+
|
|
64
|
+
.playlist-bg6 {
|
|
65
|
+
background-color: #605DB4; }
|
|
66
|
+
|
|
67
|
+
.playlist-bg7 {
|
|
68
|
+
background-color: #BB8EC7; }
|
|
69
|
+
|
|
70
|
+
.playlist-bg8 {
|
|
71
|
+
background-color: #60B789; }
|
|
72
|
+
|
|
73
|
+
.cv--onlineLayout--_Sfw5 .alert-region {
|
|
74
|
+
position: relative; }
|
|
75
|
+
.cv--onlineLayout--_Sfw5 .alert-region ul {
|
|
76
|
+
bottom: 0;
|
|
77
|
+
right: 1.25rem;
|
|
78
|
+
position: fixed;
|
|
79
|
+
list-style-type: none; }
|
|
80
|
+
|
|
81
|
+
.cv--albert--1wslc {
|
|
82
|
+
background: url("https://image.api.prd.cvnet.io/v2/banners/obzkO9?size=medium&format=jpg") 0 0 no-repeat;
|
|
83
|
+
background-size: cover; }
|
|
84
|
+
|
|
85
|
+
.cv--eduscot--31Vr_ {
|
|
86
|
+
background-color: #fff; }
|
|
87
|
+
.cv--eduscot--31Vr_ img {
|
|
88
|
+
width: 1.8rem; }
|
|
89
|
+
|
|
90
|
+
.cv--socialIcon--34M8X svg path {
|
|
91
|
+
fill: #D7D7D7; }
|
|
92
|
+
|
|
93
|
+
.cv--twitter--3-N2R svg:hover path {
|
|
94
|
+
fill: #55ACEE; }
|
|
95
|
+
|
|
96
|
+
.cv--facebook--22S8O svg:hover path {
|
|
97
|
+
fill: #3B5998; }
|
|
98
|
+
|
|
99
|
+
.cv--email--1_Zaq svg:hover path {
|
|
100
|
+
fill: #D64937; }
|
|
101
|
+
|
|
102
|
+
.cv--iconButton--3t3VL {
|
|
103
|
+
vertical-align: top;
|
|
104
|
+
position: relative; }
|
|
105
|
+
.cv--iconButton--3t3VL.cv--iconWithText--2KLHo {
|
|
106
|
+
padding-left: 36px;
|
|
107
|
+
white-space: nowrap; }
|
|
108
|
+
.cv--iconButton--3t3VL.cv--iconWithText--2KLHo .cv--svg--3OUhC {
|
|
109
|
+
left: 0.375rem;
|
|
110
|
+
top: 50%;
|
|
111
|
+
margin-top: -0.75rem;
|
|
112
|
+
position: absolute; }
|
|
113
|
+
.cv--iconButton--3t3VL.cv--iconWithText--2KLHo svg {
|
|
114
|
+
vertical-align: top; }
|
|
115
|
+
.cv--iconButton--3t3VL.cv--iconOnly--2rQWb {
|
|
116
|
+
padding: 1rem; }
|
|
117
|
+
.cv--iconButton--3t3VL.cv--iconOnly--2rQWb .cv--svg--3OUhC {
|
|
118
|
+
top: 50%;
|
|
119
|
+
left: 50%;
|
|
120
|
+
transform: translate3D(-50%, -50%, 0);
|
|
121
|
+
position: absolute; }
|
|
122
|
+
|
|
123
|
+
.cv--dropdownToggle--AYBvQ:after {
|
|
124
|
+
content: none; }
|
|
125
|
+
|
|
126
|
+
.cv--bannerContent--2zxtt {
|
|
127
|
+
position: absolute;
|
|
128
|
+
bottom: 1.25rem;
|
|
129
|
+
right: 1.25rem;
|
|
130
|
+
left: 1.25rem;
|
|
131
|
+
display: flex;
|
|
132
|
+
align-items: center; }
|
|
133
|
+
.cv--bannerContent--2zxtt .cv--actionsContainer--286KF {
|
|
134
|
+
align-self: flex-end;
|
|
135
|
+
margin-left: auto;
|
|
136
|
+
padding-left: 0.625rem; }
|
|
137
|
+
|
|
138
|
+
.cv--logoContainer--313Pr {
|
|
139
|
+
position: absolute;
|
|
140
|
+
top: 50%;
|
|
141
|
+
right: 1.25rem;
|
|
142
|
+
transform: translateY(-50%);
|
|
143
|
+
height: 60%;
|
|
144
|
+
max-height: 7.5rem; }
|
|
145
|
+
.cv--logoContainer--313Pr img {
|
|
146
|
+
height: 100%; }
|
|
147
|
+
|
|
148
|
+
.cv--headingLarge--2U219 {
|
|
149
|
+
display: block;
|
|
150
|
+
display: -webkit-box;
|
|
151
|
+
-webkit-line-clamp: 5;
|
|
152
|
+
-webkit-box-orient: vertical;
|
|
153
|
+
overflow: hidden;
|
|
154
|
+
padding-bottom: 0.14em !important;
|
|
155
|
+
margin-bottom: -0.14em !important;
|
|
156
|
+
font-size: 1.5rem; }
|
|
157
|
+
@media (max-width: 1199px) {
|
|
158
|
+
.cv--headingLarge--2U219 {
|
|
159
|
+
font-size: 1.25rem; } }
|
|
160
|
+
@media (max-width: 991px) {
|
|
161
|
+
.cv--headingLarge--2U219 {
|
|
162
|
+
display: block;
|
|
163
|
+
display: -webkit-box;
|
|
164
|
+
-webkit-line-clamp: 4;
|
|
165
|
+
-webkit-box-orient: vertical;
|
|
166
|
+
overflow: hidden;
|
|
167
|
+
padding-bottom: 0.14em !important;
|
|
168
|
+
margin-bottom: -0.14em !important;
|
|
169
|
+
font-size: 1.125rem; } }
|
|
170
|
+
@media (max-width: 767px) {
|
|
171
|
+
.cv--headingLarge--2U219 {
|
|
172
|
+
font-size: 1rem; } }
|
|
173
|
+
|
|
174
|
+
.cv--avatar--1IfFN {
|
|
175
|
+
position: relative;
|
|
176
|
+
border-radius: 50%;
|
|
177
|
+
background-color: #fff;
|
|
178
|
+
width: 100%;
|
|
179
|
+
height: 100%;
|
|
180
|
+
text-align: center; }
|
|
181
|
+
.cv--avatar--1IfFN svg {
|
|
182
|
+
position: absolute;
|
|
183
|
+
top: 50%;
|
|
184
|
+
left: 54%;
|
|
185
|
+
transform: translate(-50%, -50%);
|
|
186
|
+
width: 60%;
|
|
187
|
+
height: 60%; }
|
|
188
|
+
|
|
189
|
+
.cv--bg1--ukXtM {
|
|
190
|
+
background-color: #4E9ACE !important; }
|
|
191
|
+
|
|
192
|
+
.cv--bg2--1SC8T {
|
|
193
|
+
background-color: #6bbfca !important; }
|
|
194
|
+
|
|
195
|
+
.cv--bg3--k1fJw {
|
|
196
|
+
background-color: #FFCD52 !important; }
|
|
197
|
+
|
|
198
|
+
.cv--bg4--1n02G {
|
|
199
|
+
background-color: #F7847B !important; }
|
|
200
|
+
|
|
201
|
+
.cv--bg5--35575 {
|
|
202
|
+
background-color: #51ADA3 !important; }
|
|
203
|
+
|
|
204
|
+
.cv--bg6--3EGbY {
|
|
205
|
+
background-color: #605DB4 !important; }
|
|
206
|
+
|
|
207
|
+
.cv--bg7--3sbi2 {
|
|
208
|
+
background-color: #BB8EC7 !important; }
|
|
209
|
+
|
|
210
|
+
.cv--bg8--8Vx1n {
|
|
211
|
+
background-color: #60B789 !important; }
|
|
212
|
+
|
|
213
|
+
.cv--partialHeader--2_mFA {
|
|
214
|
+
width: 25%; }
|
|
215
|
+
.cv--partialHeader--2_mFA h1 {
|
|
216
|
+
height: 2.4rem; }
|
|
217
|
+
|
|
218
|
+
.cv--playlistHeader--4eCbo {
|
|
219
|
+
padding: 2rem; }
|
|
220
|
+
.cv--playlistHeader--4eCbo .cv--playlistHeaderLeft--2JckH h1 {
|
|
221
|
+
font-size: 2.4rem;
|
|
222
|
+
margin: 0;
|
|
223
|
+
word-break: break-word; }
|
|
224
|
+
.cv--playlistHeader--4eCbo::after {
|
|
225
|
+
content: "";
|
|
226
|
+
clear: both;
|
|
227
|
+
display: table; }
|
|
228
|
+
|
|
229
|
+
.cv--actionsContainer--2WBLn {
|
|
230
|
+
float: right; }
|
|
231
|
+
|
|
232
|
+
.cv--bannerWrapper--3YWHl .dropdown-toggle, .cv--actionsContainer--2WBLn .dropdown-toggle {
|
|
233
|
+
padding: 0;
|
|
234
|
+
margin-left: 1rem;
|
|
235
|
+
height: 100%; }
|
|
236
|
+
|
|
237
|
+
.cv--metadata--3HWMX, .cv--description--3xry5 {
|
|
238
|
+
margin-top: 1rem; }
|
|
239
|
+
|
|
240
|
+
.cv--backButtonBanner--A7JOJ {
|
|
241
|
+
display: flex;
|
|
242
|
+
align-items: center;
|
|
243
|
+
margin: 0;
|
|
244
|
+
position: absolute;
|
|
245
|
+
top: 15px;
|
|
246
|
+
left: 15px;
|
|
247
|
+
color: #fff; }
|
|
248
|
+
.cv--backButtonBanner--A7JOJ:hover {
|
|
249
|
+
text-decoration: underline; }
|
|
250
|
+
|
|
251
|
+
.cv--backButtonNoBanner--3lrGQ {
|
|
252
|
+
display: flex;
|
|
253
|
+
align-items: center;
|
|
254
|
+
padding-bottom: 0.3125rem;
|
|
255
|
+
color: #979797;
|
|
256
|
+
transform: translateX(-0.3125rem); }
|
|
257
|
+
.cv--backButtonNoBanner--3lrGQ:hover {
|
|
258
|
+
text-decoration: underline; }
|
|
259
|
+
|
|
260
|
+
.cv--details--nHyq7 {
|
|
261
|
+
color: #fff;
|
|
262
|
+
text-shadow: 1px 1px 5px #000;
|
|
263
|
+
font-size: 1.3rem;
|
|
264
|
+
font-weight: normal;
|
|
265
|
+
line-height: normal;
|
|
266
|
+
margin-top: 0.625rem; }
|
|
267
|
+
.cv--details--nHyq7 > * {
|
|
268
|
+
vertical-align: middle; }
|
|
269
|
+
|
|
270
|
+
.cv--clickViewAvatar--f7JZc {
|
|
271
|
+
width: 1.4rem;
|
|
272
|
+
height: 1.4rem;
|
|
273
|
+
display: inline-block;
|
|
274
|
+
margin-right: 0.3125rem;
|
|
275
|
+
box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
|
|
276
|
+
border-radius: 50%; }
|
|
277
|
+
|
|
278
|
+
.cv--playlistPane--3eqgp {
|
|
279
|
+
min-height: 70vh; }
|
|
280
|
+
|
|
281
|
+
.cv--description--2AgfO {
|
|
282
|
+
margin: 1.5rem 3rem; }
|
|
283
|
+
|
|
284
|
+
.cv--image--1YW-E {
|
|
285
|
+
width: 100%;
|
|
286
|
+
height: 100%; }
|
|
287
|
+
|
|
288
|
+
.cv--image--VcUxj {
|
|
289
|
+
position: relative;
|
|
290
|
+
width: 100%;
|
|
291
|
+
height: 100%; }
|
|
292
|
+
.cv--image--VcUxj img {
|
|
293
|
+
position: absolute;
|
|
294
|
+
top: 0;
|
|
295
|
+
bottom: 0;
|
|
296
|
+
left: 0;
|
|
297
|
+
right: 0; }
|
|
298
|
+
|
|
299
|
+
.cv--thumbnail--3pbQo {
|
|
300
|
+
padding-bottom: 56.25%; }
|
|
301
|
+
|
|
302
|
+
.cv--tallPoster--39QHb {
|
|
303
|
+
padding-bottom: 177.77778%; }
|
|
304
|
+
|
|
305
|
+
.cv--cover--2wQ0p {
|
|
306
|
+
padding-bottom: 100%; }
|
|
307
|
+
|
|
308
|
+
.cv--banner--2Gztt {
|
|
309
|
+
padding-bottom: 18.50%; }
|
|
310
|
+
|
|
311
|
+
.cv--poster--3tEfw {
|
|
312
|
+
padding-bottom: 150%; }
|
|
313
|
+
|
|
314
|
+
.cv--pdf--3SJSK img {
|
|
315
|
+
height: auto; }
|
|
316
|
+
|
|
317
|
+
.cv--link--2-RIk img {
|
|
318
|
+
width: auto;
|
|
319
|
+
margin: 0 auto; }
|
|
320
|
+
|
|
321
|
+
.cv--baseFallbackContainer--3jl1L, .cv--svgFallbackContainer--2rOm2 {
|
|
322
|
+
position: absolute;
|
|
323
|
+
width: 100%;
|
|
324
|
+
height: 100%; }
|
|
325
|
+
|
|
326
|
+
.cv--svgFallbackContainer--2rOm2 {
|
|
327
|
+
background-color: #f8f8f8; }
|
|
328
|
+
|
|
329
|
+
.cv--subjectFallbackContainer--nDJRl {
|
|
330
|
+
background-color: rgba(0, 0, 0, 5e-07);
|
|
331
|
+
width: 5rem;
|
|
332
|
+
height: 100%;
|
|
333
|
+
border-top-left-radius: 0.5rem;
|
|
334
|
+
border-bottom-left-radius: 0.5rem;
|
|
335
|
+
border-right: 1px solid #eaeaea;
|
|
336
|
+
position: absolute;
|
|
337
|
+
top: 0;
|
|
338
|
+
left: 0; }
|
|
339
|
+
|
|
340
|
+
.cv--videoFallback--2GQyA {
|
|
341
|
+
width: 3.75rem;
|
|
342
|
+
height: 3.75rem; }
|
|
343
|
+
|
|
344
|
+
.cv--playlistFallback--JI1jg, .cv--posterFallback--1YnF6 {
|
|
345
|
+
width: 7.5rem;
|
|
346
|
+
height: 7.5rem; }
|
|
347
|
+
.cv--playlistFallback--JI1jg svg, .cv--posterFallback--1YnF6 svg {
|
|
348
|
+
width: 100%;
|
|
349
|
+
height: 100%; }
|
|
350
|
+
|
|
351
|
+
.cv--subjectFallback--p7JWY {
|
|
352
|
+
z-index: -1; }
|
|
353
|
+
|
|
354
|
+
.cv--videoFallback--2GQyA, .cv--playlistFallback--JI1jg, .cv--posterFallback--1YnF6, .cv--subjectFallback--p7JWY {
|
|
355
|
+
position: absolute;
|
|
356
|
+
top: 50%;
|
|
357
|
+
left: 50%;
|
|
358
|
+
color: #D7D7D7;
|
|
359
|
+
transform: translate3D(-50%, -50%, 0);
|
|
360
|
+
transition: opacity 100ms ease-in-out; }
|
|
361
|
+
|
|
362
|
+
.cv--fallbackThumbnailImage--2Av0B {
|
|
363
|
+
padding: 0.3125rem;
|
|
364
|
+
background-size: cover;
|
|
365
|
+
background-position: center;
|
|
366
|
+
background-repeat: no-repeat;
|
|
367
|
+
width: 100%;
|
|
368
|
+
height: 100%; }
|
|
369
|
+
|
|
370
|
+
.cv--audienceLabelListItem--2YGVO:not(:last-child) {
|
|
371
|
+
margin-right: 0.3125rem; }
|
|
372
|
+
|
|
373
|
+
.cv--avatar--1XSQR {
|
|
374
|
+
border-radius: 50%;
|
|
375
|
+
background-color: #51ADA3;
|
|
376
|
+
width: 100%;
|
|
377
|
+
height: 100%;
|
|
378
|
+
text-align: center;
|
|
379
|
+
line-height: 100%;
|
|
380
|
+
background-size: cover;
|
|
381
|
+
background-position: top center; }
|
|
382
|
+
|
|
383
|
+
.cv--fontSmall--39EbI {
|
|
384
|
+
font-size: 12px; }
|
|
385
|
+
|
|
386
|
+
.cv--playlistItem--6o0Z2 {
|
|
387
|
+
padding-bottom: 100%; }
|
|
388
|
+
|
|
389
|
+
.cv--playlistItemGradient--2JLPt::after {
|
|
390
|
+
content: '';
|
|
391
|
+
position: absolute;
|
|
392
|
+
top: 0;
|
|
393
|
+
left: 0;
|
|
394
|
+
width: 100%;
|
|
395
|
+
height: 100%;
|
|
396
|
+
background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.5) 5%, rgba(0, 0, 0, 0.4) 10%, rgba(0, 0, 0, 0.2) 25%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.02) 60%, rgba(0, 0, 0, 0) 80%); }
|
|
397
|
+
|
|
398
|
+
.cv--playlistMetadata--3MCKL {
|
|
399
|
+
position: absolute;
|
|
400
|
+
left: 0.625rem;
|
|
401
|
+
right: 0.625rem;
|
|
402
|
+
bottom: 0.625rem;
|
|
403
|
+
z-index: 1; }
|
|
404
|
+
|
|
405
|
+
.cv--partialHeading--13tO6 {
|
|
406
|
+
height: 2rem;
|
|
407
|
+
width: 17rem; }
|
|
408
|
+
|
|
409
|
+
.cv--ownerAvatarContainer--CwjTl {
|
|
410
|
+
position: absolute;
|
|
411
|
+
right: 0.625rem;
|
|
412
|
+
top: 0.625rem;
|
|
413
|
+
z-index: 1;
|
|
414
|
+
width: 15%;
|
|
415
|
+
height: 15%; }
|
|
416
|
+
|
|
417
|
+
.cv--playlistListHeader--xaJc0 {
|
|
418
|
+
position: relative;
|
|
419
|
+
padding-bottom: 1rem; }
|
|
420
|
+
.cv--playlistListHeader--xaJc0 h1 {
|
|
421
|
+
font-size: 1.6rem;
|
|
422
|
+
line-height: 3rem;
|
|
423
|
+
margin: 0; }
|
|
424
|
+
|
|
425
|
+
.cv--actionsContainer--BHhcf {
|
|
426
|
+
float: right; }
|
|
427
|
+
|
|
428
|
+
.cv--actionsDropdown--2Ldf8, .cv--sortContainer--2VJVr {
|
|
429
|
+
margin-left: 1rem; }
|
|
430
|
+
|
|
431
|
+
.cv--actionsDropdown--2Ldf8 {
|
|
432
|
+
padding: 0;
|
|
433
|
+
height: 3rem; }
|
|
434
|
+
|
|
435
|
+
.cv--sortContainer--2VJVr .dropdown-toggle {
|
|
436
|
+
padding-left: 1.2rem;
|
|
437
|
+
padding-right: 1.2rem; }
|
|
438
|
+
.cv--sortContainer--2VJVr .dropdown-toggle::after {
|
|
439
|
+
display: inline-block;
|
|
440
|
+
content: '';
|
|
441
|
+
width: 0;
|
|
442
|
+
height: 0;
|
|
443
|
+
margin-left: 0.5rem;
|
|
444
|
+
margin-left: 0.6rem;
|
|
445
|
+
vertical-align: 0.1rem;
|
|
446
|
+
border-top: 0.5rem solid;
|
|
447
|
+
border-right: 0.5rem solid transparent;
|
|
448
|
+
border-left: 0.5rem solid transparent; }
|
|
449
|
+
|
|
450
|
+
.cv--partialHeader--2hy6F {
|
|
451
|
+
width: 25%; }
|
|
452
|
+
.cv--partialHeader--2hy6F h1 {
|
|
453
|
+
height: 3rem; }
|
|
454
|
+
|
|
455
|
+
.cv--partialAction--2DiYF {
|
|
456
|
+
display: inline-block;
|
|
457
|
+
height: 3rem;
|
|
458
|
+
width: 9rem;
|
|
459
|
+
margin-left: 1rem; }
|
|
460
|
+
|
|
461
|
+
.cv--playlistListContainer--tjtmr > .row {
|
|
462
|
+
margin: 0 -1rem; }
|
|
463
|
+
|
|
464
|
+
.cv--playlistItemContainer--1GNc4 {
|
|
465
|
+
margin: 1rem 0;
|
|
466
|
+
padding: 0 1rem; }
|
|
467
|
+
.cv--playlistItemContainer--1GNc4 a {
|
|
468
|
+
color: #fff; }
|
|
469
|
+
.cv--playlistItemContainer--1GNc4 h5 {
|
|
470
|
+
font-size: 2.1rem;
|
|
471
|
+
margin: 0; }
|
|
472
|
+
.cv--playlistItemContainer--1GNc4 .audience-label {
|
|
473
|
+
padding: 0.25rem 1rem;
|
|
474
|
+
margin: 0.5rem 0; }
|
|
475
|
+
|
|
476
|
+
.cv--partialPlaylistItem--3KJuQ {
|
|
477
|
+
margin: 1rem; }
|
|
478
|
+
|
|
479
|
+
.cv--container--3PyFK {
|
|
480
|
+
position: absolute;
|
|
481
|
+
top: 50%;
|
|
482
|
+
left: 1.25rem;
|
|
483
|
+
transform: translateY(-50%);
|
|
484
|
+
height: 100%;
|
|
485
|
+
width: 3rem; }
|
|
486
|
+
|
|
487
|
+
.cv--indicatorContainer--2qsr- {
|
|
488
|
+
position: absolute;
|
|
489
|
+
top: 50%;
|
|
490
|
+
transform: translateY(-50%);
|
|
491
|
+
height: 1rem;
|
|
492
|
+
width: 1rem; }
|
|
493
|
+
.cv--indicatorContainer--2qsr- svg {
|
|
494
|
+
position: absolute;
|
|
495
|
+
top: 50%;
|
|
496
|
+
left: 50%;
|
|
497
|
+
transform: translate(-50%, -50%);
|
|
498
|
+
width: 100%;
|
|
499
|
+
height: 100%; }
|
|
500
|
+
|
|
501
|
+
.cv--followingIndicator--Egane {
|
|
502
|
+
height: 100%;
|
|
503
|
+
width: 100%;
|
|
504
|
+
background-color: #BB8EC7;
|
|
505
|
+
border-radius: 50%;
|
|
506
|
+
display: inline-block; }
|
|
507
|
+
|
|
508
|
+
.cv--navItem--3A1z7 {
|
|
509
|
+
position: relative;
|
|
510
|
+
padding: 0.5rem 1rem;
|
|
511
|
+
line-height: 2.4rem; }
|
|
512
|
+
|
|
513
|
+
.cv--appLink--1orYF {
|
|
514
|
+
display: block;
|
|
515
|
+
margin: 0 2rem;
|
|
516
|
+
word-break: break-word; }
|
|
517
|
+
|
|
518
|
+
.cv--actions--1N9oK {
|
|
519
|
+
position: absolute;
|
|
520
|
+
top: 0.5rem;
|
|
521
|
+
right: 1rem; }
|
|
522
|
+
.cv--actions--1N9oK .dropdown {
|
|
523
|
+
display: none; }
|
|
524
|
+
.cv--actions--1N9oK .show {
|
|
525
|
+
display: block; }
|
|
526
|
+
|
|
527
|
+
.cv--actionsDropdown--E1Yrs {
|
|
528
|
+
padding: 0;
|
|
529
|
+
background-color: transparent !important;
|
|
530
|
+
border: none !important;
|
|
531
|
+
color: #979797; }
|
|
532
|
+
|
|
533
|
+
.cv--navItem--3A1z7:hover .dropdown {
|
|
534
|
+
display: block; }
|
|
535
|
+
|
|
536
|
+
.cv--heading--3p-bQ {
|
|
537
|
+
padding: 0 1.25rem !important; }
|
|
538
|
+
|
|
539
|
+
.cv--playlistName--1LNYK {
|
|
540
|
+
word-break: break-word; }
|
|
541
|
+
|
|
542
|
+
.cv--deleteIcon--1v_lk {
|
|
543
|
+
position: absolute;
|
|
544
|
+
top: 0.1875rem;
|
|
545
|
+
right: 0.1875rem;
|
|
546
|
+
z-index: 10;
|
|
547
|
+
background: #f1f1f1;
|
|
548
|
+
border-radius: 50%; }
|
|
549
|
+
.cv--deleteIcon--1v_lk:hover {
|
|
550
|
+
background: #D7D7D7; }
|
|
551
|
+
|
|
552
|
+
.cv--imageContainer--3GXn8 {
|
|
553
|
+
position: relative; }
|
|
58
554
|
|
|
59
555
|
/*!
|
|
60
556
|
* Cropper.js v1.5.6
|
|
@@ -64,169 +560,2550 @@ html{overflow-y:initial}body{overflow-y:auto}.banner-header .container{width:aut
|
|
|
64
560
|
* Released under the MIT license
|
|
65
561
|
*
|
|
66
562
|
* Date: 2019-10-04T04:33:44.164Z
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
.
|
|
92
|
-
|
|
93
|
-
.
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
.
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
.
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
.
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
.
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
.
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
.
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
.
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
.
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
.
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
.
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
.
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
.
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
.
|
|
172
|
-
|
|
173
|
-
.
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
.
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle,.react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle,.react-datepicker__year-read-view--down-arrow,.react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view--down-arrow{margin-left:-8px;position:absolute}.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle,.react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle,.react-datepicker__year-read-view--down-arrow,.react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view--down-arrow,.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle::before,.react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle::before,.react-datepicker__year-read-view--down-arrow::before,.react-datepicker__month-read-view--down-arrow::before,.react-datepicker__month-year-read-view--down-arrow::before{box-sizing:content-box;position:absolute;border:8px solid transparent;height:0;width:1px}.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle::before,.react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle::before,.react-datepicker__year-read-view--down-arrow::before,.react-datepicker__month-read-view--down-arrow::before,.react-datepicker__month-year-read-view--down-arrow::before{content:"";z-index:-1;border-width:8px;left:-8px;border-bottom-color:#aeaeae}.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle{top:0;margin-top:-8px}.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle,.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle::before{border-top:none;border-bottom-color:#f0f0f0}.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle::before{top:-1px;border-bottom-color:#aeaeae}.react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle,.react-datepicker__year-read-view--down-arrow,.react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view--down-arrow{bottom:0;margin-bottom:-8px}.react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle,.react-datepicker__year-read-view--down-arrow,.react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view--down-arrow,.react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle::before,.react-datepicker__year-read-view--down-arrow::before,.react-datepicker__month-read-view--down-arrow::before,.react-datepicker__month-year-read-view--down-arrow::before{border-bottom:none;border-top-color:#fff}.react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle::before,.react-datepicker__year-read-view--down-arrow::before,.react-datepicker__month-read-view--down-arrow::before,.react-datepicker__month-year-read-view--down-arrow::before{bottom:-1px;border-top-color:#aeaeae}.react-datepicker-wrapper{display:inline-block;padding:0;border:0}.react-datepicker{font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;font-size:0.8rem;background-color:#fff;color:#000;border:1px solid #aeaeae;border-radius:0.3rem;display:inline-block;position:relative}.react-datepicker--time-only .react-datepicker__triangle{left:35px}.react-datepicker--time-only .react-datepicker__time-container{border-left:0}.react-datepicker--time-only .react-datepicker__time,.react-datepicker--time-only .react-datepicker__time-box{border-bottom-left-radius:0.3rem;border-bottom-right-radius:0.3rem}.react-datepicker__triangle{position:absolute;left:50px}.react-datepicker-popper{z-index:1}.react-datepicker-popper[data-placement^="bottom"]{margin-top:10px}.react-datepicker-popper[data-placement="bottom-end"] .react-datepicker__triangle,.react-datepicker-popper[data-placement="top-end"] .react-datepicker__triangle{left:auto;right:50px}.react-datepicker-popper[data-placement^="top"]{margin-bottom:10px}.react-datepicker-popper[data-placement^="right"]{margin-left:8px}.react-datepicker-popper[data-placement^="right"] .react-datepicker__triangle{left:auto;right:42px}.react-datepicker-popper[data-placement^="left"]{margin-right:8px}.react-datepicker-popper[data-placement^="left"] .react-datepicker__triangle{left:42px;right:auto}.react-datepicker__header{text-align:center;background-color:#f0f0f0;border-bottom:1px solid #aeaeae;border-top-left-radius:0.3rem;padding-top:8px;position:relative}.react-datepicker__header--time{padding-bottom:8px;padding-left:5px;padding-right:5px}.react-datepicker__header--time:not(.react-datepicker__header--time--only){border-top-left-radius:0}.react-datepicker__header:not(.react-datepicker__header--has-time-select){border-top-right-radius:0.3rem}.react-datepicker__year-dropdown-container--select,.react-datepicker__month-dropdown-container--select,.react-datepicker__month-year-dropdown-container--select,.react-datepicker__year-dropdown-container--scroll,.react-datepicker__month-dropdown-container--scroll,.react-datepicker__month-year-dropdown-container--scroll{display:inline-block;margin:0 2px}.react-datepicker__current-month,.react-datepicker-time__header,.react-datepicker-year-header{margin-top:0;color:#000;font-weight:bold;font-size:0.944rem}.react-datepicker-time__header{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.react-datepicker__navigation{background:none;line-height:1.7rem;text-align:center;cursor:pointer;position:absolute;top:10px;width:0;padding:0;border:0.45rem solid transparent;z-index:1;height:10px;width:10px;text-indent:-999em;overflow:hidden}.react-datepicker__navigation--previous{left:10px;border-right-color:#ccc}.react-datepicker__navigation--previous:hover{border-right-color:#b3b3b3}.react-datepicker__navigation--previous--disabled,.react-datepicker__navigation--previous--disabled:hover{border-right-color:#e6e6e6;cursor:default}.react-datepicker__navigation--next{right:10px;border-left-color:#ccc}.react-datepicker__navigation--next--with-time:not(.react-datepicker__navigation--next--with-today-button){right:95px}.react-datepicker__navigation--next:hover{border-left-color:#b3b3b3}.react-datepicker__navigation--next--disabled,.react-datepicker__navigation--next--disabled:hover{border-left-color:#e6e6e6;cursor:default}.react-datepicker__navigation--years{position:relative;top:0;display:block;margin-left:auto;margin-right:auto}.react-datepicker__navigation--years-previous{top:4px;border-top-color:#ccc}.react-datepicker__navigation--years-previous:hover{border-top-color:#b3b3b3}.react-datepicker__navigation--years-upcoming{top:-4px;border-bottom-color:#ccc}.react-datepicker__navigation--years-upcoming:hover{border-bottom-color:#b3b3b3}.react-datepicker__month-container{float:left}.react-datepicker__year{margin:0.4rem;text-align:center}.react-datepicker__year-wrapper{display:flex;flex-wrap:wrap;max-width:180px}.react-datepicker__year .react-datepicker__year-text{display:inline-block;width:4rem;margin:2px}.react-datepicker__month{margin:0.4rem;text-align:center}.react-datepicker__month .react-datepicker__month-text,.react-datepicker__month .react-datepicker__quarter-text{display:inline-block;width:4rem;margin:2px}.react-datepicker__input-time-container{clear:both;width:100%;float:left;margin:5px 0 10px 15px;text-align:left}.react-datepicker__input-time-container .react-datepicker-time__caption{display:inline-block}.react-datepicker__input-time-container .react-datepicker-time__input-container{display:inline-block}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input{display:inline-block;margin-left:10px}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input{width:85px}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type="time"]::-webkit-inner-spin-button,.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type="time"]::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type="time"]{-moz-appearance:textfield}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__delimiter{margin-left:5px;display:inline-block}.react-datepicker__time-container{float:right;border-left:1px solid #aeaeae;width:85px}.react-datepicker__time-container--with-today-button{display:inline;border:1px solid #aeaeae;border-radius:0.3rem;position:absolute;right:-72px;top:0}.react-datepicker__time-container .react-datepicker__time{position:relative;background:white;border-bottom-right-radius:0.3rem}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box{width:85px;overflow-x:hidden;margin:0 auto;text-align:center;border-bottom-right-radius:0.3rem}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list{list-style:none;margin:0;height:calc(195px + (1.7rem / 2));overflow-y:scroll;padding-right:0px;padding-left:0px;width:100%;box-sizing:content-box}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item{height:30px;padding:5px 10px;white-space:nowrap}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item:hover{cursor:pointer;background-color:#f0f0f0}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected{background-color:#216ba5;color:white;font-weight:bold}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected:hover{background-color:#216ba5}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled{color:#ccc}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled:hover{cursor:default;background-color:transparent}.react-datepicker__week-number{color:#ccc;display:inline-block;width:1.7rem;line-height:1.7rem;text-align:center;margin:0.166rem}.react-datepicker__week-number.react-datepicker__week-number--clickable{cursor:pointer}.react-datepicker__week-number.react-datepicker__week-number--clickable:hover{border-radius:0.3rem;background-color:#f0f0f0}.react-datepicker__day-names,.react-datepicker__week{white-space:nowrap}.react-datepicker__day-name,.react-datepicker__day,.react-datepicker__time-name{color:#000;display:inline-block;width:1.7rem;line-height:1.7rem;text-align:center;margin:0.166rem}.react-datepicker__month--selected,.react-datepicker__month--in-selecting-range,.react-datepicker__month--in-range,.react-datepicker__quarter--selected,.react-datepicker__quarter--in-selecting-range,.react-datepicker__quarter--in-range{border-radius:0.3rem;background-color:#216ba5;color:#fff}.react-datepicker__month--selected:hover,.react-datepicker__month--in-selecting-range:hover,.react-datepicker__month--in-range:hover,.react-datepicker__quarter--selected:hover,.react-datepicker__quarter--in-selecting-range:hover,.react-datepicker__quarter--in-range:hover{background-color:#1d5d90}.react-datepicker__month--disabled,.react-datepicker__quarter--disabled{color:#ccc;pointer-events:none}.react-datepicker__month--disabled:hover,.react-datepicker__quarter--disabled:hover{cursor:default;background-color:transparent}.react-datepicker__day,.react-datepicker__month-text,.react-datepicker__quarter-text,.react-datepicker__year-text{cursor:pointer}.react-datepicker__day:hover,.react-datepicker__month-text:hover,.react-datepicker__quarter-text:hover,.react-datepicker__year-text:hover{border-radius:0.3rem;background-color:#f0f0f0}.react-datepicker__day--today,.react-datepicker__month-text--today,.react-datepicker__quarter-text--today,.react-datepicker__year-text--today{font-weight:bold}.react-datepicker__day--highlighted,.react-datepicker__month-text--highlighted,.react-datepicker__quarter-text--highlighted,.react-datepicker__year-text--highlighted{border-radius:0.3rem;background-color:#3dcc4a;color:#fff}.react-datepicker__day--highlighted:hover,.react-datepicker__month-text--highlighted:hover,.react-datepicker__quarter-text--highlighted:hover,.react-datepicker__year-text--highlighted:hover{background-color:#32be3f}.react-datepicker__day--highlighted-custom-1,.react-datepicker__month-text--highlighted-custom-1,.react-datepicker__quarter-text--highlighted-custom-1,.react-datepicker__year-text--highlighted-custom-1{color:magenta}.react-datepicker__day--highlighted-custom-2,.react-datepicker__month-text--highlighted-custom-2,.react-datepicker__quarter-text--highlighted-custom-2,.react-datepicker__year-text--highlighted-custom-2{color:green}.react-datepicker__day--selected,.react-datepicker__day--in-selecting-range,.react-datepicker__day--in-range,.react-datepicker__month-text--selected,.react-datepicker__month-text--in-selecting-range,.react-datepicker__month-text--in-range,.react-datepicker__quarter-text--selected,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__quarter-text--in-range,.react-datepicker__year-text--selected,.react-datepicker__year-text--in-selecting-range,.react-datepicker__year-text--in-range{border-radius:0.3rem;background-color:#216ba5;color:#fff}.react-datepicker__day--selected:hover,.react-datepicker__day--in-selecting-range:hover,.react-datepicker__day--in-range:hover,.react-datepicker__month-text--selected:hover,.react-datepicker__month-text--in-selecting-range:hover,.react-datepicker__month-text--in-range:hover,.react-datepicker__quarter-text--selected:hover,.react-datepicker__quarter-text--in-selecting-range:hover,.react-datepicker__quarter-text--in-range:hover,.react-datepicker__year-text--selected:hover,.react-datepicker__year-text--in-selecting-range:hover,.react-datepicker__year-text--in-range:hover{background-color:#1d5d90}.react-datepicker__day--keyboard-selected,.react-datepicker__month-text--keyboard-selected,.react-datepicker__quarter-text--keyboard-selected,.react-datepicker__year-text--keyboard-selected{border-radius:0.3rem;background-color:#2a87d0;color:#fff}.react-datepicker__day--keyboard-selected:hover,.react-datepicker__month-text--keyboard-selected:hover,.react-datepicker__quarter-text--keyboard-selected:hover,.react-datepicker__year-text--keyboard-selected:hover{background-color:#1d5d90}.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__year-text--in-selecting-range{background-color:rgba(33,107,165,0.5)}.react-datepicker__month--selecting-range .react-datepicker__day--in-range,.react-datepicker__month--selecting-range .react-datepicker__month-text--in-range,.react-datepicker__month--selecting-range .react-datepicker__quarter-text--in-range,.react-datepicker__month--selecting-range .react-datepicker__year-text--in-range{background-color:#f0f0f0;color:#000}.react-datepicker__day--disabled,.react-datepicker__month-text--disabled,.react-datepicker__quarter-text--disabled,.react-datepicker__year-text--disabled{cursor:default;color:#ccc}.react-datepicker__day--disabled:hover,.react-datepicker__month-text--disabled:hover,.react-datepicker__quarter-text--disabled:hover,.react-datepicker__year-text--disabled:hover{background-color:transparent}.react-datepicker__month-text.react-datepicker__month--selected:hover,.react-datepicker__month-text.react-datepicker__month--in-range:hover,.react-datepicker__month-text.react-datepicker__quarter--selected:hover,.react-datepicker__month-text.react-datepicker__quarter--in-range:hover,.react-datepicker__quarter-text.react-datepicker__month--selected:hover,.react-datepicker__quarter-text.react-datepicker__month--in-range:hover,.react-datepicker__quarter-text.react-datepicker__quarter--selected:hover,.react-datepicker__quarter-text.react-datepicker__quarter--in-range:hover{background-color:#216ba5}.react-datepicker__month-text:hover,.react-datepicker__quarter-text:hover{background-color:#f0f0f0}.react-datepicker__input-container{position:relative;display:inline-block;width:100%}.react-datepicker__year-read-view,.react-datepicker__month-read-view,.react-datepicker__month-year-read-view{border:1px solid transparent;border-radius:0.3rem}.react-datepicker__year-read-view:hover,.react-datepicker__month-read-view:hover,.react-datepicker__month-year-read-view:hover{cursor:pointer}.react-datepicker__year-read-view:hover .react-datepicker__year-read-view--down-arrow,.react-datepicker__year-read-view:hover .react-datepicker__month-read-view--down-arrow,.react-datepicker__month-read-view:hover .react-datepicker__year-read-view--down-arrow,.react-datepicker__month-read-view:hover .react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view:hover .react-datepicker__year-read-view--down-arrow,.react-datepicker__month-year-read-view:hover .react-datepicker__month-read-view--down-arrow{border-top-color:#b3b3b3}.react-datepicker__year-read-view--down-arrow,.react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view--down-arrow{border-top-color:#ccc;float:right;margin-left:20px;top:8px;position:relative;border-width:0.45rem}.react-datepicker__year-dropdown,.react-datepicker__month-dropdown,.react-datepicker__month-year-dropdown{background-color:#f0f0f0;position:absolute;width:50%;left:25%;top:30px;z-index:1;text-align:center;border-radius:0.3rem;border:1px solid #aeaeae}.react-datepicker__year-dropdown:hover,.react-datepicker__month-dropdown:hover,.react-datepicker__month-year-dropdown:hover{cursor:pointer}.react-datepicker__year-dropdown--scrollable,.react-datepicker__month-dropdown--scrollable,.react-datepicker__month-year-dropdown--scrollable{height:150px;overflow-y:scroll}.react-datepicker__year-option,.react-datepicker__month-option,.react-datepicker__month-year-option{line-height:20px;width:100%;display:block;margin-left:auto;margin-right:auto}.react-datepicker__year-option:first-of-type,.react-datepicker__month-option:first-of-type,.react-datepicker__month-year-option:first-of-type{border-top-left-radius:0.3rem;border-top-right-radius:0.3rem}.react-datepicker__year-option:last-of-type,.react-datepicker__month-option:last-of-type,.react-datepicker__month-year-option:last-of-type{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border-bottom-left-radius:0.3rem;border-bottom-right-radius:0.3rem}.react-datepicker__year-option:hover,.react-datepicker__month-option:hover,.react-datepicker__month-year-option:hover{background-color:#ccc}.react-datepicker__year-option:hover .react-datepicker__navigation--years-upcoming,.react-datepicker__month-option:hover .react-datepicker__navigation--years-upcoming,.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-upcoming{border-bottom-color:#b3b3b3}.react-datepicker__year-option:hover .react-datepicker__navigation--years-previous,.react-datepicker__month-option:hover .react-datepicker__navigation--years-previous,.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-previous{border-top-color:#b3b3b3}.react-datepicker__year-option--selected,.react-datepicker__month-option--selected,.react-datepicker__month-year-option--selected{position:absolute;left:15px}.react-datepicker__close-icon{cursor:pointer;background-color:transparent;border:0;outline:0;padding:0px 6px 0px 0px;position:absolute;top:0;right:0;height:100%;display:table-cell;vertical-align:middle}.react-datepicker__close-icon::after{cursor:pointer;background-color:#216ba5;color:#fff;border-radius:50%;height:16px;width:16px;padding:2px;font-size:12px;line-height:1;text-align:center;display:table-cell;vertical-align:middle;content:"\00d7"}.react-datepicker__today-button{background:#f0f0f0;border-top:1px solid #aeaeae;cursor:pointer;text-align:center;font-weight:bold;padding:5px 0;clear:left}.react-datepicker__portal{position:fixed;width:100vw;height:100vh;background-color:rgba(0,0,0,0.8);left:0;top:0;justify-content:center;align-items:center;display:flex;z-index:2147483647}.react-datepicker__portal .react-datepicker__day-name,.react-datepicker__portal .react-datepicker__day,.react-datepicker__portal .react-datepicker__time-name{width:3rem;line-height:3rem}@media (max-width: 400px), (max-height: 550px){.react-datepicker__portal .react-datepicker__day-name,.react-datepicker__portal .react-datepicker__day,.react-datepicker__portal .react-datepicker__time-name{width:2rem;line-height:2rem}}.react-datepicker__portal .react-datepicker__current-month,.react-datepicker__portal .react-datepicker-time__header{font-size:1.44rem}.react-datepicker__portal .react-datepicker__navigation{border:0.81rem solid transparent}.react-datepicker__portal .react-datepicker__navigation--previous{border-right-color:#ccc}.react-datepicker__portal .react-datepicker__navigation--previous:hover{border-right-color:#b3b3b3}.react-datepicker__portal .react-datepicker__navigation--previous--disabled,.react-datepicker__portal .react-datepicker__navigation--previous--disabled:hover{border-right-color:#e6e6e6;cursor:default}.react-datepicker__portal .react-datepicker__navigation--next{border-left-color:#ccc}.react-datepicker__portal .react-datepicker__navigation--next:hover{border-left-color:#b3b3b3}.react-datepicker__portal .react-datepicker__navigation--next--disabled,.react-datepicker__portal .react-datepicker__navigation--next--disabled:hover{border-left-color:#e6e6e6;cursor:default}
|
|
563
|
+
*/
|
|
564
|
+
.cropper-container {
|
|
565
|
+
direction: ltr;
|
|
566
|
+
font-size: 0;
|
|
567
|
+
line-height: 0;
|
|
568
|
+
position: relative;
|
|
569
|
+
-ms-touch-action: none;
|
|
570
|
+
touch-action: none;
|
|
571
|
+
-webkit-user-select: none;
|
|
572
|
+
-moz-user-select: none;
|
|
573
|
+
-ms-user-select: none;
|
|
574
|
+
user-select: none; }
|
|
575
|
+
|
|
576
|
+
.cropper-container img {
|
|
577
|
+
display: block;
|
|
578
|
+
height: 100%;
|
|
579
|
+
image-orientation: 0deg;
|
|
580
|
+
max-height: none !important;
|
|
581
|
+
max-width: none !important;
|
|
582
|
+
min-height: 0 !important;
|
|
583
|
+
min-width: 0 !important;
|
|
584
|
+
width: 100%; }
|
|
585
|
+
|
|
586
|
+
.cropper-wrap-box,
|
|
587
|
+
.cropper-canvas,
|
|
588
|
+
.cropper-drag-box,
|
|
589
|
+
.cropper-crop-box,
|
|
590
|
+
.cropper-modal {
|
|
591
|
+
bottom: 0;
|
|
592
|
+
left: 0;
|
|
593
|
+
position: absolute;
|
|
594
|
+
right: 0;
|
|
595
|
+
top: 0; }
|
|
596
|
+
|
|
597
|
+
.cropper-wrap-box,
|
|
598
|
+
.cropper-canvas {
|
|
599
|
+
overflow: hidden; }
|
|
600
|
+
|
|
601
|
+
.cropper-drag-box {
|
|
602
|
+
background-color: #fff;
|
|
603
|
+
opacity: 0; }
|
|
604
|
+
|
|
605
|
+
.cropper-modal {
|
|
606
|
+
background-color: #000;
|
|
607
|
+
opacity: 0.5; }
|
|
608
|
+
|
|
609
|
+
.cropper-view-box {
|
|
610
|
+
display: block;
|
|
611
|
+
height: 100%;
|
|
612
|
+
outline: 1px solid #39f;
|
|
613
|
+
outline-color: rgba(51, 153, 255, 0.75);
|
|
614
|
+
overflow: hidden;
|
|
615
|
+
width: 100%; }
|
|
616
|
+
|
|
617
|
+
.cropper-dashed {
|
|
618
|
+
border: 0 dashed #eee;
|
|
619
|
+
display: block;
|
|
620
|
+
opacity: 0.5;
|
|
621
|
+
position: absolute; }
|
|
622
|
+
|
|
623
|
+
.cropper-dashed.dashed-h {
|
|
624
|
+
border-bottom-width: 1px;
|
|
625
|
+
border-top-width: 1px;
|
|
626
|
+
height: calc(100% / 3);
|
|
627
|
+
left: 0;
|
|
628
|
+
top: calc(100% / 3);
|
|
629
|
+
width: 100%; }
|
|
630
|
+
|
|
631
|
+
.cropper-dashed.dashed-v {
|
|
632
|
+
border-left-width: 1px;
|
|
633
|
+
border-right-width: 1px;
|
|
634
|
+
height: 100%;
|
|
635
|
+
left: calc(100% / 3);
|
|
636
|
+
top: 0;
|
|
637
|
+
width: calc(100% / 3); }
|
|
638
|
+
|
|
639
|
+
.cropper-center {
|
|
640
|
+
display: block;
|
|
641
|
+
height: 0;
|
|
642
|
+
left: 50%;
|
|
643
|
+
opacity: 0.75;
|
|
644
|
+
position: absolute;
|
|
645
|
+
top: 50%;
|
|
646
|
+
width: 0; }
|
|
647
|
+
|
|
648
|
+
.cropper-center::before,
|
|
649
|
+
.cropper-center::after {
|
|
650
|
+
background-color: #eee;
|
|
651
|
+
content: ' ';
|
|
652
|
+
display: block;
|
|
653
|
+
position: absolute; }
|
|
654
|
+
|
|
655
|
+
.cropper-center::before {
|
|
656
|
+
height: 1px;
|
|
657
|
+
left: -3px;
|
|
658
|
+
top: 0;
|
|
659
|
+
width: 7px; }
|
|
660
|
+
|
|
661
|
+
.cropper-center::after {
|
|
662
|
+
height: 7px;
|
|
663
|
+
left: 0;
|
|
664
|
+
top: -3px;
|
|
665
|
+
width: 1px; }
|
|
666
|
+
|
|
667
|
+
.cropper-face,
|
|
668
|
+
.cropper-line,
|
|
669
|
+
.cropper-point {
|
|
670
|
+
display: block;
|
|
671
|
+
height: 100%;
|
|
672
|
+
opacity: 0.1;
|
|
673
|
+
position: absolute;
|
|
674
|
+
width: 100%; }
|
|
675
|
+
|
|
676
|
+
.cropper-face {
|
|
677
|
+
background-color: #fff;
|
|
678
|
+
left: 0;
|
|
679
|
+
top: 0; }
|
|
680
|
+
|
|
681
|
+
.cropper-line {
|
|
682
|
+
background-color: #39f; }
|
|
683
|
+
|
|
684
|
+
.cropper-line.line-e {
|
|
685
|
+
cursor: ew-resize;
|
|
686
|
+
right: -3px;
|
|
687
|
+
top: 0;
|
|
688
|
+
width: 5px; }
|
|
689
|
+
|
|
690
|
+
.cropper-line.line-n {
|
|
691
|
+
cursor: ns-resize;
|
|
692
|
+
height: 5px;
|
|
693
|
+
left: 0;
|
|
694
|
+
top: -3px; }
|
|
695
|
+
|
|
696
|
+
.cropper-line.line-w {
|
|
697
|
+
cursor: ew-resize;
|
|
698
|
+
left: -3px;
|
|
699
|
+
top: 0;
|
|
700
|
+
width: 5px; }
|
|
701
|
+
|
|
702
|
+
.cropper-line.line-s {
|
|
703
|
+
bottom: -3px;
|
|
704
|
+
cursor: ns-resize;
|
|
705
|
+
height: 5px;
|
|
706
|
+
left: 0; }
|
|
707
|
+
|
|
708
|
+
.cropper-point {
|
|
709
|
+
background-color: #39f;
|
|
710
|
+
height: 5px;
|
|
711
|
+
opacity: 0.75;
|
|
712
|
+
width: 5px; }
|
|
713
|
+
|
|
714
|
+
.cropper-point.point-e {
|
|
715
|
+
cursor: ew-resize;
|
|
716
|
+
margin-top: -3px;
|
|
717
|
+
right: -3px;
|
|
718
|
+
top: 50%; }
|
|
719
|
+
|
|
720
|
+
.cropper-point.point-n {
|
|
721
|
+
cursor: ns-resize;
|
|
722
|
+
left: 50%;
|
|
723
|
+
margin-left: -3px;
|
|
724
|
+
top: -3px; }
|
|
725
|
+
|
|
726
|
+
.cropper-point.point-w {
|
|
727
|
+
cursor: ew-resize;
|
|
728
|
+
left: -3px;
|
|
729
|
+
margin-top: -3px;
|
|
730
|
+
top: 50%; }
|
|
731
|
+
|
|
732
|
+
.cropper-point.point-s {
|
|
733
|
+
bottom: -3px;
|
|
734
|
+
cursor: s-resize;
|
|
735
|
+
left: 50%;
|
|
736
|
+
margin-left: -3px; }
|
|
737
|
+
|
|
738
|
+
.cropper-point.point-ne {
|
|
739
|
+
cursor: nesw-resize;
|
|
740
|
+
right: -3px;
|
|
741
|
+
top: -3px; }
|
|
742
|
+
|
|
743
|
+
.cropper-point.point-nw {
|
|
744
|
+
cursor: nwse-resize;
|
|
745
|
+
left: -3px;
|
|
746
|
+
top: -3px; }
|
|
747
|
+
|
|
748
|
+
.cropper-point.point-sw {
|
|
749
|
+
bottom: -3px;
|
|
750
|
+
cursor: nesw-resize;
|
|
751
|
+
left: -3px; }
|
|
752
|
+
|
|
753
|
+
.cropper-point.point-se {
|
|
754
|
+
bottom: -3px;
|
|
755
|
+
cursor: nwse-resize;
|
|
756
|
+
height: 20px;
|
|
757
|
+
opacity: 1;
|
|
758
|
+
right: -3px;
|
|
759
|
+
width: 20px; }
|
|
760
|
+
|
|
761
|
+
@media (min-width: 768px) {
|
|
762
|
+
.cropper-point.point-se {
|
|
763
|
+
height: 15px;
|
|
764
|
+
width: 15px; } }
|
|
765
|
+
|
|
766
|
+
@media (min-width: 992px) {
|
|
767
|
+
.cropper-point.point-se {
|
|
768
|
+
height: 10px;
|
|
769
|
+
width: 10px; } }
|
|
770
|
+
|
|
771
|
+
@media (min-width: 1200px) {
|
|
772
|
+
.cropper-point.point-se {
|
|
773
|
+
height: 5px;
|
|
774
|
+
opacity: 0.75;
|
|
775
|
+
width: 5px; } }
|
|
776
|
+
|
|
777
|
+
.cropper-point.point-se::before {
|
|
778
|
+
background-color: #39f;
|
|
779
|
+
bottom: -50%;
|
|
780
|
+
content: ' ';
|
|
781
|
+
display: block;
|
|
782
|
+
height: 200%;
|
|
783
|
+
opacity: 0;
|
|
784
|
+
position: absolute;
|
|
785
|
+
right: -50%;
|
|
786
|
+
width: 200%; }
|
|
787
|
+
|
|
788
|
+
.cropper-invisible {
|
|
789
|
+
opacity: 0; }
|
|
790
|
+
|
|
791
|
+
.cropper-bg {
|
|
792
|
+
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC"); }
|
|
793
|
+
|
|
794
|
+
.cropper-hide {
|
|
795
|
+
display: block;
|
|
796
|
+
height: 0;
|
|
797
|
+
position: absolute;
|
|
798
|
+
width: 0; }
|
|
799
|
+
|
|
800
|
+
.cropper-hidden {
|
|
801
|
+
display: none !important; }
|
|
802
|
+
|
|
803
|
+
.cropper-move {
|
|
804
|
+
cursor: move; }
|
|
805
|
+
|
|
806
|
+
.cropper-crop {
|
|
807
|
+
cursor: crosshair; }
|
|
808
|
+
|
|
809
|
+
.cropper-disabled .cropper-drag-box,
|
|
810
|
+
.cropper-disabled .cropper-face,
|
|
811
|
+
.cropper-disabled .cropper-line,
|
|
812
|
+
.cropper-disabled .cropper-point {
|
|
813
|
+
cursor: not-allowed; }
|
|
814
|
+
|
|
815
|
+
|
|
816
|
+
|
|
817
|
+
.cv--subheading--3otCn {
|
|
818
|
+
font-size: 1.5rem; }
|
|
819
|
+
|
|
820
|
+
.cv--header--2plaq {
|
|
821
|
+
margin: 0 0.3125rem; }
|
|
822
|
+
|
|
823
|
+
.cv--heading--1OHYi {
|
|
824
|
+
font-size: 1.7rem; }
|
|
825
|
+
|
|
826
|
+
.cv--subheading--y1kiI {
|
|
827
|
+
font-size: 1.5rem; }
|
|
828
|
+
|
|
829
|
+
.cv--editContainer--19uW8 > .row {
|
|
830
|
+
margin: 0 -1rem; }
|
|
831
|
+
|
|
832
|
+
.cv--playlistCover--2F7xN {
|
|
833
|
+
position: absolute;
|
|
834
|
+
width: 100%;
|
|
835
|
+
height: 100%; }
|
|
836
|
+
|
|
837
|
+
.cv--backButton--1vy8f {
|
|
838
|
+
display: flex;
|
|
839
|
+
align-items: center;
|
|
840
|
+
color: #5B5E68;
|
|
841
|
+
font-weight: 700; }
|
|
842
|
+
.cv--backButton--1vy8f:hover, .cv--backButton--1vy8f:active, .cv--backButton--1vy8f:focus {
|
|
843
|
+
cursor: pointer;
|
|
844
|
+
text-decoration: underline;
|
|
845
|
+
color: #313543; }
|
|
846
|
+
|
|
847
|
+
.cv--btnContainer--1mxds {
|
|
848
|
+
float: right; }
|
|
849
|
+
|
|
850
|
+
.cv--bannerContainer--dEjHl {
|
|
851
|
+
padding: 0 0.9375rem; }
|
|
852
|
+
|
|
853
|
+
.cv--undoChangesBtn--2Q4z1 {
|
|
854
|
+
font-weight: 700;
|
|
855
|
+
color: #5B5E68;
|
|
856
|
+
text-decoration: none;
|
|
857
|
+
background-color: transparent;
|
|
858
|
+
font-size: 1.1rem;
|
|
859
|
+
border: 0.0625rem solid transparent; }
|
|
860
|
+
.cv--undoChangesBtn--2Q4z1:hover, .cv--undoChangesBtn--2Q4z1:active {
|
|
861
|
+
color: #979797;
|
|
862
|
+
border: none;
|
|
863
|
+
text-decoration: underline; }
|
|
864
|
+
|
|
865
|
+
.cv--bg1--2s5j6 {
|
|
866
|
+
background-color: #4E9ACE; }
|
|
867
|
+
|
|
868
|
+
.cv--bg2--MZs5y {
|
|
869
|
+
background-color: #6bbfca; }
|
|
870
|
+
|
|
871
|
+
.cv--bg3--BiNSS {
|
|
872
|
+
background-color: #FFCD52; }
|
|
873
|
+
|
|
874
|
+
.cv--bg4--2ONJc {
|
|
875
|
+
background-color: #F7847B; }
|
|
876
|
+
|
|
877
|
+
.cv--bg5--T0oZ8 {
|
|
878
|
+
background-color: #51ADA3; }
|
|
879
|
+
|
|
880
|
+
.cv--bg6--2SCHw {
|
|
881
|
+
background-color: #605DB4; }
|
|
882
|
+
|
|
883
|
+
.cv--bg7--2v0os {
|
|
884
|
+
background-color: #BB8EC7; }
|
|
885
|
+
|
|
886
|
+
.cv--bg8--1QX-w {
|
|
887
|
+
background-color: #60B789; }
|
|
888
|
+
|
|
889
|
+
.cv--alertItem--3ppPT {
|
|
890
|
+
border-radius: 0.25rem;
|
|
891
|
+
border: 1px solid #D7D7D7;
|
|
892
|
+
box-shadow: 2px 3px 6px 1px rgba(0, 0, 0, 0.1); }
|
|
893
|
+
.cv--alertItem--3ppPT .close {
|
|
894
|
+
float: none;
|
|
895
|
+
line-height: 0.8;
|
|
896
|
+
vertical-align: top; }
|
|
897
|
+
|
|
898
|
+
.cv--alertBox--2gPqV .cv--alertList--1_wrK {
|
|
899
|
+
z-index: 1071; }
|
|
900
|
+
.cv--alertBox--2gPqV .cv--alertList--1_wrK .alert-enter {
|
|
901
|
+
opacity: 0; }
|
|
902
|
+
.cv--alertBox--2gPqV .cv--alertList--1_wrK .alert-enter-active {
|
|
903
|
+
opacity: 1;
|
|
904
|
+
transition: opacity 200ms ease-in; }
|
|
905
|
+
.cv--alertBox--2gPqV .cv--alertList--1_wrK .alert-exit {
|
|
906
|
+
opacity: 1; }
|
|
907
|
+
.cv--alertBox--2gPqV .cv--alertList--1_wrK .alert-exit-active {
|
|
908
|
+
opacity: 0;
|
|
909
|
+
transition: opacity 200ms ease-in; }
|
|
910
|
+
|
|
911
|
+
.cv--icon--2gpnl {
|
|
912
|
+
vertical-align: top;
|
|
913
|
+
text-align: center; }
|
|
914
|
+
|
|
915
|
+
.cv--alertContent--1akpi {
|
|
916
|
+
width: 15.625rem; }
|
|
917
|
+
.cv--alertContent--1akpi .cv--heading--3jnJY {
|
|
918
|
+
line-height: 1.5;
|
|
919
|
+
font-weight: 500; }
|
|
920
|
+
|
|
921
|
+
.cv--disabled--1KxF9 {
|
|
922
|
+
background-color: #f8f8f8; }
|
|
923
|
+
|
|
924
|
+
.cv--disabledHighlighted--pbuec {
|
|
925
|
+
background-color: #8abcdf; }
|
|
926
|
+
|
|
927
|
+
.cv--footerImageContainer--2lUo1 {
|
|
928
|
+
width: 100%;
|
|
929
|
+
height: 100%; }
|
|
930
|
+
.cv--footerImageContainer--2lUo1 .cv--footerImage--Q_m9i {
|
|
931
|
+
opacity: 0.5;
|
|
932
|
+
width: 100%;
|
|
933
|
+
height: 100%;
|
|
934
|
+
background-position: right;
|
|
935
|
+
background-size: 200%;
|
|
936
|
+
background-repeat: no-repeat;
|
|
937
|
+
padding-bottom: 26.22951%; }
|
|
938
|
+
|
|
939
|
+
.cv--wave--2WUUq {
|
|
940
|
+
fill: #fff;
|
|
941
|
+
color: #fff;
|
|
942
|
+
position: absolute;
|
|
943
|
+
top: 0;
|
|
944
|
+
left: 0;
|
|
945
|
+
width: 100%;
|
|
946
|
+
display: block; }
|
|
947
|
+
|
|
948
|
+
.cv--widgetItem--1oyw1 {
|
|
949
|
+
border-radius: 0.5rem; }
|
|
950
|
+
.cv--widgetItem--1oyw1 .cv--imagePanel--1UOVG {
|
|
951
|
+
position: relative;
|
|
952
|
+
background-position: top;
|
|
953
|
+
background-size: cover;
|
|
954
|
+
width: 5rem;
|
|
955
|
+
height: 5rem;
|
|
956
|
+
flex-shrink: 0; }
|
|
957
|
+
.cv--widgetItem--1oyw1 .cv--imagePanel--1UOVG .cv--image--1_BF4 {
|
|
958
|
+
z-index: 2;
|
|
959
|
+
width: 100%;
|
|
960
|
+
height: 100%;
|
|
961
|
+
border-top-left-radius: 0.5rem;
|
|
962
|
+
border-bottom-left-radius: 0.5rem;
|
|
963
|
+
background-position: center;
|
|
964
|
+
background-size: cover;
|
|
965
|
+
background-repeat: no-repeat; }
|
|
966
|
+
.cv--widgetItem--1oyw1 .cv--large--1EtWs {
|
|
967
|
+
width: 8rem;
|
|
968
|
+
height: 8rem; }
|
|
969
|
+
.cv--widgetItem--1oyw1 .cv--comingSoonPanel--3js2e {
|
|
970
|
+
line-height: 1; }
|
|
971
|
+
.cv--widgetItem--1oyw1 .cv--name--3csgE {
|
|
972
|
+
color: #313543; }
|
|
973
|
+
|
|
974
|
+
.cv--editSubjectsItem--1yBMf {
|
|
975
|
+
height: 5rem;
|
|
976
|
+
border-radius: 0.5rem;
|
|
977
|
+
color: #B5B5B5;
|
|
978
|
+
border: 1px dashed #D7D7D7; }
|
|
979
|
+
|
|
980
|
+
.cv--allSubjectsItem--2oBMH {
|
|
981
|
+
height: 5rem;
|
|
982
|
+
color: #fff;
|
|
983
|
+
border-radius: 0.5rem;
|
|
984
|
+
border: 1px solid #D7D7D7; }
|
|
985
|
+
.cv--allSubjectsItem--2oBMH .cv--logoContainer--T3Lym {
|
|
986
|
+
height: 1.1rem;
|
|
987
|
+
width: 6rem; }
|
|
988
|
+
|
|
989
|
+
.cv--heart--3V89- {
|
|
990
|
+
display: none; }
|
|
991
|
+
|
|
992
|
+
.cv--favouriteButton--MxBE0 {
|
|
993
|
+
color: #313543;
|
|
994
|
+
background-color: rgba(241, 241, 241, 0.5);
|
|
995
|
+
border-radius: 50%; }
|
|
996
|
+
.cv--favouriteButton--MxBE0:hover {
|
|
997
|
+
color: #D9584F;
|
|
998
|
+
background-color: rgba(241, 241, 241, 0.7); }
|
|
999
|
+
.cv--favouriteButton--MxBE0:hover .cv--heartOutline--3fbac {
|
|
1000
|
+
display: none; }
|
|
1001
|
+
.cv--favouriteButton--MxBE0:hover .cv--heart--3V89- {
|
|
1002
|
+
opacity: 0.75;
|
|
1003
|
+
display: inline-block; }
|
|
1004
|
+
|
|
1005
|
+
.cv--favourited--37xop {
|
|
1006
|
+
color: #D9584F;
|
|
1007
|
+
background-color: rgba(241, 241, 241, 0.8); }
|
|
1008
|
+
.cv--favourited--37xop .cv--heartOutline--3fbac {
|
|
1009
|
+
display: none; }
|
|
1010
|
+
.cv--favourited--37xop .cv--heart--3V89- {
|
|
1011
|
+
display: inline-block; }
|
|
1012
|
+
.cv--favourited--37xop:hover .cv--heart--3V89- {
|
|
1013
|
+
opacity: 1; }
|
|
1014
|
+
|
|
1015
|
+
.cv--appLink--1SFgo {
|
|
1016
|
+
color: inherit;
|
|
1017
|
+
font-size: 0.78571em; }
|
|
1018
|
+
.cv--appLink--1SFgo:hover .cv--hoverUnderline--2iyL0 {
|
|
1019
|
+
text-decoration: underline; }
|
|
1020
|
+
|
|
1021
|
+
.cv--small--2POOK {
|
|
1022
|
+
font-size: 0.57143em; }
|
|
1023
|
+
|
|
1024
|
+
.cv--minHeight--2tRvp:not(:empty) {
|
|
1025
|
+
min-height: 1.5rem; }
|
|
1026
|
+
|
|
1027
|
+
.cv--baseIndicator--3ywpG, .cv--leftIndicator--2hUic, .cv--rightIndicator--JJuoj {
|
|
1028
|
+
position: absolute;
|
|
1029
|
+
top: 50%;
|
|
1030
|
+
transform: translateY(-50%);
|
|
1031
|
+
width: 0.2rem;
|
|
1032
|
+
height: 0.66667rem;
|
|
1033
|
+
border-radius: 0.2rem; }
|
|
1034
|
+
|
|
1035
|
+
.cv--leftIndicator--2hUic {
|
|
1036
|
+
left: 0; }
|
|
1037
|
+
|
|
1038
|
+
.cv--rightIndicator--JJuoj {
|
|
1039
|
+
right: 0; }
|
|
1040
|
+
|
|
1041
|
+
.cv--progressBar--_Cfv- {
|
|
1042
|
+
position: absolute;
|
|
1043
|
+
top: 50%;
|
|
1044
|
+
transform: translateY(-50%);
|
|
1045
|
+
left: 0.5rem;
|
|
1046
|
+
right: 0.5rem;
|
|
1047
|
+
background-color: #fff;
|
|
1048
|
+
height: 0.15rem;
|
|
1049
|
+
border-radius: 0.15rem; }
|
|
1050
|
+
.cv--progressBar--_Cfv-.cv--large--3R1k4 {
|
|
1051
|
+
left: 1rem;
|
|
1052
|
+
right: 1rem;
|
|
1053
|
+
height: 0.3rem;
|
|
1054
|
+
border-radius: 0.3rem; }
|
|
1055
|
+
.cv--progressBar--_Cfv-.cv--large--3R1k4 .cv--baseIndicator--3ywpG, .cv--progressBar--_Cfv-.cv--large--3R1k4 .cv--leftIndicator--2hUic, .cv--progressBar--_Cfv-.cv--large--3R1k4 .cv--rightIndicator--JJuoj {
|
|
1056
|
+
width: 0.4rem;
|
|
1057
|
+
border-radius: 0.4rem;
|
|
1058
|
+
height: 1rem; }
|
|
1059
|
+
|
|
1060
|
+
.cv--durationBar--15Ohf {
|
|
1061
|
+
border-radius: 0.15rem;
|
|
1062
|
+
background-color: #4E9ACE;
|
|
1063
|
+
position: absolute;
|
|
1064
|
+
height: 100%; }
|
|
1065
|
+
|
|
1066
|
+
.cv--timepoint--3Oh2b {
|
|
1067
|
+
position: absolute;
|
|
1068
|
+
top: 50%;
|
|
1069
|
+
transform: translateY(-50%);
|
|
1070
|
+
width: 0.2rem;
|
|
1071
|
+
height: 0.5rem;
|
|
1072
|
+
border-radius: 0.2rem; }
|
|
1073
|
+
|
|
1074
|
+
.cv--progressBar--2jpyn {
|
|
1075
|
+
position: absolute;
|
|
1076
|
+
top: 50%;
|
|
1077
|
+
transform: translateY(-50%);
|
|
1078
|
+
left: 0.5rem;
|
|
1079
|
+
right: 0.5rem;
|
|
1080
|
+
background-color: #fff;
|
|
1081
|
+
height: 0.2rem;
|
|
1082
|
+
border-radius: 0.2rem; }
|
|
1083
|
+
.cv--progressBar--2jpyn.cv--white--2vZcf {
|
|
1084
|
+
background-color: #fff; }
|
|
1085
|
+
.cv--progressBar--2jpyn.cv--gray--6Tyxi {
|
|
1086
|
+
background-color: #eaeaea; }
|
|
1087
|
+
.cv--progressBar--2jpyn.cv--large--19FGq {
|
|
1088
|
+
left: 1rem;
|
|
1089
|
+
right: 1rem;
|
|
1090
|
+
height: 0.4rem;
|
|
1091
|
+
border-radius: 0.4rem; }
|
|
1092
|
+
.cv--progressBar--2jpyn.cv--large--19FGq .cv--timepoint--3Oh2b {
|
|
1093
|
+
width: 0.4rem;
|
|
1094
|
+
border-radius: 0.4rem;
|
|
1095
|
+
height: 1rem; }
|
|
1096
|
+
|
|
1097
|
+
.cv--bottomBar--2cTUY {
|
|
1098
|
+
position: absolute;
|
|
1099
|
+
bottom: 0;
|
|
1100
|
+
left: 0;
|
|
1101
|
+
right: 0;
|
|
1102
|
+
z-index: 2; }
|
|
1103
|
+
|
|
1104
|
+
.cv--videoProgress--3BlpQ {
|
|
1105
|
+
height: 0.25rem; }
|
|
1106
|
+
|
|
1107
|
+
.cv--clipProgress--2GT2x {
|
|
1108
|
+
background-color: #363f5e;
|
|
1109
|
+
height: 1.25rem;
|
|
1110
|
+
opacity: .9; }
|
|
1111
|
+
.cv--clipProgress--2GT2x.cv--large--BDAkC {
|
|
1112
|
+
height: 2rem; }
|
|
1113
|
+
|
|
1114
|
+
.cv--interactiveProgress--3KgYP {
|
|
1115
|
+
background-color: #363f5e;
|
|
1116
|
+
height: 1.25rem;
|
|
1117
|
+
opacity: .9; }
|
|
1118
|
+
.cv--interactiveProgress--3KgYP.cv--large--BDAkC {
|
|
1119
|
+
height: 2rem; }
|
|
1120
|
+
|
|
1121
|
+
.cv--padlock--1I0-z {
|
|
1122
|
+
color: #313543;
|
|
1123
|
+
border-radius: 50%;
|
|
1124
|
+
background-color: rgba(241, 241, 241, 0.7);
|
|
1125
|
+
width: 1.7rem;
|
|
1126
|
+
height: 1.7rem; }
|
|
1127
|
+
|
|
1128
|
+
.cv--mask--3nE2p {
|
|
1129
|
+
position: absolute;
|
|
1130
|
+
width: 100%;
|
|
1131
|
+
height: 100%;
|
|
1132
|
+
z-index: 2;
|
|
1133
|
+
background-color: #333333;
|
|
1134
|
+
opacity: 0;
|
|
1135
|
+
transition: opacity 100ms ease-in-out; }
|
|
1136
|
+
|
|
1137
|
+
.cv--video--KdGwU {
|
|
1138
|
+
width: 3.75rem;
|
|
1139
|
+
height: 3.75rem; }
|
|
1140
|
+
|
|
1141
|
+
.cv--video--KdGwU, .cv--playlist--1cBmC {
|
|
1142
|
+
position: absolute;
|
|
1143
|
+
top: 50%;
|
|
1144
|
+
left: 50%;
|
|
1145
|
+
z-index: 4;
|
|
1146
|
+
color: #fff;
|
|
1147
|
+
opacity: 0;
|
|
1148
|
+
transform: translate3D(-50%, -50%, 0);
|
|
1149
|
+
transition: opacity 100ms ease-in-out; }
|
|
1150
|
+
|
|
1151
|
+
.cv--maskContainer--3si6K.cv--lock--OpPK5 .cv--mask--3nE2p {
|
|
1152
|
+
opacity: 0.7; }
|
|
1153
|
+
|
|
1154
|
+
.cv--maskContainer--3si6K.cv--lock--OpPK5 .cv--playlist--1cBmC, .cv--maskContainer--3si6K.cv--lock--OpPK5 .cv--video--KdGwU {
|
|
1155
|
+
opacity: 1; }
|
|
1156
|
+
|
|
1157
|
+
.cv--maskContainer--3si6K:not(.cv--lock--OpPK5):hover .cv--mask--3nE2p {
|
|
1158
|
+
opacity: 0.5; }
|
|
1159
|
+
|
|
1160
|
+
.cv--maskContainer--3si6K:not(.cv--lock--OpPK5):hover .cv--playlist--1cBmC, .cv--maskContainer--3si6K:not(.cv--lock--OpPK5):hover .cv--video--KdGwU {
|
|
1161
|
+
opacity: 1; }
|
|
1162
|
+
|
|
1163
|
+
.cv--overlayContainer--1MQy4 {
|
|
1164
|
+
position: absolute;
|
|
1165
|
+
width: 100%;
|
|
1166
|
+
height: 100%;
|
|
1167
|
+
z-index: 2;
|
|
1168
|
+
padding: 0.3125rem;
|
|
1169
|
+
color: #fff; }
|
|
1170
|
+
|
|
1171
|
+
.cv--topRightContainer--3eb0s {
|
|
1172
|
+
position: absolute;
|
|
1173
|
+
top: 0;
|
|
1174
|
+
right: 0;
|
|
1175
|
+
padding-top: 0.625rem;
|
|
1176
|
+
padding-right: 0.625rem;
|
|
1177
|
+
z-index: 5;
|
|
1178
|
+
transform: translate3d(0, 0, 0); }
|
|
1179
|
+
.cv--topRightContainer--3eb0s .cv--favouriteButton--1UfdO {
|
|
1180
|
+
background-color: rgba(241, 241, 241, 0.5); }
|
|
1181
|
+
|
|
1182
|
+
.cv--title--Q1km- {
|
|
1183
|
+
color: inherit;
|
|
1184
|
+
line-height: 1.2;
|
|
1185
|
+
position: absolute;
|
|
1186
|
+
bottom: 0;
|
|
1187
|
+
left: 0;
|
|
1188
|
+
padding: 0.625rem;
|
|
1189
|
+
padding-top: 0;
|
|
1190
|
+
width: 100%; }
|
|
1191
|
+
.cv--title--Q1km-.cv--downScale--2_7sb {
|
|
1192
|
+
transform: scale(0.9);
|
|
1193
|
+
margin-left: -1rem;
|
|
1194
|
+
margin-bottom: -0.2rem; }
|
|
1195
|
+
|
|
1196
|
+
.cv--gradient--Of_Cn::after {
|
|
1197
|
+
content: '';
|
|
1198
|
+
position: absolute;
|
|
1199
|
+
top: 0;
|
|
1200
|
+
left: 0;
|
|
1201
|
+
width: 100%;
|
|
1202
|
+
height: 100%;
|
|
1203
|
+
background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.5) 5%, rgba(0, 0, 0, 0.4) 10%, rgba(0, 0, 0, 0.2) 25%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.02) 60%, rgba(0, 0, 0, 0) 80%); }
|
|
1204
|
+
|
|
1205
|
+
.cv--playIcon--B9cJG {
|
|
1206
|
+
position: absolute;
|
|
1207
|
+
top: 50%;
|
|
1208
|
+
left: 50%;
|
|
1209
|
+
z-index: 4;
|
|
1210
|
+
color: #fff;
|
|
1211
|
+
transform: translate3D(-50%, -50%, 0);
|
|
1212
|
+
transition: opacity 100ms ease-in-out;
|
|
1213
|
+
width: 2.75rem;
|
|
1214
|
+
height: 2.75rem; }
|
|
1215
|
+
|
|
1216
|
+
.cv--videoProgress--1EuSH {
|
|
1217
|
+
position: absolute;
|
|
1218
|
+
bottom: 0;
|
|
1219
|
+
left: 0;
|
|
1220
|
+
right: 0;
|
|
1221
|
+
height: 0.25rem; }
|
|
1222
|
+
|
|
1223
|
+
.cv--videoProgress--1EuSH + .cv--badgeContainer--10TYY {
|
|
1224
|
+
bottom: 0.5625rem; }
|
|
1225
|
+
|
|
1226
|
+
.cv--clipProgress--3QyHR, .cv--interactiveProgress--1KUiQ {
|
|
1227
|
+
position: absolute;
|
|
1228
|
+
bottom: 0;
|
|
1229
|
+
left: 0;
|
|
1230
|
+
right: 0;
|
|
1231
|
+
background-color: #363f5e;
|
|
1232
|
+
height: 1.25rem;
|
|
1233
|
+
opacity: .9; }
|
|
1234
|
+
|
|
1235
|
+
.cv--clipProgress--3QyHR + .cv--badgeContainer--10TYY, .cv--interactiveProgress--1KUiQ + .cv--badgeContainer--10TYY {
|
|
1236
|
+
bottom: 1.5625rem; }
|
|
1237
|
+
|
|
1238
|
+
.cv--unchecked--19UkS {
|
|
1239
|
+
color: #313543;
|
|
1240
|
+
background-color: rgba(241, 241, 241, 0.5); }
|
|
1241
|
+
.cv--unchecked--19UkS:hover {
|
|
1242
|
+
color: #fff;
|
|
1243
|
+
background-color: #60B789;
|
|
1244
|
+
opacity: 0.75;
|
|
1245
|
+
display: inline-block; }
|
|
1246
|
+
|
|
1247
|
+
.cv--checked--216nE {
|
|
1248
|
+
color: #fff;
|
|
1249
|
+
background-color: #60B789; }
|
|
1250
|
+
|
|
1251
|
+
.cv--container--lrwA1 {
|
|
1252
|
+
position: absolute;
|
|
1253
|
+
top: 0.625rem;
|
|
1254
|
+
right: 0.625rem;
|
|
1255
|
+
z-index: 5; }
|
|
1256
|
+
.cv--container--lrwA1.cv--cvIcon--1egZW svg {
|
|
1257
|
+
transform: scale(0.7) translateX(1.5px); }
|
|
1258
|
+
.cv--container--lrwA1 .cv--action--1XCjX:not(:first-child) {
|
|
1259
|
+
margin-left: 0.3125rem; }
|
|
1260
|
+
|
|
1261
|
+
.cv--titleOverlay--1JIh4 {
|
|
1262
|
+
color: inherit;
|
|
1263
|
+
line-height: 1.2;
|
|
1264
|
+
position: absolute;
|
|
1265
|
+
bottom: 0;
|
|
1266
|
+
left: 0;
|
|
1267
|
+
z-index: 2;
|
|
1268
|
+
padding: 0.625rem;
|
|
1269
|
+
padding-top: 0; }
|
|
1270
|
+
.cv--titleOverlay--1JIh4.cv--clip--2tA4q {
|
|
1271
|
+
padding-bottom: 0;
|
|
1272
|
+
bottom: 1.5625rem; }
|
|
1273
|
+
.cv--titleOverlay--1JIh4.cv--clip--2tA4q.cv--large--2m2MX {
|
|
1274
|
+
bottom: 2.3125rem; }
|
|
1275
|
+
.cv--titleOverlay--1JIh4.cv--interactive--1ngGh {
|
|
1276
|
+
padding-bottom: 0;
|
|
1277
|
+
bottom: 1.5625rem; }
|
|
1278
|
+
.cv--titleOverlay--1JIh4.cv--interactive--1ngGh.cv--large--2m2MX {
|
|
1279
|
+
bottom: 2.3125rem; }
|
|
1280
|
+
|
|
1281
|
+
.cv--titleBelow--1OKu_ {
|
|
1282
|
+
margin-top: 0.3125rem;
|
|
1283
|
+
line-height: 1.2; }
|
|
1284
|
+
|
|
1285
|
+
.cv--overlayContainer--1BBKk {
|
|
1286
|
+
position: absolute;
|
|
1287
|
+
width: 100%;
|
|
1288
|
+
height: 100%;
|
|
1289
|
+
padding: 0.3125rem;
|
|
1290
|
+
color: #fff; }
|
|
1291
|
+
|
|
1292
|
+
.cv--badgeContainer--28ZUf {
|
|
1293
|
+
position: absolute;
|
|
1294
|
+
bottom: 0.3125rem;
|
|
1295
|
+
right: 0.3125rem;
|
|
1296
|
+
z-index: 2; }
|
|
1297
|
+
.cv--badgeContainer--28ZUf.cv--video--2hXc3 {
|
|
1298
|
+
bottom: 0.5625rem; }
|
|
1299
|
+
.cv--badgeContainer--28ZUf.cv--clip--2tA4q {
|
|
1300
|
+
bottom: 1.5625rem; }
|
|
1301
|
+
.cv--badgeContainer--28ZUf.cv--clip--2tA4q.cv--large--2m2MX {
|
|
1302
|
+
bottom: 2.3125rem; }
|
|
1303
|
+
.cv--badgeContainer--28ZUf.cv--interactive--1ngGh {
|
|
1304
|
+
bottom: 1.5625rem; }
|
|
1305
|
+
.cv--badgeContainer--28ZUf.cv--interactive--1ngGh.cv--large--2m2MX {
|
|
1306
|
+
bottom: 2.3125rem; }
|
|
1307
|
+
|
|
1308
|
+
.cv--gradient--1o4aT::after {
|
|
1309
|
+
content: '';
|
|
1310
|
+
position: absolute;
|
|
1311
|
+
top: 0;
|
|
1312
|
+
left: 0;
|
|
1313
|
+
width: 100%;
|
|
1314
|
+
height: 100%;
|
|
1315
|
+
background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.5) 5%, rgba(0, 0, 0, 0.4) 10%, rgba(0, 0, 0, 0.2) 25%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.02) 60%, rgba(0, 0, 0, 0) 80%); }
|
|
1316
|
+
|
|
1317
|
+
.cv--tagList--yvetE {
|
|
1318
|
+
display: flex;
|
|
1319
|
+
flex-wrap: wrap; }
|
|
1320
|
+
|
|
1321
|
+
.cv--disabled--3ZfKv {
|
|
1322
|
+
background-color: #f1f1f1;
|
|
1323
|
+
color: #B5B5B5; }
|
|
1324
|
+
.cv--disabled--3ZfKv:hover {
|
|
1325
|
+
background-color: #f1f1f1;
|
|
1326
|
+
color: #B5B5B5; }
|
|
1327
|
+
|
|
1328
|
+
.cv--partialTag--1y5C6 {
|
|
1329
|
+
width: 5rem; }
|
|
1330
|
+
|
|
1331
|
+
.cv--partialHeroThumbnail--mBd7D {
|
|
1332
|
+
position: relative;
|
|
1333
|
+
width: 100%;
|
|
1334
|
+
padding-bottom: 56.25%; }
|
|
1335
|
+
|
|
1336
|
+
.cv--partialSeriesText--2MXtV {
|
|
1337
|
+
width: 6.25rem;
|
|
1338
|
+
height: 1rem; }
|
|
1339
|
+
|
|
1340
|
+
.cv--partialVideoTitleText--3AoSO {
|
|
1341
|
+
width: 16rem;
|
|
1342
|
+
height: 2rem; }
|
|
1343
|
+
|
|
1344
|
+
.cv--partialBadge--33OjS {
|
|
1345
|
+
width: 4rem;
|
|
1346
|
+
height: 1rem; }
|
|
1347
|
+
|
|
1348
|
+
.cv--partialDescription--2uRQA {
|
|
1349
|
+
width: 80%;
|
|
1350
|
+
height: 4rem; }
|
|
1351
|
+
|
|
1352
|
+
.cv--partialSubject--3YJIE {
|
|
1353
|
+
width: 6.25rem;
|
|
1354
|
+
height: 1.5rem; }
|
|
1355
|
+
|
|
1356
|
+
.cv--partialHeading--2UT-Z {
|
|
1357
|
+
height: 1.5rem;
|
|
1358
|
+
width: 8.4375rem; }
|
|
1359
|
+
|
|
1360
|
+
.cv--left--789pr {
|
|
1361
|
+
left: -1rem; }
|
|
1362
|
+
.cv--left--789pr svg {
|
|
1363
|
+
transform: translateX(-0.1rem); }
|
|
1364
|
+
|
|
1365
|
+
.cv--right--1P8qt {
|
|
1366
|
+
right: -1rem; }
|
|
1367
|
+
.cv--right--1P8qt svg {
|
|
1368
|
+
transform: translateX(0.1rem); }
|
|
1369
|
+
|
|
1370
|
+
.cv--button--24q_F {
|
|
1371
|
+
position: absolute;
|
|
1372
|
+
background-color: #fff;
|
|
1373
|
+
border-radius: 1.25rem;
|
|
1374
|
+
cursor: pointer;
|
|
1375
|
+
transform: translateY(-50%);
|
|
1376
|
+
z-index: 5;
|
|
1377
|
+
box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.3);
|
|
1378
|
+
height: 2.5rem;
|
|
1379
|
+
min-width: 2.5rem;
|
|
1380
|
+
display: flex;
|
|
1381
|
+
align-items: center;
|
|
1382
|
+
justify-content: center;
|
|
1383
|
+
transition: all .2s; }
|
|
1384
|
+
.cv--button--24q_F .cv--hoverText--p-vNG {
|
|
1385
|
+
display: none;
|
|
1386
|
+
transition: all .2s; }
|
|
1387
|
+
.cv--button--24q_F svg {
|
|
1388
|
+
color: #84868D; }
|
|
1389
|
+
.cv--button--24q_F:hover .cv--hoverText--p-vNG ~ .cv--chevron--3M27X {
|
|
1390
|
+
margin-right: 0.4rem; }
|
|
1391
|
+
.cv--button--24q_F:hover .cv--hoverText--p-vNG {
|
|
1392
|
+
display: block; }
|
|
1393
|
+
.cv--button--24q_F:hover svg, .cv--button--24q_F:hover .cv--hoverText--p-vNG {
|
|
1394
|
+
color: #313543; }
|
|
1395
|
+
|
|
1396
|
+
.cv--gradientLeft--3fkiw, .cv--gradientRight--2RDDy, .cv--extendedClickableAreaRight--13dgy, .cv--extendedClickableAreaLeft--37LtK {
|
|
1397
|
+
position: absolute;
|
|
1398
|
+
width: 3rem;
|
|
1399
|
+
height: 100%;
|
|
1400
|
+
z-index: 2;
|
|
1401
|
+
top: 50%;
|
|
1402
|
+
transform: translateY(-50%); }
|
|
1403
|
+
|
|
1404
|
+
.cv--gradientLeft--3fkiw {
|
|
1405
|
+
left: -1.5rem;
|
|
1406
|
+
background-image: linear-gradient(to left, rgba(255, 255, 255, 0.005) 0%, #fff 70%); }
|
|
1407
|
+
|
|
1408
|
+
.cv--gradientRight--2RDDy {
|
|
1409
|
+
right: -1.5rem;
|
|
1410
|
+
background-image: linear-gradient(to right, rgba(255, 255, 255, 0.005) 0%, #fff 70%); }
|
|
1411
|
+
|
|
1412
|
+
.cv--extendedClickableAreaRight--13dgy {
|
|
1413
|
+
cursor: pointer;
|
|
1414
|
+
background-color: rgba(255, 255, 255, 0.005);
|
|
1415
|
+
right: 0; }
|
|
1416
|
+
|
|
1417
|
+
.cv--extendedClickableAreaLeft--37LtK {
|
|
1418
|
+
cursor: pointer;
|
|
1419
|
+
left: 0; }
|
|
1420
|
+
|
|
1421
|
+
.cv--videoTopPos--1XTRO {
|
|
1422
|
+
top: calc(50% - 0.875rem); }
|
|
1423
|
+
|
|
1424
|
+
.cv--topPos--3_p_J {
|
|
1425
|
+
top: 50%; }
|
|
1426
|
+
|
|
1427
|
+
.cv--leftOverflowGradient--u_MPi, .cv--rightOverflowGradient--38ooL {
|
|
1428
|
+
position: absolute;
|
|
1429
|
+
width: 2.5rem;
|
|
1430
|
+
height: 100%;
|
|
1431
|
+
z-index: 2;
|
|
1432
|
+
top: 50%;
|
|
1433
|
+
transform: translateY(-50%); }
|
|
1434
|
+
|
|
1435
|
+
.cv--leftOverflowGradient--u_MPi {
|
|
1436
|
+
left: 0;
|
|
1437
|
+
margin-left: -1.875rem;
|
|
1438
|
+
background-image: linear-gradient(to left, rgba(255, 255, 255, 0.005) 0%, #fff 70%); }
|
|
1439
|
+
|
|
1440
|
+
.cv--rightOverflowGradient--38ooL {
|
|
1441
|
+
right: 0;
|
|
1442
|
+
margin-right: -1.875rem;
|
|
1443
|
+
background-image: linear-gradient(to right, rgba(255, 255, 255, 0.005) 0%, #fff 70%); }
|
|
1444
|
+
|
|
1445
|
+
.cv--partialHeading--OVsdA {
|
|
1446
|
+
height: 2rem;
|
|
1447
|
+
width: 17rem; }
|
|
1448
|
+
|
|
1449
|
+
.cv--partialDescription--1HtA2 {
|
|
1450
|
+
height: 1rem;
|
|
1451
|
+
width: 25rem; }
|
|
1452
|
+
|
|
1453
|
+
.cv--partialItem--3G2hG {
|
|
1454
|
+
display: inline-block;
|
|
1455
|
+
width: 100%;
|
|
1456
|
+
padding-bottom: 56.25%; }
|
|
1457
|
+
|
|
1458
|
+
.cv--largePartialItem--NnK8O {
|
|
1459
|
+
display: inline-block;
|
|
1460
|
+
height: 22rem;
|
|
1461
|
+
width: 100%; }
|
|
1462
|
+
|
|
1463
|
+
.cv--heading--BQnCC {
|
|
1464
|
+
color: #313543; }
|
|
1465
|
+
|
|
1466
|
+
.cv--link--ph0Qy:hover {
|
|
1467
|
+
color: #F8981D; }
|
|
1468
|
+
|
|
1469
|
+
.cv--itemSpacing--10Pgb:not(:last-child) {
|
|
1470
|
+
margin-right: 0.625rem; }
|
|
1471
|
+
|
|
1472
|
+
.cv--heading--2uNzU {
|
|
1473
|
+
color: #313543; }
|
|
1474
|
+
|
|
1475
|
+
.cv--link--3IGFJ:hover span {
|
|
1476
|
+
color: #F8981D; }
|
|
1477
|
+
|
|
1478
|
+
.cv--rowWidth--8IgrO {
|
|
1479
|
+
width: 25%; }
|
|
1480
|
+
|
|
1481
|
+
.cv--largeRowWidth--q46rm {
|
|
1482
|
+
width: 33.33333%; }
|
|
1483
|
+
|
|
1484
|
+
.cv--hovering--IeeJA {
|
|
1485
|
+
z-index: 10;
|
|
1486
|
+
border-radius: 0.5rem;
|
|
1487
|
+
position: relative; }
|
|
1488
|
+
|
|
1489
|
+
.cv--transition--1s6UK {
|
|
1490
|
+
transition: transform .2s ease; }
|
|
1491
|
+
|
|
1492
|
+
@media (max-width: 767px) {
|
|
1493
|
+
.cv--rowWidth--8IgrO {
|
|
1494
|
+
width: 33.33333%; } }
|
|
1495
|
+
|
|
1496
|
+
@media (max-width: 575px) {
|
|
1497
|
+
.cv--rowWidth--8IgrO, .cv--largeRowWidth--q46rm {
|
|
1498
|
+
width: 50%; } }
|
|
1499
|
+
|
|
1500
|
+
@media (max-width: 0) {
|
|
1501
|
+
.cv--rowWidth--8IgrO, .cv--largeRowWidth--q46rm {
|
|
1502
|
+
width: 100%; } }
|
|
1503
|
+
|
|
1504
|
+
.cv--partialLoadingHeading--1RLPq {
|
|
1505
|
+
width: 12rem;
|
|
1506
|
+
height: 2rem; }
|
|
1507
|
+
|
|
1508
|
+
.cv--partialLoading--oArG4 {
|
|
1509
|
+
width: 100%;
|
|
1510
|
+
padding-bottom: 200%;
|
|
1511
|
+
position: relative; }
|
|
1512
|
+
|
|
1513
|
+
.cv--labelContainer--QLCgm {
|
|
1514
|
+
z-index: 1;
|
|
1515
|
+
bottom: 0.625rem;
|
|
1516
|
+
left: 50%;
|
|
1517
|
+
transform: translate(-50%, 0%); }
|
|
1518
|
+
|
|
1519
|
+
.cv--hoverActive--3Aleb {
|
|
1520
|
+
transform: translate3D(0, -1px, 0) scale(1.01);
|
|
1521
|
+
transition: all .1s ease;
|
|
1522
|
+
cursor: pointer; }
|
|
1523
|
+
.cv--hoverActive--3Aleb:after {
|
|
1524
|
+
content: '';
|
|
1525
|
+
position: absolute;
|
|
1526
|
+
top: 0;
|
|
1527
|
+
left: -0.3125rem;
|
|
1528
|
+
right: -0.3125rem;
|
|
1529
|
+
bottom: 0;
|
|
1530
|
+
margin: 0 0.3125rem;
|
|
1531
|
+
background: linear-gradient(to top, black 0%, rgba(0, 0, 0, 0.75) 25%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.25) 75%, rgba(0, 0, 0, 0) 100%); }
|
|
1532
|
+
|
|
1533
|
+
.cv--mask--2M2Zz {
|
|
1534
|
+
z-index: 2;
|
|
1535
|
+
position: absolute;
|
|
1536
|
+
bottom: 0.625rem;
|
|
1537
|
+
right: 0;
|
|
1538
|
+
left: 0; }
|
|
1539
|
+
|
|
1540
|
+
.cv--classificationPane--3fhao {
|
|
1541
|
+
min-height: 70vh; }
|
|
1542
|
+
|
|
1543
|
+
.cv--emptyState--2YQ3w {
|
|
1544
|
+
width: 20rem; }
|
|
1545
|
+
|
|
1546
|
+
.cv--progress--lQO44 {
|
|
1547
|
+
z-index: 1; }
|
|
1548
|
+
|
|
1549
|
+
.cv--progressItem--2pxvc {
|
|
1550
|
+
width: 0.75rem;
|
|
1551
|
+
height: 0.75rem; }
|
|
1552
|
+
|
|
1553
|
+
.cv--stickyFooter--1Alsi {
|
|
1554
|
+
position: fixed;
|
|
1555
|
+
bottom: 0;
|
|
1556
|
+
right: 0;
|
|
1557
|
+
left: 0;
|
|
1558
|
+
width: 100%;
|
|
1559
|
+
text-align: center;
|
|
1560
|
+
box-shadow: 0px -2px 4px rgba(0, 0, 0, 0.1);
|
|
1561
|
+
z-index: 1010; }
|
|
1562
|
+
|
|
1563
|
+
.cv--nonStickyFooter--1WpL- {
|
|
1564
|
+
position: absolute;
|
|
1565
|
+
bottom: 1.25rem;
|
|
1566
|
+
left: 50%;
|
|
1567
|
+
transform: translateX(-50%); }
|
|
1568
|
+
|
|
1569
|
+
.cv--grid--2otHJ {
|
|
1570
|
+
display: flex;
|
|
1571
|
+
flex-wrap: wrap;
|
|
1572
|
+
padding: 0;
|
|
1573
|
+
width: 57.5rem;
|
|
1574
|
+
box-sizing: border-box;
|
|
1575
|
+
margin: 0 auto; }
|
|
1576
|
+
.cv--grid--2otHJ > span {
|
|
1577
|
+
margin: 0.75rem; }
|
|
1578
|
+
|
|
1579
|
+
.cv--subgrid--vL2QZ {
|
|
1580
|
+
list-style: none; }
|
|
1581
|
+
|
|
1582
|
+
@media (max-width: 1199px) {
|
|
1583
|
+
.cv--grid--2otHJ {
|
|
1584
|
+
width: 46rem; } }
|
|
1585
|
+
|
|
1586
|
+
@media (max-width: 991px) {
|
|
1587
|
+
.cv--grid--2otHJ {
|
|
1588
|
+
width: 34.5rem; } }
|
|
1589
|
+
|
|
1590
|
+
@media (max-width: 767px) {
|
|
1591
|
+
.cv--grid--2otHJ {
|
|
1592
|
+
width: 23rem; } }
|
|
1593
|
+
|
|
1594
|
+
.cv--preferenceItem--1LDb6 .cv--expandCaret--3QEWB.cv--down--2y-iF, .cv--preferenceItem--1LDb6 .cv--expandCaret--3QEWB.cv--up--1kGNY {
|
|
1595
|
+
position: absolute;
|
|
1596
|
+
top: 50%;
|
|
1597
|
+
transform: translate(0.3125rem, -25%);
|
|
1598
|
+
width: 0;
|
|
1599
|
+
height: 0;
|
|
1600
|
+
border-left: 0.3125rem solid transparent;
|
|
1601
|
+
border-right: 0.3125rem solid transparent;
|
|
1602
|
+
border-top: 0.3125rem solid #333333;
|
|
1603
|
+
content: ''; }
|
|
1604
|
+
|
|
1605
|
+
.cv--preferenceItem--1LDb6 {
|
|
1606
|
+
height: 10rem;
|
|
1607
|
+
width: 10rem;
|
|
1608
|
+
background-size: cover;
|
|
1609
|
+
background-position: center;
|
|
1610
|
+
list-style: none;
|
|
1611
|
+
cursor: pointer;
|
|
1612
|
+
display: inline-block;
|
|
1613
|
+
position: relative; }
|
|
1614
|
+
.cv--preferenceItem--1LDb6:focus {
|
|
1615
|
+
outline: none; }
|
|
1616
|
+
.cv--preferenceItem--1LDb6.cv--disabled--2w4FH {
|
|
1617
|
+
cursor: default; }
|
|
1618
|
+
.cv--preferenceItem--1LDb6.cv--disabled--2w4FH::after {
|
|
1619
|
+
background-color: #fff;
|
|
1620
|
+
opacity: 0.85;
|
|
1621
|
+
position: absolute;
|
|
1622
|
+
top: 0;
|
|
1623
|
+
left: 0;
|
|
1624
|
+
right: 0;
|
|
1625
|
+
bottom: 0;
|
|
1626
|
+
border: 4px solid rgba(255, 255, 255, 0.85);
|
|
1627
|
+
content: ''; }
|
|
1628
|
+
.cv--preferenceItem--1LDb6.cv--selected--1lSYv {
|
|
1629
|
+
position: relative; }
|
|
1630
|
+
.cv--preferenceItem--1LDb6.cv--selected--1lSYv.cv--disabled--2w4FH::after {
|
|
1631
|
+
content: '';
|
|
1632
|
+
position: absolute;
|
|
1633
|
+
border: 4px solid #b8dfca;
|
|
1634
|
+
top: 0;
|
|
1635
|
+
bottom: 0;
|
|
1636
|
+
left: 0;
|
|
1637
|
+
right: 0; }
|
|
1638
|
+
.cv--preferenceItem--1LDb6.cv--selected--1lSYv.cv--noBorder--3Mxuo::after {
|
|
1639
|
+
content: '';
|
|
1640
|
+
border: none; }
|
|
1641
|
+
.cv--preferenceItem--1LDb6.cv--selected--1lSYv::after {
|
|
1642
|
+
content: '';
|
|
1643
|
+
position: absolute;
|
|
1644
|
+
border: 4px solid #60B789;
|
|
1645
|
+
top: 0;
|
|
1646
|
+
bottom: 0;
|
|
1647
|
+
left: 0;
|
|
1648
|
+
right: 0; }
|
|
1649
|
+
.cv--preferenceItem--1LDb6 .cv--textBox--3HCeK {
|
|
1650
|
+
background-color: rgba(255, 255, 255, 0.8);
|
|
1651
|
+
display: flex;
|
|
1652
|
+
justify-content: space-between;
|
|
1653
|
+
align-items: center;
|
|
1654
|
+
font-weight: 500;
|
|
1655
|
+
position: absolute;
|
|
1656
|
+
bottom: 0;
|
|
1657
|
+
left: 0;
|
|
1658
|
+
width: 100%;
|
|
1659
|
+
min-height: 3rem; }
|
|
1660
|
+
.cv--preferenceItem--1LDb6 .cv--expandCaret--3QEWB {
|
|
1661
|
+
position: relative; }
|
|
1662
|
+
.cv--preferenceItem--1LDb6 .cv--expandCaret--3QEWB.cv--up--1kGNY {
|
|
1663
|
+
border-left: 0.3125rem solid transparent;
|
|
1664
|
+
border-right: 0.3125rem solid transparent;
|
|
1665
|
+
border-bottom: 0.3125rem solid #333333;
|
|
1666
|
+
border-top: none; }
|
|
1667
|
+
.cv--preferenceItem--1LDb6 .cv--itemStatus--2msq4 {
|
|
1668
|
+
border-radius: 50%;
|
|
1669
|
+
width: 1.75rem;
|
|
1670
|
+
height: 1.75rem;
|
|
1671
|
+
display: flex;
|
|
1672
|
+
justify-content: center;
|
|
1673
|
+
align-items: center; }
|
|
1674
|
+
.cv--preferenceItem--1LDb6 .cv--unchecked--2VQLv {
|
|
1675
|
+
border: 1px solid #333333; }
|
|
1676
|
+
.cv--preferenceItem--1LDb6 .cv--green--AHd64 {
|
|
1677
|
+
background-color: #60B789;
|
|
1678
|
+
color: #fff;
|
|
1679
|
+
border: 1px solid #60B789; }
|
|
1680
|
+
|
|
1681
|
+
.cv--partialSubject--1f4ir {
|
|
1682
|
+
width: 10rem;
|
|
1683
|
+
height: 10rem;
|
|
1684
|
+
list-style: none;
|
|
1685
|
+
margin: 0.625rem; }
|
|
1686
|
+
.cv--partialSubject--1f4ir.cv--lg--1dDgA {
|
|
1687
|
+
width: 15rem !important;
|
|
1688
|
+
height: 15rem !important;
|
|
1689
|
+
justify-content: center; }
|
|
1690
|
+
|
|
1691
|
+
.cv--partialSubjectList--1v665 {
|
|
1692
|
+
display: flex;
|
|
1693
|
+
flex-wrap: wrap;
|
|
1694
|
+
padding: 0;
|
|
1695
|
+
margin: 0; }
|
|
1696
|
+
|
|
1697
|
+
.cv--audienceList--1wdh3 {
|
|
1698
|
+
width: 75%; }
|
|
1699
|
+
@media (max-width: 576px) {
|
|
1700
|
+
.cv--audienceList--1wdh3 {
|
|
1701
|
+
width: 90%; } }
|
|
1702
|
+
|
|
1703
|
+
.cv--imageContainer--3K6ih {
|
|
1704
|
+
width: 66.66667%; }
|
|
1705
|
+
|
|
1706
|
+
.cv--image--1AhAp {
|
|
1707
|
+
border-radius: 1rem;
|
|
1708
|
+
padding-bottom: 18.5%;
|
|
1709
|
+
background-repeat: no-repeat;
|
|
1710
|
+
background-size: cover;
|
|
1711
|
+
background-position: center;
|
|
1712
|
+
opacity: 0.85; }
|
|
1713
|
+
|
|
1714
|
+
.cv--text--384Un {
|
|
1715
|
+
position: absolute;
|
|
1716
|
+
left: 50%;
|
|
1717
|
+
top: 50%;
|
|
1718
|
+
transform: translate(-50%, -50%);
|
|
1719
|
+
font-size: 1.5rem; }
|
|
1720
|
+
@media (max-width: 768px) {
|
|
1721
|
+
.cv--text--384Un {
|
|
1722
|
+
font-size: 1.25rem; } }
|
|
1723
|
+
|
|
1724
|
+
.cv--imageWidth--3mLzG {
|
|
1725
|
+
width: 40rem; }
|
|
1726
|
+
|
|
1727
|
+
.cv--spinner--2VJsq {
|
|
1728
|
+
width: 1.5rem;
|
|
1729
|
+
height: 1.5rem; }
|
|
1730
|
+
|
|
1731
|
+
.cv--container--L_gZu {
|
|
1732
|
+
max-width: 90%; }
|
|
1733
|
+
|
|
1734
|
+
@media (max-width: 1499px) {
|
|
1735
|
+
.cv--container--L_gZu {
|
|
1736
|
+
max-width: 100%; } }
|
|
1737
|
+
|
|
1738
|
+
.cv--optionsContainer--2mg2G {
|
|
1739
|
+
display: flex;
|
|
1740
|
+
justify-content: center; }
|
|
1741
|
+
.cv--optionsContainer--2mg2G > li {
|
|
1742
|
+
margin: 0.75rem; }
|
|
1743
|
+
|
|
1744
|
+
.cv--preferenceItem--2-nVd {
|
|
1745
|
+
width: 15rem !important;
|
|
1746
|
+
height: 15rem !important; }
|
|
1747
|
+
.cv--preferenceItem--2-nVd p {
|
|
1748
|
+
font-size: 1rem; }
|
|
1749
|
+
|
|
1750
|
+
.cv--optionsContainer--Q_drN {
|
|
1751
|
+
display: flex;
|
|
1752
|
+
justify-content: center; }
|
|
1753
|
+
.cv--optionsContainer--Q_drN > li {
|
|
1754
|
+
margin: 0.75rem; }
|
|
1755
|
+
|
|
1756
|
+
.cv--preferenceItem--2MxOs {
|
|
1757
|
+
width: 15rem !important;
|
|
1758
|
+
height: 15rem !important; }
|
|
1759
|
+
.cv--preferenceItem--2MxOs p {
|
|
1760
|
+
font-size: 1rem; }
|
|
1761
|
+
|
|
1762
|
+
.cv--container--3oow- {
|
|
1763
|
+
position: absolute;
|
|
1764
|
+
width: 100%;
|
|
1765
|
+
top: 45%;
|
|
1766
|
+
left: 50%;
|
|
1767
|
+
transform: translate(-50%, -50%); }
|
|
1768
|
+
|
|
1769
|
+
.cv--textContainer--2prK0 {
|
|
1770
|
+
width: 60%; }
|
|
1771
|
+
@media (max-width: 767px) {
|
|
1772
|
+
.cv--textContainer--2prK0 {
|
|
1773
|
+
width: 100%; } }
|
|
1774
|
+
|
|
1775
|
+
.cv--welcomeImageLeft--1Eah4 {
|
|
1776
|
+
left: 5rem;
|
|
1777
|
+
top: 50%;
|
|
1778
|
+
width: 20rem;
|
|
1779
|
+
position: absolute;
|
|
1780
|
+
transform: translateY(-50%); }
|
|
1781
|
+
@media (max-width: 1199px) {
|
|
1782
|
+
.cv--welcomeImageLeft--1Eah4 {
|
|
1783
|
+
width: 15rem; } }
|
|
1784
|
+
@media (max-width: 991px) {
|
|
1785
|
+
.cv--welcomeImageLeft--1Eah4 {
|
|
1786
|
+
left: 2.5rem; } }
|
|
1787
|
+
@media (max-width: 767px) {
|
|
1788
|
+
.cv--welcomeImageLeft--1Eah4 {
|
|
1789
|
+
display: none; } }
|
|
1790
|
+
|
|
1791
|
+
.cv--welcomeImageRight--Tsjcw {
|
|
1792
|
+
position: absolute;
|
|
1793
|
+
right: 5rem;
|
|
1794
|
+
top: 50%;
|
|
1795
|
+
width: 20rem;
|
|
1796
|
+
transform: translateY(-50%); }
|
|
1797
|
+
@media (max-width: 1199px) {
|
|
1798
|
+
.cv--welcomeImageRight--Tsjcw {
|
|
1799
|
+
width: 15rem; } }
|
|
1800
|
+
@media (max-width: 991px) {
|
|
1801
|
+
.cv--welcomeImageRight--Tsjcw {
|
|
1802
|
+
right: 2.5rem; } }
|
|
1803
|
+
@media (max-width: 767px) {
|
|
1804
|
+
.cv--welcomeImageRight--Tsjcw {
|
|
1805
|
+
display: none; } }
|
|
1806
|
+
|
|
1807
|
+
.cv--classificationPane--1AyPy {
|
|
1808
|
+
min-height: 70vh; }
|
|
1809
|
+
|
|
1810
|
+
.cv--image--3T3Ux {
|
|
1811
|
+
width: 18rem;
|
|
1812
|
+
padding-bottom: 1.25rem; }
|
|
1813
|
+
|
|
1814
|
+
.cv--playlistHeader--V8i9e {
|
|
1815
|
+
padding: 1.25rem;
|
|
1816
|
+
position: relative; }
|
|
1817
|
+
|
|
1818
|
+
.cv--actionsContainer--1HPtF {
|
|
1819
|
+
position: absolute;
|
|
1820
|
+
bottom: 1.25rem;
|
|
1821
|
+
right: 1.25rem; }
|
|
1822
|
+
|
|
1823
|
+
.cv--partialHeader--1tEqa {
|
|
1824
|
+
width: 25%;
|
|
1825
|
+
height: 3.3rem;
|
|
1826
|
+
position: absolute;
|
|
1827
|
+
bottom: 1.25rem;
|
|
1828
|
+
left: 1.25rem; }
|
|
1829
|
+
|
|
1830
|
+
.cv--partialMetadata--1e5Lw {
|
|
1831
|
+
height: 1.4rem;
|
|
1832
|
+
width: 30%; }
|
|
1833
|
+
|
|
1834
|
+
.cv--partialAction--3tau7 {
|
|
1835
|
+
display: inline-block;
|
|
1836
|
+
height: 3rem;
|
|
1837
|
+
width: 9rem;
|
|
1838
|
+
margin-left: 0.625rem; }
|
|
1839
|
+
|
|
1840
|
+
.cv--partialDashboardBreadcrumb--3X1Cy {
|
|
1841
|
+
height: 2.25rem;
|
|
1842
|
+
width: 4rem;
|
|
1843
|
+
padding-right: 1rem; }
|
|
1844
|
+
|
|
1845
|
+
.cv--partialWhatsNewBreadcrumb--2ptUi {
|
|
1846
|
+
height: 2.25rem;
|
|
1847
|
+
width: 9.1875rem;
|
|
1848
|
+
padding-right: 2rem; }
|
|
1849
|
+
|
|
1850
|
+
.cv--partialOldLookBreadcrumb--_xR5L {
|
|
1851
|
+
height: 2.25rem;
|
|
1852
|
+
width: 9.625rem;
|
|
1853
|
+
display: inline-block; }
|
|
1854
|
+
|
|
1855
|
+
.cv--partialBanner--1Aoj8 {
|
|
1856
|
+
height: 6rem; }
|
|
1857
|
+
|
|
1858
|
+
.cv--bannerContainer--3THr6 {
|
|
1859
|
+
margin-bottom: 1.25rem; }
|
|
1860
|
+
|
|
1861
|
+
.cv--partialDashboardBreadcrumb--3ZSVS {
|
|
1862
|
+
height: 2.25rem;
|
|
1863
|
+
width: 4rem;
|
|
1864
|
+
padding-right: 1rem; }
|
|
1865
|
+
|
|
1866
|
+
.cv--partialWhatsNewBreadcrumb--wJuHv {
|
|
1867
|
+
height: 2.25rem;
|
|
1868
|
+
width: 9.1875rem;
|
|
1869
|
+
padding-right: 2rem; }
|
|
1870
|
+
|
|
1871
|
+
.cv--partialBanner--1dk8E {
|
|
1872
|
+
height: 6rem;
|
|
1873
|
+
margin-bottom: 1.25rem; }
|
|
1874
|
+
|
|
1875
|
+
.cv--mask--2LCWy {
|
|
1876
|
+
z-index: 1010; }
|
|
1877
|
+
|
|
1878
|
+
.cv--spotlight--2yXuY {
|
|
1879
|
+
z-index: 1020;
|
|
1880
|
+
transform: translateX(1.875rem);
|
|
1881
|
+
margin-left: -3.75rem;
|
|
1882
|
+
padding: 0 1.875rem;
|
|
1883
|
+
border-radius: 1rem; }
|
|
1884
|
+
|
|
1885
|
+
.cv--info--3qk29 {
|
|
1886
|
+
position: absolute;
|
|
1887
|
+
left: 0;
|
|
1888
|
+
max-width: 60%;
|
|
1889
|
+
border-radius: 1rem; }
|
|
1890
|
+
|
|
1891
|
+
.cv--spotlightHeading--3JICx {
|
|
1892
|
+
font-size: 1.25rem;
|
|
1893
|
+
font-weight: 500; }
|
|
1894
|
+
@media (max-width: 499px) {
|
|
1895
|
+
.cv--spotlightHeading--3JICx {
|
|
1896
|
+
font-size: 1.125rem;
|
|
1897
|
+
font-weight: 500; } }
|
|
1898
|
+
|
|
1899
|
+
.cv--cover--3wqEj {
|
|
1900
|
+
position: absolute;
|
|
1901
|
+
top: 0;
|
|
1902
|
+
left: 0;
|
|
1903
|
+
bottom: 0;
|
|
1904
|
+
right: 0;
|
|
1905
|
+
width: 100%;
|
|
1906
|
+
height: 100%;
|
|
1907
|
+
z-index: 1000; }
|
|
1908
|
+
|
|
1909
|
+
.cv--textBoxContainer--yq9UD {
|
|
1910
|
+
border-bottom-left-radius: 0.5rem;
|
|
1911
|
+
border-bottom-right-radius: 0.5rem;
|
|
1912
|
+
border: 2px solid #f1f1f1;
|
|
1913
|
+
border-top: 1px solid #f1f1f1; }
|
|
1914
|
+
.cv--textBoxContainer--yq9UD .cv--textBox--2qv3A {
|
|
1915
|
+
box-sizing: content-box;
|
|
1916
|
+
max-height: 2.4rem;
|
|
1917
|
+
min-height: 2.4rem; }
|
|
1918
|
+
|
|
1919
|
+
.cv--itemContainer--hVZjz {
|
|
1920
|
+
overflow: hidden;
|
|
1921
|
+
border-top-left-radius: 0.5rem;
|
|
1922
|
+
border-top-right-radius: 0.5rem;
|
|
1923
|
+
border: 2px solid #f1f1f1;
|
|
1924
|
+
border-bottom: none; }
|
|
1925
|
+
|
|
1926
|
+
.cv--image--TKEXX {
|
|
1927
|
+
background-size: cover;
|
|
1928
|
+
background-position: center center;
|
|
1929
|
+
width: 11.25rem;
|
|
1930
|
+
height: 11.25rem; }
|
|
1931
|
+
|
|
1932
|
+
.cv--bannerImage--1_J-g {
|
|
1933
|
+
position: relative;
|
|
1934
|
+
width: 100%;
|
|
1935
|
+
height: 25.75rem;
|
|
1936
|
+
background-size: cover;
|
|
1937
|
+
background-repeat: no-repeat;
|
|
1938
|
+
background-position: top; }
|
|
1939
|
+
|
|
1940
|
+
.cv--metadataContainer--2lGAa {
|
|
1941
|
+
width: 40%;
|
|
1942
|
+
position: absolute;
|
|
1943
|
+
left: 3.75rem;
|
|
1944
|
+
bottom: 4.25rem; }
|
|
1945
|
+
|
|
1946
|
+
.cv--indicatorContainer--1WkeY {
|
|
1947
|
+
width: 35%;
|
|
1948
|
+
right: auto;
|
|
1949
|
+
margin: 0 0 1.875rem 0;
|
|
1950
|
+
justify-content: flex-start;
|
|
1951
|
+
left: 3.75rem; }
|
|
1952
|
+
.cv--indicatorContainer--1WkeY .cv--indicator--ERQVF {
|
|
1953
|
+
border-radius: 50%;
|
|
1954
|
+
height: 0.625rem;
|
|
1955
|
+
width: 0.625rem; }
|
|
1956
|
+
|
|
1957
|
+
.cv--partial--2kV9l {
|
|
1958
|
+
height: 25.75rem; }
|
|
1959
|
+
|
|
1960
|
+
.cv--itemContainer--u0IPv {
|
|
1961
|
+
width: 6rem; }
|
|
1962
|
+
|
|
1963
|
+
.cv--circle--2OjUz {
|
|
1964
|
+
width: 4rem;
|
|
1965
|
+
height: 4rem;
|
|
1966
|
+
display: flex;
|
|
1967
|
+
justify-content: center;
|
|
1968
|
+
align-items: center; }
|
|
1969
|
+
|
|
1970
|
+
.cv--complete--1vUhp {
|
|
1971
|
+
background-color: #60B789;
|
|
1972
|
+
border: 5px solid #fff;
|
|
1973
|
+
color: #fff; }
|
|
1974
|
+
|
|
1975
|
+
.cv--progressBar--4hF1C {
|
|
1976
|
+
height: 1rem; }
|
|
1977
|
+
|
|
1978
|
+
.cv--totalProgress--3nPRd {
|
|
1979
|
+
position: absolute;
|
|
1980
|
+
top: 0;
|
|
1981
|
+
bottom: 0;
|
|
1982
|
+
left: 0;
|
|
1983
|
+
background-image: linear-gradient(to right, #4fc888, #6bbfca); }
|
|
1984
|
+
|
|
1985
|
+
.cv--container--2LrDT {
|
|
1986
|
+
background-color: #ECFDFF;
|
|
1987
|
+
border-radius: 0.5rem;
|
|
1988
|
+
padding: 1.25rem; }
|
|
1989
|
+
|
|
1990
|
+
.cv--leftPanel--34z_v {
|
|
1991
|
+
width: 50%;
|
|
1992
|
+
padding: 0 0.3125rem; }
|
|
1993
|
+
@media (max-width: 992px) {
|
|
1994
|
+
.cv--leftPanel--34z_v {
|
|
1995
|
+
width: 70%; } }
|
|
1996
|
+
@media (max-width: 800px) {
|
|
1997
|
+
.cv--leftPanel--34z_v {
|
|
1998
|
+
width: 60%; } }
|
|
1999
|
+
@media (max-width: 576px) {
|
|
2000
|
+
.cv--leftPanel--34z_v {
|
|
2001
|
+
width: 100%;
|
|
2002
|
+
display: flex;
|
|
2003
|
+
flex-direction: column;
|
|
2004
|
+
align-items: center;
|
|
2005
|
+
justify-content: center; } }
|
|
2006
|
+
|
|
2007
|
+
.cv--rightPanel--2sJ9h {
|
|
2008
|
+
display: flex;
|
|
2009
|
+
align-items: flex-start;
|
|
2010
|
+
justify-content: center;
|
|
2011
|
+
width: 50%;
|
|
2012
|
+
margin-top: 1.25rem;
|
|
2013
|
+
padding: 0 0.3125rem; }
|
|
2014
|
+
@media (max-width: 992px) {
|
|
2015
|
+
.cv--rightPanel--2sJ9h {
|
|
2016
|
+
width: 30%;
|
|
2017
|
+
justify-content: center;
|
|
2018
|
+
align-items: center;
|
|
2019
|
+
margin: 0; } }
|
|
2020
|
+
@media (max-width: 800px) {
|
|
2021
|
+
.cv--rightPanel--2sJ9h {
|
|
2022
|
+
width: 40%;
|
|
2023
|
+
justify-content: flex-end; } }
|
|
2024
|
+
|
|
2025
|
+
.cv--heading--opjqI {
|
|
2026
|
+
font-weight: 700;
|
|
2027
|
+
font-size: 1.25rem; }
|
|
2028
|
+
@media (max-width: 800px) {
|
|
2029
|
+
.cv--heading--opjqI {
|
|
2030
|
+
font-size: 1.125rem;
|
|
2031
|
+
font-weight: 500; } }
|
|
2032
|
+
@media (max-width: 576px) {
|
|
2033
|
+
.cv--heading--opjqI {
|
|
2034
|
+
text-align: center;
|
|
2035
|
+
font-size: 1.25rem; } }
|
|
2036
|
+
|
|
2037
|
+
@media (max-width: 576px) {
|
|
2038
|
+
.cv--progressText--2-gez {
|
|
2039
|
+
text-align: center; } }
|
|
2040
|
+
|
|
2041
|
+
@media (max-width: 649px) {
|
|
2042
|
+
.cv--tooltip--rh96M {
|
|
2043
|
+
display: none; } }
|
|
2044
|
+
|
|
2045
|
+
.cv--progressContainer--3vDa6 {
|
|
2046
|
+
width: 50%; }
|
|
2047
|
+
@media (max-width: 576px) {
|
|
2048
|
+
.cv--progressContainer--3vDa6 {
|
|
2049
|
+
width: 90%; } }
|
|
2050
|
+
|
|
2051
|
+
.cv--itemWrapper--26mBM {
|
|
2052
|
+
padding: 0 1.25rem; }
|
|
2053
|
+
@media (max-width: 1200px) {
|
|
2054
|
+
.cv--itemWrapper--26mBM {
|
|
2055
|
+
padding: 0 0.3125rem; } }
|
|
2056
|
+
@media (max-width: 992px) {
|
|
2057
|
+
.cv--itemWrapper--26mBM {
|
|
2058
|
+
display: none; } }
|
|
2059
|
+
|
|
2060
|
+
.cv--tile--30U3G {
|
|
2061
|
+
padding-bottom: 10rem; }
|
|
2062
|
+
.cv--tile--30U3G:hover {
|
|
2063
|
+
opacity: .95; }
|
|
2064
|
+
|
|
2065
|
+
.cv--moviesAndTv--ZCDEq {
|
|
2066
|
+
background-color: #4E9ACE; }
|
|
2067
|
+
|
|
2068
|
+
.cv--defaultLib--BLQ_l {
|
|
2069
|
+
background-color: #6bbfca; }
|
|
2070
|
+
|
|
2071
|
+
.cv--cvLogo--1N8bk {
|
|
2072
|
+
height: 1rem; }
|
|
2073
|
+
|
|
2074
|
+
.cv--eduscotLogo--3Wha1 img {
|
|
2075
|
+
width: 1.5rem;
|
|
2076
|
+
position: relative;
|
|
2077
|
+
bottom: 0.1875rem; }
|
|
2078
|
+
|
|
2079
|
+
.cv--libraryInner--21yyN {
|
|
2080
|
+
position: absolute;
|
|
2081
|
+
top: 50%;
|
|
2082
|
+
left: 50%;
|
|
2083
|
+
transform: translate(-50%, -50%);
|
|
2084
|
+
width: 100%; }
|
|
2085
|
+
|
|
2086
|
+
.cv--width--3EiGj {
|
|
2087
|
+
width: 33.33333%; }
|
|
2088
|
+
|
|
2089
|
+
@media (max-width: 1199px) {
|
|
2090
|
+
.cv--width--3EiGj {
|
|
2091
|
+
width: 33.33333%; } }
|
|
2092
|
+
|
|
2093
|
+
@media (max-width: 991px) {
|
|
2094
|
+
.cv--width--3EiGj {
|
|
2095
|
+
width: 50%; } }
|
|
2096
|
+
|
|
2097
|
+
@media (max-width: 767px) {
|
|
2098
|
+
.cv--width--3EiGj {
|
|
2099
|
+
width: 100%; } }
|
|
2100
|
+
|
|
2101
|
+
.cv--partialLibraryTile--1X-lC {
|
|
2102
|
+
height: 10rem; }
|
|
2103
|
+
|
|
2104
|
+
.cv--freeTrialBtn--218pa {
|
|
2105
|
+
display: inline-block;
|
|
2106
|
+
padding: 0.4375rem 1.25rem;
|
|
2107
|
+
line-height: 0.875rem;
|
|
2108
|
+
border-radius: 0.125rem;
|
|
2109
|
+
background-color: #F8981D;
|
|
2110
|
+
border: 1px solid #F8981D;
|
|
2111
|
+
font-size: 0.687rem; }
|
|
2112
|
+
.cv--freeTrialBtn--218pa a:hover {
|
|
2113
|
+
text-decoration: none; }
|
|
2114
|
+
|
|
2115
|
+
.cv--nav--27qTF {
|
|
2116
|
+
margin: 0; }
|
|
2117
|
+
.cv--nav--27qTF a {
|
|
2118
|
+
color: #777; }
|
|
2119
|
+
.cv--nav--27qTF a:hover {
|
|
2120
|
+
color: #F8981D;
|
|
2121
|
+
text-decoration: none; }
|
|
2122
|
+
|
|
2123
|
+
.cv--contributeBtn--GUqEO {
|
|
2124
|
+
display: inline-block;
|
|
2125
|
+
width: 13.125rem;
|
|
2126
|
+
padding: 0.4375rem 1.25rem;
|
|
2127
|
+
line-height: 0.875rem;
|
|
2128
|
+
border-radius: 0.125rem;
|
|
2129
|
+
background-color: #F8981D;
|
|
2130
|
+
border: 1px solid #F8981D; }
|
|
2131
|
+
.cv--contributeBtn--GUqEO a:hover {
|
|
2132
|
+
text-decoration: none; }
|
|
2133
|
+
|
|
2134
|
+
.cv--padLeft--3Px0f {
|
|
2135
|
+
margin-left: 14.375rem; }
|
|
2136
|
+
|
|
2137
|
+
.cv--container--f6lVD {
|
|
2138
|
+
background-color: #f8f8f8; }
|
|
2139
|
+
|
|
2140
|
+
.cv--fileDrop--2bFK6 {
|
|
2141
|
+
border: 0.125rem dashed #f1f1f1;
|
|
2142
|
+
border-radius: 0.25rem;
|
|
2143
|
+
position: relative; }
|
|
2144
|
+
.cv--fileDrop--2bFK6.cv--dragActive--3ZshF {
|
|
2145
|
+
border-color: #F8981D; }
|
|
2146
|
+
|
|
2147
|
+
.cv--dropMask--3FcYe {
|
|
2148
|
+
display: block;
|
|
2149
|
+
position: absolute;
|
|
2150
|
+
top: 0;
|
|
2151
|
+
left: 0;
|
|
2152
|
+
right: 0;
|
|
2153
|
+
bottom: 0;
|
|
2154
|
+
background: rgba(255, 255, 255, 0.6); }
|
|
2155
|
+
|
|
2156
|
+
.cv--svgContainer--QNFLR {
|
|
2157
|
+
width: 1.5rem;
|
|
2158
|
+
height: 1.5rem; }
|
|
2159
|
+
|
|
2160
|
+
.cv--progress--1q_ig {
|
|
2161
|
+
height: 0.1875rem; }
|
|
2162
|
+
|
|
2163
|
+
.cv--container--2GdEa {
|
|
2164
|
+
background-color: #f8f8f8; }
|
|
2165
|
+
|
|
2166
|
+
.cv--svgContainer--186X3 {
|
|
2167
|
+
width: 1.5rem;
|
|
2168
|
+
height: 1.5rem; }
|
|
2169
|
+
|
|
2170
|
+
.cv--actionSvg--3_l1b {
|
|
2171
|
+
cursor: pointer; }
|
|
2172
|
+
|
|
2173
|
+
.cv--linkContainer--1wmT9 {
|
|
2174
|
+
background-color: #f8f8f8; }
|
|
2175
|
+
|
|
2176
|
+
.cv--inputWithoutHighlight---L0yF:focus {
|
|
2177
|
+
border-color: #D7D7D7;
|
|
2178
|
+
box-shadow: none; }
|
|
2179
|
+
|
|
2180
|
+
.cv--suggestionsContainerOpen--ahMdW {
|
|
2181
|
+
position: absolute;
|
|
2182
|
+
top: 100%;
|
|
2183
|
+
left: 0;
|
|
2184
|
+
right: 0;
|
|
2185
|
+
z-index: 100; }
|
|
2186
|
+
|
|
2187
|
+
.cv--sectionContainer--xstWL:last-child {
|
|
2188
|
+
border-bottom: none !important; }
|
|
2189
|
+
|
|
2190
|
+
.cv--suggestionHighlighted--3YTCa {
|
|
2191
|
+
background-color: #f8f8f8; }
|
|
2192
|
+
|
|
2193
|
+
.cv--inputContainer--1wn3m:hover .cv--clearButton--1BwBs {
|
|
2194
|
+
color: #313543 !important; }
|
|
2195
|
+
|
|
2196
|
+
.cv--inputWithLeftIcon--qxZOe {
|
|
2197
|
+
padding-left: 2.25rem; }
|
|
2198
|
+
|
|
2199
|
+
.cv--inputWithRightIcon--3U4W- {
|
|
2200
|
+
padding-right: 2.25rem; }
|
|
2201
|
+
|
|
2202
|
+
.cv--inputWithTwoRightIcons--2rgzF {
|
|
2203
|
+
padding-right: 2.25rem; }
|
|
2204
|
+
|
|
2205
|
+
.cv--iconContainer--1DLw5 {
|
|
2206
|
+
position: absolute;
|
|
2207
|
+
top: 50%;
|
|
2208
|
+
transform: translateY(-50%); }
|
|
2209
|
+
|
|
2210
|
+
.cv--leftIconContainer--AZCtZ {
|
|
2211
|
+
left: 0.375rem; }
|
|
2212
|
+
|
|
2213
|
+
.cv--rightIconContainer--1R52s {
|
|
2214
|
+
right: 0.375rem; }
|
|
2215
|
+
|
|
2216
|
+
.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle, .react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle, .react-datepicker__year-read-view--down-arrow,
|
|
2217
|
+
.react-datepicker__month-read-view--down-arrow,
|
|
2218
|
+
.react-datepicker__month-year-read-view--down-arrow {
|
|
2219
|
+
margin-left: -8px;
|
|
2220
|
+
position: absolute; }
|
|
2221
|
+
|
|
2222
|
+
.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle, .react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle, .react-datepicker__year-read-view--down-arrow,
|
|
2223
|
+
.react-datepicker__month-read-view--down-arrow,
|
|
2224
|
+
.react-datepicker__month-year-read-view--down-arrow, .react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle::before, .react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle::before, .react-datepicker__year-read-view--down-arrow::before,
|
|
2225
|
+
.react-datepicker__month-read-view--down-arrow::before,
|
|
2226
|
+
.react-datepicker__month-year-read-view--down-arrow::before {
|
|
2227
|
+
box-sizing: content-box;
|
|
2228
|
+
position: absolute;
|
|
2229
|
+
border: 8px solid transparent;
|
|
2230
|
+
height: 0;
|
|
2231
|
+
width: 1px; }
|
|
2232
|
+
|
|
2233
|
+
.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle::before, .react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle::before, .react-datepicker__year-read-view--down-arrow::before,
|
|
2234
|
+
.react-datepicker__month-read-view--down-arrow::before,
|
|
2235
|
+
.react-datepicker__month-year-read-view--down-arrow::before {
|
|
2236
|
+
content: "";
|
|
2237
|
+
z-index: -1;
|
|
2238
|
+
border-width: 8px;
|
|
2239
|
+
left: -8px;
|
|
2240
|
+
border-bottom-color: #aeaeae; }
|
|
2241
|
+
|
|
2242
|
+
.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle {
|
|
2243
|
+
top: 0;
|
|
2244
|
+
margin-top: -8px; }
|
|
2245
|
+
|
|
2246
|
+
.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle, .react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle::before {
|
|
2247
|
+
border-top: none;
|
|
2248
|
+
border-bottom-color: #f0f0f0; }
|
|
2249
|
+
|
|
2250
|
+
.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle::before {
|
|
2251
|
+
top: -1px;
|
|
2252
|
+
border-bottom-color: #aeaeae; }
|
|
2253
|
+
|
|
2254
|
+
.react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle, .react-datepicker__year-read-view--down-arrow,
|
|
2255
|
+
.react-datepicker__month-read-view--down-arrow,
|
|
2256
|
+
.react-datepicker__month-year-read-view--down-arrow {
|
|
2257
|
+
bottom: 0;
|
|
2258
|
+
margin-bottom: -8px; }
|
|
2259
|
+
|
|
2260
|
+
.react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle, .react-datepicker__year-read-view--down-arrow,
|
|
2261
|
+
.react-datepicker__month-read-view--down-arrow,
|
|
2262
|
+
.react-datepicker__month-year-read-view--down-arrow, .react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle::before, .react-datepicker__year-read-view--down-arrow::before,
|
|
2263
|
+
.react-datepicker__month-read-view--down-arrow::before,
|
|
2264
|
+
.react-datepicker__month-year-read-view--down-arrow::before {
|
|
2265
|
+
border-bottom: none;
|
|
2266
|
+
border-top-color: #fff; }
|
|
2267
|
+
|
|
2268
|
+
.react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle::before, .react-datepicker__year-read-view--down-arrow::before,
|
|
2269
|
+
.react-datepicker__month-read-view--down-arrow::before,
|
|
2270
|
+
.react-datepicker__month-year-read-view--down-arrow::before {
|
|
2271
|
+
bottom: -1px;
|
|
2272
|
+
border-top-color: #aeaeae; }
|
|
2273
|
+
|
|
2274
|
+
.react-datepicker-wrapper {
|
|
2275
|
+
display: inline-block;
|
|
2276
|
+
padding: 0;
|
|
2277
|
+
border: 0; }
|
|
2278
|
+
|
|
2279
|
+
.react-datepicker {
|
|
2280
|
+
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
2281
|
+
font-size: 0.8rem;
|
|
2282
|
+
background-color: #fff;
|
|
2283
|
+
color: #000;
|
|
2284
|
+
border: 1px solid #aeaeae;
|
|
2285
|
+
border-radius: 0.3rem;
|
|
2286
|
+
display: inline-block;
|
|
2287
|
+
position: relative; }
|
|
2288
|
+
|
|
2289
|
+
.react-datepicker--time-only .react-datepicker__triangle {
|
|
2290
|
+
left: 35px; }
|
|
2291
|
+
|
|
2292
|
+
.react-datepicker--time-only .react-datepicker__time-container {
|
|
2293
|
+
border-left: 0; }
|
|
2294
|
+
|
|
2295
|
+
.react-datepicker--time-only .react-datepicker__time, .react-datepicker--time-only .react-datepicker__time-box {
|
|
2296
|
+
border-bottom-left-radius: 0.3rem;
|
|
2297
|
+
border-bottom-right-radius: 0.3rem; }
|
|
2298
|
+
|
|
2299
|
+
.react-datepicker__triangle {
|
|
2300
|
+
position: absolute;
|
|
2301
|
+
left: 50px; }
|
|
2302
|
+
|
|
2303
|
+
.react-datepicker-popper {
|
|
2304
|
+
z-index: 1; }
|
|
2305
|
+
|
|
2306
|
+
.react-datepicker-popper[data-placement^="bottom"] {
|
|
2307
|
+
margin-top: 10px; }
|
|
2308
|
+
|
|
2309
|
+
.react-datepicker-popper[data-placement="bottom-end"] .react-datepicker__triangle, .react-datepicker-popper[data-placement="top-end"] .react-datepicker__triangle {
|
|
2310
|
+
left: auto;
|
|
2311
|
+
right: 50px; }
|
|
2312
|
+
|
|
2313
|
+
.react-datepicker-popper[data-placement^="top"] {
|
|
2314
|
+
margin-bottom: 10px; }
|
|
2315
|
+
|
|
2316
|
+
.react-datepicker-popper[data-placement^="right"] {
|
|
2317
|
+
margin-left: 8px; }
|
|
2318
|
+
|
|
2319
|
+
.react-datepicker-popper[data-placement^="right"] .react-datepicker__triangle {
|
|
2320
|
+
left: auto;
|
|
2321
|
+
right: 42px; }
|
|
2322
|
+
|
|
2323
|
+
.react-datepicker-popper[data-placement^="left"] {
|
|
2324
|
+
margin-right: 8px; }
|
|
2325
|
+
|
|
2326
|
+
.react-datepicker-popper[data-placement^="left"] .react-datepicker__triangle {
|
|
2327
|
+
left: 42px;
|
|
2328
|
+
right: auto; }
|
|
2329
|
+
|
|
2330
|
+
.react-datepicker__header {
|
|
2331
|
+
text-align: center;
|
|
2332
|
+
background-color: #f0f0f0;
|
|
2333
|
+
border-bottom: 1px solid #aeaeae;
|
|
2334
|
+
border-top-left-radius: 0.3rem;
|
|
2335
|
+
padding-top: 8px;
|
|
2336
|
+
position: relative; }
|
|
2337
|
+
|
|
2338
|
+
.react-datepicker__header--time {
|
|
2339
|
+
padding-bottom: 8px;
|
|
2340
|
+
padding-left: 5px;
|
|
2341
|
+
padding-right: 5px; }
|
|
2342
|
+
|
|
2343
|
+
.react-datepicker__header--time:not(.react-datepicker__header--time--only) {
|
|
2344
|
+
border-top-left-radius: 0; }
|
|
2345
|
+
|
|
2346
|
+
.react-datepicker__header:not(.react-datepicker__header--has-time-select) {
|
|
2347
|
+
border-top-right-radius: 0.3rem; }
|
|
2348
|
+
|
|
2349
|
+
.react-datepicker__year-dropdown-container--select,
|
|
2350
|
+
.react-datepicker__month-dropdown-container--select,
|
|
2351
|
+
.react-datepicker__month-year-dropdown-container--select,
|
|
2352
|
+
.react-datepicker__year-dropdown-container--scroll,
|
|
2353
|
+
.react-datepicker__month-dropdown-container--scroll,
|
|
2354
|
+
.react-datepicker__month-year-dropdown-container--scroll {
|
|
2355
|
+
display: inline-block;
|
|
2356
|
+
margin: 0 2px; }
|
|
2357
|
+
|
|
2358
|
+
.react-datepicker__current-month,
|
|
2359
|
+
.react-datepicker-time__header,
|
|
2360
|
+
.react-datepicker-year-header {
|
|
2361
|
+
margin-top: 0;
|
|
2362
|
+
color: #000;
|
|
2363
|
+
font-weight: bold;
|
|
2364
|
+
font-size: 0.944rem; }
|
|
2365
|
+
|
|
2366
|
+
.react-datepicker-time__header {
|
|
2367
|
+
text-overflow: ellipsis;
|
|
2368
|
+
white-space: nowrap;
|
|
2369
|
+
overflow: hidden; }
|
|
2370
|
+
|
|
2371
|
+
.react-datepicker__navigation {
|
|
2372
|
+
background: none;
|
|
2373
|
+
line-height: 1.7rem;
|
|
2374
|
+
text-align: center;
|
|
2375
|
+
cursor: pointer;
|
|
2376
|
+
position: absolute;
|
|
2377
|
+
top: 10px;
|
|
2378
|
+
width: 0;
|
|
2379
|
+
padding: 0;
|
|
2380
|
+
border: 0.45rem solid transparent;
|
|
2381
|
+
z-index: 1;
|
|
2382
|
+
height: 10px;
|
|
2383
|
+
width: 10px;
|
|
2384
|
+
text-indent: -999em;
|
|
2385
|
+
overflow: hidden; }
|
|
2386
|
+
|
|
2387
|
+
.react-datepicker__navigation--previous {
|
|
2388
|
+
left: 10px;
|
|
2389
|
+
border-right-color: #ccc; }
|
|
2390
|
+
|
|
2391
|
+
.react-datepicker__navigation--previous:hover {
|
|
2392
|
+
border-right-color: #b3b3b3; }
|
|
2393
|
+
|
|
2394
|
+
.react-datepicker__navigation--previous--disabled, .react-datepicker__navigation--previous--disabled:hover {
|
|
2395
|
+
border-right-color: #e6e6e6;
|
|
2396
|
+
cursor: default; }
|
|
2397
|
+
|
|
2398
|
+
.react-datepicker__navigation--next {
|
|
2399
|
+
right: 10px;
|
|
2400
|
+
border-left-color: #ccc; }
|
|
2401
|
+
|
|
2402
|
+
.react-datepicker__navigation--next--with-time:not(.react-datepicker__navigation--next--with-today-button) {
|
|
2403
|
+
right: 95px; }
|
|
2404
|
+
|
|
2405
|
+
.react-datepicker__navigation--next:hover {
|
|
2406
|
+
border-left-color: #b3b3b3; }
|
|
2407
|
+
|
|
2408
|
+
.react-datepicker__navigation--next--disabled, .react-datepicker__navigation--next--disabled:hover {
|
|
2409
|
+
border-left-color: #e6e6e6;
|
|
2410
|
+
cursor: default; }
|
|
2411
|
+
|
|
2412
|
+
.react-datepicker__navigation--years {
|
|
2413
|
+
position: relative;
|
|
2414
|
+
top: 0;
|
|
2415
|
+
display: block;
|
|
2416
|
+
margin-left: auto;
|
|
2417
|
+
margin-right: auto; }
|
|
2418
|
+
|
|
2419
|
+
.react-datepicker__navigation--years-previous {
|
|
2420
|
+
top: 4px;
|
|
2421
|
+
border-top-color: #ccc; }
|
|
2422
|
+
|
|
2423
|
+
.react-datepicker__navigation--years-previous:hover {
|
|
2424
|
+
border-top-color: #b3b3b3; }
|
|
2425
|
+
|
|
2426
|
+
.react-datepicker__navigation--years-upcoming {
|
|
2427
|
+
top: -4px;
|
|
2428
|
+
border-bottom-color: #ccc; }
|
|
2429
|
+
|
|
2430
|
+
.react-datepicker__navigation--years-upcoming:hover {
|
|
2431
|
+
border-bottom-color: #b3b3b3; }
|
|
2432
|
+
|
|
2433
|
+
.react-datepicker__month-container {
|
|
2434
|
+
float: left; }
|
|
2435
|
+
|
|
2436
|
+
.react-datepicker__year {
|
|
2437
|
+
margin: 0.4rem;
|
|
2438
|
+
text-align: center; }
|
|
2439
|
+
|
|
2440
|
+
.react-datepicker__year-wrapper {
|
|
2441
|
+
display: flex;
|
|
2442
|
+
flex-wrap: wrap;
|
|
2443
|
+
max-width: 180px; }
|
|
2444
|
+
|
|
2445
|
+
.react-datepicker__year .react-datepicker__year-text {
|
|
2446
|
+
display: inline-block;
|
|
2447
|
+
width: 4rem;
|
|
2448
|
+
margin: 2px; }
|
|
2449
|
+
|
|
2450
|
+
.react-datepicker__month {
|
|
2451
|
+
margin: 0.4rem;
|
|
2452
|
+
text-align: center; }
|
|
2453
|
+
|
|
2454
|
+
.react-datepicker__month .react-datepicker__month-text,
|
|
2455
|
+
.react-datepicker__month .react-datepicker__quarter-text {
|
|
2456
|
+
display: inline-block;
|
|
2457
|
+
width: 4rem;
|
|
2458
|
+
margin: 2px; }
|
|
2459
|
+
|
|
2460
|
+
.react-datepicker__input-time-container {
|
|
2461
|
+
clear: both;
|
|
2462
|
+
width: 100%;
|
|
2463
|
+
float: left;
|
|
2464
|
+
margin: 5px 0 10px 15px;
|
|
2465
|
+
text-align: left; }
|
|
2466
|
+
|
|
2467
|
+
.react-datepicker__input-time-container .react-datepicker-time__caption {
|
|
2468
|
+
display: inline-block; }
|
|
2469
|
+
|
|
2470
|
+
.react-datepicker__input-time-container .react-datepicker-time__input-container {
|
|
2471
|
+
display: inline-block; }
|
|
2472
|
+
|
|
2473
|
+
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input {
|
|
2474
|
+
display: inline-block;
|
|
2475
|
+
margin-left: 10px; }
|
|
2476
|
+
|
|
2477
|
+
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input {
|
|
2478
|
+
width: 85px; }
|
|
2479
|
+
|
|
2480
|
+
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type="time"]::-webkit-inner-spin-button,
|
|
2481
|
+
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type="time"]::-webkit-outer-spin-button {
|
|
2482
|
+
-webkit-appearance: none;
|
|
2483
|
+
margin: 0; }
|
|
2484
|
+
|
|
2485
|
+
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type="time"] {
|
|
2486
|
+
-moz-appearance: textfield; }
|
|
2487
|
+
|
|
2488
|
+
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__delimiter {
|
|
2489
|
+
margin-left: 5px;
|
|
2490
|
+
display: inline-block; }
|
|
2491
|
+
|
|
2492
|
+
.react-datepicker__time-container {
|
|
2493
|
+
float: right;
|
|
2494
|
+
border-left: 1px solid #aeaeae;
|
|
2495
|
+
width: 85px; }
|
|
2496
|
+
|
|
2497
|
+
.react-datepicker__time-container--with-today-button {
|
|
2498
|
+
display: inline;
|
|
2499
|
+
border: 1px solid #aeaeae;
|
|
2500
|
+
border-radius: 0.3rem;
|
|
2501
|
+
position: absolute;
|
|
2502
|
+
right: -72px;
|
|
2503
|
+
top: 0; }
|
|
2504
|
+
|
|
2505
|
+
.react-datepicker__time-container .react-datepicker__time {
|
|
2506
|
+
position: relative;
|
|
2507
|
+
background: white;
|
|
2508
|
+
border-bottom-right-radius: 0.3rem; }
|
|
2509
|
+
|
|
2510
|
+
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box {
|
|
2511
|
+
width: 85px;
|
|
2512
|
+
overflow-x: hidden;
|
|
2513
|
+
margin: 0 auto;
|
|
2514
|
+
text-align: center;
|
|
2515
|
+
border-bottom-right-radius: 0.3rem; }
|
|
2516
|
+
|
|
2517
|
+
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list {
|
|
2518
|
+
list-style: none;
|
|
2519
|
+
margin: 0;
|
|
2520
|
+
height: calc(195px + (1.7rem / 2));
|
|
2521
|
+
overflow-y: scroll;
|
|
2522
|
+
padding-right: 0px;
|
|
2523
|
+
padding-left: 0px;
|
|
2524
|
+
width: 100%;
|
|
2525
|
+
box-sizing: content-box; }
|
|
2526
|
+
|
|
2527
|
+
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item {
|
|
2528
|
+
height: 30px;
|
|
2529
|
+
padding: 5px 10px;
|
|
2530
|
+
white-space: nowrap; }
|
|
2531
|
+
|
|
2532
|
+
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item:hover {
|
|
2533
|
+
cursor: pointer;
|
|
2534
|
+
background-color: #f0f0f0; }
|
|
2535
|
+
|
|
2536
|
+
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected {
|
|
2537
|
+
background-color: #216ba5;
|
|
2538
|
+
color: white;
|
|
2539
|
+
font-weight: bold; }
|
|
2540
|
+
|
|
2541
|
+
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected:hover {
|
|
2542
|
+
background-color: #216ba5; }
|
|
2543
|
+
|
|
2544
|
+
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled {
|
|
2545
|
+
color: #ccc; }
|
|
2546
|
+
|
|
2547
|
+
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled:hover {
|
|
2548
|
+
cursor: default;
|
|
2549
|
+
background-color: transparent; }
|
|
2550
|
+
|
|
2551
|
+
.react-datepicker__week-number {
|
|
2552
|
+
color: #ccc;
|
|
2553
|
+
display: inline-block;
|
|
2554
|
+
width: 1.7rem;
|
|
2555
|
+
line-height: 1.7rem;
|
|
2556
|
+
text-align: center;
|
|
2557
|
+
margin: 0.166rem; }
|
|
2558
|
+
|
|
2559
|
+
.react-datepicker__week-number.react-datepicker__week-number--clickable {
|
|
2560
|
+
cursor: pointer; }
|
|
2561
|
+
|
|
2562
|
+
.react-datepicker__week-number.react-datepicker__week-number--clickable:hover {
|
|
2563
|
+
border-radius: 0.3rem;
|
|
2564
|
+
background-color: #f0f0f0; }
|
|
2565
|
+
|
|
2566
|
+
.react-datepicker__day-names,
|
|
2567
|
+
.react-datepicker__week {
|
|
2568
|
+
white-space: nowrap; }
|
|
2569
|
+
|
|
2570
|
+
.react-datepicker__day-name,
|
|
2571
|
+
.react-datepicker__day,
|
|
2572
|
+
.react-datepicker__time-name {
|
|
2573
|
+
color: #000;
|
|
2574
|
+
display: inline-block;
|
|
2575
|
+
width: 1.7rem;
|
|
2576
|
+
line-height: 1.7rem;
|
|
2577
|
+
text-align: center;
|
|
2578
|
+
margin: 0.166rem; }
|
|
2579
|
+
|
|
2580
|
+
.react-datepicker__month--selected, .react-datepicker__month--in-selecting-range, .react-datepicker__month--in-range,
|
|
2581
|
+
.react-datepicker__quarter--selected,
|
|
2582
|
+
.react-datepicker__quarter--in-selecting-range,
|
|
2583
|
+
.react-datepicker__quarter--in-range {
|
|
2584
|
+
border-radius: 0.3rem;
|
|
2585
|
+
background-color: #216ba5;
|
|
2586
|
+
color: #fff; }
|
|
2587
|
+
|
|
2588
|
+
.react-datepicker__month--selected:hover, .react-datepicker__month--in-selecting-range:hover, .react-datepicker__month--in-range:hover,
|
|
2589
|
+
.react-datepicker__quarter--selected:hover,
|
|
2590
|
+
.react-datepicker__quarter--in-selecting-range:hover,
|
|
2591
|
+
.react-datepicker__quarter--in-range:hover {
|
|
2592
|
+
background-color: #1d5d90; }
|
|
2593
|
+
|
|
2594
|
+
.react-datepicker__month--disabled,
|
|
2595
|
+
.react-datepicker__quarter--disabled {
|
|
2596
|
+
color: #ccc;
|
|
2597
|
+
pointer-events: none; }
|
|
2598
|
+
|
|
2599
|
+
.react-datepicker__month--disabled:hover,
|
|
2600
|
+
.react-datepicker__quarter--disabled:hover {
|
|
2601
|
+
cursor: default;
|
|
2602
|
+
background-color: transparent; }
|
|
2603
|
+
|
|
2604
|
+
.react-datepicker__day,
|
|
2605
|
+
.react-datepicker__month-text,
|
|
2606
|
+
.react-datepicker__quarter-text,
|
|
2607
|
+
.react-datepicker__year-text {
|
|
2608
|
+
cursor: pointer; }
|
|
2609
|
+
|
|
2610
|
+
.react-datepicker__day:hover,
|
|
2611
|
+
.react-datepicker__month-text:hover,
|
|
2612
|
+
.react-datepicker__quarter-text:hover,
|
|
2613
|
+
.react-datepicker__year-text:hover {
|
|
2614
|
+
border-radius: 0.3rem;
|
|
2615
|
+
background-color: #f0f0f0; }
|
|
2616
|
+
|
|
2617
|
+
.react-datepicker__day--today,
|
|
2618
|
+
.react-datepicker__month-text--today,
|
|
2619
|
+
.react-datepicker__quarter-text--today,
|
|
2620
|
+
.react-datepicker__year-text--today {
|
|
2621
|
+
font-weight: bold; }
|
|
2622
|
+
|
|
2623
|
+
.react-datepicker__day--highlighted,
|
|
2624
|
+
.react-datepicker__month-text--highlighted,
|
|
2625
|
+
.react-datepicker__quarter-text--highlighted,
|
|
2626
|
+
.react-datepicker__year-text--highlighted {
|
|
2627
|
+
border-radius: 0.3rem;
|
|
2628
|
+
background-color: #3dcc4a;
|
|
2629
|
+
color: #fff; }
|
|
2630
|
+
|
|
2631
|
+
.react-datepicker__day--highlighted:hover,
|
|
2632
|
+
.react-datepicker__month-text--highlighted:hover,
|
|
2633
|
+
.react-datepicker__quarter-text--highlighted:hover,
|
|
2634
|
+
.react-datepicker__year-text--highlighted:hover {
|
|
2635
|
+
background-color: #32be3f; }
|
|
2636
|
+
|
|
2637
|
+
.react-datepicker__day--highlighted-custom-1,
|
|
2638
|
+
.react-datepicker__month-text--highlighted-custom-1,
|
|
2639
|
+
.react-datepicker__quarter-text--highlighted-custom-1,
|
|
2640
|
+
.react-datepicker__year-text--highlighted-custom-1 {
|
|
2641
|
+
color: magenta; }
|
|
2642
|
+
|
|
2643
|
+
.react-datepicker__day--highlighted-custom-2,
|
|
2644
|
+
.react-datepicker__month-text--highlighted-custom-2,
|
|
2645
|
+
.react-datepicker__quarter-text--highlighted-custom-2,
|
|
2646
|
+
.react-datepicker__year-text--highlighted-custom-2 {
|
|
2647
|
+
color: green; }
|
|
2648
|
+
|
|
2649
|
+
.react-datepicker__day--selected, .react-datepicker__day--in-selecting-range, .react-datepicker__day--in-range,
|
|
2650
|
+
.react-datepicker__month-text--selected,
|
|
2651
|
+
.react-datepicker__month-text--in-selecting-range,
|
|
2652
|
+
.react-datepicker__month-text--in-range,
|
|
2653
|
+
.react-datepicker__quarter-text--selected,
|
|
2654
|
+
.react-datepicker__quarter-text--in-selecting-range,
|
|
2655
|
+
.react-datepicker__quarter-text--in-range,
|
|
2656
|
+
.react-datepicker__year-text--selected,
|
|
2657
|
+
.react-datepicker__year-text--in-selecting-range,
|
|
2658
|
+
.react-datepicker__year-text--in-range {
|
|
2659
|
+
border-radius: 0.3rem;
|
|
2660
|
+
background-color: #216ba5;
|
|
2661
|
+
color: #fff; }
|
|
2662
|
+
|
|
2663
|
+
.react-datepicker__day--selected:hover, .react-datepicker__day--in-selecting-range:hover, .react-datepicker__day--in-range:hover,
|
|
2664
|
+
.react-datepicker__month-text--selected:hover,
|
|
2665
|
+
.react-datepicker__month-text--in-selecting-range:hover,
|
|
2666
|
+
.react-datepicker__month-text--in-range:hover,
|
|
2667
|
+
.react-datepicker__quarter-text--selected:hover,
|
|
2668
|
+
.react-datepicker__quarter-text--in-selecting-range:hover,
|
|
2669
|
+
.react-datepicker__quarter-text--in-range:hover,
|
|
2670
|
+
.react-datepicker__year-text--selected:hover,
|
|
2671
|
+
.react-datepicker__year-text--in-selecting-range:hover,
|
|
2672
|
+
.react-datepicker__year-text--in-range:hover {
|
|
2673
|
+
background-color: #1d5d90; }
|
|
2674
|
+
|
|
2675
|
+
.react-datepicker__day--keyboard-selected,
|
|
2676
|
+
.react-datepicker__month-text--keyboard-selected,
|
|
2677
|
+
.react-datepicker__quarter-text--keyboard-selected,
|
|
2678
|
+
.react-datepicker__year-text--keyboard-selected {
|
|
2679
|
+
border-radius: 0.3rem;
|
|
2680
|
+
background-color: #2a87d0;
|
|
2681
|
+
color: #fff; }
|
|
2682
|
+
|
|
2683
|
+
.react-datepicker__day--keyboard-selected:hover,
|
|
2684
|
+
.react-datepicker__month-text--keyboard-selected:hover,
|
|
2685
|
+
.react-datepicker__quarter-text--keyboard-selected:hover,
|
|
2686
|
+
.react-datepicker__year-text--keyboard-selected:hover {
|
|
2687
|
+
background-color: #1d5d90; }
|
|
2688
|
+
|
|
2689
|
+
.react-datepicker__day--in-selecting-range,
|
|
2690
|
+
.react-datepicker__month-text--in-selecting-range,
|
|
2691
|
+
.react-datepicker__quarter-text--in-selecting-range,
|
|
2692
|
+
.react-datepicker__year-text--in-selecting-range {
|
|
2693
|
+
background-color: rgba(33, 107, 165, 0.5); }
|
|
2694
|
+
|
|
2695
|
+
.react-datepicker__month--selecting-range .react-datepicker__day--in-range, .react-datepicker__month--selecting-range
|
|
2696
|
+
.react-datepicker__month-text--in-range, .react-datepicker__month--selecting-range
|
|
2697
|
+
.react-datepicker__quarter-text--in-range, .react-datepicker__month--selecting-range
|
|
2698
|
+
.react-datepicker__year-text--in-range {
|
|
2699
|
+
background-color: #f0f0f0;
|
|
2700
|
+
color: #000; }
|
|
2701
|
+
|
|
2702
|
+
.react-datepicker__day--disabled,
|
|
2703
|
+
.react-datepicker__month-text--disabled,
|
|
2704
|
+
.react-datepicker__quarter-text--disabled,
|
|
2705
|
+
.react-datepicker__year-text--disabled {
|
|
2706
|
+
cursor: default;
|
|
2707
|
+
color: #ccc; }
|
|
2708
|
+
|
|
2709
|
+
.react-datepicker__day--disabled:hover,
|
|
2710
|
+
.react-datepicker__month-text--disabled:hover,
|
|
2711
|
+
.react-datepicker__quarter-text--disabled:hover,
|
|
2712
|
+
.react-datepicker__year-text--disabled:hover {
|
|
2713
|
+
background-color: transparent; }
|
|
2714
|
+
|
|
2715
|
+
.react-datepicker__month-text.react-datepicker__month--selected:hover, .react-datepicker__month-text.react-datepicker__month--in-range:hover, .react-datepicker__month-text.react-datepicker__quarter--selected:hover, .react-datepicker__month-text.react-datepicker__quarter--in-range:hover,
|
|
2716
|
+
.react-datepicker__quarter-text.react-datepicker__month--selected:hover,
|
|
2717
|
+
.react-datepicker__quarter-text.react-datepicker__month--in-range:hover,
|
|
2718
|
+
.react-datepicker__quarter-text.react-datepicker__quarter--selected:hover,
|
|
2719
|
+
.react-datepicker__quarter-text.react-datepicker__quarter--in-range:hover {
|
|
2720
|
+
background-color: #216ba5; }
|
|
2721
|
+
|
|
2722
|
+
.react-datepicker__month-text:hover,
|
|
2723
|
+
.react-datepicker__quarter-text:hover {
|
|
2724
|
+
background-color: #f0f0f0; }
|
|
2725
|
+
|
|
2726
|
+
.react-datepicker__input-container {
|
|
2727
|
+
position: relative;
|
|
2728
|
+
display: inline-block;
|
|
2729
|
+
width: 100%; }
|
|
2730
|
+
|
|
2731
|
+
.react-datepicker__year-read-view,
|
|
2732
|
+
.react-datepicker__month-read-view,
|
|
2733
|
+
.react-datepicker__month-year-read-view {
|
|
2734
|
+
border: 1px solid transparent;
|
|
2735
|
+
border-radius: 0.3rem; }
|
|
2736
|
+
|
|
2737
|
+
.react-datepicker__year-read-view:hover,
|
|
2738
|
+
.react-datepicker__month-read-view:hover,
|
|
2739
|
+
.react-datepicker__month-year-read-view:hover {
|
|
2740
|
+
cursor: pointer; }
|
|
2741
|
+
|
|
2742
|
+
.react-datepicker__year-read-view:hover .react-datepicker__year-read-view--down-arrow,
|
|
2743
|
+
.react-datepicker__year-read-view:hover .react-datepicker__month-read-view--down-arrow,
|
|
2744
|
+
.react-datepicker__month-read-view:hover .react-datepicker__year-read-view--down-arrow,
|
|
2745
|
+
.react-datepicker__month-read-view:hover .react-datepicker__month-read-view--down-arrow,
|
|
2746
|
+
.react-datepicker__month-year-read-view:hover .react-datepicker__year-read-view--down-arrow,
|
|
2747
|
+
.react-datepicker__month-year-read-view:hover .react-datepicker__month-read-view--down-arrow {
|
|
2748
|
+
border-top-color: #b3b3b3; }
|
|
2749
|
+
|
|
2750
|
+
.react-datepicker__year-read-view--down-arrow,
|
|
2751
|
+
.react-datepicker__month-read-view--down-arrow,
|
|
2752
|
+
.react-datepicker__month-year-read-view--down-arrow {
|
|
2753
|
+
border-top-color: #ccc;
|
|
2754
|
+
float: right;
|
|
2755
|
+
margin-left: 20px;
|
|
2756
|
+
top: 8px;
|
|
2757
|
+
position: relative;
|
|
2758
|
+
border-width: 0.45rem; }
|
|
2759
|
+
|
|
2760
|
+
.react-datepicker__year-dropdown,
|
|
2761
|
+
.react-datepicker__month-dropdown,
|
|
2762
|
+
.react-datepicker__month-year-dropdown {
|
|
2763
|
+
background-color: #f0f0f0;
|
|
2764
|
+
position: absolute;
|
|
2765
|
+
width: 50%;
|
|
2766
|
+
left: 25%;
|
|
2767
|
+
top: 30px;
|
|
2768
|
+
z-index: 1;
|
|
2769
|
+
text-align: center;
|
|
2770
|
+
border-radius: 0.3rem;
|
|
2771
|
+
border: 1px solid #aeaeae; }
|
|
2772
|
+
|
|
2773
|
+
.react-datepicker__year-dropdown:hover,
|
|
2774
|
+
.react-datepicker__month-dropdown:hover,
|
|
2775
|
+
.react-datepicker__month-year-dropdown:hover {
|
|
2776
|
+
cursor: pointer; }
|
|
2777
|
+
|
|
2778
|
+
.react-datepicker__year-dropdown--scrollable,
|
|
2779
|
+
.react-datepicker__month-dropdown--scrollable,
|
|
2780
|
+
.react-datepicker__month-year-dropdown--scrollable {
|
|
2781
|
+
height: 150px;
|
|
2782
|
+
overflow-y: scroll; }
|
|
2783
|
+
|
|
2784
|
+
.react-datepicker__year-option,
|
|
2785
|
+
.react-datepicker__month-option,
|
|
2786
|
+
.react-datepicker__month-year-option {
|
|
2787
|
+
line-height: 20px;
|
|
2788
|
+
width: 100%;
|
|
2789
|
+
display: block;
|
|
2790
|
+
margin-left: auto;
|
|
2791
|
+
margin-right: auto; }
|
|
2792
|
+
|
|
2793
|
+
.react-datepicker__year-option:first-of-type,
|
|
2794
|
+
.react-datepicker__month-option:first-of-type,
|
|
2795
|
+
.react-datepicker__month-year-option:first-of-type {
|
|
2796
|
+
border-top-left-radius: 0.3rem;
|
|
2797
|
+
border-top-right-radius: 0.3rem; }
|
|
2798
|
+
|
|
2799
|
+
.react-datepicker__year-option:last-of-type,
|
|
2800
|
+
.react-datepicker__month-option:last-of-type,
|
|
2801
|
+
.react-datepicker__month-year-option:last-of-type {
|
|
2802
|
+
-webkit-user-select: none;
|
|
2803
|
+
-moz-user-select: none;
|
|
2804
|
+
-ms-user-select: none;
|
|
2805
|
+
user-select: none;
|
|
2806
|
+
border-bottom-left-radius: 0.3rem;
|
|
2807
|
+
border-bottom-right-radius: 0.3rem; }
|
|
2808
|
+
|
|
2809
|
+
.react-datepicker__year-option:hover,
|
|
2810
|
+
.react-datepicker__month-option:hover,
|
|
2811
|
+
.react-datepicker__month-year-option:hover {
|
|
2812
|
+
background-color: #ccc; }
|
|
2813
|
+
|
|
2814
|
+
.react-datepicker__year-option:hover .react-datepicker__navigation--years-upcoming,
|
|
2815
|
+
.react-datepicker__month-option:hover .react-datepicker__navigation--years-upcoming,
|
|
2816
|
+
.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-upcoming {
|
|
2817
|
+
border-bottom-color: #b3b3b3; }
|
|
2818
|
+
|
|
2819
|
+
.react-datepicker__year-option:hover .react-datepicker__navigation--years-previous,
|
|
2820
|
+
.react-datepicker__month-option:hover .react-datepicker__navigation--years-previous,
|
|
2821
|
+
.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-previous {
|
|
2822
|
+
border-top-color: #b3b3b3; }
|
|
2823
|
+
|
|
2824
|
+
.react-datepicker__year-option--selected,
|
|
2825
|
+
.react-datepicker__month-option--selected,
|
|
2826
|
+
.react-datepicker__month-year-option--selected {
|
|
2827
|
+
position: absolute;
|
|
2828
|
+
left: 15px; }
|
|
2829
|
+
|
|
2830
|
+
.react-datepicker__close-icon {
|
|
2831
|
+
cursor: pointer;
|
|
2832
|
+
background-color: transparent;
|
|
2833
|
+
border: 0;
|
|
2834
|
+
outline: 0;
|
|
2835
|
+
padding: 0px 6px 0px 0px;
|
|
2836
|
+
position: absolute;
|
|
2837
|
+
top: 0;
|
|
2838
|
+
right: 0;
|
|
2839
|
+
height: 100%;
|
|
2840
|
+
display: table-cell;
|
|
2841
|
+
vertical-align: middle; }
|
|
2842
|
+
|
|
2843
|
+
.react-datepicker__close-icon::after {
|
|
2844
|
+
cursor: pointer;
|
|
2845
|
+
background-color: #216ba5;
|
|
2846
|
+
color: #fff;
|
|
2847
|
+
border-radius: 50%;
|
|
2848
|
+
height: 16px;
|
|
2849
|
+
width: 16px;
|
|
2850
|
+
padding: 2px;
|
|
2851
|
+
font-size: 12px;
|
|
2852
|
+
line-height: 1;
|
|
2853
|
+
text-align: center;
|
|
2854
|
+
display: table-cell;
|
|
2855
|
+
vertical-align: middle;
|
|
2856
|
+
content: "\00d7"; }
|
|
2857
|
+
|
|
2858
|
+
.react-datepicker__today-button {
|
|
2859
|
+
background: #f0f0f0;
|
|
2860
|
+
border-top: 1px solid #aeaeae;
|
|
2861
|
+
cursor: pointer;
|
|
2862
|
+
text-align: center;
|
|
2863
|
+
font-weight: bold;
|
|
2864
|
+
padding: 5px 0;
|
|
2865
|
+
clear: left; }
|
|
2866
|
+
|
|
2867
|
+
.react-datepicker__portal {
|
|
2868
|
+
position: fixed;
|
|
2869
|
+
width: 100vw;
|
|
2870
|
+
height: 100vh;
|
|
2871
|
+
background-color: rgba(0, 0, 0, 0.8);
|
|
2872
|
+
left: 0;
|
|
2873
|
+
top: 0;
|
|
2874
|
+
justify-content: center;
|
|
2875
|
+
align-items: center;
|
|
2876
|
+
display: flex;
|
|
2877
|
+
z-index: 2147483647; }
|
|
2878
|
+
|
|
2879
|
+
.react-datepicker__portal .react-datepicker__day-name,
|
|
2880
|
+
.react-datepicker__portal .react-datepicker__day,
|
|
2881
|
+
.react-datepicker__portal .react-datepicker__time-name {
|
|
2882
|
+
width: 3rem;
|
|
2883
|
+
line-height: 3rem; }
|
|
2884
|
+
|
|
2885
|
+
@media (max-width: 400px), (max-height: 550px) {
|
|
2886
|
+
.react-datepicker__portal .react-datepicker__day-name,
|
|
2887
|
+
.react-datepicker__portal .react-datepicker__day,
|
|
2888
|
+
.react-datepicker__portal .react-datepicker__time-name {
|
|
2889
|
+
width: 2rem;
|
|
2890
|
+
line-height: 2rem; } }
|
|
2891
|
+
|
|
2892
|
+
.react-datepicker__portal .react-datepicker__current-month,
|
|
2893
|
+
.react-datepicker__portal .react-datepicker-time__header {
|
|
2894
|
+
font-size: 1.44rem; }
|
|
2895
|
+
|
|
2896
|
+
.react-datepicker__portal .react-datepicker__navigation {
|
|
2897
|
+
border: 0.81rem solid transparent; }
|
|
2898
|
+
|
|
2899
|
+
.react-datepicker__portal .react-datepicker__navigation--previous {
|
|
2900
|
+
border-right-color: #ccc; }
|
|
2901
|
+
|
|
2902
|
+
.react-datepicker__portal .react-datepicker__navigation--previous:hover {
|
|
2903
|
+
border-right-color: #b3b3b3; }
|
|
2904
|
+
|
|
2905
|
+
.react-datepicker__portal .react-datepicker__navigation--previous--disabled, .react-datepicker__portal .react-datepicker__navigation--previous--disabled:hover {
|
|
2906
|
+
border-right-color: #e6e6e6;
|
|
2907
|
+
cursor: default; }
|
|
2908
|
+
|
|
2909
|
+
.react-datepicker__portal .react-datepicker__navigation--next {
|
|
2910
|
+
border-left-color: #ccc; }
|
|
2911
|
+
|
|
2912
|
+
.react-datepicker__portal .react-datepicker__navigation--next:hover {
|
|
2913
|
+
border-left-color: #b3b3b3; }
|
|
2914
|
+
|
|
2915
|
+
.react-datepicker__portal .react-datepicker__navigation--next--disabled, .react-datepicker__portal .react-datepicker__navigation--next--disabled:hover {
|
|
2916
|
+
border-left-color: #e6e6e6;
|
|
2917
|
+
cursor: default; }
|
|
2918
|
+
|
|
2919
|
+
.react-datepicker-wrapper {
|
|
2920
|
+
display: block; }
|
|
2921
|
+
|
|
2922
|
+
.cv--inputContainer--1zcP1:hover .cv--clearButton--3CgWn {
|
|
2923
|
+
color: #313543 !important; }
|
|
2924
|
+
|
|
2925
|
+
.cv--inputBtnContainer--3uNF_ {
|
|
2926
|
+
position: absolute;
|
|
2927
|
+
right: 0.375rem;
|
|
2928
|
+
top: 50%;
|
|
2929
|
+
transform: translateY(-50%); }
|
|
2930
|
+
|
|
2931
|
+
.cv--title--3n24D {
|
|
2932
|
+
flex: auto; }
|
|
2933
|
+
|
|
2934
|
+
.cv--rating--2wQbU {
|
|
2935
|
+
flex: initial; }
|
|
2936
|
+
|
|
2937
|
+
@media (max-width: 576px) {
|
|
2938
|
+
.cv--title--3n24D, .cv--rating--2wQbU {
|
|
2939
|
+
width: 100%; } }
|
|
2940
|
+
|
|
2941
|
+
.cv--header--3_ee_ {
|
|
2942
|
+
width: 8rem;
|
|
2943
|
+
height: 1.3125rem; }
|
|
2944
|
+
|
|
2945
|
+
.cv--subHeader--V1CuW {
|
|
2946
|
+
width: 6rem;
|
|
2947
|
+
height: 1.3125rem; }
|
|
2948
|
+
|
|
2949
|
+
.cv--thumbnailContainer--2hCcB {
|
|
2950
|
+
padding-bottom: 56.25%; }
|
|
2951
|
+
|
|
2952
|
+
.cv--input--3Xg9R, .cv--textbox--3vknA {
|
|
2953
|
+
height: 2.1875rem;
|
|
2954
|
+
width: 100%; }
|
|
2955
|
+
|
|
2956
|
+
.cv--textbox--3vknA {
|
|
2957
|
+
height: 4rem; }
|
|
2958
|
+
|
|
2959
|
+
.cv--header--1XNuP {
|
|
2960
|
+
width: 8rem;
|
|
2961
|
+
height: 1.5rem; }
|
|
2962
|
+
|
|
2963
|
+
.cv--text--2K1X9 {
|
|
2964
|
+
height: 1rem;
|
|
2965
|
+
width: 40%; }
|
|
2966
|
+
|
|
2967
|
+
.cv--upload--2XqQM {
|
|
2968
|
+
width: 100%;
|
|
2969
|
+
height: 4rem;
|
|
2970
|
+
border-radius: 0.25rem; }
|
|
2971
|
+
|
|
2972
|
+
.cv--backButton--bXRnc {
|
|
2973
|
+
margin-left: -0.5rem;
|
|
2974
|
+
font-size: 0.875rem; }
|
|
194
2975
|
|
|
195
|
-
.
|
|
2976
|
+
.cv--radioFilter--vo-iA {
|
|
2977
|
+
margin: 0.3125rem 0; }
|
|
2978
|
+
.cv--radioFilter--vo-iA label::after {
|
|
2979
|
+
cursor: pointer; }
|
|
196
2980
|
|
|
197
|
-
.
|
|
2981
|
+
.cv--filterButton--1-sDv {
|
|
2982
|
+
font-weight: 500; }
|
|
198
2983
|
|
|
199
|
-
.
|
|
2984
|
+
.cv--hideCaret--1QUvs::after {
|
|
2985
|
+
display: none; }
|
|
200
2986
|
|
|
201
|
-
.
|
|
2987
|
+
.cv--baseWidth--1DSrk {
|
|
2988
|
+
min-width: 10rem; }
|
|
202
2989
|
|
|
203
|
-
.
|
|
2990
|
+
.cv--switchWidth--1Uj1H {
|
|
2991
|
+
min-width: 16rem; }
|
|
204
2992
|
|
|
205
|
-
.
|
|
2993
|
+
.cv--moreFiltersWidth--1QA1y {
|
|
2994
|
+
min-width: 25rem; }
|
|
206
2995
|
|
|
207
|
-
.
|
|
2996
|
+
.cv--tagItem--yAmlJ {
|
|
2997
|
+
line-height: 1rem;
|
|
2998
|
+
font-weight: 600; }
|
|
208
2999
|
|
|
209
|
-
.
|
|
3000
|
+
.cv--selected--XKCzv {
|
|
3001
|
+
background-color: #daeaf5; }
|
|
210
3002
|
|
|
211
|
-
.
|
|
3003
|
+
.cv--tagItem--2n03y {
|
|
3004
|
+
line-height: 1rem;
|
|
3005
|
+
font-weight: 600; }
|
|
212
3006
|
|
|
213
|
-
.
|
|
3007
|
+
.cv--partialFilterHeading--2m4KG {
|
|
3008
|
+
height: 1.5rem;
|
|
3009
|
+
width: 3.5rem; }
|
|
214
3010
|
|
|
215
|
-
.
|
|
3011
|
+
.cv--partialButton--1qRma {
|
|
3012
|
+
height: 2.2rem;
|
|
3013
|
+
width: 5rem; }
|
|
216
3014
|
|
|
217
|
-
.
|
|
3015
|
+
.cv--partialLoading--3lZOl {
|
|
3016
|
+
height: 1.1875rem;
|
|
3017
|
+
width: 7.25rem; }
|
|
218
3018
|
|
|
219
|
-
.
|
|
3019
|
+
.cv--searchSvg--sfEk2 {
|
|
3020
|
+
position: absolute;
|
|
3021
|
+
top: 50%;
|
|
3022
|
+
right: 0.625rem;
|
|
3023
|
+
transform: translateY(-50%); }
|
|
220
3024
|
|
|
221
|
-
.
|
|
3025
|
+
.cv--badge--J6dys {
|
|
3026
|
+
border-radius: 3px;
|
|
3027
|
+
font-size: 0.8rem; }
|
|
3028
|
+
.cv--badge--J6dys.cv--pending--1E7Cl {
|
|
3029
|
+
background-color: #84868D; }
|
|
3030
|
+
.cv--badge--J6dys.cv--unverified--2K26i {
|
|
3031
|
+
background-color: #B5B5B5; }
|
|
222
3032
|
|
|
223
|
-
.
|
|
3033
|
+
.cv--avatarContainer--kwuGm {
|
|
3034
|
+
width: 2.1875rem;
|
|
3035
|
+
height: 2.1875rem; }
|
|
224
3036
|
|
|
225
|
-
.
|
|
3037
|
+
.cv--lastActiveContainer--1Ux1v {
|
|
3038
|
+
width: 6rem; }
|
|
3039
|
+
.cv--lastActiveContainer--1Ux1v.cv--isCurrentUser--3mthe {
|
|
3040
|
+
width: 7.8rem; }
|
|
3041
|
+
|
|
3042
|
+
.cv--pillContainer--22WFD {
|
|
3043
|
+
width: 6.25rem; }
|
|
226
3044
|
|
|
227
|
-
.
|
|
3045
|
+
.cv--partialEntries--3zEWW {
|
|
3046
|
+
width: 7.5625rem;
|
|
3047
|
+
height: 1.1875rem; }
|
|
228
3048
|
|
|
229
|
-
.
|
|
3049
|
+
.cv--partialCreateUser--3YefZ {
|
|
3050
|
+
width: 10.625rem;
|
|
3051
|
+
height: 2.1875rem; }
|
|
3052
|
+
|
|
3053
|
+
.cv--partialBulkUpload--vjp05 {
|
|
3054
|
+
width: 10.375rem;
|
|
3055
|
+
height: 2.1875rem; }
|
|
3056
|
+
|
|
3057
|
+
.cv--partialCheckbox--3BgoZ {
|
|
3058
|
+
width: 1.3125rem;
|
|
3059
|
+
height: 1.3125rem; }
|
|
3060
|
+
|
|
3061
|
+
.cv--partialYearGroup--1GKA3 {
|
|
3062
|
+
width: 5rem;
|
|
3063
|
+
height: 1.3125rem; }
|
|
3064
|
+
|
|
3065
|
+
.cv--partialName--1PkNg {
|
|
3066
|
+
width: 15.625rem;
|
|
3067
|
+
height: 1.75rem; }
|
|
3068
|
+
|
|
3069
|
+
.cv--partialEmail--12C29 {
|
|
3070
|
+
width: 11.25rem;
|
|
3071
|
+
height: 1.3125rem; }
|
|
3072
|
+
|
|
3073
|
+
.cv--partialAvatar--3pO69 {
|
|
3074
|
+
width: 2.1875rem;
|
|
3075
|
+
height: 2.1875rem; }
|
|
3076
|
+
|
|
3077
|
+
.cv--lastActiveLabel--3r8OI {
|
|
3078
|
+
height: 0.9375rem;
|
|
3079
|
+
width: 3.1875rem; }
|
|
230
3080
|
|
|
231
|
-
.
|
|
3081
|
+
.cv--lastActiveDate--1BEdK {
|
|
3082
|
+
width: 6rem;
|
|
3083
|
+
height: 1.3125rem; }
|
|
3084
|
+
|
|
3085
|
+
.cv--partialAction--HXLMy {
|
|
3086
|
+
width: 1.5rem;
|
|
3087
|
+
height: 1.5rem;
|
|
3088
|
+
margin: 0.5rem; }
|
|
3089
|
+
|
|
3090
|
+
.cv--bulkSelect--28s0s {
|
|
3091
|
+
background-color: #f8f8f8; }
|
|
3092
|
+
|
|
3093
|
+
.cv--cell--GJ7FW {
|
|
3094
|
+
width: 11.25rem; }
|
|
3095
|
+
|
|
3096
|
+
.cv--modalWidth--2vyVa {
|
|
3097
|
+
width: 37.5rem;
|
|
3098
|
+
max-width: 37.5rem; }
|
|
3099
|
+
|
|
3100
|
+
.cv--center--1SZgC {
|
|
3101
|
+
top: 50%;
|
|
3102
|
+
left: 50%;
|
|
3103
|
+
transform: translate(-50%, -70%); }
|
|
3104
|
+
|
|
3105
|
+
.cv--stickyHeader--3uOWM {
|
|
3106
|
+
position: -webkit-sticky;
|
|
3107
|
+
position: sticky;
|
|
3108
|
+
top: 0; }
|
|
232
3109
|
|