@ilo-org/styles 0.1.9 → 0.1.10
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/README.md +157 -45
- package/build/css/components/index.css +312 -175
- package/build/css/components/index.css.map +1 -1
- package/build/css/index.css +312 -175
- package/build/css/index.css.map +1 -1
- package/build/css/monorepo.css +312 -175
- package/build/css/monorepo.css.map +1 -1
- package/build/minified/index.css +1 -1
- package/build/minified/index.css.map +1 -1
- package/build/minified/monorepo.css +1 -1
- package/build/minified/monorepo.css.map +1 -1
- package/package.json +4 -4
- package/scss/components/_accordion.scss +25 -10
- package/scss/components/_callout.scss +2 -2
- package/scss/components/_card.scss +17 -3
- package/scss/components/_cardgroup.scss +3 -3
- package/scss/components/_checkbox.scss +3 -1
- package/scss/components/_contextmenu.scss +10 -2
- package/scss/components/_footer.scss +3 -0
- package/scss/components/_hero.scss +1 -0
- package/scss/components/_linklist.scss +4 -0
- package/scss/components/_list.scss +32 -3
- package/scss/components/_notification.scss +1 -1
- package/scss/components/_radio.scss +2 -0
- package/scss/components/_richtext.scss +2 -27
- package/scss/components/_table.scss +3 -2
- package/scss/components/_tag.scss +10 -9
- package/scss/components/_tooltip.scss +9 -14
- package/scss/components/_video.scss +68 -17
package/build/css/index.css
CHANGED
|
@@ -151,7 +151,7 @@ select {
|
|
|
151
151
|
}
|
|
152
152
|
/**
|
|
153
153
|
* Do not edit directly
|
|
154
|
-
* Generated on
|
|
154
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
155
155
|
*/
|
|
156
156
|
/**
|
|
157
157
|
* TOKENS:
|
|
@@ -250,7 +250,7 @@ body {
|
|
|
250
250
|
|
|
251
251
|
/**
|
|
252
252
|
* Do not edit directly
|
|
253
|
-
* Generated on
|
|
253
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
254
254
|
*/
|
|
255
255
|
/**
|
|
256
256
|
* TOKENS:
|
|
@@ -277,12 +277,18 @@ body {
|
|
|
277
277
|
line-height: 21.6px;
|
|
278
278
|
justify-content: space-between;
|
|
279
279
|
margin: 0;
|
|
280
|
-
padding: 0.
|
|
280
|
+
padding: 0.9646302251rem 1.9292604502rem 0.9646302251rem 0;
|
|
281
281
|
text-align: left;
|
|
282
|
-
transition: border
|
|
282
|
+
transition: border 150ms ease-out, background 150ms ease-out, color 150ms ease-out;
|
|
283
283
|
width: 100%;
|
|
284
284
|
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath fill='rgb(35, 0, 80)' d='M18 11H13V6H11V11H6V13H11V18H13V13H18V11Z'/%3e%3c/svg%3e");
|
|
285
285
|
}
|
|
286
|
+
.ilo--accordion--button--large {
|
|
287
|
+
font-size: 18.66px;
|
|
288
|
+
letter-spacing: -0.035em;
|
|
289
|
+
line-height: 24.26px;
|
|
290
|
+
padding: 1.1254019293rem 1.9292604502rem 1.1254019293rem 0;
|
|
291
|
+
}
|
|
286
292
|
.ilo--accordion--button:hover, .ilo--accordion--button:focus {
|
|
287
293
|
background-color: rgb(235, 245, 253);
|
|
288
294
|
border-top-color: rgb(30, 45, 190);
|
|
@@ -296,12 +302,18 @@ body {
|
|
|
296
302
|
.ilo--accordion--button:hover[aria-expanded=false], .ilo--accordion--button:focus[aria-expanded=false] {
|
|
297
303
|
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath fill='rgb(30, 45, 190)' d='M18 11H13V6H11V11H6V13H11V18H13V13H18V11Z'/%3e%3c/svg%3e");
|
|
298
304
|
}
|
|
299
|
-
@media screen and (min-width:
|
|
305
|
+
@media screen and (min-width: 610px) {
|
|
300
306
|
.ilo--accordion--button {
|
|
301
|
-
font-size:
|
|
307
|
+
font-size: 16px;
|
|
302
308
|
letter-spacing: -0.02em;
|
|
309
|
+
line-height: 21.6px;
|
|
310
|
+
padding: 0.9646302251rem 1.9292604502rem 0.9646302251rem 0;
|
|
311
|
+
}
|
|
312
|
+
.ilo--accordion--button--large {
|
|
313
|
+
font-size: 18.66px;
|
|
314
|
+
letter-spacing: -0.035em;
|
|
303
315
|
line-height: 24.26px;
|
|
304
|
-
padding:
|
|
316
|
+
padding: 1.1254019293rem 1.9292604502rem 1.1254019293rem 0;
|
|
305
317
|
}
|
|
306
318
|
}
|
|
307
319
|
.ilo--accordion--button[aria-expanded=true] {
|
|
@@ -316,7 +328,7 @@ body {
|
|
|
316
328
|
font-family: Noto Sans;
|
|
317
329
|
height: 0px;
|
|
318
330
|
overflow: hidden;
|
|
319
|
-
transition: height
|
|
331
|
+
transition: height 225ms ease-out, padding 225ms ease-out;
|
|
320
332
|
font-size: 16px;
|
|
321
333
|
letter-spacing: -0.02em;
|
|
322
334
|
line-height: 21.6px;
|
|
@@ -327,7 +339,7 @@ body {
|
|
|
327
339
|
}
|
|
328
340
|
.ilo--accordion--panel--open {
|
|
329
341
|
height: var(--height);
|
|
330
|
-
transition: height
|
|
342
|
+
transition: height 225ms ease-out, padding 225ms ease-out;
|
|
331
343
|
}
|
|
332
344
|
.ilo--accordion--panel.collapsing, .ilo--accordion--panel.expanding {
|
|
333
345
|
height: 0;
|
|
@@ -341,7 +353,7 @@ body {
|
|
|
341
353
|
transition-timing-function: ease;
|
|
342
354
|
-webkit-transition-timing-function: ease;
|
|
343
355
|
}
|
|
344
|
-
@media screen and (min-width:
|
|
356
|
+
@media screen and (min-width: 610px) {
|
|
345
357
|
.ilo--accordion--panel {
|
|
346
358
|
font-size: 18.66px;
|
|
347
359
|
letter-spacing: -0.02em;
|
|
@@ -351,7 +363,7 @@ body {
|
|
|
351
363
|
|
|
352
364
|
/**
|
|
353
365
|
* Do not edit directly
|
|
354
|
-
* Generated on
|
|
366
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
355
367
|
*/
|
|
356
368
|
/**
|
|
357
369
|
* TOKENS:
|
|
@@ -376,7 +388,7 @@ body {
|
|
|
376
388
|
}
|
|
377
389
|
/**
|
|
378
390
|
* Do not edit directly
|
|
379
|
-
* Generated on
|
|
391
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
380
392
|
*/
|
|
381
393
|
/**
|
|
382
394
|
* TOKENS:
|
|
@@ -606,7 +618,7 @@ body {
|
|
|
606
618
|
|
|
607
619
|
/**
|
|
608
620
|
* Do not edit directly
|
|
609
|
-
* Generated on
|
|
621
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
610
622
|
*/
|
|
611
623
|
/**
|
|
612
624
|
* TOKENS:
|
|
@@ -616,7 +628,7 @@ body {
|
|
|
616
628
|
*/
|
|
617
629
|
/**
|
|
618
630
|
* Do not edit directly
|
|
619
|
-
* Generated on
|
|
631
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
620
632
|
*/
|
|
621
633
|
/**
|
|
622
634
|
* TOKENS:
|
|
@@ -641,7 +653,7 @@ body {
|
|
|
641
653
|
}
|
|
642
654
|
/**
|
|
643
655
|
* Do not edit directly
|
|
644
|
-
* Generated on
|
|
656
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
645
657
|
*/
|
|
646
658
|
/**
|
|
647
659
|
* TOKENS:
|
|
@@ -931,7 +943,7 @@ body {
|
|
|
931
943
|
|
|
932
944
|
/**
|
|
933
945
|
* Do not edit directly
|
|
934
|
-
* Generated on
|
|
946
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
935
947
|
*/
|
|
936
948
|
/**
|
|
937
949
|
* TOKENS:
|
|
@@ -941,7 +953,7 @@ body {
|
|
|
941
953
|
*/
|
|
942
954
|
.ilo--callout {
|
|
943
955
|
display: flex;
|
|
944
|
-
transition: max-height
|
|
956
|
+
transition: max-height 225ms ease-out;
|
|
945
957
|
}
|
|
946
958
|
.ilo--callout--collapse:not(.ilo--callout--open) {
|
|
947
959
|
max-height: 78px;
|
|
@@ -1005,7 +1017,7 @@ body {
|
|
|
1005
1017
|
right: -3px;
|
|
1006
1018
|
top: 50%;
|
|
1007
1019
|
transform: translateY(-50%) rotate(0);
|
|
1008
|
-
transition: transform
|
|
1020
|
+
transition: transform 225ms ease-out;
|
|
1009
1021
|
width: 23px;
|
|
1010
1022
|
}
|
|
1011
1023
|
.ilo--callout--footer {
|
|
@@ -1061,7 +1073,7 @@ body {
|
|
|
1061
1073
|
|
|
1062
1074
|
/**
|
|
1063
1075
|
* Do not edit directly
|
|
1064
|
-
* Generated on
|
|
1076
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
1065
1077
|
*/
|
|
1066
1078
|
/**
|
|
1067
1079
|
* TOKENS:
|
|
@@ -1076,27 +1088,27 @@ body {
|
|
|
1076
1088
|
.right-to-left .ilo--card {
|
|
1077
1089
|
text-align: right;
|
|
1078
1090
|
}
|
|
1079
|
-
.ilo--card--action:hover, .ilo--card--action:focus {
|
|
1091
|
+
.ilo--card--action:hover:not(.ilo--card--data), .ilo--card--action:focus:not(.ilo--card--data) {
|
|
1080
1092
|
background: rgb(255, 255, 255);
|
|
1081
1093
|
color: rgb(30, 45, 190);
|
|
1082
1094
|
text-decoration: none;
|
|
1083
1095
|
}
|
|
1084
|
-
.ilo--card--action:hover.ilo--card--dark:not(.ilo--card--detail):not(.ilo--card--data):not(.ilo--card--multilink):not(.ilo--card--factlist), .ilo--card--action:focus.ilo--card--dark:not(.ilo--card--detail):not(.ilo--card--data):not(.ilo--card--multilink):not(.ilo--card--factlist) {
|
|
1096
|
+
.ilo--card--action:hover:not(.ilo--card--data).ilo--card--dark:not(.ilo--card--detail):not(.ilo--card--data):not(.ilo--card--multilink):not(.ilo--card--factlist), .ilo--card--action:focus:not(.ilo--card--data).ilo--card--dark:not(.ilo--card--detail):not(.ilo--card--data):not(.ilo--card--multilink):not(.ilo--card--factlist) {
|
|
1085
1097
|
background: rgb(255, 255, 255);
|
|
1086
1098
|
}
|
|
1087
|
-
.ilo--card--action:hover .ilo--card--eyebrow, .ilo--card--action:focus .ilo--card--eyebrow {
|
|
1099
|
+
.ilo--card--action:hover:not(.ilo--card--data) .ilo--card--eyebrow, .ilo--card--action:focus:not(.ilo--card--data) .ilo--card--eyebrow {
|
|
1088
1100
|
color: rgb(30, 45, 190);
|
|
1089
1101
|
}
|
|
1090
|
-
.ilo--card--action:hover .ilo--card--title, .ilo--card--action:focus .ilo--card--title {
|
|
1102
|
+
.ilo--card--action:hover:not(.ilo--card--data) .ilo--card--title, .ilo--card--action:focus:not(.ilo--card--data) .ilo--card--title {
|
|
1091
1103
|
color: rgb(30, 45, 190);
|
|
1092
1104
|
}
|
|
1093
|
-
.ilo--card--action:hover .ilo--card--intro, .ilo--card--action:focus .ilo--card--intro {
|
|
1105
|
+
.ilo--card--action:hover:not(.ilo--card--data) .ilo--card--intro, .ilo--card--action:focus:not(.ilo--card--data) .ilo--card--intro {
|
|
1094
1106
|
color: rgb(30, 45, 190);
|
|
1095
1107
|
}
|
|
1096
|
-
.ilo--card--action:hover .ilo--card--date, .ilo--card--action:focus .ilo--card--date {
|
|
1108
|
+
.ilo--card--action:hover:not(.ilo--card--data) .ilo--card--date, .ilo--card--action:focus:not(.ilo--card--data) .ilo--card--date {
|
|
1097
1109
|
color: rgb(30, 45, 190);
|
|
1098
1110
|
}
|
|
1099
|
-
.ilo--card--action:hover .ilo--card--eventdate, .ilo--card--action:focus .ilo--card--eventdate {
|
|
1111
|
+
.ilo--card--action:hover:not(.ilo--card--data) .ilo--card--eventdate, .ilo--card--action:focus:not(.ilo--card--data) .ilo--card--eventdate {
|
|
1100
1112
|
color: rgb(30, 45, 190);
|
|
1101
1113
|
}
|
|
1102
1114
|
.ilo--card--link {
|
|
@@ -1131,23 +1143,29 @@ body {
|
|
|
1131
1143
|
.ilo--card--light {
|
|
1132
1144
|
background: rgb(255, 255, 255);
|
|
1133
1145
|
}
|
|
1134
|
-
.ilo--card--dark
|
|
1146
|
+
.ilo--card--dark:not(.ilo--card--detail):not(.ilo--card--data):not(.ilo--card--multilink):not(:hover):not(:focus) {
|
|
1135
1147
|
background: rgb(35, 0, 80);
|
|
1148
|
+
transition: background 150ms ease-out;
|
|
1136
1149
|
}
|
|
1137
|
-
.ilo--card--dark
|
|
1150
|
+
.ilo--card--dark:not(.ilo--card--detail):not(.ilo--card--data):not(.ilo--card--multilink):not(:hover):not(:focus) .ilo--card--eyebrow {
|
|
1138
1151
|
color: rgb(237, 240, 242);
|
|
1152
|
+
transition: color 150ms ease-out;
|
|
1139
1153
|
}
|
|
1140
|
-
.ilo--card--dark
|
|
1154
|
+
.ilo--card--dark:not(.ilo--card--detail):not(.ilo--card--data):not(.ilo--card--multilink):not(:hover):not(:focus) .ilo--card--title {
|
|
1141
1155
|
color: rgb(255, 255, 255);
|
|
1156
|
+
transition: color 150ms ease-out;
|
|
1142
1157
|
}
|
|
1143
|
-
.ilo--card--dark
|
|
1158
|
+
.ilo--card--dark:not(.ilo--card--detail):not(.ilo--card--data):not(.ilo--card--multilink):not(:hover):not(:focus) .ilo--card--intro {
|
|
1144
1159
|
color: rgb(237, 240, 242);
|
|
1160
|
+
transition: color 150ms ease-out;
|
|
1145
1161
|
}
|
|
1146
|
-
.ilo--card--dark
|
|
1162
|
+
.ilo--card--dark:not(.ilo--card--detail):not(.ilo--card--data):not(.ilo--card--multilink):not(:hover):not(:focus) .ilo--card--date {
|
|
1147
1163
|
color: rgb(237, 240, 242);
|
|
1164
|
+
transition: color 150ms ease-out;
|
|
1148
1165
|
}
|
|
1149
|
-
.ilo--card--dark
|
|
1166
|
+
.ilo--card--dark:not(.ilo--card--detail):not(.ilo--card--data):not(.ilo--card--multilink):not(:hover):not(:focus) .ilo--card--eventdate {
|
|
1150
1167
|
color: rgb(237, 240, 242);
|
|
1168
|
+
transition: color 150ms ease-out;
|
|
1151
1169
|
}
|
|
1152
1170
|
.ilo--card--cornercut:not(.ilo--card--multilink):not(.ilo--card--detail):not(.ilo--card--feature) {
|
|
1153
1171
|
margin-top: 2.1436227224rem;
|
|
@@ -2039,6 +2057,8 @@ body {
|
|
|
2039
2057
|
}
|
|
2040
2058
|
}
|
|
2041
2059
|
.ilo--card--feature .ilo--card--wrap {
|
|
2060
|
+
display: flex;
|
|
2061
|
+
flex-direction: column;
|
|
2042
2062
|
width: 100%;
|
|
2043
2063
|
}
|
|
2044
2064
|
.ilo--card--feature picture {
|
|
@@ -2060,6 +2080,9 @@ body {
|
|
|
2060
2080
|
z-index: -1;
|
|
2061
2081
|
}
|
|
2062
2082
|
.ilo--card--feature .ilo--card--content {
|
|
2083
|
+
display: flex;
|
|
2084
|
+
flex: 1 1 auto;
|
|
2085
|
+
flex-direction: column;
|
|
2063
2086
|
padding: 1.2861736334rem 1.2861736334rem 2.1436227224rem;
|
|
2064
2087
|
}
|
|
2065
2088
|
.ilo--card--feature.ilo--card--linklist .ilo--card--content {
|
|
@@ -2081,11 +2104,12 @@ body {
|
|
|
2081
2104
|
}
|
|
2082
2105
|
.ilo--card--feature .ilo--card--date {
|
|
2083
2106
|
margin-bottom: 0;
|
|
2107
|
+
margin-top: auto;
|
|
2084
2108
|
}
|
|
2085
2109
|
|
|
2086
2110
|
/**
|
|
2087
2111
|
* Do not edit directly
|
|
2088
|
-
* Generated on
|
|
2112
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
2089
2113
|
*/
|
|
2090
2114
|
/**
|
|
2091
2115
|
* TOKENS:
|
|
@@ -2108,17 +2132,17 @@ body {
|
|
|
2108
2132
|
}
|
|
2109
2133
|
@media screen and (min-width: 1024px) {
|
|
2110
2134
|
.ilo--cardgroup--two .ilo--card {
|
|
2111
|
-
width: calc(50% -
|
|
2135
|
+
width: calc(50% - 32px);
|
|
2112
2136
|
}
|
|
2113
2137
|
}
|
|
2114
2138
|
@media screen and (min-width: 1024px) {
|
|
2115
2139
|
.ilo--cardgroup--three .ilo--card {
|
|
2116
|
-
width: calc(33.333% -
|
|
2140
|
+
width: calc(33.333% - 32px);
|
|
2117
2141
|
}
|
|
2118
2142
|
}
|
|
2119
2143
|
@media screen and (min-width: 1024px) {
|
|
2120
2144
|
.ilo--cardgroup--four .ilo--card {
|
|
2121
|
-
width: calc(25% -
|
|
2145
|
+
width: calc(25% - 32px);
|
|
2122
2146
|
}
|
|
2123
2147
|
}
|
|
2124
2148
|
.ilo--cardgroup--button-wrap {
|
|
@@ -2130,7 +2154,7 @@ body {
|
|
|
2130
2154
|
|
|
2131
2155
|
/**
|
|
2132
2156
|
* Do not edit directly
|
|
2133
|
-
* Generated on
|
|
2157
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
2134
2158
|
*/
|
|
2135
2159
|
/**
|
|
2136
2160
|
* TOKENS:
|
|
@@ -2213,7 +2237,9 @@ body {
|
|
|
2213
2237
|
margin-bottom: 1.1789924973rem;
|
|
2214
2238
|
}
|
|
2215
2239
|
.ilo--fieldset--input--checkbox .ilo--fieldset--label {
|
|
2216
|
-
|
|
2240
|
+
color: rgb(45, 45, 45);
|
|
2241
|
+
font-family: Noto Sans;
|
|
2242
|
+
font-size: 14.9px;
|
|
2217
2243
|
font-weight: 400;
|
|
2218
2244
|
line-height: 1;
|
|
2219
2245
|
margin-left: 0.4287245445rem;
|
|
@@ -2233,7 +2259,7 @@ body {
|
|
|
2233
2259
|
|
|
2234
2260
|
/**
|
|
2235
2261
|
* Do not edit directly
|
|
2236
|
-
* Generated on
|
|
2262
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
2237
2263
|
*/
|
|
2238
2264
|
/**
|
|
2239
2265
|
* TOKENS:
|
|
@@ -2264,6 +2290,12 @@ body {
|
|
|
2264
2290
|
.ilo--context-menu--item {
|
|
2265
2291
|
padding: 0 0.4287245445rem;
|
|
2266
2292
|
}
|
|
2293
|
+
.ilo--context-menu--item:first-of-type {
|
|
2294
|
+
border-radius: 2px 2px 0 0;
|
|
2295
|
+
}
|
|
2296
|
+
.ilo--context-menu--item:last-of-type {
|
|
2297
|
+
border-radius: 0 0 2px 2px;
|
|
2298
|
+
}
|
|
2267
2299
|
.ilo--context-menu--item:last-of-type a {
|
|
2268
2300
|
border-bottom: none;
|
|
2269
2301
|
}
|
|
@@ -2306,7 +2338,7 @@ body {
|
|
|
2306
2338
|
|
|
2307
2339
|
/**
|
|
2308
2340
|
* Do not edit directly
|
|
2309
|
-
* Generated on
|
|
2341
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
2310
2342
|
*/
|
|
2311
2343
|
/**
|
|
2312
2344
|
* TOKENS:
|
|
@@ -2316,7 +2348,7 @@ body {
|
|
|
2316
2348
|
*/
|
|
2317
2349
|
/**
|
|
2318
2350
|
* Do not edit directly
|
|
2319
|
-
* Generated on
|
|
2351
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
2320
2352
|
*/
|
|
2321
2353
|
/**
|
|
2322
2354
|
* TOKENS:
|
|
@@ -2326,7 +2358,7 @@ body {
|
|
|
2326
2358
|
*/
|
|
2327
2359
|
/**
|
|
2328
2360
|
* Do not edit directly
|
|
2329
|
-
* Generated on
|
|
2361
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
2330
2362
|
*/
|
|
2331
2363
|
/**
|
|
2332
2364
|
* TOKENS:
|
|
@@ -2336,7 +2368,7 @@ body {
|
|
|
2336
2368
|
*/
|
|
2337
2369
|
/**
|
|
2338
2370
|
* Do not edit directly
|
|
2339
|
-
* Generated on
|
|
2371
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
2340
2372
|
*/
|
|
2341
2373
|
/**
|
|
2342
2374
|
* TOKENS:
|
|
@@ -2462,7 +2494,7 @@ body {
|
|
|
2462
2494
|
|
|
2463
2495
|
/**
|
|
2464
2496
|
* Do not edit directly
|
|
2465
|
-
* Generated on
|
|
2497
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
2466
2498
|
*/
|
|
2467
2499
|
/**
|
|
2468
2500
|
* TOKENS:
|
|
@@ -2490,7 +2522,7 @@ body {
|
|
|
2490
2522
|
|
|
2491
2523
|
/**
|
|
2492
2524
|
* Do not edit directly
|
|
2493
|
-
* Generated on
|
|
2525
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
2494
2526
|
*/
|
|
2495
2527
|
/**
|
|
2496
2528
|
* TOKENS:
|
|
@@ -2576,7 +2608,7 @@ body {
|
|
|
2576
2608
|
|
|
2577
2609
|
/**
|
|
2578
2610
|
* Do not edit directly
|
|
2579
|
-
* Generated on
|
|
2611
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
2580
2612
|
*/
|
|
2581
2613
|
/**
|
|
2582
2614
|
* TOKENS:
|
|
@@ -2586,7 +2618,7 @@ body {
|
|
|
2586
2618
|
*/
|
|
2587
2619
|
/**
|
|
2588
2620
|
* Do not edit directly
|
|
2589
|
-
* Generated on
|
|
2621
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
2590
2622
|
*/
|
|
2591
2623
|
/**
|
|
2592
2624
|
* TOKENS:
|
|
@@ -2596,7 +2628,7 @@ body {
|
|
|
2596
2628
|
*/
|
|
2597
2629
|
/**
|
|
2598
2630
|
* Do not edit directly
|
|
2599
|
-
* Generated on
|
|
2631
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
2600
2632
|
*/
|
|
2601
2633
|
/**
|
|
2602
2634
|
* TOKENS:
|
|
@@ -2649,7 +2681,7 @@ body {
|
|
|
2649
2681
|
|
|
2650
2682
|
/**
|
|
2651
2683
|
* Do not edit directly
|
|
2652
|
-
* Generated on
|
|
2684
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
2653
2685
|
*/
|
|
2654
2686
|
/**
|
|
2655
2687
|
* TOKENS:
|
|
@@ -2724,7 +2756,7 @@ body {
|
|
|
2724
2756
|
|
|
2725
2757
|
/**
|
|
2726
2758
|
* Do not edit directly
|
|
2727
|
-
* Generated on
|
|
2759
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
2728
2760
|
*/
|
|
2729
2761
|
/**
|
|
2730
2762
|
* TOKENS:
|
|
@@ -2830,7 +2862,7 @@ body {
|
|
|
2830
2862
|
|
|
2831
2863
|
/**
|
|
2832
2864
|
* Do not edit directly
|
|
2833
|
-
* Generated on
|
|
2865
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
2834
2866
|
*/
|
|
2835
2867
|
/**
|
|
2836
2868
|
* TOKENS:
|
|
@@ -2853,7 +2885,7 @@ body {
|
|
|
2853
2885
|
|
|
2854
2886
|
/**
|
|
2855
2887
|
* Do not edit directly
|
|
2856
|
-
* Generated on
|
|
2888
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
2857
2889
|
*/
|
|
2858
2890
|
/**
|
|
2859
2891
|
* TOKENS:
|
|
@@ -2867,7 +2899,7 @@ body {
|
|
|
2867
2899
|
|
|
2868
2900
|
/**
|
|
2869
2901
|
* Do not edit directly
|
|
2870
|
-
* Generated on
|
|
2902
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
2871
2903
|
*/
|
|
2872
2904
|
/**
|
|
2873
2905
|
* TOKENS:
|
|
@@ -2877,7 +2909,7 @@ body {
|
|
|
2877
2909
|
*/
|
|
2878
2910
|
/**
|
|
2879
2911
|
* Do not edit directly
|
|
2880
|
-
* Generated on
|
|
2912
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
2881
2913
|
*/
|
|
2882
2914
|
/**
|
|
2883
2915
|
* TOKENS:
|
|
@@ -2902,7 +2934,7 @@ body {
|
|
|
2902
2934
|
}
|
|
2903
2935
|
/**
|
|
2904
2936
|
* Do not edit directly
|
|
2905
|
-
* Generated on
|
|
2937
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
2906
2938
|
*/
|
|
2907
2939
|
/**
|
|
2908
2940
|
* TOKENS:
|
|
@@ -2953,6 +2985,7 @@ body {
|
|
|
2953
2985
|
font-size: 16px;
|
|
2954
2986
|
letter-spacing: normal;
|
|
2955
2987
|
line-height: 23.36px;
|
|
2988
|
+
line-height: 1.1575562701rem;
|
|
2956
2989
|
margin-bottom: 0.0895963823rem;
|
|
2957
2990
|
margin-top: 0.732683199rem;
|
|
2958
2991
|
}
|
|
@@ -2960,9 +2993,11 @@ body {
|
|
|
2960
2993
|
color: #bedcfa;
|
|
2961
2994
|
font-family: Overpass;
|
|
2962
2995
|
font-weight: 500;
|
|
2996
|
+
margin-top: 0.5359056806rem;
|
|
2963
2997
|
font-size: 11.94px;
|
|
2964
2998
|
letter-spacing: normal;
|
|
2965
2999
|
line-height: 16.24px;
|
|
3000
|
+
line-height: 0.9946409432rem;
|
|
2966
3001
|
margin-bottom: 1.1927105212rem;
|
|
2967
3002
|
}
|
|
2968
3003
|
.ilo--footer .address {
|
|
@@ -3299,7 +3334,7 @@ body {
|
|
|
3299
3334
|
|
|
3300
3335
|
/**
|
|
3301
3336
|
* Do not edit directly
|
|
3302
|
-
* Generated on
|
|
3337
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
3303
3338
|
*/
|
|
3304
3339
|
/**
|
|
3305
3340
|
* TOKENS:
|
|
@@ -3422,7 +3457,7 @@ body {
|
|
|
3422
3457
|
|
|
3423
3458
|
/**
|
|
3424
3459
|
* Do not edit directly
|
|
3425
|
-
* Generated on
|
|
3460
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
3426
3461
|
*/
|
|
3427
3462
|
/**
|
|
3428
3463
|
* TOKENS:
|
|
@@ -3564,6 +3599,7 @@ body {
|
|
|
3564
3599
|
max-width: 560px;
|
|
3565
3600
|
position: absolute;
|
|
3566
3601
|
top: 0;
|
|
3602
|
+
width: 100%;
|
|
3567
3603
|
}
|
|
3568
3604
|
.right-to-left .ilo--hero .ilo--breadcrumb {
|
|
3569
3605
|
left: auto;
|
|
@@ -3819,7 +3855,7 @@ body {
|
|
|
3819
3855
|
|
|
3820
3856
|
/**
|
|
3821
3857
|
* Do not edit directly
|
|
3822
|
-
* Generated on
|
|
3858
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
3823
3859
|
*/
|
|
3824
3860
|
/**
|
|
3825
3861
|
* TOKENS:
|
|
@@ -3875,7 +3911,7 @@ body {
|
|
|
3875
3911
|
|
|
3876
3912
|
/**
|
|
3877
3913
|
* Do not edit directly
|
|
3878
|
-
* Generated on
|
|
3914
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
3879
3915
|
*/
|
|
3880
3916
|
/**
|
|
3881
3917
|
* TOKENS:
|
|
@@ -4017,7 +4053,7 @@ body {
|
|
|
4017
4053
|
|
|
4018
4054
|
/**
|
|
4019
4055
|
* Do not edit directly
|
|
4020
|
-
* Generated on
|
|
4056
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
4021
4057
|
*/
|
|
4022
4058
|
/**
|
|
4023
4059
|
* TOKENS:
|
|
@@ -4027,7 +4063,7 @@ body {
|
|
|
4027
4063
|
*/
|
|
4028
4064
|
/**
|
|
4029
4065
|
* Do not edit directly
|
|
4030
|
-
* Generated on
|
|
4066
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
4031
4067
|
*/
|
|
4032
4068
|
/**
|
|
4033
4069
|
* TOKENS:
|
|
@@ -4052,7 +4088,7 @@ body {
|
|
|
4052
4088
|
}
|
|
4053
4089
|
/**
|
|
4054
4090
|
* Do not edit directly
|
|
4055
|
-
* Generated on
|
|
4091
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
4056
4092
|
*/
|
|
4057
4093
|
/**
|
|
4058
4094
|
* TOKENS:
|
|
@@ -4204,9 +4240,13 @@ body {
|
|
|
4204
4240
|
text-align: right;
|
|
4205
4241
|
}
|
|
4206
4242
|
|
|
4243
|
+
.wingsuit-body .ilo--link-list--dark {
|
|
4244
|
+
background-color: rgb(35, 0, 80);
|
|
4245
|
+
}
|
|
4246
|
+
|
|
4207
4247
|
/**
|
|
4208
4248
|
* Do not edit directly
|
|
4209
|
-
* Generated on
|
|
4249
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
4210
4250
|
*/
|
|
4211
4251
|
/**
|
|
4212
4252
|
* TOKENS:
|
|
@@ -4219,7 +4259,23 @@ body {
|
|
|
4219
4259
|
}
|
|
4220
4260
|
.ilo--list--unordered {
|
|
4221
4261
|
list-style: initial;
|
|
4222
|
-
list-style-type:
|
|
4262
|
+
list-style-type: none;
|
|
4263
|
+
}
|
|
4264
|
+
.ilo--list--unordered li {
|
|
4265
|
+
margin-bottom: 1.7148981779rem;
|
|
4266
|
+
margin-left: 0.6430868167rem;
|
|
4267
|
+
padding-left: 0.6430868167rem;
|
|
4268
|
+
position: relative;
|
|
4269
|
+
}
|
|
4270
|
+
.ilo--list--unordered li::before {
|
|
4271
|
+
content: "";
|
|
4272
|
+
display: inline-block;
|
|
4273
|
+
height: 0.7502679528rem;
|
|
4274
|
+
left: -0.6430868167rem;
|
|
4275
|
+
position: absolute;
|
|
4276
|
+
top: 6px;
|
|
4277
|
+
width: 0.6430868167rem;
|
|
4278
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 12.4'%3e%3cpath fill='rgb(184, 196, 204)' d='M10.8%2c6.4L0%2c0.4v12L10.8%2c6.4z'/%3e%3c/svg%3e");
|
|
4223
4279
|
}
|
|
4224
4280
|
.ilo--list--unstyled {
|
|
4225
4281
|
list-style: none;
|
|
@@ -4253,11 +4309,11 @@ body {
|
|
|
4253
4309
|
margin-bottom: 1.5763397642rem;
|
|
4254
4310
|
}
|
|
4255
4311
|
.ilo--list__item {
|
|
4256
|
-
font-size:
|
|
4312
|
+
font-size: 16px;
|
|
4257
4313
|
letter-spacing: normal;
|
|
4258
|
-
line-height:
|
|
4314
|
+
line-height: 23.36px;
|
|
4259
4315
|
font-family: Noto Sans;
|
|
4260
|
-
margin-bottom: 1.
|
|
4316
|
+
margin-bottom: 1.052683199rem;
|
|
4261
4317
|
margin-left: 1.2861736334rem;
|
|
4262
4318
|
padding-left: 0.1607717042rem;
|
|
4263
4319
|
}
|
|
@@ -4266,10 +4322,18 @@ body {
|
|
|
4266
4322
|
font-weight: 700;
|
|
4267
4323
|
letter-spacing: -0.02em;
|
|
4268
4324
|
}
|
|
4325
|
+
@media screen and (min-width: 610px) {
|
|
4326
|
+
.ilo--list__item {
|
|
4327
|
+
font-size: 18.66px;
|
|
4328
|
+
letter-spacing: normal;
|
|
4329
|
+
line-height: 27.24px;
|
|
4330
|
+
margin-bottom: 1.0110920672rem;
|
|
4331
|
+
}
|
|
4332
|
+
}
|
|
4269
4333
|
|
|
4270
4334
|
/**
|
|
4271
4335
|
* Do not edit directly
|
|
4272
|
-
* Generated on
|
|
4336
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
4273
4337
|
*/
|
|
4274
4338
|
/**
|
|
4275
4339
|
* TOKENS:
|
|
@@ -4279,7 +4343,7 @@ body {
|
|
|
4279
4343
|
*/
|
|
4280
4344
|
/**
|
|
4281
4345
|
* Do not edit directly
|
|
4282
|
-
* Generated on
|
|
4346
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
4283
4347
|
*/
|
|
4284
4348
|
/**
|
|
4285
4349
|
* TOKENS:
|
|
@@ -4289,7 +4353,7 @@ body {
|
|
|
4289
4353
|
*/
|
|
4290
4354
|
/**
|
|
4291
4355
|
* Do not edit directly
|
|
4292
|
-
* Generated on
|
|
4356
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
4293
4357
|
*/
|
|
4294
4358
|
/**
|
|
4295
4359
|
* TOKENS:
|
|
@@ -4397,7 +4461,7 @@ body {
|
|
|
4397
4461
|
|
|
4398
4462
|
/**
|
|
4399
4463
|
* Do not edit directly
|
|
4400
|
-
* Generated on
|
|
4464
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
4401
4465
|
*/
|
|
4402
4466
|
/**
|
|
4403
4467
|
* TOKENS:
|
|
@@ -4407,7 +4471,7 @@ body {
|
|
|
4407
4471
|
*/
|
|
4408
4472
|
/**
|
|
4409
4473
|
* Do not edit directly
|
|
4410
|
-
* Generated on
|
|
4474
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
4411
4475
|
*/
|
|
4412
4476
|
/**
|
|
4413
4477
|
* TOKENS:
|
|
@@ -4417,7 +4481,7 @@ body {
|
|
|
4417
4481
|
*/
|
|
4418
4482
|
/**
|
|
4419
4483
|
* Do not edit directly
|
|
4420
|
-
* Generated on
|
|
4484
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
4421
4485
|
*/
|
|
4422
4486
|
/**
|
|
4423
4487
|
* TOKENS:
|
|
@@ -4514,7 +4578,7 @@ body {
|
|
|
4514
4578
|
|
|
4515
4579
|
/**
|
|
4516
4580
|
* Do not edit directly
|
|
4517
|
-
* Generated on
|
|
4581
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
4518
4582
|
*/
|
|
4519
4583
|
/**
|
|
4520
4584
|
* TOKENS:
|
|
@@ -5257,7 +5321,7 @@ body {
|
|
|
5257
5321
|
|
|
5258
5322
|
/**
|
|
5259
5323
|
* Do not edit directly
|
|
5260
|
-
* Generated on
|
|
5324
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
5261
5325
|
*/
|
|
5262
5326
|
/**
|
|
5263
5327
|
* TOKENS:
|
|
@@ -5267,7 +5331,7 @@ body {
|
|
|
5267
5331
|
*/
|
|
5268
5332
|
/**
|
|
5269
5333
|
* Do not edit directly
|
|
5270
|
-
* Generated on
|
|
5334
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
5271
5335
|
*/
|
|
5272
5336
|
/**
|
|
5273
5337
|
* TOKENS:
|
|
@@ -5277,7 +5341,7 @@ body {
|
|
|
5277
5341
|
*/
|
|
5278
5342
|
/**
|
|
5279
5343
|
* Do not edit directly
|
|
5280
|
-
* Generated on
|
|
5344
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
5281
5345
|
*/
|
|
5282
5346
|
/**
|
|
5283
5347
|
* TOKENS:
|
|
@@ -5331,7 +5395,7 @@ body {
|
|
|
5331
5395
|
width: 100%;
|
|
5332
5396
|
}
|
|
5333
5397
|
.ilo--notification--inline .ilo--notification--content {
|
|
5334
|
-
align-items:
|
|
5398
|
+
align-items: start;
|
|
5335
5399
|
display: flex;
|
|
5336
5400
|
justify-items: space-between;
|
|
5337
5401
|
padding: 0.7502679528rem 1.2861736334rem;
|
|
@@ -5469,7 +5533,7 @@ body {
|
|
|
5469
5533
|
|
|
5470
5534
|
/**
|
|
5471
5535
|
* Do not edit directly
|
|
5472
|
-
* Generated on
|
|
5536
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
5473
5537
|
*/
|
|
5474
5538
|
/**
|
|
5475
5539
|
* TOKENS:
|
|
@@ -5604,7 +5668,7 @@ body {
|
|
|
5604
5668
|
|
|
5605
5669
|
/**
|
|
5606
5670
|
* Do not edit directly
|
|
5607
|
-
* Generated on
|
|
5671
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
5608
5672
|
*/
|
|
5609
5673
|
/**
|
|
5610
5674
|
* TOKENS:
|
|
@@ -5614,7 +5678,7 @@ body {
|
|
|
5614
5678
|
*/
|
|
5615
5679
|
/**
|
|
5616
5680
|
* Do not edit directly
|
|
5617
|
-
* Generated on
|
|
5681
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
5618
5682
|
*/
|
|
5619
5683
|
/**
|
|
5620
5684
|
* TOKENS:
|
|
@@ -5639,7 +5703,7 @@ body {
|
|
|
5639
5703
|
}
|
|
5640
5704
|
/**
|
|
5641
5705
|
* Do not edit directly
|
|
5642
|
-
* Generated on
|
|
5706
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
5643
5707
|
*/
|
|
5644
5708
|
/**
|
|
5645
5709
|
* TOKENS:
|
|
@@ -5784,7 +5848,7 @@ body {
|
|
|
5784
5848
|
|
|
5785
5849
|
/**
|
|
5786
5850
|
* Do not edit directly
|
|
5787
|
-
* Generated on
|
|
5851
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
5788
5852
|
*/
|
|
5789
5853
|
/**
|
|
5790
5854
|
* TOKENS:
|
|
@@ -5863,8 +5927,10 @@ body {
|
|
|
5863
5927
|
margin-bottom: 1.1789924973rem;
|
|
5864
5928
|
}
|
|
5865
5929
|
.ilo--fieldset--input--radio .ilo--fieldset--label {
|
|
5930
|
+
color: rgb(45, 45, 45);
|
|
5866
5931
|
font-family: Noto Sans;
|
|
5867
5932
|
font-weight: 400;
|
|
5933
|
+
font-size: 14.9px;
|
|
5868
5934
|
margin-bottom: 0;
|
|
5869
5935
|
margin-left: 0.4287245445rem;
|
|
5870
5936
|
margin-top: 2px;
|
|
@@ -5889,7 +5955,7 @@ body {
|
|
|
5889
5955
|
|
|
5890
5956
|
/**
|
|
5891
5957
|
* Do not edit directly
|
|
5892
|
-
* Generated on
|
|
5958
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
5893
5959
|
*/
|
|
5894
5960
|
/**
|
|
5895
5961
|
* TOKENS:
|
|
@@ -5899,7 +5965,7 @@ body {
|
|
|
5899
5965
|
*/
|
|
5900
5966
|
/**
|
|
5901
5967
|
* Do not edit directly
|
|
5902
|
-
* Generated on
|
|
5968
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
5903
5969
|
*/
|
|
5904
5970
|
/**
|
|
5905
5971
|
* TOKENS:
|
|
@@ -5924,7 +5990,7 @@ body {
|
|
|
5924
5990
|
}
|
|
5925
5991
|
/**
|
|
5926
5992
|
* Do not edit directly
|
|
5927
|
-
* Generated on
|
|
5993
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
5928
5994
|
*/
|
|
5929
5995
|
/**
|
|
5930
5996
|
* TOKENS:
|
|
@@ -5985,7 +6051,7 @@ body {
|
|
|
5985
6051
|
|
|
5986
6052
|
/**
|
|
5987
6053
|
* Do not edit directly
|
|
5988
|
-
* Generated on
|
|
6054
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
5989
6055
|
*/
|
|
5990
6056
|
/**
|
|
5991
6057
|
* TOKENS:
|
|
@@ -6008,8 +6074,6 @@ body {
|
|
|
6008
6074
|
font-weight: inherit;
|
|
6009
6075
|
line-height: inherit;
|
|
6010
6076
|
text-decoration: none;
|
|
6011
|
-
border: none;
|
|
6012
|
-
text-decoration: underline;
|
|
6013
6077
|
}
|
|
6014
6078
|
.ilo--richtext a:visited {
|
|
6015
6079
|
background: rgba(0, 0, 0, 0);
|
|
@@ -6091,26 +6155,6 @@ body {
|
|
|
6091
6155
|
color: rgb(35, 0, 80);
|
|
6092
6156
|
outline: none;
|
|
6093
6157
|
}
|
|
6094
|
-
.ilo--richtext a:visited {
|
|
6095
|
-
border: none;
|
|
6096
|
-
text-decoration: underline;
|
|
6097
|
-
text-decoration-color: rgb(150, 10, 85);
|
|
6098
|
-
}
|
|
6099
|
-
.ilo--richtext a:hover {
|
|
6100
|
-
border: none;
|
|
6101
|
-
text-decoration: underline;
|
|
6102
|
-
text-decoration-color: rgb(30, 45, 190);
|
|
6103
|
-
}
|
|
6104
|
-
.ilo--richtext a:active {
|
|
6105
|
-
border: none;
|
|
6106
|
-
text-decoration: underline;
|
|
6107
|
-
text-decoration-color: rgb(35, 0, 80);
|
|
6108
|
-
}
|
|
6109
|
-
.ilo--richtext a:focus {
|
|
6110
|
-
border: none;
|
|
6111
|
-
text-decoration: underline;
|
|
6112
|
-
text-decoration-color: rgb(35, 0, 80);
|
|
6113
|
-
}
|
|
6114
6158
|
.ilo--richtext img {
|
|
6115
6159
|
width: 100%;
|
|
6116
6160
|
}
|
|
@@ -6224,7 +6268,7 @@ body {
|
|
|
6224
6268
|
position: absolute;
|
|
6225
6269
|
top: 6px;
|
|
6226
6270
|
width: 0.6430868167rem;
|
|
6227
|
-
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 12.4'%3e%3cpath fill='rgb(
|
|
6271
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 12.4'%3e%3cpath fill='rgb(184, 196, 204)' d='M10.8%2c6.4L0%2c0.4v12L10.8%2c6.4z'/%3e%3c/svg%3e");
|
|
6228
6272
|
}
|
|
6229
6273
|
.ilo--richtext blockquote {
|
|
6230
6274
|
background-color: rgb(237, 240, 242);
|
|
@@ -6232,6 +6276,7 @@ body {
|
|
|
6232
6276
|
background-repeat: no-repeat;
|
|
6233
6277
|
background-size: 3.8585209003rem 2.1436227224rem;
|
|
6234
6278
|
display: block;
|
|
6279
|
+
font-family: Overpass;
|
|
6235
6280
|
margin: 1.2861736334rem 0 2.1436227224rem 0;
|
|
6236
6281
|
padding: 2.8938906752rem 0 1.822079314rem 1.7148981779rem;
|
|
6237
6282
|
position: relative;
|
|
@@ -6421,7 +6466,7 @@ body {
|
|
|
6421
6466
|
|
|
6422
6467
|
/**
|
|
6423
6468
|
* Do not edit directly
|
|
6424
|
-
* Generated on
|
|
6469
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
6425
6470
|
*/
|
|
6426
6471
|
/**
|
|
6427
6472
|
* TOKENS:
|
|
@@ -6472,7 +6517,7 @@ body {
|
|
|
6472
6517
|
|
|
6473
6518
|
/**
|
|
6474
6519
|
* Do not edit directly
|
|
6475
|
-
* Generated on
|
|
6520
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
6476
6521
|
*/
|
|
6477
6522
|
/**
|
|
6478
6523
|
* TOKENS:
|
|
@@ -6629,7 +6674,7 @@ body {
|
|
|
6629
6674
|
|
|
6630
6675
|
/**
|
|
6631
6676
|
* Do not edit directly
|
|
6632
|
-
* Generated on
|
|
6677
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
6633
6678
|
*/
|
|
6634
6679
|
/**
|
|
6635
6680
|
* TOKENS:
|
|
@@ -6644,6 +6689,7 @@ body {
|
|
|
6644
6689
|
}
|
|
6645
6690
|
.ilo--table--header {
|
|
6646
6691
|
background-color: rgb(255, 255, 255);
|
|
6692
|
+
border-bottom: 0.1071811361rem solid rgb(237, 240, 242);
|
|
6647
6693
|
padding: 19px 8px 18px 8px;
|
|
6648
6694
|
}
|
|
6649
6695
|
.ilo--table--wrapper {
|
|
@@ -6653,6 +6699,7 @@ body {
|
|
|
6653
6699
|
width: 100%;
|
|
6654
6700
|
}
|
|
6655
6701
|
.ilo--table--content {
|
|
6702
|
+
border-collapse: initial;
|
|
6656
6703
|
width: 100%;
|
|
6657
6704
|
}
|
|
6658
6705
|
.ilo--table--head {
|
|
@@ -6668,7 +6715,6 @@ body {
|
|
|
6668
6715
|
.ilo--table--head--cell {
|
|
6669
6716
|
background-color: rgb(255, 255, 255);
|
|
6670
6717
|
border-left: 0.0535905681rem solid rgb(237, 240, 242);
|
|
6671
|
-
border-top: 0.1071811361rem solid rgb(237, 240, 242);
|
|
6672
6718
|
border-bottom: 0.1071811361rem solid rgb(237, 240, 242);
|
|
6673
6719
|
font-family: Overpass;
|
|
6674
6720
|
font-weight: 700;
|
|
@@ -6746,7 +6792,7 @@ body {
|
|
|
6746
6792
|
text-align: right;
|
|
6747
6793
|
}
|
|
6748
6794
|
.ilo--table--body--cell:hover {
|
|
6749
|
-
background-color: rgb(
|
|
6795
|
+
background-color: rgb(235, 245, 253);
|
|
6750
6796
|
border-bottom: 2px solid rgb(30, 45, 190);
|
|
6751
6797
|
color: rgb(30, 45, 190);
|
|
6752
6798
|
}
|
|
@@ -6979,7 +7025,7 @@ body {
|
|
|
6979
7025
|
|
|
6980
7026
|
/**
|
|
6981
7027
|
* Do not edit directly
|
|
6982
|
-
* Generated on
|
|
7028
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
6983
7029
|
*/
|
|
6984
7030
|
/**
|
|
6985
7031
|
* TOKENS:
|
|
@@ -7165,7 +7211,7 @@ body {
|
|
|
7165
7211
|
|
|
7166
7212
|
/**
|
|
7167
7213
|
* Do not edit directly
|
|
7168
|
-
* Generated on
|
|
7214
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
7169
7215
|
*/
|
|
7170
7216
|
/**
|
|
7171
7217
|
* TOKENS:
|
|
@@ -7223,7 +7269,7 @@ body {
|
|
|
7223
7269
|
|
|
7224
7270
|
/**
|
|
7225
7271
|
* Do not edit directly
|
|
7226
|
-
* Generated on
|
|
7272
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
7227
7273
|
*/
|
|
7228
7274
|
/**
|
|
7229
7275
|
* TOKENS:
|
|
@@ -7251,10 +7297,8 @@ body {
|
|
|
7251
7297
|
color: rgb(109, 109, 109);
|
|
7252
7298
|
display: inline-block;
|
|
7253
7299
|
font-family: Overpass;
|
|
7254
|
-
font-size: inherit;
|
|
7255
7300
|
font-weight: 500;
|
|
7256
|
-
|
|
7257
|
-
padding: 0.5359056806rem 0.6430868167rem 0.4287245445rem 0.6430868167rem;
|
|
7301
|
+
padding: 0.3751339764rem 0.6430868167rem 0.2679528403rem 0.6430868167rem;
|
|
7258
7302
|
text-decoration: none;
|
|
7259
7303
|
transition-property: color, background-color, border-color;
|
|
7260
7304
|
transition-duration: 150ms;
|
|
@@ -7318,12 +7362,16 @@ body {
|
|
|
7318
7362
|
}
|
|
7319
7363
|
.ilo--tag--button.icon__position--right .ilo--icon {
|
|
7320
7364
|
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath fill='rgb(35, 0, 80)' d='M16.9497 15.5356L13.4142 12L16.9497 8.46451L15.5355 7.05029L12 10.5858L8.46446 7.05029L7.05025 8.46451L10.5858 12L7.05025 15.5356L8.46446 16.9498L12 13.4143L15.5355 16.9498L16.9497 15.5356Z'/%3e%3c/svg%3e");
|
|
7365
|
+
background-position: center;
|
|
7366
|
+
background-repeat: no-repeat;
|
|
7367
|
+
background-size: contain;
|
|
7321
7368
|
height: 100%;
|
|
7322
|
-
max-height:
|
|
7323
|
-
max-width:
|
|
7369
|
+
max-height: 24px;
|
|
7370
|
+
max-width: 24px;
|
|
7324
7371
|
position: absolute;
|
|
7325
|
-
right:
|
|
7326
|
-
top:
|
|
7372
|
+
right: 10px;
|
|
7373
|
+
top: 50%;
|
|
7374
|
+
transform: translateY(-50%);
|
|
7327
7375
|
width: 100%;
|
|
7328
7376
|
}
|
|
7329
7377
|
.ilo--tag--button:hover {
|
|
@@ -7395,7 +7443,7 @@ body {
|
|
|
7395
7443
|
|
|
7396
7444
|
/**
|
|
7397
7445
|
* Do not edit directly
|
|
7398
|
-
* Generated on
|
|
7446
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
7399
7447
|
*/
|
|
7400
7448
|
/**
|
|
7401
7449
|
* TOKENS:
|
|
@@ -7411,17 +7459,19 @@ body {
|
|
|
7411
7459
|
border: none;
|
|
7412
7460
|
border-radius: 0.1071811361rem;
|
|
7413
7461
|
display: inline-block;
|
|
7414
|
-
filter: drop-shadow(
|
|
7462
|
+
filter: drop-shadow(0px 0.8px 1.6px rgba(30, 45, 190, 0.038)) drop-shadow(0px 4px 8px rgba(30, 45, 190, 0.054)) drop-shadow(0px 10px 20px rgba(30, 45, 190, 0.08)) drop-shadow(0px -4px 16px rgba(30, 45, 190, 0.054));
|
|
7415
7463
|
color: rgb(45, 45, 45);
|
|
7416
7464
|
opacity: 0;
|
|
7417
7465
|
padding: 0.4287245445rem 0.6430868167rem;
|
|
7418
7466
|
position: absolute;
|
|
7419
|
-
transition: opacity
|
|
7467
|
+
transition: opacity 150ms ease-out;
|
|
7420
7468
|
visibility: hidden;
|
|
7421
7469
|
width: auto;
|
|
7422
7470
|
}
|
|
7423
|
-
.ilo--tooltip--
|
|
7471
|
+
.ilo--tooltip--fade {
|
|
7424
7472
|
opacity: 1;
|
|
7473
|
+
}
|
|
7474
|
+
.ilo--tooltip--visible {
|
|
7425
7475
|
visibility: visible;
|
|
7426
7476
|
z-index: 2;
|
|
7427
7477
|
}
|
|
@@ -7554,7 +7604,7 @@ body {
|
|
|
7554
7604
|
|
|
7555
7605
|
/**
|
|
7556
7606
|
* Do not edit directly
|
|
7557
|
-
* Generated on
|
|
7607
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
7558
7608
|
*/
|
|
7559
7609
|
/**
|
|
7560
7610
|
* TOKENS:
|
|
@@ -7590,6 +7640,7 @@ body {
|
|
|
7590
7640
|
.ilo--video--element,
|
|
7591
7641
|
.ilo--video .vjs-tech {
|
|
7592
7642
|
height: auto;
|
|
7643
|
+
object-fit: cover;
|
|
7593
7644
|
width: 100%;
|
|
7594
7645
|
}
|
|
7595
7646
|
.ilo--video--element:focus,
|
|
@@ -7698,17 +7749,22 @@ body {
|
|
|
7698
7749
|
-moz-appearance: none;
|
|
7699
7750
|
}
|
|
7700
7751
|
@media screen and (min-width: 1024px) {
|
|
7701
|
-
.
|
|
7702
|
-
.
|
|
7703
|
-
.
|
|
7704
|
-
.
|
|
7705
|
-
.notplayed .ilo--video .vjs-control-bar--pause,
|
|
7706
|
-
.notplayed .ilo--video .vjs-control-bar .vjs-play-control,
|
|
7707
|
-
.notplayed .ilo--video .vjs-control-bar .vjs-big-play-button {
|
|
7752
|
+
.ilo--video--controls.notplayed .vjs-play-control,
|
|
7753
|
+
.ilo--video--controls.notplayed .vjs-big-play-button,
|
|
7754
|
+
.ilo--video .vjs-control-bar.notplayed .vjs-play-control,
|
|
7755
|
+
.ilo--video .vjs-control-bar.notplayed .vjs-big-play-button {
|
|
7708
7756
|
order: 1;
|
|
7709
7757
|
height: 2.5723472669rem;
|
|
7710
7758
|
width: 2.5723472669rem;
|
|
7711
7759
|
}
|
|
7760
|
+
.ilo--video--controls.notplayed .ilo--video--controls--play,
|
|
7761
|
+
.ilo--video--controls.notplayed .ilo--video--controls--pause,
|
|
7762
|
+
.ilo--video .vjs-control-bar.notplayed .ilo--video--controls--play,
|
|
7763
|
+
.ilo--video .vjs-control-bar.notplayed .ilo--video--controls--pause {
|
|
7764
|
+
order: 1;
|
|
7765
|
+
height: 4.2872454448rem;
|
|
7766
|
+
width: 4.2872454448rem;
|
|
7767
|
+
}
|
|
7712
7768
|
}
|
|
7713
7769
|
.ilo--video--controls--play,
|
|
7714
7770
|
.ilo--video--controls .vjs-play-control:not(.vjs-playing),
|
|
@@ -7721,29 +7777,44 @@ body {
|
|
|
7721
7777
|
background-size: 48px 48px;
|
|
7722
7778
|
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath fill='rgb(237, 240, 242)' d='M22 11.9999L4 2V22L22 11.9999Z'/%3e%3c/svg%3e");
|
|
7723
7779
|
}
|
|
7724
|
-
.ilo--video--controls--play:hover,
|
|
7780
|
+
.ilo--video--controls--play:hover, .ilo--video--controls--play:focus,
|
|
7725
7781
|
.ilo--video--controls .vjs-play-control:not(.vjs-playing):hover,
|
|
7782
|
+
.ilo--video--controls .vjs-play-control:not(.vjs-playing):focus,
|
|
7726
7783
|
.ilo--video--controls .vjs-big-play-button:hover,
|
|
7784
|
+
.ilo--video--controls .vjs-big-play-button:focus,
|
|
7727
7785
|
.ilo--video .vjs-control-bar--play:hover,
|
|
7786
|
+
.ilo--video .vjs-control-bar--play:focus,
|
|
7728
7787
|
.ilo--video .vjs-control-bar .vjs-play-control:not(.vjs-playing):hover,
|
|
7729
|
-
.ilo--video .vjs-control-bar .vjs-
|
|
7788
|
+
.ilo--video .vjs-control-bar .vjs-play-control:not(.vjs-playing):focus,
|
|
7789
|
+
.ilo--video .vjs-control-bar .vjs-big-play-button:hover,
|
|
7790
|
+
.ilo--video .vjs-control-bar .vjs-big-play-button:focus {
|
|
7730
7791
|
background-color: rgb(235, 245, 253);
|
|
7731
7792
|
background-position: center center;
|
|
7732
7793
|
background-repeat: no-repeat;
|
|
7733
7794
|
background-size: 48px 48px;
|
|
7734
7795
|
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath fill='rgb(30, 45, 190)' d='M22 11.9999L4 2V22L22 11.9999Z'/%3e%3c/svg%3e");
|
|
7735
7796
|
}
|
|
7736
|
-
.ilo--video--controls--play:hover ~ .vjs-duration, .ilo--video--controls--play:hover ~ .ilo--video--controls--duration,
|
|
7797
|
+
.ilo--video--controls--play:hover ~ .vjs-duration, .ilo--video--controls--play:hover ~ .ilo--video--controls--duration, .ilo--video--controls--play:focus ~ .vjs-duration, .ilo--video--controls--play:focus ~ .ilo--video--controls--duration,
|
|
7737
7798
|
.ilo--video--controls .vjs-play-control:not(.vjs-playing):hover ~ .vjs-duration,
|
|
7738
7799
|
.ilo--video--controls .vjs-play-control:not(.vjs-playing):hover ~ .ilo--video--controls--duration,
|
|
7800
|
+
.ilo--video--controls .vjs-play-control:not(.vjs-playing):focus ~ .vjs-duration,
|
|
7801
|
+
.ilo--video--controls .vjs-play-control:not(.vjs-playing):focus ~ .ilo--video--controls--duration,
|
|
7739
7802
|
.ilo--video--controls .vjs-big-play-button:hover ~ .vjs-duration,
|
|
7740
7803
|
.ilo--video--controls .vjs-big-play-button:hover ~ .ilo--video--controls--duration,
|
|
7804
|
+
.ilo--video--controls .vjs-big-play-button:focus ~ .vjs-duration,
|
|
7805
|
+
.ilo--video--controls .vjs-big-play-button:focus ~ .ilo--video--controls--duration,
|
|
7741
7806
|
.ilo--video .vjs-control-bar--play:hover ~ .vjs-duration,
|
|
7742
7807
|
.ilo--video .vjs-control-bar--play:hover ~ .ilo--video--controls--duration,
|
|
7808
|
+
.ilo--video .vjs-control-bar--play:focus ~ .vjs-duration,
|
|
7809
|
+
.ilo--video .vjs-control-bar--play:focus ~ .ilo--video--controls--duration,
|
|
7743
7810
|
.ilo--video .vjs-control-bar .vjs-play-control:not(.vjs-playing):hover ~ .vjs-duration,
|
|
7744
7811
|
.ilo--video .vjs-control-bar .vjs-play-control:not(.vjs-playing):hover ~ .ilo--video--controls--duration,
|
|
7812
|
+
.ilo--video .vjs-control-bar .vjs-play-control:not(.vjs-playing):focus ~ .vjs-duration,
|
|
7813
|
+
.ilo--video .vjs-control-bar .vjs-play-control:not(.vjs-playing):focus ~ .ilo--video--controls--duration,
|
|
7745
7814
|
.ilo--video .vjs-control-bar .vjs-big-play-button:hover ~ .vjs-duration,
|
|
7746
|
-
.ilo--video .vjs-control-bar .vjs-big-play-button:hover ~ .ilo--video--controls--duration
|
|
7815
|
+
.ilo--video .vjs-control-bar .vjs-big-play-button:hover ~ .ilo--video--controls--duration,
|
|
7816
|
+
.ilo--video .vjs-control-bar .vjs-big-play-button:focus ~ .vjs-duration,
|
|
7817
|
+
.ilo--video .vjs-control-bar .vjs-big-play-button:focus ~ .ilo--video--controls--duration {
|
|
7747
7818
|
background-color: rgb(235, 245, 253);
|
|
7748
7819
|
color: rgb(30, 45, 190);
|
|
7749
7820
|
}
|
|
@@ -7758,18 +7829,27 @@ body {
|
|
|
7758
7829
|
background-size: 24px 24px;
|
|
7759
7830
|
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath fill='rgb(237, 240, 242)' d='M22 11.9999L4 2V22L22 11.9999Z'/%3e%3c/svg%3e");
|
|
7760
7831
|
}
|
|
7761
|
-
.ilo--video--controls--play.vjs-paused:hover,
|
|
7832
|
+
.ilo--video--controls--play.vjs-paused:hover, .ilo--video--controls--play.vjs-paused:focus,
|
|
7762
7833
|
.ilo--video--controls .vjs-play-control:not(.vjs-playing).vjs-paused:hover,
|
|
7834
|
+
.ilo--video--controls .vjs-play-control:not(.vjs-playing).vjs-paused:focus,
|
|
7763
7835
|
.ilo--video--controls .vjs-big-play-button.vjs-paused:hover,
|
|
7836
|
+
.ilo--video--controls .vjs-big-play-button.vjs-paused:focus,
|
|
7764
7837
|
.ilo--video .vjs-control-bar--play.vjs-paused:hover,
|
|
7838
|
+
.ilo--video .vjs-control-bar--play.vjs-paused:focus,
|
|
7765
7839
|
.ilo--video .vjs-control-bar .vjs-play-control:not(.vjs-playing).vjs-paused:hover,
|
|
7766
|
-
.ilo--video .vjs-control-bar .vjs-
|
|
7840
|
+
.ilo--video .vjs-control-bar .vjs-play-control:not(.vjs-playing).vjs-paused:focus,
|
|
7841
|
+
.ilo--video .vjs-control-bar .vjs-big-play-button.vjs-paused:hover,
|
|
7842
|
+
.ilo--video .vjs-control-bar .vjs-big-play-button.vjs-paused:focus {
|
|
7767
7843
|
background-color: rgb(235, 245, 253);
|
|
7768
7844
|
background-position: center center;
|
|
7769
7845
|
background-repeat: no-repeat;
|
|
7770
7846
|
background-size: 24px 24px;
|
|
7771
7847
|
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath fill='rgb(30, 45, 190)' d='M22 11.9999L4 2V22L22 11.9999Z'/%3e%3c/svg%3e");
|
|
7772
7848
|
}
|
|
7849
|
+
.ilo--video--controls:not(.notplayed) .ilo--video--controls--play,
|
|
7850
|
+
.ilo--video .vjs-control-bar:not(.notplayed) .ilo--video--controls--play {
|
|
7851
|
+
background-size: 24px 24px;
|
|
7852
|
+
}
|
|
7773
7853
|
.ilo--video--controls--pause,
|
|
7774
7854
|
.ilo--video--controls .vjs-playing,
|
|
7775
7855
|
.ilo--video .vjs-control-bar--pause,
|
|
@@ -7779,10 +7859,13 @@ body {
|
|
|
7779
7859
|
background-size: 24px 24px;
|
|
7780
7860
|
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath fill='rgb(237, 240, 242)' d='M3 2H9V22H3V2zM15 2H21V22H15V2z'/%3e%3c/svg%3e");
|
|
7781
7861
|
}
|
|
7782
|
-
.ilo--video--controls--pause:hover,
|
|
7862
|
+
.ilo--video--controls--pause:hover, .ilo--video--controls--pause:focus,
|
|
7783
7863
|
.ilo--video--controls .vjs-playing:hover,
|
|
7864
|
+
.ilo--video--controls .vjs-playing:focus,
|
|
7784
7865
|
.ilo--video .vjs-control-bar--pause:hover,
|
|
7785
|
-
.ilo--video .vjs-control-bar
|
|
7866
|
+
.ilo--video .vjs-control-bar--pause:focus,
|
|
7867
|
+
.ilo--video .vjs-control-bar .vjs-playing:hover,
|
|
7868
|
+
.ilo--video .vjs-control-bar .vjs-playing:focus {
|
|
7786
7869
|
background-color: rgb(235, 245, 253);
|
|
7787
7870
|
background-position: center center;
|
|
7788
7871
|
background-repeat: no-repeat;
|
|
@@ -7807,10 +7890,13 @@ body {
|
|
|
7807
7890
|
letter-spacing: -0.02em;
|
|
7808
7891
|
line-height: 20.16px;
|
|
7809
7892
|
}
|
|
7810
|
-
.ilo--video--controls--duration:hover,
|
|
7893
|
+
.ilo--video--controls--duration:hover, .ilo--video--controls--duration:focus,
|
|
7811
7894
|
.ilo--video--controls .vjs-duration:hover,
|
|
7895
|
+
.ilo--video--controls .vjs-duration:focus,
|
|
7812
7896
|
.ilo--video .vjs-control-bar--duration:hover,
|
|
7813
|
-
.ilo--video .vjs-control-bar
|
|
7897
|
+
.ilo--video .vjs-control-bar--duration:focus,
|
|
7898
|
+
.ilo--video .vjs-control-bar .vjs-duration:hover,
|
|
7899
|
+
.ilo--video .vjs-control-bar .vjs-duration:focus {
|
|
7814
7900
|
background-color: rgb(235, 245, 253);
|
|
7815
7901
|
color: rgb(30, 45, 190);
|
|
7816
7902
|
}
|
|
@@ -7821,15 +7907,20 @@ body {
|
|
|
7821
7907
|
display: block;
|
|
7822
7908
|
}
|
|
7823
7909
|
@media screen and (min-width: 1024px) {
|
|
7824
|
-
.
|
|
7825
|
-
.
|
|
7826
|
-
.notplayed .ilo--video .vjs-control-bar--duration,
|
|
7827
|
-
.notplayed .ilo--video .vjs-control-bar .vjs-duration {
|
|
7910
|
+
.ilo--video--controls.notplayed .vjs-duration,
|
|
7911
|
+
.ilo--video .vjs-control-bar.notplayed .vjs-duration {
|
|
7828
7912
|
height: 2.1436227224rem;
|
|
7829
7913
|
margin-left: 0;
|
|
7830
7914
|
margin-top: 2px;
|
|
7831
7915
|
width: 2.5723472669rem;
|
|
7832
7916
|
}
|
|
7917
|
+
.ilo--video--controls.notplayed .ilo--video--controls--duration,
|
|
7918
|
+
.ilo--video .vjs-control-bar.notplayed .ilo--video--controls--duration {
|
|
7919
|
+
height: 2.1436227224rem;
|
|
7920
|
+
margin-left: 0;
|
|
7921
|
+
margin-top: 2px;
|
|
7922
|
+
width: 4.2872454448rem;
|
|
7923
|
+
}
|
|
7833
7924
|
}
|
|
7834
7925
|
.ilo--video--controls .vjs-progress-holder,
|
|
7835
7926
|
.ilo--video .vjs-control-bar .vjs-progress-holder {
|
|
@@ -8003,16 +8094,22 @@ body {
|
|
|
8003
8094
|
background: rgb(184, 196, 204);
|
|
8004
8095
|
border-radius: 0;
|
|
8005
8096
|
}
|
|
8006
|
-
.ilo--video--controls--progress:hover .vjs-play-progress,
|
|
8097
|
+
.ilo--video--controls--progress:hover .vjs-play-progress, .ilo--video--controls--progress:focus .vjs-play-progress,
|
|
8007
8098
|
.ilo--video--controls .vjs-progress-control:hover .vjs-play-progress,
|
|
8099
|
+
.ilo--video--controls .vjs-progress-control:focus .vjs-play-progress,
|
|
8008
8100
|
.ilo--video .vjs-control-bar--progress:hover .vjs-play-progress,
|
|
8009
|
-
.ilo--video .vjs-control-bar
|
|
8101
|
+
.ilo--video .vjs-control-bar--progress:focus .vjs-play-progress,
|
|
8102
|
+
.ilo--video .vjs-control-bar .vjs-progress-control:hover .vjs-play-progress,
|
|
8103
|
+
.ilo--video .vjs-control-bar .vjs-progress-control:focus .vjs-play-progress {
|
|
8010
8104
|
position: relative;
|
|
8011
8105
|
}
|
|
8012
|
-
.ilo--video--controls--progress:hover .vjs-play-progress .vjs-time-tooltip,
|
|
8106
|
+
.ilo--video--controls--progress:hover .vjs-play-progress .vjs-time-tooltip, .ilo--video--controls--progress:focus .vjs-play-progress .vjs-time-tooltip,
|
|
8013
8107
|
.ilo--video--controls .vjs-progress-control:hover .vjs-play-progress .vjs-time-tooltip,
|
|
8108
|
+
.ilo--video--controls .vjs-progress-control:focus .vjs-play-progress .vjs-time-tooltip,
|
|
8014
8109
|
.ilo--video .vjs-control-bar--progress:hover .vjs-play-progress .vjs-time-tooltip,
|
|
8015
|
-
.ilo--video .vjs-control-bar
|
|
8110
|
+
.ilo--video .vjs-control-bar--progress:focus .vjs-play-progress .vjs-time-tooltip,
|
|
8111
|
+
.ilo--video .vjs-control-bar .vjs-progress-control:hover .vjs-play-progress .vjs-time-tooltip,
|
|
8112
|
+
.ilo--video .vjs-control-bar .vjs-progress-control:focus .vjs-play-progress .vjs-time-tooltip {
|
|
8016
8113
|
align-items: center;
|
|
8017
8114
|
background-color: rgb(45, 45, 45);
|
|
8018
8115
|
display: flex;
|
|
@@ -8026,10 +8123,13 @@ body {
|
|
|
8026
8123
|
letter-spacing: -0.02em;
|
|
8027
8124
|
line-height: 16.24px;
|
|
8028
8125
|
}
|
|
8029
|
-
.ilo--video--controls--progress:hover .vjs-play-progress .vjs-time-tooltip:after,
|
|
8126
|
+
.ilo--video--controls--progress:hover .vjs-play-progress .vjs-time-tooltip:after, .ilo--video--controls--progress:focus .vjs-play-progress .vjs-time-tooltip:after,
|
|
8030
8127
|
.ilo--video--controls .vjs-progress-control:hover .vjs-play-progress .vjs-time-tooltip:after,
|
|
8128
|
+
.ilo--video--controls .vjs-progress-control:focus .vjs-play-progress .vjs-time-tooltip:after,
|
|
8031
8129
|
.ilo--video .vjs-control-bar--progress:hover .vjs-play-progress .vjs-time-tooltip:after,
|
|
8032
|
-
.ilo--video .vjs-control-bar
|
|
8130
|
+
.ilo--video .vjs-control-bar--progress:focus .vjs-play-progress .vjs-time-tooltip:after,
|
|
8131
|
+
.ilo--video .vjs-control-bar .vjs-progress-control:hover .vjs-play-progress .vjs-time-tooltip:after,
|
|
8132
|
+
.ilo--video .vjs-control-bar .vjs-progress-control:focus .vjs-play-progress .vjs-time-tooltip:after {
|
|
8033
8133
|
background-position: top left;
|
|
8034
8134
|
background-repeat: no-repeat;
|
|
8035
8135
|
background-size: contain;
|
|
@@ -8041,19 +8141,25 @@ body {
|
|
|
8041
8141
|
bottom: -0.6430868167rem;
|
|
8042
8142
|
width: 0.6430868167rem;
|
|
8043
8143
|
}
|
|
8044
|
-
.ilo--video--controls--progress:hover .ilo--video--controls--progress-played-container,
|
|
8144
|
+
.ilo--video--controls--progress:hover .ilo--video--controls--progress-played-container, .ilo--video--controls--progress:focus .ilo--video--controls--progress-played-container,
|
|
8045
8145
|
.ilo--video--controls .vjs-progress-control:hover .ilo--video--controls--progress-played-container,
|
|
8146
|
+
.ilo--video--controls .vjs-progress-control:focus .ilo--video--controls--progress-played-container,
|
|
8046
8147
|
.ilo--video .vjs-control-bar--progress:hover .ilo--video--controls--progress-played-container,
|
|
8047
|
-
.ilo--video .vjs-control-bar
|
|
8148
|
+
.ilo--video .vjs-control-bar--progress:focus .ilo--video--controls--progress-played-container,
|
|
8149
|
+
.ilo--video .vjs-control-bar .vjs-progress-control:hover .ilo--video--controls--progress-played-container,
|
|
8150
|
+
.ilo--video .vjs-control-bar .vjs-progress-control:focus .ilo--video--controls--progress-played-container {
|
|
8048
8151
|
position: absolute;
|
|
8049
8152
|
left: 2%;
|
|
8050
8153
|
top: 0;
|
|
8051
8154
|
width: 96%;
|
|
8052
8155
|
}
|
|
8053
|
-
.ilo--video--controls--progress:hover .ilo--video--controls--progress-played,
|
|
8156
|
+
.ilo--video--controls--progress:hover .ilo--video--controls--progress-played, .ilo--video--controls--progress:focus .ilo--video--controls--progress-played,
|
|
8054
8157
|
.ilo--video--controls .vjs-progress-control:hover .ilo--video--controls--progress-played,
|
|
8158
|
+
.ilo--video--controls .vjs-progress-control:focus .ilo--video--controls--progress-played,
|
|
8055
8159
|
.ilo--video .vjs-control-bar--progress:hover .ilo--video--controls--progress-played,
|
|
8056
|
-
.ilo--video .vjs-control-bar
|
|
8160
|
+
.ilo--video .vjs-control-bar--progress:focus .ilo--video--controls--progress-played,
|
|
8161
|
+
.ilo--video .vjs-control-bar .vjs-progress-control:hover .ilo--video--controls--progress-played,
|
|
8162
|
+
.ilo--video .vjs-control-bar .vjs-progress-control:focus .ilo--video--controls--progress-played {
|
|
8057
8163
|
--playhead: 0%;
|
|
8058
8164
|
align-items: center;
|
|
8059
8165
|
background-color: rgb(45, 45, 45);
|
|
@@ -8068,10 +8174,13 @@ body {
|
|
|
8068
8174
|
letter-spacing: -0.02em;
|
|
8069
8175
|
line-height: 16.24px;
|
|
8070
8176
|
}
|
|
8071
|
-
.ilo--video--controls--progress:hover .ilo--video--controls--progress-played:after,
|
|
8177
|
+
.ilo--video--controls--progress:hover .ilo--video--controls--progress-played:after, .ilo--video--controls--progress:focus .ilo--video--controls--progress-played:after,
|
|
8072
8178
|
.ilo--video--controls .vjs-progress-control:hover .ilo--video--controls--progress-played:after,
|
|
8179
|
+
.ilo--video--controls .vjs-progress-control:focus .ilo--video--controls--progress-played:after,
|
|
8073
8180
|
.ilo--video .vjs-control-bar--progress:hover .ilo--video--controls--progress-played:after,
|
|
8074
|
-
.ilo--video .vjs-control-bar
|
|
8181
|
+
.ilo--video .vjs-control-bar--progress:focus .ilo--video--controls--progress-played:after,
|
|
8182
|
+
.ilo--video .vjs-control-bar .vjs-progress-control:hover .ilo--video--controls--progress-played:after,
|
|
8183
|
+
.ilo--video .vjs-control-bar .vjs-progress-control:focus .ilo--video--controls--progress-played:after {
|
|
8075
8184
|
background-position: top left;
|
|
8076
8185
|
background-repeat: no-repeat;
|
|
8077
8186
|
background-size: contain;
|
|
@@ -8106,10 +8215,13 @@ body {
|
|
|
8106
8215
|
.vjs-has-started .ilo--video .vjs-control-bar .vjs-volume-panel {
|
|
8107
8216
|
display: block;
|
|
8108
8217
|
}
|
|
8109
|
-
.ilo--video--controls--volume:hover .vjs-volume-control,
|
|
8218
|
+
.ilo--video--controls--volume:hover .vjs-volume-control, .ilo--video--controls--volume:focus .vjs-volume-control,
|
|
8110
8219
|
.ilo--video--controls .vjs-volume-panel:hover .vjs-volume-control,
|
|
8220
|
+
.ilo--video--controls .vjs-volume-panel:focus .vjs-volume-control,
|
|
8111
8221
|
.ilo--video .vjs-control-bar--volume:hover .vjs-volume-control,
|
|
8112
|
-
.ilo--video .vjs-control-bar
|
|
8222
|
+
.ilo--video .vjs-control-bar--volume:focus .vjs-volume-control,
|
|
8223
|
+
.ilo--video .vjs-control-bar .vjs-volume-panel:hover .vjs-volume-control,
|
|
8224
|
+
.ilo--video .vjs-control-bar .vjs-volume-panel:focus .vjs-volume-control {
|
|
8113
8225
|
display: block;
|
|
8114
8226
|
}
|
|
8115
8227
|
.ilo--video--controls--showvolume,
|
|
@@ -8120,7 +8232,7 @@ body {
|
|
|
8120
8232
|
border: none;
|
|
8121
8233
|
cursor: pointer;
|
|
8122
8234
|
height: 2.1436227224rem;
|
|
8123
|
-
margin-top:
|
|
8235
|
+
margin-top: 0;
|
|
8124
8236
|
position: relative;
|
|
8125
8237
|
width: 2.1436227224rem;
|
|
8126
8238
|
z-index: 10;
|
|
@@ -8131,10 +8243,13 @@ body {
|
|
|
8131
8243
|
background-size: 24px 24px;
|
|
8132
8244
|
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath fill='rgb(237, 240, 242)' d='M14.633 4.735a.67.67 0 0 0-.698.063L8.78 8.666H5.667A.666.666 0 0 0 5 9.333v5.334c0 .369.298.667.667.667h3.112l5.156 3.867a.663.663 0 0 0 .698.064.668.668 0 0 0 .369-.597V5.332a.667.667 0 0 0-.369-.597ZM17.164 9.171l-.471-.471-.943.943.472.471a2.669 2.669 0 0 1 0 3.771l-.472.472.943.943.471-.472a4.005 4.005 0 0 0 0-5.657Z'/%3e%3cpath fill='rgb(237, 240, 242)' d='m18.579 6.813-.943.943.471.472a5.341 5.341 0 0 1 0 7.544l-.471.471.943.943.471-.471c2.6-2.6 2.6-6.83 0-9.43l-.471-.472Z'/%3e%3c/svg%3e");
|
|
8133
8245
|
}
|
|
8134
|
-
.ilo--video--controls--showvolume:hover,
|
|
8246
|
+
.ilo--video--controls--showvolume:hover, .ilo--video--controls--showvolume:focus,
|
|
8135
8247
|
.ilo--video--controls .vjs-mute-control:hover,
|
|
8248
|
+
.ilo--video--controls .vjs-mute-control:focus,
|
|
8136
8249
|
.ilo--video .vjs-control-bar--showvolume:hover,
|
|
8137
|
-
.ilo--video .vjs-control-bar
|
|
8250
|
+
.ilo--video .vjs-control-bar--showvolume:focus,
|
|
8251
|
+
.ilo--video .vjs-control-bar .vjs-mute-control:hover,
|
|
8252
|
+
.ilo--video .vjs-control-bar .vjs-mute-control:focus {
|
|
8138
8253
|
background-color: rgb(235, 245, 253);
|
|
8139
8254
|
background-position: center center;
|
|
8140
8255
|
background-repeat: no-repeat;
|
|
@@ -8153,13 +8268,19 @@ body {
|
|
|
8153
8268
|
background-size: 24px 24px;
|
|
8154
8269
|
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath fill='rgb(237, 240, 242)' d='M12.0447 15.7833L16.5999 19.1998C16.7173 19.2885 16.8586 19.3332 16.9999 19.3332 17.1012 19.3332 17.2039 19.3098 17.2979 19.2632 17.5239 19.1499 17.6666 18.9192 17.6666 18.6665V10.1614L12.0447 15.7833zM5.1955 19.8045C5.32549 19.9345 5.49616 19.9998 5.66682 19.9998 5.83748 19.9998 6.00815 19.9345 6.13814 19.8045L20.8045 5.13814C21.0652 4.87748 21.0652 4.45616 20.8045 4.1955 20.5438 3.93483 20.1225 3.93483 19.8619 4.1955L17.6666 6.39079V5.33347C17.6666 5.08081 17.5239 4.85015 17.2979 4.73682 17.0726 4.62549 16.8019 4.64882 16.5999 4.80015L11.4447 8.66674H6.33347C5.96481 8.66674 5.66682 8.96473 5.66682 9.33339V14.6666C5.66682 15.0353 5.96481 15.3333 6.33347 15.3333H8.72409L5.1955 18.8619C4.93483 19.1225 4.93483 19.5438 5.1955 19.8045z'/%3e%3c/svg%3e");
|
|
8155
8270
|
}
|
|
8156
|
-
.ilo--video--controls--showvolume.muted:hover, .ilo--video--controls--showvolume[title=Unmute]:hover,
|
|
8271
|
+
.ilo--video--controls--showvolume.muted:hover, .ilo--video--controls--showvolume.muted:focus, .ilo--video--controls--showvolume[title=Unmute]:hover, .ilo--video--controls--showvolume[title=Unmute]:focus,
|
|
8157
8272
|
.ilo--video--controls .vjs-mute-control.muted:hover,
|
|
8273
|
+
.ilo--video--controls .vjs-mute-control.muted:focus,
|
|
8158
8274
|
.ilo--video--controls .vjs-mute-control[title=Unmute]:hover,
|
|
8275
|
+
.ilo--video--controls .vjs-mute-control[title=Unmute]:focus,
|
|
8159
8276
|
.ilo--video .vjs-control-bar--showvolume.muted:hover,
|
|
8277
|
+
.ilo--video .vjs-control-bar--showvolume.muted:focus,
|
|
8160
8278
|
.ilo--video .vjs-control-bar--showvolume[title=Unmute]:hover,
|
|
8279
|
+
.ilo--video .vjs-control-bar--showvolume[title=Unmute]:focus,
|
|
8161
8280
|
.ilo--video .vjs-control-bar .vjs-mute-control.muted:hover,
|
|
8162
|
-
.ilo--video .vjs-control-bar .vjs-mute-control
|
|
8281
|
+
.ilo--video .vjs-control-bar .vjs-mute-control.muted:focus,
|
|
8282
|
+
.ilo--video .vjs-control-bar .vjs-mute-control[title=Unmute]:hover,
|
|
8283
|
+
.ilo--video .vjs-control-bar .vjs-mute-control[title=Unmute]:focus {
|
|
8163
8284
|
background-color: #ebf5fd;
|
|
8164
8285
|
background-position: center center;
|
|
8165
8286
|
background-repeat: no-repeat;
|
|
@@ -8195,9 +8316,9 @@ body {
|
|
|
8195
8316
|
}
|
|
8196
8317
|
.ilo--video--controls--setvolume-container,
|
|
8197
8318
|
.ilo--video .vjs-control-bar--setvolume-container {
|
|
8198
|
-
left:
|
|
8319
|
+
left: -2px;
|
|
8199
8320
|
position: absolute;
|
|
8200
|
-
top:
|
|
8321
|
+
top: -2px;
|
|
8201
8322
|
}
|
|
8202
8323
|
.ilo--video--controls--setvolume::-webkit-slider-runnable-track,
|
|
8203
8324
|
.ilo--video .vjs-control-bar--setvolume::-webkit-slider-runnable-track {
|
|
@@ -8289,10 +8410,13 @@ body {
|
|
|
8289
8410
|
background-size: 24px 24px;
|
|
8290
8411
|
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath fill='rgb(237, 240, 242)' d='M14.2721 5L16.6865 7.41373 13.8228 10.2774 14.7226 11.1772 17.5863 8.31355 20 10.7273V5H14.2721zM14.7226 12.8228L13.8228 13.7226 16.6865 16.5863 14.2727 19H20V13.2721L17.5863 15.6865 14.7226 12.8228zM11.2774 12.8228L8.41373 15.6865 6 13.2727V19H11.7279L9.31355 16.5863 12.1772 13.7226 11.2774 12.8228zM11.7273 5H6V10.7279L8.41373 8.31355 11.2774 11.1772 12.1772 10.2774 9.31355 7.41373 11.7273 5z'/%3e%3c/svg%3e");
|
|
8291
8412
|
}
|
|
8292
|
-
.ilo--video--controls--fullscreen:hover,
|
|
8413
|
+
.ilo--video--controls--fullscreen:hover, .ilo--video--controls--fullscreen:focus,
|
|
8293
8414
|
.ilo--video--controls .vjs-fullscreen-control:hover,
|
|
8415
|
+
.ilo--video--controls .vjs-fullscreen-control:focus,
|
|
8294
8416
|
.ilo--video .vjs-control-bar--fullscreen:hover,
|
|
8295
|
-
.ilo--video .vjs-control-bar
|
|
8417
|
+
.ilo--video .vjs-control-bar--fullscreen:focus,
|
|
8418
|
+
.ilo--video .vjs-control-bar .vjs-fullscreen-control:hover,
|
|
8419
|
+
.ilo--video .vjs-control-bar .vjs-fullscreen-control:focus {
|
|
8296
8420
|
background-color: #ebf5fd;
|
|
8297
8421
|
background-position: center center;
|
|
8298
8422
|
background-repeat: no-repeat;
|
|
@@ -8349,7 +8473,8 @@ body {
|
|
|
8349
8473
|
display: block;
|
|
8350
8474
|
}
|
|
8351
8475
|
.ilo--video:hover .ilo--video--controls,
|
|
8352
|
-
.ilo--video:hover .vjs-control-bar
|
|
8476
|
+
.ilo--video:hover .vjs-control-bar, .ilo--video:focus .ilo--video--controls,
|
|
8477
|
+
.ilo--video:focus .vjs-control-bar {
|
|
8353
8478
|
opacity: 1;
|
|
8354
8479
|
transition: opacity 150ms ease-out;
|
|
8355
8480
|
}
|
|
@@ -8367,4 +8492,16 @@ body {
|
|
|
8367
8492
|
position: relative;
|
|
8368
8493
|
}
|
|
8369
8494
|
|
|
8495
|
+
.right-to-left .ilo--video--caption {
|
|
8496
|
+
border-left: none;
|
|
8497
|
+
border-right: 3px solid #b8c4cc;
|
|
8498
|
+
direction: rtl;
|
|
8499
|
+
padding-left: 0;
|
|
8500
|
+
padding-right: 0.4287245445rem;
|
|
8501
|
+
}
|
|
8502
|
+
.right-to-left .ilo--credit {
|
|
8503
|
+
left: auto;
|
|
8504
|
+
right: 0;
|
|
8505
|
+
}
|
|
8506
|
+
|
|
8370
8507
|
/*# sourceMappingURL=index.css.map */
|