@ilo-org/styles 0.1.8 → 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 +424 -188
- package/build/css/components/index.css.map +1 -1
- package/build/css/index.css +424 -188
- package/build/css/index.css.map +1 -1
- package/build/css/monorepo.css +424 -188
- 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 +107 -9
- package/scss/components/_cardgroup.scss +3 -3
- package/scss/components/_checkbox.scss +3 -0
- package/scss/components/_contextmenu.scss +10 -2
- package/scss/components/_footer.scss +3 -0
- package/scss/components/_hero.scss +53 -25
- 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 +11 -10
- 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;
|
|
@@ -1270,6 +1288,24 @@ body {
|
|
|
1270
1288
|
position: relative;
|
|
1271
1289
|
z-index: 2;
|
|
1272
1290
|
}
|
|
1291
|
+
.ilo--card--isvideo .ilo--card--image--wrapper {
|
|
1292
|
+
position: relative;
|
|
1293
|
+
}
|
|
1294
|
+
.ilo--card--isvideo .ilo--card--image--wrapper::before {
|
|
1295
|
+
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");
|
|
1296
|
+
background-color: rgb(45, 45, 45);
|
|
1297
|
+
background-position: center;
|
|
1298
|
+
background-size: 18px 20px;
|
|
1299
|
+
background-repeat: no-repeat;
|
|
1300
|
+
content: "";
|
|
1301
|
+
display: block;
|
|
1302
|
+
height: 40px;
|
|
1303
|
+
left: 0;
|
|
1304
|
+
position: absolute;
|
|
1305
|
+
top: 0;
|
|
1306
|
+
width: 40px;
|
|
1307
|
+
z-index: 1;
|
|
1308
|
+
}
|
|
1273
1309
|
.ilo--card--multilink {
|
|
1274
1310
|
padding: 1.2861736334rem;
|
|
1275
1311
|
}
|
|
@@ -1576,7 +1612,7 @@ body {
|
|
|
1576
1612
|
margin-bottom: 1.674953518rem;
|
|
1577
1613
|
}
|
|
1578
1614
|
.ilo--card--graphic.ilo--card--dark {
|
|
1579
|
-
border-bottom: 0.1607717042rem solid rgb(
|
|
1615
|
+
border-bottom: 0.1607717042rem solid rgb(250, 60, 75);
|
|
1580
1616
|
}
|
|
1581
1617
|
.ilo--card--graphic .ilo--card--eyebrow {
|
|
1582
1618
|
margin-bottom: 1.0110920672rem;
|
|
@@ -1604,6 +1640,10 @@ body {
|
|
|
1604
1640
|
padding: 2.1436227224rem 1.2861736334rem;
|
|
1605
1641
|
width: 100%;
|
|
1606
1642
|
}
|
|
1643
|
+
.ilo--card--graphicpromo.ilo--card--cornercut:not(.ilo--card--multilink):not(.ilo--card--detail):not(.ilo--card--feature)::before {
|
|
1644
|
+
height: 2.1436227224rem;
|
|
1645
|
+
top: -2.127545552rem;
|
|
1646
|
+
}
|
|
1607
1647
|
.ilo--card--graphicpromo:hover, .ilo--card--graphicpromo:focus {
|
|
1608
1648
|
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));
|
|
1609
1649
|
}
|
|
@@ -1611,11 +1651,19 @@ body {
|
|
|
1611
1651
|
.ilo--card--graphicpromo {
|
|
1612
1652
|
padding: 2.5723472669rem;
|
|
1613
1653
|
}
|
|
1654
|
+
.ilo--card--graphicpromo.ilo--card--cornercut:not(.ilo--card--multilink):not(.ilo--card--detail):not(.ilo--card--feature)::before {
|
|
1655
|
+
height: 3.4297963558rem;
|
|
1656
|
+
top: -3.4137191854rem;
|
|
1657
|
+
}
|
|
1614
1658
|
}
|
|
1615
1659
|
@media screen and (min-width: 1024px) {
|
|
1616
1660
|
.ilo--card--graphicpromo {
|
|
1617
1661
|
padding: 3.4297963558rem 3.8585209003rem;
|
|
1618
1662
|
}
|
|
1663
|
+
.ilo--card--graphicpromo.ilo--card--cornercut:not(.ilo--card--multilink):not(.ilo--card--detail):not(.ilo--card--feature)::before {
|
|
1664
|
+
height: 3.4297963558rem;
|
|
1665
|
+
top: -3.4137191854rem;
|
|
1666
|
+
}
|
|
1619
1667
|
}
|
|
1620
1668
|
.ilo--card--graphicpromo.ilo--card--wide {
|
|
1621
1669
|
padding: 3.4297963558rem 3.8585209003rem;
|
|
@@ -1718,8 +1766,8 @@ body {
|
|
|
1718
1766
|
}
|
|
1719
1767
|
.ilo--card--factlist.ilo--card--cornercut:not(.ilo--card--multilink):not(.ilo--card--detail):not(.ilo--card--feature)::before {
|
|
1720
1768
|
clip-path: polygon(90% 0, 100% 100%, 100% 100%, 0% 100%, 0% 0%);
|
|
1721
|
-
height:
|
|
1722
|
-
top: -
|
|
1769
|
+
height: 2.1436227224rem;
|
|
1770
|
+
top: -2.127545552rem;
|
|
1723
1771
|
}
|
|
1724
1772
|
.ilo--card--factlist.ilo--card--dark {
|
|
1725
1773
|
background: rgb(35, 0, 80);
|
|
@@ -1802,7 +1850,7 @@ body {
|
|
|
1802
1850
|
padding: 0 1.2861736334rem 2.1436227224rem 1.1789924973rem;
|
|
1803
1851
|
width: 100%;
|
|
1804
1852
|
}
|
|
1805
|
-
.ilo--card--stat::before {
|
|
1853
|
+
.ilo--card--stat.ilo--card--cornercut:not(.ilo--card--multilink):not(.ilo--card--detail):not(.ilo--card--feature)::before {
|
|
1806
1854
|
clip-path: polygon(75% 0, 100% 100%, 100% 100%, 0% 100%, 0% 0%);
|
|
1807
1855
|
height: 2.1436227224rem;
|
|
1808
1856
|
top: -2.127545552rem;
|
|
@@ -1849,6 +1897,12 @@ body {
|
|
|
1849
1897
|
line-height: 16.24px;
|
|
1850
1898
|
align-self: flex-end;
|
|
1851
1899
|
}
|
|
1900
|
+
@media screen and (min-width: 1024px) {
|
|
1901
|
+
.ilo--card--stat.ilo--card--cornercut:not(.ilo--card--multilink):not(.ilo--card--detail):not(.ilo--card--feature)::before {
|
|
1902
|
+
height: 2.5723472669rem;
|
|
1903
|
+
top: -2.5562700965rem;
|
|
1904
|
+
}
|
|
1905
|
+
}
|
|
1852
1906
|
.ilo--card--data {
|
|
1853
1907
|
background: rgb(235, 245, 253);
|
|
1854
1908
|
border-bottom: 0.1607717042rem solid #82afdc;
|
|
@@ -1917,7 +1971,18 @@ body {
|
|
|
1917
1971
|
display: none;
|
|
1918
1972
|
}
|
|
1919
1973
|
.ilo--card--feature.ilo--card--dark {
|
|
1920
|
-
border-bottom: 0.1607717042rem solid rgb(
|
|
1974
|
+
border-bottom: 0.1607717042rem solid rgb(250, 60, 75);
|
|
1975
|
+
}
|
|
1976
|
+
.ilo--card--feature.ilo--card--dark .ilo--link-list {
|
|
1977
|
+
border-top: 2px solid rgba(237, 240, 242, 0.25);
|
|
1978
|
+
}
|
|
1979
|
+
.ilo--card--feature.ilo--card--dark .ilo--link-list--link {
|
|
1980
|
+
color: rgb(255, 255, 255);
|
|
1981
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath fill='rgb(255, 255, 255)' d='M8.63792 19.9964L7.6499 19.0082L14.6571 11.9999L7.6499 4.99159L8.63792 4.00342L16.1426 11.5023C16.2083 11.5675 16.2604 11.645 16.296 11.7304C16.3316 11.8158 16.3499 11.9074 16.3499 11.9999C16.3499 12.0924 16.3316 12.184 16.296 12.2694C16.2604 12.3548 16.2083 12.4324 16.1426 12.4975L8.63792 19.9964Z'/%3e%3c/svg%3e");
|
|
1982
|
+
}
|
|
1983
|
+
.ilo--card--feature.ilo--card--dark:hover .ilo--link-list--link, .ilo--card--feature.ilo--card--dark:focus .ilo--link-list--link {
|
|
1984
|
+
color: rgb(30, 45, 190);
|
|
1985
|
+
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='M8.63792 19.9964L7.6499 19.0082L14.6571 11.9999L7.6499 4.99159L8.63792 4.00342L16.1426 11.5023C16.2083 11.5675 16.2604 11.645 16.296 11.7304C16.3316 11.8158 16.3499 11.9074 16.3499 11.9999C16.3499 12.0924 16.3316 12.184 16.296 12.2694C16.2604 12.3548 16.2083 12.4324 16.1426 12.4975L8.63792 19.9964Z'/%3e%3c/svg%3e");
|
|
1921
1986
|
}
|
|
1922
1987
|
.ilo--card--feature picture::before {
|
|
1923
1988
|
transition-property: opacity;
|
|
@@ -1939,6 +2004,19 @@ body {
|
|
|
1939
2004
|
.ilo--card--feature:hover .ilo--card--image, .ilo--card--feature:focus .ilo--card--image {
|
|
1940
2005
|
filter: saturate(0);
|
|
1941
2006
|
}
|
|
2007
|
+
.ilo--card--feature .ilo--link-list {
|
|
2008
|
+
border-top: 0.1071811361rem solid rgb(237, 240, 242);
|
|
2009
|
+
margin-left: -1.2861736334rem;
|
|
2010
|
+
margin-right: -1.2861736334rem;
|
|
2011
|
+
margin-top: 1.822079314rem;
|
|
2012
|
+
position: relative;
|
|
2013
|
+
z-index: 2;
|
|
2014
|
+
}
|
|
2015
|
+
.ilo--card--feature .ilo--link-list--link, .ilo--card--feature .ilo--link-list--link:hover {
|
|
2016
|
+
border-bottom: none;
|
|
2017
|
+
padding-left: 1.2861736334rem;
|
|
2018
|
+
padding-right: 1.2861736334rem;
|
|
2019
|
+
}
|
|
1942
2020
|
.ilo--card--feature.ilo--card--narrow .ilo--card--wrap, .ilo--card--feature.ilo--card--standard .ilo--card--wrap {
|
|
1943
2021
|
display: flex;
|
|
1944
2022
|
flex-wrap: wrap;
|
|
@@ -1979,6 +2057,8 @@ body {
|
|
|
1979
2057
|
}
|
|
1980
2058
|
}
|
|
1981
2059
|
.ilo--card--feature .ilo--card--wrap {
|
|
2060
|
+
display: flex;
|
|
2061
|
+
flex-direction: column;
|
|
1982
2062
|
width: 100%;
|
|
1983
2063
|
}
|
|
1984
2064
|
.ilo--card--feature picture {
|
|
@@ -2000,8 +2080,14 @@ body {
|
|
|
2000
2080
|
z-index: -1;
|
|
2001
2081
|
}
|
|
2002
2082
|
.ilo--card--feature .ilo--card--content {
|
|
2083
|
+
display: flex;
|
|
2084
|
+
flex: 1 1 auto;
|
|
2085
|
+
flex-direction: column;
|
|
2003
2086
|
padding: 1.2861736334rem 1.2861736334rem 2.1436227224rem;
|
|
2004
2087
|
}
|
|
2088
|
+
.ilo--card--feature.ilo--card--linklist .ilo--card--content {
|
|
2089
|
+
padding-bottom: 0;
|
|
2090
|
+
}
|
|
2005
2091
|
.ilo--card--feature .ilo--card--title {
|
|
2006
2092
|
font-size: 23.32px;
|
|
2007
2093
|
letter-spacing: -0.035em;
|
|
@@ -2018,11 +2104,12 @@ body {
|
|
|
2018
2104
|
}
|
|
2019
2105
|
.ilo--card--feature .ilo--card--date {
|
|
2020
2106
|
margin-bottom: 0;
|
|
2107
|
+
margin-top: auto;
|
|
2021
2108
|
}
|
|
2022
2109
|
|
|
2023
2110
|
/**
|
|
2024
2111
|
* Do not edit directly
|
|
2025
|
-
* Generated on
|
|
2112
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
2026
2113
|
*/
|
|
2027
2114
|
/**
|
|
2028
2115
|
* TOKENS:
|
|
@@ -2045,17 +2132,17 @@ body {
|
|
|
2045
2132
|
}
|
|
2046
2133
|
@media screen and (min-width: 1024px) {
|
|
2047
2134
|
.ilo--cardgroup--two .ilo--card {
|
|
2048
|
-
width: calc(50% -
|
|
2135
|
+
width: calc(50% - 32px);
|
|
2049
2136
|
}
|
|
2050
2137
|
}
|
|
2051
2138
|
@media screen and (min-width: 1024px) {
|
|
2052
2139
|
.ilo--cardgroup--three .ilo--card {
|
|
2053
|
-
width: calc(33.333% -
|
|
2140
|
+
width: calc(33.333% - 32px);
|
|
2054
2141
|
}
|
|
2055
2142
|
}
|
|
2056
2143
|
@media screen and (min-width: 1024px) {
|
|
2057
2144
|
.ilo--cardgroup--four .ilo--card {
|
|
2058
|
-
width: calc(25% -
|
|
2145
|
+
width: calc(25% - 32px);
|
|
2059
2146
|
}
|
|
2060
2147
|
}
|
|
2061
2148
|
.ilo--cardgroup--button-wrap {
|
|
@@ -2067,7 +2154,7 @@ body {
|
|
|
2067
2154
|
|
|
2068
2155
|
/**
|
|
2069
2156
|
* Do not edit directly
|
|
2070
|
-
* Generated on
|
|
2157
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
2071
2158
|
*/
|
|
2072
2159
|
/**
|
|
2073
2160
|
* TOKENS:
|
|
@@ -2150,6 +2237,9 @@ body {
|
|
|
2150
2237
|
margin-bottom: 1.1789924973rem;
|
|
2151
2238
|
}
|
|
2152
2239
|
.ilo--fieldset--input--checkbox .ilo--fieldset--label {
|
|
2240
|
+
color: rgb(45, 45, 45);
|
|
2241
|
+
font-family: Noto Sans;
|
|
2242
|
+
font-size: 14.9px;
|
|
2153
2243
|
font-weight: 400;
|
|
2154
2244
|
line-height: 1;
|
|
2155
2245
|
margin-left: 0.4287245445rem;
|
|
@@ -2169,7 +2259,7 @@ body {
|
|
|
2169
2259
|
|
|
2170
2260
|
/**
|
|
2171
2261
|
* Do not edit directly
|
|
2172
|
-
* Generated on
|
|
2262
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
2173
2263
|
*/
|
|
2174
2264
|
/**
|
|
2175
2265
|
* TOKENS:
|
|
@@ -2200,6 +2290,12 @@ body {
|
|
|
2200
2290
|
.ilo--context-menu--item {
|
|
2201
2291
|
padding: 0 0.4287245445rem;
|
|
2202
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
|
+
}
|
|
2203
2299
|
.ilo--context-menu--item:last-of-type a {
|
|
2204
2300
|
border-bottom: none;
|
|
2205
2301
|
}
|
|
@@ -2242,7 +2338,7 @@ body {
|
|
|
2242
2338
|
|
|
2243
2339
|
/**
|
|
2244
2340
|
* Do not edit directly
|
|
2245
|
-
* Generated on
|
|
2341
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
2246
2342
|
*/
|
|
2247
2343
|
/**
|
|
2248
2344
|
* TOKENS:
|
|
@@ -2252,7 +2348,7 @@ body {
|
|
|
2252
2348
|
*/
|
|
2253
2349
|
/**
|
|
2254
2350
|
* Do not edit directly
|
|
2255
|
-
* Generated on
|
|
2351
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
2256
2352
|
*/
|
|
2257
2353
|
/**
|
|
2258
2354
|
* TOKENS:
|
|
@@ -2262,7 +2358,7 @@ body {
|
|
|
2262
2358
|
*/
|
|
2263
2359
|
/**
|
|
2264
2360
|
* Do not edit directly
|
|
2265
|
-
* Generated on
|
|
2361
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
2266
2362
|
*/
|
|
2267
2363
|
/**
|
|
2268
2364
|
* TOKENS:
|
|
@@ -2272,7 +2368,7 @@ body {
|
|
|
2272
2368
|
*/
|
|
2273
2369
|
/**
|
|
2274
2370
|
* Do not edit directly
|
|
2275
|
-
* Generated on
|
|
2371
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
2276
2372
|
*/
|
|
2277
2373
|
/**
|
|
2278
2374
|
* TOKENS:
|
|
@@ -2398,7 +2494,7 @@ body {
|
|
|
2398
2494
|
|
|
2399
2495
|
/**
|
|
2400
2496
|
* Do not edit directly
|
|
2401
|
-
* Generated on
|
|
2497
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
2402
2498
|
*/
|
|
2403
2499
|
/**
|
|
2404
2500
|
* TOKENS:
|
|
@@ -2426,7 +2522,7 @@ body {
|
|
|
2426
2522
|
|
|
2427
2523
|
/**
|
|
2428
2524
|
* Do not edit directly
|
|
2429
|
-
* Generated on
|
|
2525
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
2430
2526
|
*/
|
|
2431
2527
|
/**
|
|
2432
2528
|
* TOKENS:
|
|
@@ -2512,7 +2608,7 @@ body {
|
|
|
2512
2608
|
|
|
2513
2609
|
/**
|
|
2514
2610
|
* Do not edit directly
|
|
2515
|
-
* Generated on
|
|
2611
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
2516
2612
|
*/
|
|
2517
2613
|
/**
|
|
2518
2614
|
* TOKENS:
|
|
@@ -2522,7 +2618,7 @@ body {
|
|
|
2522
2618
|
*/
|
|
2523
2619
|
/**
|
|
2524
2620
|
* Do not edit directly
|
|
2525
|
-
* Generated on
|
|
2621
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
2526
2622
|
*/
|
|
2527
2623
|
/**
|
|
2528
2624
|
* TOKENS:
|
|
@@ -2532,7 +2628,7 @@ body {
|
|
|
2532
2628
|
*/
|
|
2533
2629
|
/**
|
|
2534
2630
|
* Do not edit directly
|
|
2535
|
-
* Generated on
|
|
2631
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
2536
2632
|
*/
|
|
2537
2633
|
/**
|
|
2538
2634
|
* TOKENS:
|
|
@@ -2585,7 +2681,7 @@ body {
|
|
|
2585
2681
|
|
|
2586
2682
|
/**
|
|
2587
2683
|
* Do not edit directly
|
|
2588
|
-
* Generated on
|
|
2684
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
2589
2685
|
*/
|
|
2590
2686
|
/**
|
|
2591
2687
|
* TOKENS:
|
|
@@ -2660,7 +2756,7 @@ body {
|
|
|
2660
2756
|
|
|
2661
2757
|
/**
|
|
2662
2758
|
* Do not edit directly
|
|
2663
|
-
* Generated on
|
|
2759
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
2664
2760
|
*/
|
|
2665
2761
|
/**
|
|
2666
2762
|
* TOKENS:
|
|
@@ -2766,7 +2862,7 @@ body {
|
|
|
2766
2862
|
|
|
2767
2863
|
/**
|
|
2768
2864
|
* Do not edit directly
|
|
2769
|
-
* Generated on
|
|
2865
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
2770
2866
|
*/
|
|
2771
2867
|
/**
|
|
2772
2868
|
* TOKENS:
|
|
@@ -2789,7 +2885,7 @@ body {
|
|
|
2789
2885
|
|
|
2790
2886
|
/**
|
|
2791
2887
|
* Do not edit directly
|
|
2792
|
-
* Generated on
|
|
2888
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
2793
2889
|
*/
|
|
2794
2890
|
/**
|
|
2795
2891
|
* TOKENS:
|
|
@@ -2803,7 +2899,7 @@ body {
|
|
|
2803
2899
|
|
|
2804
2900
|
/**
|
|
2805
2901
|
* Do not edit directly
|
|
2806
|
-
* Generated on
|
|
2902
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
2807
2903
|
*/
|
|
2808
2904
|
/**
|
|
2809
2905
|
* TOKENS:
|
|
@@ -2813,7 +2909,7 @@ body {
|
|
|
2813
2909
|
*/
|
|
2814
2910
|
/**
|
|
2815
2911
|
* Do not edit directly
|
|
2816
|
-
* Generated on
|
|
2912
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
2817
2913
|
*/
|
|
2818
2914
|
/**
|
|
2819
2915
|
* TOKENS:
|
|
@@ -2838,7 +2934,7 @@ body {
|
|
|
2838
2934
|
}
|
|
2839
2935
|
/**
|
|
2840
2936
|
* Do not edit directly
|
|
2841
|
-
* Generated on
|
|
2937
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
2842
2938
|
*/
|
|
2843
2939
|
/**
|
|
2844
2940
|
* TOKENS:
|
|
@@ -2889,6 +2985,7 @@ body {
|
|
|
2889
2985
|
font-size: 16px;
|
|
2890
2986
|
letter-spacing: normal;
|
|
2891
2987
|
line-height: 23.36px;
|
|
2988
|
+
line-height: 1.1575562701rem;
|
|
2892
2989
|
margin-bottom: 0.0895963823rem;
|
|
2893
2990
|
margin-top: 0.732683199rem;
|
|
2894
2991
|
}
|
|
@@ -2896,9 +2993,11 @@ body {
|
|
|
2896
2993
|
color: #bedcfa;
|
|
2897
2994
|
font-family: Overpass;
|
|
2898
2995
|
font-weight: 500;
|
|
2996
|
+
margin-top: 0.5359056806rem;
|
|
2899
2997
|
font-size: 11.94px;
|
|
2900
2998
|
letter-spacing: normal;
|
|
2901
2999
|
line-height: 16.24px;
|
|
3000
|
+
line-height: 0.9946409432rem;
|
|
2902
3001
|
margin-bottom: 1.1927105212rem;
|
|
2903
3002
|
}
|
|
2904
3003
|
.ilo--footer .address {
|
|
@@ -3235,7 +3334,7 @@ body {
|
|
|
3235
3334
|
|
|
3236
3335
|
/**
|
|
3237
3336
|
* Do not edit directly
|
|
3238
|
-
* Generated on
|
|
3337
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
3239
3338
|
*/
|
|
3240
3339
|
/**
|
|
3241
3340
|
* TOKENS:
|
|
@@ -3358,7 +3457,7 @@ body {
|
|
|
3358
3457
|
|
|
3359
3458
|
/**
|
|
3360
3459
|
* Do not edit directly
|
|
3361
|
-
* Generated on
|
|
3460
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
3362
3461
|
*/
|
|
3363
3462
|
/**
|
|
3364
3463
|
* TOKENS:
|
|
@@ -3369,6 +3468,7 @@ body {
|
|
|
3369
3468
|
.ilo--hero {
|
|
3370
3469
|
background: rgb(237, 240, 242);
|
|
3371
3470
|
display: block;
|
|
3471
|
+
position: relative;
|
|
3372
3472
|
width: 100%;
|
|
3373
3473
|
}
|
|
3374
3474
|
.ilo--hero--home .ilo--image::before {
|
|
@@ -3494,6 +3594,17 @@ body {
|
|
|
3494
3594
|
width: 100%;
|
|
3495
3595
|
}
|
|
3496
3596
|
}
|
|
3597
|
+
.ilo--hero .ilo--breadcrumb {
|
|
3598
|
+
left: 0;
|
|
3599
|
+
max-width: 560px;
|
|
3600
|
+
position: absolute;
|
|
3601
|
+
top: 0;
|
|
3602
|
+
width: 100%;
|
|
3603
|
+
}
|
|
3604
|
+
.right-to-left .ilo--hero .ilo--breadcrumb {
|
|
3605
|
+
left: auto;
|
|
3606
|
+
right: 0;
|
|
3607
|
+
}
|
|
3497
3608
|
|
|
3498
3609
|
.ilo--hero-card {
|
|
3499
3610
|
background: rgb(255, 255, 255);
|
|
@@ -3520,14 +3631,17 @@ body {
|
|
|
3520
3631
|
}
|
|
3521
3632
|
@media screen and (min-width: 1024px) {
|
|
3522
3633
|
.ilo--hero-card::before {
|
|
3523
|
-
height:
|
|
3524
|
-
top: -
|
|
3634
|
+
height: 56px;
|
|
3635
|
+
top: -55.7px;
|
|
3525
3636
|
}
|
|
3526
3637
|
}
|
|
3527
3638
|
@media screen and (min-width: 1024px) {
|
|
3528
3639
|
.ilo--hero-card {
|
|
3529
3640
|
padding: 0 70px 70px 56px;
|
|
3530
3641
|
}
|
|
3642
|
+
.ilo--hero-card.ilo--hero-card--graphic {
|
|
3643
|
+
padding: 0 70px 44px 56px;
|
|
3644
|
+
}
|
|
3531
3645
|
}
|
|
3532
3646
|
.right-to-left .ilo--hero-card {
|
|
3533
3647
|
direction: rtl;
|
|
@@ -3577,6 +3691,9 @@ body {
|
|
|
3577
3691
|
border: none;
|
|
3578
3692
|
padding: 24px;
|
|
3579
3693
|
}
|
|
3694
|
+
.ilo--hero-card--home::before {
|
|
3695
|
+
display: none;
|
|
3696
|
+
}
|
|
3580
3697
|
@media screen and (min-width: 1024px) {
|
|
3581
3698
|
.ilo--hero-card--home {
|
|
3582
3699
|
bottom: 72px;
|
|
@@ -3585,6 +3702,22 @@ body {
|
|
|
3585
3702
|
position: absolute;
|
|
3586
3703
|
width: 100%;
|
|
3587
3704
|
}
|
|
3705
|
+
.ilo--hero-card--home::before {
|
|
3706
|
+
background: inherit;
|
|
3707
|
+
clip-path: polygon(90% 0, 100% 100%, 100% 100%, 0% 100%, 0% 0%);
|
|
3708
|
+
content: "";
|
|
3709
|
+
display: block;
|
|
3710
|
+
height: 59px;
|
|
3711
|
+
left: 0;
|
|
3712
|
+
position: absolute;
|
|
3713
|
+
top: -58.7px;
|
|
3714
|
+
width: 100%;
|
|
3715
|
+
}
|
|
3716
|
+
.right-to-left .ilo--hero-card--home::before {
|
|
3717
|
+
clip-path: polygon(100% 0, 100% 100%, 100% 100%, 0% 100%, 10% 0%);
|
|
3718
|
+
left: auto;
|
|
3719
|
+
right: 0;
|
|
3720
|
+
}
|
|
3588
3721
|
.ilo--hero-card--home.ilo--hero-card--center {
|
|
3589
3722
|
left: 50%;
|
|
3590
3723
|
right: auto;
|
|
@@ -3599,8 +3732,10 @@ body {
|
|
|
3599
3732
|
right: 0;
|
|
3600
3733
|
}
|
|
3601
3734
|
}
|
|
3602
|
-
|
|
3603
|
-
|
|
3735
|
+
@media screen and (min-width: 1024px) {
|
|
3736
|
+
.ilo--hero-card--home.ilo--hero-card--dark {
|
|
3737
|
+
background: rgba(35, 0, 80, 0.55);
|
|
3738
|
+
}
|
|
3604
3739
|
}
|
|
3605
3740
|
.ilo--hero-card--portal {
|
|
3606
3741
|
background: rgb(35, 0, 80);
|
|
@@ -3615,11 +3750,11 @@ body {
|
|
|
3615
3750
|
}
|
|
3616
3751
|
}
|
|
3617
3752
|
.ilo--hero-card--publication {
|
|
3618
|
-
margin-top: -64px;
|
|
3619
3753
|
padding: 24px;
|
|
3620
3754
|
}
|
|
3621
3755
|
@media screen and (min-width: 1024px) {
|
|
3622
3756
|
.ilo--hero-card--publication {
|
|
3757
|
+
margin-top: -64px;
|
|
3623
3758
|
max-width: 720px;
|
|
3624
3759
|
padding: 0 48px 48px 72px;
|
|
3625
3760
|
width: 100%;
|
|
@@ -3629,21 +3764,21 @@ body {
|
|
|
3629
3764
|
font-size: 16px;
|
|
3630
3765
|
letter-spacing: normal;
|
|
3631
3766
|
line-height: 23.36px;
|
|
3632
|
-
margin-bottom: 1.
|
|
3767
|
+
margin-bottom: 1.5005359057rem;
|
|
3633
3768
|
color: rgb(109, 109, 109);
|
|
3634
3769
|
}
|
|
3635
3770
|
.ilo--hero-card--eyebrow {
|
|
3636
3771
|
font-size: 16px;
|
|
3637
3772
|
letter-spacing: normal;
|
|
3638
3773
|
line-height: 23.36px;
|
|
3639
|
-
margin-bottom:
|
|
3774
|
+
margin-bottom: 0.857449089rem;
|
|
3640
3775
|
color: rgb(150, 10, 85);
|
|
3641
3776
|
}
|
|
3642
3777
|
.ilo--hero-card--intro {
|
|
3643
3778
|
font-size: 16px;
|
|
3644
3779
|
letter-spacing: normal;
|
|
3645
3780
|
line-height: 23.36px;
|
|
3646
|
-
margin-bottom: 1.
|
|
3781
|
+
margin-bottom: 1.5005359057rem;
|
|
3647
3782
|
}
|
|
3648
3783
|
@media screen and (min-width: 1024px) {
|
|
3649
3784
|
.ilo--hero-card--intro {
|
|
@@ -3720,7 +3855,7 @@ body {
|
|
|
3720
3855
|
|
|
3721
3856
|
/**
|
|
3722
3857
|
* Do not edit directly
|
|
3723
|
-
* Generated on
|
|
3858
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
3724
3859
|
*/
|
|
3725
3860
|
/**
|
|
3726
3861
|
* TOKENS:
|
|
@@ -3776,7 +3911,7 @@ body {
|
|
|
3776
3911
|
|
|
3777
3912
|
/**
|
|
3778
3913
|
* Do not edit directly
|
|
3779
|
-
* Generated on
|
|
3914
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
3780
3915
|
*/
|
|
3781
3916
|
/**
|
|
3782
3917
|
* TOKENS:
|
|
@@ -3918,7 +4053,7 @@ body {
|
|
|
3918
4053
|
|
|
3919
4054
|
/**
|
|
3920
4055
|
* Do not edit directly
|
|
3921
|
-
* Generated on
|
|
4056
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
3922
4057
|
*/
|
|
3923
4058
|
/**
|
|
3924
4059
|
* TOKENS:
|
|
@@ -3928,7 +4063,7 @@ body {
|
|
|
3928
4063
|
*/
|
|
3929
4064
|
/**
|
|
3930
4065
|
* Do not edit directly
|
|
3931
|
-
* Generated on
|
|
4066
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
3932
4067
|
*/
|
|
3933
4068
|
/**
|
|
3934
4069
|
* TOKENS:
|
|
@@ -3953,7 +4088,7 @@ body {
|
|
|
3953
4088
|
}
|
|
3954
4089
|
/**
|
|
3955
4090
|
* Do not edit directly
|
|
3956
|
-
* Generated on
|
|
4091
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
3957
4092
|
*/
|
|
3958
4093
|
/**
|
|
3959
4094
|
* TOKENS:
|
|
@@ -4105,9 +4240,13 @@ body {
|
|
|
4105
4240
|
text-align: right;
|
|
4106
4241
|
}
|
|
4107
4242
|
|
|
4243
|
+
.wingsuit-body .ilo--link-list--dark {
|
|
4244
|
+
background-color: rgb(35, 0, 80);
|
|
4245
|
+
}
|
|
4246
|
+
|
|
4108
4247
|
/**
|
|
4109
4248
|
* Do not edit directly
|
|
4110
|
-
* Generated on
|
|
4249
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
4111
4250
|
*/
|
|
4112
4251
|
/**
|
|
4113
4252
|
* TOKENS:
|
|
@@ -4120,7 +4259,23 @@ body {
|
|
|
4120
4259
|
}
|
|
4121
4260
|
.ilo--list--unordered {
|
|
4122
4261
|
list-style: initial;
|
|
4123
|
-
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");
|
|
4124
4279
|
}
|
|
4125
4280
|
.ilo--list--unstyled {
|
|
4126
4281
|
list-style: none;
|
|
@@ -4154,11 +4309,11 @@ body {
|
|
|
4154
4309
|
margin-bottom: 1.5763397642rem;
|
|
4155
4310
|
}
|
|
4156
4311
|
.ilo--list__item {
|
|
4157
|
-
font-size:
|
|
4312
|
+
font-size: 16px;
|
|
4158
4313
|
letter-spacing: normal;
|
|
4159
|
-
line-height:
|
|
4314
|
+
line-height: 23.36px;
|
|
4160
4315
|
font-family: Noto Sans;
|
|
4161
|
-
margin-bottom: 1.
|
|
4316
|
+
margin-bottom: 1.052683199rem;
|
|
4162
4317
|
margin-left: 1.2861736334rem;
|
|
4163
4318
|
padding-left: 0.1607717042rem;
|
|
4164
4319
|
}
|
|
@@ -4167,10 +4322,18 @@ body {
|
|
|
4167
4322
|
font-weight: 700;
|
|
4168
4323
|
letter-spacing: -0.02em;
|
|
4169
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
|
+
}
|
|
4170
4333
|
|
|
4171
4334
|
/**
|
|
4172
4335
|
* Do not edit directly
|
|
4173
|
-
* Generated on
|
|
4336
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
4174
4337
|
*/
|
|
4175
4338
|
/**
|
|
4176
4339
|
* TOKENS:
|
|
@@ -4180,7 +4343,7 @@ body {
|
|
|
4180
4343
|
*/
|
|
4181
4344
|
/**
|
|
4182
4345
|
* Do not edit directly
|
|
4183
|
-
* Generated on
|
|
4346
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
4184
4347
|
*/
|
|
4185
4348
|
/**
|
|
4186
4349
|
* TOKENS:
|
|
@@ -4190,7 +4353,7 @@ body {
|
|
|
4190
4353
|
*/
|
|
4191
4354
|
/**
|
|
4192
4355
|
* Do not edit directly
|
|
4193
|
-
* Generated on
|
|
4356
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
4194
4357
|
*/
|
|
4195
4358
|
/**
|
|
4196
4359
|
* TOKENS:
|
|
@@ -4298,7 +4461,7 @@ body {
|
|
|
4298
4461
|
|
|
4299
4462
|
/**
|
|
4300
4463
|
* Do not edit directly
|
|
4301
|
-
* Generated on
|
|
4464
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
4302
4465
|
*/
|
|
4303
4466
|
/**
|
|
4304
4467
|
* TOKENS:
|
|
@@ -4308,7 +4471,7 @@ body {
|
|
|
4308
4471
|
*/
|
|
4309
4472
|
/**
|
|
4310
4473
|
* Do not edit directly
|
|
4311
|
-
* Generated on
|
|
4474
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
4312
4475
|
*/
|
|
4313
4476
|
/**
|
|
4314
4477
|
* TOKENS:
|
|
@@ -4318,7 +4481,7 @@ body {
|
|
|
4318
4481
|
*/
|
|
4319
4482
|
/**
|
|
4320
4483
|
* Do not edit directly
|
|
4321
|
-
* Generated on
|
|
4484
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
4322
4485
|
*/
|
|
4323
4486
|
/**
|
|
4324
4487
|
* TOKENS:
|
|
@@ -4415,7 +4578,7 @@ body {
|
|
|
4415
4578
|
|
|
4416
4579
|
/**
|
|
4417
4580
|
* Do not edit directly
|
|
4418
|
-
* Generated on
|
|
4581
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
4419
4582
|
*/
|
|
4420
4583
|
/**
|
|
4421
4584
|
* TOKENS:
|
|
@@ -5158,7 +5321,7 @@ body {
|
|
|
5158
5321
|
|
|
5159
5322
|
/**
|
|
5160
5323
|
* Do not edit directly
|
|
5161
|
-
* Generated on
|
|
5324
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
5162
5325
|
*/
|
|
5163
5326
|
/**
|
|
5164
5327
|
* TOKENS:
|
|
@@ -5168,7 +5331,7 @@ body {
|
|
|
5168
5331
|
*/
|
|
5169
5332
|
/**
|
|
5170
5333
|
* Do not edit directly
|
|
5171
|
-
* Generated on
|
|
5334
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
5172
5335
|
*/
|
|
5173
5336
|
/**
|
|
5174
5337
|
* TOKENS:
|
|
@@ -5178,7 +5341,7 @@ body {
|
|
|
5178
5341
|
*/
|
|
5179
5342
|
/**
|
|
5180
5343
|
* Do not edit directly
|
|
5181
|
-
* Generated on
|
|
5344
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
5182
5345
|
*/
|
|
5183
5346
|
/**
|
|
5184
5347
|
* TOKENS:
|
|
@@ -5232,7 +5395,7 @@ body {
|
|
|
5232
5395
|
width: 100%;
|
|
5233
5396
|
}
|
|
5234
5397
|
.ilo--notification--inline .ilo--notification--content {
|
|
5235
|
-
align-items:
|
|
5398
|
+
align-items: start;
|
|
5236
5399
|
display: flex;
|
|
5237
5400
|
justify-items: space-between;
|
|
5238
5401
|
padding: 0.7502679528rem 1.2861736334rem;
|
|
@@ -5370,7 +5533,7 @@ body {
|
|
|
5370
5533
|
|
|
5371
5534
|
/**
|
|
5372
5535
|
* Do not edit directly
|
|
5373
|
-
* Generated on
|
|
5536
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
5374
5537
|
*/
|
|
5375
5538
|
/**
|
|
5376
5539
|
* TOKENS:
|
|
@@ -5505,7 +5668,7 @@ body {
|
|
|
5505
5668
|
|
|
5506
5669
|
/**
|
|
5507
5670
|
* Do not edit directly
|
|
5508
|
-
* Generated on
|
|
5671
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
5509
5672
|
*/
|
|
5510
5673
|
/**
|
|
5511
5674
|
* TOKENS:
|
|
@@ -5515,7 +5678,7 @@ body {
|
|
|
5515
5678
|
*/
|
|
5516
5679
|
/**
|
|
5517
5680
|
* Do not edit directly
|
|
5518
|
-
* Generated on
|
|
5681
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
5519
5682
|
*/
|
|
5520
5683
|
/**
|
|
5521
5684
|
* TOKENS:
|
|
@@ -5540,7 +5703,7 @@ body {
|
|
|
5540
5703
|
}
|
|
5541
5704
|
/**
|
|
5542
5705
|
* Do not edit directly
|
|
5543
|
-
* Generated on
|
|
5706
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
5544
5707
|
*/
|
|
5545
5708
|
/**
|
|
5546
5709
|
* TOKENS:
|
|
@@ -5685,7 +5848,7 @@ body {
|
|
|
5685
5848
|
|
|
5686
5849
|
/**
|
|
5687
5850
|
* Do not edit directly
|
|
5688
|
-
* Generated on
|
|
5851
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
5689
5852
|
*/
|
|
5690
5853
|
/**
|
|
5691
5854
|
* TOKENS:
|
|
@@ -5764,8 +5927,10 @@ body {
|
|
|
5764
5927
|
margin-bottom: 1.1789924973rem;
|
|
5765
5928
|
}
|
|
5766
5929
|
.ilo--fieldset--input--radio .ilo--fieldset--label {
|
|
5930
|
+
color: rgb(45, 45, 45);
|
|
5767
5931
|
font-family: Noto Sans;
|
|
5768
5932
|
font-weight: 400;
|
|
5933
|
+
font-size: 14.9px;
|
|
5769
5934
|
margin-bottom: 0;
|
|
5770
5935
|
margin-left: 0.4287245445rem;
|
|
5771
5936
|
margin-top: 2px;
|
|
@@ -5790,7 +5955,7 @@ body {
|
|
|
5790
5955
|
|
|
5791
5956
|
/**
|
|
5792
5957
|
* Do not edit directly
|
|
5793
|
-
* Generated on
|
|
5958
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
5794
5959
|
*/
|
|
5795
5960
|
/**
|
|
5796
5961
|
* TOKENS:
|
|
@@ -5800,7 +5965,7 @@ body {
|
|
|
5800
5965
|
*/
|
|
5801
5966
|
/**
|
|
5802
5967
|
* Do not edit directly
|
|
5803
|
-
* Generated on
|
|
5968
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
5804
5969
|
*/
|
|
5805
5970
|
/**
|
|
5806
5971
|
* TOKENS:
|
|
@@ -5825,7 +5990,7 @@ body {
|
|
|
5825
5990
|
}
|
|
5826
5991
|
/**
|
|
5827
5992
|
* Do not edit directly
|
|
5828
|
-
* Generated on
|
|
5993
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
5829
5994
|
*/
|
|
5830
5995
|
/**
|
|
5831
5996
|
* TOKENS:
|
|
@@ -5886,7 +6051,7 @@ body {
|
|
|
5886
6051
|
|
|
5887
6052
|
/**
|
|
5888
6053
|
* Do not edit directly
|
|
5889
|
-
* Generated on
|
|
6054
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
5890
6055
|
*/
|
|
5891
6056
|
/**
|
|
5892
6057
|
* TOKENS:
|
|
@@ -5909,8 +6074,6 @@ body {
|
|
|
5909
6074
|
font-weight: inherit;
|
|
5910
6075
|
line-height: inherit;
|
|
5911
6076
|
text-decoration: none;
|
|
5912
|
-
border: none;
|
|
5913
|
-
text-decoration: underline;
|
|
5914
6077
|
}
|
|
5915
6078
|
.ilo--richtext a:visited {
|
|
5916
6079
|
background: rgba(0, 0, 0, 0);
|
|
@@ -5992,26 +6155,6 @@ body {
|
|
|
5992
6155
|
color: rgb(35, 0, 80);
|
|
5993
6156
|
outline: none;
|
|
5994
6157
|
}
|
|
5995
|
-
.ilo--richtext a:visited {
|
|
5996
|
-
border: none;
|
|
5997
|
-
text-decoration: underline;
|
|
5998
|
-
text-decoration-color: rgb(150, 10, 85);
|
|
5999
|
-
}
|
|
6000
|
-
.ilo--richtext a:hover {
|
|
6001
|
-
border: none;
|
|
6002
|
-
text-decoration: underline;
|
|
6003
|
-
text-decoration-color: rgb(30, 45, 190);
|
|
6004
|
-
}
|
|
6005
|
-
.ilo--richtext a:active {
|
|
6006
|
-
border: none;
|
|
6007
|
-
text-decoration: underline;
|
|
6008
|
-
text-decoration-color: rgb(35, 0, 80);
|
|
6009
|
-
}
|
|
6010
|
-
.ilo--richtext a:focus {
|
|
6011
|
-
border: none;
|
|
6012
|
-
text-decoration: underline;
|
|
6013
|
-
text-decoration-color: rgb(35, 0, 80);
|
|
6014
|
-
}
|
|
6015
6158
|
.ilo--richtext img {
|
|
6016
6159
|
width: 100%;
|
|
6017
6160
|
}
|
|
@@ -6125,7 +6268,7 @@ body {
|
|
|
6125
6268
|
position: absolute;
|
|
6126
6269
|
top: 6px;
|
|
6127
6270
|
width: 0.6430868167rem;
|
|
6128
|
-
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");
|
|
6129
6272
|
}
|
|
6130
6273
|
.ilo--richtext blockquote {
|
|
6131
6274
|
background-color: rgb(237, 240, 242);
|
|
@@ -6133,6 +6276,7 @@ body {
|
|
|
6133
6276
|
background-repeat: no-repeat;
|
|
6134
6277
|
background-size: 3.8585209003rem 2.1436227224rem;
|
|
6135
6278
|
display: block;
|
|
6279
|
+
font-family: Overpass;
|
|
6136
6280
|
margin: 1.2861736334rem 0 2.1436227224rem 0;
|
|
6137
6281
|
padding: 2.8938906752rem 0 1.822079314rem 1.7148981779rem;
|
|
6138
6282
|
position: relative;
|
|
@@ -6322,7 +6466,7 @@ body {
|
|
|
6322
6466
|
|
|
6323
6467
|
/**
|
|
6324
6468
|
* Do not edit directly
|
|
6325
|
-
* Generated on
|
|
6469
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
6326
6470
|
*/
|
|
6327
6471
|
/**
|
|
6328
6472
|
* TOKENS:
|
|
@@ -6373,7 +6517,7 @@ body {
|
|
|
6373
6517
|
|
|
6374
6518
|
/**
|
|
6375
6519
|
* Do not edit directly
|
|
6376
|
-
* Generated on
|
|
6520
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
6377
6521
|
*/
|
|
6378
6522
|
/**
|
|
6379
6523
|
* TOKENS:
|
|
@@ -6530,7 +6674,7 @@ body {
|
|
|
6530
6674
|
|
|
6531
6675
|
/**
|
|
6532
6676
|
* Do not edit directly
|
|
6533
|
-
* Generated on
|
|
6677
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
6534
6678
|
*/
|
|
6535
6679
|
/**
|
|
6536
6680
|
* TOKENS:
|
|
@@ -6545,6 +6689,7 @@ body {
|
|
|
6545
6689
|
}
|
|
6546
6690
|
.ilo--table--header {
|
|
6547
6691
|
background-color: rgb(255, 255, 255);
|
|
6692
|
+
border-bottom: 0.1071811361rem solid rgb(237, 240, 242);
|
|
6548
6693
|
padding: 19px 8px 18px 8px;
|
|
6549
6694
|
}
|
|
6550
6695
|
.ilo--table--wrapper {
|
|
@@ -6554,6 +6699,7 @@ body {
|
|
|
6554
6699
|
width: 100%;
|
|
6555
6700
|
}
|
|
6556
6701
|
.ilo--table--content {
|
|
6702
|
+
border-collapse: initial;
|
|
6557
6703
|
width: 100%;
|
|
6558
6704
|
}
|
|
6559
6705
|
.ilo--table--head {
|
|
@@ -6569,7 +6715,6 @@ body {
|
|
|
6569
6715
|
.ilo--table--head--cell {
|
|
6570
6716
|
background-color: rgb(255, 255, 255);
|
|
6571
6717
|
border-left: 0.0535905681rem solid rgb(237, 240, 242);
|
|
6572
|
-
border-top: 0.1071811361rem solid rgb(237, 240, 242);
|
|
6573
6718
|
border-bottom: 0.1071811361rem solid rgb(237, 240, 242);
|
|
6574
6719
|
font-family: Overpass;
|
|
6575
6720
|
font-weight: 700;
|
|
@@ -6647,7 +6792,7 @@ body {
|
|
|
6647
6792
|
text-align: right;
|
|
6648
6793
|
}
|
|
6649
6794
|
.ilo--table--body--cell:hover {
|
|
6650
|
-
background-color: rgb(
|
|
6795
|
+
background-color: rgb(235, 245, 253);
|
|
6651
6796
|
border-bottom: 2px solid rgb(30, 45, 190);
|
|
6652
6797
|
color: rgb(30, 45, 190);
|
|
6653
6798
|
}
|
|
@@ -6880,7 +7025,7 @@ body {
|
|
|
6880
7025
|
|
|
6881
7026
|
/**
|
|
6882
7027
|
* Do not edit directly
|
|
6883
|
-
* Generated on
|
|
7028
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
6884
7029
|
*/
|
|
6885
7030
|
/**
|
|
6886
7031
|
* TOKENS:
|
|
@@ -7066,7 +7211,7 @@ body {
|
|
|
7066
7211
|
|
|
7067
7212
|
/**
|
|
7068
7213
|
* Do not edit directly
|
|
7069
|
-
* Generated on
|
|
7214
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
7070
7215
|
*/
|
|
7071
7216
|
/**
|
|
7072
7217
|
* TOKENS:
|
|
@@ -7124,7 +7269,7 @@ body {
|
|
|
7124
7269
|
|
|
7125
7270
|
/**
|
|
7126
7271
|
* Do not edit directly
|
|
7127
|
-
* Generated on
|
|
7272
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
7128
7273
|
*/
|
|
7129
7274
|
/**
|
|
7130
7275
|
* TOKENS:
|
|
@@ -7152,10 +7297,8 @@ body {
|
|
|
7152
7297
|
color: rgb(109, 109, 109);
|
|
7153
7298
|
display: inline-block;
|
|
7154
7299
|
font-family: Overpass;
|
|
7155
|
-
font-size: inherit;
|
|
7156
7300
|
font-weight: 500;
|
|
7157
|
-
|
|
7158
|
-
padding: 0.5359056806rem 0.6430868167rem 0.4287245445rem 0.6430868167rem;
|
|
7301
|
+
padding: 0.3751339764rem 0.6430868167rem 0.2679528403rem 0.6430868167rem;
|
|
7159
7302
|
text-decoration: none;
|
|
7160
7303
|
transition-property: color, background-color, border-color;
|
|
7161
7304
|
transition-duration: 150ms;
|
|
@@ -7168,13 +7311,13 @@ body {
|
|
|
7168
7311
|
}
|
|
7169
7312
|
.ilo--tag--anchor {
|
|
7170
7313
|
cursor: unset;
|
|
7314
|
+
pointer-events: none;
|
|
7171
7315
|
}
|
|
7172
7316
|
.ilo--tag--anchor.ilo--tag--active {
|
|
7173
7317
|
background: rgb(237, 240, 242);
|
|
7174
7318
|
color: rgb(35, 0, 80);
|
|
7175
7319
|
cursor: pointer;
|
|
7176
7320
|
outline: none;
|
|
7177
|
-
pointer-events: none;
|
|
7178
7321
|
}
|
|
7179
7322
|
.ilo--tag--anchor.ilo--tag--active:hover {
|
|
7180
7323
|
background: rgb(235, 245, 253);
|
|
@@ -7219,12 +7362,16 @@ body {
|
|
|
7219
7362
|
}
|
|
7220
7363
|
.ilo--tag--button.icon__position--right .ilo--icon {
|
|
7221
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;
|
|
7222
7368
|
height: 100%;
|
|
7223
|
-
max-height:
|
|
7224
|
-
max-width:
|
|
7369
|
+
max-height: 24px;
|
|
7370
|
+
max-width: 24px;
|
|
7225
7371
|
position: absolute;
|
|
7226
|
-
right:
|
|
7227
|
-
top:
|
|
7372
|
+
right: 10px;
|
|
7373
|
+
top: 50%;
|
|
7374
|
+
transform: translateY(-50%);
|
|
7228
7375
|
width: 100%;
|
|
7229
7376
|
}
|
|
7230
7377
|
.ilo--tag--button:hover {
|
|
@@ -7296,7 +7443,7 @@ body {
|
|
|
7296
7443
|
|
|
7297
7444
|
/**
|
|
7298
7445
|
* Do not edit directly
|
|
7299
|
-
* Generated on
|
|
7446
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
7300
7447
|
*/
|
|
7301
7448
|
/**
|
|
7302
7449
|
* TOKENS:
|
|
@@ -7312,17 +7459,19 @@ body {
|
|
|
7312
7459
|
border: none;
|
|
7313
7460
|
border-radius: 0.1071811361rem;
|
|
7314
7461
|
display: inline-block;
|
|
7315
|
-
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));
|
|
7316
7463
|
color: rgb(45, 45, 45);
|
|
7317
7464
|
opacity: 0;
|
|
7318
7465
|
padding: 0.4287245445rem 0.6430868167rem;
|
|
7319
7466
|
position: absolute;
|
|
7320
|
-
transition: opacity
|
|
7467
|
+
transition: opacity 150ms ease-out;
|
|
7321
7468
|
visibility: hidden;
|
|
7322
7469
|
width: auto;
|
|
7323
7470
|
}
|
|
7324
|
-
.ilo--tooltip--
|
|
7471
|
+
.ilo--tooltip--fade {
|
|
7325
7472
|
opacity: 1;
|
|
7473
|
+
}
|
|
7474
|
+
.ilo--tooltip--visible {
|
|
7326
7475
|
visibility: visible;
|
|
7327
7476
|
z-index: 2;
|
|
7328
7477
|
}
|
|
@@ -7455,7 +7604,7 @@ body {
|
|
|
7455
7604
|
|
|
7456
7605
|
/**
|
|
7457
7606
|
* Do not edit directly
|
|
7458
|
-
* Generated on
|
|
7607
|
+
* Generated on Tue, 22 Nov 2022 22:22:44 GMT
|
|
7459
7608
|
*/
|
|
7460
7609
|
/**
|
|
7461
7610
|
* TOKENS:
|
|
@@ -7491,6 +7640,7 @@ body {
|
|
|
7491
7640
|
.ilo--video--element,
|
|
7492
7641
|
.ilo--video .vjs-tech {
|
|
7493
7642
|
height: auto;
|
|
7643
|
+
object-fit: cover;
|
|
7494
7644
|
width: 100%;
|
|
7495
7645
|
}
|
|
7496
7646
|
.ilo--video--element:focus,
|
|
@@ -7599,17 +7749,22 @@ body {
|
|
|
7599
7749
|
-moz-appearance: none;
|
|
7600
7750
|
}
|
|
7601
7751
|
@media screen and (min-width: 1024px) {
|
|
7602
|
-
.
|
|
7603
|
-
.
|
|
7604
|
-
.
|
|
7605
|
-
.
|
|
7606
|
-
.notplayed .ilo--video .vjs-control-bar--pause,
|
|
7607
|
-
.notplayed .ilo--video .vjs-control-bar .vjs-play-control,
|
|
7608
|
-
.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 {
|
|
7609
7756
|
order: 1;
|
|
7610
7757
|
height: 2.5723472669rem;
|
|
7611
7758
|
width: 2.5723472669rem;
|
|
7612
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
|
+
}
|
|
7613
7768
|
}
|
|
7614
7769
|
.ilo--video--controls--play,
|
|
7615
7770
|
.ilo--video--controls .vjs-play-control:not(.vjs-playing),
|
|
@@ -7622,29 +7777,44 @@ body {
|
|
|
7622
7777
|
background-size: 48px 48px;
|
|
7623
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");
|
|
7624
7779
|
}
|
|
7625
|
-
.ilo--video--controls--play:hover,
|
|
7780
|
+
.ilo--video--controls--play:hover, .ilo--video--controls--play:focus,
|
|
7626
7781
|
.ilo--video--controls .vjs-play-control:not(.vjs-playing):hover,
|
|
7782
|
+
.ilo--video--controls .vjs-play-control:not(.vjs-playing):focus,
|
|
7627
7783
|
.ilo--video--controls .vjs-big-play-button:hover,
|
|
7784
|
+
.ilo--video--controls .vjs-big-play-button:focus,
|
|
7628
7785
|
.ilo--video .vjs-control-bar--play:hover,
|
|
7786
|
+
.ilo--video .vjs-control-bar--play:focus,
|
|
7629
7787
|
.ilo--video .vjs-control-bar .vjs-play-control:not(.vjs-playing):hover,
|
|
7630
|
-
.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 {
|
|
7631
7791
|
background-color: rgb(235, 245, 253);
|
|
7632
7792
|
background-position: center center;
|
|
7633
7793
|
background-repeat: no-repeat;
|
|
7634
7794
|
background-size: 48px 48px;
|
|
7635
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");
|
|
7636
7796
|
}
|
|
7637
|
-
.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,
|
|
7638
7798
|
.ilo--video--controls .vjs-play-control:not(.vjs-playing):hover ~ .vjs-duration,
|
|
7639
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,
|
|
7640
7802
|
.ilo--video--controls .vjs-big-play-button:hover ~ .vjs-duration,
|
|
7641
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,
|
|
7642
7806
|
.ilo--video .vjs-control-bar--play:hover ~ .vjs-duration,
|
|
7643
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,
|
|
7644
7810
|
.ilo--video .vjs-control-bar .vjs-play-control:not(.vjs-playing):hover ~ .vjs-duration,
|
|
7645
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,
|
|
7646
7814
|
.ilo--video .vjs-control-bar .vjs-big-play-button:hover ~ .vjs-duration,
|
|
7647
|
-
.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 {
|
|
7648
7818
|
background-color: rgb(235, 245, 253);
|
|
7649
7819
|
color: rgb(30, 45, 190);
|
|
7650
7820
|
}
|
|
@@ -7659,18 +7829,27 @@ body {
|
|
|
7659
7829
|
background-size: 24px 24px;
|
|
7660
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");
|
|
7661
7831
|
}
|
|
7662
|
-
.ilo--video--controls--play.vjs-paused:hover,
|
|
7832
|
+
.ilo--video--controls--play.vjs-paused:hover, .ilo--video--controls--play.vjs-paused:focus,
|
|
7663
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,
|
|
7664
7835
|
.ilo--video--controls .vjs-big-play-button.vjs-paused:hover,
|
|
7836
|
+
.ilo--video--controls .vjs-big-play-button.vjs-paused:focus,
|
|
7665
7837
|
.ilo--video .vjs-control-bar--play.vjs-paused:hover,
|
|
7838
|
+
.ilo--video .vjs-control-bar--play.vjs-paused:focus,
|
|
7666
7839
|
.ilo--video .vjs-control-bar .vjs-play-control:not(.vjs-playing).vjs-paused:hover,
|
|
7667
|
-
.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 {
|
|
7668
7843
|
background-color: rgb(235, 245, 253);
|
|
7669
7844
|
background-position: center center;
|
|
7670
7845
|
background-repeat: no-repeat;
|
|
7671
7846
|
background-size: 24px 24px;
|
|
7672
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");
|
|
7673
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
|
+
}
|
|
7674
7853
|
.ilo--video--controls--pause,
|
|
7675
7854
|
.ilo--video--controls .vjs-playing,
|
|
7676
7855
|
.ilo--video .vjs-control-bar--pause,
|
|
@@ -7680,10 +7859,13 @@ body {
|
|
|
7680
7859
|
background-size: 24px 24px;
|
|
7681
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");
|
|
7682
7861
|
}
|
|
7683
|
-
.ilo--video--controls--pause:hover,
|
|
7862
|
+
.ilo--video--controls--pause:hover, .ilo--video--controls--pause:focus,
|
|
7684
7863
|
.ilo--video--controls .vjs-playing:hover,
|
|
7864
|
+
.ilo--video--controls .vjs-playing:focus,
|
|
7685
7865
|
.ilo--video .vjs-control-bar--pause:hover,
|
|
7686
|
-
.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 {
|
|
7687
7869
|
background-color: rgb(235, 245, 253);
|
|
7688
7870
|
background-position: center center;
|
|
7689
7871
|
background-repeat: no-repeat;
|
|
@@ -7708,10 +7890,13 @@ body {
|
|
|
7708
7890
|
letter-spacing: -0.02em;
|
|
7709
7891
|
line-height: 20.16px;
|
|
7710
7892
|
}
|
|
7711
|
-
.ilo--video--controls--duration:hover,
|
|
7893
|
+
.ilo--video--controls--duration:hover, .ilo--video--controls--duration:focus,
|
|
7712
7894
|
.ilo--video--controls .vjs-duration:hover,
|
|
7895
|
+
.ilo--video--controls .vjs-duration:focus,
|
|
7713
7896
|
.ilo--video .vjs-control-bar--duration:hover,
|
|
7714
|
-
.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 {
|
|
7715
7900
|
background-color: rgb(235, 245, 253);
|
|
7716
7901
|
color: rgb(30, 45, 190);
|
|
7717
7902
|
}
|
|
@@ -7722,15 +7907,20 @@ body {
|
|
|
7722
7907
|
display: block;
|
|
7723
7908
|
}
|
|
7724
7909
|
@media screen and (min-width: 1024px) {
|
|
7725
|
-
.
|
|
7726
|
-
.
|
|
7727
|
-
.notplayed .ilo--video .vjs-control-bar--duration,
|
|
7728
|
-
.notplayed .ilo--video .vjs-control-bar .vjs-duration {
|
|
7910
|
+
.ilo--video--controls.notplayed .vjs-duration,
|
|
7911
|
+
.ilo--video .vjs-control-bar.notplayed .vjs-duration {
|
|
7729
7912
|
height: 2.1436227224rem;
|
|
7730
7913
|
margin-left: 0;
|
|
7731
7914
|
margin-top: 2px;
|
|
7732
7915
|
width: 2.5723472669rem;
|
|
7733
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
|
+
}
|
|
7734
7924
|
}
|
|
7735
7925
|
.ilo--video--controls .vjs-progress-holder,
|
|
7736
7926
|
.ilo--video .vjs-control-bar .vjs-progress-holder {
|
|
@@ -7904,16 +8094,22 @@ body {
|
|
|
7904
8094
|
background: rgb(184, 196, 204);
|
|
7905
8095
|
border-radius: 0;
|
|
7906
8096
|
}
|
|
7907
|
-
.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,
|
|
7908
8098
|
.ilo--video--controls .vjs-progress-control:hover .vjs-play-progress,
|
|
8099
|
+
.ilo--video--controls .vjs-progress-control:focus .vjs-play-progress,
|
|
7909
8100
|
.ilo--video .vjs-control-bar--progress:hover .vjs-play-progress,
|
|
7910
|
-
.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 {
|
|
7911
8104
|
position: relative;
|
|
7912
8105
|
}
|
|
7913
|
-
.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,
|
|
7914
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,
|
|
7915
8109
|
.ilo--video .vjs-control-bar--progress:hover .vjs-play-progress .vjs-time-tooltip,
|
|
7916
|
-
.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 {
|
|
7917
8113
|
align-items: center;
|
|
7918
8114
|
background-color: rgb(45, 45, 45);
|
|
7919
8115
|
display: flex;
|
|
@@ -7927,10 +8123,13 @@ body {
|
|
|
7927
8123
|
letter-spacing: -0.02em;
|
|
7928
8124
|
line-height: 16.24px;
|
|
7929
8125
|
}
|
|
7930
|
-
.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,
|
|
7931
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,
|
|
7932
8129
|
.ilo--video .vjs-control-bar--progress:hover .vjs-play-progress .vjs-time-tooltip:after,
|
|
7933
|
-
.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 {
|
|
7934
8133
|
background-position: top left;
|
|
7935
8134
|
background-repeat: no-repeat;
|
|
7936
8135
|
background-size: contain;
|
|
@@ -7942,19 +8141,25 @@ body {
|
|
|
7942
8141
|
bottom: -0.6430868167rem;
|
|
7943
8142
|
width: 0.6430868167rem;
|
|
7944
8143
|
}
|
|
7945
|
-
.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,
|
|
7946
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,
|
|
7947
8147
|
.ilo--video .vjs-control-bar--progress:hover .ilo--video--controls--progress-played-container,
|
|
7948
|
-
.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 {
|
|
7949
8151
|
position: absolute;
|
|
7950
8152
|
left: 2%;
|
|
7951
8153
|
top: 0;
|
|
7952
8154
|
width: 96%;
|
|
7953
8155
|
}
|
|
7954
|
-
.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,
|
|
7955
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,
|
|
7956
8159
|
.ilo--video .vjs-control-bar--progress:hover .ilo--video--controls--progress-played,
|
|
7957
|
-
.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 {
|
|
7958
8163
|
--playhead: 0%;
|
|
7959
8164
|
align-items: center;
|
|
7960
8165
|
background-color: rgb(45, 45, 45);
|
|
@@ -7969,10 +8174,13 @@ body {
|
|
|
7969
8174
|
letter-spacing: -0.02em;
|
|
7970
8175
|
line-height: 16.24px;
|
|
7971
8176
|
}
|
|
7972
|
-
.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,
|
|
7973
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,
|
|
7974
8180
|
.ilo--video .vjs-control-bar--progress:hover .ilo--video--controls--progress-played:after,
|
|
7975
|
-
.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 {
|
|
7976
8184
|
background-position: top left;
|
|
7977
8185
|
background-repeat: no-repeat;
|
|
7978
8186
|
background-size: contain;
|
|
@@ -8007,10 +8215,13 @@ body {
|
|
|
8007
8215
|
.vjs-has-started .ilo--video .vjs-control-bar .vjs-volume-panel {
|
|
8008
8216
|
display: block;
|
|
8009
8217
|
}
|
|
8010
|
-
.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,
|
|
8011
8219
|
.ilo--video--controls .vjs-volume-panel:hover .vjs-volume-control,
|
|
8220
|
+
.ilo--video--controls .vjs-volume-panel:focus .vjs-volume-control,
|
|
8012
8221
|
.ilo--video .vjs-control-bar--volume:hover .vjs-volume-control,
|
|
8013
|
-
.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 {
|
|
8014
8225
|
display: block;
|
|
8015
8226
|
}
|
|
8016
8227
|
.ilo--video--controls--showvolume,
|
|
@@ -8021,7 +8232,7 @@ body {
|
|
|
8021
8232
|
border: none;
|
|
8022
8233
|
cursor: pointer;
|
|
8023
8234
|
height: 2.1436227224rem;
|
|
8024
|
-
margin-top:
|
|
8235
|
+
margin-top: 0;
|
|
8025
8236
|
position: relative;
|
|
8026
8237
|
width: 2.1436227224rem;
|
|
8027
8238
|
z-index: 10;
|
|
@@ -8032,10 +8243,13 @@ body {
|
|
|
8032
8243
|
background-size: 24px 24px;
|
|
8033
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");
|
|
8034
8245
|
}
|
|
8035
|
-
.ilo--video--controls--showvolume:hover,
|
|
8246
|
+
.ilo--video--controls--showvolume:hover, .ilo--video--controls--showvolume:focus,
|
|
8036
8247
|
.ilo--video--controls .vjs-mute-control:hover,
|
|
8248
|
+
.ilo--video--controls .vjs-mute-control:focus,
|
|
8037
8249
|
.ilo--video .vjs-control-bar--showvolume:hover,
|
|
8038
|
-
.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 {
|
|
8039
8253
|
background-color: rgb(235, 245, 253);
|
|
8040
8254
|
background-position: center center;
|
|
8041
8255
|
background-repeat: no-repeat;
|
|
@@ -8054,13 +8268,19 @@ body {
|
|
|
8054
8268
|
background-size: 24px 24px;
|
|
8055
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");
|
|
8056
8270
|
}
|
|
8057
|
-
.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,
|
|
8058
8272
|
.ilo--video--controls .vjs-mute-control.muted:hover,
|
|
8273
|
+
.ilo--video--controls .vjs-mute-control.muted:focus,
|
|
8059
8274
|
.ilo--video--controls .vjs-mute-control[title=Unmute]:hover,
|
|
8275
|
+
.ilo--video--controls .vjs-mute-control[title=Unmute]:focus,
|
|
8060
8276
|
.ilo--video .vjs-control-bar--showvolume.muted:hover,
|
|
8277
|
+
.ilo--video .vjs-control-bar--showvolume.muted:focus,
|
|
8061
8278
|
.ilo--video .vjs-control-bar--showvolume[title=Unmute]:hover,
|
|
8279
|
+
.ilo--video .vjs-control-bar--showvolume[title=Unmute]:focus,
|
|
8062
8280
|
.ilo--video .vjs-control-bar .vjs-mute-control.muted:hover,
|
|
8063
|
-
.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 {
|
|
8064
8284
|
background-color: #ebf5fd;
|
|
8065
8285
|
background-position: center center;
|
|
8066
8286
|
background-repeat: no-repeat;
|
|
@@ -8096,9 +8316,9 @@ body {
|
|
|
8096
8316
|
}
|
|
8097
8317
|
.ilo--video--controls--setvolume-container,
|
|
8098
8318
|
.ilo--video .vjs-control-bar--setvolume-container {
|
|
8099
|
-
left:
|
|
8319
|
+
left: -2px;
|
|
8100
8320
|
position: absolute;
|
|
8101
|
-
top:
|
|
8321
|
+
top: -2px;
|
|
8102
8322
|
}
|
|
8103
8323
|
.ilo--video--controls--setvolume::-webkit-slider-runnable-track,
|
|
8104
8324
|
.ilo--video .vjs-control-bar--setvolume::-webkit-slider-runnable-track {
|
|
@@ -8190,10 +8410,13 @@ body {
|
|
|
8190
8410
|
background-size: 24px 24px;
|
|
8191
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");
|
|
8192
8412
|
}
|
|
8193
|
-
.ilo--video--controls--fullscreen:hover,
|
|
8413
|
+
.ilo--video--controls--fullscreen:hover, .ilo--video--controls--fullscreen:focus,
|
|
8194
8414
|
.ilo--video--controls .vjs-fullscreen-control:hover,
|
|
8415
|
+
.ilo--video--controls .vjs-fullscreen-control:focus,
|
|
8195
8416
|
.ilo--video .vjs-control-bar--fullscreen:hover,
|
|
8196
|
-
.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 {
|
|
8197
8420
|
background-color: #ebf5fd;
|
|
8198
8421
|
background-position: center center;
|
|
8199
8422
|
background-repeat: no-repeat;
|
|
@@ -8250,7 +8473,8 @@ body {
|
|
|
8250
8473
|
display: block;
|
|
8251
8474
|
}
|
|
8252
8475
|
.ilo--video:hover .ilo--video--controls,
|
|
8253
|
-
.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 {
|
|
8254
8478
|
opacity: 1;
|
|
8255
8479
|
transition: opacity 150ms ease-out;
|
|
8256
8480
|
}
|
|
@@ -8268,4 +8492,16 @@ body {
|
|
|
8268
8492
|
position: relative;
|
|
8269
8493
|
}
|
|
8270
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
|
+
|
|
8271
8507
|
/*# sourceMappingURL=index.css.map */
|