@ilo-org/styles 0.1.0 → 0.1.2
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/build/css/components/index.css +899 -180
- package/build/css/components/index.css.map +1 -1
- package/build/css/index.css +899 -180
- package/build/css/index.css.map +1 -1
- package/build/css/monorepo.css +899 -180
- 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/_animations.scss +12 -0
- package/scss/components/_accordion.scss +2 -2
- package/scss/components/_button.scss +12 -0
- package/scss/components/_card.scss +382 -67
- package/scss/components/_cardgroup.scss +12 -0
- package/scss/components/_footer.scss +128 -19
- package/scss/components/_hero.scss +4 -5
- package/scss/components/_linklist.scss +33 -0
- package/scss/components/_navigation.scss +160 -8
- package/scss/components/_notification.scss +51 -24
- package/scss/components/_table.scss +34 -2
package/build/css/index.css
CHANGED
|
@@ -151,7 +151,7 @@ select {
|
|
|
151
151
|
}
|
|
152
152
|
/**
|
|
153
153
|
* Do not edit directly
|
|
154
|
-
* Generated on Wed,
|
|
154
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 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 Wed,
|
|
253
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
254
254
|
*/
|
|
255
255
|
/**
|
|
256
256
|
* TOKENS:
|
|
@@ -277,7 +277,7 @@ body {
|
|
|
277
277
|
line-height: 21.6px;
|
|
278
278
|
justify-content: space-between;
|
|
279
279
|
margin: 0;
|
|
280
|
-
padding:
|
|
280
|
+
padding: 0.8038585209rem 1.9292604502rem 0.8038585209rem 0;
|
|
281
281
|
text-align: left;
|
|
282
282
|
transition: border 0.15s ease-out, background 0.15s ease-out, color 0.15s ease-out;
|
|
283
283
|
width: 100%;
|
|
@@ -350,7 +350,7 @@ body {
|
|
|
350
350
|
|
|
351
351
|
/**
|
|
352
352
|
* Do not edit directly
|
|
353
|
-
* Generated on Wed,
|
|
353
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
354
354
|
*/
|
|
355
355
|
/**
|
|
356
356
|
* TOKENS:
|
|
@@ -567,7 +567,42 @@ body {
|
|
|
567
567
|
|
|
568
568
|
/**
|
|
569
569
|
* Do not edit directly
|
|
570
|
-
* Generated on Wed,
|
|
570
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
571
|
+
*/
|
|
572
|
+
/**
|
|
573
|
+
* TOKENS:
|
|
574
|
+
*/
|
|
575
|
+
/**
|
|
576
|
+
* MAPS:
|
|
577
|
+
*/
|
|
578
|
+
/**
|
|
579
|
+
* Do not edit directly
|
|
580
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
581
|
+
*/
|
|
582
|
+
/**
|
|
583
|
+
* TOKENS:
|
|
584
|
+
*/
|
|
585
|
+
/**
|
|
586
|
+
* MAPS:
|
|
587
|
+
*/
|
|
588
|
+
@keyframes emptygradient {
|
|
589
|
+
0% {
|
|
590
|
+
opacity: 1;
|
|
591
|
+
}
|
|
592
|
+
100% {
|
|
593
|
+
opacity: 0;
|
|
594
|
+
}
|
|
595
|
+
}
|
|
596
|
+
@keyframes spin {
|
|
597
|
+
100% {
|
|
598
|
+
-moz-transform: rotate(360deg);
|
|
599
|
+
-webkit-transform: rotate(360deg);
|
|
600
|
+
transform: rotate(360deg);
|
|
601
|
+
}
|
|
602
|
+
}
|
|
603
|
+
/**
|
|
604
|
+
* Do not edit directly
|
|
605
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
571
606
|
*/
|
|
572
607
|
/**
|
|
573
608
|
* TOKENS:
|
|
@@ -685,8 +720,8 @@ body {
|
|
|
685
720
|
.ilo--button--small .link__label,
|
|
686
721
|
.ilo--button--small .button__label {
|
|
687
722
|
padding-bottom: 3px;
|
|
688
|
-
padding-left:
|
|
689
|
-
padding-right:
|
|
723
|
+
padding-left: 13px;
|
|
724
|
+
padding-right: 13px;
|
|
690
725
|
padding-top: 3px;
|
|
691
726
|
font-size: 14.93px;
|
|
692
727
|
letter-spacing: -0.02em;
|
|
@@ -732,6 +767,9 @@ body {
|
|
|
732
767
|
box-shadow: 4px 4px 0 1px rgb(255, 205, 45) inset, -4px -4px 0 1px rgb(255, 205, 45) inset;
|
|
733
768
|
color: rgb(35, 0, 80);
|
|
734
769
|
outline: none;
|
|
770
|
+
transition-property: color, background-color, border-color;
|
|
771
|
+
transition-duration: 150ms;
|
|
772
|
+
transition-timing-function: ease-out;
|
|
735
773
|
}
|
|
736
774
|
.ilo--button:focus.ilo--button--small {
|
|
737
775
|
box-shadow: 3px 3px 0 1px rgb(255, 205, 45) inset, -3px -3px 0 1px rgb(255, 205, 45) inset;
|
|
@@ -742,6 +780,9 @@ body {
|
|
|
742
780
|
box-shadow: none;
|
|
743
781
|
color: rgb(30, 45, 190);
|
|
744
782
|
cursor: pointer;
|
|
783
|
+
transition-property: color, background-color, border-color;
|
|
784
|
+
transition-duration: 150ms;
|
|
785
|
+
transition-timing-function: ease-out;
|
|
745
786
|
}
|
|
746
787
|
.ilo--button:hover.ilo--button--small {
|
|
747
788
|
box-shadow: none;
|
|
@@ -751,6 +792,9 @@ body {
|
|
|
751
792
|
border: 2px rgb(30, 45, 190) solid;
|
|
752
793
|
box-shadow: none;
|
|
753
794
|
color: rgb(235, 245, 253);
|
|
795
|
+
transition-property: color, background-color, border-color;
|
|
796
|
+
transition-duration: 150ms;
|
|
797
|
+
transition-timing-function: ease-out;
|
|
754
798
|
}
|
|
755
799
|
.ilo--button:active.ilo--button--small {
|
|
756
800
|
box-shadow: none;
|
|
@@ -763,16 +807,25 @@ body {
|
|
|
763
807
|
background-color: rgb(255, 255, 255);
|
|
764
808
|
border: 1.5px rgb(184, 196, 204) solid;
|
|
765
809
|
color: rgb(35, 0, 80);
|
|
810
|
+
transition-property: color, background-color, border-color;
|
|
811
|
+
transition-duration: 150ms;
|
|
812
|
+
transition-timing-function: ease-out;
|
|
766
813
|
}
|
|
767
814
|
.ilo--button--secondary:hover {
|
|
768
815
|
background-color: rgb(235, 245, 253);
|
|
769
816
|
border: 1.5px rgb(30, 45, 190) solid;
|
|
817
|
+
transition-property: color, background-color, border-color;
|
|
818
|
+
transition-duration: 150ms;
|
|
819
|
+
transition-timing-function: ease-out;
|
|
770
820
|
}
|
|
771
821
|
.ilo--button--secondary:active {
|
|
772
822
|
background-color: rgb(30, 45, 190);
|
|
773
823
|
border: 2px rgb(30, 45, 190) solid;
|
|
774
824
|
box-shadow: none;
|
|
775
825
|
color: rgb(235, 245, 253);
|
|
826
|
+
transition-property: color, background-color, border-color;
|
|
827
|
+
transition-duration: 150ms;
|
|
828
|
+
transition-timing-function: ease-out;
|
|
776
829
|
}
|
|
777
830
|
.ilo--button--secondary:active.ilo--button--small {
|
|
778
831
|
box-shadow: none;
|
|
@@ -781,28 +834,43 @@ body {
|
|
|
781
834
|
background-color: rgb(237, 240, 242);
|
|
782
835
|
border: 2px rgb(237, 240, 242) solid;
|
|
783
836
|
color: rgb(35, 0, 80);
|
|
837
|
+
transition-property: color, background-color, border-color;
|
|
838
|
+
transition-duration: 150ms;
|
|
839
|
+
transition-timing-function: ease-out;
|
|
784
840
|
}
|
|
785
841
|
.ilo--button--alert {
|
|
786
842
|
background-color: rgb(200, 48, 60);
|
|
787
843
|
border: 1.5px rgb(200, 48, 60) solid;
|
|
788
844
|
color: rgb(255, 255, 255);
|
|
845
|
+
transition-property: color, background-color, border-color;
|
|
846
|
+
transition-duration: 150ms;
|
|
847
|
+
transition-timing-function: ease-out;
|
|
789
848
|
}
|
|
790
849
|
.ilo--button--alert:hover {
|
|
791
850
|
background-color: rgb(235, 245, 253);
|
|
792
851
|
border: 1.5px rgb(30, 45, 190) solid;
|
|
793
852
|
color: rgb(30, 45, 190);
|
|
853
|
+
transition-property: color, background-color, border-color;
|
|
854
|
+
transition-duration: 150ms;
|
|
855
|
+
transition-timing-function: ease-out;
|
|
794
856
|
}
|
|
795
857
|
.ilo--button--alert:focus {
|
|
796
858
|
background-color: rgb(255, 255, 255);
|
|
797
859
|
border: 2px rgb(255, 205, 45) solid;
|
|
798
860
|
color: rgb(35, 0, 80);
|
|
799
861
|
outline: none;
|
|
862
|
+
transition-property: color, background-color, border-color;
|
|
863
|
+
transition-duration: 150ms;
|
|
864
|
+
transition-timing-function: ease-out;
|
|
800
865
|
}
|
|
801
866
|
.ilo--button--alert:active {
|
|
802
867
|
background-color: rgb(30, 45, 190);
|
|
803
868
|
border: 2px rgb(30, 45, 190) solid;
|
|
804
869
|
box-shadow: none;
|
|
805
870
|
color: rgb(235, 245, 253);
|
|
871
|
+
transition-property: color, background-color, border-color;
|
|
872
|
+
transition-duration: 150ms;
|
|
873
|
+
transition-timing-function: ease-out;
|
|
806
874
|
}
|
|
807
875
|
.ilo--button--alert:active.ilo--button--small {
|
|
808
876
|
box-shadow: none;
|
|
@@ -824,7 +892,7 @@ body {
|
|
|
824
892
|
|
|
825
893
|
/**
|
|
826
894
|
* Do not edit directly
|
|
827
|
-
* Generated on Wed,
|
|
895
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
828
896
|
*/
|
|
829
897
|
/**
|
|
830
898
|
* TOKENS:
|
|
@@ -954,7 +1022,7 @@ body {
|
|
|
954
1022
|
|
|
955
1023
|
/**
|
|
956
1024
|
* Do not edit directly
|
|
957
|
-
* Generated on Wed,
|
|
1025
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
958
1026
|
*/
|
|
959
1027
|
/**
|
|
960
1028
|
* TOKENS:
|
|
@@ -965,12 +1033,15 @@ body {
|
|
|
965
1033
|
.ilo--card {
|
|
966
1034
|
margin: 0;
|
|
967
1035
|
}
|
|
1036
|
+
.right-to-left .ilo--card {
|
|
1037
|
+
text-align: right;
|
|
1038
|
+
}
|
|
968
1039
|
.ilo--card--action:hover, .ilo--card--action:focus {
|
|
969
1040
|
background: rgb(255, 255, 255);
|
|
970
1041
|
color: rgb(30, 45, 190);
|
|
971
1042
|
text-decoration: none;
|
|
972
1043
|
}
|
|
973
|
-
.ilo--card--action:hover .ilo--card--dark, .ilo--card--action:focus .ilo--card--dark {
|
|
1044
|
+
.ilo--card--action:hover .ilo--card--dark:not(.ilo--card--detail):not(.ilo--card--data):not(.ilo--card--multilink), .ilo--card--action:focus .ilo--card--dark:not(.ilo--card--detail):not(.ilo--card--data):not(.ilo--card--multilink) {
|
|
974
1045
|
background: rgb(255, 255, 255);
|
|
975
1046
|
}
|
|
976
1047
|
.ilo--card--action:hover .ilo--card--eyebrow, .ilo--card--action:focus .ilo--card--eyebrow {
|
|
@@ -999,63 +1070,76 @@ body {
|
|
|
999
1070
|
width: 100%;
|
|
1000
1071
|
z-index: 2;
|
|
1001
1072
|
}
|
|
1073
|
+
.ilo--card--link--text {
|
|
1074
|
+
width: 1px;
|
|
1075
|
+
height: 1px;
|
|
1076
|
+
margin: -1px;
|
|
1077
|
+
padding: 0;
|
|
1078
|
+
border: 0;
|
|
1079
|
+
position: absolute;
|
|
1080
|
+
clip: rect(0 0 0 0);
|
|
1081
|
+
overflow: hidden;
|
|
1082
|
+
}
|
|
1002
1083
|
.ilo--card--light {
|
|
1003
1084
|
background: rgb(255, 255, 255);
|
|
1004
1085
|
}
|
|
1005
|
-
.ilo--card--dark {
|
|
1086
|
+
.ilo--card--dark:not(.ilo--card--detail):not(.ilo--card--data):not(.ilo--card--multilink) {
|
|
1006
1087
|
background: rgb(35, 0, 80);
|
|
1007
1088
|
}
|
|
1008
|
-
.ilo--card--dark .ilo--card--eyebrow {
|
|
1089
|
+
.ilo--card--dark:not(.ilo--card--detail):not(.ilo--card--data):not(.ilo--card--multilink) .ilo--card--eyebrow {
|
|
1009
1090
|
color: rgb(237, 240, 242);
|
|
1010
1091
|
}
|
|
1011
|
-
.ilo--card--dark .ilo--card--title {
|
|
1092
|
+
.ilo--card--dark:not(.ilo--card--detail):not(.ilo--card--data):not(.ilo--card--multilink) .ilo--card--title {
|
|
1012
1093
|
color: rgb(255, 255, 255);
|
|
1013
1094
|
}
|
|
1014
|
-
.ilo--card--dark .ilo--card--intro {
|
|
1095
|
+
.ilo--card--dark:not(.ilo--card--detail):not(.ilo--card--data):not(.ilo--card--multilink) .ilo--card--intro {
|
|
1015
1096
|
color: rgb(237, 240, 242);
|
|
1016
1097
|
}
|
|
1017
|
-
.ilo--card--dark .ilo--card--date {
|
|
1098
|
+
.ilo--card--dark:not(.ilo--card--detail):not(.ilo--card--data):not(.ilo--card--multilink) .ilo--card--date {
|
|
1018
1099
|
color: rgb(237, 240, 242);
|
|
1019
1100
|
}
|
|
1020
|
-
.ilo--card--dark .ilo--card--eventdate {
|
|
1101
|
+
.ilo--card--dark:not(.ilo--card--detail):not(.ilo--card--data):not(.ilo--card--multilink) .ilo--card--eventdate {
|
|
1021
1102
|
color: rgb(237, 240, 242);
|
|
1022
1103
|
}
|
|
1023
|
-
.ilo--card--cornercut {
|
|
1024
|
-
margin-top:
|
|
1025
|
-
padding-top: 0
|
|
1104
|
+
.ilo--card--cornercut:not(.ilo--card--multilink):not(.ilo--card--detail):not(.ilo--card--feature) {
|
|
1105
|
+
margin-top: 2.1436227224rem;
|
|
1106
|
+
padding-top: 0;
|
|
1026
1107
|
position: relative;
|
|
1027
1108
|
}
|
|
1028
1109
|
@media screen and (min-width: 610px) {
|
|
1029
|
-
.ilo--card--cornercut {
|
|
1030
|
-
margin-top:
|
|
1110
|
+
.ilo--card--cornercut:not(.ilo--card--multilink):not(.ilo--card--detail):not(.ilo--card--feature) {
|
|
1111
|
+
margin-top: 2.5723472669rem;
|
|
1031
1112
|
}
|
|
1032
1113
|
}
|
|
1033
1114
|
@media screen and (min-width: 1024px) {
|
|
1034
|
-
.ilo--card--cornercut {
|
|
1035
|
-
margin-top:
|
|
1115
|
+
.ilo--card--cornercut:not(.ilo--card--multilink):not(.ilo--card--detail):not(.ilo--card--feature) {
|
|
1116
|
+
margin-top: 3.4297963558rem;
|
|
1036
1117
|
}
|
|
1037
1118
|
}
|
|
1038
|
-
.ilo--card--cornercut::before {
|
|
1119
|
+
.ilo--card--cornercut:not(.ilo--card--multilink):not(.ilo--card--detail):not(.ilo--card--feature)::before {
|
|
1039
1120
|
background: inherit;
|
|
1040
1121
|
clip-path: polygon(90% 0, 100% 100%, 100% 100%, 0% 100%, 0% 0%);
|
|
1041
1122
|
content: "";
|
|
1042
1123
|
display: block;
|
|
1043
|
-
height:
|
|
1124
|
+
height: 2.1436227224rem;
|
|
1044
1125
|
left: 0;
|
|
1045
1126
|
position: absolute;
|
|
1046
|
-
top: -
|
|
1127
|
+
top: -2.127545552rem;
|
|
1047
1128
|
width: 100%;
|
|
1048
1129
|
}
|
|
1130
|
+
.right-to-left .ilo--card--cornercut:not(.ilo--card--multilink):not(.ilo--card--detail):not(.ilo--card--feature)::before {
|
|
1131
|
+
clip-path: polygon(100% 0, 100% 100%, 100% 100%, 0% 100%, 10% 0%);
|
|
1132
|
+
}
|
|
1049
1133
|
@media screen and (min-width: 610px) {
|
|
1050
|
-
.ilo--card--cornercut::before {
|
|
1051
|
-
height:
|
|
1052
|
-
top: -
|
|
1134
|
+
.ilo--card--cornercut:not(.ilo--card--multilink):not(.ilo--card--detail):not(.ilo--card--feature)::before {
|
|
1135
|
+
height: 2.5723472669rem;
|
|
1136
|
+
top: -2.5562700965rem;
|
|
1053
1137
|
}
|
|
1054
1138
|
}
|
|
1055
1139
|
@media screen and (min-width: 1024px) {
|
|
1056
|
-
.ilo--card--cornercut::before {
|
|
1057
|
-
height:
|
|
1058
|
-
top: -
|
|
1140
|
+
.ilo--card--cornercut:not(.ilo--card--multilink):not(.ilo--card--detail):not(.ilo--card--feature)::before {
|
|
1141
|
+
height: 3.4297963558rem;
|
|
1142
|
+
top: -3.4137191854rem;
|
|
1059
1143
|
}
|
|
1060
1144
|
}
|
|
1061
1145
|
.ilo--card--eyebrow {
|
|
@@ -1115,25 +1199,116 @@ body {
|
|
|
1115
1199
|
z-index: 2;
|
|
1116
1200
|
}
|
|
1117
1201
|
.ilo--card--multilink {
|
|
1118
|
-
padding:
|
|
1202
|
+
padding: 1.2861736334rem;
|
|
1203
|
+
}
|
|
1204
|
+
.ilo--card--multilink .ilo--card--image--wrapper {
|
|
1205
|
+
display: none;
|
|
1206
|
+
}
|
|
1207
|
+
.ilo--card--multilink .ilo--card--content .ilo--card--image--wrapper {
|
|
1208
|
+
display: block;
|
|
1119
1209
|
}
|
|
1120
1210
|
@media screen and (min-width: 610px) {
|
|
1121
1211
|
.ilo--card--multilink {
|
|
1122
|
-
padding:
|
|
1212
|
+
padding: 2.1436227224rem;
|
|
1123
1213
|
}
|
|
1124
1214
|
}
|
|
1125
1215
|
@media screen and (min-width: 1024px) {
|
|
1126
1216
|
.ilo--card--multilink {
|
|
1127
|
-
padding:
|
|
1217
|
+
padding: 3.0010718114rem 2.5723472669rem;
|
|
1128
1218
|
}
|
|
1129
1219
|
}
|
|
1130
|
-
.ilo--card--
|
|
1131
|
-
|
|
1132
|
-
margin:
|
|
1220
|
+
.ilo--card--multilink .ilo--card--title {
|
|
1221
|
+
color: rgb(45, 45, 45);
|
|
1222
|
+
margin-bottom: 0.7188906752rem;
|
|
1223
|
+
}
|
|
1224
|
+
.ilo--card--multilink .ilo--card--intro {
|
|
1225
|
+
color: rgb(45, 45, 45);
|
|
1133
1226
|
}
|
|
1134
|
-
.ilo--card--
|
|
1227
|
+
.ilo--card--multilink.ilo--card--dark {
|
|
1228
|
+
background: rgb(255, 255, 255);
|
|
1229
|
+
}
|
|
1230
|
+
.ilo--card--multilink.ilo--card--dark .ilo--card--title {
|
|
1231
|
+
color: rgb(45, 45, 45);
|
|
1232
|
+
}
|
|
1233
|
+
.ilo--card--multilink.ilo--card--dark .ilo--card--intro {
|
|
1234
|
+
color: rgb(45, 45, 45);
|
|
1235
|
+
}
|
|
1236
|
+
.ilo--card--multilink.ilo--card--wide {
|
|
1237
|
+
padding: 2.1436227224rem 1.2861736334rem 2.5723472669rem;
|
|
1238
|
+
}
|
|
1239
|
+
@media screen and (min-width: 610px) {
|
|
1240
|
+
.ilo--card--multilink.ilo--card--wide {
|
|
1241
|
+
padding: 3.0010718114rem 2.5723472669rem;
|
|
1242
|
+
}
|
|
1243
|
+
.ilo--card--multilink.ilo--card--wide.ilo--card--right .ilo--card--wrap {
|
|
1244
|
+
flex-direction: row-reverse;
|
|
1245
|
+
}
|
|
1246
|
+
.right-to-left .ilo--card--multilink.ilo--card--wide.ilo--card--right .ilo--card--wrap {
|
|
1247
|
+
flex-direction: row;
|
|
1248
|
+
}
|
|
1249
|
+
.ilo--card--multilink.ilo--card--wide .ilo--card--wrap {
|
|
1250
|
+
display: flex;
|
|
1251
|
+
column-gap: 1.7148981779rem;
|
|
1252
|
+
}
|
|
1253
|
+
.right-to-left .ilo--card--multilink.ilo--card--wide .ilo--card--wrap {
|
|
1254
|
+
flex-direction: row-reverse;
|
|
1255
|
+
}
|
|
1256
|
+
.ilo--card--multilink.ilo--card--wide .ilo--card--image--wrapper {
|
|
1257
|
+
display: block;
|
|
1258
|
+
width: 50%;
|
|
1259
|
+
}
|
|
1260
|
+
.ilo--card--multilink.ilo--card--wide .ilo--card--content {
|
|
1261
|
+
width: 50%;
|
|
1262
|
+
}
|
|
1263
|
+
.ilo--card--multilink.ilo--card--wide .ilo--card--content .ilo--card--image--wrapper {
|
|
1264
|
+
display: none;
|
|
1265
|
+
}
|
|
1266
|
+
}
|
|
1267
|
+
.ilo--card--multilink.ilo--card--standard {
|
|
1268
|
+
padding: 2.5723472669rem 2.1436227224rem;
|
|
1269
|
+
}
|
|
1270
|
+
@media screen and (min-width: 610px) {
|
|
1271
|
+
.ilo--card--multilink.ilo--card--standard {
|
|
1272
|
+
padding: 2.5723472669rem 2.1436227224rem;
|
|
1273
|
+
}
|
|
1274
|
+
}
|
|
1275
|
+
@media screen and (min-width: 1024px) {
|
|
1276
|
+
.ilo--card--multilink.ilo--card--standard {
|
|
1277
|
+
padding: 2.5723472669rem 2.1436227224rem;
|
|
1278
|
+
}
|
|
1279
|
+
}
|
|
1280
|
+
.ilo--card--multilink.ilo--card--narrow {
|
|
1281
|
+
padding: 2.1436227224rem 1.2861736334rem 2.5723472669rem;
|
|
1282
|
+
}
|
|
1283
|
+
.ilo--card--multilink.ilo--card--narrow .ilo--card--image--wrapper {
|
|
1135
1284
|
display: none;
|
|
1136
1285
|
}
|
|
1286
|
+
.ilo--card--multilink.ilo--card--narrow .ilo--card--content .ilo--card--image--wrapper {
|
|
1287
|
+
display: block;
|
|
1288
|
+
margin-bottom: 1.2861736334rem;
|
|
1289
|
+
}
|
|
1290
|
+
@media screen and (min-width: 610px) {
|
|
1291
|
+
.ilo--card--multilink.ilo--card--narrow {
|
|
1292
|
+
padding: 2.1436227224rem 1.2861736334rem 2.5723472669rem;
|
|
1293
|
+
}
|
|
1294
|
+
}
|
|
1295
|
+
@media screen and (min-width: 1024px) {
|
|
1296
|
+
.ilo--card--multilink.ilo--card--narrow {
|
|
1297
|
+
padding: 2.1436227224rem 1.2861736334rem 2.5723472669rem;
|
|
1298
|
+
}
|
|
1299
|
+
}
|
|
1300
|
+
.ilo--card--multilink .ilo--link-list {
|
|
1301
|
+
margin-top: 1.8756698821rem;
|
|
1302
|
+
}
|
|
1303
|
+
.ilo--card--detail {
|
|
1304
|
+
border-bottom: 0.1607717042rem solid rgb(237, 240, 242);
|
|
1305
|
+
padding: 1.2861736334rem 0;
|
|
1306
|
+
}
|
|
1307
|
+
@media screen and (min-width: 1024px) {
|
|
1308
|
+
.ilo--card--detail {
|
|
1309
|
+
padding: 1.7148981779rem 0;
|
|
1310
|
+
}
|
|
1311
|
+
}
|
|
1137
1312
|
.ilo--card--detail:hover picture::before, .ilo--card--detail:focus picture::before {
|
|
1138
1313
|
opacity: 0.4;
|
|
1139
1314
|
z-index: 2;
|
|
@@ -1161,31 +1336,29 @@ body {
|
|
|
1161
1336
|
.ilo--card--detail .ilo--card--wrap {
|
|
1162
1337
|
display: flex;
|
|
1163
1338
|
}
|
|
1339
|
+
.right-to-left .ilo--card--detail .ilo--card--wrap {
|
|
1340
|
+
flex-direction: row-reverse;
|
|
1341
|
+
}
|
|
1164
1342
|
.ilo--card--detail .ilo--card--image {
|
|
1165
1343
|
object-fit: contain;
|
|
1166
|
-
width:
|
|
1344
|
+
width: 4.1264737406rem;
|
|
1167
1345
|
}
|
|
1168
1346
|
@media screen and (min-width: 1024px) {
|
|
1169
1347
|
.ilo--card--detail .ilo--card--image {
|
|
1170
|
-
width:
|
|
1348
|
+
width: 10.718113612rem;
|
|
1171
1349
|
}
|
|
1172
1350
|
}
|
|
1173
1351
|
.ilo--card--detail .ilo--card--image--wrapper {
|
|
1174
|
-
max-width:
|
|
1352
|
+
max-width: 4.1264737406rem;
|
|
1175
1353
|
width: 100%;
|
|
1176
1354
|
}
|
|
1177
1355
|
@media screen and (min-width: 1024px) {
|
|
1178
1356
|
.ilo--card--detail .ilo--card--image--wrapper {
|
|
1179
|
-
max-width:
|
|
1357
|
+
max-width: 10.718113612rem;
|
|
1180
1358
|
}
|
|
1181
1359
|
}
|
|
1182
1360
|
.ilo--card--detail .ilo--card--content {
|
|
1183
|
-
padding:
|
|
1184
|
-
}
|
|
1185
|
-
@media screen and (min-width: 1024px) {
|
|
1186
|
-
.ilo--card--detail .ilo--card--content {
|
|
1187
|
-
padding: 24px 24px 64px;
|
|
1188
|
-
}
|
|
1361
|
+
padding: 0 1.2861736334rem;
|
|
1189
1362
|
}
|
|
1190
1363
|
.ilo--card--detail .ilo--card--title {
|
|
1191
1364
|
font-size: 18.66px;
|
|
@@ -1204,7 +1377,7 @@ body {
|
|
|
1204
1377
|
letter-spacing: normal;
|
|
1205
1378
|
line-height: 23.36px;
|
|
1206
1379
|
margin-bottom: 0;
|
|
1207
|
-
padding-left:
|
|
1380
|
+
padding-left: 1.2861736334rem;
|
|
1208
1381
|
position: relative;
|
|
1209
1382
|
}
|
|
1210
1383
|
.ilo--card--detail .ilo--card--event-date::before {
|
|
@@ -1225,9 +1398,9 @@ body {
|
|
|
1225
1398
|
line-height: 23.36px;
|
|
1226
1399
|
}
|
|
1227
1400
|
.ilo--card--graphic {
|
|
1228
|
-
border-bottom:
|
|
1229
|
-
margin-top:
|
|
1230
|
-
padding: 0
|
|
1401
|
+
border-bottom: 0.1607717042rem solid rgb(184, 196, 204);
|
|
1402
|
+
margin-top: 2.1436227224rem;
|
|
1403
|
+
padding: 0 1.2861736334rem 2.1436227224rem;
|
|
1231
1404
|
position: relative;
|
|
1232
1405
|
}
|
|
1233
1406
|
.ilo--card--graphic::before {
|
|
@@ -1243,11 +1416,41 @@ body {
|
|
|
1243
1416
|
}
|
|
1244
1417
|
@media screen and (min-width: 610px) {
|
|
1245
1418
|
.ilo--card--graphic {
|
|
1246
|
-
padding: 0
|
|
1419
|
+
padding: 0 1.7148981779rem 2.1436227224rem;
|
|
1420
|
+
}
|
|
1421
|
+
}
|
|
1422
|
+
.ilo--card--graphic.ilo--card--wide {
|
|
1423
|
+
padding: 0 1.7148981779rem 2.1436227224rem;
|
|
1424
|
+
}
|
|
1425
|
+
@media screen and (min-width: 610px) {
|
|
1426
|
+
.ilo--card--graphic.ilo--card--wide {
|
|
1427
|
+
padding: 0 1.7148981779rem 2.1436227224rem;
|
|
1428
|
+
}
|
|
1429
|
+
}
|
|
1430
|
+
.ilo--card--graphic.ilo--card--standard {
|
|
1431
|
+
padding: 0 1.7148981779rem 2.1436227224rem;
|
|
1432
|
+
}
|
|
1433
|
+
@media screen and (min-width: 610px) {
|
|
1434
|
+
.ilo--card--graphic.ilo--card--standard {
|
|
1435
|
+
padding: 0 1.7148981779rem 2.1436227224rem;
|
|
1436
|
+
}
|
|
1437
|
+
}
|
|
1438
|
+
.ilo--card--graphic.ilo--card--narrow {
|
|
1439
|
+
padding: 0 1.2861736334rem 2.1436227224rem;
|
|
1440
|
+
}
|
|
1441
|
+
@media screen and (min-width: 610px) {
|
|
1442
|
+
.ilo--card--graphic.ilo--card--narrow {
|
|
1443
|
+
padding: 0 1.2861736334rem 2.1436227224rem;
|
|
1247
1444
|
}
|
|
1248
1445
|
}
|
|
1446
|
+
.ilo--card--graphic.ilo--card--narrow .ilo--card--title {
|
|
1447
|
+
font-size: 18.66px;
|
|
1448
|
+
letter-spacing: -0.035em;
|
|
1449
|
+
line-height: 24.26px;
|
|
1450
|
+
margin-bottom: 1.674953518rem;
|
|
1451
|
+
}
|
|
1249
1452
|
.ilo--card--graphic.ilo--card--dark {
|
|
1250
|
-
border-bottom:
|
|
1453
|
+
border-bottom: 0.1607717042rem solid rgb(150, 10, 85);
|
|
1251
1454
|
}
|
|
1252
1455
|
.ilo--card--graphic .ilo--card--eyebrow {
|
|
1253
1456
|
margin-bottom: 1.0110920672rem;
|
|
@@ -1270,20 +1473,71 @@ body {
|
|
|
1270
1473
|
margin-bottom: 1.4398166117rem;
|
|
1271
1474
|
}
|
|
1272
1475
|
.ilo--card--graphicpromo {
|
|
1273
|
-
max-width:
|
|
1274
|
-
padding:
|
|
1476
|
+
max-width: 49.3033226152rem;
|
|
1477
|
+
padding: 2.1436227224rem 1.2861736334rem;
|
|
1275
1478
|
width: 100%;
|
|
1276
1479
|
}
|
|
1277
1480
|
@media screen and (min-width: 610px) {
|
|
1278
1481
|
.ilo--card--graphicpromo {
|
|
1279
|
-
padding:
|
|
1482
|
+
padding: 2.5723472669rem;
|
|
1280
1483
|
}
|
|
1281
1484
|
}
|
|
1282
1485
|
@media screen and (min-width: 1024px) {
|
|
1283
1486
|
.ilo--card--graphicpromo {
|
|
1284
|
-
padding:
|
|
1487
|
+
padding: 3.4297963558rem 3.8585209003rem;
|
|
1488
|
+
}
|
|
1489
|
+
}
|
|
1490
|
+
.ilo--card--graphicpromo.ilo--card--wide {
|
|
1491
|
+
padding: 3.4297963558rem 3.8585209003rem;
|
|
1492
|
+
}
|
|
1493
|
+
@media screen and (min-width: 610px) {
|
|
1494
|
+
.ilo--card--graphicpromo.ilo--card--wide {
|
|
1495
|
+
padding: 3.4297963558rem 3.8585209003rem;
|
|
1496
|
+
}
|
|
1497
|
+
}
|
|
1498
|
+
@media screen and (min-width: 1024px) {
|
|
1499
|
+
.ilo--card--graphicpromo.ilo--card--wide {
|
|
1500
|
+
padding: 3.4297963558rem 3.8585209003rem;
|
|
1285
1501
|
}
|
|
1286
1502
|
}
|
|
1503
|
+
.ilo--card--graphicpromo.ilo--card--standard {
|
|
1504
|
+
padding: 2.5723472669rem;
|
|
1505
|
+
}
|
|
1506
|
+
@media screen and (min-width: 610px) {
|
|
1507
|
+
.ilo--card--graphicpromo.ilo--card--standard {
|
|
1508
|
+
padding: 2.5723472669rem;
|
|
1509
|
+
}
|
|
1510
|
+
}
|
|
1511
|
+
@media screen and (min-width: 1024px) {
|
|
1512
|
+
.ilo--card--graphicpromo.ilo--card--standard {
|
|
1513
|
+
padding: 2.5723472669rem;
|
|
1514
|
+
}
|
|
1515
|
+
}
|
|
1516
|
+
.ilo--card--graphicpromo.ilo--card--narrow {
|
|
1517
|
+
padding: 2.1436227224rem 1.2861736334rem;
|
|
1518
|
+
}
|
|
1519
|
+
@media screen and (min-width: 610px) {
|
|
1520
|
+
.ilo--card--graphicpromo.ilo--card--narrow {
|
|
1521
|
+
padding: 2.1436227224rem 1.2861736334rem;
|
|
1522
|
+
}
|
|
1523
|
+
}
|
|
1524
|
+
@media screen and (min-width: 1024px) {
|
|
1525
|
+
.ilo--card--graphicpromo.ilo--card--narrow {
|
|
1526
|
+
padding: 2.1436227224rem 1.2861736334rem;
|
|
1527
|
+
}
|
|
1528
|
+
}
|
|
1529
|
+
.ilo--card--graphicpromo.ilo--card--narrow .ilo--card--title {
|
|
1530
|
+
font-size: 29.16px;
|
|
1531
|
+
letter-spacing: -0.035em;
|
|
1532
|
+
line-height: 36.45px;
|
|
1533
|
+
margin-bottom: 0.5741425509rem;
|
|
1534
|
+
}
|
|
1535
|
+
.ilo--card--graphicpromo.ilo--card--narrow .ilo--card--intro {
|
|
1536
|
+
font-size: 16px;
|
|
1537
|
+
letter-spacing: normal;
|
|
1538
|
+
line-height: 23.36px;
|
|
1539
|
+
margin-bottom: 1.910132288rem;
|
|
1540
|
+
}
|
|
1287
1541
|
.ilo--card--graphicpromo.ilo--card--light:not(:hover) .ilo--card--title {
|
|
1288
1542
|
color: rgb(45, 45, 45);
|
|
1289
1543
|
}
|
|
@@ -1316,24 +1570,58 @@ body {
|
|
|
1316
1570
|
}
|
|
1317
1571
|
}
|
|
1318
1572
|
.ilo--card--factlist {
|
|
1319
|
-
|
|
1320
|
-
max-width:
|
|
1573
|
+
border-bottom: 0.1607717042rem solid rgb(184, 196, 204);
|
|
1574
|
+
max-width: 45.8735262594rem;
|
|
1575
|
+
padding: 0 1.2861736334rem 2.5723472669rem 1.2861736334rem;
|
|
1321
1576
|
}
|
|
1322
1577
|
.ilo--card--factlist::before {
|
|
1323
1578
|
clip-path: polygon(90% 0, 100% 100%, 100% 100%, 0% 100%, 0% 0%);
|
|
1324
|
-
height:
|
|
1325
|
-
top: -
|
|
1579
|
+
height: 2.1436227224rem;
|
|
1580
|
+
top: -2.127545552rem;
|
|
1326
1581
|
}
|
|
1327
1582
|
@media screen and (min-width: 1024px) {
|
|
1328
1583
|
.ilo--card--factlist {
|
|
1329
|
-
padding: 0
|
|
1584
|
+
padding: 0 2.1436227224rem 3.0010718114rem 2.1436227224rem;
|
|
1330
1585
|
}
|
|
1331
1586
|
.ilo--card--factlist::before {
|
|
1332
1587
|
clip-path: polygon(90% 0, 100% 100%, 100% 100%, 0% 100%, 0% 0%);
|
|
1333
|
-
height:
|
|
1334
|
-
top: -
|
|
1588
|
+
height: 2.5723472669rem;
|
|
1589
|
+
top: -2.5562700965rem;
|
|
1590
|
+
}
|
|
1591
|
+
}
|
|
1592
|
+
.ilo--card--factlist.ilo--card--wide {
|
|
1593
|
+
padding: 0 2.1436227224rem 3.0010718114rem 2.1436227224rem;
|
|
1594
|
+
}
|
|
1595
|
+
@media screen and (min-width: 610px) {
|
|
1596
|
+
.ilo--card--factlist.ilo--card--wide {
|
|
1597
|
+
padding: 0 2.1436227224rem 3.0010718114rem 2.1436227224rem;
|
|
1598
|
+
}
|
|
1599
|
+
}
|
|
1600
|
+
.ilo--card--factlist.ilo--card--standard {
|
|
1601
|
+
padding: 0 2.1436227224rem 3.0010718114rem 2.1436227224rem;
|
|
1602
|
+
}
|
|
1603
|
+
@media screen and (min-width: 610px) {
|
|
1604
|
+
.ilo--card--factlist.ilo--card--standard {
|
|
1605
|
+
padding: 0 2.1436227224rem 3.0010718114rem 2.1436227224rem;
|
|
1606
|
+
}
|
|
1607
|
+
}
|
|
1608
|
+
.ilo--card--factlist.ilo--card--narrow {
|
|
1609
|
+
padding: 0 1.2861736334rem 2.5723472669rem 1.2861736334rem;
|
|
1610
|
+
}
|
|
1611
|
+
@media screen and (min-width: 610px) {
|
|
1612
|
+
.ilo--card--factlist.ilo--card--narrow {
|
|
1613
|
+
padding: 0 1.2861736334rem 2.5723472669rem 1.2861736334rem;
|
|
1335
1614
|
}
|
|
1336
1615
|
}
|
|
1616
|
+
.ilo--card--factlist.ilo--card--dark {
|
|
1617
|
+
border-bottom: 0.1607717042rem solid rgb(250, 60, 75);
|
|
1618
|
+
}
|
|
1619
|
+
.ilo--card--factlist.ilo--card--dark .ilo--card--title {
|
|
1620
|
+
color: rgb(255, 255, 255);
|
|
1621
|
+
}
|
|
1622
|
+
.ilo--card--factlist.ilo--card--dark .ilo--list__item {
|
|
1623
|
+
color: rgb(255, 255, 255);
|
|
1624
|
+
}
|
|
1337
1625
|
.ilo--card--factlist .ilo--card--title {
|
|
1338
1626
|
color: rgb(45, 45, 45);
|
|
1339
1627
|
font-size: 23.32px;
|
|
@@ -1350,14 +1638,14 @@ body {
|
|
|
1350
1638
|
}
|
|
1351
1639
|
}
|
|
1352
1640
|
.ilo--card--stat {
|
|
1353
|
-
border-bottom:
|
|
1354
|
-
padding: 0
|
|
1641
|
+
border-bottom: 0.1607717042rem solid rgb(150, 10, 85);
|
|
1642
|
+
padding: 0 1.2861736334rem 1.2861736334rem 1.6077170418rem;
|
|
1355
1643
|
width: 100%;
|
|
1356
1644
|
}
|
|
1357
1645
|
.ilo--card--stat::before {
|
|
1358
1646
|
clip-path: polygon(75% 0, 100% 100%, 100% 100%, 0% 100%, 0% 0%);
|
|
1359
|
-
height:
|
|
1360
|
-
top: -
|
|
1647
|
+
height: 2.1436227224rem;
|
|
1648
|
+
top: -2.127545552rem;
|
|
1361
1649
|
}
|
|
1362
1650
|
.ilo--card--stat.ilo--card--blue {
|
|
1363
1651
|
background: rgb(235, 245, 253);
|
|
@@ -1376,6 +1664,9 @@ body {
|
|
|
1376
1664
|
flex-wrap: wrap;
|
|
1377
1665
|
height: 100%;
|
|
1378
1666
|
}
|
|
1667
|
+
.right-to-left .ilo--card--stat .ilo--card--content {
|
|
1668
|
+
flex-direction: row-reverse;
|
|
1669
|
+
}
|
|
1379
1670
|
.ilo--card--stat .ilo--card--title {
|
|
1380
1671
|
color: rgb(35, 0, 80);
|
|
1381
1672
|
font-size: 36.45px;
|
|
@@ -1400,24 +1691,24 @@ body {
|
|
|
1400
1691
|
}
|
|
1401
1692
|
.ilo--card--data {
|
|
1402
1693
|
background: rgb(235, 245, 253);
|
|
1403
|
-
border-bottom:
|
|
1404
|
-
max-width:
|
|
1405
|
-
padding: 0
|
|
1694
|
+
border-bottom: 0.1607717042rem solid #82afdc;
|
|
1695
|
+
max-width: 32.154340836rem;
|
|
1696
|
+
padding: 0 1.2861736334rem 3.0010718114rem;
|
|
1406
1697
|
}
|
|
1407
1698
|
.ilo--card--data::before {
|
|
1408
1699
|
clip-path: polygon(90% 0, 100% 100%, 100% 100%, 0% 100%, 0% 0%);
|
|
1409
|
-
height:
|
|
1410
|
-
top: -
|
|
1700
|
+
height: 2.1436227224rem;
|
|
1701
|
+
top: -2.127545552rem;
|
|
1411
1702
|
}
|
|
1412
1703
|
@media screen and (min-width: 1024px) {
|
|
1413
1704
|
.ilo--card--data::before {
|
|
1414
1705
|
clip-path: polygon(90% 0, 100% 100%, 100% 100%, 0% 100%, 0% 0%);
|
|
1415
|
-
height:
|
|
1416
|
-
top: -
|
|
1706
|
+
height: 2.5723472669rem;
|
|
1707
|
+
top: -2.5562700965rem;
|
|
1417
1708
|
}
|
|
1418
1709
|
}
|
|
1419
1710
|
.ilo--card--data .ilo--card--image--wrapper {
|
|
1420
|
-
width: max(
|
|
1711
|
+
width: max(10.9860664523rem, 50%);
|
|
1421
1712
|
}
|
|
1422
1713
|
.ilo--card--data--content-label {
|
|
1423
1714
|
font-size: 14.93px;
|
|
@@ -1436,7 +1727,7 @@ body {
|
|
|
1436
1727
|
font-weight: 500;
|
|
1437
1728
|
}
|
|
1438
1729
|
.ilo--card--data--content-files {
|
|
1439
|
-
margin-bottom:
|
|
1730
|
+
margin-bottom: 2.1436227224rem;
|
|
1440
1731
|
}
|
|
1441
1732
|
.ilo--card--data .ilo--link {
|
|
1442
1733
|
font-size: 18.66px;
|
|
@@ -1444,23 +1735,73 @@ body {
|
|
|
1444
1735
|
line-height: 24.26px;
|
|
1445
1736
|
}
|
|
1446
1737
|
.ilo--card--data--file {
|
|
1447
|
-
margin:
|
|
1738
|
+
margin: 0.2143622722rem 0.4287245445rem 0.2143622722rem 0;
|
|
1448
1739
|
}
|
|
1449
1740
|
.ilo--card--data--file:last-of-type {
|
|
1450
1741
|
margin-right: 0;
|
|
1451
1742
|
}
|
|
1452
1743
|
.ilo--card--feature {
|
|
1744
|
+
border-bottom: 0.1607717042rem solid rgb(109, 109, 109);
|
|
1745
|
+
display: flex;
|
|
1453
1746
|
margin-top: 0;
|
|
1747
|
+
position: relative;
|
|
1454
1748
|
}
|
|
1455
1749
|
.ilo--card--feature::before {
|
|
1456
1750
|
display: none;
|
|
1457
1751
|
}
|
|
1752
|
+
.ilo--card--feature.ilo--card--dark {
|
|
1753
|
+
border-bottom: 0.1607717042rem solid rgb(150, 10, 85);
|
|
1754
|
+
}
|
|
1458
1755
|
.ilo--card--feature:hover picture::before, .ilo--card--feature:focus picture::before {
|
|
1459
1756
|
opacity: 0.4;
|
|
1460
1757
|
z-index: 1;
|
|
1461
1758
|
}
|
|
1759
|
+
.ilo--card--feature.ilo--card--narrow .ilo--card--wrap, .ilo--card--feature.ilo--card--standard .ilo--card--wrap {
|
|
1760
|
+
display: flex;
|
|
1761
|
+
flex-wrap: wrap;
|
|
1762
|
+
width: 100%;
|
|
1763
|
+
}
|
|
1764
|
+
.ilo--card--feature.ilo--card--narrow .ilo--card--content, .ilo--card--feature.ilo--card--standard .ilo--card--content {
|
|
1765
|
+
width: 100%;
|
|
1766
|
+
}
|
|
1767
|
+
.ilo--card--feature.ilo--card--narrow .ilo--card--image--wrapper, .ilo--card--feature.ilo--card--standard .ilo--card--image--wrapper {
|
|
1768
|
+
width: 100%;
|
|
1769
|
+
}
|
|
1770
|
+
@media screen and (min-width: 610px) {
|
|
1771
|
+
.ilo--card--feature.ilo--card--wide .ilo--card--wrap {
|
|
1772
|
+
display: flex;
|
|
1773
|
+
width: 100%;
|
|
1774
|
+
}
|
|
1775
|
+
.right-to-left .ilo--card--feature.ilo--card--wide .ilo--card--wrap {
|
|
1776
|
+
flex-direction: row-reverse;
|
|
1777
|
+
}
|
|
1778
|
+
.ilo--card--feature.ilo--card--wide .ilo--card--content {
|
|
1779
|
+
display: flex;
|
|
1780
|
+
flex-wrap: wrap;
|
|
1781
|
+
width: 50%;
|
|
1782
|
+
}
|
|
1783
|
+
.right-to-left .ilo--card--feature.ilo--card--wide .ilo--card--content {
|
|
1784
|
+
flex-direction: row-reverse;
|
|
1785
|
+
}
|
|
1786
|
+
.ilo--card--feature.ilo--card--wide .ilo--card--image--wrapper {
|
|
1787
|
+
width: 50%;
|
|
1788
|
+
}
|
|
1789
|
+
.ilo--card--feature.ilo--card--wide .ilo--card--image {
|
|
1790
|
+
object-fit: cover;
|
|
1791
|
+
}
|
|
1792
|
+
.ilo--card--feature.ilo--card--wide .ilo--card--date {
|
|
1793
|
+
align-self: flex-end;
|
|
1794
|
+
}
|
|
1795
|
+
.ilo--card--feature.ilo--card--wide .ilo--card--eyebrow {
|
|
1796
|
+
width: 100%;
|
|
1797
|
+
}
|
|
1798
|
+
.ilo--card--feature.ilo--card--wide .ilo--card--title {
|
|
1799
|
+
width: 100%;
|
|
1800
|
+
}
|
|
1801
|
+
}
|
|
1462
1802
|
.ilo--card--feature picture {
|
|
1463
1803
|
display: flex;
|
|
1804
|
+
height: 100%;
|
|
1464
1805
|
position: relative;
|
|
1465
1806
|
}
|
|
1466
1807
|
.ilo--card--feature picture::before {
|
|
@@ -1472,12 +1813,12 @@ body {
|
|
|
1472
1813
|
opacity: 0;
|
|
1473
1814
|
position: absolute;
|
|
1474
1815
|
top: 0;
|
|
1475
|
-
transition: opacity
|
|
1816
|
+
transition: opacity 150ms ease-in-out;
|
|
1476
1817
|
width: 100%;
|
|
1477
1818
|
z-index: -1;
|
|
1478
1819
|
}
|
|
1479
1820
|
.ilo--card--feature .ilo--card--content {
|
|
1480
|
-
padding:
|
|
1821
|
+
padding: 1.2861736334rem 1.2861736334rem 2.1436227224rem;
|
|
1481
1822
|
}
|
|
1482
1823
|
.ilo--card--feature .ilo--card--title {
|
|
1483
1824
|
font-size: 23.32px;
|
|
@@ -1499,7 +1840,7 @@ body {
|
|
|
1499
1840
|
|
|
1500
1841
|
/**
|
|
1501
1842
|
* Do not edit directly
|
|
1502
|
-
* Generated on Wed,
|
|
1843
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
1503
1844
|
*/
|
|
1504
1845
|
/**
|
|
1505
1846
|
* TOKENS:
|
|
@@ -1512,6 +1853,10 @@ body {
|
|
|
1512
1853
|
flex-wrap: wrap;
|
|
1513
1854
|
justify-content: space-between;
|
|
1514
1855
|
margin: auto;
|
|
1856
|
+
row-gap: 1.7148981779rem;
|
|
1857
|
+
}
|
|
1858
|
+
.right-to-left .ilo--cardgroup--inner {
|
|
1859
|
+
flex-direction: row-reverse;
|
|
1515
1860
|
}
|
|
1516
1861
|
.ilo--cardgroup--inner .ilo--card {
|
|
1517
1862
|
width: 100%;
|
|
@@ -1531,10 +1876,16 @@ body {
|
|
|
1531
1876
|
width: calc(25% - 16px);
|
|
1532
1877
|
}
|
|
1533
1878
|
}
|
|
1879
|
+
.ilo--cardgroup--button-wrap {
|
|
1880
|
+
display: flex;
|
|
1881
|
+
justify-content: center;
|
|
1882
|
+
margin-top: 3.4297963558rem;
|
|
1883
|
+
width: 100%;
|
|
1884
|
+
}
|
|
1534
1885
|
|
|
1535
1886
|
/**
|
|
1536
1887
|
* Do not edit directly
|
|
1537
|
-
* Generated on Wed,
|
|
1888
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
1538
1889
|
*/
|
|
1539
1890
|
/**
|
|
1540
1891
|
* TOKENS:
|
|
@@ -1638,7 +1989,7 @@ body {
|
|
|
1638
1989
|
|
|
1639
1990
|
/**
|
|
1640
1991
|
* Do not edit directly
|
|
1641
|
-
* Generated on Wed,
|
|
1992
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
1642
1993
|
*/
|
|
1643
1994
|
/**
|
|
1644
1995
|
* TOKENS:
|
|
@@ -1710,7 +2061,7 @@ body {
|
|
|
1710
2061
|
|
|
1711
2062
|
/**
|
|
1712
2063
|
* Do not edit directly
|
|
1713
|
-
* Generated on Wed,
|
|
2064
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
1714
2065
|
*/
|
|
1715
2066
|
/**
|
|
1716
2067
|
* TOKENS:
|
|
@@ -1720,7 +2071,7 @@ body {
|
|
|
1720
2071
|
*/
|
|
1721
2072
|
/**
|
|
1722
2073
|
* Do not edit directly
|
|
1723
|
-
* Generated on Wed,
|
|
2074
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
1724
2075
|
*/
|
|
1725
2076
|
/**
|
|
1726
2077
|
* TOKENS:
|
|
@@ -1730,7 +2081,7 @@ body {
|
|
|
1730
2081
|
*/
|
|
1731
2082
|
/**
|
|
1732
2083
|
* Do not edit directly
|
|
1733
|
-
* Generated on Wed,
|
|
2084
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
1734
2085
|
*/
|
|
1735
2086
|
/**
|
|
1736
2087
|
* TOKENS:
|
|
@@ -1740,7 +2091,7 @@ body {
|
|
|
1740
2091
|
*/
|
|
1741
2092
|
/**
|
|
1742
2093
|
* Do not edit directly
|
|
1743
|
-
* Generated on Wed,
|
|
2094
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
1744
2095
|
*/
|
|
1745
2096
|
/**
|
|
1746
2097
|
* TOKENS:
|
|
@@ -1839,7 +2190,7 @@ body {
|
|
|
1839
2190
|
|
|
1840
2191
|
/**
|
|
1841
2192
|
* Do not edit directly
|
|
1842
|
-
* Generated on Wed,
|
|
2193
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
1843
2194
|
*/
|
|
1844
2195
|
/**
|
|
1845
2196
|
* TOKENS:
|
|
@@ -1859,7 +2210,7 @@ body {
|
|
|
1859
2210
|
|
|
1860
2211
|
/**
|
|
1861
2212
|
* Do not edit directly
|
|
1862
|
-
* Generated on Wed,
|
|
2213
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
1863
2214
|
*/
|
|
1864
2215
|
/**
|
|
1865
2216
|
* TOKENS:
|
|
@@ -1934,7 +2285,7 @@ body {
|
|
|
1934
2285
|
|
|
1935
2286
|
/**
|
|
1936
2287
|
* Do not edit directly
|
|
1937
|
-
* Generated on Wed,
|
|
2288
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
1938
2289
|
*/
|
|
1939
2290
|
/**
|
|
1940
2291
|
* TOKENS:
|
|
@@ -1944,7 +2295,7 @@ body {
|
|
|
1944
2295
|
*/
|
|
1945
2296
|
/**
|
|
1946
2297
|
* Do not edit directly
|
|
1947
|
-
* Generated on Wed,
|
|
2298
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
1948
2299
|
*/
|
|
1949
2300
|
/**
|
|
1950
2301
|
* TOKENS:
|
|
@@ -1954,7 +2305,7 @@ body {
|
|
|
1954
2305
|
*/
|
|
1955
2306
|
/**
|
|
1956
2307
|
* Do not edit directly
|
|
1957
|
-
* Generated on Wed,
|
|
2308
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
1958
2309
|
*/
|
|
1959
2310
|
/**
|
|
1960
2311
|
* TOKENS:
|
|
@@ -2007,7 +2358,7 @@ body {
|
|
|
2007
2358
|
|
|
2008
2359
|
/**
|
|
2009
2360
|
* Do not edit directly
|
|
2010
|
-
* Generated on Wed,
|
|
2361
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
2011
2362
|
*/
|
|
2012
2363
|
/**
|
|
2013
2364
|
* TOKENS:
|
|
@@ -2072,7 +2423,7 @@ body {
|
|
|
2072
2423
|
|
|
2073
2424
|
/**
|
|
2074
2425
|
* Do not edit directly
|
|
2075
|
-
* Generated on Wed,
|
|
2426
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
2076
2427
|
*/
|
|
2077
2428
|
/**
|
|
2078
2429
|
* TOKENS:
|
|
@@ -2178,7 +2529,7 @@ body {
|
|
|
2178
2529
|
|
|
2179
2530
|
/**
|
|
2180
2531
|
* Do not edit directly
|
|
2181
|
-
* Generated on Wed,
|
|
2532
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
2182
2533
|
*/
|
|
2183
2534
|
/**
|
|
2184
2535
|
* TOKENS:
|
|
@@ -2195,10 +2546,45 @@ body {
|
|
|
2195
2546
|
line-height: 29.15px;
|
|
2196
2547
|
margin-bottom: 1.5763397642rem;
|
|
2197
2548
|
}
|
|
2198
|
-
|
|
2549
|
+
|
|
2550
|
+
/**
|
|
2551
|
+
* Do not edit directly
|
|
2552
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
2553
|
+
*/
|
|
2554
|
+
/**
|
|
2555
|
+
* TOKENS:
|
|
2556
|
+
*/
|
|
2557
|
+
/**
|
|
2558
|
+
* MAPS:
|
|
2559
|
+
*/
|
|
2560
|
+
/**
|
|
2561
|
+
* Do not edit directly
|
|
2562
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
2563
|
+
*/
|
|
2564
|
+
/**
|
|
2565
|
+
* TOKENS:
|
|
2566
|
+
*/
|
|
2567
|
+
/**
|
|
2568
|
+
* MAPS:
|
|
2569
|
+
*/
|
|
2570
|
+
@keyframes emptygradient {
|
|
2571
|
+
0% {
|
|
2572
|
+
opacity: 1;
|
|
2573
|
+
}
|
|
2574
|
+
100% {
|
|
2575
|
+
opacity: 0;
|
|
2576
|
+
}
|
|
2577
|
+
}
|
|
2578
|
+
@keyframes spin {
|
|
2579
|
+
100% {
|
|
2580
|
+
-moz-transform: rotate(360deg);
|
|
2581
|
+
-webkit-transform: rotate(360deg);
|
|
2582
|
+
transform: rotate(360deg);
|
|
2583
|
+
}
|
|
2584
|
+
}
|
|
2199
2585
|
/**
|
|
2200
2586
|
* Do not edit directly
|
|
2201
|
-
* Generated on Wed,
|
|
2587
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
2202
2588
|
*/
|
|
2203
2589
|
/**
|
|
2204
2590
|
* TOKENS:
|
|
@@ -2206,10 +2592,13 @@ body {
|
|
|
2206
2592
|
/**
|
|
2207
2593
|
* MAPS:
|
|
2208
2594
|
*/
|
|
2595
|
+
.ilo--footer {
|
|
2596
|
+
border-bottom: 0.1607717042rem solid rgb(184, 196, 204);
|
|
2597
|
+
}
|
|
2209
2598
|
.ilo--footer--main {
|
|
2210
2599
|
background-color: rgb(35, 0, 80);
|
|
2211
2600
|
border-bottom: 0.3215434084rem solid rgb(250, 60, 75);
|
|
2212
|
-
padding: 0 1.7148981779rem;
|
|
2601
|
+
padding: 2.1436227224rem 1.7148981779rem 0 1.7148981779rem;
|
|
2213
2602
|
position: relative;
|
|
2214
2603
|
}
|
|
2215
2604
|
.ilo--footer--main > * {
|
|
@@ -2217,19 +2606,26 @@ body {
|
|
|
2217
2606
|
z-index: 1;
|
|
2218
2607
|
}
|
|
2219
2608
|
.ilo--footer--main:after {
|
|
2220
|
-
background-
|
|
2221
|
-
|
|
2609
|
+
background-size: contain;
|
|
2610
|
+
background-repeat: no-repeat;
|
|
2611
|
+
bottom: 0;
|
|
2222
2612
|
content: "";
|
|
2223
2613
|
height: 100%;
|
|
2224
|
-
|
|
2614
|
+
min-width: 409.5px;
|
|
2615
|
+
right: 0;
|
|
2225
2616
|
position: absolute;
|
|
2226
|
-
|
|
2227
|
-
width:
|
|
2617
|
+
transform: scaleY(-1);
|
|
2618
|
+
width: 28.8%;
|
|
2228
2619
|
z-index: 0;
|
|
2620
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 409.5 236'%3e%3cpath fill='rgb(30, 45, 190)' d='M409.5 236c-1.7-.6-3.5-1.1-5.1-2-5.3-2.9-10.5-5.9-15.7-9-4.8-2.8-9.5-5.8-14.3-8.7-4.3-2.6-8.5-5.1-12.9-7.5-4.9-2.7-10-5.2-14.9-8-3.8-2.2-7.4-4.8-11.2-7.1-5.7-3.3-11.6-6.4-17.3-9.7-3.9-2.2-7.6-4.6-11.5-6.9-4-2.3-8.1-4.4-12-6.7-3.8-2.2-7.5-4.5-11.3-6.7-2.4-1.4-4.9-2.5-7.3-3.9-2.8-1.6-5.5-3.3-8.2-4.9-3.8-2.3-7.5-4.6-11.4-6.8-3.9-2.3-7.9-4.5-11.9-6.8-6.1-3.5-12.2-6.8-18.2-10.4-4.8-2.8-9.4-5.8-14.2-8.5-4.8-2.8-9.8-5.3-14.6-8.1-3.6-2.1-7.2-4.3-10.8-6.4-5.9-3.5-11.8-6.9-17.7-10.3-4.8-2.8-9.6-5.7-14.4-8.5-3.8-2.2-7.8-4.4-11.6-6.6-3-1.7-5.9-3.6-8.9-5.4-3-1.8-6.2-3.4-9.2-5.1-3.9-2.2-7.8-4.4-11.6-6.6-4.1-2.4-8.1-4.8-12.2-7.2-5.8-3.4-11.5-6.9-17.3-10.2-4.9-2.8-9.9-5.4-14.7-8.2-3.7-2.1-7.3-4.5-11-6.6-4.9-2.9-9.8-5.6-14.7-8.4-4.7-2.7-9.4-5.6-14.2-8.3-5-2.9-10-5.7-15-8.6C10.3 5.6 6.6 3.3 2.8 1 2 .5 1 .3 0 0h409.5v236z'/%3e%3c/svg%3e");
|
|
2621
|
+
}
|
|
2622
|
+
.ilo--footer--logo {
|
|
2623
|
+
max-width: 100%;
|
|
2229
2624
|
}
|
|
2230
2625
|
.ilo--footer--secondary {
|
|
2231
2626
|
background-color: rgb(255, 255, 255);
|
|
2232
2627
|
padding: 1.9292604502rem 0.857449089rem 0 0.857449089rem;
|
|
2628
|
+
min-height: 3.0010718114rem;
|
|
2233
2629
|
}
|
|
2234
2630
|
.ilo--footer--headline {
|
|
2235
2631
|
color: rgb(255, 255, 255);
|
|
@@ -2276,15 +2672,6 @@ body {
|
|
|
2276
2672
|
display: flex;
|
|
2277
2673
|
margin-bottom: 2.4115755627rem;
|
|
2278
2674
|
}
|
|
2279
|
-
.ilo--footer .social--links--item {
|
|
2280
|
-
height: 0.857449089rem;
|
|
2281
|
-
margin-right: 1.0718113612rem;
|
|
2282
|
-
position: relative;
|
|
2283
|
-
width: 0.857449089rem;
|
|
2284
|
-
}
|
|
2285
|
-
.ilo--footer .social--links--item:last-of-type {
|
|
2286
|
-
margin-right: none;
|
|
2287
|
-
}
|
|
2288
2675
|
.ilo--footer .social--links--link {
|
|
2289
2676
|
background-repeat: no-repeat;
|
|
2290
2677
|
background-size: contain;
|
|
@@ -2310,6 +2697,35 @@ body {
|
|
|
2310
2697
|
.ilo--footer .social--links--link.youtube {
|
|
2311
2698
|
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 12'%3e%3cpath fill='rgb(255, 255, 255)' d='M15.8 2.8C15.6 1.5 15 0.6 13.6 0.4C11.4 8.9407e-08 8 0 8 0C8 0 4.6 8.9407e-08 2.4 0.4C1 0.6 0.3 1.5 0.2 2.8C0 4.1 0 6 0 6C0 6 0 7.9 0.2 9.2C0.4 10.5 1 11.4 2.4 11.6C4.6 12 8 12 8 12C8 12 11.4 12 13.6 11.6C15 11.3 15.6 10.5 15.8 9.2C16 7.9 16 6 16 6C16 6 16 4.1 15.8 2.8ZM6 9V3L11 6L6 9Z'/%3e%3c/svg%3e");
|
|
2312
2699
|
}
|
|
2700
|
+
.ilo--footer .social--links--item {
|
|
2701
|
+
align-items: center;
|
|
2702
|
+
background-color: transparent;
|
|
2703
|
+
border-radius: 0.1607717042rem;
|
|
2704
|
+
display: flex;
|
|
2705
|
+
height: 1.2861736334rem;
|
|
2706
|
+
justify-content: center;
|
|
2707
|
+
margin-right: 1.0718113612rem;
|
|
2708
|
+
position: relative;
|
|
2709
|
+
width: 1.2861736334rem;
|
|
2710
|
+
}
|
|
2711
|
+
.ilo--footer .social--links--item:last-of-type {
|
|
2712
|
+
margin-right: none;
|
|
2713
|
+
}
|
|
2714
|
+
.ilo--footer .social--links--item:hover, .ilo--footer .social--links--item:focus {
|
|
2715
|
+
background-color: rgb(235, 245, 253);
|
|
2716
|
+
}
|
|
2717
|
+
.ilo--footer .social--links--item:hover .social--links--link.facebook, .ilo--footer .social--links--item:focus .social--links--link.facebook {
|
|
2718
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='rgb(30, 45, 190)' d='M15.9999 8.02727C15.9989 6.4988 15.56 5.00262 14.7352 3.71579C13.9104 2.42896 12.7343 1.40534 11.3459 0.766059C9.95758 0.126781 8.41516 -0.101394 6.90119 0.108536C5.38721 0.318466 3.96507 0.957714 2.80304 1.95063C1.64102 2.94355 0.787752 4.24858 0.344223 5.71127C-0.0993054 7.17397 -0.114533 8.73312 0.300343 10.2042C0.715219 11.6753 1.54283 12.9967 2.68524 14.0121C3.82766 15.0276 5.23704 15.6945 6.74663 15.9339V10.3406H4.74664V8.02727H6.74663V6.26727C6.74663 4.26727 7.94662 3.15393 9.77328 3.15393C10.3719 3.16359 10.9691 3.21707 11.5599 3.31393V5.31393H10.5533C10.4026 5.29332 10.2494 5.30269 10.1024 5.34152C9.95536 5.38035 9.81748 5.44787 9.69666 5.54019C9.57584 5.63251 9.47446 5.74781 9.39837 5.87945C9.32228 6.0111 9.27297 6.15649 9.25328 6.30727C9.24653 6.39158 9.24653 6.47629 9.25328 6.5606V8.0606H11.4666L11.1133 10.3739H9.24661V15.9673C11.1354 15.6693 12.855 14.7047 14.0939 13.2481C15.3327 11.7915 16.0089 9.93941 15.9999 8.02727Z'/%3e%3c/svg%3e");
|
|
2719
|
+
}
|
|
2720
|
+
.ilo--footer .social--links--item:hover .social--links--link.instagram, .ilo--footer .social--links--item:focus .social--links--link.instagram {
|
|
2721
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17 16'%3e%3cpath fill='rgb(30, 45, 190)' d='M8.998 1.441c2.136 0 2.389.009 3.233.047.507.006 1.01.1 1.485.276.348.128.662.334.92.6.267.258.472.572.6.92.177.475.27.978.276 1.485.038.844.047 1.1.047 3.233s-.009 2.389-.047 3.233c-.006.507-.1 1.01-.276 1.485a2.644 2.644 0 0 1-1.518 1.518 4.42 4.42 0 0 1-1.485.276c-.844.038-1.1.047-3.233.047s-2.389-.009-3.233-.047a4.42 4.42 0 0 1-1.485-.276 2.472 2.472 0 0 1-.92-.6 2.472 2.472 0 0 1-.6-.92 4.419 4.419 0 0 1-.276-1.485c-.038-.844-.047-1.1-.047-3.233s.009-2.389.047-3.233c.006-.507.1-1.01.276-1.485.129-.348.334-.662.6-.92.258-.266.572-.472.92-.6.476-.177.978-.27 1.485-.276.844-.038 1.1-.047 3.233-.047l-.002.002Zm0-1.441c-2.173 0-2.445.009-3.3.048a5.868 5.868 0 0 0-1.94.372c-.534.2-1.018.516-1.417.923-.407.4-.722.883-.923 1.417a5.868 5.868 0 0 0-.372 1.94C1.007 5.555.998 5.827.998 8s.01 2.445.048 3.3c.014.663.14 1.319.372 1.94.2.534.516 1.018.923 1.417.4.407.883.722 1.417.923a5.868 5.868 0 0 0 1.942.372c.853.039 1.125.048 3.298.048s2.445-.009 3.3-.048a5.867 5.867 0 0 0 1.942-.372 4.093 4.093 0 0 0 2.34-2.34 5.865 5.865 0 0 0 .372-1.942c.039-.853.048-1.125.048-3.3s-.009-2.445-.048-3.3a5.867 5.867 0 0 0-.374-1.938 3.907 3.907 0 0 0-.923-1.417A3.907 3.907 0 0 0 14.238.42a5.868 5.868 0 0 0-1.94-.372C11.443.009 11.171 0 8.998 0Z'/%3e%3cpath fill='rgb(30, 45, 190)' d='M8.999 3.892a4.108 4.108 0 1 0 0 8.216 4.108 4.108 0 0 0 0-8.216Zm0 6.775a2.667 2.667 0 1 1 0-5.333 2.667 2.667 0 0 1 0 5.333ZM13.269 4.69a.96.96 0 1 0 0-1.92.96.96 0 0 0 0 1.92Z'/%3e%3c/svg%3e");
|
|
2722
|
+
}
|
|
2723
|
+
.ilo--footer .social--links--item:hover .social--links--link.twitter, .ilo--footer .social--links--item:focus .social--links--link.twitter {
|
|
2724
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 14'%3e%3cpath fill='rgb(30, 45, 190)' d='M16 2.06654C15.4109 2.34447 14.7804 2.5246 14.1333 2.59987C14.8103 2.18143 15.3269 1.54744 15.6 0.799871C14.9662 1.19144 14.2656 1.46265 13.5333 1.59987C13.2304 1.26374 12.8602 0.995069 12.4468 0.811305C12.0333 0.62754 11.5858 0.532789 11.1333 0.533204C10.2675 0.534966 9.43763 0.879698 8.8254 1.49193C8.21316 2.10417 7.86843 2.93404 7.86667 3.79987C7.85257 4.04627 7.87504 4.29339 7.93333 4.53321C6.61791 4.47523 5.33022 4.13577 4.15716 3.53774C2.98411 2.93971 1.95297 2.09702 1.13333 1.06654C0.817783 1.56434 0.655503 2.14392 0.666667 2.7332C0.671269 3.27357 0.807176 3.80471 1.06268 4.28087C1.31818 4.75704 1.68562 5.16394 2.13333 5.46654C1.61599 5.47834 1.10639 5.33935 0.666667 5.06654V5.1332C0.659852 5.88583 0.915814 6.61725 1.39043 7.2014C1.86505 7.78554 2.52859 8.18581 3.26667 8.3332C2.98479 8.41509 2.69345 8.45991 2.4 8.46654C2.1977 8.47738 1.99499 8.45486 1.8 8.39987C1.99454 9.06013 2.39935 9.6388 2.95288 10.0479C3.50641 10.4571 4.17839 10.6743 4.86667 10.6665C3.703 11.5697 2.273 12.062 0.8 12.0665C0.531602 12.0775 0.262882 12.0551 0 11.9999C1.49363 12.9535 3.22789 13.4622 5 13.4665C6.22889 13.4781 7.44776 13.2446 8.58536 12.7797C9.72296 12.3147 10.7565 11.6277 11.6255 10.7587C12.4945 9.88967 13.1815 8.85616 13.6465 7.71856C14.1114 6.58096 14.3449 5.3621 14.3333 4.1332V3.7332C14.9691 3.26412 15.5309 2.70231 16 2.06654Z'/%3e%3c/svg%3e");
|
|
2725
|
+
}
|
|
2726
|
+
.ilo--footer .social--links--item:hover .social--links--link.youtube, .ilo--footer .social--links--item:focus .social--links--link.youtube {
|
|
2727
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 12'%3e%3cpath fill='rgb(30, 45, 190)' d='M15.8 2.8C15.6 1.5 15 0.6 13.6 0.4C11.4 8.9407e-08 8 0 8 0C8 0 4.6 8.9407e-08 2.4 0.4C1 0.6 0.3 1.5 0.2 2.8C0 4.1 0 6 0 6C0 6 0 7.9 0.2 9.2C0.4 10.5 1 11.4 2.4 11.6C4.6 12 8 12 8 12C8 12 11.4 12 13.6 11.6C15 11.3 15.6 10.5 15.8 9.2C16 7.9 16 6 16 6C16 6 16 4.1 15.8 2.8ZM6 9V3L11 6L6 9Z'/%3e%3c/svg%3e");
|
|
2728
|
+
}
|
|
2313
2729
|
.ilo--footer .legal,
|
|
2314
2730
|
.ilo--footer .secondarylinks {
|
|
2315
2731
|
color: rgb(109, 109, 109);
|
|
@@ -2329,20 +2745,35 @@ body {
|
|
|
2329
2745
|
}
|
|
2330
2746
|
.ilo--footer .secondarylinks--list--item a {
|
|
2331
2747
|
color: rgb(109, 109, 109);
|
|
2748
|
+
transition-property: color, border-color;
|
|
2749
|
+
transition-duration: 150ms;
|
|
2750
|
+
transition-timing-function: ease-out;
|
|
2332
2751
|
}
|
|
2333
2752
|
.ilo--footer .secondarylinks--list--item a:visited {
|
|
2334
2753
|
color: rgb(150, 10, 85);
|
|
2754
|
+
transition-property: color, border-color;
|
|
2755
|
+
transition-duration: 150ms;
|
|
2756
|
+
transition-timing-function: ease-out;
|
|
2335
2757
|
}
|
|
2336
2758
|
.ilo--footer .secondarylinks--list--item a:hover {
|
|
2337
2759
|
color: rgb(30, 45, 190);
|
|
2760
|
+
transition-property: color, border-color;
|
|
2761
|
+
transition-duration: 150ms;
|
|
2762
|
+
transition-timing-function: ease-out;
|
|
2338
2763
|
}
|
|
2339
2764
|
.ilo--footer .secondarylinks--list--item a:active {
|
|
2340
2765
|
color: rgb(35, 0, 80);
|
|
2341
2766
|
outline: none;
|
|
2767
|
+
transition-property: color, border-color;
|
|
2768
|
+
transition-duration: 150ms;
|
|
2769
|
+
transition-timing-function: ease-out;
|
|
2342
2770
|
}
|
|
2343
2771
|
.ilo--footer .secondarylinks--list--item a:focus {
|
|
2344
2772
|
color: rgb(35, 0, 80);
|
|
2345
2773
|
outline: none;
|
|
2774
|
+
transition-property: color, border-color;
|
|
2775
|
+
transition-duration: 150ms;
|
|
2776
|
+
transition-timing-function: ease-out;
|
|
2346
2777
|
}
|
|
2347
2778
|
.ilo--footer .anchorlink {
|
|
2348
2779
|
background: rgba(0, 0, 0, 0);
|
|
@@ -2379,7 +2810,9 @@ body {
|
|
|
2379
2810
|
border-bottom: 0.1071811361rem solid rgb(30, 45, 190);
|
|
2380
2811
|
color: rgb(30, 45, 190);
|
|
2381
2812
|
cursor: pointer;
|
|
2382
|
-
transition: background
|
|
2813
|
+
transition-property: color, background-color, border-color;
|
|
2814
|
+
transition-duration: 150ms;
|
|
2815
|
+
transition-timing-function: ease-out;
|
|
2383
2816
|
}
|
|
2384
2817
|
.ilo--footer .anchorlink:hover:after {
|
|
2385
2818
|
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 25'%3e%3cpath fill='rgb(30, 45, 190)' d='M4.00391 9.13792L4.99208 8.1499L12.0004 15.1571L19.0087 8.1499L19.9969 9.13792L12.498 16.6426C12.4328 16.7083 12.3553 16.7604 12.2699 16.796C12.1845 16.8316 12.0929 16.8499 12.0004 16.8499C11.9079 16.8499 11.8163 16.8316 11.7309 16.796C11.6455 16.7604 11.568 16.7083 11.5028 16.6426L4.00391 9.13792Z'/%3e%3c/svg%3e");
|
|
@@ -2439,6 +2872,12 @@ body {
|
|
|
2439
2872
|
grid-template-areas: "site-info address connect" "site-info links connect";
|
|
2440
2873
|
padding: 3.0010718114rem 3.7513397642rem 3.4297963558rem 3.7513397642rem;
|
|
2441
2874
|
}
|
|
2875
|
+
.ilo--footer--main:after {
|
|
2876
|
+
background-position: right top;
|
|
2877
|
+
bottom: auto;
|
|
2878
|
+
top: 0;
|
|
2879
|
+
transform: scaleY(1);
|
|
2880
|
+
}
|
|
2442
2881
|
.ilo--footer--logo {
|
|
2443
2882
|
width: 100%;
|
|
2444
2883
|
}
|
|
@@ -2471,10 +2910,49 @@ body {
|
|
|
2471
2910
|
top: 0;
|
|
2472
2911
|
}
|
|
2473
2912
|
}
|
|
2913
|
+
.right-to-left .ilo--footer * {
|
|
2914
|
+
text-align: right;
|
|
2915
|
+
}
|
|
2916
|
+
.right-to-left .ilo--footer .social--links {
|
|
2917
|
+
flex-direction: row-reverse;
|
|
2918
|
+
}
|
|
2919
|
+
.right-to-left .ilo--footer .social--links--link {
|
|
2920
|
+
text-indent: 999em;
|
|
2921
|
+
}
|
|
2922
|
+
.right-to-left .ilo--footer--main:after {
|
|
2923
|
+
bottom: 0;
|
|
2924
|
+
left: 0;
|
|
2925
|
+
right: auto;
|
|
2926
|
+
top: auto;
|
|
2927
|
+
transform: scale(-1, -1);
|
|
2928
|
+
}
|
|
2929
|
+
@media screen and (min-width: 610px) {
|
|
2930
|
+
.right-to-left .ilo--footer--main {
|
|
2931
|
+
grid-template-areas: "address site-info" "links site-info" "connect site-info";
|
|
2932
|
+
}
|
|
2933
|
+
}
|
|
2934
|
+
@media screen and (min-width: 1024px) {
|
|
2935
|
+
.right-to-left .ilo--footer--main {
|
|
2936
|
+
grid-template-columns: calc(32.5% + 64px) 25.1% 19.2%;
|
|
2937
|
+
grid-template-areas: "connect address site-info" "connect links site-info";
|
|
2938
|
+
}
|
|
2939
|
+
.right-to-left .ilo--footer--main:after {
|
|
2940
|
+
left: 0;
|
|
2941
|
+
right: auto;
|
|
2942
|
+
transform: scale(-1, 1);
|
|
2943
|
+
}
|
|
2944
|
+
.right-to-left .ilo--footer .connect {
|
|
2945
|
+
grid-template-columns: 60%, minmax(0, 40%);
|
|
2946
|
+
margin: 0 calc(18.9% + 64px) 0 0;
|
|
2947
|
+
}
|
|
2948
|
+
.right-to-left .ilo--footer .ilo--button {
|
|
2949
|
+
justify-self: end;
|
|
2950
|
+
}
|
|
2951
|
+
}
|
|
2474
2952
|
|
|
2475
2953
|
/**
|
|
2476
2954
|
* Do not edit directly
|
|
2477
|
-
* Generated on Wed,
|
|
2955
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
2478
2956
|
*/
|
|
2479
2957
|
/**
|
|
2480
2958
|
* TOKENS:
|
|
@@ -2597,7 +3075,7 @@ body {
|
|
|
2597
3075
|
|
|
2598
3076
|
/**
|
|
2599
3077
|
* Do not edit directly
|
|
2600
|
-
* Generated on Wed,
|
|
3078
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
2601
3079
|
*/
|
|
2602
3080
|
/**
|
|
2603
3081
|
* TOKENS:
|
|
@@ -2617,9 +3095,6 @@ body {
|
|
|
2617
3095
|
position: relative;
|
|
2618
3096
|
}
|
|
2619
3097
|
@media screen and (min-width: 1024px) {
|
|
2620
|
-
.ilo--hero--portal {
|
|
2621
|
-
padding-top: 128px;
|
|
2622
|
-
}
|
|
2623
3098
|
.ilo--hero--portal .ilo--image {
|
|
2624
3099
|
height: calc(100% - 80px);
|
|
2625
3100
|
left: 0;
|
|
@@ -2696,12 +3171,10 @@ body {
|
|
|
2696
3171
|
background-color: rgba(0, 0, 0, 0);
|
|
2697
3172
|
}
|
|
2698
3173
|
@media screen and (min-width: 1024px) {
|
|
2699
|
-
.ilo--hero--image {
|
|
2700
|
-
padding-top: 128px;
|
|
2701
|
-
}
|
|
2702
3174
|
.ilo--hero--image .ilo--image {
|
|
2703
3175
|
height: 100%;
|
|
2704
3176
|
max-height: 592px;
|
|
3177
|
+
overflow: hidden;
|
|
2705
3178
|
width: 100%;
|
|
2706
3179
|
}
|
|
2707
3180
|
.ilo--hero--image .ilo--image--wrapper {
|
|
@@ -2935,7 +3408,7 @@ body {
|
|
|
2935
3408
|
|
|
2936
3409
|
/**
|
|
2937
3410
|
* Do not edit directly
|
|
2938
|
-
* Generated on Wed,
|
|
3411
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
2939
3412
|
*/
|
|
2940
3413
|
/**
|
|
2941
3414
|
* TOKENS:
|
|
@@ -2981,7 +3454,7 @@ body {
|
|
|
2981
3454
|
|
|
2982
3455
|
/**
|
|
2983
3456
|
* Do not edit directly
|
|
2984
|
-
* Generated on Wed,
|
|
3457
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
2985
3458
|
*/
|
|
2986
3459
|
/**
|
|
2987
3460
|
* TOKENS:
|
|
@@ -3131,7 +3604,42 @@ body {
|
|
|
3131
3604
|
|
|
3132
3605
|
/**
|
|
3133
3606
|
* Do not edit directly
|
|
3134
|
-
* Generated on Wed,
|
|
3607
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
3608
|
+
*/
|
|
3609
|
+
/**
|
|
3610
|
+
* TOKENS:
|
|
3611
|
+
*/
|
|
3612
|
+
/**
|
|
3613
|
+
* MAPS:
|
|
3614
|
+
*/
|
|
3615
|
+
/**
|
|
3616
|
+
* Do not edit directly
|
|
3617
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
3618
|
+
*/
|
|
3619
|
+
/**
|
|
3620
|
+
* TOKENS:
|
|
3621
|
+
*/
|
|
3622
|
+
/**
|
|
3623
|
+
* MAPS:
|
|
3624
|
+
*/
|
|
3625
|
+
@keyframes emptygradient {
|
|
3626
|
+
0% {
|
|
3627
|
+
opacity: 1;
|
|
3628
|
+
}
|
|
3629
|
+
100% {
|
|
3630
|
+
opacity: 0;
|
|
3631
|
+
}
|
|
3632
|
+
}
|
|
3633
|
+
@keyframes spin {
|
|
3634
|
+
100% {
|
|
3635
|
+
-moz-transform: rotate(360deg);
|
|
3636
|
+
-webkit-transform: rotate(360deg);
|
|
3637
|
+
transform: rotate(360deg);
|
|
3638
|
+
}
|
|
3639
|
+
}
|
|
3640
|
+
/**
|
|
3641
|
+
* Do not edit directly
|
|
3642
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
3135
3643
|
*/
|
|
3136
3644
|
/**
|
|
3137
3645
|
* TOKENS:
|
|
@@ -3201,10 +3709,16 @@ body {
|
|
|
3201
3709
|
}
|
|
3202
3710
|
.ilo--link-list--link:visited {
|
|
3203
3711
|
color: rgb(35, 0, 80);
|
|
3712
|
+
transition-property: color;
|
|
3713
|
+
transition-duration: 150ms;
|
|
3714
|
+
transition-timing-function: ease-out;
|
|
3204
3715
|
}
|
|
3205
3716
|
.ilo--link-list--link:active {
|
|
3206
3717
|
color: rgb(35, 0, 80);
|
|
3207
3718
|
outline: none;
|
|
3719
|
+
transition-property: color;
|
|
3720
|
+
transition-duration: 150ms;
|
|
3721
|
+
transition-timing-function: ease-out;
|
|
3208
3722
|
}
|
|
3209
3723
|
.ilo--link-list--link:hover, .ilo--link-list--link:focus {
|
|
3210
3724
|
border-bottom: 0.1071811361rem solid rgb(30, 45, 190);
|
|
@@ -3212,6 +3726,16 @@ body {
|
|
|
3212
3726
|
color: rgb(30, 45, 190);
|
|
3213
3727
|
outline: none;
|
|
3214
3728
|
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");
|
|
3729
|
+
transition-property: color, background-color, border-color;
|
|
3730
|
+
transition-duration: 150ms;
|
|
3731
|
+
transition-timing-function: ease-out;
|
|
3732
|
+
}
|
|
3733
|
+
.right-to-left .ilo--link-list--link {
|
|
3734
|
+
background-position: 4px center;
|
|
3735
|
+
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='m7.9 12.5-.2-.2c0-.1-.1-.2-.1-.3s0-.2.1-.3c0-.1.1-.2.2-.2L15.4 4l1 1-7 7 7 7-1 1-7.5-7.5z'/%3e%3c/svg%3e");
|
|
3736
|
+
}
|
|
3737
|
+
.right-to-left .ilo--link-list--link:hover, .right-to-left .ilo--link-list--link:focus {
|
|
3738
|
+
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='m7.9 12.5-.2-.2c0-.1-.1-.2-.1-.3s0-.2.1-.3c0-.1.1-.2.2-.2L15.4 4l1 1-7 7 7 7-1 1-7.5-7.5z'/%3e%3c/svg%3e");
|
|
3215
3739
|
}
|
|
3216
3740
|
.ilo--link-list--dark .ilo--link-list--headline,
|
|
3217
3741
|
.ilo--link-list--dark .ilo--link-list--links--headline {
|
|
@@ -3229,12 +3753,18 @@ body {
|
|
|
3229
3753
|
}
|
|
3230
3754
|
.ilo--link-list--dark .ilo--link-list--link:visited .ilo--link-list--label {
|
|
3231
3755
|
color: rgb(255, 255, 255);
|
|
3756
|
+
transition-property: color;
|
|
3757
|
+
transition-duration: 150ms;
|
|
3758
|
+
transition-timing-function: ease-out;
|
|
3232
3759
|
}
|
|
3233
3760
|
.ilo--link-list--dark .ilo--link-list--link:active {
|
|
3234
3761
|
outline: none;
|
|
3235
3762
|
}
|
|
3236
3763
|
.ilo--link-list--dark .ilo--link-list--link:active .ilo--link-list--label {
|
|
3237
3764
|
color: rgb(35, 0, 80);
|
|
3765
|
+
transition-property: color;
|
|
3766
|
+
transition-duration: 150ms;
|
|
3767
|
+
transition-timing-function: ease-out;
|
|
3238
3768
|
}
|
|
3239
3769
|
.ilo--link-list--dark .ilo--link-list--link:hover, .ilo--link-list--dark .ilo--link-list--link:focus {
|
|
3240
3770
|
outline: none;
|
|
@@ -3242,11 +3772,24 @@ body {
|
|
|
3242
3772
|
}
|
|
3243
3773
|
.ilo--link-list--dark .ilo--link-list--link:hover .ilo--link-list--label, .ilo--link-list--dark .ilo--link-list--link:focus .ilo--link-list--label {
|
|
3244
3774
|
color: rgb(30, 45, 190);
|
|
3775
|
+
transition-property: color;
|
|
3776
|
+
transition-duration: 150ms;
|
|
3777
|
+
transition-timing-function: ease-out;
|
|
3778
|
+
}
|
|
3779
|
+
.right-to-left .ilo--link-list--dark .ilo--link-list--link {
|
|
3780
|
+
background-position: 4px center;
|
|
3781
|
+
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='m7.9 12.5-.2-.2c0-.1-.1-.2-.1-.3s0-.2.1-.3c0-.1.1-.2.2-.2L15.4 4l1 1-7 7 7 7-1 1-7.5-7.5z'/%3e%3c/svg%3e");
|
|
3782
|
+
}
|
|
3783
|
+
.right-to-left .ilo--link-list--dark .ilo--link-list--link:hover, .right-to-left .ilo--link-list--dark .ilo--link-list--link:focus {
|
|
3784
|
+
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='m7.9 12.5-.2-.2c0-.1-.1-.2-.1-.3s0-.2.1-.3c0-.1.1-.2.2-.2L15.4 4l1 1-7 7 7 7-1 1-7.5-7.5z'/%3e%3c/svg%3e");
|
|
3785
|
+
}
|
|
3786
|
+
.right-to-left .ilo--link-list * {
|
|
3787
|
+
text-align: right;
|
|
3245
3788
|
}
|
|
3246
3789
|
|
|
3247
3790
|
/**
|
|
3248
3791
|
* Do not edit directly
|
|
3249
|
-
* Generated on Wed,
|
|
3792
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
3250
3793
|
*/
|
|
3251
3794
|
/**
|
|
3252
3795
|
* TOKENS:
|
|
@@ -3309,7 +3852,7 @@ body {
|
|
|
3309
3852
|
|
|
3310
3853
|
/**
|
|
3311
3854
|
* Do not edit directly
|
|
3312
|
-
* Generated on Wed,
|
|
3855
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
3313
3856
|
*/
|
|
3314
3857
|
/**
|
|
3315
3858
|
* TOKENS:
|
|
@@ -3319,7 +3862,7 @@ body {
|
|
|
3319
3862
|
*/
|
|
3320
3863
|
/**
|
|
3321
3864
|
* Do not edit directly
|
|
3322
|
-
* Generated on Wed,
|
|
3865
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
3323
3866
|
*/
|
|
3324
3867
|
/**
|
|
3325
3868
|
* TOKENS:
|
|
@@ -3329,7 +3872,7 @@ body {
|
|
|
3329
3872
|
*/
|
|
3330
3873
|
/**
|
|
3331
3874
|
* Do not edit directly
|
|
3332
|
-
* Generated on Wed,
|
|
3875
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
3333
3876
|
*/
|
|
3334
3877
|
/**
|
|
3335
3878
|
* TOKENS:
|
|
@@ -3437,7 +3980,7 @@ body {
|
|
|
3437
3980
|
|
|
3438
3981
|
/**
|
|
3439
3982
|
* Do not edit directly
|
|
3440
|
-
* Generated on Wed,
|
|
3983
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
3441
3984
|
*/
|
|
3442
3985
|
/**
|
|
3443
3986
|
* TOKENS:
|
|
@@ -3447,7 +3990,7 @@ body {
|
|
|
3447
3990
|
*/
|
|
3448
3991
|
/**
|
|
3449
3992
|
* Do not edit directly
|
|
3450
|
-
* Generated on Wed,
|
|
3993
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
3451
3994
|
*/
|
|
3452
3995
|
/**
|
|
3453
3996
|
* TOKENS:
|
|
@@ -3457,7 +4000,7 @@ body {
|
|
|
3457
4000
|
*/
|
|
3458
4001
|
/**
|
|
3459
4002
|
* Do not edit directly
|
|
3460
|
-
* Generated on Wed,
|
|
4003
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
3461
4004
|
*/
|
|
3462
4005
|
/**
|
|
3463
4006
|
* TOKENS:
|
|
@@ -3545,7 +4088,7 @@ body {
|
|
|
3545
4088
|
|
|
3546
4089
|
/**
|
|
3547
4090
|
* Do not edit directly
|
|
3548
|
-
* Generated on Wed,
|
|
4091
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
3549
4092
|
*/
|
|
3550
4093
|
/**
|
|
3551
4094
|
* TOKENS:
|
|
@@ -3554,7 +4097,7 @@ body {
|
|
|
3554
4097
|
* MAPS:
|
|
3555
4098
|
*/
|
|
3556
4099
|
.ilo--header {
|
|
3557
|
-
overflow
|
|
4100
|
+
overflow: hidden;
|
|
3558
4101
|
position: relative;
|
|
3559
4102
|
z-index: 4;
|
|
3560
4103
|
}
|
|
@@ -3623,6 +4166,12 @@ body {
|
|
|
3623
4166
|
}
|
|
3624
4167
|
.ilo--header--logo {
|
|
3625
4168
|
display: block;
|
|
4169
|
+
max-width: 150px;
|
|
4170
|
+
}
|
|
4171
|
+
@media screen and (min-width: 1024px) {
|
|
4172
|
+
.ilo--header--logo {
|
|
4173
|
+
max-width: 200px;
|
|
4174
|
+
}
|
|
3626
4175
|
}
|
|
3627
4176
|
.ilo--header--logo-link {
|
|
3628
4177
|
display: block;
|
|
@@ -3655,6 +4204,9 @@ body {
|
|
|
3655
4204
|
.ilo--header--utility-bar--local {
|
|
3656
4205
|
justify-content: space-between;
|
|
3657
4206
|
}
|
|
4207
|
+
.right-to-left .ilo--header--utility-bar {
|
|
4208
|
+
flex-direction: row-reverse;
|
|
4209
|
+
}
|
|
3658
4210
|
}
|
|
3659
4211
|
.ilo--header--inner {
|
|
3660
4212
|
margin: auto;
|
|
@@ -3662,6 +4214,9 @@ body {
|
|
|
3662
4214
|
padding: 0 16px;
|
|
3663
4215
|
width: 100%;
|
|
3664
4216
|
}
|
|
4217
|
+
.right-to-left .ilo--header--inner {
|
|
4218
|
+
direction: rtl;
|
|
4219
|
+
}
|
|
3665
4220
|
@media screen and (min-width: 1024px) {
|
|
3666
4221
|
.ilo--header--inner {
|
|
3667
4222
|
display: flex;
|
|
@@ -3699,6 +4254,9 @@ body {
|
|
|
3699
4254
|
padding: 20px 0;
|
|
3700
4255
|
text-align: right;
|
|
3701
4256
|
}
|
|
4257
|
+
.right-to-left .ilo--header--logo-tagline {
|
|
4258
|
+
text-align: left;
|
|
4259
|
+
}
|
|
3702
4260
|
@media screen and (min-width: 1024px) {
|
|
3703
4261
|
.ilo--header--logo-tagline {
|
|
3704
4262
|
display: block;
|
|
@@ -3708,6 +4266,7 @@ body {
|
|
|
3708
4266
|
font-size: 11.9px;
|
|
3709
4267
|
letter-spacing: -0.02em;
|
|
3710
4268
|
line-height: 19.4px;
|
|
4269
|
+
color: rgb(190, 220, 250);
|
|
3711
4270
|
display: block;
|
|
3712
4271
|
font-weight: 500;
|
|
3713
4272
|
}
|
|
@@ -3773,7 +4332,7 @@ body {
|
|
|
3773
4332
|
padding: 21.5px 24px 20.5px;
|
|
3774
4333
|
}
|
|
3775
4334
|
.ilo--nav--link:hover, .ilo--nav--link:focus {
|
|
3776
|
-
background: rgb(
|
|
4335
|
+
background: rgb(235, 245, 253);
|
|
3777
4336
|
color: rgb(30, 45, 190);
|
|
3778
4337
|
text-decoration: none;
|
|
3779
4338
|
}
|
|
@@ -3785,7 +4344,7 @@ body {
|
|
|
3785
4344
|
line-height: 21.6px;
|
|
3786
4345
|
appearance: none;
|
|
3787
4346
|
background-color: rgb(255, 255, 255);
|
|
3788
|
-
background-position:
|
|
4347
|
+
background-position: calc(100% - 16px) 55%;
|
|
3789
4348
|
background-repeat: no-repeat;
|
|
3790
4349
|
background-size: 16px;
|
|
3791
4350
|
border: none;
|
|
@@ -3804,6 +4363,19 @@ body {
|
|
|
3804
4363
|
background-color: rgb(235, 245, 253);
|
|
3805
4364
|
color: rgb(30, 45, 190);
|
|
3806
4365
|
}
|
|
4366
|
+
.right-to-left .ilo--nav--trigger {
|
|
4367
|
+
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='m7.9 12.5-.2-.2c0-.1-.1-.2-.1-.3s0-.2.1-.3c0-.1.1-.2.2-.2L15.4 4l1 1-7 7 7 7-1 1-7.5-7.5z'/%3e%3c/svg%3e");
|
|
4368
|
+
background-color: rgb(255, 255, 255);
|
|
4369
|
+
background-position: 16px 55%;
|
|
4370
|
+
background-repeat: no-repeat;
|
|
4371
|
+
background-size: 16px;
|
|
4372
|
+
text-align: right;
|
|
4373
|
+
}
|
|
4374
|
+
.right-to-left .ilo--nav--trigger:focus, .right-to-left .ilo--nav--trigger:hover {
|
|
4375
|
+
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='m7.9 12.5-.2-.2c0-.1-.1-.2-.1-.3s0-.2.1-.3c0-.1.1-.2.2-.2L15.4 4l1 1-7 7 7 7-1 1-7.5-7.5z'/%3e%3c/svg%3e");
|
|
4376
|
+
background-color: rgb(235, 245, 253);
|
|
4377
|
+
color: rgb(30, 45, 190);
|
|
4378
|
+
}
|
|
3807
4379
|
@media screen and (min-width: 1024px) {
|
|
3808
4380
|
.ilo--nav--trigger {
|
|
3809
4381
|
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='M18 11H13V6H11V11H6V13H11V18H13V13H18V11Z'/%3e%3c/svg%3e");
|
|
@@ -3832,6 +4404,19 @@ body {
|
|
|
3832
4404
|
border-color: rgb(255, 255, 255);
|
|
3833
4405
|
color: rgb(30, 45, 190);
|
|
3834
4406
|
}
|
|
4407
|
+
.right-to-left .ilo--nav--trigger {
|
|
4408
|
+
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='M18 11H13V6H11V11H6V13H11V18H13V13H18V11Z'/%3e%3c/svg%3e");
|
|
4409
|
+
background-color: rgb(35, 0, 80);
|
|
4410
|
+
background-position: 90% 55%;
|
|
4411
|
+
background-repeat: no-repeat;
|
|
4412
|
+
background-size: 20px;
|
|
4413
|
+
text-align: left;
|
|
4414
|
+
}
|
|
4415
|
+
.right-to-left .ilo--nav--trigger:focus, .right-to-left .ilo--nav--trigger:hover {
|
|
4416
|
+
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");
|
|
4417
|
+
background-color: rgb(255, 255, 255);
|
|
4418
|
+
color: rgb(30, 45, 190);
|
|
4419
|
+
}
|
|
3835
4420
|
}
|
|
3836
4421
|
.ilo--nav--local {
|
|
3837
4422
|
display: flex;
|
|
@@ -3866,11 +4451,60 @@ body {
|
|
|
3866
4451
|
color: rgb(30, 45, 190);
|
|
3867
4452
|
}
|
|
3868
4453
|
|
|
4454
|
+
.ilo--mobile--nav {
|
|
4455
|
+
border-bottom: 3px solid rgb(237, 240, 242);
|
|
4456
|
+
margin-bottom: 16px;
|
|
4457
|
+
padding-bottom: 16px;
|
|
4458
|
+
}
|
|
3869
4459
|
.ilo--mobile--nav--logo {
|
|
3870
4460
|
align-items: center;
|
|
3871
4461
|
display: flex;
|
|
3872
4462
|
justify-content: space-between;
|
|
3873
4463
|
}
|
|
4464
|
+
.ilo--mobile--nav--language--select {
|
|
4465
|
+
background: rgb(255, 255, 255);
|
|
4466
|
+
left: 0;
|
|
4467
|
+
height: 100%;
|
|
4468
|
+
padding: 0 0 1.7148981779rem;
|
|
4469
|
+
position: absolute;
|
|
4470
|
+
top: 0;
|
|
4471
|
+
transform: translateX(100%);
|
|
4472
|
+
transition: transform 225ms ease-out;
|
|
4473
|
+
width: 100%;
|
|
4474
|
+
}
|
|
4475
|
+
.ilo--select--open .ilo--mobile--nav--language--select {
|
|
4476
|
+
transform: translateX(0);
|
|
4477
|
+
}
|
|
4478
|
+
.ilo--mobile--nav--language--switcher--button {
|
|
4479
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='rgb(35, 0, 80)' fill-rule='evenodd' d='M1.08687 7.46667H3.21031C3.2851 5.53749 3.76315 3.78006 4.51995 2.45566C4.65969 2.21111 4.81092 1.97841 4.97289 1.76064C2.81175 2.81109 1.27822 4.9513 1.08687 7.46667ZM8 0C3.58172 0 0 3.58172 0 8C0 12.4183 3.58172 16 8 16C12.4183 16 16 12.4183 16 8C16 3.58172 12.4183 0 8 0ZM7.46667 1.1413C6.74082 1.34466 6.03016 1.96273 5.44607 2.98488C4.79279 4.12812 4.35217 5.69751 4.27783 7.46667H7.46667V1.1413ZM7.46667 8.53333H4.27783C4.35217 10.3025 4.79279 11.8719 5.44607 13.0151C6.03016 14.0373 6.74082 14.6553 7.46667 14.8587V8.53333ZM4.97289 14.2394C4.81093 14.0216 4.65969 13.7889 4.51995 13.5443C3.76315 12.2199 3.2851 10.4625 3.21031 8.53333H1.08687C1.27822 11.0487 2.81176 13.1889 4.97289 14.2394ZM8.53333 14.8587V8.53333H11.7222C11.6478 10.3025 11.2072 11.8719 10.5539 13.0151C9.96984 14.0373 9.25918 14.6553 8.53333 14.8587ZM11.7222 7.46667H8.53333V1.1413C9.25918 1.34466 9.96984 1.96273 10.5539 2.98488C11.2072 4.12812 11.6478 5.69751 11.7222 7.46667ZM12.7897 7.46667C12.7149 5.53749 12.2369 3.78006 11.4801 2.45566C11.3403 2.21111 11.1891 1.97841 11.0271 1.76064C13.1883 2.81109 14.7218 4.95129 14.9131 7.46667H12.7897ZM12.7897 8.53333C12.7149 10.4625 12.2369 12.2199 11.4801 13.5443C11.3403 13.7889 11.1891 14.0216 11.0271 14.2394C13.1883 13.1889 14.7218 11.0487 14.9131 8.53333H12.7897Z' clip-rule='evenodd'/%3e%3c/svg%3e");
|
|
4480
|
+
font-size: 16px;
|
|
4481
|
+
letter-spacing: -0.02em;
|
|
4482
|
+
line-height: 21.6px;
|
|
4483
|
+
appearance: none;
|
|
4484
|
+
background-color: rgb(255, 255, 255);
|
|
4485
|
+
background-position: calc(100% - 16px) 55%;
|
|
4486
|
+
background-repeat: no-repeat;
|
|
4487
|
+
background-size: 16px;
|
|
4488
|
+
border: none;
|
|
4489
|
+
color: rgb(35, 0, 80);
|
|
4490
|
+
cursor: pointer;
|
|
4491
|
+
display: block;
|
|
4492
|
+
font-family: Overpass;
|
|
4493
|
+
font-weight: 500;
|
|
4494
|
+
padding: 16px 36px 16px 8px;
|
|
4495
|
+
text-align: left;
|
|
4496
|
+
transition: all 150ms ease-out;
|
|
4497
|
+
width: 100%;
|
|
4498
|
+
}
|
|
4499
|
+
.ilo--mobile--nav--language--switcher--button:focus, .ilo--mobile--nav--language--switcher--button:hover {
|
|
4500
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='rgb(30, 45, 190)' fill-rule='evenodd' d='M1.08687 7.46667H3.21031C3.2851 5.53749 3.76315 3.78006 4.51995 2.45566C4.65969 2.21111 4.81092 1.97841 4.97289 1.76064C2.81175 2.81109 1.27822 4.9513 1.08687 7.46667ZM8 0C3.58172 0 0 3.58172 0 8C0 12.4183 3.58172 16 8 16C12.4183 16 16 12.4183 16 8C16 3.58172 12.4183 0 8 0ZM7.46667 1.1413C6.74082 1.34466 6.03016 1.96273 5.44607 2.98488C4.79279 4.12812 4.35217 5.69751 4.27783 7.46667H7.46667V1.1413ZM7.46667 8.53333H4.27783C4.35217 10.3025 4.79279 11.8719 5.44607 13.0151C6.03016 14.0373 6.74082 14.6553 7.46667 14.8587V8.53333ZM4.97289 14.2394C4.81093 14.0216 4.65969 13.7889 4.51995 13.5443C3.76315 12.2199 3.2851 10.4625 3.21031 8.53333H1.08687C1.27822 11.0487 2.81176 13.1889 4.97289 14.2394ZM8.53333 14.8587V8.53333H11.7222C11.6478 10.3025 11.2072 11.8719 10.5539 13.0151C9.96984 14.0373 9.25918 14.6553 8.53333 14.8587ZM11.7222 7.46667H8.53333V1.1413C9.25918 1.34466 9.96984 1.96273 10.5539 2.98488C11.2072 4.12812 11.6478 5.69751 11.7222 7.46667ZM12.7897 7.46667C12.7149 5.53749 12.2369 3.78006 11.4801 2.45566C11.3403 2.21111 11.1891 1.97841 11.0271 1.76064C13.1883 2.81109 14.7218 4.95129 14.9131 7.46667H12.7897ZM12.7897 8.53333C12.7149 10.4625 12.2369 12.2199 11.4801 13.5443C11.3403 13.7889 11.1891 14.0216 11.0271 14.2394C13.1883 13.1889 14.7218 11.0487 14.9131 8.53333H12.7897Z' clip-rule='evenodd'/%3e%3c/svg%3e");
|
|
4501
|
+
background-color: rgb(235, 245, 253);
|
|
4502
|
+
color: rgb(30, 45, 190);
|
|
4503
|
+
}
|
|
4504
|
+
.right-to-left .ilo--mobile--nav--language--switcher--button {
|
|
4505
|
+
background-position: 16px 55%;
|
|
4506
|
+
text-align: right;
|
|
4507
|
+
}
|
|
3874
4508
|
@media screen and (min-width: 1024px) {
|
|
3875
4509
|
.ilo--mobile--nav {
|
|
3876
4510
|
display: none;
|
|
@@ -3883,6 +4517,9 @@ body {
|
|
|
3883
4517
|
padding: 0 max((100% - 1300px) / 2, 20px) 0 0;
|
|
3884
4518
|
position: relative;
|
|
3885
4519
|
}
|
|
4520
|
+
.right-to-left .ilo--language-switcher {
|
|
4521
|
+
padding: 0 0 0 max((100% - 1300px) / 2, 20px);
|
|
4522
|
+
}
|
|
3886
4523
|
.ilo--language-switcher::before {
|
|
3887
4524
|
background: rgb(35, 0, 80);
|
|
3888
4525
|
clip-path: polygon(0 0, 100% 0, 100% 100%);
|
|
@@ -3894,6 +4531,11 @@ body {
|
|
|
3894
4531
|
top: 0;
|
|
3895
4532
|
width: 32px;
|
|
3896
4533
|
}
|
|
4534
|
+
.right-to-left .ilo--language-switcher::before {
|
|
4535
|
+
clip-path: polygon(0 0, 0 100%, 100% 100%);
|
|
4536
|
+
left: auto;
|
|
4537
|
+
right: -32px;
|
|
4538
|
+
}
|
|
3897
4539
|
.ilo--language-switcher--wrap {
|
|
3898
4540
|
display: flex;
|
|
3899
4541
|
position: relative;
|
|
@@ -3912,6 +4554,7 @@ body {
|
|
|
3912
4554
|
color: rgb(255, 255, 255);
|
|
3913
4555
|
cursor: pointer;
|
|
3914
4556
|
display: block;
|
|
4557
|
+
font-family: Overpass;
|
|
3915
4558
|
font-weight: 500;
|
|
3916
4559
|
padding: 8px 30px 8px 40px;
|
|
3917
4560
|
transition: all 150ms ease-out;
|
|
@@ -3936,6 +4579,8 @@ body {
|
|
|
3936
4579
|
|
|
3937
4580
|
.ilo--subnav {
|
|
3938
4581
|
background: rgb(255, 255, 255);
|
|
4582
|
+
height: 100%;
|
|
4583
|
+
left: 0;
|
|
3939
4584
|
padding: 0 0 32px;
|
|
3940
4585
|
position: absolute;
|
|
3941
4586
|
top: 0;
|
|
@@ -3946,8 +4591,13 @@ body {
|
|
|
3946
4591
|
.ilo--subnav--open .ilo--subnav {
|
|
3947
4592
|
transform: translateX(0);
|
|
3948
4593
|
}
|
|
4594
|
+
.right-to-left .ilo--subnav {
|
|
4595
|
+
direction: rtl;
|
|
4596
|
+
}
|
|
3949
4597
|
@media screen and (min-width: 1024px) {
|
|
3950
4598
|
.ilo--subnav {
|
|
4599
|
+
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));
|
|
4600
|
+
height: auto;
|
|
3951
4601
|
left: 0;
|
|
3952
4602
|
padding: 32px 0;
|
|
3953
4603
|
top: auto;
|
|
@@ -4021,12 +4671,14 @@ body {
|
|
|
4021
4671
|
border: none;
|
|
4022
4672
|
color: rgb(35, 0, 80);
|
|
4023
4673
|
cursor: pointer;
|
|
4674
|
+
font-family: Overpass;
|
|
4675
|
+
font-weight: 500;
|
|
4024
4676
|
padding: 16px 16px 16px 32px;
|
|
4025
4677
|
position: relative;
|
|
4026
4678
|
transition: all 150ms ease-out;
|
|
4027
4679
|
}
|
|
4028
4680
|
.ilo--mobile--subnav--back::before {
|
|
4029
|
-
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg'
|
|
4681
|
+
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='m7.9 12.5-.2-.2c0-.1-.1-.2-.1-.3s0-.2.1-.3c0-.1.1-.2.2-.2L15.4 4l1 1-7 7 7 7-1 1-7.5-7.5z'/%3e%3c/svg%3e");
|
|
4030
4682
|
background-position: 10% center;
|
|
4031
4683
|
background-repeat: no-repeat;
|
|
4032
4684
|
background-size: 24px;
|
|
@@ -4036,14 +4688,31 @@ body {
|
|
|
4036
4688
|
left: 0;
|
|
4037
4689
|
position: absolute;
|
|
4038
4690
|
top: 50%;
|
|
4039
|
-
transform: translateY(-50%)
|
|
4691
|
+
transform: translateY(-50%);
|
|
4040
4692
|
width: 24px;
|
|
4041
4693
|
}
|
|
4694
|
+
.right-to-left .ilo--mobile--subnav--back {
|
|
4695
|
+
padding: 16px 32px 16px 16px;
|
|
4696
|
+
}
|
|
4697
|
+
.right-to-left .ilo--mobile--subnav--back::before {
|
|
4698
|
+
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='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");
|
|
4699
|
+
background-position: 10% center;
|
|
4700
|
+
background-repeat: no-repeat;
|
|
4701
|
+
background-size: 24px;
|
|
4702
|
+
left: auto;
|
|
4703
|
+
right: 0;
|
|
4704
|
+
}
|
|
4042
4705
|
.ilo--mobile--subnav--back:hover, .ilo--mobile--subnav--back:focus {
|
|
4043
4706
|
background-color: rgb(235, 245, 253);
|
|
4044
4707
|
color: rgb(30, 45, 190);
|
|
4045
4708
|
}
|
|
4046
4709
|
.ilo--mobile--subnav--back:hover::before, .ilo--mobile--subnav--back:focus::before {
|
|
4710
|
+
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='m7.9 12.5-.2-.2c0-.1-.1-.2-.1-.3s0-.2.1-.3c0-.1.1-.2.2-.2L15.4 4l1 1-7 7 7 7-1 1-7.5-7.5z'/%3e%3c/svg%3e");
|
|
4711
|
+
background-position: 10% center;
|
|
4712
|
+
background-repeat: no-repeat;
|
|
4713
|
+
background-size: 24px;
|
|
4714
|
+
}
|
|
4715
|
+
.right-to-left .ilo--mobile--subnav--back:hover::before, .right-to-left .ilo--mobile--subnav--back:focus::before {
|
|
4047
4716
|
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");
|
|
4048
4717
|
background-position: 10% center;
|
|
4049
4718
|
background-repeat: no-repeat;
|
|
@@ -4069,6 +4738,7 @@ body {
|
|
|
4069
4738
|
|
|
4070
4739
|
.ilo--search-box {
|
|
4071
4740
|
background: rgb(255, 255, 255);
|
|
4741
|
+
left: 0;
|
|
4072
4742
|
position: absolute;
|
|
4073
4743
|
top: 0;
|
|
4074
4744
|
transform: translateX(100%);
|
|
@@ -4080,6 +4750,7 @@ body {
|
|
|
4080
4750
|
}
|
|
4081
4751
|
@media screen and (min-width: 1024px) {
|
|
4082
4752
|
.ilo--search-box {
|
|
4753
|
+
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));
|
|
4083
4754
|
left: 0;
|
|
4084
4755
|
padding: 32px 0;
|
|
4085
4756
|
top: auto;
|
|
@@ -4125,20 +4796,20 @@ body {
|
|
|
4125
4796
|
background-color: rgb(235, 245, 253);
|
|
4126
4797
|
}
|
|
4127
4798
|
.ilo--search--open .ilo--search--button {
|
|
4128
|
-
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='
|
|
4799
|
+
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");
|
|
4129
4800
|
background-color: rgb(255, 255, 255);
|
|
4130
4801
|
background-position: center;
|
|
4131
4802
|
background-repeat: no-repeat;
|
|
4132
4803
|
background-size: 21.5px 21.5px;
|
|
4133
4804
|
}
|
|
4134
4805
|
.ilo--search--open .ilo--search--button:hover, .ilo--search--open .ilo--search--button:focus {
|
|
4135
|
-
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='
|
|
4806
|
+
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='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");
|
|
4136
4807
|
background-color: rgb(235, 245, 253);
|
|
4137
4808
|
}
|
|
4138
4809
|
|
|
4139
4810
|
/**
|
|
4140
4811
|
* Do not edit directly
|
|
4141
|
-
* Generated on Wed,
|
|
4812
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
4142
4813
|
*/
|
|
4143
4814
|
/**
|
|
4144
4815
|
* TOKENS:
|
|
@@ -4148,7 +4819,7 @@ body {
|
|
|
4148
4819
|
*/
|
|
4149
4820
|
/**
|
|
4150
4821
|
* Do not edit directly
|
|
4151
|
-
* Generated on Wed,
|
|
4822
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
4152
4823
|
*/
|
|
4153
4824
|
/**
|
|
4154
4825
|
* TOKENS:
|
|
@@ -4158,7 +4829,7 @@ body {
|
|
|
4158
4829
|
*/
|
|
4159
4830
|
/**
|
|
4160
4831
|
* Do not edit directly
|
|
4161
|
-
* Generated on Wed,
|
|
4832
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
4162
4833
|
*/
|
|
4163
4834
|
/**
|
|
4164
4835
|
* TOKENS:
|
|
@@ -4201,13 +4872,22 @@ body {
|
|
|
4201
4872
|
padding: calc(1.2861736334rem + 2px) 1.2861736334rem;
|
|
4202
4873
|
}
|
|
4203
4874
|
.ilo--notification--inline {
|
|
4204
|
-
width:
|
|
4875
|
+
max-width: 340px;
|
|
4205
4876
|
}
|
|
4206
4877
|
.ilo--notification--inline .ilo--notification--content {
|
|
4207
|
-
|
|
4208
|
-
|
|
4209
|
-
|
|
4210
|
-
|
|
4878
|
+
padding: calc(1.2861736334rem + 2px) 1.2861736334rem;
|
|
4879
|
+
}
|
|
4880
|
+
@media screen and (min-width: 610px) {
|
|
4881
|
+
.ilo--notification--inline {
|
|
4882
|
+
max-width: 100%;
|
|
4883
|
+
width: 100%;
|
|
4884
|
+
}
|
|
4885
|
+
.ilo--notification--inline .ilo--notification--content {
|
|
4886
|
+
align-items: center;
|
|
4887
|
+
display: flex;
|
|
4888
|
+
justify-items: space-between;
|
|
4889
|
+
padding: 0.7502679528rem 1.2861736334rem;
|
|
4890
|
+
}
|
|
4211
4891
|
}
|
|
4212
4892
|
.ilo--notification--content {
|
|
4213
4893
|
margin-left: 2.1436227224rem;
|
|
@@ -4226,8 +4906,10 @@ body {
|
|
|
4226
4906
|
width: 2.1436227224rem;
|
|
4227
4907
|
top: 0;
|
|
4228
4908
|
}
|
|
4229
|
-
|
|
4230
|
-
|
|
4909
|
+
@media screen and (min-width: 610px) {
|
|
4910
|
+
.ilo--notification--inline .ilo--notification--content:before {
|
|
4911
|
+
background-position: center;
|
|
4912
|
+
}
|
|
4231
4913
|
}
|
|
4232
4914
|
.icon--error .ilo--notification--content:before {
|
|
4233
4915
|
background-color: rgb(250, 60, 75);
|
|
@@ -4250,26 +4932,34 @@ body {
|
|
|
4250
4932
|
font-size: 16px;
|
|
4251
4933
|
letter-spacing: normal;
|
|
4252
4934
|
line-height: 23.36px;
|
|
4253
|
-
}
|
|
4254
|
-
.ilo--notification--dialog .ilo--notification--headline {
|
|
4255
4935
|
margin-bottom: 0.6430868167rem;
|
|
4256
4936
|
}
|
|
4937
|
+
@media screen and (min-width: 610px) {
|
|
4938
|
+
.ilo--notification--inline .ilo--notification--headline {
|
|
4939
|
+
margin-bottom: 0;
|
|
4940
|
+
}
|
|
4941
|
+
}
|
|
4257
4942
|
.ilo--notification--copy {
|
|
4258
4943
|
font-weight: 400;
|
|
4259
4944
|
font-size: 14.93px;
|
|
4260
4945
|
letter-spacing: normal;
|
|
4261
4946
|
line-height: 20.3px;
|
|
4262
4947
|
}
|
|
4263
|
-
|
|
4264
|
-
|
|
4948
|
+
@media screen and (min-width: 610px) {
|
|
4949
|
+
.ilo--notification--inline .ilo--notification--copy {
|
|
4950
|
+
margin-left: 1.2861736334rem;
|
|
4951
|
+
}
|
|
4265
4952
|
}
|
|
4266
|
-
.ilo--notification--
|
|
4953
|
+
.ilo--notification--copy:not(:last-child) {
|
|
4267
4954
|
margin-bottom: 1.2861736334rem;
|
|
4268
4955
|
}
|
|
4269
|
-
|
|
4270
|
-
|
|
4956
|
+
@media screen and (min-width: 610px) {
|
|
4957
|
+
.ilo--notification--inline .ilo--notification--copy:not(:last-child) {
|
|
4958
|
+
margin-bottom: 0;
|
|
4959
|
+
max-width: 24%;
|
|
4960
|
+
}
|
|
4271
4961
|
}
|
|
4272
|
-
@media screen and (min-width: 1024px) {
|
|
4962
|
+
@media screen and (min-width: 610px) and (min-width: 1024px) {
|
|
4273
4963
|
.ilo--notification--inline .ilo--notification--copy:not(:last-child) {
|
|
4274
4964
|
max-width: 40%;
|
|
4275
4965
|
}
|
|
@@ -4282,14 +4972,23 @@ body {
|
|
|
4282
4972
|
letter-spacing: normal;
|
|
4283
4973
|
line-height: 20.3px;
|
|
4284
4974
|
}
|
|
4285
|
-
|
|
4286
|
-
|
|
4975
|
+
@media screen and (min-width: 610px) {
|
|
4976
|
+
.ilo--notification--inline .ilo--notification--date {
|
|
4977
|
+
margin-left: 0.857449089rem;
|
|
4978
|
+
}
|
|
4287
4979
|
}
|
|
4288
|
-
.ilo--notification--
|
|
4980
|
+
.ilo--notification--date:not(:last-child) {
|
|
4289
4981
|
margin-bottom: 1.0182207931rem;
|
|
4290
4982
|
}
|
|
4291
|
-
|
|
4292
|
-
|
|
4983
|
+
@media screen and (min-width: 610px) {
|
|
4984
|
+
.ilo--notification--inline .ilo--notification--date {
|
|
4985
|
+
margin-bottom: 0;
|
|
4986
|
+
}
|
|
4987
|
+
}
|
|
4988
|
+
@media screen and (min-width: 610px) {
|
|
4989
|
+
.ilo--notification--inline .ilo--notification--cta {
|
|
4990
|
+
margin-left: 1.2861736334rem;
|
|
4991
|
+
}
|
|
4293
4992
|
}
|
|
4294
4993
|
.ilo--notification--close {
|
|
4295
4994
|
background-color: rgb(237, 240, 242);
|
|
@@ -4322,7 +5021,7 @@ body {
|
|
|
4322
5021
|
|
|
4323
5022
|
/**
|
|
4324
5023
|
* Do not edit directly
|
|
4325
|
-
* Generated on Wed,
|
|
5024
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
4326
5025
|
*/
|
|
4327
5026
|
/**
|
|
4328
5027
|
* TOKENS:
|
|
@@ -4457,7 +5156,7 @@ body {
|
|
|
4457
5156
|
|
|
4458
5157
|
/**
|
|
4459
5158
|
* Do not edit directly
|
|
4460
|
-
* Generated on Wed,
|
|
5159
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
4461
5160
|
*/
|
|
4462
5161
|
/**
|
|
4463
5162
|
* TOKENS:
|
|
@@ -4586,7 +5285,7 @@ body {
|
|
|
4586
5285
|
|
|
4587
5286
|
/**
|
|
4588
5287
|
* Do not edit directly
|
|
4589
|
-
* Generated on Wed,
|
|
5288
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
4590
5289
|
*/
|
|
4591
5290
|
/**
|
|
4592
5291
|
* TOKENS:
|
|
@@ -4687,7 +5386,7 @@ body {
|
|
|
4687
5386
|
|
|
4688
5387
|
/**
|
|
4689
5388
|
* Do not edit directly
|
|
4690
|
-
* Generated on Wed,
|
|
5389
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
4691
5390
|
*/
|
|
4692
5391
|
/**
|
|
4693
5392
|
* TOKENS:
|
|
@@ -4746,7 +5445,7 @@ body {
|
|
|
4746
5445
|
|
|
4747
5446
|
/**
|
|
4748
5447
|
* Do not edit directly
|
|
4749
|
-
* Generated on Wed,
|
|
5448
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
4750
5449
|
*/
|
|
4751
5450
|
/**
|
|
4752
5451
|
* TOKENS:
|
|
@@ -5115,7 +5814,7 @@ body {
|
|
|
5115
5814
|
|
|
5116
5815
|
/**
|
|
5117
5816
|
* Do not edit directly
|
|
5118
|
-
* Generated on Wed,
|
|
5817
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
5119
5818
|
*/
|
|
5120
5819
|
/**
|
|
5121
5820
|
* TOKENS:
|
|
@@ -5159,7 +5858,7 @@ body {
|
|
|
5159
5858
|
|
|
5160
5859
|
/**
|
|
5161
5860
|
* Do not edit directly
|
|
5162
|
-
* Generated on Wed,
|
|
5861
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
5163
5862
|
*/
|
|
5164
5863
|
/**
|
|
5165
5864
|
* TOKENS:
|
|
@@ -5315,7 +6014,7 @@ Note that the styles for this component rely on CSS container queries, which cur
|
|
|
5315
6014
|
|
|
5316
6015
|
/**
|
|
5317
6016
|
* Do not edit directly
|
|
5318
|
-
* Generated on Wed,
|
|
6017
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
5319
6018
|
*/
|
|
5320
6019
|
/**
|
|
5321
6020
|
* TOKENS:
|
|
@@ -5330,7 +6029,7 @@ Note that the styles for this component rely on CSS container queries, which cur
|
|
|
5330
6029
|
}
|
|
5331
6030
|
.ilo--table--header {
|
|
5332
6031
|
background-color: rgb(255, 255, 255);
|
|
5333
|
-
padding:
|
|
6032
|
+
padding: 19px 8px 24px 8px;
|
|
5334
6033
|
}
|
|
5335
6034
|
.ilo--table--wrapper {
|
|
5336
6035
|
max-height: 380px;
|
|
@@ -5361,10 +6060,14 @@ Note that the styles for this component rely on CSS container queries, which cur
|
|
|
5361
6060
|
font-size: 14.93px;
|
|
5362
6061
|
letter-spacing: normal;
|
|
5363
6062
|
line-height: 20.3px;
|
|
6063
|
+
letter-spacing: -0.02em;
|
|
5364
6064
|
padding: 22px 11px 22px 11px;
|
|
5365
6065
|
pointer-events: none;
|
|
5366
6066
|
text-align: left;
|
|
5367
6067
|
}
|
|
6068
|
+
.ilo--table--small .ilo--table--head--cell {
|
|
6069
|
+
padding: 13px 11px 13px 11px;
|
|
6070
|
+
}
|
|
5368
6071
|
.ilo--table--head--cell:first-of-type {
|
|
5369
6072
|
border-left: none;
|
|
5370
6073
|
}
|
|
@@ -5409,19 +6112,28 @@ Note that the styles for this component rely on CSS container queries, which cur
|
|
|
5409
6112
|
letter-spacing: normal;
|
|
5410
6113
|
line-height: 20.3px;
|
|
5411
6114
|
outline: 0;
|
|
5412
|
-
padding:
|
|
6115
|
+
padding: 22px 11px 22px 11px;
|
|
5413
6116
|
position: relative;
|
|
5414
6117
|
}
|
|
6118
|
+
.ilo--table--small .ilo--table--body--cell {
|
|
6119
|
+
padding: 13px 11px 13px 11px;
|
|
6120
|
+
}
|
|
5415
6121
|
.ilo--table--body--cell:first-of-type {
|
|
5416
6122
|
border-left: none;
|
|
5417
6123
|
}
|
|
5418
6124
|
.ilo--table--body--cell.numeric {
|
|
5419
6125
|
text-align: right;
|
|
5420
6126
|
}
|
|
6127
|
+
.ilo--table--body--cell:hover {
|
|
6128
|
+
background-color: rgb(190, 220, 250);
|
|
6129
|
+
border-bottom: 2px solid rgb(30, 45, 190);
|
|
6130
|
+
color: rgb(30, 45, 190);
|
|
6131
|
+
}
|
|
5421
6132
|
.ilo--table--body--cell.selected {
|
|
5422
6133
|
background-color: rgb(190, 220, 250);
|
|
5423
6134
|
border-bottom: 2px solid rgb(30, 45, 190);
|
|
5424
6135
|
color: rgb(30, 45, 190);
|
|
6136
|
+
cursor: pointer;
|
|
5425
6137
|
}
|
|
5426
6138
|
.ilo--table--body--cell.column--selected {
|
|
5427
6139
|
background-color: rgb(235, 245, 253);
|
|
@@ -5524,6 +6236,7 @@ Note that the styles for this component rely on CSS container queries, which cur
|
|
|
5524
6236
|
line-height: 24.26px;
|
|
5525
6237
|
}
|
|
5526
6238
|
.ilo--table--description {
|
|
6239
|
+
color: rgb(109, 109, 109);
|
|
5527
6240
|
font-family: Noto Sans;
|
|
5528
6241
|
font-weight: 400;
|
|
5529
6242
|
font-size: 11.94px;
|
|
@@ -5620,7 +6333,7 @@ Note that the styles for this component rely on CSS container queries, which cur
|
|
|
5620
6333
|
outline: none;
|
|
5621
6334
|
}
|
|
5622
6335
|
.ilo--table--zebra .ilo--table--body--row:nth-child(odd) {
|
|
5623
|
-
background-color: rgb(
|
|
6336
|
+
background-color: rgb(246, 247, 248);
|
|
5624
6337
|
}
|
|
5625
6338
|
.ilo--table--zebra .ilo--table--body--row:nth-child(odd):hover, .ilo--table--zebra .ilo--table--body--row:nth-child(odd):focus {
|
|
5626
6339
|
background-color: rgb(235, 245, 253);
|
|
@@ -5628,13 +6341,19 @@ Note that the styles for this component rely on CSS container queries, which cur
|
|
|
5628
6341
|
.ilo--table--zebra .ilo--table--body--row:nth-child(odd) .ilo--table--body--cell {
|
|
5629
6342
|
border-left: 0.0535905681rem solid rgb(255, 255, 255);
|
|
5630
6343
|
}
|
|
5631
|
-
.ilo--table--zebra .ilo--table--body--row:nth-child(odd) .ilo--table--body--cell:hover, .ilo--table--zebra .ilo--table--body--row:nth-child(odd) .ilo--table--body--cell:focus
|
|
6344
|
+
.ilo--table--zebra .ilo--table--body--row:nth-child(odd) .ilo--table--body--cell:hover, .ilo--table--zebra .ilo--table--body--row:nth-child(odd) .ilo--table--body--cell:focus {
|
|
6345
|
+
background-color: rgb(190, 220, 250);
|
|
6346
|
+
}
|
|
6347
|
+
.ilo--table--zebra .ilo--table--body--row:nth-child(odd).selected .ilo--table--body--cell {
|
|
6348
|
+
background-color: rgb(235, 245, 253);
|
|
6349
|
+
}
|
|
6350
|
+
.ilo--table--zebra .ilo--table--body--row:nth-child(odd).selected .ilo--table--body--cell.selected {
|
|
5632
6351
|
background-color: rgb(190, 220, 250);
|
|
5633
6352
|
}
|
|
5634
6353
|
|
|
5635
6354
|
/**
|
|
5636
6355
|
* Do not edit directly
|
|
5637
|
-
* Generated on Wed,
|
|
6356
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
5638
6357
|
*/
|
|
5639
6358
|
/**
|
|
5640
6359
|
* TOKENS:
|
|
@@ -5699,7 +6418,7 @@ Note that the styles for this component rely on CSS container queries, which cur
|
|
|
5699
6418
|
|
|
5700
6419
|
/**
|
|
5701
6420
|
* Do not edit directly
|
|
5702
|
-
* Generated on Wed,
|
|
6421
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
5703
6422
|
*/
|
|
5704
6423
|
/**
|
|
5705
6424
|
* TOKENS:
|
|
@@ -5860,7 +6579,7 @@ Note that the styles for this component rely on CSS container queries, which cur
|
|
|
5860
6579
|
|
|
5861
6580
|
/**
|
|
5862
6581
|
* Do not edit directly
|
|
5863
|
-
* Generated on Wed,
|
|
6582
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
5864
6583
|
*/
|
|
5865
6584
|
/**
|
|
5866
6585
|
* TOKENS:
|
|
@@ -6019,7 +6738,7 @@ Note that the styles for this component rely on CSS container queries, which cur
|
|
|
6019
6738
|
|
|
6020
6739
|
/**
|
|
6021
6740
|
* Do not edit directly
|
|
6022
|
-
* Generated on Wed,
|
|
6741
|
+
* Generated on Wed, 02 Nov 2022 22:23:12 GMT
|
|
6023
6742
|
*/
|
|
6024
6743
|
/**
|
|
6025
6744
|
* TOKENS:
|